@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Italic.woff2') format('woff2'),
    url('Montserrat-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Black.woff2') format('woff2'),
    url('Montserrat-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
    url('Montserrat-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
    url('Montserrat-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
    url('Montserrat-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
    url('Montserrat-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

a,
a:visited {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

input,
textarea {
  outline: none;
  border: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

select {
  outline: none;
  font-family: inherit;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Montserrat';
  font-size: 16px;
  line-height: 26px;
  -webkit-tap-highlight-color: transparent;
  height: 100%;
}

.wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

main {
  flex-grow: 1;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.header_pc {
  margin: 15px 0 20px 0;
  font-weight: 500;
}

.header_top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.header_top_left {
  display: flex;
  gap: 10px;
}

.address,
.work_hours {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header_top_right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header_top a {
  transition: 0.2s;
}

.header_top a:hover {
  color: #DF2D00;
  transition: 0.2s;
}

.address path {
  transition: 0.2s;
}

.address:hover path {
  fill: #DF2D00;
  transition: 0.2s;
}

.header_middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 21px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin: 15px 0 20px 0;
}

.header_middle_left,
.header_middle_right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header_middle_left p {
  margin: 0;
  font-size: 12px;
  line-height: 166%;
  color: #DF2D00;
}

.logo {
  line-height: 0;
}

.messangers {
  display: flex;
  gap: 8px;
  align-items: center;
}

.messangers a {
  line-height: 0;
  position: relative;
  bottom: 0;
  transition: 0.2s;
}

.messangers a:hover {
  bottom: 3px;
  transition: 0.2s;
}

.header_btn {
  font-size: 14px;
  color: #FFF;
  background-color: #DF2D00;
  border: 2px solid #DF2D00;
  border-radius: 40px;
  padding: 0 25px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.header_btn:hover {
  background-color: transparent;
  color: #DF2D00;
  transition: 0.2s;
}

.main_menu ul {
  display: flex;
  gap: 17px;
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header_bottom .menu-item-has-children {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.header_bottom .menu-item-has-children::after {
  content: url(..//img/menu_arrow.svg);
  line-height: 0;
  min-width: 8px;
}

.main_menu .sub-menu {
  position: absolute;
  top: 50px;
  left: 0;
  background-color: #FFF;
  padding: 20px;
  border-radius: 5px;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 5px;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  z-index: 9;
}

.header_bottom .menu-item-has-children:hover .sub-menu {
  top: 26px;
  visibility: visible;
  opacity: 1;
  transition: 0.2s;
}

.main_menu a {
  transition: 0.2s;
}

.main_menu a:hover {
  color: #DF2D00;
  transition: 0.2s;
}

.current-menu-item>a {
  color: #DF2D00;
}

.header_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lang_switcher {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  line-height: 120%;
}

.lang-item-first {
  border-right: 1px solid #bbbbbb;
  padding-right: 10px;
  margin-right: 10px;
}

.current-lang a {
  color: #DF2D00;
  pointer-events: none;
}

.main_slider .swiper-slide {
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #FFF;
  border-radius: 10px;
  overflow: hidden;
  padding: 60px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.swiper-fade .swiper-slide {
  opacity: 0 !important;
}

.swiper-fade .swiper-slide-active {
  opacity: 1 !important;
}

.bg_blackout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main_slider_left {
  position: relative;
  width: 52%;
}

.main_slider_right {
  position: relative;
  line-height: 0;
  width: 46%;
  text-align: right;
}

.main_slider_left h1,
.main_slider_left h2 {
  margin: 0;
  font-size: 35px;
  line-height: 143%;
  font-weight: 800;
}

.main_descr {
  margin: 15px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.descr_item {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 162%;
}

a.all_btn,
.all_btn {
  height: 45px;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 0 25px;
  background-color: #DF2D00;
  border: 2px solid #DF2D00;
  color: #FFF;
  border-radius: 40px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}

a.all_btn:hover,
.all_btn:hover {
  background-color: transparent;
  color: #DF2D00;
  transition: 0.2s;
}

.main_slider_pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 15px;
}

.main_slider_pagination span {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background-color: #EEEEEE;
  opacity: 1;
}

.main_slider_pagination span.swiper-pagination-bullet-active {
  background-color: #DF2D00;
}

.mt_30 {
  margin-top: 30px;
}

.advantages_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 50px;
}

.adv_item {
  width: calc(33.33333% - 20px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 0 20px 20px;
}

.icon_box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #DF2D00;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -50px;
}

.advantages a.all_btn {
  width: 100%;
  justify-content: center;
}

.adv_title_line {
  width: 100px;
  height: 2px;
  background-color: #DF2D00;
}

.adv_title h3 {
  margin: 20px 0 10px 0;
  font-size: 20px;
}

.adv_item p {
  margin: 10px 0 20px 0;
  line-height: 163%;
  flex-grow: 1;
}

.doc_turnkey {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  color: #FFF;
  overflow: hidden;
}

.doc_turnkey_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.doc_turnkey_bg_blackout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.doc_turnkey_left {
  width: 54.8%;
  position: relative;
}

.doc_turnkey_right {
  width: 37%;
  position: relative;
  line-height: 0;
}

.ellipse {
  min-width: 60px;
  height: 60px;
  background-color: #DF2D00;
  border-radius: 50%;
  position: relative;
  bottom: 6px;
}

.ellipse_title {
  display: flex;
  position: relative;
}

.ellipse_title h2,
.ellipse_title h1 {
  margin: 0 0 0 -45px;
  font-size: 30px;
  line-height: 150%;
  position: relative;
}

.ellipse_descr {
  margin: 20px 0 15px 0;
  font-size: 18px;
  line-height: 156%;
}

.doc_turnkey_visa_list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.doc_turnkey_visa_item {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 163%;
  font-weight: 500;
}

.doc_turnkey_extra_services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 480px;
  padding: 40px 0 20px 0;
  color: #000;
}

.doc_turnkey_extra_service {
  width: calc(50% - 10px);
  background-color: #FFF;
  border-radius: 5px;
  padding: 0 15px 10px;
}

.doc_icon_box {
  width: 40px;
  height: 40px;
  background-color: #DF2D00;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -20px;
}

.doc_turnkey_extra_service h3 {
  margin: 5px 0;
  font-size: 16px;
  line-height: 163%;
}

.doc_turnkey_extra_service_title_line {
  width: 60px;
  height: 2px;
  background-color: #DF2D00;
}

.doc_turnkey_extra_service>p {
  font-size: 14px;
  line-height: 171%;
}

.doc_turnkey_left .all_btn {
  width: 100%;
  max-width: 480px;
  justify-content: center;
}

.full_package_visas {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.title h2 {
  margin: 0;
  font-size: 30px;
  line-height: 133%;
}

.title p {
  font-size: 18px;
  line-height: 155%;
  margin: 0;
}

.line {
  width: 80px;
  height: 2px;
  background-color: #DF2D00;
  margin-top: 10px;
}

.full_package_visas .title h2 {
  font-size: 22px;
}

.full_package_visas .line {
  margin-top: 5px;
}

.full_package_visas_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.full_package_visa {
  color: #000;
  background-color: #FFF;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 20px;
}

.full_package_visa_icon_box {
  width: 50px;
  height: 50px;
  background-color: #DF2D00;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.full_package_visa_title h3 {
  margin: 10px 0;
  font-size: 20px;
  line-height: 150%;
}

.full_package_visa_title_line {
  width: 60px;
  height: 2px;
  background-color: #111A3A;
}

.full_package_visa>p {
  margin: 10px 0 20px 0;
}

.urgent_visa {
  padding: 30px;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFF;
  position: relative;
  overflow: hidden;
}

.urgent_visa_bg_blackout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.urgent_visa_row {
  position: relative;
  display: flex;
}

.urgent_visa_left {
  width: 100%;
}

.urgent_visa_right {
  width: 100%;
  max-width: 360px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px 0 0 30px;
  margin: -30px 0;
}

.urgent_visa_left>p {
  font-weight: 500;
}

.urgent_visa_left_title_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 30px;
  margin-left: -30px;
}

.service_number {
  width: 70px;
  height: 40px;
  border-radius: 100px;
  background-color: #DF2D00;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}

.urgent_visa_service_title h3 {
  margin: 10px 0;
  font-size: 16px;
  line-height: 163%;
}

.urgent_visa_service_line {
  width: 60px;
  height: 2px;
  background-color: #DF2D00;
}

.urgent_visa_service>p {
  font-size: 14px;
  line-height: 171%;
  margin: 10px 0 30px 0;
}

.urgent_visa_service {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 30px;
  margin: 0 -30px;
  margin-bottom: 30px;
}

.urgent_visa_service:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.urgent_visa_form {
  padding-right: 30px;
}

.form_fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
}

.form_fields input,
#commentform input {
  width: 100%;
  height: 45px;
  background-color: #F1F4FF;
  border-radius: 5px;
  color: #000;
  font-size: 12px;
  padding: 0 15px;
}

.form_fields input::placeholder,
.form_fields textarea::placeholder,
#commentform input::placeholder {
  color: inherit;
  font-size: inherit;
}

.form_fields textarea,
#commentform textarea {
  width: 100%;
  height: 120px;
  background-color: #F1F4FF;
  border-radius: 5px;
  color: #000;
  font-size: 12px;
  padding: 15px;
  resize: none;
}

.form_fields select {
  width: 100%;
  height: 45px;
  background-color: transparent;
  border-radius: 5px;
  border: 0;
  color: #000;
  font-size: 12px;
  padding: 0 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 5;
}

.form_field_select {
  position: relative;
  background-color: #F1F4FF;
  border-radius: 5px;
}

.form_field_select::after {
  content: url(..//img/select_arrow.svg);
  line-height: 0;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.submit_btn {
  margin-top: 20px;
  position: relative;
}

.submit_btn input {
  width: 100%;
  height: 45px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  background-color: #DF2D00;
  border: 2px solid #DF2D00;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

.submit_btn input:hover {
  background-color: transparent;
  color: #DF2D00;
  transition: 0.2s;
}

.submit_btn .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.wpcf7-form-control-wrap {
  line-height: 0;
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

.form_fields input.wpcf7-not-valid {
  border: 2px solid #DF2D00;
  background-color: #ffd1c6;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: #79ff85;
  border: 0;
  margin: 10px 0 0 0;
  padding: 0;
}

.latest_news>ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.latest_news>ul>li {
  width: calc(33.33333% - 13.33333px);
  padding: 15px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.thumbnail_box {
  position: relative;
  padding-bottom: 75.7%;
}

.thumbnail_box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.post_date {
  margin-top: 10px;
  font-size: 12px;
  font-style: italic;
  line-height: 183%;
}

.post_tags ul {
  list-style: none;
  padding: 0;
  margin: 5px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post_tags a {
  height: 25px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111A3A;
  border-radius: 5px;
  color: #FFF;
  font-size: 12px;
  line-height: 22px;
  font-weight: 500;
}

.latest_news h3 {
  margin: 10px 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 163%
}

.latest_news .title_link {
  flex-grow: 1;
}

.latest_news>ul>li>.post_link {
  width: 100%;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F1F4FF;
  border-radius: 100px;
  font-size: 14px;
  line-height: 171%;
  transition: 0.2s;
}

.latest_news>ul>li>.post_link:hover {
  background-color: #111A3A;
  color: #FFF;
  transition: 0.2s;
}

.main_footer {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #FFF;
}

.footer_bg_blackout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main_footer .container {
  position: relative;
}

.footer_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 30px 20px 0;
}

.footer_left>p {
  font-size: 12px;
  line-height: 183%;
  margin: 15px 0 10px 0;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  border-radius: 50%;
}

.socials img {
  transform: scale(1);
  transition: 0.2s;
}

.socials a:hover img {
  transform: scale(1.2);
  transition: 0.2s;
}

.footer_middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 20px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.footer_middle a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0 20px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.footer_right .all_btn {
  width: 100%;
  font-weight: 500;
  justify-content: center;
}

.footer_right>p {
  margin: 10px 0;
  font-size: 12px;
  line-height: 183%;
  text-align: center;
}

.main_footer .main_menu ul {
  font-size: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.main_footer .main_menu .sub-menu {
  display: none;
}

.copyright {
  padding: 10px 0;
  font-size: 12px;
  line-height: 183%;
}

.breadcrumbs_title_box {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 15px 20px 20px 20px;
  color: #FFF;
  position: relative;
  overflow: hidden;
}

.breadcrumbs_title_box_blackout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 26, 58, 0.8);
}

.breadcrumbs {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 12px;
  line-height: 183%;
  font-weight: 500;
  position: relative;
}

.breadcrumbs svg {
  min-width: 3px;
}

.articles_loop {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

ul.articles_loop {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

ul.articles_loop li {
  width: calc(33.33333% - 20px);
  background-color: #F1F4FF;
  border: 1px solid #DDE4FF;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

ul.articles_loop .thumbnail_box {
  padding-bottom: 70%;
}

ul.articles_loop .thumbnail_box img {
  border-radius: 0;
}

ul.articles_loop li h3 {
  margin: 10px 15px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  flex-grow: 1;
}

ul.articles_loop li a.show_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: #FFF;
  background-color: #DF2D00;
  border: 2px solid #DF2D00;
  border-radius: 100px;
  margin: 0 15px 15px;
  cursor: pointer;
  transition: 0.2s;
}

ul.articles_loop li a.show_btn:hover {
  color: #DF2D00;
  background-color: transparent;
  transition: 0.2s;
}

.articles_loop article {
  width: calc(33.33333% - 20px);
  background-color: #FFF;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.articles_loop article h3 {
  margin: 10px 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 163%;
}

.articles_loop article .title_link {
  flex-grow: 1;
}

.articles_loop article .post_link {
  width: 100%;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F1F4FF;
  border-radius: 100px;
  font-size: 14px;
  line-height: 171%;
  transition: 0.2s;
}

.articles_loop article .post_link:hover {
  background-color: #111A3A;
  color: #FFF;
  transition: 0.2s;
}

.pagination {
  margin-top: 30px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 7px;
  color: #000;
}

.nav-links .next,
.nav-links .prev {
  display: none;
}

.page-numbers {
  width: 30px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F1F4FF;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
}

.page-numbers.current {
  background-color: #DF2D00;
  color: #fff;
}

.post_container {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.attachment-post-thumbnail {
  border-radius: 10px;
  width: 100%;
}

.the_content {
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  padding: 1px 20px;
}

.partners_descr_row {
  display: flex;
  gap: 20px;
}

.partners_descr_list {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.partners_descr_item {
  font-weight: 500;
  padding: 0 20px;
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.partners_descr_item_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 12px 0;
  cursor: pointer;
}

.toggle_box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 46px;
  height: 24px;
  background-color: #F1F4FF;
  border-radius: 100px;
}

.toggle_box span:first-child {
  width: 8px;
  height: 2px;
  background-color: #000;
  position: absolute;
}

.toggle_box span:last-child {
  width: 2px;
  height: 8px;
  background-color: #000;
  position: absolute;
  transition: 0.3s;
}

.toggle_box.active span:last-child {
  height: 0;
  transition: 0.3s;
}

.partners_descr_item_descr {
  font-size: 14px;
  line-height: 171%;
  padding: 12px 20px 0;
  margin: 0 -20px;
  border-top: 1px solid #F1F4FF;
  display: none;
}

.partners_descr_item_descr p:first-child {
  margin-top: 0;
}

.contacts_page_form {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contacts_page_form .form_fields {
  padding-top: 0;
}

.contacts_page .the_content {
  font-size: 14px;
  line-height: 171%;
}

.contacts_row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.contacts_left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #D8E8FF;
  border-radius: 5px;
  padding: 20px;
  font-size: 18px;
  line-height: 156%;
}

.contacts_left a {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
}

.contacts_left a:hover {
  color: #DF2D00;
  transition: 0.2s;
}

.contacts_left .messangers {
  gap: 10px;
}

.contacts_right {
  width: 50%;
  line-height: 0;
  border-radius: 5px;
  overflow: hidden;
}

.contacts_right iframe {
  width: 100%;
  height: 100%;
}

.form_box {
  background-image: url(..//img/form_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 30px;
}

.form_box h2 {
  color: #FFF;
}

.form_box>p {
  color: #FFF;
  padding: 20px 30px;
  margin: 0 -30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.form_box .form_fields {
  padding-top: 30px;
}

.reviews .main_slider_pagination {
  margin-top: 20px;
}

.reviews .review {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid #ECF0FF;
  padding: 20px 20px 15px;
}

.review p {
  margin: 0;
  flex-grow: 1;
}

.review .line {
  margin-top: 5px;
}

.review span {
  font-weight: 600;
}

.requestvisa_form {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.popup_quest {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  z-index: 999999;
}

.popup_quest.active {
  visibility: visible;
}

.popup_quest_blackout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
}

.popup_quest_form {
  width: 95%;
  max-width: 740px;
  background-color: #FFF;
  padding: 20px;
  border-radius: 5px;
  position: relative;
  top: 200px;
  transform: scale(0);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  transition: 0.2s;
}

.popup_quest.active .popup_quest_form {
  top: 0;
  transform: scale(1);
  transition: 0.2s;
}

.popup_quest_form .form_fields {
  padding-top: 0;
}

.no_scroll {
  overflow: hidden;
}

.articles_loop article.vacancy_item {
  width: 100%;
  box-shadow: none;
  margin-top: 30px;
  padding: 0;
}

article.vacancy_item:first-child {
  margin-top: 0;
}

.vacancy_header {
  background-color: #F1F4FF;
  border-radius: 10px 10px 0 0;
  padding: 20px 20px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.vacancy_header_left h2 {
  margin: 0;
  font-size: 16px;
  line-height: 163%;
  font-weight: 600;
}

.vacancy_header_left p {
  font-size: 12px;
  line-height: 183%;
  margin: 0;
}

.vacancy_header_right {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  line-height: 163%;
  font-weight: 500;
  white-space: nowrap;
}

.vacancy_header_right svg {
  min-width: 11px;
}

.vacancy_body {
  border: 1px solid #F1F4FF;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  padding: 15px 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vacancy_field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vacancy_field_item span {
  font-weight: 500;
}

.vacancy_body .post_tags {
  margin-top: 10px;
}

.vacancy_body .post_tags a {
  background-color: #DF2D00;
}

.vacancy_body .post_date {
  font-style: normal;
}

.vacancy_body_right a {
  width: 247px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background-color: #F1F4FF;
  font-size: 14px;
  line-height: 171%;
  font-weight: 500;
  transition: 0.2s;
}

.vacancy_body_right a:hover {
  background-color: #e6ecff;
  transition: 0.2s;
}

.vacancy_body_single {
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  padding: 20px;
  border: 0;
}

.post_thumbnail {
  line-height: 0;
  position: relative;
  padding-bottom: 42%;
}

.post_thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vacancy_body .post_tags ul {
  margin: 0;
}

.header_mobile {
  display: none;
}

.mobile_menu {
  display: none;
}

.required-field-message {
  display: block;
}

.comment-form-url {
  display: none;
}

#commentform #wp-comment-cookies-consent {
  width: auto;
  height: auto;
}

#commentform #submit {
  width: 100%;
  height: 45px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  background-color: #DF2D00;
  border: 2px solid #DF2D00;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

#commentform #submit:hover {
  background-color: transparent;
  color: #DF2D00;
  transition: 0.2s;
}

#comments>ol {
  list-style: none;
  padding: 0;
}

.wpd-thread-list>.comment {
  border: 1px solid #DDE4FF;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-author img {
  border-radius: 50%;
}

.says {
  display: none;
}

.comment-metadata {
  font-size: 10px;
  opacity: 0.5;
}

.comment-reply-link {
  font-size: 12px;
  border-bottom: 1px solid #000;
}

.comment-edit-link {
  border-bottom: 1px solid #000;
  margin-left: 10px;
}

.children {
  list-style: none;
}

.children li {
  margin-top: 20px;
}

#wpdcom .wpd-form-head {
  display: none;
}

#comments,
#wpdcom {
  max-width: 100%;
}

#comments #wpdcom span.wpd_label__text {
  display: none;
}

.wc_website-wrapper {
  display: none;
}

#wpdcom .wpd-thread-head .wpd-thread-filter {
  display: none;
}

#wpdcom .wpd-comment-footer .wpd-vote {
  display: none;
}

#wpdcom .wpd-blog-guest .wpd-comment-author,
#wpdcom .wpd-blog-guest .wpd-comment-author a {
  color: #111A3A;
}

#wpdcom .wpd-thread-head .wpdiscuz-user-settings {
  display: none;
}

#wpdcom .wpd-thread-list {
  padding-bottom: 0;
}

/* =========================================adaptive========================================= */

@media(max-width:1350px) {
  .container {
    max-width: 95%;
  }
}

@media(max-width:1024px) {
  .articles_loop {
    gap: 15px;
  }

  .articles_loop article,
  ul.articles_loop li {
    width: calc(50% - 7.5px);
  }

  .footer_row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding-top: 30px;
  }

  .footer_left {
    align-items: center;
    padding: 0;
  }

  .footer_middle,
  .footer_right {
    padding: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    width: 100%;
  }

  .footer_right {
    margin-bottom: 30px;
  }

  .footer_right .all_btn {
    width: fit-content;
  }

  .footer_middle a {
    justify-content: center;
  }

  .footer_row .work_hours {
    justify-content: center;
  }

  .main_footer .main_menu ul {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .copyright {
    text-align: center;
  }

  .header_pc {
    display: none;
  }

  .header_mobile {
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    margin-bottom: 20px;
  }


  .header_mobile_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .burger span {
    width: 28px;
    height: 3px;
    background-color: #111A3A;
  }

  .logo {
    max-width: 150px;
  }

  .header_mobile_row .header_btn {
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    width: 40px;
    height: 40px;
  }

  .mobile_menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 999999;
  }

  .mobile_menu.active {
    visibility: visible;
  }

  .mobile_menu_blackout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
  }

  .mobile_menu_content {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 300px;
    height: 100%;
    background-color: #FFF;
    padding: 15px 20px 30px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: 0.4s;
  }

  .mobile_menu.active .mobile_menu_content {
    left: 0;
    transition: 0.4s;
  }

  .mobile_menu_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }

  .mobile_menu_close {
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mobile_menu_close span {
    position: absolute;
    width: 15px;
    height: 2px;
    border-radius: 10px;
    background-color: #000;
    transform: rotate(45deg);
  }

  .mobile_menu_close span:last-child {
    transform: rotate(-45deg);
  }

  .main_menu_mobile {
    flex-grow: 1;
  }

  .main_menu_mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .main_menu_mobile .menu-item-has-children {
    position: relative;
  }

  .main_menu_mobile .menu-item-has-children::after {
    content: url(../img/menu_arrow.svg);
    line-height: 0;
    width: 19px;
    height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 3px;
    right: 0;
    transform: rotate(0);
    transition: 0.4s;
  }

  .main_menu_mobile .menu-item-has-children.active::after {
    transform: rotate(-180deg);
    transition: 0.4s;
  }

  .main_menu_mobile .sub-menu {
    padding: 0 0 0 10px;
    line-height: 110%;
    display: none;
  }

  .main_menu_mobile .sub-menu li {
    padding: 5px 0;
  }

  .main_menu_mobile>ul>li>a {
    text-transform: uppercase;
    font-weight: 500;
  }

  .mobile_menu_footer {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile_menu_footer .address {
    align-items: flex-start;
    line-height: 110%;
  }

  .mobile_menu_footer .address svg {
    min-width: 12px;
    position: relative;
    top: 2px;
  }

  .mobile_phones {
    display: flex;
    gap: 10px;
    line-height: 110%;
  }

  .mobile_phones svg {
    min-width: 14px;
    position: relative;
    top: 2px;
  }

  .mobile_phones_list {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .mobile_menu_footer .messangers {
    margin-top: 10px;
  }

  .main_slider_left h1,
  .main_slider_left h2 {
    margin: 0;
    font-size: 26px;
    line-height: 143%;
    font-weight: 800;
  }

  .ellipse_title h2,
  .ellipse_title h1 {
    font-size: 26px;
  }

  .ellipse {
    bottom: 10px;
  }

  .advantages_list {
    flex-direction: column;
    align-items: center;
    gap: 90px;
  }

  .adv_item {
    width: 100%;
    max-width: 450px;
  }

  .doc_turnkey_right {
    display: none;
  }

  .doc_turnkey_left {
    width: 100%;
  }

}

@media(max-width:900px) {
  .urgent_visa_row {
    flex-direction: column;
    gap: 30px;
  }

  .urgent_visa_left_title_box {
    padding-right: 30px;
    margin-right: -30px;
  }

  .urgent_visa_form {
    padding-right: 0;
  }

  .urgent_visa_right {
    border-left: 0;
    padding-left: 0;
    max-width: 100%;
  }
}

@media(max-width:768px) {
  .vacancy_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding-bottom: 10px;
  }

  .vacancy_body {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .breadcrumbs {
    padding-bottom: 5px;
    margin-bottom: 15px;
  }

  .partners_descr_row {
    flex-direction: column;
    gap: 15px;
  }

  .contacts_row {
    flex-direction: column;
  }

  .contacts_row>div {
    width: 100%;
  }

  .contacts_right {
    height: 400px;
  }

  .partners_descr_list {
    width: 100%;
  }

  .partners_descr_list:last-child {
    margin-top: 0;
  }

  .urgent_visa,
  .form_box {
    padding: 30px 15px;
  }

  .ellipse_descr br,
  .form_box>p br {
    display: none;
  }

  .main_slider_right {
    display: none;
  }

  .main_slider_left {
    width: 100%;
  }

  .main_slider_left h1 br,
  .main_slider_left h2 br {
    display: none;
  }

  .doc_turnkey {
    padding: 30px 15px;
  }

  .doc_turnkey_extra_services {
    gap: 15px;
  }

  .latest_news>ul {
    justify-content: center;
  }

  .latest_news>ul>li {
    width: 100%;
    max-width: 430px;
  }

  .submit_btn input {
    white-space: normal;
    padding: 0 20px;
  }

}

@media(max-width:600px) {

  .articles_loop article,
  ul.articles_loop li {
    width: 100%;
  }
}

@media(max-width:430px) {

  .vacancy_body_right,
  .vacancy_body_right a {
    width: 100%;
  }
}