@charset "UTF-8";
.header {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: fixed;
  left: 0;
  top: 0;
  background: none;
  width: 100%;
  z-index: 99;
  transition: 0.2s all linear;
  background: rgba(0, 0, 0, 0);
}
.header .nice-select:after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (max-width:820px) {
  .header {
    padding: 5px 0;
  }
}
@media (max-width:820px) {
  .header .container {
    flex-direction: row-reverse;
  }
}
.header.light {
  background: #FFF;
}
.header.light .header_left a {
  color: #223A67;
}
.header.light .header_right a,
.header.light .header_right select, .header.light .header_right .form_lang .current {
  color: #223A67;
}
.header.light .header_right .nice-select:after {
  border-bottom: 2.5px solid #223A67;
  border-right: 2.5px solid #223A67;
}
.header .header_left {
  gap: 0 50px;
  align-items: center;
  flex: 0 0 auto;
  width: 33.33%;
}
@media (max-width:1400px) {
  .header .header_left {
    gap: 0 15px;
  }
  .header .header_left .desctop {
    font-size: 15px;
  }
}
@media (max-width: 1200px) {
  .header .header_left {
    gap: 0 10px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.header .header_left a {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28.8px;
  transition: 0.2s linear;
}
.header .header_left .burger_icon {
  line-height: 0;
  cursor: pointer;
}
@media (max-width:820px) {
  .header .header_left .burger_icon .mobile1 {
    display: block;
  }
}
.header .header_left .burger_icon .mobile2 {
  display: none;
}
@media (max-width:820px) {
  .header .header_left .burger_icon.active .mobile2 {
    display: block;
  }
  .header .header_left .burger_icon.active .mobile1 {
    display: none;
  }
}
.header .header_left .burger_icon svg {
  transition: all 0.2s linear;
  line-height: 0;
}
.header .header_left .burger_icon svg path {
  fill: white;
  stroke: white;
}
.header .header_left .burger_icon.light svg path {
  stroke: #223A67;
  fill: #223A67;
}
.header .header_left .exit_menu {
  cursor: pointer;
}
@media (max-width:820px) {
  .header .header_left .exit_menu {
    display: none;
  }
}
.header .logo {
  flex: 0 0 auto;
  width: 32%;
}
@media (max-width:1400px) {
  .header .logo {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 1200px) {
  .header .logo img {
    width: 152px;
  }
}
.header .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header_right {
  gap: 0 45px;
  flex: 0 0 auto;
  width: 33.33%;
  justify-content: flex-end;
}
@media (max-width:1400px) {
  .header .header_right {
    gap: 0 15px;
  }
}
@media (max-width: 1200px) {
  .header .header_right {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.header .header_right a {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 31.2px;
  transition: 0.2s linear;
}
@media (max-width: 1200px) {
  .header .header_right a {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .header .header_right a {
    font-size: 18px;
  }
}
.header .header_right .form_lang {
  gap: 0 5px;
  cursor: pointer;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  background: none;
  border: none;
}
.header .header_right .form_lang .current {
  color: #fff;
}
@media (max-width: 1200px) {
  .header .header_right .form_lang {
    display: none;
  }
}
.header .header_right .form_lang span {
  line-height: normal;
  transition: all 0.2s linear;
  transform: rotate(0);
}
.header .header_right .icons_select svg path {
  stroke: white;
  transition: all 0.2s linear;
}
.header .header_right .icons_select.light svg path {
  stroke: #223A67;
}
.header .header_right .icons_select.light_select svg path {
  stroke: #223A67;
}
.header .header_right .mobile {
  line-height: 0;
}
.header .header_right .mobile svg path {
  fill: white;
  stroke: white;
  transition: all 0.2s linear;
}
.header .header_right .mobile.light svg path {
  fill: #223A67;
  stroke: #223A67;
}
.header .menu_overlay {
  background: rgba(0, 0, 0, 0.337254902);
  width: 100%;
  position: fixed;
  z-index: 222;
  top: 0;
  left: -100%;
  height: 100vh;
  transition: all 0.14s linear;
}
@media (max-width:820px) {
  .header .menu_overlay {
    top: 60px;
  }
}
.header .menu_overlay.active {
  left: 0;
}
.header .nav_menu {
  width: 100%;
  max-width: 500px;
  background: #FFF;
  padding: 29px 75px;
  overflow-y: auto;
  height: 100%;
}
.header .nav_menu::-webkit-scrollbar {
  display: none;
}
@media (max-width:820px) {
  .header .nav_menu {
    height: calc(100% - 60px);
    padding-top: 10px;
  }
}
@media (max-width:820px) {
  .header .nav_menu {
    max-width: 100%;
  }
}
.header .nav_menu .menu_content {
  height: calc(100% - 60px);
}
@media (max-width:820px) {
  .header .nav_menu .menu_content {
    height: 100%;
    justify-content: flex-start;
    gap: 25px;
  }
}
@media (max-width:820px) {
  .header .nav_menu .menu_content {
    align-items: center;
  }
}
.header .nav_menu .menu_content .menu_lists {
  gap: 25px;
}
@media (max-width:820px) {
  .header .nav_menu .menu_content .menu_lists {
    margin-top: 0;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
  }
}
.header .nav_menu .menu_content .menu_lists a {
  color: #223A67;
}
.header .nav_menu .menu_content .menu_lists .drop_icon {
  cursor: pointer;
  transition: all 0.3s linear;
  line-height: 0;
}
.header .nav_menu .menu_content .menu_lists .drop_icon.rotate {
  transform: rotate(180deg);
}
.header .nav_menu .menu_content .menu_child {
  margin-top: 25px;
  gap: 25px;
  padding-left: 25px;
  display: flex;
}
@media (max-width:820px) {
  .header .nav_menu .menu_content .menu_child {
    justify-content: center;
    padding-left: 0;
    gap: 15px 0;
  }
  .header .nav_menu .menu_content .menu_child li {
    text-align: center !important;
  }
}
.header .nav_menu .menu_content .menu_child a {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width:820px) {
  .header .nav_menu .menu_content .menu_child a {
    text-align: center;
  }
}
.header .nav_menu .menu_content .child_link_content {
  display: none;
}

.select_lang {
  margin-top: 25px;
}
@media (max-width:820px) {
  .select_lang {
    margin-top: 10px;
  }
  .select_lang .text_bluedark.text_24_6 {
    color: #223A67 !important;
  }
}
.select_lang form {
  gap: 0 15px;
}
.select_lang label {
  position: relative;
}
.select_lang label span {
  opacity: 0.7;
  cursor: pointer;
}
.select_lang input[type=radio] {
  position: absolute;
  opacity: 0;
}
.select_lang input[type=radio]:checked ~ span {
  opacity: 1;
}

.hero {
  padding-bottom: 78px;
  width: 100%;
  overflow: hidden;
  padding-bottom: 0;
}
@media (max-width:820px) {
  .hero .container.btns {
    position: relative;
  }
}
.hero .container.btns .btn_slide {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
}
.hero .hero_content {
  width: 100%;
  height: 100vh;
}
.hero .hero_content .hero_bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(96deg, rgba(0, 0, 0, 0.5) 6.81%, rgba(0, 0, 0, 0.4) 98.24%) no-repeat;
}
@media (max-width:820px) {
  .hero .hero_content .hero_bg {
    background: linear-gradient(166deg, rgba(0, 0, 0, 0) 6.81%, rgb(0, 0, 0) 98.24%) no-repeat;
  }
}
.hero .hero_content .hero_bg .container {
  height: 100%;
  position: relative;
}
.hero .hero_content .hero_bg .container .hero_info {
  position: absolute;
  bottom: 86px;
  left: 25px;
  gap: 30px 0;
  width: 80%;
}
@media (max-width:1400px) {
  .hero .hero_content .hero_bg .container .hero_info {
    width: 100%;
    gap: 20px 0;
  }
}
@media (max-width:820px) {
  .hero .hero_content .hero_bg .container .hero_info {
    gap: 10px 0;
  }
}
.hero .hero_content .hero_bg .container .hero_info .hero_title {
  margin-top: 30px;
  color: #FFF;
  text-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 84px;
}
@media (max-width:1400px) {
  .hero .hero_content .hero_bg .container .hero_info .hero_title {
    line-height: 70px;
    font-size: 55px;
  }
}
@media (max-width:820px) {
  .hero .hero_content .hero_bg .container .hero_info .hero_title {
    color: var(--FFFFFF, #FFF);
    text-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.6px;
  }
}
@media (max-width:820px) {
  .hero .hero_content .hero_bg .container .hero_info .button {
    margin-top: 30px;
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
  }
}
.hero .hero_content .hero_bg .container .hero_info .hero_title_sm {
  color: #FFF;
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  line-height: 49.4px;
  align-items: flex-start;
  text-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
}
@media (max-width:820px) {
  .hero .hero_content .hero_bg .container .hero_info .hero_title_sm {
    font-size: 32px;
    font-weight: 600;
    line-height: 33.6px;
  }
}
.hero .hero_content .hero_bg .container .hero_info .title_number {
  margin-left: 20px;
  background: #fff;
  font-size: 24px;
  color: #223A67;
  line-height: normal;
  padding: 0 5px;
  border-radius: 2px;
}
.hero .hero_content .hero_bg .container .hero_info .hero_action {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 31.2px;
}
@media (max-width:820px) {
  .hero .hero_content .hero_bg .container .hero_info .hero_action {
    font-size: 18px;
    line-height: 23.4px;
  }
}
@media (max-width:820px) {
  .hero .btn_container {
    top: -55vh;
    left: 0;
    bottom: auto;
    right: 0;
    margin: auto;
    gap: 0 10px;
  }
}

.swiper-pagination {
  padding: 0px 17px 32px 17px;
}
.swiper-pagination.top {
  bottom: -20px;
  z-index: 22;
}
.swiper-pagination.bottom {
  position: absolute;
  bottom: 19px;
  left: 0;
  right: 0;
  margin: 0 auto;
  gap: 5px;
}
@media (max-width:820px) {
  .swiper-pagination.bottom {
    left: 0px;
    right: auto;
    bottom: -5px;
  }
}
.swiper-pagination.bottom .swiper-pagination-bullet {
  height: 4px;
  border: none;
  outline: none;
  width: 18px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  flex: 0 0 auto;
  padding: 0;
}
@media (max-width:820px) {
  .swiper-pagination.bottom .swiper-pagination-bullet {
    width: 8px;
  }
}
.swiper-pagination.bottom .swiper-pagination-bullet-active {
  width: 36px;
  height: 4px;
  background: #fff;
}
@media (max-width:820px) {
  .swiper-pagination.bottom .swiper-pagination-bullet-active {
    width: 20px;
  }
}

.swiper-pagination-bullet {
  cursor: pointer;
  display: flex;
  width: 8px;
  height: 8px;
  outline: 1px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  margin: 0;
}

.swiper-pagination-bullet-active {
  outline: 1px solid #fff;
  border: 4px solid #6d6c6c;
  padding: 4px;
  background: rgb(255, 255, 255);
}

.choose_type {
  padding-top: 100px;
}
@media (max-width:820px) {
  .choose_type {
    padding-top: 50px;
    display: none;
  }
}
.choose_type .types {
  padding-top: 50px;
}
.choose_type .types a {cursor: pointer;}
@media (max-width:1400px) {
  .choose_type .types {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: flex-start !important;
  }
}
@media (max-width:820px) {
  .choose_type .types {
    gap: 5px 0;
    padding-top: 25px;
  }
}
.choose_type .type {
  padding: 25px;
  border: 1px solid #E1E8F2;
  gap: 15px 0;
  transition: all 0.2s linear;
}
@media (max-width:1400px) {
  .choose_type .type {
    padding: 12px;
    flex: 0 0 auto;
    width: calc(33.33% - 24px);
  }
}
@media (max-width:820px) {
  .choose_type .type {
    width: 100%;
    flex-direction: row !important;
    gap: 5px 10px;
    padding: 10px;
    align-items: center;
  }
}
.choose_type .type .type_img {
  width: 100%;
  line-height: 0;
}
@media (max-width:820px) {
  .choose_type .type .type_img {
    width: 80px;
    flex: 0 0 auto;
  }
}
.choose_type .type .type_img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 213px;
}
@media (max-width:1400px) {
  .choose_type .type .type_img img {
    height: auto;
  }
}
@media (max-width:820px) {
  .choose_type .type .type_img img {
    width: 80px;
    height: 60px;
  }
}
.choose_type .type .type_title {
  color: #223A67;
}
@media (max-width:1400px) {
  .choose_type .type .type_title {
    font-size: 16px;
  }
}
@media (max-width:820px) {
  .choose_type .type .type_title {
    font-size: 15px;
  }
}
.choose_type .type:hover {
  background: #E1E8F2;
}
.choose_type .type:active {
  background: #223A67;
}
.choose_type .type:active .type_title {
  color: #fff;
}

.our_objects {
  padding: 100px 0 90px;
}
@media (max-width:820px) {
  .our_objects.mt25 {
    padding-top: 25px !important;
  }
}
@media (max-width:820px) {
  .our_objects {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.our_objects .top_content {
  gap: 48px;
}
@media (max-width:820px) {
  .our_objects .top_content {
    gap: 25px 0;
  }
}
.our_objects .top_content .button.light {
  transition: all 0.3s linear;
}
.our_objects .top_content .button.light:hover {
  background: #223A67;
  color: #fff;
}
.our_objects .top_content .button.light:hover .text_18_6 {
  color: #fff;
}
.our_objects .top_content .button.light:hover svg path {
  stroke: white;
}
@media (max-width:820px) {
  .our_objects .top_content .button.light {
    padding: 15px 40px;
  }
}
@media (max-width:820px) {
  .our_objects .top_content .button.light .text_18_6 {
    line-height: normal;
    font-size: 15px;
  }
}

.obj_wrapper .our_objects {
  padding-bottom: 0;
  padding-top: 50px;
}
.obj_wrapper .our_objects.mobile_mt {
  padding-top: 25px;
}

.objec_card {
  padding-top: 17px;
}
.objec_card .object {
  padding: 25px;
  border: 1px solid #E1E8F2;
  background: #FFF;
  transition: all 0.2s linear;
}
@media (max-width:820px) {
  .objec_card .object {
    width: 100%;
    padding: 10px;
  }
}
.objec_card .object .button {
  border: 1px solid transparent;
}
.objec_card .object:hover {
  background: #E1E8F2;
}
.objec_card .object:hover .button {
  border-color: #223A67;
}
.objec_card .object .object_title {
  color: #243452;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
@media (max-width:820px) {
  .objec_card .object .object_title {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.6px;
  }
}
@media (max-width:820px) {
  .objec_card .object .object_btn {
    margin-top: 15px;
  }
  .objec_card .object .object_btn .button {
    width: 100%;
  }
}
.objec_card .object .object_btn span {
  line-height: normal;
}
@media (max-width:820px) {
  .objec_card .object .object_btn span {
    font-size: 12px;
  }
}
.objec_card .object .object_img {
  width: 700px;
  line-height: 0;
}
.objec_card .object .object_img .swiper-pagination {
  position: absolute;
  bottom: -20px;
}
.objec_card .object .object_img .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 3px;
  background: #E1E8F2;
  border-radius: 1px;
  padding: 0;
}
.objec_card .object .object_img .swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  height: 3px;
  background: #fff;
  border-radius: 1px;
  border: 0;
  padding: 0;
  outline: none;
}
@media (max-width:1400px) {
  .objec_card .object .object_img {
    width: 50%;
  }
}
@media (max-width:820px) {
  .objec_card .object .object_img {
    width: 100%;
    margin-top: 15px;
  }
}
.objec_card .object .object_img img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width:1400px) {
  .objec_card .object .object_img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width:1400px) {
  .objec_card .object .object_img img {
    height: 240px;
  }
}
@media (max-width:820px) {
  .objec_card .object {
    flex-direction: column;
  }
}

@media (max-width:1200px) {
  .slides_not .objects {
    flex-direction: column;
  }
}
@media (max-width:1200px) {
  .slides_not .objects .object {
    width: 100%;
  }
}
@media (max-width:1200px) {
  .slides_not .objects .object .button.light {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}
@media (max-width:1200px) {
  .slides_not .objects .object .button.light span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: var(--unnamed, #223A67);
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
  }
}

.objects {
  padding-top: 50px;
  gap: 22px 0;
}
@media (max-width:820px) {
  .objects {
    padding-top: 20px;
  }
}
.objects .object {
  border: 1px solid #E1E8F2;
  padding: 25px;
  width: calc(50% - 12.5px);
  background: #fff;
  transition: all 0.2s linear;
}
.objects .object .button {
  border: 1px solid transparent;
}
@media (max-width:1200px) {
  .objects .object .button span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: var(--unnamed, #223A67);
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
  }
}
.objects .object:hover {
  background: #E1E8F2;
}
.objects .object:hover .button {
  border-color: #7C8BA7;
  background: #E1E8F2;
}
@media (max-width: 1490px) {
  .objects .object {
    padding: 20px;
  }
}
@media (max-width:820px) {
  .objects .object {
    flex-direction: column;
    gap: 15px 0;
  }
}
.objects .object .object_left {
  width: calc(50% - 15px);
}
@media (max-width:820px) {
  .objects .object .object_left {
    width: 100%;
  }
}
@media (max-width: 1490px) {
  .objects .object .object_left .object_btn {
    padding: 5px;
    font-size: 12px;
    width: 100%;
  }
  .objects .object .object_left .object_btn .button {
    width: 100%;
    padding: 10px;
  }
}
@media (max-width:820px) {
  .objects .object .object_left .object_btn {
    margin-top: 15px;
  }
  .objects .object .object_left .object_btn a {
    padding: 15px 40px;
  }
  .objects .object .object_left .object_btn span {
    line-height: 25px;
  }
  .objects .object .object_left .object_btn img {
    height: 20px;
  }
}
.objects .object .object_title {
  color: #223A67;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 45.6px;
}
@media (max-width: 1490px) {
  .objects .object .object_title {
    font-size: 25px;
  }
}
@media (max-width:820px) {
  .objects .object .object_title {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.6px;
  }
}
.objects .object .object_img {
  line-height: 0;
  width: calc(50% - 15px);
}
@media (max-width: 1490px) {
  .objects .object .object_img {
    width: calc(50% - 15px);
  }
}
@media (max-width:820px) {
  .objects .object .object_img {
    width: 100%;
    height: 150px;
  }
}
.objects .object .object_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.objects .object .object_img .swiper-pagination {
  position: absolute;
  bottom: -20px;
}
.objects .object .object_img .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 3px;
  background: #E1E8F2;
  border-radius: 1px;
  padding: 0;
}
.objects .object .object_img .swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  height: 3px;
  background: #fff;
  border-radius: 1px;
  border: 0;
  padding: 0;
  outline: none;
}

.pagination_loc {
  margin-top: 8px;
}
.pagination_loc .swiper-pagination-bullet {
  width: 8px;
  height: 3px;
  background: #E1E8F2;
  border-radius: 1px;
  padding: 0;
}
.pagination_loc .swiper-pagination-bullet-active {
  width: 20px;
  height: 3px;
  background: #223A67;
  border-radius: 1px;
  border: 0;
  padding: 0;
}
.pagination_loc .swiper-pagination-bullet {
  cursor: pointer;
  display: flex;
  width: 8px;
  height: 8px;
  background: #E1E8F2;
  opacity: 1;
  margin: 0;
  border-radius: 50%;
}
.pagination_loc .swiper-pagination-bullet-active {
  outline: 1px solid #223A67;
  border: 4px solid #fff;
  padding: 4px;
  background: rgb(255, 255, 255);
  background: #223A67;
}

.contact {
  padding-top: 100px;
  padding-bottom: 100px;
  border-top: 1px solid #E1E8F2;
  border-bottom: 1px solid #E1E8F2;
  background: #FFF;
}
.contact #thank {
  display: none;
}
.contact #thank .thanks_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px 0;
}
@media (max-width:820px) {
  .contact #thank .thanks_content .section_title {
    font-size: 24px;
  }
}
@media (max-width:820px) {
  .contact {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.contact .contact_top {
  gap: 7px 0;
}
@media (max-width:820px) {
  .contact .contact_top .contact_action {
    font-size: 15px;
    color: #7C8BA7 !important;
  }
}
@media (max-width:820px) {
  .contact .contact_top .section_title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 31.2px;
  }
}

.contact_card {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width:820px) {
  .contact_card {
    padding-top: 50px;
    padding-bottom: 55px;
  }
}
@media (max-width: 1600px) {
  .contact_card .contact_right {
    width: 60%;
  }
}
@media (max-width:820px) {
  .contact_card .contact_right {
    width: 100%;
    margin-top: 25px;
  }
}
@media (max-width: 1600px) {
  .contact_card .contact_right .carta {
    width: 100%;
  }
  .contact_card .contact_right .carta iframe {
    width: 100%;
  }
}
.contact_card .buttons_contact {
  padding-left: 35px;
  gap: 8px;
}
@media (max-width:820px) {
  .contact_card .buttons_contact {
    margin-top: 7px;
    width: 100%;
    padding: 13px;
  }
}
@media (max-width:820px) {
  .contact_card {
    padding-top: 50px;
  }
}

.contact_component {
  margin-top: 50px;
}
@media (max-width:820px) {
  .contact_component {
    flex-direction: column;
    margin-top: 20px;
  }
}

.contact_items {
  gap: 25px 2px;
}
@media (max-width:820px) {
  .contact_items {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px 0;
  }
}
.contact_items .contact_item {
  gap: 5px 0;
  width: 50%;
  flex: 0 0 auto;
}
.contact_items .contact_item:nth-child(1) {
  width: 49%;
}
@media (max-width:820px) {
  .contact_items .contact_item:nth-child(1) {
    width: 100%;
  }
}
@media (max-width:1400px) {
  .contact_items .contact_item {
    gap: 0;
  }
}
@media (max-width: 1600px) {
  .contact_items .contact_item .text_24_6 {
    font-size: 18px;
  }
}
@media (max-width:1400px) {
  .contact_items .contact_item .text_24_6 {
    line-height: 24px;
    font-size: 15px;
  }
}
@media (max-width: 1600px) {
  .contact_items .contact_item .text_18_6 {
    font-size: 15px;
  }
  .contact_items .contact_item .text_18_6 br {
    display: none;
  }
}
@media (max-width:820px) {
  .contact_items .contact_item .text_18_6 {
    text-align: center;
  }
}
@media (max-width: 1600px) {
  .contact_items .contact_item .contact_action {
    font-size: 14px;
  }
}
@media (max-width:820px) {
  .contact_items .contact_item .contact_action {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
  }
}
@media (max-width:820px) {
  .contact_items .contact_item {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 2px 0;
  }
}
.contact_items .contact_item .button.light {
  transition: all 0.2s linear;
}
@media (max-width:820px) {
  .contact_items .contact_item .button.light {
    width: 100%;
    max-width: 100%;
    padding: 15px 40px;
  }
}
.contact_items .contact_item .button.light:hover {
  background: #7C8BA7;
}
.contact_items .contact_item .button.light:hover span {
  color: #fff;
}
.contact_items .contact_item .button.light:active {
  background: #223A67;
}
.contact_items .contact_item .button.light:active span {
  color: #fff;
}
@media (max-width:820px) {
  .contact_items .contact_item .button.light {
    width: -moz-fit-content;
    width: fit-content;
  }
  .contact_items .contact_item .button.light > img {
    width: 25px;
  }
  .contact_items .contact_item .button.light img:last-child {
    width: 10px;
  }
}

.forms_content {
  width: 100%;
  max-width: 400px;
  gap: 15px 0;
}

.thanks {
  border: 1px solid #E1E8F2;
  background: #FFF;
  height: 100%;
  max-height: 552px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  display: none;
}
.thanks .flex {
  height: 100%;
  justify-content: center;
  gap: 25px 0;
}
.thanks button {
  outline: none;
  border: 0;
}

.forms {
  width: 100%;
  max-width: 400px;
  gap: 26px 0;
  margin-top: 60px;
}
@media (max-width:820px) {
  .forms {
    margin-top: 35px;
    gap: 17px 0;
  }
}
.forms .form_item {
  width: 100%;
  position: relative;
}
.forms .form_item .placeholder {
  width: 100%;
  display: block;
  text-align: left;
  color: #7C8BA7;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: 4px auto 0 0;
}
@media (max-width:820px) {
  .forms .form_item .placeholder {
    font-size: 14px;
  }
}
.forms .form_item .placeholder span {
  color: #F8511C;
}
.forms .form_item input {
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  background: #FFF;
  padding: 15.5px;
  border-bottom: 2px solid #E1E8F2;
}
.forms .form_item input[type=file] {
  opacity: 0;
  position: absolute;
  top: 0;
}
.forms .form_item p {
  color: #7C8BA7;
}
@media (max-width:820px) {
  .forms .form_item p {
    width: 100%;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.8px;
  }
}
.forms .form_item p a {
  color: inherit;
  text-decoration: underline;
}
.forms .button.light {
  width: 100% !important;
  text-align: center;
  margin-top: -10px;
}
@media (max-width:820px) {
  .forms .button.light {
    font-size: 14px;
    line-height: 23.8px;
    margin-top: -7px;
  }
}
.forms button {
  text-align: center;
  width: 100%;
  padding: 20px 40px;
  margin-top: -5px;
}
@media (max-width:820px) {
  .forms button {
    font-size: 15px;
    margin-top: -7px;
    font-weight: 500;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

.contact_wrapper .footer {
  margin-top: 0;
}

.features {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width:820px) {
  .features {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
.features .features_lists {
  margin-top: 50px;
  gap: 0;
}
@media (max-width:820px) {
  .features .features_lists {
    margin-top: 25px;
  }
}
.features .features_lists_top {
  gap: 25px 0;
  flex-wrap: wrap;
}
@media (max-width:820px) {
  .features .features_lists_top {
    gap: 10px 0;
    flex-direction: column;
  }
}
.features .features_lists_top .features_item {
  display: flex;
}
@media (max-width:820px) {
  .features .features_lists_top .features_item.hidden {
    display: none;
  }
}
@media (max-width:820px) {
  .features .features_lists_top .features_item:nth-child(3) {
    order: -3;
  }
  .features .features_lists_top .features_item:nth-child(4) {
    order: -2;
  }
  .features .features_lists_top .features_item:nth-child(7) {
    order: -1;
  }
  .features .features_lists_top .features_item:nth-child(10) {
    order: -1;
  }
  .features .features_lists_top .features_item:nth-child(2) {
    order: 2;
  }
}
@media (max-width:820px) {
  .features .features_lists_top .features_item {
    padding: 20px;
  }
}
.features .features_lists_top .features_item_title {
  line-height: 30px;
  margin-top: 5px;
}
@media (max-width:820px) {
  .features .features_lists_top .features_item_title {
    font-size: 15px;
    line-height: 24px;
    margin-top: 0;
  }
}
.features .features_lists_bottom {
  margin-top: 25px;
}
@media (max-width:1400px) {
  .features .features_lists_bottom {
    gap: 25px 0;
    flex-wrap: wrap;
  }
}
@media (max-width:820px) {
  .features .features_lists_bottom {
    gap: 10px 0;
    margin-top: 10px;
  }
}
.features .all_content {
  display: none;
  position: relative;
  top: -20px;
}
.features .all_content::after {
  content: "";
  position: absolute;
  top: -62px;
  height: 82px;
  background: linear-gradient(180deg, rgba(250, 250, 250, 0) 0%, #FAFAFA 100%);
  width: 100%;
}
@media (max-width:820px) {
  .features .all_content {
    display: flex;
    gap: 0 5px;
  }
  .features .all_content span {
    border-bottom: 1px dashed #223A67;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    position: relative;
    z-index: 2;
  }
  .features .all_content img {
    position: relative;
    z-index: 2;
  }
}
.features .features_item {
  width: calc(16.66% - 7.5px);
  padding: 30px 30px 35px;
  border-right: 1px solid #E1E8F2;
  border-bottom: 1px solid #E1E8F2;
  border-left: 1px solid #E1E8F2;
  border-top: 2px solid #223A67;
  background: #FFF;
}
@media (max-width:1400px) {
  .features .features_item {
    width: calc(33.33% - 7.5px);
  }
}
@media (max-width:820px) {
  .features .features_item {
    width: 100%;
    padding: 20px;
    border-top: 2px solid #223A67;
  }
}
.features .features_item .features_icon {
  line-height: normal;
}
.features .features_item .features_icon img {
  height: 30px;
}
.features .features_item .features_item_title {
  line-height: 28.8px;
  margin-top: 9px;
}

.vakant_wrapper .features {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.vakant_wrapper .features .all_content {
  top: 6px;
}
.vakant_wrapper .features .features_item {
  display: flex;
  order: initial !important;
}
@media (max-width:820px) {
  .vakant_wrapper .features .features_item {
    padding: 17px;
  }
}
@media (max-width:820px) and (max-width:820px) {
 /* .vakant_wrapper .features .features_item:nth-child(2) {
    order: initial !important;
    height: 82px;
    overflow: hidden;
  }*/
}
@media (max-width:820px) {
  .vakant_wrapper .features .features_item.show {
    display: none;
    order: initial !important;
  }
  /*.vakant_wrapper .features .features_item.show:nth-child(2) {
    height: auto;
    overflow: initial;
  }*/
}

.comment .container {
  position: relative;
}
.comment .slide_content {
  margin-top: 50px;
}
@media (max-width:820px) {
  .comment .slide_content {
    margin-top: 25px;
  }
}
.comment .slide_content .slide_item {
  border: 1px solid #E1E8F2;
  background: #FFF;
  padding: 32px 35px 35px 35px;
  min-height: 490px;
}
@media (max-width:820px) {
  .comment .slide_content .slide_item {
    min-height: 460px;
    padding: 20px 20px;
  }
}
.comment .slide_content .slide_item .slide_icon {
  line-height: normal;
}
.comment .slide_content .slide_item .slide_icon img {
  height: 25px;
}
.comment .slide_content .slide_item .slide_description {
  margin-top: 17px;
  line-height: 28.8px;
  overflow: hidden;
}
@media (max-width:820px) {
  .comment .slide_content .slide_item .slide_description {
    font-size: 13px;
    font-weight: 400;
    line-height: 23.8px;
  }
}
.comment .slide_content .slide_item .slide_bottom {
  gap: 0 20px;
}
@media (max-width:820px) {
  .comment .slide_content .slide_item .slide_bottom {
    gap: 10px 0;
    flex-direction: column;
  }
}
.comment .slide_content .slide_item .logo_company {
  line-height: 0;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.comment .slide_content .slide_item:hover .logo_company {-webkit-filter: none;
  filter: none;}
.comment .slide_content .slide_item .info_company {
  color: #7C8BA7;
  font-size: 14px;
  line-height: 21px;
}
@media (max-width:820px) {
  .comment .slide_content .slide_item .info_company {
    font-size: 12px;
    line-height: 18px;
  }
}
.comment .commentSlide {
  position: relative;
}
.comment .slide_btn_group {
  width: 100%;
  top: 0;
  bottom: 0;
  left: -10px;
  right: 0;
  position: absolute;
  margin: auto 0;
}
@media (max-width:820px) {
  .comment .slide_btn_group {
    display: none;
  }
}
.comment .slide_btn_group .btn_slide {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #223A67;
  margin-top: 66px;
  z-index: 2;
}
.comment .slide_btn_group .btn_slide.prev_comment {
  position: absolute;
  right: -15px;
}
.comment .slide_btn_group .btn_slide.swiper-button-disabled {
  opacity: 0;
}

.pagination {
  margin-top: 25px;
  position: relative;
  z-index: 787822;
  cursor: pointer;
}
.pagination .swiper-pagination-bullet {
  border-radius: 2px;
  background: #E1E8F2;
  width: 18px;
  height: 4px;
}
@media (max-width:820px) {
  .pagination .swiper-pagination-bullet {
    width: 15px;
  }
}
.pagination .swiper-pagination-bullet-active {
  border-radius: 2px;
  background: var(--unnamed, #223A67);
  width: 36px;
  height: 4px;
  padding: 0;
  border: 0;
}

.modal {
  width: 100%;
  height: 100vh;
  background: #FAFAFA;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1123231111;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.modal .exit_modal {
  cursor: pointer;
  gap: 10px;
}
.modal#caracteristic {
  overflow-y: auto;
  padding-top: 25px;
  padding-bottom: 25px;
}
.modal#caracteristic .container {
  max-width: 1090px;
}
.modal#caracteristic .modal_body {
  margin-top: 20px;
}
.modal#sxema {
  padding-top: 25px;
  overflow-y: auto;
}
.modal#sxema .modal_body {
  padding-bottom: 25px;
  width: 100%;
}
.modal#sxema .modal_body img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal .caracteristic_items {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, 1fr);
  overflow-y: auto;
}
@media (max-width:1200px) {
  .modal .caracteristic_items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width:820px) {
  .modal .caracteristic_items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.modal .caracteristic_items .caracteristic_item {
  padding: 20px 15px;
  border: 1px solid #E1E8F2;
  background: #FFF;
}
.modal .caracteristic_items .caracteristic_item .caracter_title {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}
.modal#carta {
  padding: 25px;
  background: #fff;
}
.modal#carta .modal_carta {
  padding: 5px 0 15px;
}
.modal#carta .carta {
  width: 100%;
  height: calc(100% - 70px);
  overflow-y: hidden;
}
.modal#carta .carta img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal a {
  color: #223A67;
}
.modal .thanks_content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 25px 0;
}
@media (max-width:820px) {
  .modal .thanks_content .section_title {
    font-size: 24px;
  }
}
.modal .modal_header {
  gap: 20px 0;
}
.modal .modal_title_filter_sm {
  font-size: 22px;
}
.modal .modal_title_filter_md {
  font-size: 24px;
}
.modal .modal_body {
  margin-top: 50px;
}
.modal .button_lists {
  gap: 15px 10px;
}
.modal .modal_container {
  max-width: 811px;
  margin: 0 0 auto;
}

.button_change {
  display: flex;
  position: relative;
}
.button_change input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.button_change span {
  flex: 0 0 auto;
  background: none;
  border: 1px solid #E1E8F2;
  padding: 15px 15px;
  cursor: pointer;
}
@media (max-width:820px) {
  .button_change span {
    padding: 10px;
    font-size: 15px;
  }
}
.button_change span:hover {
  background: #223A67;
  color: white;
}
.button_change input[type=radio]:checked ~ span {
  background: #223A67;
  color: white;
}

.exit_carta {
  cursor: pointer;
}

.footer {
  padding: 50px 0 32px;
  background: #05141F;
}
.footer .footer_content {
  padding-bottom: 50px;
}
@media (max-width:1400px) {
  .footer .footer_content {
    flex-wrap: wrap;
    gap: 35px 0;
  }
}
@media (max-width:820px) {
  .footer .footer_content {
    padding-bottom: 25px;
    gap: 25px 0;
  }
}
.footer .footer_content .footer_item {
  flex: 0 0 auto;
}
@media (max-width:820px) {
  .footer .footer_content .footer_item {
    justify-content: center;
    width: 100%;
  }
}
.footer .footer_content .footer_item:nth-child(2) {
  flex: 0 0 auto;
  width: 35%;
}
@media (max-width:1400px) {
  .footer .footer_content .footer_item:nth-child(2) {
    width: 40%;
  }
}
@media (max-width:820px) {
  .footer .footer_content .footer_item:nth-child(2) {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
.footer .footer_content .footer_item:nth-child(1) {
  width: calc(21.5% - 10px);
}
@media (max-width:1400px) {
  .footer .footer_content .footer_item:nth-child(1) {
    width: calc(29% - 10px);
  }
}
@media (max-width:820px) {
  .footer .footer_content .footer_item:nth-child(1) {
    width: 100%;
  }
}
.footer .footer_content .footer_item:nth-child(1) .item_links {
  margin-top: 25px;
}
.footer .footer_content .footer_item:nth-child(3) {
  width: 20%;
}
@media (max-width:820px) {
  .footer .footer_content .footer_item:nth-child(3) {
    width: 100%;
  }
}
.footer .footer_content .footer_item:nth-child(3) .item_links {
  margin-top: 0;
}
.footer .footer_content .footer_item:nth-child(4) .item_links {
  margin-top: 0;
}
.footer .footer_content .footer_item .footer_phone {
  color: var(--FFFFFF, #FFF);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 28.6px;
}
.footer .footer_content .footer_item .footer_phone:hover {
  transition: all 0.2s linear;
  color: #F8511C;
}
.footer .footer_content .footer_item .item_title {
  /*cursor: pointer;*/
  color: #fff;
}
.footer .footer_content .footer_item .item_title img {
  transform: rotate(0);
  transition: all 0.2s linear;
}
.footer .footer_content .footer_item .item_title img.active {
  transform: rotate(180deg);
}
@media (max-width:1400px) {
  .footer .footer_content .footer_item .item_title {
    font-size: 20px;
  }
}
@media (max-width:820px) {
  .footer .footer_content .footer_item .item_title {
    text-align: center;
  }
}
@media (max-width:820px) and (max-width:820px) {
  .footer .footer_content .footer_item .item_title {
    justify-content: center;
  }
}
@media (max-width:820px) {
  .footer .footer_content .footer_item .slide_to {
    display: none;
  }
}
.footer .footer_content .footer_item .item_links {
  gap: 15px 0;
  margin-top: 15px;
}
@media (max-width:820px) {
  .footer .footer_content .footer_item .item_links {
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px 0;
  }
}
.footer .footer_content .footer_item .item_links a {
  color: #ffffff;
  transition: all 0.2s linear;
}
.footer .footer_content .footer_item .item_links a:hover {
  color: #F8511C;
}
.footer .footer_bottom {
  padding: 32px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width:820px) {
  .footer .footer_bottom .container {
    gap: 10px 0;
    flex-direction: column;
  }
}
.footer .footer_bottom .bottom_item,
.footer .footer_bottom a {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width:820px) {
  .footer .footer_bottom .bottom_item,
  .footer .footer_bottom a {
    font-size: 14px;
  }
}
.footer .footer_bottom .bottom_item:last-child {
  gap: 0 10px;
}
.footer .footer_bottom .bottom_item:last-child .icon_bottom {
  line-height: 0;
}

.breadcrambs {
  padding-top: 140px;
}
@media (max-width:1200px) {
  .breadcrambs {
    padding-top: 80px;
  }
}
.breadcrambs .container {
  gap: 23px;
}
@media (max-width:1200px) {
  .breadcrambs .container {
    gap: 10px;
  }
}
@media (max-width:820px) {
  .breadcrambs .container {
    padding: 0 20px;
  }
}
.breadcrambs .links {
  gap: 0 10px;
}
.breadcrambs .links::-webkit-scrollbar {
  display: none;
}
@media (max-width:1200px) {
  .breadcrambs .links {
    gap: 0 16px;
  }
}
@media (max-width:820px) {
  .breadcrambs .links {
    overflow-x: auto;
    gap: 10px;
  }
  .breadcrambs .links li {
    flex: 0 0 auto;
  }
}
.breadcrambs .links a {
  color: #7C8BA7;
}
@media (max-width:1200px) {
  .breadcrambs .links a {
    font-size: 12px;
  }
}
.breadcrambs .links a.active {
  color: #243452;
}
@media (max-width:820px) {
  .breadcrambs .section_title.t_md {
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.8px;
    /* 33.8px */
  }
}

.category_wrappre footer {
  margin-top: 100px;
}
@media (max-width:820px) {
  .category_wrappre footer {
    margin-top: 50px;
  }
}

.category {
  padding-top: 59px;
}
@media (max-width:1200px) {
  .category {
    padding-top: 20px;
  }
}
@media (max-width:820px) {
  .category {
    padding-top: 0;
  }
}
@media (max-width:820px) {
  .category .container {
    padding: 0 20px;
  }
}
.category .show_filter_btn {
  padding: 20px;
  border: 1px solid #E1E8F2;
  background: #FFF;
  cursor: pointer;
}
@media (max-width:820px) {
  .category .show_filter_btn {
    margin-top: 20px;
  }
}
.category .show_filter_btn.mt_mobile {
  margin: 25px 0;
}
.category .show_filter_btn .icon_filter {
  line-height: 0;
}
.category .filter {
  max-width: 1100px;
  width: 100%;
  flex: 0 0 auto;
}
@media (max-width: 1650px) {
  .category .filter {
    max-width: 1000px;
  }
}
@media (max-width:1400px) {
  .category .filter {
    width: 100%;
    max-width: 100%;
  }
}
.category .filter .filter_form {
  gap: 25px;
}
@media (max-width:820px) {
  .category .filter .filter_form {
    gap: 15px;
   /* display: none;*/
  }

  .tab_form .form_items {flex-wrap: wrap; gap: 20px;}
}
.category .filter .filter_form .filter_item {
  gap: 11px 0;
}
@media (max-width:820px) {
  .category .filter .filter_form .filter_item {
    margin-top: 25px;
  }
  .category .filter .filter_form .filter_item span {
    font-size: 14px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.category .filter .filter_form .filter_item:nth-child(2) .radio_items {
  gap: 11px 11px;
}
.category .filter .filter_form .filter_item:nth-child(2) .filter_item_radio span.text_18_6 {
  padding-top: 7px;
  padding-bottom: 6px;
  padding-left: 13px;
}
.category .filter .filter_form .filter_item .filter_item_title {
  line-height: 160%;
}
.category .filter .radio_items {
  gap: 11px 8px;
}
.category .filter .filter_item_radio {
  position: relative;
  align-items: center;
  flex: 0 0 auto;
  border: 1px solid #E1E8F2;
  padding-right: 15px;
  cursor: pointer;
}
.category .filter .filter_item_radio input {
  opacity: 0;
  position: absolute;
}
.category .filter .filter_item_radio:has(input[type=radio]:checked), .category .filter .filter_item_radio:has(input[type=checkbox]:checked) {
  border-bottom: 2px solid #F8511C;
}
.category .filter .filter_item_radio span.text_18_6 {
  padding: 10px 0px 10px 16px;
  line-height: 28px;
}
.category .filter .filter_item_radio span sup {
  font-size: 11px;
}
.category .filter .filter_item_radio .filter_icon {
  display: none;
  opacity: 0;
  line-height: 0;
}
.category .filter .filter_item_radio input[type=radio]:checked ~ .filter_icon, .category .filter .filter_item_radio input[type=checkbox]:checked ~ .filter_icon {
  display: block;
  opacity: 1;
}
.category .filter .filter_item_radio input[type=radio]:checked ~ span, .category .filter .filter_item_radio input[type=checkbox]:checked ~ span {
  padding: 9px 8px 9px 15px;
}
@media (max-width:1400px) {
  .category .form_content {
    display: none;
  }
}
.category .form_content .form_section {
  margin-top: 50px;
  flex: 0 0 auto;
  width: 100%;
  max-width: 500px;
  border: 1px solid #E1E8F2;
  background: #FFF;
  padding: 40px;
}
.category .form_content .form_section .forms {
  width: 100%;
  margin-top: 25px;
}
.category .form_content .form_section .forms button {
  outline: none;
  width: 100%;
  border: none;
}
.category .form_content .form_section .form_top {
  gap: 10px;
}

.card_cotnent {
  margin-top: 40px;
}
@media (max-width:820px) {
  .card_cotnent {
    margin-top: 25px;
  }
}

.card_cotnent_items {
  gap: 15px 0;
}
@media (max-width:820px) {
  .card_cotnent_items {
    gap: 15px 0;
  }
}
.card_cotnent_items .selects.nice-select {
  background-color: transparent;
  outline: none;
  border: 0;
}
@media (max-width:820px) {
  .card_cotnent_items .selects.nice-select {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.card_cotnent_items .selects.nice-select .current {
  line-height: 14px;
  border-bottom: 1px dashed #223A67 !important;
}
@media (max-width:820px) {
  .card_cotnent_items .item_filter span {
    font-size: 14px;
    line-height: 23.8px;
  }
}
.card_cotnent_items .card_item:not(.item_filter) {
  padding: 25px;
  padding-left: 14px;
  border: 1px solid #E1E8F2;
  background: #FFF;
}
@media (max-width:1200px) {
  .card_cotnent_items .card_item:not(.item_filter) {
    flex-direction: column;
  }
}
@media (max-width:820px) {
  .card_cotnent_items .card_item:not(.item_filter) {
    padding: 0;
  }
}
.card_cotnent_items .card_item:not(.item_filter) .middel_item {
  gap: 5px;
}
.card_cotnent_items .card_item:not(.item_filter) .middel_item .middle_item_title {
  color: #243452;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.card_cotnent_items .card_item:not(.item_filter) .card_slide {
  width: calc(57% - 12.5px);
}
@media (max-width:1200px) {
  .card_cotnent_items .card_item:not(.item_filter) .card_slide {
    width: 100%;
  }
}
.card_cotnent_items .card_item:not(.item_filter) .card_slide .slide_img {
  width: 100%;
  line-height: 0;
}
.card_cotnent_items .card_item:not(.item_filter) .card_slide .slide_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card_cotnent_items .card_item:not(.item_filter) .slide_item {
  width: calc(43% - 12.5px);
}
@media (max-width:1200px) {
  .card_cotnent_items .card_item:not(.item_filter) .slide_item {
    width: 100%;
  }
}
.card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info {
  gap: 25px;
}
@media (max-width:820px) {
  .card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info {
    gap: 10px;
  }
}
.card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info {
  gap: 27px;
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}
@media (max-width: 1650px) {
  .card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info {
    gap: 10px;
  }
}
@media (max-width:820px) {
  .card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info {
    padding: 15px 0px 20px 20px;
    gap: 10px;
  }
}
.card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info:nth-child(2) {
  gap: 23px;
}
.card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .middle_ifo_items {
  gap: 25px;
}
@media (max-width:820px) {
  .card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .middle_ifo_items {
    gap: 15px;
  }
  .card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .middle_ifo_items.text_18_6 {
    font-size: 15px;
  }
}
@media (max-width:820px) {
  .card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .middle_ifo_items .middle_item_number {
    font-size: 18px;
  }
}
.card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .slide_info_top {
  gap: 5px;
  display: flex;
  flex-direction: column;
}
@media (max-width:820px) {
  .card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .slide_info_top .slide_title {
    font-size: 15px;
    line-height: 24px;
  }
}
.card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .slide_info_top .slide_title_action {
  font-size: 14px;
  line-height: 23.8px;
}
.card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .slde_info_middle {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .slde_info_middle .middle_title {
  font-size: 14px;
  line-height: 36px;
}
.card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .slde_info_middle .middle_btn_gorup {
  gap: 5px;
}
.card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .slde_info_middle .middle_btn_gorup::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1650px) {
  .card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .slde_info_middle .middle_btn_gorup {
    flex-wrap: wrap;
    overflow-x: auto;
  }
}
@media (max-width:820px) {
  .card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .slde_info_middle .middle_btn_gorup {
    flex-wrap: nowrap;
  }
}
.card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .go_to_holding {
  gap: 0 20px;
}
@media (max-width:820px) {
  .card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .go_to_holding {
    flex-direction: column;
  }
}
.card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .go_to_holding .flex {
  color: #7C8BA7;
  gap: 0 8px;
}
@media (max-width:820px) {
  .card_cotnent_items .card_item:not(.item_filter) .slide_item .slide_info .slide_button {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    padding: 16px 40px;
  }
}
.card_cotnent_items .card_item:not(.item_filter) .card_pagination {
  position: absolute;
  bottom: 15px;
  display: flex;
  justify-content: center;
  z-index: 22;
}
.card_cotnent_items .card_item:not(.item_filter) .card_pagination .swiper-pagination-bullet {
  width: 18px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  padding: 0;
  border: 0;
  outline: none;
}
@media (max-width:820px) {
  .card_cotnent_items .card_item:not(.item_filter) .card_pagination .swiper-pagination-bullet {
    width: 8px;
  }
}
.card_cotnent_items .card_item:not(.item_filter) .card_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 36px;
  background: #fff;
}
@media (max-width:820px) {
  .card_cotnent_items .card_item:not(.item_filter) .card_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
  }
}
.card_cotnent_items .card_item:not(.item_filter) .slide_btn_list {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  margin: auto;
  width: calc(100% - 30px);
}
@media (max-width:820px) {
  .card_cotnent_items .card_item:not(.item_filter) .slide_btn_list {
    display: none;
  }
}
.card_cotnent_items .card_item:not(.item_filter) .slide_btn_list .btnslide {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.card_cotnent_items .card_item:not(.item_filter) .slide_btn_list .btnslide.swiper-button-disabled {
  display: none !important;
}
.card_cotnent_items .card_item:not(.item_filter) .slide_btn_list .next_card_slide {
  position: absolute;
  left: 0;
}
.card_cotnent_items .card_item:not(.item_filter) .slide_btn_list .prev_card_slide {
  position: absolute;
  right: 0;
  transform: rotate(180deg);
}
.card_cotnent_items .card_count {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width:820px) {
  .card_cotnent_items .card_count {
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width:820px) {
  .card_cotnent_items .left_cotent {
    align-items: flex-end !important;
    flex-direction: column !important;
  }
}

.card_main {
  gap: 21px;
}
.card_main .card_item:nth-child(5n) .slide_info {
  gap: 22px;
}

.middle_item_number sup {
  font-size: 12px;
}

.card_product_pagination {
  margin-top: 39px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #E1E8F2;
  gap: 25px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width:820px) {
  .card_product_pagination {
   /* display: none !important;*/
  }
}
.card_product_pagination div {
  padding: 15px 10px;
  cursor: pointer;
  color: #7C8BA7;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 28.6px;
}
.card_product_pagination div a {color: #7C8BA7;}
.card_product_pagination div.active {
  border-top: 2px solid #223A67;
  color: #223A67;
}
.card_product_pagination div.active a {color: #223A67;}
.objects_sections {
  padding-top: 50px;
}
@media (max-width:820px) {
  .objects_sections {
    padding-top: 25px;
  }
}
.objects_sections .container {
  gap: 25px;
}
@media (max-width: 1400px) {
  .objects_sections .container {
    flex-direction: column;
  }
}
@media (max-width:820px) {
  .objects_sections .container {
    padding: 0;
  }
}
.objects_sections .section_left {
  width: 100%;
  max-width: 1100px;
}
@media (max-width: 1780px) {
  .objects_sections .section_left {
    max-width: 992px;
  }
}
@media (max-width: 1673px) {
  .objects_sections .section_left {
    max-width: 868px;
  }
}
@media (max-width: 1599px) {
  .objects_sections .section_left {
    max-width: 50%;
  }
}
@media (max-width:1400px) {
  .objects_sections .section_left {
    max-width: 100%;
  }
}
.objects_sections .section_left .card_tops {
  gap: 10px;
  margin-bottom: 25px;
}
@media (max-width:820px) {
  .objects_sections .section_left .card_tops {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.objects_sections .section_left .card_tops a {
  color: #223A67;
  margin-left: 25px;
  border-bottom: 1px dashed #223A67;
  transition: all 0.3s linear;
}
.objects_sections .section_left .card_tops a:hover {
  border-bottom: 1px dashed #F8511C;
  color: #F8511C;
}
.objects_sections .section_left .card_tops .go_to_holding {
  gap: 20px;
}
@media (max-width:820px) {
  .objects_sections .section_left .card_tops .go_to_holding {
    gap: 10px;
    flex-direction: column;
  }
}
.objects_sections .section_left .card_tops .go_to_holding .flex {
  color: #7C8BA7;
  font-size: 18px;
  gap: 8px;
}
.objects_sections .section_left .slide_img {
  width: 100%;
}
.objects_sections .section_left .slide_img .play_icon {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 10px solid rgba(32, 32, 32, 0.3);
  outline: 1px solid rgb(255, 255, 255);
}
@media (max-width:820px) {
  .objects_sections .section_left .slide_img .play_icon {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(32, 32, 32, 0.3);
  }
}
.objects_sections .section_left .slide_img .play_icon img {
  width: 24px;
}
.objects_sections .section_left .slide_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.objects_sections .section_left .card_pagination {
  bottom: 25px;
  position: absolute;
  z-index: 22;
}
.objects_sections .section_left .card_pagination .swiper-pagination-bullet {
  padding: 0;
  width: 18px;
  border: 0;
  height: 4px;
  border-radius: 2px;
  outline: 0;
}
@media (max-width:820px) {
  .objects_sections .section_left .card_pagination .swiper-pagination-bullet {
    width: 8px;
  }
}
.objects_sections .section_left .card_pagination .swiper-pagination-bullet-active {
  width: 36px;
}
@media (max-width:820px) {
  .objects_sections .section_left .card_pagination .swiper-pagination-bullet-active {
    width: 20px;
  }
}
.objects_sections .section_left .slide_btn_list {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  width: calc(100% - 30px);
}
@media (max-width:820px) {
  .objects_sections .section_left .slide_btn_list {
    display: none;
  }
}
.objects_sections .section_left .slide_btn_list .btnslide {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 22;
  position: absolute;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.objects_sections .section_left .slide_btn_list .btnslide.prev_card_slide {
  transform: rotate(180deg);
  right: 0;
}
.objects_sections .section_left .slide_btn_list .swiper-button-disabled {
  display: none !important;
}
.objects_sections .section_right {
  padding: 40px;
  border: 1px solid #E1E8F2;
  background: #FFF;
  width: 100%;
  max-width: 620px;
}
.objects_sections .section_right select.show_filter_btn {
  width: 100%;
  padding: 20px;
  outline: none;
  border: 1px solid #E1E8F2;
  font-size: 14px;
  color: #243452;
  -webkit-appearance: none;
  background-image: url(../image/icon_all_content.svg) no-repeat;
}
.objects_sections .section_right.tab_content {
  padding: 0;
  border: 1px solid #E1E8F2;
  background: #FAFAFA;
}
@media (max-width:820px) {
  .objects_sections .section_right.tab_content {
    width: calc(100% - 40px);
  }
}
.objects_sections .section_right.tab_content .information_header li:first-child a {
  border-left: 0;
}
.objects_sections .section_right.tab_content .information_header a {
  display: flex;
  flex: 0 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  border-left: 1px solid #E1E8F2;
  padding: 15px 30px;
}
.objects_sections .section_right.tab_content .information_header a.active {
  background: #FFF;
}
@media (max-width:820px) {
  .objects_sections .section_right.tab_content .information_header {
    display: none;
  }
}
.objects_sections .section_right.tab_content .tab_info_top {
  padding: 30px;
  background: #FFF;
  border-bottom: 1px solid #E1E8F2;
}
@media (max-width:820px) {
  .objects_sections .section_right.tab_content .tab_info_top {
    padding: 20px 20px 0;
  }
}
.objects_sections .section_right.tab_content .tab_info_top .tab_info_statics {
  margin-top: 10px;
  gap: 25px;
}
@media (max-width:820px) {
  .objects_sections .section_right.tab_content .tab_info_top .tab_info_statics {
    gap: 10px 25px;
    flex-wrap: wrap;
  }
}
@media (max-width:820px) {
  .objects_sections .section_right.tab_content .tab_info_top .tab_info_statics .static_title {
    font-size: 12px;
  }
}
@media (max-width:820px) {
  .objects_sections .section_right.tab_content .tab_info_top .tab_info_statics .statistics_item {
    width: calc(50% - 12.5px);
  }
}
@media (max-width:820px) {
  .objects_sections .section_right.tab_content .tab_info_top .tab_info_statics .text_24_6 {
    color: #223A67;
    font-size: 18px;
    font-weight: 600;
    line-height: 23.4px;
  }
}
@media (max-width:820px) {
  .objects_sections .section_right.tab_content .tab_info_top .tab_info_statics .static_mobile.text_18_6 {
    font-size: 15px;
  }
}
.objects_sections .section_right.tab_content .tab_info_top .middle_btn_content {
  margin-top: 10px;
  gap: 5px;
}
.objects_sections .section_right.tab_content .tab_info_top .middle_btn_gorup {
  gap: 5px;
  overflow-x: auto;
}
.objects_sections .section_right.tab_content .tab_info_top .middle_btn_gorup::-webkit-scrollbar {
  display: none;
}
.objects_sections .section_right.tab_content .tab_info_top .btn_gorups {
  margin-top: 20px;
}
@media (max-width:820px) {
  .objects_sections .section_right.tab_content .tab_info_top .btn_gorups {
    flex-direction: column;
  }
  .objects_sections .section_right.tab_content .tab_info_top .btn_gorups .button {
    text-align: center;
    width: 100%;
    justify-content: center;
    font-size: 15px;
  }
}
.objects_sections .section_right.tab_content .tab_form {
  padding: 30px;
  background: #FFF;
}
@media (max-width:820px) {
  .objects_sections .section_right.tab_content .tab_form form, .objects_sections .section_right.tab_content .tab_form p.text_18_6 {
    display: none;
  }
}
.objects_sections .section_right.tab_content .tab_form .form_items {
  gap: 0;
}
@media (max-width: 1599px) {
  .objects_sections .section_right {
    max-width: 100%;
  }
}
@media (max-width:820px) {
  .objects_sections .section_right {
    padding: 20px;
    margin: 0 auto;
    width: calc(100% - 40px);
  }
}
.objects_sections .section_right .info_title {
  color: #223A67;
  font-size: 32px;
  font-weight: 600;
  line-height: 41.6px;
}
@media (max-width:820px) {
  .objects_sections .section_right .info_title {
    font-size: 22px;
  }
}
.objects_sections .section_right .icon_show_info {
  line-height: 0;
}
.objects_sections .section_right .info_body {
  gap: 25px;
}
@media (max-width:820px) {
  .objects_sections .section_right .info_body {
    gap: 15px 0;
  }
}
.objects_sections .section_right .info_body li {
  margin-left: 22px;
  list-style: outside;
}
@media (max-width:820px) {
  .objects_sections .section_right .info_body li {
    font-size: 14px;
    line-height: 23.8px;
  }
}
@media (max-width:820px) {
  .objects_sections .section_right .info_body p {
    font-size: 14px;
    font-weight: 400;
  }
}
.objects_sections .section_right .characteristic_show {
  margin-top: 25px;
  cursor: pointer;
  border-bottom: 1px dotted #223A67;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 21px;
}
@media (max-width:820px) {
  .objects_sections .section_right .characteristic_show {
    margin-top: 15px;
  }
}
.objects_sections .section_right .btn_group {
  margin-top: 25px;
  gap: 15px;
}
@media (max-width:820px) {
  .objects_sections .section_right .btn_group {
    flex-direction: column;
    margin-top: 15px;
    gap: 15px;
  }
  .objects_sections .section_right .btn_group .button {
    width: 100%;
    font-size: 15px;
  }
}
.objects_sections .section_right .btn_gorups {
  gap: 10px;
}
.objects_sections .section_right .btn_gorups .button {
  flex: 0 0 auto;
  color: #223A67;
  font-size: 18px;
  font-weight: 600;
  line-height: 28.8px;
  gap: 10px;
  display: flex;
  padding: 15px 29px;
}
.objects_sections .section_right .btn_gorups .button span:first-child {
  line-height: 0;
}
.objects_sections .section_right .btn_gorups svg {
  width: 30px;
}
.objects_sections .section_right .tab_form .forms {
  margin-top: 10px;
  max-width: 100%;
}
.objects_sections .section_right .tab_form .forms .form_items {
  gap: 10px;
}
.objects_sections .section_right .tab_form .forms .form_items input {
  height: 60px;
  font-size: 16px;
}
.objects_sections .section_right .tab_form .forms .placeholder {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  padding-top: 15px;
}
.objects_sections .section_right .tab_form .forms input {
  text-align: left;
}
.objects_sections .section_right .tab_form .forms button {
  padding: 15.5px 40px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.objects_sections .section_right .tab_form .form_bottom {
  margin-top: 10px;
  color: #7C8BA7;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}
.objects_sections .section_right .tab_form .form_bottom a {
  border-bottom: 1px solid #223A67;
  color: #223A67;
  transition: all 0.2s linear;
}
.objects_sections .section_right .tab_form .form_bottom a:hover {
  color: #F8511C;
  border-bottom: 1px solid #F8511C;
}

.btn {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px;
  background: #F8511C;
  padding: 2px 10px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
@media (max-width:820px) {
  .btn {
    font-size: 14px;
    padding: 2px 8px;
  }
}

.plan .slide_content {
  padding: 35px;
  border: 1px solid #E1E8F2;
  background: #FFF;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width:820px) {
  .plan .slide_content {
    padding: 20px;
  }
}
.plan .slide_content .slide_btn_group {
  padding: 0 25px;
}
@media (max-width:820px) {
  .plan .slide_content .slide_btn_group {
    display: none;
  }
}
.plan .slide_content .btn_slide {
  background: #223A67;
}
.plan .slide_content .btn_slide.swiper-button-disabled {
  display: none !important;
}
.plan .slide_content .btn_slide.slide_next {
  position: absolute;
  right: 25px;
}
.plan .slide_content .slide_img {
  margin-top: 20px;
  line-height: normal;
}
.plan .slide_content .slide_img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.caracter {
  margin-top: 50px;
  padding: 35px;
  border: 1px solid #E1E8F2;
  background: #FFF;
}
@media (max-width:820px) {
  .caracter {
    padding: 20px;
    margin-top: 25px;
  }
}
@media (max-width:820px) {
  .caracter .caracter_title {
    font-size: 18px;
  }
}
.caracter .caracteristic_items {
  margin-top: 20px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width:1200px) {
  .caracter .caracteristic_items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:820px) {
  .caracter .caracteristic_items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.caracter .caracteristic_items .caracteristic_item {
  padding: 15px;
  border: 1px solid #E1E8F2;
  background: #FFF;
}
.caracter .caracteristic_items .caracteristic_item:nth-child(n+9) {
  display: none;
}
@media (max-width:820px) {
  .caracter .caracteristic_items .caracteristic_item {
    padding: 10px;
  }
}
@media (max-width:820px) {
  .caracter .caracteristic_items .caracteristic_item .caracter_title {
    font-size: 15px;
  }
}
.caracter .card_all_shows {
  position: relative;
  cursor: pointer;
}
.caracter .card_all_shows::after {
  height: 91px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.788) 0%, #FFF 100%);
  content: "";
  position: absolute;
  z-index: 223;
  bottom: 20px;
  display: block;
}

.text_section {
  margin-top: 50px;
  padding: 35px;
  border: 1px solid #E1E8F2;
  background: #FFF;
  gap: 15px;
  display: flex;
  flex-direction: column;
}
@media (max-width:820px) {
  .text_section {
    padding: 20px;
  }
}
@media (max-width:820px) {
  .text_section .section_sm_title {
    font-size: 18px;
    font-weight: 600;
    line-height: 23.4px;
  }
}
@media (max-width:820px) {
  .text_section p.text_18_6 {
    height: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
  }
}

.links_items {
  padding: 35px;
  background: #fff;
  margin-top: 50px;
}
@media (max-width:820px) {
  .links_items {
    padding: 20px;
    margin-top: 25px;
  }
  .links_items .section_sm_title {
    font-size: 18px;
    font-weight: 600;
    line-height: 23.4px;
  }
}
.links_items .links_content_items {
  margin-top: 20px;
  gap: 10px 0;
  display: flex;
}
@media (max-width:820px) {
  .links_items .links_content_items {
    flex-direction: column;
  }
}
.links_items .lin_item {
  padding: 20px;
  gap: 15px;
  border: 1px solid #E1E8F2;
  background: #FFF;
  width: calc(50% - 5px);
}
@media (max-width:820px) {
  .links_items .lin_item {
    width: 100%;
    padding: 15px;
  }
}
@media (max-width:820px) {
  .links_items .lin_item .link_title {
    color: #223A67;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
  }
}
@media (max-width:820px) {
  .links_items .lin_item svg {
    width: 24px;
  }
  .links_items .lin_item svg path {
    fill: rgb(124, 139, 167);
    stroke: rgb(124, 139, 167);
  }
  .links_items .lin_item svg rect {
    fill: rgb(124, 139, 167);
    stroke: rgb(124, 139, 167);
  }
  .links_items .lin_item svg circle {
    fill: rgb(124, 139, 167);
  }
}

.maps {
  padding: 35px;
  background: #fff;
  margin-top: 50px;
}
@media (max-width:820px) {
  .maps {
    padding: 20px;
  }
}
.maps .map_cart {
  margin-top: 20px;
}
.maps .map_cart iframe {
  width: 100%;
}
.maps .button {
  margin-top: 20px;
  gap: 10px;
}
.maps .button span:first-child {
  line-height: normal;
}
.maps .button img {
  width: 30px;
}

@media (max-width:1200px) {
  .main {
    padding: 0 20px;
  }
}
.main .main_top {
  padding-top: 140px;
}
@media (max-width:820px) {
  .main .main_top {
    padding-top: 80px;
  }
}
.main .main_top .container_sm {
  gap: 20px 0;
}
@media (max-width: 1400px) {
  .main .main_top .container_sm {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .main .main_top .container_sm {
    max-width: 768px;
  }
}
@media (max-width: 768px) {
  .main .main_top .container_sm {
    max-width: 360px;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }
}
.main .main_top .container_sm .section_title {
  line-height: 62.4px;
}
@media (max-width:820px) {
  .main .main_top .container_sm .section_title {
    line-height: 33.8px;
  }
}
.main .main_top .beradcrumbs {
  width: 100%;
  gap: 10px;
}
@media (max-width:820px) {
  .main .main_top .beradcrumbs {
    gap: 0 10px;
    flex-wrap: wrap;
  }
}
.main .main_top .beradcrumbs li {
  line-height: normal;
}
.main .main_top .beradcrumbs a {
  color: #7C8BA7;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
}
@media (max-width:820px) {
  .main .main_top .beradcrumbs a {
    font-size: 14px;
    list-height: 23.8px;
  }
}
.main .main_top .beradcrumbs a.active {
  color: #243452;
}
.main section.text {
  padding-top: 50px;
}
@media (max-width:820px) {
  .main section.text {
    padding-top: 25px;
  }
}
.main section.text ul li {
  margin-left: 25px;
  list-style: outside;
}
.main section.text ol li {
  margin-left: 25px;
  list-style: decimal;
}
.main section.text .text_content p {
  font-weight: 400;
}
@media (max-width:820px) {
  .main section.text .text_content p {
    font-size: 14px;
  }
}
.main section.text .text_content p a {
  color: #F8511C;
  text-decoration: underline;
}
.main .pt_5 {
  padding-top: 5px;
}
.main .pt_10 {
  padding-top: 10px;
}
.main .pt_15 {
  padding-top: 15px;
}
.main .pt_20 {
  padding-top: 20px;
}
.main .pt_25 {
  padding-top: 25px;
}
@media (max-width:820px) {
  .main .pt_25 {
    padding-top: 15px;
  }
}
.main .pt_30 {
  padding-top: 30px;
}
.main .pt_40 {
  padding-top: 40px;
}
.main .pt_50 {
  padding-top: 50px;
}
@media (max-width:820px) {
  .main .pt_50 {
    padding-top: 25px;
  }
}
.main section.image {
  padding-top: 0;
}
@media (max-width:820px) {
  .main section.image {
    line-height: 0;
  }
}
.main section.image .image {
  padding-top: 25px;
  line-height: 0;
  width: 100%;
}
.main section.image .image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main section.image .image_title {
  padding-top: 15px;
}
.main section.video {
  padding-top: 50px;
}
@media (max-width:820px) {
  .main section.video {
    padding-top: 25px;
    line-height: 0;
  }
}
.main section.video .image_conent {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
.main section.video .play_icon {
  position: absolute;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.3);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto;
  outline: 1px solid #fff;
  border: 10px solid rgba(51, 51, 51, 0.6588235294);
  margin-top: 22%;
}
@media (max-width:820px) {
  .main section.video .play_icon {
    border: 4px solid rgba(51, 51, 51, 0.6588235294);
    margin-top: auto;
    width: 40px;
    height: 40px;
  }
}
.main section.video .image_title {
  padding-top: 10px;
}
.main section.video .image {
  width: 100%;
}
.main section.video .image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main section.card_section .card_component {
  padding: 50px;
  border: 1px solid #E1E8F2;
  background: #FFF;
}
@media (max-width:1200px) {
  .main section.card_section .card_component {
    padding: 25px;
  }
}
@media (max-width:820px) {
  .main section.card_section .card_component .card_info {
    margin-top: 25px;
    gap: 25px;
    align-items: flex-end;
  }
}
@media (max-width:820px) {
  .main section.card_section .card_component .card_info img {
    height: 100px;
  }
}
.main section.card_section .card_component p {
  padding-top: 10px;
}
@media (max-width:1200px) {
  .main section.card_section .card_component p b {
    line-height: normal;
    font-size: 15px;
  }
}
@media (max-width:820px) {
  .main section.card_section .card_component p b {
    line-height: 24px;
  }
}
.main section.card_section .card_component .card_image {
  width: 230px;
  flex: 0 0 auto;
  line-height: 0;
}
.main section.card_section .card_component .card_image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main section.card_section .card_component .content_title {
  gap: 12px;
}
.main section.titles .title_all {
  gap: 30px;
}
.main section.titles .title_all p {
  font-size: 18px;
  line-height: normal;
  padding-bottom: 5px;
}
.main section.table .container_md {
  overflow-x: auto;
}
.main section.table .container_md::-webkit-scrollbar {
  display: none;
}
.main section.table table {
  min-width: 768px;
  width: 100%;
  overflow: auto;
  border-collapse: collapse;
  margin: 20px 0 15px;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}
.main section.table thead tr {
  border-bottom: 1px solid #223A67;
}
.main section.table thead tr th:first-child {
  width: 58%;
}
@media (max-width:1200px) {
  .main section.table thead tr th:first-child {
    width: 45%;
  }
}
.main section.table thead td {
  border-bottom: 1px solid #223A67;
}
.main section.table th,
.main section.table td {
  padding: 20px;
  border-bottom: 1px solid #ddd;
}
.main section.table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.main section.table tbody tr:hover {
  background-color: #f1f1f1;
}
.main section.table .text_link {
  padding-top: 0;
}
.main section.table .button {
  width: 100%;
  max-width: 316px;
  padding: 15px 40px;
  margin-top: 50px;
}
.main section.table .button .btn_icon {
  line-height: 0;
}
.main section.table .button span {
  color: #fff;
}
.main .text_link a {
  color: #243452;
}
.main .image_title {
  color: #243452;
}
@media (max-width:820px) {
  .main .image_title {
    line-height: normal;
    padding-top: 10px;
  }
}
.main h3 {
  color: #223A67;
  font-size: 32px;
  font-weight: 600;
  line-height: 41.6px;
}
.main h4 {
  color: #223A67;
  font-size: 24px;
  font-weight: 600;
  line-height: 31.2px ж;
}

.tab_items_conent_ {
  display: none;
}

.tab_coponent {
  margin-top: 50px;
}
@media (max-width:820px) {
  .tab_coponent {
    margin-top: 25px;
  }
  .tab_coponent .container {
    padding: 0 20px;
  }
}
.tab_coponent .tab_content_top {
  margin-top: 50px;
}
@media (max-width:1200px) {
  .tab_coponent .tab_content_top {
    flex-direction: column;
    gap: 25px;
  }
}
@media (max-width:820px) {
  .tab_coponent .tab_content_top {
    margin-top: 25px;
  }
}
.tab_coponent .tab_content_top .tab_content_item {
  width: calc(50% - 17px);
}
@media (max-width:1200px) {
  .tab_coponent .tab_content_top .tab_content_item {
    width: 100%;
  }
}
@media (max-width:820px) {
  .tab_coponent .tab_content_top .tab_content_item {
    width: 100%;
    flex-direction: column;
  }
}
.tab_coponent .tab_content_top .tab_content_item .tab_content_title {
  color: #243452;
  font-size: 22px;
  font-weight: 600;
  line-height: 28.6px;
}
@media (max-width:1400px) {
  .tab_coponent .tab_content_top .tab_content_item .tab_content_title {
    font-size: 17px;
  }
}
.tab_coponent .tab_content_top .tab_content_item .tab_description {
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3.5em;
}
@media (max-width:1400px) {
  .tab_coponent .tab_content_top .tab_content_item .tab_description {
    font-size: 14px;
  }
}
@media (max-width:820px) {
  .tab_coponent .tab_content_top .tab_content_item .tab_description {
    margin-top: 5px;
  }
}
.tab_coponent .tab_content_top .tab_content_item .tab_content_item_img {
  line-height: 0;
  width: 60%;
  flex: 0 0 auto;
}
@media (max-width:1400px) {
  .tab_coponent .tab_content_top .tab_content_item .tab_content_item_img {
    width: 50%;
  }
}
@media (max-width:820px) {
  .tab_coponent .tab_content_top .tab_content_item .tab_content_item_img {
    width: 100%;
  }
}
.tab_coponent .tab_content_top .tab_content_item .tab_content_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tab_coponent .tab_content_top .tab_content_item .button_sm_light {
  color: #243452;
  font-size: 16px;
  font-weight: 400;
  padding: 4px 10px;
  background: #E1E8F2;
  line-height: 28.8px;
}
.tab_coponent .tab_content_top .tab_content_item .tab_content_info {
  width: 40%;
}
@media (max-width:1400px) {
  .tab_coponent .tab_content_top .tab_content_item .tab_content_info {
    width: 50%;
  }
}
@media (max-width:820px) {
  .tab_coponent .tab_content_top .tab_content_item .tab_content_info {
    width: 100%;
    padding: 15px 20px 20px;
  }
}
.tab_coponent .tab_menu_list {
  overflow-x: auto;
}
.tab_coponent .tab_menu_list::-webkit-scrollbar {
  display: none;
}
.tab_coponent .tab_menu_list ul {
  gap: 0 30px;
  border-bottom: 1px solid #E1E8F2;
}
@media (max-width:1200px) {
  .tab_coponent .tab_menu_list ul {
    gap: 0 15px;
    justify-content: flex-start;
  }
}
@media (max-width:820px) {
  .tab_coponent .tab_menu_list ul {
    gap: 0 20px;
    padding-left: 160px;
  }
}
.tab_coponent .tab_menu_list ul li {
  flex: 0 0 auto;
}
.tab_coponent .tab_menu_list ul a {
  padding-bottom: 15px;
  border-bottom: 1px solid transparent;
  gap: 10px;
}
@media (max-width:820px) {
  .tab_coponent .tab_menu_list ul a span {
    color: #243452;
    font-size: 15px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
  }
}
.tab_coponent .tab_menu_list ul a.active {
  border-color: #223A67;
}
.tab_coponent .tab_menu_list ul a span:last-child {
  color: #7C8BA7;
  font-size: 18px;
  font-weight: 600;
  line-height: 28.8px;
}
.tab_coponent .tab_content_info {
  padding: 25px;
  border-top: 1px solid #E1E8F2;
  border-right: 1px solid #E1E8F2;
  border-bottom: 1px solid #E1E8F2;
  background: #FFF;
  gap: 25px;
  min-height: 234px;
}
@media (max-width:1400px) {
  .tab_coponent .tab_content_info {
    padding: 15px;
  }
}
@media (max-width:820px) {
  .tab_coponent .tab_content_info {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}
@media (max-width:820px) {
  .tab_coponent .card_product_pagination {
    display: flex !important;
  }
}
.tab_coponent .card_product_pagination div {
  padding: 15px 25px 0;
}
@media (max-width:820px) {
  .tab_coponent .card_product_pagination div {
    font-size: 15px;
    padding: 15px 22px 0;
  }
}

.tab_contents {
  gap: 35px 0;
  margin-top: 35px;
  align-items: stretch;
}
@media (max-width:820px) {
  .tab_contents {
    margin-top: 25px;
    gap: 25px 0;
  }
}
.tab_contents .tab_content_item {
  width: calc(25% - 16.665px);
}
@media (max-width:1400px) {
  .tab_contents .tab_content_item {
    width: calc(33.33% - 16.665px);
  }
}
@media (max-width:1200px) {
  .tab_contents .tab_content_item {
    width: calc(50% - 16.665px);
  }
}
@media (max-width:820px) {
  .tab_contents .tab_content_item {
    width: 100%;
  }
}
.tab_contents .tab_content_item .tab_content_item_img {
  line-height: 0;
}
.tab_contents .tab_content_item .tab_content_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tab_contents .tab_content_item .tab_content_info {
  padding: 20px;
}
@media (max-width:820px) {
  .tab_contents .tab_content_item .tab_content_info {
    padding: 15px 20px 20px;
    gap: 15px;
  }
}
@media (max-width:1400px) {
  .tab_contents .tab_content_item .tab_content_info .tab_content_title {
    font-size: 16px;
  }
}
@media (max-width:820px) {
  .tab_contents .tab_content_item .tab_content_info .tab_content_title {
    color: #243452;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.4px;
  }
}
.tab_contents .tab_content_item .tab_content_info .tab_description {
  margin-top: 10px;
}
@media (max-width:820px) {
  .tab_contents .tab_content_item .tab_content_info .tab_description {
    margin-top: 5px;
    font-size: 14px;
    display: -webkit-box;
    line-height: 23px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
    overflow: hidden;
    height: 3.5em;
  }
}

.vakant {
  margin-top: 50px;
}
@media (max-width:820px) {
  .vakant {
    margin-top: 30px;
  }
}
@media (max-width:1200px) {
  .vakant .container {
    flex-direction: column-reverse;
    gap: 25px;
  }
}
@media (max-width:820px) {
  .vakant .container {
    padding: 0 20px;
  }
}
.vakant .faq_left {
  width: 100%;
  max-width: 1040px;
  flex: 0 0 auto;
}
@media (max-width: 1690px) {
  .vakant .faq_left {
    max-width: 900px;
  }
}
@media (max-width: 1520px) {
  .vakant .faq_left {
    max-width: 790px;
  }
}
@media (max-width:1400px) {
  .vakant .faq_left {
    width: 50%;
    max-width: 50%;
  }
}
@media (max-width:1200px) {
  .vakant .faq_left {
    width: 100%;
    max-width: 100%;
  }
}
.vakant .faq_left .document {
  width: 100%;
  margin-top: 0;
}
.vakant .faq_left .document .document_item {
  transition: all 0.2s linear;
}
@media (max-width:820px) {
  .vakant .faq_left .document .document_item .document_cotentes {
    margin-top: 9px !important;
    gap: 0px !important;
  }
  .vakant .faq_left .document .document_item .document_cotentes li:last-child {
    margin-top: 0px;
  }
}
@media (max-width:820px) {
  .vakant .faq_left .document .document_item .document_cotentes li {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
  }
}
@media (max-width:820px) {
  .vakant .faq_left .document .lists .text_18_6 {
    font-size: 15px;
  }
}
.vakant .faq_right {
  flex: 0 0 auto;
  width: 100%;
  max-width: 560px;
}
@media (max-width:1400px) {
  .vakant .faq_right {
    width: 50%;
    max-width: 40%;
  }
}
@media (max-width:1200px) {
  .vakant .faq_right {
    width: 100%;
    max-width: 100%;
  }
}
.vakant .faq_right .right_card_content {
  padding: 25px 30px;
  border: 1px solid #E1E8F2;
  background: #FFF;
}
@media (max-width:820px) {
  .vakant .faq_right .right_card_content {
    padding: 20px;
  }
}
@media (max-width:820px) {
  .vakant .faq_right .right_card_content .right_card_info {
    gap: 15px;
  }
}
.vakant .faq_right .right_card_content .right_card_info .card_info_top {
  gap: 5px;
}
@media (max-width:820px) {
  .vakant .faq_right .right_card_content .right_card_info .text_24_6 {
    font-size: 18px;
    font-style: normal;
    line-height: 130%;
  }
}
.vakant .faq_right .right_card_content .right_card_info .card_info_bottom a:last-child {
  color: #7C8BA7;
}
@media (max-width:820px) {
  .vakant .faq_right .right_card_content .right_card_info .card_info_bottom a:last-child {
    font-size: 14px;
  }
}
.vakant .faq_right .right_card_content .right_card_img {
  width: 50%;
}
@media (max-width:820px) {
  .vakant .faq_right .right_card_content .right_card_img {
    width: 78px;
    flex: 0 0 auto;
  }
}
.vakant .faq_right .right_card_content .right_card_img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.vakant .faq_right .hh_button {
  padding: 15px 30px;
  background: #E1E8F2;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 25px;
  gap: 10px;
}
@media (max-width:820px) {
  .vakant .faq_right .hh_button {
    width: 100%;
  }
}
.vakant .faq_right .hh_button span:first-child {
  line-height: 0;
}

.document {
  margin-top: 50px;
}
@media (max-width:820px) {
  .document {
    margin-top: 25px;
  }
}
.document .container_document {
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 1040px) {
  .document .container_document {
    max-width: 820px;
    padding: 0 25px;
  }
}
@media (max-width: 820px) {
  .document .container_document {
    max-width: 360px;
    padding: 0 20px;
  }
}
.document .documen_items {
  gap: 15px;
}
@media (max-width:820px) {
  .document .documen_items {
    gap: 10px;
  }
}
.document .documen_items .document_item {
  outline: 1px solid #E1E8F2;
  border-left: 3px solid transparent;
  background: #FFF;
  padding: 25px 30px;
  transition: all 0.3s linear;
  padding-left: 22px;
}
@media (max-width:820px) {
  .document .documen_items .document_item .document_top {
    align-items: flex-start;
    gap: 0 15px;
  }
}
.document .documen_items .document_item.active {
  border-color: #F8511C;
}
.document .documen_items .document_item.active .document_icon svg {
  transform: rotate(0deg);
}
@media (max-width:820px) {
  .document .documen_items .document_item {
    padding: 20px;
  }
}
@media (max-width:820px) {
  .document .documen_items .document_item .document_title {
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
  }
}
.document .documen_items .document_item .document_left {
  gap: 10px;
}
@media (max-width:820px) {
  .document .documen_items .document_item .document_left {
    gap: 5px;
  }
}
@media (max-width:820px) {
  .document .documen_items .document_item .document_left .text_24_6 {
    font-size: 18px;
    line-height: normal;
  }
}
.document .documen_items .document_item .document_icon {
  width: 50px;
  height: 40px;
  border: 1px solid #E1E8F2;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  border-radius: 40px;
  cursor: pointer;
}
.document .documen_items .document_item .document_icon svg {
  transform: rotate(180deg);
  transition: all 0.2s linear;
}
.document .documen_items .document_item .document_cotent .document_cotent_item {
  border: 1px solid #E1E8F2;
  margin-top: 25px;
  padding: 25px 20px;
  gap: 25px;
}
.document .documen_items .document_item .document_cotent .document_cotent_item:hover {
  background: #E1E8F2;
}
@media (max-width:820px) {
  .document .documen_items .document_item .document_cotent .document_cotent_item {
    margin-top: 10px;
    padding: 15px;
    gap: 10px;
  }
}
.document .documen_items .document_item .document_cotent .document_cotent_item .document_cotent_left {
  gap: 15px;
}
@media (max-width:820px) {
  .document .documen_items .document_item .document_cotent .document_cotent_item .document_cotent_left {
    gap: 5px;
    align-items: flex-start;
  }
  .document .documen_items .document_item .document_cotent .document_cotent_item .document_cotent_left img {
    width: 25px;
  }
}
@media (max-width:1200px) {
  .document .documen_items .document_item .document_cotent .document_cotent_item .document_cotent_left .text_18_6 {
    font-size: 16px;
  }
}
.document .documen_items .document_item .document_cotent .document_cotent_item .document_cotent_left .text_18_6 div {
  display: none;
}
@media (max-width:820px) {
  .document .documen_items .document_item .document_cotent .document_cotent_item .document_cotent_left .text_18_6 {
    line-height: normal;
    font-size: 12px;
  }
  .document .documen_items .document_item .document_cotent .document_cotent_item .document_cotent_left .text_18_6 div {
    color: #7C8BA7;
    font-size: 14px;
    font-weight: 400;
    line-height: 23.8px;
    margin-top: 5px;
    display: block;
  }
}
.document .documen_items .document_item .document_cotent .document_cotent_item .document_cotent_right {
  gap: 20px;
  flex: 0 0 auto;
}
@media (max-width:820px) {
  .document .documen_items .document_item .document_cotent .document_cotent_item .document_cotent_right {
    display: none;
  }
}
@media (max-width:820px) {
  .document .documen_items .document_item .document_cotent .document_cotent_item .document_cotent_right span {
    font-size: 12px;
  }
}
.document .documen_items .document_item .document_cotent .document_cotent_item .download_icon {
  display: flex;
  width: 50px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border: 1px solid #E1E8F2;
  border-radius: 40px;
  transition: all 0.2s linear;
}
.document .documen_items .document_item .document_cotent .document_cotent_item .download_icon:hover {
  background: #223A67;
}
.document .documen_items .document_item .document_cotent .document_cotent_item .download_icon:hover svg path {
  fill: #fff;
}
@media (max-width:820px) {
  .document .documen_items .document_item .document_cotent .document_cotent_item .download_icon {
    width: 30px;
    height: 20px;
  }
  .document .documen_items .document_item .document_cotent .document_cotent_item .download_icon svg {
    width: 12px;
  }
}
.document .documen_items .document_item .document_cotent .document_cotentes {
  margin-top: 20px;
  gap: 20px;
}
.document .documen_items .document_item .document_cotent .document_cotentes ul {
  margin-top: 10px;
}
.document .documen_items .document_item .document_cotent .document_cotentes ul li {
  list-style: inside;
}

.cards_top {
  margin-top: 50px;
}
@media (max-width:820px) {
  .cards_top {
    margin-top: 25px;
  }
}
.cards_top .container {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width:1200px) {
  .cards_top .cards_content_items_top {
    flex-wrap: wrap;
    gap: 25px 0;
  }
}
@media (max-width:820px) {
  .cards_top .cards_content_items_top {
    gap: 15px;
  }
}
.cards_top .cards_content_items_top .cards_content_item {
  padding: 25px 30px;
  min-height: 476px;
  border: 1px solid #E1E8F2;
  background: #FFF;
  width: calc(33.33% - 12.5px);
}
@media (max-width:1400px) {
  .cards_top .cards_content_items_top .cards_content_item {
    min-height: -moz-fit-content;
    min-height: fit-content;
    gap: 25px;
  }
}
@media (max-width:1200px) {
  .cards_top .cards_content_items_top .cards_content_item {
    width: calc(50% - 12.5px);
    padding: 15px 20px;
  }
}
@media (max-width:820px) {
  .cards_top .cards_content_items_top .cards_content_item {
    width: 100%;
    gap: 15px;
  }
}
.cards_top .cards_content_items_top .cards_content_item .card_top_info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width:820px) {
  .cards_top .cards_content_items_top .cards_content_item .card_top_info {
    gap: 5px;
  }
}
.cards_top .cards_content_items_top .cards_content_item .card_top_info .top_ation {
  color: #7C8BA7;
  gap: 10px;
}
.cards_top .cards_content_items_top .cards_content_item .card_top_info .top_ation.succes {
  color: #F8511C;
}
@media (max-width:820px) {
  .cards_top .cards_content_items_top .cards_content_item .card_top_info .top_card_title {
    font-size: 18px;
    line-height: 130%;
  }
}
.cards_top .cards_content_items_top .cards_content_item .card_bottom_img {
  line-height: normal;
}
.cards_top .cards_content_items_top .cards_content_item .card_bottom_img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.statistics {
  margin-top: 50px;
}
.statistics .container_sm {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1400px) {
  .statistics .container_sm {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .statistics .container_sm {
    max-width: 820px;
  }
}
@media (max-width: 820px) {
  .statistics .container_sm {
    /*max-width: 360px;*/
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width:820px) {
  .statistics {
    margin-top: 25px;
  }
}
@media (max-width:820px) {
  .statistics .statistics_items {
    flex-direction: column;
    gap: 10px;
  }
}
.statistics .statistics_item {
  width: calc(33.33% - 7.5px);
  padding: 30px 25px;
  border: 1px solid #E1E8F2;
  border-top: 2px solid #223A67;
  background: #FFF;
  gap: 5px;
  display: flex;
  flex-direction: column;
}
.statistics .statistics_item .statistic_number {
  color: #243452;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 41.6px;
}
.statistics .statistics_item .statistic_number sup {
  font-size: 13px;
}
@media (max-width:820px) {
  .statistics .statistics_item .statistic_number {
    font-size: 22px;
  }
}
@media (max-width:820px) {
  .statistics .statistics_item .statistic_action {
    font-size: 14px;
  }
}
@media (max-width:820px) {
  .statistics .statistics_item {
    width: 100%;
    padding: 15px;
  }
}

.text_desc {
  margin-top: 50px;
}
@media (max-width:820px) {
  .text_desc {
    margin-top: 25px;
  }
}
.text_desc .container_sm {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1400px) {
  .text_desc .container_sm {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .text_desc .container_sm {
    max-width: 820px;
  }
}
@media (max-width: 768px) {
  .text_desc .container_sm {
   /* max-width: 360px;*/
    padding-left: 20px;
    padding-right: 20px;
  }
}
.text_desc .description {
  padding: 40px;
  border: 1px solid #E1E8F2;
  background: #FFF;
}
@media (max-width:820px) {
  .text_desc .description {
    padding: 20px;
  }
}
.text_desc .description .description_title {
  color: #223A67;
  font-size: 32px;
  font-weight: 600;
  line-height: 41.6px;
}
@media (max-width:820px) {
  .text_desc .description .description_title {
    font-size: 22px;
  }
}
.text_desc .description .description_text {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: #7C8BA7;
}
@media (max-width:820px) {
  .text_desc .description .description_text {
    margin-top: 10px;
    gap: 15px;
  }
}
@media (max-width:820px) {
  .text_desc .description .description_text p {
    line-height: 160%;
    font-size: 15px;
  }
}
.text_desc .btn_show_text {
  margin-top: 25px;
  cursor: pointer;
}
.text_desc .btn_show_text span {
  display: inline-block;
  border-bottom: 1px dashed #223A67;
}
.text_desc .btn_show_text .icons {
  line-height: normal;
}
.text_desc .show_text {
  display: none;
}

.den {
  overflow: hidden;
}
.den .comment {
  padding-top: 100px;
}
.den .document .container_sm {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1400px) {
  .den .document .container_sm {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .den .document .container_sm {
    max-width: 820px;
  }
}
@media (max-width: 768px) {
  .den .document .container_sm {
    max-width: 360px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.den .documen_items {
  margin-top: 50px;
}
@media (max-width:820px) {
  .den .documen_items .document_item .document_left {
    align-items: center;
  }
}
@media (max-width:820px) {
  .den .documen_items .document_item {
    padding: 10px 13px;
  }
}
@media (max-width:820px) {
  .den .documen_items .text_24_6.text_18_6 {
    line-height: normal;
    font-size: 15px !important;
  }
}

.history {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width:820px) {
  .history {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.history .container_sm {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1400px) {
  .history .container_sm {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .history .container_sm {
    max-width: 820px;
  }
}
@media (max-width: 820px) {
  .history .container_sm {
    max-width: 360px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.history .timeline_container {
  margin-top: 50px;
}
.history .slider_header {
  overflow-x: auto;
}
.history .slider_header::-webkit-scrollbar {
  display: none;
}
.history .custom-pagination {
  border-top: 1px solid #E1E8F2;
  gap: 15px;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
.history .custom-pagination .year-button {
  cursor: pointer;
  color: #7C8BA7;
  padding: 13px 5px 0;
  border-top: 2px solid transparent;
}
@media (max-width:820px) {
  .history .custom-pagination .year-button {
    flex: 0 0 auto;
    font-size: 18px;
  }
}
.history .custom-pagination .year-button.active {
  color: #223A67;
  border-color: #223A67;
}
.history .swiper-container {
  padding: 0px;
  border: 1px solid #E1E8F2;
  background: #FFF;
  margin-top: 50px;
  overflow: hidden;
}
.history .swiper-container .timeline-content {
  padding: 40px;
}
@media (max-width:820px) {
  .history .swiper-container .timeline-content {
    padding: 25px 40px;
  }
}
.history .swiper-container .timeline-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.history .swiper-container .timeline-content h2 {
  text-align: center;
  color: #223A67;
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
}
.history .swiper-container .timeline-content p {
  text-align: center;
}
.history .slide_btn_group {
  justify-content: center;
  gap: 10px;
}
.history .slide_btn_group .btn_slide {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #223A67;
  margin-top: 50px;
}
.history .slide_btn_group .btn_slide.swiper-button-disabled {
  opacity: 0.2;
  display: none;
}

.command {
  padding: 100px 0;
  position: relative;
}
.command .container {
  padding: 30px;
}
@media (max-width:820px) {
  .command {
    padding: 50px 0 0;
  }
}
.command .container {
  overflow: hidden;
}
.command .slide_content {
  margin-top: 50px;
  position: relative;
}
@media (max-width:820px) {
  .command .slide_content {
    margin-top: 25px;
  }
}
.command .slide_content .contact-card {
  padding: 25px;
  border: 1px solid #E1E8F2;
  background: #FFF;
}
@media (max-width:820px) {
  .command .slide_content .contact-card {
    padding: 20px;
  }
}
.command .slide_content .contact-card h3 {
  width: 100px;
}
@media (max-width:820px) {
  .command .slide_content .contact-card .text_24_6 {
    font-size: 18px;
  }
}
.command .slide_content .contact-card .text_gray {
  color: #7C8BA7;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
}
@media (max-width:820px) {
  .command .slide_content .contact-card .contact_imgs {
    width: 68px;
    flex: 0 0 auto;
  }
}
.command .slide_content .contact-card .contact_imgs img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.command .slide_btn_group {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  right: 0;
  margin: auto;
  width: calc(100% + 60px);
}
@media (max-width:1200px) {
  .command .slide_btn_group {
    display: none;
  }
}
.command .slide_btn_group .btn_slide {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #223A67;
  z-index: 111;
  margin-top: -40px;
}
.command .slide_btn_group .btn_slide.swiper-button-disabled {
  opacity: 0;
}
.command .pagination {
  position: relative;
  z-index: 11;
}
@media (max-width:820px) {
  .command .pagination {
    top: 10px;
  }
}

.stat_info_items {
  gap: 10px;
  margin-top: 20px;
}
.stat_info_items .stat_info_item {
  padding: 5px 11px;
  width: calc(50% - 5px);
  border: 1px solid #E1E8F2;
  background: #FFF;
  gap: 2px;
}
.stat_info_items .stat_info_item .stat_info_item_titl {
  color: #F8511C;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
}
.stat_info_items .stat_info_item .stat_action {
  color: #243452;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.url_content {
  margin-top: 20px;
}
.url_content .url_title {
  color: #223A67;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
}
.url_content .url_items {
  gap: 6px;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.url_content .url_items .url_item a {
  color: #243452;
  font-size: 12px;
  font-style: normal;
  line-height: 18px;
  padding: 4px 8px;
  border: 1px solid #E1E8F2;
  font-weight: 600;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

body {
  color: #243452;
  font-family: "Manrope";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px;
  background: #FAFAFA;
  scroll-behavior: smooth;
}
body.no_scroll {
  overflow: hidden;
}

.container {
  margin: 0 auto;
  max-width: 1820px;
  padding: 0 25px;
}
@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 820px;
  }
}
@media (max-width: 820px) {
  .container {
    /*max-width: 360px;*/
  }
}

.container_small {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .container_small {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .container_small {
    max-width: 820px;
  }
}
@media (max-width: 820px) {
  .container_small {
    max-width: 360px;
    padding-left: 0;
    padding-right: 0;
  }
}

.container_md {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .container_md {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .container_md {
    max-width: 820px;
  }
}
@media (max-width: 820px) {
  .container_md {
    max-width: 360px;
    padding-left: 0;
    padding-right: 0;
  }
}

.flex {
  display: flex;
}
.flex.center {
  justify-content: center;
}
.flex.between {
  justify-content: space-between;
}
.flex.column {
  flex-direction: column;
}
.flex.a_center {
  align-items: center;
}
.flex.a_start {
  align-items: flex-start;
}
.flex.wrap {
  flex-wrap: wrap;
}

.text_18_6 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  color: #223A67;
}

.text_24_6 {
  color: #223A67;
  line-height: 31.2px;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
}

.text_bluedark {
  color: #223A67;
}

.menu_overlay .text_bluedark {
  color: #223A67 !important;
}
@media (max-width:820px) {
  .menu_overlay .text_bluedark {
    color: #223A67 !important;
  }
}

.section_title {
  color: #223A67;
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  line-height: 49.4px;
}
@media (max-width:820px) {
  .section_title {
    font-size: 24px;
    line-height: 31.2px;
  }
}
.section_title.t_md {
  font-size: 48px;
}
@media (max-width:1200px) {
  .section_title.t_md {
    font-size: 26px;
    line-height: 33.8px;
  }
}

.text_center {
  text-align: center;
}

.btn_container {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

.slide_btn_group .btn_slide {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 233;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.slide_btn_group .btn_slide.prev {
  transform: rotate(180deg);
}

.button {
  padding: 15.5px 40px;
  width: -moz-fit-content;
  width: fit-content;
}
.button.sm_light {
  padding: 10px 15px;
  gap: 0 10px;
  align-items: center;
}
.button.sm_light span {
  color: #223A67;
}
.button.sm_light .button_icon {
  line-height: 0;
}
.button.orange {
  background: #F8511C;
  color: #fff;
  border: none;
  outline: none;
  transition: all 0.2s linear;
}
.button.orange:hover {
  background: #EB440F;
}
.button.light {
  background: #E1E8F2;
}
.button.light .card_btn {
  gap: 0 10px;
  line-height: 0;
  color: #223A67;
}

.to_top {
  position: fixed;
  bottom: 100px;
  z-index: 232;
  right: 50px;
}
.to_top .container {
  padding-right: 0;
}
@media (max-width:820px) {
  .to_top {
    right: 25px;
    bottom: 25px;
  }
}
.to_top a {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #00E709;
}

.mt_15 {
  margin-top: 25px;
}

.desctop {
  display: block;
}
@media (max-width:820px) {
  .desctop {
    display: none;
  }
}

.desctop_flex {
  display: flex;
}
@media (max-width:820px) {
  .desctop_flex {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width:820px) {
  .mobile {
    display: block;
  }
}

.mobile_color {
  color: #223A67 !important;
  margin-top: 15px;
}

.container_sm {
  width: 100%;
  margin: 0 auto;
  max-width: 1100px;
}

.x_auto {
  margin: 0 auto;
}

.text_shov {
  display: none;
}
@media (max-width:820px) {
  .text_shov {
    display: flex;
  }
}

@media (max-width:820px) {
  .maps .button {
    padding: 15px 40px;
    align-items: center;
  }
  .maps .button img {
    width: 24px;
  }
  .maps .button .text_18_6 {
    font-size: 13px;
    line-height: normal;
  }
}/*# sourceMappingURL=style.css.map */