:root {
  --color-primary: #FDC103;
  --color-secondary: #FFFDF9;
  --color-success: #45B664;
  --color-danger: #F46036;
  --color-warning: #F0B400;
  --body-bg: #FEFEFE;
  --body-text: #4E4E4E;
  --text-primary: #4E4E4E;
  --text-secondary: #66799e;
  --text-muted: #858585;
  --btn-primary-bg: #FDC103;
  --btn-primary-text: #000000;
  --btn-primary-hover-bg: #FFFDF9;
  --input-bg: #FEFEFE;
  --input-border: #D1D9E6;
  --input-border-focus: #FDC103;
  --input-text: #4E4E4E;
  --header-bg: #FFFDF9;
  --header-text: #4E4E4E;
  --footer-bg: #FEFEFE;
  --footer-text: #4E4E4E;
}

[data-theme=dark] {
  --body-bg: #262833;
  --body-text: #ECF0F3;
  --text-primary: #FEFEFE;
  --input-bg: #4E4E4E;
}

@font-face {
  font-family: "HanivaRegular";
  src: url("../../fonts/haniva-font-family/haniva-medium.otf");
}
@font-face {
  font-family: "HanivaMedium";
  src: url("../../fonts/haniva-font-family/haniva-medium.otf");
}
@font-face {
  font-family: "HanivaBold";
  src: url("../../fonts/haniva-font-family/haniva-bold.otf");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-size: 2rem;
  font-family: HanivaMedium !important;
  color: #4E4E4E;
  line-height: 3rem;
  background-color: #FEFEFE;
}
@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 4.6rem;
  max-width: 160rem;
}
@media only screen and (max-width: 1024px) {
  ._container_block {
    padding: 0 2.4rem;
  }
}
@media only screen and (max-width: 768px) {
  ._container_block {
    padding: 0 1.6rem;
  }
}

._container {
  width: 100%;
  margin: 0 auto;
  padding: 0 4.6rem;
}
@media only screen and (max-width: 1024px) {
  ._container {
    padding: 0 2.4rem;
  }
}
@media only screen and (max-width: 768px) {
  ._container {
    padding: 0 1.6rem;
  }
}

ul {
  list-style: none;
}

li {
  list-style-type: unset;
}

a {
  text-decoration: none;
}

main {
  margin-top: 8rem;
}

@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);
  }
}
#_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: 0;
  border: 0;
  display: flex;
  cursor: pointer;
  width: fit-content;
  text-align: center;
  border-radius: 2rem;
  padding: 1rem 2.1rem;
  align-items: center;
  height: fit-content;
  background: transparent;
  color: #D1D9E6;
  transition: all 0.3s ease-in-out;
  font-family: HanivaMedium !important;
}
._button svg {
  fill: #D1D9E6;
}

._is_outline {
  color: #FDC103;
  background-color: transparent;
  border: 1px solid #FDC103;
}
._is_outline svg {
  fill: #FDC103;
}
._is_outline:hover {
  color: #FEFEFE;
  background: #FFFDF9;
  border-color: #FFFDF9;
}
._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: #FDC103;
}
@media screen and (min-width: 1024px) {
  ._is_primary:hover {
    color: #FDC103;
    background: #000000;
    border-color: #FFFDF9;
  }
}

._is_rounded {
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  width: fit-content;
  font-family: HanivaRegular;
}
._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: #FFFDF9;
}
._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: 500;
  font-size: 2rem;
  line-height: 1.4;
}
@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: 2.8rem;
}

._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 #525480;
  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: 5.05rem;
  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;
  }
}

._form_fields {
  gap: 2.8rem;
  display: flex;
  flex-direction: column;
}

._input_group {
  display: flex;
  gap: 1.937rem;
}
._input_title {
  font-weight: 600;
  font-family: HanivaRegular;
  color: 1.8rem;
  font-size: 1.8rem;
  line-height: 2.8rem;
}
._input_required {
  color: #F46036;
}
._input_field {
  width: 100%;
  outline: none;
  padding: 1.92rem 1.7rem;
  transition: 0.3s;
  color: #8D8D8D;
  font-size: 2rem;
  border-radius: 1.349rem;
  border: 0.75px solid #BDBDBD;
}
@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 {
  width: 100%;
  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_text-area {
  width: 100%;
  resize: none;
  outline: none;
  padding: 1.7rem;
  transition: 0.3s;
  height: 14.17rem;
  color: #8D8D8D;
  border-radius: 1.349rem;
  font-size: 2rem;
  border: 0.75px solid #BDBDBD;
}
._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 #D1D9E6;
  position: relative;
  width: 22px;
  height: 22px;
  background: #FEFEFE;
  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: HanivaRegular;
  background: transparent;
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: 1.8rem;
}
._input_type_check_item input + label svg {
  fill: #FEFEFE;
}
._input_type_check_item input:checked + label svg {
  opacity: 1;
  fill: #FEFEFE;
}
._input_type_check_item input:checked + label {
  border-color: #FDC103;
  background: #FEFEFE;
}
._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 #D1D9E6;
  position: relative;
  width: 22px;
  height: 22px;
  background: #FEFEFE;
  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: 1.8rem;
  font-family: HanivaRegular;
  background: transparent;
  line-height: calc(1.8rem + 8px);
}
._input_type_radio_item input:checked + label {
  border: 7px solid #FDC103;
}
._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: 1.8rem;
  background: #FEFEFE;
  border-color: #FDC103;
}
._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: HanivaRegular;
  color: 1.8rem;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  border: 1px solid #D1D9E6;
}
._input_label {
  font-weight: 600;
  font-family: HanivaRegular;
  color: 1.8rem;
  font-size: 1.8rem;
  line-height: 2.8rem;
}
._input_error {
  height: 0;
  font-weight: 700;
  overflow: hidden;
  font-family: HanivaRegular;
  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 #D1D9E6;
  background-color: #FEFEFE;
  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 #D1D9E6;
  background-color: #FEFEFE;
  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: #FFFDF9;
}
._checkbox_grid:hover:before {
  border-color: #FFFDF9;
  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: #FFFDF9;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #FEFEFE;
}
._checkbox_grid_container input:checked + ._checkbox_grid:before {
  transform: scale(1);
  opacity: 1;
  background-color: #FFFDF9;
  border-color: #FFFDF9;
}
._checkbox_grid_container input:checked + ._checkbox_grid ._checkbox_grid_icon, ._checkbox_grid_container input:checked + ._checkbox_grid ._checkbox_grid_label {
  color: #FEFEFE;
}
._checkbox_grid_container input:focus + ._checkbox_grid {
  border-color: #FFFDF9;
  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: 2rem;
  margin-left: 12px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #D1D9E6;
  -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: #4E4E4E;
}
._multi_range_handle-wrapper {
  position: relative;
}
._multi_range_handle-wrapper input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  accent-color: #4E4E4E;
  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: #4E4E4E;
  accent-color: #4E4E4E;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
._multi_range_handle-wrapper {
  /* For Chrome and other WebKit browsers */
}
._multi_range_handle-wrapper input[type=range]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background-color: #4E4E4E !important;
  accent-color: #4E4E4E;
  color: #4E4E4E !important;
  accent-color: #4E4E4E;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
._multi_range_handle-wrapper {
  /* For other browsers that support the range input */
}
._multi_range_handle-wrapper input[type=range]::-ms-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background-color: #4E4E4E !important;
  color: #4E4E4E !important;
  accent-color: #4E4E4E;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
._multi_range_handle-wrapper {
  /* Generic styling that will be applied to the thumb in all supported browsers */
}
._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: #4E4E4E;
  color: #4E4E4E !important;
  accent-color: #4E4E4E;
  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: #FFFDF9;
}
._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: #FEFEFE;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

._upload_files {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  outline: 0;
  background: #FEFEFE;
  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: #FEFEFE;
  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: #FEFEFE;
  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: #FEFEFE;
  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: #FEFEFE;
  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: #4E4E4E;
  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-weight: 500;
  font-size: 9.6rem;
  color: #CA9C2E;
  line-height: 13.3rem;
}
._h1_secondary {
  color: #1E1E1E;
}
@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-weight: 500;
  font-size: 3.6rem;
  line-height: 4.8rem;
}
@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: 3.2rem;
  font-weight: 500;
  font-family: HanivaRegular;
  line-height: 4rem;
}

._h4 {
  font-size: 4.8rem;
  font-weight: 500;
  font-family: HanivaMedium;
  line-height: 6.7rem;
}

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

._sub_h2 {
  font-weight: 600;
  font-size: 4rem;
  font-family: HanivaRegular;
  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: 480px) {
  ._sub_h2 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}

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

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

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

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

._typo_h1 {
  font-family: HanivaRegular;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 500;
}

._typo_h2 {
  font-family: HanivaRegular;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
}

._typo_h3 {
  font-family: HanivaRegular;
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-weight: 500;
}

._link_h1 {
  font-family: HanivaRegular;
  font-size: 2.2rem;
  line-height: 3.2rem;
}

._link_h2 {
  font-family: HanivaRegular;
  font-size: 2rem;
  line-height: 3rem;
}

._link_h3 {
  font-family: HanivaRegular;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

._h1_gradient {
  background: #08C9AD;
  background: linear-gradient(to right, #08C9AD 0%, #8047FE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

._h2_gradient {
  background: #08C9AD;
  background: linear-gradient(to right, #08C9AD 0%, #8047FE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

._sub-h1_gradient {
  background: #08C9AD;
  background: linear-gradient(to right, #08C9AD 0%, #8047FE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

._sub-h2_gradient {
  background: #08C9AD;
  background: linear-gradient(to right, #08C9AD 0%, #8047FE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

._typo-h1_gradient {
  background: #08C9AD;
  background: linear-gradient(to right, #08C9AD 0%, #8047FE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

._typo-h2_gradient {
  background: #08C9AD;
  background: linear-gradient(to right, #08C9AD 0%, #8047FE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

._container_light_bg {
  background: transparent;
}

._container_soft_bg {
  background: transparent;
}

._container_dark_bg {
  background: transparent;
}

._container_deep_bg {
  background: transparent;
}

._content_light_bg {
  background: transparent;
}

._content_soft_bg {
  background: transparent;
}

._content_dark_bg {
  background: transparent;
}

._content_deep_bg {
  background: transparent;
}

._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_responsive {
    display: none;
  }
  ._about-us_sub-title_wrapper {
    gap: 2.5rem;
    display: flex;
    flex-direction: column;
  }
}
@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: #4E4E4E;
  }
}
@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;
  }
}
._header {
  top: 0;
  z-index: 9;
  width: 100%;
  height: 8rem;
  position: fixed;
  max-width: 100vw;
  background: #FEFEFE;
  backdrop-filter: blur(4px);
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
._header_wrapper {
  display: flex;
  padding: 2rem;
  margin: 0 auto;
  align-items: center;
  padding-left: 5.645rem;
  background: #FFFDF9;
  padding-right: 6.938rem;
  justify-content: space-between;
}
._header_logo a {
  display: flex;
}
._header_logo_file {
  width: auto;
  height: 3.2rem;
}
._header_nav_list {
  gap: 0.9rem;
  display: flex;
}
@media only screen and (max-width: 1440px) {
  ._header_nav_list {
    gap: 4.5rem;
  }
}
._header_nav_item {
  color: #858585;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
._header_nav_item_link {
  display: flex;
  color: inherit;
  position: relative;
  align-items: center;
  padding: 0.9rem 1rem;
  border-color: #FDC103;
  transition: all 0.3s ease-in-out;
}
._header_nav_item_link:hover {
  background-color: #FFF3B7;
  color: #1E1E1E;
}
._header_nav_item_link_active {
  background-color: #FFF3B7;
  color: #1E1E1E;
}

@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 #e6e7ee;
  }
  ._navbar_link-arr {
    padding-left: 5px;
  }
  ._navbar_link:last-child {
    border-bottom: 0.1rem solid #e6e7ee;
  }
  ._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: #31344b;
  }
  ::-webkit-scrollbar-thumb {
    background: #525480;
  }
}
@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: #f3f7fa;
  }
  ._drop__item {
    margin: 0;
    border-top: 0.1rem solid #e6e7ee;
    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;
  }
}
._footer {
  width: 100%;
  background: #FEFEFE;
  box-shadow: 0px -1px 8.8px 0px #F4F4F4;
}
._footer_wrapper {
  display: flex;
  flex-direction: column;
  padding: 2.1rem 4.3rem 2.7rem 8rem;
}
._footer_content {
  display: flex;
  justify-content: space-between;
}
._footer_left {
  display: flex;
  max-width: 34.2rem;
}
._footer_right {
  display: flex;
}
._footer_contact {
  gap: 3.5rem;
  display: flex;
  flex-direction: column;
}
._footer_contact_row {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
._footer_contact_item {
  display: flex;
  flex-direction: column;
}
._footer_contact_item_2 {
  flex-direction: row;
  padding-bottom: 0.7rem;
  justify-content: space-between;
}
._footer_contact_item_3 {
  gap: 1.3rem;
  flex-direction: row;
}
._footer_contact_item_label {
  font-weight: 500;
  color: #F7B006;
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.9rem;
}
._footer_contact_item_text {
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.9rem;
}
._footer_social_link {
  height: 3rem;
  width: 3.2rem;
  display: flex;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
._footer_social_link:hover {
  transform: none;
  background: transparent;
}
._footer_social_link svg {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
._footer_nav_list {
  gap: 0.9rem;
  display: flex;
  flex-wrap: nowrap;
}
._footer_nav_item {
  padding: 0.9rem 1rem;
}
._footer_nav_item_link {
  color: #858585;
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 2.2rem;
  transition: all 0.3s ease-in-out;
}
._footer_nav_item_link:hover {
  color: #4E4E4E;
}
._footer_copyright {
  text-align: center;
}
._footer_copyright p {
  color: #4E4E4E;
  font-size: 1rem;
  line-height: 1.6rem;
}

._hero {
  display: flex;
  height: 67.7rem;
  align-items: center;
  justify-content: center;
}
._hero_wrapper {
  gap: 4.364rem;
  display: flex;
  text-align: center;
  max-width: 96.81rem;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
._hero_title_wrapper ._star_icon {
  top: 6px;
  left: 0%;
  margin-left: 0;
  display: block;
  width: 1.903rem;
  height: 2.447rem;
  position: absolute;
}
._hero_title_secondary {
  padding-left: 2.4rem;
  position: relative;
  display: inline-block;
}
._hero_title_secondary_icon {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translateX(95%);
}
._hero_description {
  line-height: 3.15rem;
}
._hero._ai_hero ._hero_button_wrapper {
  display: none;
}
._hero._ai_hero ._hero_description_wrapper {
  padding-top: 14.4rem;
}
._hero._ai_hero ._hero_description_wrapper ._hero_description {
  font-size: 3.2rem;
  font-weight: 500;
}
._hero._ai_hero ._star_icon {
  display: none;
}
._hero._ai_hero ._hero_title {
  color: #1E1E1E;
}
._hero._ai_hero ._hero_title ._h1_secondary {
  color: #CA9C2E;
}
._hero._about_hero {
  height: 71.1rem;
}
._hero._about_hero ._hero {
  margin-bottom: 3.9rem;
}
._hero._about_hero ._hero_wrapper {
  gap: 1.933rem;
}
._hero._about_hero ._hero_button_wrapper {
  display: none;
}
._hero._about_hero ._hero_title_secondary_icon,
._hero._about_hero ._star_icon {
  display: none;
}
._hero._about_hero ._hero_description {
  line-height: 3rem;
}
._hero._about_hero ._hero_description_wrapper {
  max-width: 96.81rem;
}
._hero._work_hero ._hero_title {
  color: #1E1E1E;
}
._hero._work_hero ._hero_title ._h1_secondary {
  color: #CA9C2E;
}
._hero._work_hero ._hero_wrapper {
  display: flex;
  flex-direction: column;
}
._hero._work_hero ._hero_title_wrapper {
  order: 1;
}
._hero._work_hero ._hero_description_wrapper {
  order: 2;
}
._hero._work_hero ._hero_button_wrapper {
  order: 3;
}
._hero._work_hero ._work_ai_word {
  position: relative;
  display: inline-block;
}
._hero._work_hero ._work_ai_word ._star_icon {
  top: -0.8rem;
  left: 50%;
  width: 1.903rem;
  height: 2.447rem;
  position: absolute;
  transform: translateX(-10%);
  color: #1E1E1E;
  fill: #1E1E1E;
}
._hero._work_hero ._hero_title_secondary_icon {
  display: none;
}
._hero._solution_hero ._solution_hero_line1 {
  white-space: nowrap;
}

@media only screen and (max-width: 768px) {
  ._hero._solution_hero ._solution_hero_line1 {
    white-space: normal;
  }
}
._about-impact {
  background: rgba(255, 231, 154, 0.08);
}
._about-impact_wrapper {
  gap: 2.9rem;
  display: flex;
  align-items: center;
  padding: 4.663rem 0;
  max-width: 58.474rem;
  flex-direction: column;
}
._about-impact_top {
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
}
._about-impact_top_label {
  line-height: 2.8rem;
}
._about-impact_bottom {
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
}
._about-impact_bottom_label {
  line-height: 2.8rem;
}
._about-impact_middle {
  gap: 2.1rem;
  width: 100%;
  display: grid;
  position: relative;
  align-items: center;
  margin-bottom: 0.5rem;
  grid-template-columns: 1fr auto 1fr;
}
._about-impact_middle_label {
  line-height: 2.8rem;
  white-space: nowrap;
}
._about-impact_middle_label:first-child {
  text-align: left;
}
._about-impact_middle_label:last-child {
  text-align: right;
}
._about-impact_icon {
  display: grid;
  place-items: center;
}
._about-impact_icon_image {
  width: 100%;
  height: 19.074rem;
  object-fit: contain;
}
._about-impact_label {
  color: #1E1E1E;
  font-size: 2rem;
  font-family: HanivaMedium;
}

@media only screen and (max-width: 768px) {
  ._about-impact {
    padding: 6rem 0;
  }
  ._about-impact_wrapper {
    gap: 3rem;
  }
  ._about-impact_middle {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  ._about-impact_middle ._about-impact_label {
    text-align: center !important;
  }
  ._about-impact_label {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  ._about-impact_icon {
    width: 16rem;
    height: 16rem;
  }
}
._about-mission {
  margin-top: 15.4rem;
  background: #FEFEFE;
}
._about-mission_wrapper {
  display: grid;
  align-items: start;
  padding: 7.2rem 0rem;
  grid-template-columns: 1fr 1fr;
}
._about-mission_left {
  max-width: 58.8rem;
}
._about-mission_title {
  font-weight: 500;
  font-size: 6.4rem;
  line-height: 8.9rem;
  color: #1E1E1E;
  font-family: HanivaMedium;
}
._about-mission_title_highlight {
  padding-right: 1.8rem;
  display: inline-block;
  color: #F7B006;
  font-family: HanivaMedium;
}
._about-mission_right {
  gap: 4.2rem;
  display: flex;
  flex-direction: column;
}
._about-mission_heading {
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 6.2rem;
  color: #1E1E1E;
  font-family: HanivaMedium;
}
._about-mission_text {
  font-size: 2rem;
  font-weight: 500;
  color: #4E4E4E;
  line-height: 3.25rem;
  font-family: HanivaMedium;
}

@media only screen and (max-width: 1024px) {
  ._about-mission {
    padding: 8rem 0;
  }
  ._about-mission_wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  ._about-mission_title {
    font-size: 4.8rem;
  }
  ._about-mission_heading {
    font-size: 2.2rem;
  }
  ._about-mission_text {
    font-size: 1.7rem;
    line-height: 2.6rem;
  }
}
@media only screen and (max-width: 768px) {
  ._about-mission {
    padding: 6rem 0;
  }
  ._about-mission_wrapper {
    gap: 3rem;
  }
  ._about-mission_title {
    font-size: 3.6rem;
  }
  ._about-mission_heading {
    font-size: 2rem;
  }
  ._about-mission_text {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
._about-work {
  padding: 9.3rem 0;
}
._about-work_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 120rem;
  margin: 0 auto;
  text-align: center;
}
._about-work_text {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1;
  color: #4E4E4E;
  font-family: HanivaMedium;
}

@media only screen and (max-width: 1024px) {
  ._about-work {
    padding: 8rem 0;
  }
  ._about-work_text {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 768px) {
  ._about-work {
    padding: 6rem 0;
  }
  ._about-work_text {
    font-size: 2rem;
    line-height: 1.6;
  }
}
._about-core-values_wrapper {
  display: flex;
  flex-direction: column;
  padding: 0 10.27rem 2.2rem 10.27rem;
  gap: 4rem;
}
._about-core-values_title {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
  color: #1E1E1E;
  margin: 0;
  font-family: HanivaMedium;
}
._about-core-values_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #FFF2CB;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 2px solid #ffffff;
}
._about-core-values_card {
  padding: 3.6rem 4rem;
}
._about-core-values_card:not(:last-child) {
  border-right: 2px solid #ffffff;
}
._about-core-values_card_title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: #4E4E4E;
  margin: 0 0 1.6rem 0;
  font-family: HanivaMedium;
}
._about-core-values_card_text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #4E4E4E;
  font-family: HanivaMedium;
}

@media only screen and (max-width: 1024px) {
  ._about-core-values {
    padding: 8rem 0;
  }
  ._about-core-values_cards {
    grid-template-columns: 1fr;
  }
  ._about-core-values_card:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
}
._about-story {
  gap: 15.4rem;
}
._about-story_wrapper {
  padding: 2.22rem 0 7.8rem 10.27rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
._about-story_left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
._about-story_title {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
  color: #1E1E1E;
  margin: 0;
  font-family: HanivaMedium;
}
._about-story_content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
._about-story_text {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #4E4E4E;
  margin: 0;
  font-family: HanivaRegular;
}
._about-story_text strong {
  font-weight: 700;
  font-family: HanivaMedium;
}
._about-story_button_wrapper {
  margin-top: 1rem;
}
._about-story_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
._about-story_logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
._about-story_logo_image {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}
._about-story_tagline {
  font-size: 3.09rem;
  font-weight: 500;
  color: #4E4E4E;
  margin: 0;
  font-family: HanivaMedium;
  text-transform: uppercase;
}

@media only screen and (max-width: 1024px) {
  ._about-story {
    padding: 8rem 0;
  }
  ._about-story_wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  ._about-story_right {
    align-items: flex-start;
  }
  ._about-story_logo_image {
    max-width: 80%;
  }
  ._about-story_tagline {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  ._about-story {
    padding: 6rem 0;
  }
  ._about-story_wrapper {
    gap: 3rem;
  }
  ._about-story_title {
    font-size: 3rem;
  }
  ._about-story_text {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  ._about-story_logo_image {
    width: 43.7rem;
  }
  ._about-story_tagline {
    font-size: 1.4rem;
  }
}
._about-tagline {
  padding: 0 0 19.4rem 0;
}
._about-tagline_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
._about-tagline_text {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1;
  color: #4E4E4E;
  font-family: HanivaMedium;
}

@media only screen and (max-width: 1024px) {
  ._about-tagline {
    padding: 8rem 0;
  }
  ._about-tagline_text {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 768px) {
  ._about-tagline {
    padding: 6rem 0;
  }
  ._about-tagline_text {
    font-size: 2rem;
  }
}
._ai_solutions {
  margin-bottom: 15.8rem;
}
._ai_solutions_wrapper {
  gap: 6rem;
  display: grid;
  margin: 0 auto;
  align-items: start;
  max-width: 117.4rem;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 1440px) {
  ._ai_solutions_wrapper {
    max-width: 100%;
    padding: 0;
  }
}
._ai_solutions_left {
  display: flex;
  flex-direction: column;
  padding: 8rem 8rem;
  max-width: 52.8rem;
}
._ai_solutions_title {
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255, 224, 124, 0.8);
  line-height: 1;
  position: relative;
  display: inline-block;
}
._ai_solutions_title_wrapper {
  position: relative;
}
._ai_solutions_title_a {
  display: inline-block;
}
._ai_solutions_title_i_wrapper {
  position: relative;
  display: inline-block;
}
._ai_solutions_title_icons {
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}
._ai_solutions_star_icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: rgba(255, 224, 124, 0.8);
}
._ai_solutions_tagline {
  font-size: 3.6rem;
  color: #4E4E4E;
  font-weight: 500;
  line-height: 4.3rem;
}
._ai_solutions_button_wrapper {
  margin-top: 2.686rem;
}
._ai_solutions_right {
  display: flex;
  flex-direction: column;
}
._ai_solutions_list {
  gap: 3rem;
  padding: 1rem;
  display: flex;
  list-style: none;
  flex-direction: column;
}
._ai_solutions_list {
  gap: 5.3rem;
  max-width: 52.796rem;
}
._ai_solutions_list_item {
  gap: 1rem;
  display: flex;
  align-items: flex-start;
}
._ai_solutions_list_item_number {
  position: relative;
  display: flex;
}
._ai_solutions_list_item_number_bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.4rem;
  background-color: #FDC103;
  border-radius: 0.2rem;
}
._ai_solutions_list_item_number_text {
  z-index: 1;
  font-size: 2.4rem;
  font-weight: 500;
  color: #4E4E4E;
  padding-left: 1.2rem;
}
._ai_solutions_list_item_content {
  flex: 1;
  gap: 1.4rem;
  display: flex;
  flex-direction: column;
}
._ai_solutions_list_item_title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #4E4E4E;
}
._ai_solutions_list_item_bullets {
  margin: 0;
  display: flex;
  list-style: disc;
  flex-direction: column;
}
._ai_solutions_list_item_bullet {
  font-size: 1.4rem;
  color: #4E4E4E;
  line-height: 3rem;
  font-size: 2rem;
  font-weight: 400;
  color: #4E4E4E;
}

@media (max-width: 768px) {
  ._ai_solutions_wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  ._ai_solutions_title {
    font-size: 5rem;
  }
}
._approach {
  margin-bottom: 15.8rem;
}
._approach_wrapper {
  display: flex;
  gap: 13.542rem;
  flex-direction: column;
  padding: 3.258rem 0 10.1rem 0;
}
._approach_title {
  font-size: 3.6rem;
  font-weight: 500;
  color: #4E4E4E;
  line-height: 3rem;
  text-align: center;
}
._approach_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem 3.4rem;
}
._approach_card {
  gap: 3.7rem;
  display: flex;
  border-radius: 2rem;
  flex-direction: column;
  background-color: #ffffff;
  padding: 2.8rem 1.5rem 3.1rem 1.5rem;
  box-shadow: 0px 2px 8.8px 0px #ECECEC;
}
._approach_card_header {
  gap: 1.2rem;
  display: flex;
  align-items: center;
}
._approach_card_icon {
  display: flex;
}
._approach_card_icon_image {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}
._approach_card_title {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 3rem;
  color: #4E4E4E;
}
._approach_card_description {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2rem;
  padding-left: 4.2rem;
  color: #4E4E4E;
}

._partners_wrapper {
  gap: 3.1rem;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
._partners_title {
  line-height: 3rem;
}
._partners_logo_list {
  gap: 5.5rem;
  display: flex;
  align-items: center;
}
._partners_logo_list_item {
  display: flex;
  width: fit-content;
}
._partners_logo_list_image {
  width: 100%;
  height: 96px;
  object-fit: contain;
}
._partners_logo_list_image_1 {
  height: 4.715rem;
}
._partners_logo_list_image_2 {
  height: 9.6rem;
}
._partners_logo_list_image_3 {
  height: 4.715rem;
}

._projects {
  margin-top: 10.816rem;
  margin-bottom: 15.8rem;
}
._projects_list_wrapper {
  position: relative;
  border-radius: 3rem;
  padding: 6.4rem 5.9rem;
  background-color: rgba(255, 224, 124, 0.22);
}
._projects_list_item img {
  width: 100%;
  height: 50.3rem;
  object-fit: cover;
  border-radius: 3rem;
}
._projects_list_item_content {
  top: 2.3rem;
  z-index: 1;
  width: 100%;
  left: 2.1rem;
  height: calc(100% - 2.3rem - 3.35rem);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
._projects_list_item_title {
  padding: 1rem;
  color: #000000;
  border-radius: 2rem;
  width: fit-content;
  line-height: 4.3rem;
  font-size: 2.4rem;
  background-color: rgba(255, 255, 255, 0.62);
}
._projects_list_item_description {
  color: #ffffff;
  font-weight: 400;
}

._with_us_wrapper {
  gap: 9.227rem;
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  padding-top: 4.239rem;
  padding-bottom: 4.2rem;
}
@media only screen and (max-width: 1440px) {
  ._with_us_wrapper {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
._with_us_title {
  line-height: 3rem;
  text-align: center;
}
._with_us_content {
  display: flex;
  justify-content: space-between;
}
._with_us_left {
  gap: 3.234rem;
  display: flex;
  flex-direction: column;
}
._with_us_subtitle {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3rem;
  color: #4E4E4E;
  padding-bottom: 2.566rem;
}
._with_us_list {
  gap: 3.4rem;
  display: flex;
  flex-direction: column;
}
._with_us_list_item {
  gap: 1.5rem;
  display: flex;
  align-items: flex-start;
}
._with_us_list_item_icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
._with_us_list_item_text {
  font-size: 2rem;
  font-weight: 500;
  color: #4E4E4E;
  line-height: 3rem;
}
._with_us_button_wrapper {
  margin-top: 1.3rem;
}
._with_us_right {
  display: flex;
  justify-content: flex-end;
}
._with_us_image {
  width: 100%;
  height: 38.7rem;
  object-fit: contain;
}

@media (max-width: 1024px) {
  ._with_us {
    padding: 10rem 4rem;
  }
  ._with_us_content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  ._with_us_title {
    margin-bottom: 4rem;
  }
  ._with_us_subtitle {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  ._with_us {
    padding: 8rem 2rem;
  }
  ._with_us_subtitle {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
  ._with_us_list_item_text {
    font-size: 1.8rem;
  }
}
._our_clients_wrapper {
  display: flex;
  gap: 5.511rem;
  align-items: center;
  flex-direction: column;
  padding: 4.263rem 4.226rem;
}
._our_clients_title {
  line-height: 3rem;
  text-align: center;
}
._our_clients_logo_list {
  gap: 6.8rem;
  display: flex;
  flex-wrap: wrap;
}
._our_clients_logo_list_item {
  display: flex;
  align-items: center;
  justify-content: center;
}
._our_clients_logo_circle {
  display: flex;
  width: 16.7rem;
  height: 16.6rem;
  overflow: hidden;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: #FFF2CB;
}
._our_clients_logo_circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  ._our_clients {
    padding: 10rem 4rem;
  }
  ._our_clients_wrapper {
    gap: 4rem;
  }
  ._our_clients_logo_list {
    gap: 3rem;
  }
  ._our_clients_logo_circle {
    width: 10rem;
    height: 10rem;
  }
}
@media (max-width: 768px) {
  ._our_clients {
    padding: 8rem 2rem;
  }
  ._our_clients_logo_list {
    gap: 2rem;
  }
  ._our_clients_logo_circle {
    width: 8rem;
    height: 8rem;
  }
}
._contact_us_wrapper {
  display: flex;
  max-width: 124.9rem;
  margin: 0 auto;
  padding: 15.8rem 0 4.187rem 0;
}
@media only screen and (max-width: 1440px) {
  ._contact_us_wrapper {
    max-width: 100%;
  }
}
._contact_us_content {
  width: 100%;
  gap: 5.3rem;
  display: flex;
  padding: 1.6rem 0 1.466rem;
}
._contact_us_left {
  gap: 1.1rem;
  width: 41rem;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
}
._contact_us_title {
  color: #1E1E1E;
}
._contact_us_title_text {
  color: #CA9C2E;
}
._contact_us_description {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 3rem;
}
._contact_us_description_highlight {
  display: block;
}
._contact_us_right {
  display: flex;
  flex: 1;
  flex-direction: column;
}
._contact_us_form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
._contact_us_form_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
._contact_us_form_field_wrapper {
  display: flex;
  flex-direction: column;
}
._contact_us_form_input {
  width: 100%;
  padding: 1.5rem 2rem;
  border: 1px solid #B0B0B0;
  border-radius: 8px;
  font-size: 1.6rem;
  font-family: HanivaRegular;
  color: #4E4E4E;
  outline: none;
  resize: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
._contact_us_form_input::placeholder {
  color: #B0B0B0;
}
._contact_us_form_textarea {
  width: 100%;
  padding: 1.5rem 2rem;
  border: 1px solid #B0B0B0;
  border-radius: 8px;
  font-size: 1.6rem;
  font-family: HanivaRegular;
  color: #4E4E4E;
  outline: none;
  resize: none;
  box-sizing: border-box;
  min-height: 15rem;
  transition: all 0.3s ease;
}
._contact_us_form_textarea::placeholder {
  color: #B0B0B0;
}
._contact_us_form_button_wrapper {
  display: flex;
  justify-content: flex-end;
}
._contact_us_submit {
  width: 21.6rem;
  height: 4.8rem;
  border-radius: 2rem;
  font-size: 2rem;
  font-weight: 500;
  color: #4E4E4E;
  display: flex;
  align-items: center;
  justify-content: center;
}
._contact_us.contact ._contact_us_wrapper {
  padding-top: 9.3rem;
  padding-bottom: 0;
}

@media (max-width: 1024px) {
  ._contact_us {
    padding: 10rem 4rem;
  }
  ._contact_us_content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  ._contact_us_title {
    font-size: 3.6rem;
    line-height: 4.4rem;
  }
  ._contact_us_description {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  ._contact_us {
    padding: 8rem 2rem;
  }
  ._contact_us_title {
    font-size: 3rem;
    line-height: 3.6rem;
  }
  ._contact_us_description {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  ._contact_us_form_row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  ._contact_us_form_input, ._contact_us_form_textarea {
    font-size: 1.4rem;
    padding: 1.2rem 1.6rem;
  }
  ._contact_us_form_button_wrapper {
    justify-content: center;
  }
}
._contact_info_wrapper {
  display: flex;
  padding: 13.3rem 0 12.2rem 0;
}
._contact_info_content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
._contact_info_item {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 0 2.5rem 0;
}
._contact_info_item:first-child {
  align-items: flex-start;
}
._contact_info_item:first-child ._contact_info_header {
  justify-content: flex-start;
}
._contact_info_item:nth-child(2) {
  align-items: center;
}
._contact_info_item:nth-child(2) ._contact_info_header {
  justify-content: center;
}
._contact_info_item:last-child {
  align-items: flex-end;
}
._contact_info_item:last-child ._contact_info_header {
  justify-content: flex-end;
}
._contact_info_header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
._contact_info_icon {
  flex-shrink: 0;
  display: flex;
  margin-top: 0.2rem;
  align-items: flex-start;
  color: #1E1E1E;
}
._contact_info_icon svg {
  width: 3.6rem;
  height: 3.6rem;
}
._contact_info_content_wrapper {
  display: flex;
  flex-direction: column;
}
._contact_info_title {
  color: #000000;
  font-weight: 500;
  line-height: 3.6rem;
  font-size: 2.4rem;
}
._contact_info_text {
  font-weight: 500;
  line-height: 4rem;
  color: #4E4E4E;
  font-size: 2rem;
}
._contact_info_text_highlight {
  display: block;
}
._contact_info_text_highlight_link a {
  color: inherit !important;
  text-decoration: none;
}
._contact_info_text_highlight_links {
  gap: 2.109rem;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  ._contact_info_wrapper {
    padding: 4rem 4rem;
  }
  ._contact_info_content {
    gap: 3rem;
  }
  ._contact_info_title {
    font-size: 1.8rem;
  }
  ._contact_info_text {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  ._contact_info_wrapper {
    padding: 4rem 2rem;
  }
  ._contact_info_content {
    flex-direction: column;
    gap: 3rem;
  }
  ._contact_info_title {
    font-size: 1.8rem;
  }
  ._contact_info_text {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
._project_with_title_wrapper {
  gap: 2.33rem;
  display: flex;
  flex-direction: column;
  padding: 13.5rem 5.4rem;
}
._project_with_title_title {
  margin-bottom: 0;
}
._project_with_title_content {
  gap: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
._project_with_title_content_left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
._project_with_title_content_middle {
  width: 35%;
}
._project_with_title_content_middle_text {
  color: #000000;
  font-size: 2rem;
  font-weight: 500;
}
._project_with_title_content_right_image {
  width: 48.8rem;
  height: 37.6rem;
  object-fit: cover;
  border-radius: 2.8rem;
}
._project_with_title_nav {
  width: 34.1rem;
  background-color: #FFF8E3;
  margin-top: auto;
}
._project_with_title_nav_list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
._project_with_title_nav_item {
  padding: 1.2rem 1.5rem;
  color: #4E4E4E;
  font-size: 1.6rem;
  line-height: 2.2rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
._project_with_title_nav_item_active {
  background-color: #FDC103;
  color: #000000;
}

._work-tagline {
  margin: 11.8rem 0;
}
._work-tagline_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
._work-tagline_text {
  margin: 0;
  font-weight: 600;
  font-family: HanivaMedium;
  font-size: 8.8rem;
  color: #BDBDBD;
}

@media only screen and (max-width: 768px) {
  ._work-tagline {
    padding: 0 0 6rem 0;
  }
  ._work-tagline_text {
    letter-spacing: 0.01em;
  }
}
._work-testimonial {
  margin-bottom: 15.8rem;
}
._work-testimonial_wrapper {
  max-width: 110rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3.2rem;
}
._work-testimonial_logo {
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}
._work-testimonial_logo_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
._work-testimonial_quote {
  margin: 0;
  padding: 0;
  max-width: 98rem;
}
._work-testimonial_quote_text {
  margin: 0;
  font-weight: 500;
  font-family: HanivaMedium;
  font-size: 3.2rem;
  line-height: 1;
  color: #4E4E4E;
}
._work-testimonial_byline {
  margin-top: 2.4rem;
  font-weight: 500;
  font-family: HanivaMedium;
  font-size: 3.2rem;
  color: #4E4E4E;
}

@media only screen and (max-width: 768px) {
  ._work-testimonial {
    padding: 0 0 8rem 0;
  }
  ._work-testimonial_wrapper {
    gap: 2.4rem;
  }
  ._work-testimonial_logo {
    width: 6.4rem;
    height: 6.4rem;
  }
}
._work-cards {
  margin-bottom: 15.8rem;
  padding: 8rem 0 0 0;
}
._work-cards_wrapper {
  --work-card-h: 66.2rem;
  --work-row-gap: 15.8rem;
  --work-title-offset: calc(var(--work-card-h) + (var(--work-row-gap) * 0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
._work-cards_title_container {
  position: absolute;
  width: 100%;
  overflow: hidden;
  z-index: 0;
  top: var(--work-title-offset);
  left: 0;
  right: 0;
  pointer-events: none;
}
._work-cards_title_scroll {
  display: flex;
  white-space: nowrap;
  animation: scroll-horizontal 5s linear infinite;
  will-change: transform;
}
._work-cards_title {
  font-size: 8.8rem;
  font-weight: 600;
  font-family: HanivaMedium;
  color: #BDBDBD;
  margin: 0;
  line-height: 1.2;
  padding-right: 4rem;
  flex-shrink: 0;
}
._work-cards_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15.8rem 6.4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
._work-cards_card {
  --work-card-border: 2.9rem;
  --work-card-radius: 6rem;
  height: 66.2rem;
  width: 60.8rem;
  position: relative;
  border-radius: var(--work-card-radius);
  display: flex;
  border-width: var(--work-card-border);
  border-style: solid;
  background: transparent;
}
._work-cards_card_inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--work-card-radius) - var(--work-card-border));
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}
._work-cards_card_overlay {
  border-radius: 3.1rem;
  z-index: 1;
}
._work-cards_card_caption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 2.4rem 2.4rem;
}
._work-cards_card_text {
  margin: 0;
  font-size: 2rem;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 500;
  font-family: HanivaMedium;
  text-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.35);
}
._work-cards_card._is_brown {
  border-color: #664D36;
}
._work-cards_card._is_blue {
  border-color: #0056B3;
}
._work-cards_card._is_green {
  border-color: #18634B;
}
._work-cards_card._is_dark-grey {
  border-color: #303135;
}

@media only screen and (max-width: 1024px) {
  ._work-cards {
    padding: 6rem 0 10rem 0;
  }
  ._work-cards_wrapper {
    gap: 4.8rem;
  }
  ._work-cards_grid {
    gap: 2.4rem;
  }
  ._work-cards_card {
    min-height: 40rem;
    border-width: 1rem;
  }
}
@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
@media only screen and (max-width: 768px) {
  ._work-cards {
    padding: 4rem 0 8rem 0;
  }
  ._work-cards_wrapper {
    gap: 3.6rem;
  }
  ._work-cards_title_container {
    top: calc(var(--work-card-h) * 1.4);
  }
  ._work-cards_title {
    font-size: 2.8rem;
  }
  ._work-cards_grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  ._work-cards_card {
    border-radius: 2.4rem;
    min-height: 38rem;
    border-width: 0.9rem;
    padding: 1.2rem;
  }
  ._work-cards_card_overlay {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    border-radius: 1.8rem;
  }
  ._work-cards_card_caption {
    padding: 0 1.8rem 1.8rem;
  }
  ._work-cards_card_text {
    font-size: 1.8rem;
  }
}
._solution-tagline {
  margin: 24rem 0;
}
._solution-tagline_wrapper {
  padding: 0 29.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
._solution-tagline_text {
  margin: 0;
  font-weight: 500;
  line-height: 1.1;
  font-family: HanivaMedium;
  font-size: 3.6rem;
  color: #4E4E4E;
}

@media only screen and (max-width: 768px) {
  ._solution-tagline {
    padding: 0 0 6rem 0;
  }
  ._solution-tagline_text {
    letter-spacing: 0;
    line-height: 1.2;
  }
}
._solution-strength_wrapper {
  padding: 5.6rem;
  display: flex;
  flex-direction: column;
}
._solution-strength_list {
  display: flex;
  flex-direction: column;
  gap: 15.8rem;
}
._solution-strength_card {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  width: 100%;
}
._solution-strength_card_heading {
  text-align: left;
  color: #1E1E1E;
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: 0;
}
._solution-strength_card_left {
  width: 63%;
  background: #FEFEFE;
  border-radius: 0 2rem 2rem 0;
  padding: 1.86rem 1.86rem 1.5rem 0;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
}
._solution-strength_card_label {
  margin: 0 0 2.6rem 0;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #4E4E4E;
}
._solution-strength_card_description {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3.2rem;
  flex: 1;
}
._solution-strength_card_description_text {
  margin: 0;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.7;
  color: #4E4E4E;
}
._solution-strength_card_button_wrapper {
  display: flex;
}
._solution-strength_card_button_wrapper ._button {
  border-radius: 2rem;
  height: 4rem;
  width: 14.3rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
._solution-strength_card_button_wrapper ._button._is_outline:hover {
  background-color: #FFF2CB !important;
  color: #FDC103 !important;
  border-color: #FDC103 !important;
}
._solution-strength_card_right {
  flex: 0 0 50%;
  width: 50%;
  height: 38.7rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
._solution-strength_card_image {
  width: 100%;
  height: 100%;
  max-width: 76rem;
  border-radius: 2.4rem;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  ._solution-strength_card {
    flex-direction: column;
  }
  ._solution-strength_card_heading {
    flex: 0 0 auto;
    width: 100%;
    padding-left: 0;
    margin-bottom: 2.4rem;
  }
  ._solution-strength_card_content {
    flex-direction: column;
    gap: 2.4rem;
    width: 100%;
  }
  ._solution-strength_card_right {
    justify-content: flex-start;
  }
  ._solution-strength_card_image {
    max-width: 100%;
    height: 32rem;
  }
  ._solution-strength_card_left {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    padding: 3.2rem;
  }
}
@media only screen and (max-width: 768px) {
  ._solution-strength {
    padding: 0 0 8rem 0;
  }
  ._solution-strength_list {
    gap: 4rem;
  }
  ._solution-strength_card_description_text {
    font-size: 1.7rem;
  }
  ._solution-strength_card_image {
    height: 26rem;
    border-radius: 2rem;
  }
  ._solution-strength_wrapper {
    padding: 0 2rem;
  }
}
._solution-five-cards_wrapper {
  padding: 6.3rem 0 11.9rem 0;
}
._solution-five-cards_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.4rem;
  align-items: start;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}
._solution-five-cards_col {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
._solution-five-cards_card {
  height: 50.3rem;
  width: 42.8rem;
  position: relative;
  border-radius: 2.4rem;
  overflow: hidden;
  min-height: 32rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: stretch;
  transition: box-shadow 0.3s ease;
}
._solution-five-cards ._is_center {
  height: 67.5rem;
  width: 42.8rem;
  transform: translateY(-3.2rem);
}
._solution-five-cards_card_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.47);
  backdrop-filter: blur(0.75rem);
  -webkit-backdrop-filter: blur(0.75rem);
  transition: background-color 0.25s ease;
  z-index: 1;
}
._solution-five-cards_card_content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5.2rem 4.6rem 4.6rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
._solution-five-cards_card_title {
  text-align: center;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.2;
  margin: 0 0 2.4rem 0;
  color: #FFF8E3;
  font-family: HanivaMedium;
}
._solution-five-cards_card_list {
  margin: 0;
  padding: 0 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  list-style: disc;
  color: #ffffff;
  flex: 1;
}
._solution-five-cards_card_list_item {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.4;
  color: #ffffff;
}
._solution-five-cards_card_button_wrap {
  margin-top: 3.2rem;
  display: flex;
  justify-content: center;
}
._solution-five-cards ._solution-five-cards_btn {
  border-radius: 2rem;
  height: 4rem;
  width: 14.3rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
._solution-five-cards_card:hover {
  background-image: none !important;
  box-shadow: 0 1.6rem 3.2rem rgba(0, 0, 0, 0.12), 0 0.8rem 1.6rem rgba(0, 0, 0, 0.08);
}
._solution-five-cards_card:hover ._solution-five-cards_card_overlay {
  background-color: #FEFEFE;
  background-size: 6.4rem 6.4rem;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
._solution-five-cards_card:hover ._solution-five-cards_card_title,
._solution-five-cards_card:hover ._solution-five-cards_card_list_item {
  color: #1E1E1E;
}
._solution-five-cards_card:hover ._solution-five-cards_btn._is_outline {
  background: #FDC103;
  color: #000000;
  border-color: #FDC103;
}
._solution-five-cards ._solution-five-cards_btn._is_outline:hover {
  background: #FFF2CB !important;
  color: #000000 !important;
  border-color: #FDC103 !important;
}

@media (max-width: 1024px) {
  ._solution-five-cards_grid {
    grid-template-columns: 1fr;
  }
  ._solution-five-cards_col {
    gap: 3.2rem;
  }
  ._solution-five-cards ._is_center {
    min-height: 40rem;
    transform: none;
  }
}
@media only screen and (max-width: 768px) {
  ._solution-five-cards_wrapper {
    padding: 0 2rem;
  }
  ._solution-five-cards_card_content {
    padding: 3.2rem 2.8rem;
  }
  ._solution-five-cards_card_title {
    font-size: 2.6rem;
  }
  ._solution-five-cards_card_list_item {
    font-size: 1.8rem;
  }
}

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