@charset "UTF-8";
:root {
  --red: #e7004c;
  --black: #000;
  --white:#fff;
  --second-black: #121c28;
  --label-color:#050f21;
  --border-color:#c9ced6;
  --placeholder-color:#8a94a6;
  --placeholder-color-2: #a6a5a5;
  --black-bg-color:#091018;
  --footer-menus-color:#b0b7c3;
  --blue-btn-color:#5462C1;
  --disable-btn-color:#8a94a6;
  --btn-active-bg-color:#27282C;
  --btn-white-bg-color:#f1f3ff;
  --main-color:#1d439b;
}

* {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

em, i {
  font-style: italic;
}

.center {
  width: 1182px;
}

.center2 {
  padding: 0 45px;
}

body.is_normal {
  background-image: linear-gradient(to bottom, rgba(217, 217, 217, 0), #dcdff2);
}
body.is_black {
  background-color: var(--black-bg-color);
}

.main {
  min-height: calc(100vh - 154px);
}

/**/
.btn {
  color: var(--white);
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  font-weight: 500;
  max-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn:disabled {
  background-color: var(--disable-btn-color) !important;
  cursor: not-allowed;
}
.btn.btn-red {
  border-radius: 16px;
  background-color: var(--red);
  font-size: 20px;
  line-height: 1.4;
  min-width: 210px;
}
.btn.btn-black {
  height: 60px;
  border-radius: 8px;
  background-color: var(--second-black);
  font-size: 16px;
  line-height: 1.25;
  transition: background-color 0.5s;
}
.btn.btn-black:hover {
  background-color: var(--red);
}
.btn.btn-blue {
  background-color: var(--main-color);
  font-size: 14px;
  line-height: 1.43;
  border-radius: 4px;
  padding: 10px 61px;
}
.btn.btn-white {
  background-color: var(--btn-white-bg-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--black-bg-color);
  border-radius: 16px;
  padding: 10px 61px;
}

.all_vacancies {
  position: relative;
  padding: 16px 42px;
  font-size: 18px;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  background: linear-gradient(270deg, #1ac1e8, #283e80, #1ac1e8);
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.all_vacancies:hover {
  box-shadow: 0 0 50px rgba(26, 193, 232, 0.8);
}
.all_vacancies:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: 0.7s;
}
.all_vacancies span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.all_vacancies:hover:before {
  left: 140%;
}
.all_vacancies:hover span {
  transform: translateX(8px);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/**/
.section_title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.33;
  color: var(--main-color);
}
.section_title .show_count {
  font-weight: bold;
  color: #112029;
  opacity: 0.5;
}

.second_title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--second-black);
}

.second_title_white {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.29;
  color: var(--white);
}

.second_link {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--black);
}
.second_link:hover {
  text-decoration: underline;
}

/**/
.header {
  position: sticky;
  top: 0;
  z-index: 1001;
  background-color: var(--white);
  border-bottom: 1px solid #f2f2f2;
  box-shadow: 0 2px 5px 0 rgba(17, 32, 41, 0.1);
  padding: 10px 0;
  transition: padding 0.2s;
}
.header .header_logo img .header_logo img, .header.is_sticky .header_logo img {
  width: 120px;
}
.header .header_menus li {
  margin-right: 24px;
}
.header .header_menus li a {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: var(--black-bg-color);
}
.header .open_close_menu {
  display: none;
}

.mobile_menus_box {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 1000000;
  overflow-y: scroll;
  display: none;
}
.mobile_menus_box.active {
  display: block;
}
.mobile_menus_box .mobile_close_btn {
  margin-left: auto;
  margin-top: 10px;
  margin-right: 10px;
  width: 24px;
  height: 24px;
}
.mobile_menus_box .mobile_menus {
  padding: 10px 15px;
}
.mobile_menus_box .mobile_menus li {
  border-bottom: 1px solid #f2f2f2;
}
.mobile_menus_box .mobile_menus li a {
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #112029;
  padding: 10px 0;
}

.card_banner_section {
  background-color: var(--main-color);
}
.card_banner_section .home_video {
  object-fit: cover;
}

.who_we_are_section {
  margin-top: 50px;
  /*.who_we_are_list{
    margin-top: 15px;

    li{
      display: flex;
      margin-right: 10px;

      img{
        width: 40px;
        height: 40px;
        object-fit: cover;
        margin-right: 15px;
      }

      p{
        flex: 1;
      }
    }
  }*/
}
.who_we_are_section .who_we_are_content {
  text-align: center;
}

.features_section {
  margin-top: 98px;
}
.features_section .features_list {
  margin-top: 48px;
  gap: 60px;
}
.features_section .features_list li {
  flex-grow: 1;
  width: calc(50% - 60px);
}

.feature_item .feature_item_img {
  width: 150px;
  max-height: 150px;
  object-fit: cover;
}
.feature_item .feature_item_right {
  margin-left: 16px;
  flex: 1;
}
.feature_item .feature_item_right h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.33;
  color: var(--main-color);
}
.feature_item .feature_item_right p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  font-weight: 300;
}

.apply_form_section {
  margin: 30px 0;
}
.apply_form_section .apply_form_section_in {
  padding: 72px 186px;
  border-radius: 16px;
  background-color: var(--white);
}
.apply_form_section .apply_form_section_in input[type=file] {
  appearance: none;
  border: 0;
  margin: 0;
  height: 100%;
  -webkit-appearance: none;
  opacity: 0;
}
.apply_form_section .apply_form_section_in .apply_form_input_list {
  margin-top: 32px;
}
.apply_form_section .apply_form_section_in .apply_form_input_list > li {
  display: flex;
  flex-direction: column;
}
.apply_form_section .apply_form_section_in .apply_form_input_list > li:not(.full) {
  width: calc((100% - 40px) / 2);
  margin-bottom: 24px;
  margin-right: 40px;
}
.apply_form_section .apply_form_section_in .apply_form_input_list > li:not(.full):nth-child(2n+2) {
  margin-right: 0;
}
.apply_form_section .apply_form_section_in .apply_form_input_list > li.file_li {
  margin-bottom: 24px;
  height: 64px;
  padding: 20px 16px;
  border-radius: 4px;
  border: 1px dashed var(--main-color) !important;
}
.apply_form_section .apply_form_section_in .apply_form_input_list > li.file_li.has_error {
  border-color: red !important;
}
.apply_form_section .apply_form_section_in .apply_form_input_list > li.file_li.is_success {
  border-color: green !important;
}
.apply_form_section .apply_form_section_in .apply_form_input_list > li.file_li.is_success:after {
  content: attr(data-after);
}
.apply_form_section .apply_form_section_in .apply_form_input_list > li.file_li:after {
  content: attr(data-before);
  position: absolute;
  display: flex;
  align-items: center;
  padding-left: 16px;
  left: 0;
  top: 0;
  height: 100%;
  font-weight: 500;
  color: var(--main-color);
}
.apply_form_section .apply_form_section_in .apply_form_input_list > li > label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  color: var(--label-color);
}
.apply_form_section .apply_form_section_in .apply_form_input_list > li > input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  border: solid 1px var(--border-color);
  margin-top: 4px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  line-height: 1.43;
  color: var(--label-color);
}
.apply_form_section .apply_form_section_in .apply_form_input_list > li > input.fin_code {
  text-transform: uppercase;
}
.apply_form_section .apply_form_section_in .apply_form_input_list > li > input.choose_file {
  border: 0;
}

.home_partners_section {
  margin-top: 120px;
}

/**/
.must_fill,
.has_error .chosen-default {
  border-color: red !important;
}

.req_input_filled,
.is_success .chosen-single {
  border-color: green !important;
}

/**/
.chosen-container,
.chosen-container-single .chosen-single span,
.chosen-results,
.chosen-results li {
  width: 100% !important;
}

.currency_exchange_right_side > li .chosen-container {
  width: 136px !important;
}

.chosen-container,
.chosen-default,
.chosen-container-single .chosen-single,
.chosen-container-single .chosen-single span,
.chosen-container-single .chosen-single div {
  display: flex;
  align-items: center;
  font-size: 14px;
  height: 48px;
}

.chosen-container,
.chosen-default,
.chosen-container-single .chosen-single,
.chosen-container-multi .chosen-single,
.chosen-container-single .chosen-single span,
.chosen-container-multi span,
.chosen-container-single .chosen-single div,
.chosen-container-multi div {
  height: 100%;
}

.chosen-container-single .chosen-single,
.chosen-container-multi .chosen-single,
.chosen-container-single .chosen-default,
.chosen-container-multi {
  height: 100%;
  min-height: 48px;
  width: 100%;
  border-radius: 8px;
  border: 0;
}

.chosen-container-multi .chosen-choices {
  padding: 0 8px;
  padding-right: 20px;
  border-radius: 4px;
}

.chosen-container-multi .chosen-choices li.search-field {
  min-height: 100%;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text],
.chosen-container-single .chosen-single span,
.chosen-container .chosen-results li {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  line-height: 1.43;
  color: var(--label-color);
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
  width: 100% !important;
  min-height: 64px;
  height: auto;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--second-black);
}

.chosen-container-multi .chosen-choices li.search-field input[type=text]::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--second-black);
}

.chosen-container-multi .chosen-choices li.search-field input[type=text]:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--second-black);
}

.chosen-container-multi .chosen-choices li.search-field input[type=text]:-moz-placeholder {
  /* Firefox 18- */
  color: var(--second-black);
}

.chosen-container-single .chosen-single div b {
  background-image: url(images/select_arrow_down.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 15px;
  transition: transform 0.2s;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
  transform: rotate(-180deg);
}

.chosen-container-single .chosen-single div,
.chosen-container-multi div {
  margin-right: 16px;
  align-items: flex-end;
  justify-content: flex-end;
}

.chosen-container-single .chosen-single {
  padding: 0;
}

.chosen-container-single .chosen-single span {
  padding-left: 16px;
}

.chosen-container .chosen-drop {
  border-radius: 8px;
  box-shadow: 0 4px 16px 0 rgba(191, 197, 210, 0.3);
  background-color: #ffffff;
  border: 0;
  top: calc(100% + 8px);
}

.chosen-container .chosen-results {
  overflow-y: auto;
  border-radius: 8px;
}

.chosen-container .chosen-results li {
  padding: 16px;
  margin-right: 0;
}

.chosen-container .chosen-results li.result-selected,
.chosen-container .chosen-results li:not(.disabled-result):hover {
  background-color: var(--label-color);
  color: #fff;
}

.chosen-container .chosen-results li.disabled-result {
  cursor: not-allowed;
  display: none;
}

/**/
.fin_code_info_btn {
  margin-left: 4px;
}

.fin_code_img_and_txt {
  position: absolute;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid rgb(228, 228, 228);
  display: none;
  width: 400px;
  right: -10px;
  top: -145px;
  padding: 10px;
  flex-direction: column;
  box-shadow: 0 4px 20px 0 rgba(191, 197, 210, 0.1);
}

.fin_code_info_box:hover .fin_code_img_and_txt,
.fin_code_image_box {
  display: flex;
}

.fin_code_images {
  width: auto;
  max-width: calc((100% - 10px) / 2);
}

.fin_code_left_img {
  margin-right: 10px;
}

/**/
.faq_section {
  margin-top: 120px;
  margin-bottom: 50px;
}

.faq_list {
  margin-top: 40px;
  width: 686px;
  max-width: 96%;
}
.faq_list.full {
  width: 100%;
  max-width: 100%;
}
.faq_list li {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 16px;
  border: solid 1px var(--border-color);
  background-color: var(--white);
  overflow: hidden;
}
.faq_list li.active .faq_title {
  background-color: var(--main-color);
}
.faq_list li.active .faq_title span {
  color: var(--white);
}
.faq_list li.active .faq_title:after {
  background-image: url("images/faq_arrow_down_white.svg");
  transform: rotate(-180deg);
}
.faq_list li .faq_title,
.faq_list li .faq_body {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--second-black);
  padding: 10px 16px;
  text-align: left;
  position: relative;
}
.faq_list li .faq_body p {
  font-weight: 300;
  font-size: 16px;
}
.faq_list li .faq_title {
  min-height: 64px;
  display: flex;
  align-items: center;
}
.faq_list li .faq_title span {
  flex: 1;
  margin-right: 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--second-black);
}
.faq_list li .faq_title:after {
  width: 18px;
  height: 28px;
  margin-left: auto;
  content: "";
  transition: all 0.2s;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("images/faq_arrow_down.svg");
}
.faq_list li .faq_body {
  display: none;
  border-top: solid 1px var(--border-color);
}

/**/
.page_cat_list {
  margin-top: 30px;
}
.page_cat_list li {
  margin-right: 10px;
}
.page_cat_list li a {
  padding: 10px 16px;
  max-height: unset;
  max-width: unset;
  border-radius: 50px !important;
}

/**/
.footer {
  background-color: var(--white);
}
.footer .footer_top {
  padding-top: 45px;
}
.footer .footer_top .footer_top_in .footer_logo img {
  width: 114px;
}
.footer .footer_top .footer_top_in .footer_menu_boxes {
  margin-left: 150px;
}
.footer .footer_top .footer_top_in .footer_menu_boxes h4 {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.33;
  color: var(--black-bg-color);
  font-family: "Inter", sans-serif;
}
.footer .footer_top .footer_top_in .footer_menu_boxes .footer_menus {
  margin-top: 16px;
}
.footer .footer_top .footer_top_in .footer_menu_boxes .footer_menus li {
  margin-bottom: 16px;
}
.footer .footer_top .footer_top_in .footer_menu_boxes .footer_menus li a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.42px;
  color: var(--black-bg-color);
  transition: color 0.5s;
}
.footer .footer_top .footer_top_in .footer_menu_boxes .footer_menus li a:hover {
  color: var(--black-bg-color);
}
.footer .footer_bottom {
  /*margin-top: 40px;*/
  padding: 22px 0;
}
.footer .footer_bottom .footer_bottom_in p {
  font-size: 14px;
  color: var(--black);
  font-family: "Inter", sans-serif;
  line-height: 1.43;
  letter-spacing: -0.42px;
}
.footer .footer_bottom .footer_bottom_in .social_links li {
  margin-right: 10px;
}
.footer .footer_bottom .footer_bottom_in .social_links li a {
  display: flex;
}
.footer .footer_bottom .footer_bottom_in .social_links li a svg path {
  transition: fill 0.5s;
  fill: var(--main-color);
}
.footer .footer_bottom .footer_bottom_in .social_links li a:hover svg path {
  /*fill: var(--black-bg-color);*/
}

/**/
.popup_box {
  display: none;
  width: 762px;
  max-width: 96%;
  max-height: calc(100vh - 20px);
  border-radius: 16px;
}
.popup_box .feature_box_top {
  margin-bottom: 15px;
}
.popup_box .feature_item_right p {
  margin-top: 5px;
}
.popup_box .show_content {
  margin-top: 10px;
}

.fancybox-close-small {
  opacity: 1;
  padding: 4px !important;
  right: 14px !important;
  top: 14px !important;
}
.fancybox-close-small svg {
  width: 36px;
  height: 36px;
}
.fancybox-close-small svg path {
  fill: var(--second-black);
}

.agree_rules_input_list {
  margin-top: 24px;
}
.agree_rules_input_list li {
  margin-bottom: 24px;
  width: 100%;
}
.agree_rules_input_list li .checkbox_label {
  cursor: pointer;
}
.agree_rules_input_list li .checkbox_label input {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 1.5px solid var(--black);
  position: relative;
}
.agree_rules_input_list li .checkbox_label input:checked {
  background-color: var(--black);
}
.agree_rules_input_list li .checkbox_label input:checked:after {
  content: "✔";
  color: var(--white);
  padding: 0;
  margin: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agree_rules_input_list li .checkbox_label span {
  margin-left: 6px;
  font-size: 14px;
  line-height: 1.43;
  color: var(--black);
}
.agree_rules_input_list li .checkbox_label span a {
  color: var(--blue-btn-color);
}
.agree_rules_input_list li .checkbox_label span a:hover {
  text-decoration: underline;
}

/**/
.partner_search_section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.partner_search_section h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.14;
  color: var(--main-color);
}
.partner_search_section .partner_search_forum {
  margin-top: 73px;
}
.partner_search_section .partner_search_forum .form_submit_btn {
  background-image: url("images/search_icon.svg");
  background-position: center center;
  background-repeat: no-repeat;
  left: 25px;
  top: 0;
  position: absolute;
  z-index: 1;
  width: 24px;
  height: 100%;
}
.partner_search_section .partner_search_forum .partner_search_input {
  height: 52px;
  padding: 0 50px 0 66px;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(221px);
  backdrop-filter: blur(221px);
  box-shadow: 0 4px 102px -30px rgba(12, 18, 47, 0.11);
  background-color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  color: var(--second-black);
}
.partner_search_section .partner_search_forum .partner_search_input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--second-black);
}
.partner_search_section .partner_search_forum .partner_search_input::-moz-placeholder { /* Firefox 19+ */
  color: var(--second-black);
}
.partner_search_section .partner_search_forum .partner_search_input:-ms-input-placeholder { /* IE 10+ */
  color: var(--second-black);
}
.partner_search_section .partner_search_forum .partner_search_input:-moz-placeholder { /* Firefox 18- */
  color: var(--second-black);
}
.partner_search_section .partner_search_forum .partner_search_btn {
  position: absolute;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -18px;
  top: 50%;
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.partner_search_section .partner_search_forum .partner_search_btn.active {
  background-color: var(--btn-active-bg-color);
}
.partner_search_section .partner_search_forum .partner_search_btn.active svg path {
  fill: #fff;
  stroke: #fff;
}
.partner_search_section .partner_search_forum .search_autocomplete_box {
  position: absolute;
  top: calc(100% + 1px);
  width: 343px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  background-color: var(--black);
  display: none;
  box-shadow: 0 1px 0 0 #e5e5e5;
  border-radius: 10px;
}
.partner_search_section .partner_search_forum .search_autocomplete_box.active {
  display: block;
}
.partner_search_section .partner_search_forum .search_autocomplete_box .search_autocomplete li {
  width: 100%;
  height: 74px;
  background-color: #fff;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
}
.partner_search_section .partner_search_forum .search_autocomplete_box .search_autocomplete li:last-child {
  border-bottom: 0;
}
.partner_search_section .partner_search_forum .search_autocomplete_box .search_autocomplete li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 16px;
  width: 100%;
  height: 100%;
}
.partner_search_section .partner_search_forum .search_autocomplete_box .search_autocomplete li a .partner_logo_and_title img {
  width: 61px;
}
.partner_search_section .partner_search_forum .search_autocomplete_box .search_autocomplete li a .partner_logo_and_title h4 {
  margin-left: 12px;
}
.partner_search_section .partner_search_forum .search_autocomplete_box .search_autocomplete li a h4,
.partner_search_section .partner_search_forum .search_autocomplete_box .search_autocomplete li a p {
  font-size: 19px;
  line-height: 1.32;
  color: #283a5b;
}
.partner_search_section .partner_search_forum .partner_search_forum_bottom {
  margin-top: 10px;
  z-index: 100;
}
.partner_search_section .partner_search_forum .partner_search_forum_bottom .search_form_select_list {
  width: 100%;
  gap: 8px;
}
.partner_search_section .partner_search_forum .partner_search_forum_bottom .search_form_select_list > li {
  width: 244px;
  flex-grow: 1;
  background-color: #fff;
  border-radius: 8px;
}
.partner_search_section .partner_search_forum .partner_search_forum_bottom .search_form_select_list .chosen-container-single .chosen-single span {
  color: var(--second-black);
}
.partner_search_section .partner_search_forum .partner_search_forum_bottom .show_results_btn {
  background-color: var(--btn-active-bg-color);
  color: var(--white);
  padding: 16px 26px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.all_categories {
  font-size: 14px;
  line-height: 1.43;
  color: var(--white);
}
.all_categories:hover {
  text-decoration: underline;
}

.vacancy_list_section {
  margin-top: 95px;
}

.vacancy_item_list {
  margin: 32px 0;
  gap: 32px;
}
.vacancy_item_list li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  /*flex-grow: 1;
  width: calc(100% * (1/4) - 32px);
  max-width: 272px;
  min-height: 159px;*/
  padding: 16px;
  border-radius: 8px;
  background-color: var(--white);
  box-shadow: 0 2px 5px 0 rgba(17, 32, 41, 0.1);
}
.vacancy_item_list li a {
  margin-left: auto;
  min-width: unset !important;
  padding: 2px 30px;
  margin-top: 5px;
}
.vacancy_item_list li img {
  max-width: 92px;
  max-height: 57px;
  object-fit: contain;
}
.vacancy_item_list li h4 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.32;
  color: var(--main-color);
}
.vacancy_item_list li p {
  font-size: 16px;
  color: var(--black);
}

.partner_addr {
  margin-top: -3px !important;
  font-size: 16px !important;
  line-height: unset !important;
}

.no_result_found {
  margin-top: 32px;
}

/**/
.slick-dots {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}
.slick-dots li {
  width: 20px !important;
  height: 20px;
  max-width: unset !important;
  min-height: unset !important;
  padding: 0 !important;
  gap: 0 !important;
  border-radius: 50%;
  border: 2px solid var(--main-color);
  background-color: unset;
  transition: all 0.5s;
  overflow: hidden;
  flex-grow: unset;
  margin-right: 8px;
  box-shadow: 0 2px 5px 0 rgba(17, 32, 41, 0.1);
}
.slick-dots li.slick-active {
  background-color: var(--main-color);
}
.slick-dots li button {
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: transparent;
  font-size: 0;
}

/**/
.vacancy_detail_page .vacancy_content {
  margin-top: 30px;
}
.vacancy_detail_page .vacancy_content ol,
.vacancy_detail_page .vacancy_content ol li,
.vacancy_detail_page .vacancy_content ul,
.vacancy_detail_page .vacancy_content ul li {
  list-style-type: inherit;
  list-style-position: inside;
  float: unset;
}

/**/
.posts_item_list {
  margin-top: 32px;
  gap: 32px;
}
.posts_item_list li {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: calc(33.3333333333% - 32px);
  max-width: calc(33.3333333333% - 32px);
}
.posts_item_list li a {
  background-color: var(--white);
  box-shadow: 0 2px 5px 0 rgba(17, 32, 41, 0.1);
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.posts_item_list li img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.posts_item_list li .wl_bottom {
  padding: 16px 16px;
  height: 100%;
}
.posts_item_list li .wl_bottom h4 {
  font-size: 19px;
  line-height: 1.32;
  color: var(--main-color);
  font-weight: 600;
}
.posts_item_list li .wl_bottom p {
  font-size: 16px;
  color: #283a5b;
  margin-top: 3px;
  margin-bottom: 5px;
}
.posts_item_list li .wl_bottom .second_link {
  width: fit-content;
  padding: 3px 16px;
  font-size: 16px;
  border-radius: 4px;
  margin-left: auto;
  margin-top: auto;
  font-weight: normal;
}

/**/
.page_image_box {
  margin-top: 10px;
}
.page_image_box img {
  max-height: 400px;
  object-fit: cover;
}

/**/
.telim_list {
  margin-top: 32px;
  gap: 10px;
  justify-content: center;
}
.telim_list > li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--white);
  flex-grow: 1;
  width: calc(25% - 10px);
  max-width: calc(25% - 10px);
  text-align: center;
  justify-content: center;
  align-items: center;
}
.telim_list > li img {
  max-width: 80%;
}
.telim_list > li h4 {
  color: var(--main-color);
}
.telim_list > li .content_ ol,
.telim_list > li .content_ ol li,
.telim_list > li .content_ ul,
.telim_list > li .content_ ul li {
  list-style-type: inherit;
  list-style-position: inside;
  float: unset;
}
.page_main_text {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 2px 5px 0 rgba(17, 32, 41, 0.1);
  border: 1px solid #f2f2f2;
}
.page_main_text p {
  color: var(--main-color);
  font-weight: 500;
  font-size: 18px;
}

/**/
.home_our_coworker_history_section {
  margin-bottom: 50px;
  margin-top: 70px;
}
.home_our_coworker_history_section .our_coworker_history_box {
  margin-top: 40px;
}
.home_our_coworker_history_section .our_coworker_history_box .our_coworker_history_list .coworker_history_item {
  padding: 0 60px;
}
.home_our_coworker_history_section .our_coworker_history_box .our_coworker_history_list .coworker_history_item .coworker_history_item_img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
}
.home_our_coworker_history_section .our_coworker_history_box .our_coworker_history_list .coworker_history_item .coworker_history_item_right {
  margin-left: 50px;
  flex: 1;
}
.home_our_coworker_history_section .our_coworker_history_box .our_coworker_history_list .coworker_history_item .coworker_history_item_right h3 {
  font-size: 46px;
  color: var(--main-color);
  line-height: 1.1;
  font-weight: 700;
}
.home_our_coworker_history_section .our_coworker_history_box .our_coworker_history_list .coworker_history_item .coworker_history_item_right p {
  color: var(--black);
  margin-top: 20px;
}
.home_our_coworker_history_section .our_coworker_history_box .slick-arrow {
  width: 46px;
  height: 46px;
  border-radius: 28px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/chevron-right-material-design-icons.svg);
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  box-shadow: 0 2px 5px 0 rgba(17, 32, 41, 0.1);
  z-index: 100;
}
.home_our_coworker_history_section .our_coworker_history_box .slick-arrow.slick-prev {
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}
.home_our_coworker_history_section .our_coworker_history_box .slick-arrow.slick-next {
  right: 0;
}
.home_our_coworker_history_section .our_coworker_history_box .slick-arrow.slick-disabled {
  display: none !important;
}

.home_work_life_section {
  margin-top: 60px;
}
.home_work_life_section .home_work_life_list {
  margin-top: 30px;
}
.home_work_life_section .home_work_life_list .home_work_life_item {
  padding: 5px;
}
.home_work_life_section .home_work_life_list .home_work_life_item .home_work_life_img {
  border-radius: 5px;
  width: 400px;
  height: 260px;
  object-fit: cover;
}

/**/
.page_images {
  margin-top: 30px;
  gap: 10px;
  flex-wrap: wrap;
}
.page_images li {
  flex-grow: 1;
  width: calc(25% - 10px);
  max-width: calc(25% - 10px);
}
.page_images li a {
  border-radius: 5px;
  overflow: hidden;
}
.page_images li a img {
  height: 200px;
  object-fit: cover;
}

/**/
.navigation {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.navigation .page-numbers {
  min-width: 32px;
  height: 32px;
  border-radius: 4px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-align: center;
  color: #112029;
  transition: all 0.5s;
}
.navigation .page-numbers.active, .navigation .page-numbers:hover, .navigation .page-numbers.current {
  background-color: var(--main-color);
  color: #ffffff;
}

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