@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
body.admin-bar header#header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar header#header {
    top: 46px;
  }
}
@media screen and (max-width: 767px) {
  body.admin-bar header#header nav.menu {
    top: 46px;
    height: calc(100vh - 46px);
  }
}

body.show-menu {
  overflow: hidden;
}
body.show-menu header#header:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #012031;
  opacity: 0.75;
}
body.show-menu header#header .mobile_menu {
  border-top-color: transparent;
}
body.show-menu header#header .mobile_menu:before {
  top: 12px;
  transform: rotate(45deg);
}
body.show-menu header#header .mobile_menu:after {
  bottom: 11px;
  transform: rotate(-45deg);
}
body.show-menu header#header nav.menu {
  right: 0;
}

header#header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 86px;
  background-color: rgba(34, 77, 100, 0);
  z-index: 100;
}
header#header .logo {
  height: 42px;
  max-width: 200px;
  line-height: 1;
}
header#header .logo a {
  font-size: 36px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: #FFFFFF;
}
header#header .logo img {
  max-width: 100%;
  max-height: 100%;
}
header#header nav.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  header#header nav.menu {
    position: fixed;
    top: 0;
    right: -280px;
    left: unset;
    width: 280px;
    height: 100vh;
    background: #012031;
    padding: 80px 35px 40px;
    align-items: flex-start;
    z-index: 101;
    transition: all 0.2s linear;
    overflow-x: hidden;
  }
}
header#header nav.menu ul {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  header#header nav.menu ul {
    gap: 35px;
  }
}
@media screen and (max-width: 767px) {
  header#header nav.menu ul {
    gap: 25px;
    flex-wrap: wrap;
  }
}
header#header nav.menu ul li {
  position: relative;
}
@media screen and (max-width: 767px) {
  header#header nav.menu ul li {
    width: 100%;
  }
}
header#header nav.menu ul li.menu-item-has-children.open .sub-menu {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  header#header nav.menu ul li.menu-item-has-children.open .sub-menu {
    display: block;
  }
}
header#header nav.menu ul li.menu-item-has-children > a {
  padding-right: 20px;
}
header#header nav.menu ul li.menu-item-has-children > a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 100%;
  background-image: url(../images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (min-width: 992px) {
  header#header nav.menu ul li.button {
    padding-left: 68px;
  }
}
@media print {
  header#header nav.menu ul li.button {
    padding-left: 68px;
  }
}
header#header nav.menu ul li.button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 46px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background-color: #FCCD64;
  color: #012031;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s linear;
}
header#header nav.menu ul li.button a:hover {
  background-color: #FFE19F;
}
header#header nav.menu ul li.button a:after {
  display: none;
}
header#header nav.menu .current-menu-item a {
  color: #FCCD64;
}
header#header nav.menu .current-menu-item a:after {
  opacity: 1;
  visibility: visible;
}
header#header nav.menu .current-menu-parent > a:after {
  opacity: 1;
  visibility: visible;
}
header#header nav.menu a {
  position: relative;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  padding: 5px 0;
  transition: all 0.2s linear;
}
header#header nav.menu a:hover {
  color: #FCCD64;
}
header#header nav.menu a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #FCCD64;
  left: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
}
header#header nav.menu .sub-menu {
  position: absolute;
  top: calc(100% + 28px);
  left: 27px;
  width: 555px;
  display: block;
  padding: 43px 54px;
  background: #F2F9FC;
  border-radius: 10px;
  box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
  columns: 2;
  column-gap: 26px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  transition: all 0.2s linear;
}
@media screen and (max-width: 767px) {
  header#header nav.menu .sub-menu {
    position: relative;
    top: 15px;
    left: -20px;
    width: calc(100% + 40px);
    padding: 20px;
    transform: unset;
    columns: 1;
    display: none;
  }
}
header#header nav.menu .sub-menu:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: #F2F9FC;
  position: absolute;
  top: -7.5px;
  left: calc(50% - 7.5px);
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  header#header nav.menu .sub-menu:before {
    display: none;
  }
}
header#header nav.menu .sub-menu li {
  margin-bottom: 17px;
}
header#header nav.menu .sub-menu li.current_page_item a:after {
  display: none;
}
header#header nav.menu .sub-menu li.current_page_item a .title {
  color: #FCCD64;
}
header#header nav.menu .sub-menu a {
  font-family: "Inter", sans-serif;
  padding: 0;
}
header#header nav.menu .sub-menu a:hover .title {
  color: #FCCD64;
}
header#header nav.menu .sub-menu a .title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 4px;
  color: #224D64;
  transition: all 0.2s linear;
}
header#header nav.menu .sub-menu a .subtitle {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #7095A7;
}
header#header .mobile_menu {
  display: none;
  position: absolute;
  top: 50%;
  right: 0.75rem;
  width: 40px;
  height: 26px;
  border: none;
  background-color: transparent;
  border-top: 1px solid #FFFFFF;
  transform: translateY(-50%);
  transition: all 0.2s linear;
  z-index: 102;
}
@media screen and (max-width: 767px) {
  header#header .mobile_menu {
    display: block;
  }
}
header#header .mobile_menu:before, header#header .mobile_menu:after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  display: block;
  width: 40px;
  height: 1px;
  background-color: #FFFFFF;
  transition: all 0.2s linear;
}
header#header .mobile_menu:after {
  top: unset;
  bottom: 0;
}

footer#footer {
  background-color: #012031;
  padding: 68px 0 40px;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  footer#footer {
    text-align: center;
  }
}
footer#footer .container .row {
  align-items: center;
}
@media screen and (max-width: 767px) {
  footer#footer .left_block {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  footer#footer .right_block {
    order: 1;
  }
}
footer#footer .logo {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  footer#footer .logo {
    order: 1;
  }
}
footer#footer .logo img {
  height: 42px;
}
footer#footer .disclaimer,
footer#footer .info,
footer#footer .copyright {
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 1.4;
  max-width: 364px;
}
@media screen and (max-width: 767px) {
  footer#footer .disclaimer,
  footer#footer .info,
  footer#footer .copyright {
    margin: 0 auto;
  }
}
footer#footer .disclaimer p,
footer#footer .info p,
footer#footer .copyright p {
  margin-bottom: 10px;
}
footer#footer .disclaimer p:last-child,
footer#footer .info p:last-child,
footer#footer .copyright p:last-child {
  margin-bottom: 0;
}
footer#footer .copyright {
  margin-top: 10px;
}
footer#footer .disclaimer {
  margin: 40px auto 0;
  max-width: 100%;
  text-align: center;
  color: #7095A7;
}
footer#footer .contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 76px;
}
@media screen and (max-width: 1199px) {
  footer#footer .contacts {
    justify-content: flex-end;
    gap: 60px;
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  footer#footer .contacts {
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
    margin-bottom: 40px;
    order: 3;
  }
}
footer#footer .contacts a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  transition: all 0.2s linear;
  white-space: nowrap;
}
footer#footer .contacts a:hover {
  color: #FCCD64;
}
footer#footer .contacts a img {
  margin-right: 12px;
}
footer#footer .menu {
  justify-content: flex-end;
}
@media screen and (max-width: 1199px) {
  footer#footer .menu {
    margin-bottom: 20px;
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  footer#footer .menu {
    justify-content: center;
    margin-bottom: 40px;
    order: 2;
  }
}
footer#footer .menu ul {
  display: flex;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 413px) {
  footer#footer .menu ul {
    justify-content: space-between;
    gap: unset;
  }
}
footer#footer .menu ul li {
  padding: 0;
}
footer#footer .menu a {
  color: #7095A7;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s linear;
}
footer#footer .menu a:hover {
  color: #FCCD64;
}
footer#footer .social {
  margin-top: 20px;
}
footer#footer .social .linkedin:hover svg path:first-child {
  fill: #FFFFFF;
}
footer#footer .social .linkedin svg path:first-child {
  transition: all 0.2s linear;
}

body.error404 header#header {
  background-color: rgb(34, 77, 100) !important;
}
body.error404 .site-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 396px);
}
body.error404 .site-wrap .container {
  padding-top: 126px;
  padding-bottom: 40px;
}
body.error404 h1 {
  text-align: center;
  font-size: 120px;
}
body.error404 .subtitle {
  text-align: center;
  font-size: 32px;
}

.banner_section .container {
  max-width: 1130px;
}
.banner_section .container .inner_banner {
  position: relative;
  background: #FCCD64;
  border-radius: 5px;
  overflow: hidden;
  z-index: 10;
}
.banner_section .container .content {
  padding: 26px 70px 32px 65px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #224D64;
  max-width: 650px;
}
@media screen and (max-width: 991px) {
  .banner_section .container .content {
    padding: 26px 40px 32px 40px;
  }
}
@media screen and (max-width: 767px) {
  .banner_section .container .content {
    text-align: center;
    max-width: 100%;
    order: 2;
  }
}
.banner_section .container .content h2 {
  font-family: "Noto Serif", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: #224D64;
  margin-bottom: 14px;
}
.banner_section .container .content p {
  margin-bottom: 10px;
}
.banner_section .container .content p:last-child {
  margin-bottom: 0;
}
.banner_section .container .content .wp-block-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 42px;
  margin-top: 29px;
}
@media screen and (max-width: 1199px) {
  .banner_section .container .content .wp-block-buttons {
    gap: 32px;
  }
}
@media screen and (max-width: 991px) {
  .banner_section .container .content .wp-block-buttons {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .banner_section .container .content .wp-block-buttons {
    justify-content: center;
  }
}
.banner_section .container .content .wp-block-buttons .wp-block-button a, .banner_section .container .content .wp-block-buttons .wp-block-button button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 46px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background-color: #FCCD64;
  color: #012031;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s linear;
  background: #224D64;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  min-width: 200px;
  height: 50px;
}
.banner_section .container .content .wp-block-buttons .wp-block-button a:hover, .banner_section .container .content .wp-block-buttons .wp-block-button button:hover {
  background-color: #FFE19F;
}
.banner_section .container .content .wp-block-buttons .wp-block-button a:hover, .banner_section .container .content .wp-block-buttons .wp-block-button button:hover {
  background-color: #7095A7;
}
@media all and (min-width: 992px) {
  .banner_section .container .content .wp-block-buttons .wp-block-button a, .banner_section .container .content .wp-block-buttons .wp-block-button button {
    padding: 0 48px;
  }
}
@media print {
  .banner_section .container .content .wp-block-buttons .wp-block-button a, .banner_section .container .content .wp-block-buttons .wp-block-button button {
    padding: 0 48px;
  }
}
@media screen and (max-width: 991px) {
  .banner_section .container .content .wp-block-buttons .wp-block-button a, .banner_section .container .content .wp-block-buttons .wp-block-button button {
    min-width: unset;
  }
}
.banner_section .container .content .wp-block-buttons .wp-block-button:nth-child(2n) a, .banner_section .container .content .wp-block-buttons .wp-block-button:nth-child(2n) button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 46px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background-color: #FCCD64;
  color: #012031;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s linear;
  background: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  min-width: 200px;
  height: 50px;
}
.banner_section .container .content .wp-block-buttons .wp-block-button:nth-child(2n) a:hover, .banner_section .container .content .wp-block-buttons .wp-block-button:nth-child(2n) button:hover {
  background-color: #FFE19F;
}
.banner_section .container .content .wp-block-buttons .wp-block-button:nth-child(2n) a:hover, .banner_section .container .content .wp-block-buttons .wp-block-button:nth-child(2n) button:hover {
  background-color: #224D64;
  color: #FFFFFF;
}
@media screen and (max-width: 991px) {
  .banner_section .container .content .wp-block-buttons .wp-block-button:nth-child(2n) a, .banner_section .container .content .wp-block-buttons .wp-block-button:nth-child(2n) button {
    min-width: unset;
  }
}
.banner_section .container .image {
  display: flex;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .banner_section .container .image {
    height: 250px;
    order: 1;
  }
}

.contact-form_section {
  background-image: url(../images/bg-contact-form.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 100px 0 96px;
  color: #FFFFFF;
}
.contact-form_section .container {
  padding-top: 124px;
}
.contact-form_section h2 {
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.37;
  margin-bottom: 22px;
  text-align: center;
}
.contact-form_section .subtitle {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.37;
  margin-bottom: 36px;
  text-align: center;
}
.contact-form_section .form-wrapper {
  max-width: 946px;
  margin: 0 auto;
}
.contact-form_section .form-wrapper form {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 30px;
}
@media screen and (max-width: 575px) {
  .contact-form_section .form-wrapper form {
    gap: 20px;
  }
}
.contact-form_section .form-wrapper form .field {
  width: calc(50% - 16px);
}
@media screen and (max-width: 575px) {
  .contact-form_section .form-wrapper form .field {
    width: 100%;
  }
}
.contact-form_section .form-wrapper form .field p {
  margin-bottom: 0;
}
.contact-form_section .form-wrapper form .actions {
  position: relative;
  text-align: center;
  width: 100%;
  margin-top: 8px;
}
@media screen and (max-width: 575px) {
  .contact-form_section .form-wrapper form .actions {
    margin-top: 20px;
  }
}
.contact-form_section .form-wrapper form .actions p:last-child {
  margin-bottom: 0;
}
.contact-form_section .form-wrapper form .actions [type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 46px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background-color: #FCCD64;
  color: #012031;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s linear;
  outline: none;
  cursor: pointer;
}
.contact-form_section .form-wrapper form .actions [type=submit]:hover {
  background-color: #FFE19F;
}
.contact-form_section .form-wrapper form .actions .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.contact-form_section .form-wrapper form .wpcf7-response-output {
  margin: 0 auto;
  border-radius: 5px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.contact-form_section .form-wrapper form .wpcf7-not-valid-tip {
  font-size: 14px;
  color: #FCCD64;
}
.contact-form_section .form-wrapper label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.37;
  text-transform: uppercase;
  padding: 0 32px;
  margin-bottom: 11px;
}
.contact-form_section .form-wrapper [type=text],
.contact-form_section .form-wrapper [type=tel],
.contact-form_section .form-wrapper [type=email] {
  padding: 0 32px;
  border: 1px solid #E1E1E1;
  border-radius: 5px;
  width: 100%;
  height: 54px;
  background: #375C6F;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #FFFFFF;
  transition: all 0.2s linear;
}
.contact-form_section .form-wrapper [type=text]::placeholder,
.contact-form_section .form-wrapper [type=tel]::placeholder,
.contact-form_section .form-wrapper [type=email]::placeholder {
  color: #92C0D7;
}
.contact-form_section .form-wrapper [type=text]:active, .contact-form_section .form-wrapper [type=text]:focus,
.contact-form_section .form-wrapper [type=tel]:active,
.contact-form_section .form-wrapper [type=tel]:focus,
.contact-form_section .form-wrapper [type=email]:active,
.contact-form_section .form-wrapper [type=email]:focus {
  border-color: #FCCD64;
  outline: none;
}
.contact-form_section .form-wrapper [data-name=code] {
  display: none;
}
.contact-form_section .form-wrapper .iti .iti__selected-country-primary {
  position: relative;
  width: 85px;
  padding: 0;
}
.contact-form_section .form-wrapper .iti .iti__selected-country-primary:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 38px;
  background: #E1E1E1;
}
.contact-form_section .form-wrapper .iti .iti__flag {
  margin: 0 9px 0 28px;
  scale: 1.88;
}
.contact-form_section .form-wrapper .iti .iti__arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #FFFFFF;
}
.contact-form_section .form-wrapper .iti .iti__selected-dial-code {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #FFFFFF;
}
.contact-form_section .form-wrapper .iti .iti__search-input {
  height: 40px;
  border-radius: 0;
  border: none;
  background: #012031;
}
.contact-form_section .form-wrapper .iti .iti__search-input:active, .contact-form_section .form-wrapper .iti .iti__search-input:focus {
  color: #FFFFFF;
}
.contact-form_section .form-wrapper .iti .iti__dropdown-content {
  background: #375C6F;
  border-radius: 5px;
  overflow: hidden;
}
.contact-form_section .form-wrapper .iti .iti__country-name {
  padding-left: 10px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #FFFFFF;
}
.contact-form_section .form-wrapper .iti .iti__dial-code {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #FFFFFF;
}
.contact-form_section .form-wrapper .iti .iti__country-list {
  max-height: 160px;
}

body.page:not(.page-template-page-prices) header#header {
  background-color: rgb(34, 77, 100) !important;
}
body.page .site-wrap {
  min-height: calc(100vh - 396px);
}
body.page .site-wrap > .container {
  padding-top: 126px;
  padding-bottom: 40px;
}

body.page-template-page-about_us h1 {
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: #012031;
  margin-bottom: 20px;
}
body.page-template-page-about_us h2 {
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: #012031;
  margin-bottom: 20px;
}
body.page-template-page-about_us .featured_on {
  position: absolute;
  top: 100%;
  left: 0;
  background: #336986;
  width: 100%;
  height: 28px;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
}
body.page-template-page-about_us .featured_on .inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
body.page-template-page-about_us .featured_on .inner a {
  position: relative;
  display: inline-block;
  height: 16px;
  width: auto;
  line-height: 1;
}
body.page-template-page-about_us .featured_on .inner a:last-child:after {
  display: none;
}
body.page-template-page-about_us .featured_on .inner a:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -10px;
  background: #FFFFFF;
}
body.page-template-page-about_us .featured_on .inner a img {
  height: 100%;
  width: auto;
}
body.page-template-page-about_us .hero_section {
  margin-top: 86px;
  padding-top: 127px;
  padding-bottom: 120px;
}
@media screen and (max-width: 991px) {
  body.page-template-page-about_us .hero_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 991px) {
  body.page-template-page-about_us .hero_section > .container > .row {
    align-items: center;
  }
}
body.page-template-page-about_us .hero_section .image-wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  body.page-template-page-about_us .hero_section .image-wrap {
    margin-bottom: 40px;
  }
}
body.page-template-page-about_us .hero_section .image-wrap .image {
  aspect-ratio: 1.45;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 100px 0 100px 0;
}
@media all and (min-width: 992px) {
  body.page-template-page-about_us .hero_section .image-wrap .image {
    position: absolute;
    top: -52px;
    left: 0.75rem;
    width: calc(100% - 1.5rem);
  }
}
@media print {
  body.page-template-page-about_us .hero_section .image-wrap .image {
    position: absolute;
    top: -52px;
    left: 0.75rem;
    width: calc(100% - 1.5rem);
  }
}
body.page-template-page-about_us .hero_section .image-wrap .image img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
@media all and (min-width: 992px) {
  body.page-template-page-about_us .hero_section .text-wrap {
    padding-left: 60px;
  }
}
@media print {
  body.page-template-page-about_us .hero_section .text-wrap {
    padding-left: 60px;
  }
}
@media all and (min-width: 768px) {
  body.page-template-page-about_us .hero_section .text-wrap {
    padding-left: 30px;
  }
}
@media print {
  body.page-template-page-about_us .hero_section .text-wrap {
    padding-left: 30px;
  }
}
body.page-template-page-about_us .hero_section .text-wrap .description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #012031;
}
body.page-template-page-about_us .press-release_section {
  background-color: #E1E1E1;
  padding: 10% 0 65px;
}
@media screen and (max-width: 1199px) {
  body.page-template-page-about_us .press-release_section {
    padding-top: 80px;
  }
}
body.page-template-page-about_us .press-release_section h2 {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  body.page-template-page-about_us .press-release_section .press_items {
    gap: 40px 0;
  }
}
body.page-template-page-about_us .press-release_section .press_items .inner {
  text-decoration: none;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 575px) {
  body.page-template-page-about_us .press-release_section .press_items .item {
    margin: 0 auto;
  }
}
@media screen and (max-width: 475px) {
  body.page-template-page-about_us .press-release_section .press_items .item {
    max-width: 100%;
    width: 100%;
  }
}
body.page-template-page-about_us .press-release_section .logo {
  margin-bottom: 16px;
}
body.page-template-page-about_us .press-release_section .logo img {
  width: auto;
  height: 22px;
}
body.page-template-page-about_us .press-release_section .date {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #012031;
  margin-bottom: 10px;
}
body.page-template-page-about_us .press-release_section .description {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #012031;
  max-width: 240px;
}
@media screen and (max-width: 575px) {
  body.page-template-page-about_us .press-release_section .description {
    max-width: 100%;
  }
}
body.page-template-page-about_us .press-release_section .description p:last-child {
  margin-bottom: 0;
}
body.page-template-page-about_us .reviews_section {
  padding-top: 32px;
  padding-bottom: 125px;
}
body.page-template-page-about_us .reviews_section h2 {
  text-align: center;
  margin-bottom: 40px;
}
body.page-template-page-about_us .location_section .top_section {
  background-color: #F7FCFF;
  padding-top: 90px;
  padding-bottom: 72px;
}
body.page-template-page-about_us .location_section .top_section h2 {
  text-align: center;
  margin-bottom: 40px;
}
body.page-template-page-about_us .location_section .top_section .description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #012031;
  max-width: 592px;
  margin: 0 auto;
}
body.page-template-page-about_us .location_section .top_section .description p:last-child {
  margin-bottom: 0;
}
body.page-template-page-about_us .location_section .bottom_section {
  background-color: #FCCD64;
}
body.page-template-page-about_us .location_section .bottom_section .content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 10% 40px 0;
}
@media screen and (max-width: 1199px) {
  body.page-template-page-about_us .location_section .bottom_section .content {
    padding: 40px 30px;
  }
}
body.page-template-page-about_us .location_section .bottom_section .content .inner {
  max-width: 335px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #012031;
}
@media screen and (max-width: 767px) {
  body.page-template-page-about_us .location_section .bottom_section .content .inner {
    margin: 0 auto;
  }
}
body.page-template-page-about_us .location_section .bottom_section .content .inner .address,
body.page-template-page-about_us .location_section .bottom_section .content .inner .email,
body.page-template-page-about_us .location_section .bottom_section .content .inner .phone {
  padding-left: 35px;
  position: relative;
  margin-bottom: 20px;
}
body.page-template-page-about_us .location_section .bottom_section .content .inner .address:before,
body.page-template-page-about_us .location_section .bottom_section .content .inner .email:before,
body.page-template-page-about_us .location_section .bottom_section .content .inner .phone:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/location.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 19px;
  position: absolute;
  top: 0;
  left: 0;
}
body.page-template-page-about_us .location_section .bottom_section .content .inner .address a,
body.page-template-page-about_us .location_section .bottom_section .content .inner .email a,
body.page-template-page-about_us .location_section .bottom_section .content .inner .phone a {
  color: inherit;
  text-decoration: none !important;
}
body.page-template-page-about_us .location_section .bottom_section .content .inner .address a:hover,
body.page-template-page-about_us .location_section .bottom_section .content .inner .email a:hover,
body.page-template-page-about_us .location_section .bottom_section .content .inner .phone a:hover {
  text-decoration: underline !important;
}
body.page-template-page-about_us .location_section .bottom_section .content .inner .email:before {
  background-image: url("../images/icons/email.svg");
}
body.page-template-page-about_us .location_section .bottom_section .content .inner .phone {
  margin-bottom: 0;
}
body.page-template-page-about_us .location_section .bottom_section .content .inner .phone:before {
  background-image: url("../images/icons/phone.svg");
}
body.page-template-page-about_us .location_section .bottom_section .content .title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #012031;
  margin-bottom: 20px;
}
body.page-template-page-about_us .location_section .bottom_section .map {
  height: 444px;
  padding: 0;
  line-height: 1;
}
body.page-template-page-about_us .location_section .bottom_section iframe {
  width: 100% !important;
  height: 100% !important;
}
body.page-template-page-about_us [id^=trustpilot-widget-trustbox-] {
  position: relative;
  z-index: 1 !important;
}

body.page-apply .site-wrap {
  overflow: clip;
}
body.page-apply .header_section {
  background: #224D64;
  padding: 153px 0 108px;
}
body.page-apply .header_section h1 {
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
  color: #FFFFFF;
}
body.page-apply .header_section .description {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
  max-width: 800px;
  margin: 20px auto 0;
}
body.page-apply .header_section .steps {
  margin: 60px auto 0;
  max-width: calc(1130px + var(--bs-gutter-x));
}
@media screen and (max-width: 575px) {
  body.page-apply .header_section .steps {
    gap: 60px 30px;
  }
}
body.page-apply .header_section .steps .item {
  position: relative;
}
@media screen and (max-width: 575px) {
  body.page-apply .header_section .steps .item {
    width: calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
  }
}
body.page-apply .header_section .steps .item:last-child:after {
  display: none;
}
body.page-apply .header_section .steps .item:after {
  content: "";
  display: block;
  position: absolute;
  top: 42px;
  left: 75%;
  height: 16px;
  width: 45%;
  background-image: url(../images/arrow-long.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 575px) {
  body.page-apply .header_section .steps .item:after {
    display: none;
  }
}
body.page-apply .header_section .steps .step_image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100px;
  height: 100px;
  padding: 13px 15px;
  margin: 0 auto 32px;
}
body.page-apply .header_section .steps .step_image .number {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 8px;
  left: 4px;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #224D64;
  font-family: "Noto Serif", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #224D64;
}
body.page-apply .header_section .steps .step_image img {
  max-width: 100%;
  max-height: 100%;
}
body.page-apply .header_section .steps .step_name {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
  text-align: center;
}
body.page-apply .banner_section {
  position: relative;
}
body.page-apply .banner_section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #224D64;
  z-index: 1;
}
body.page-apply .why_section {
  padding-top: 90px;
}
body.page-apply .why_section h2 {
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.37;
  color: #012031;
  margin-bottom: 60px;
  text-align: center;
}
body.page-apply .why_section .why_items {
  margin-bottom: -112px;
}
@media screen and (max-width: 1199px) {
  body.page-apply .why_section .why_items {
    gap: var(--bs-gutter-x) 0;
  }
}
@media screen and (max-width: 1199px) {
  body.page-apply .why_section .why_items .item {
    width: calc(50% - var(--bs-gutter-x) * 0.5);
    flex: 0 0 calc(50% - var(--bs-gutter-x) * 0.5);
  }
}
@media screen and (max-width: 575px) {
  body.page-apply .why_section .why_items .item {
    width: 100%;
    flex: 0 0 100%;
  }
}
body.page-apply .why_section .why_items .item .inner {
  border-radius: 5px;
  border: 1px solid #E1E1E1;
  padding: 65px 30px 42px;
  height: 100%;
  background: #FFFFFF;
}
body.page-apply .why_section .why_items .item .image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  padding: 10px;
  margin: 0 auto 50px;
}
body.page-apply .why_section .why_items .item .image img {
  max-width: 100%;
  max-height: 100%;
}
body.page-apply .why_section .why_items .item .title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.37;
  color: #012031;
  text-align: center;
  margin-bottom: 20px;
}
body.page-apply .why_section .why_items .item .description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #012031;
  text-align: center;
}

body.page-faq .header_section {
  background-image: url(../images/bg-faq.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 148px 0 189px;
}
@media screen and (max-width: 991px) {
  body.page-faq .header_section {
    padding-bottom: 100px;
  }
}
body.page-faq .header_section .container {
  max-width: calc(624px + var(--bs-gutter-x));
}
body.page-faq .header_section h1 {
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 46px;
  color: #FFFFFF;
  text-align: center;
}
body.page-faq .header_section .search_faq_form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
body.page-faq .header_section .search_faq_form[data-count="0"] .result_faq_form {
  opacity: 0 !important;
  visibility: hidden !important;
}
body.page-faq .header_section .search_faq_form[data-count="0"] input[type=search] {
  border-radius: 30px 0 0 30px !important;
}
body.page-faq .header_section .search_faq_form[data-count="0"] button[type=submit] {
  border-radius: 0 30px 30px 0 !important;
}
body.page-faq .header_section .search_faq_form input[type=search] {
  width: calc(100% - 163px);
  height: 60px;
  border-radius: 30px 0 0 30px;
  background: #FFFFFF;
  color: #012031;
  padding: 0 40px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  border: none;
  transition: all 0.2s linear;
  outline: none;
}
@media screen and (max-width: 767px) {
  body.page-faq .header_section .search_faq_form input[type=search] {
    width: calc(100% - 120px);
    padding: 0 20px;
  }
}
body.page-faq .header_section .search_faq_form input[type=search]:active, body.page-faq .header_section .search_faq_form input[type=search]:focus {
  border-radius: 30px 0 0;
}
body.page-faq .header_section .search_faq_form input[type=search]:active ~ button[type=submit], body.page-faq .header_section .search_faq_form input[type=search]:focus ~ button[type=submit] {
  border-radius: 0 30px 0 0;
}
body.page-faq .header_section .search_faq_form input[type=search]:active ~ .result_faq_form, body.page-faq .header_section .search_faq_form input[type=search]:focus ~ .result_faq_form {
  opacity: 1;
  visibility: visible;
}
body.page-faq .header_section .search_faq_form button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 46px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background-color: #FCCD64;
  color: #012031;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s linear;
  width: 163px;
  height: 60px;
  border-radius: 0 30px 30px 0;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s linear;
}
body.page-faq .header_section .search_faq_form button[type=submit]:hover {
  background-color: #FFE19F;
}
@media screen and (max-width: 767px) {
  body.page-faq .header_section .search_faq_form button[type=submit] {
    width: 120px;
    min-width: unset;
  }
}
body.page-faq .faqs_section {
  background: #F2F9FC;
}
body.page-faq .faqs_section .container {
  max-width: 1130px;
}
body.page-faq .faqs_section .faq_row {
  gap: calc(48px - var(--bs-gutter-x));
}
@media screen and (max-width: 991px) {
  body.page-faq .faqs_section .faq_row {
    flex-wrap: wrap;
  }
}
body.page-faq .faqs_section .faq_list {
  padding-top: 40px;
  padding-bottom: 40px;
  width: 315px;
}
@media screen and (max-width: 991px) {
  body.page-faq .faqs_section .faq_list {
    width: 100%;
    display: flex;
    gap: 10px;
  }
}
body.page-faq .faqs_section .faq_list button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  height: 78px;
  border: none;
  background: transparent;
  border-radius: 10px;
  padding: 0 36px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  transition: all 0.2s linear;
}
@media screen and (max-width: 991px) {
  body.page-faq .faqs_section .faq_list button {
    width: auto;
    flex: 1 0 0;
    padding: 0 15px;
    display: inline-block;
  }
}
body.page-faq .faqs_section .faq_list button:after {
  content: "";
  position: absolute;
  right: -48px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-right: 14px solid #FCCD64;
  border-bottom: 14px solid transparent;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
}
@media screen and (max-width: 991px) {
  body.page-faq .faqs_section .faq_list button:after {
    top: unset;
    bottom: -48px;
    left: 50%;
    right: unset;
    transform: rotate(90deg) translateX(-50%);
  }
}
body.page-faq .faqs_section .faq_list button:last-child {
  margin-bottom: 0;
}
body.page-faq .faqs_section .faq_list button:not(.active):hover {
  background: #FCCD64;
}
body.page-faq .faqs_section .faq_list button.active {
  background: #FCCD64;
  font-weight: 700;
}
body.page-faq .faqs_section .faq_list button.active:after {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 991px) {
  body.page-faq .faqs_section .faq_list button .text {
    width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    display: -webkit-box;
    height: 30px;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  body.page-faq .faqs_section .faq_list button .text {
    display: none;
  }
}
body.page-faq .faqs_section .faq_list button .image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  padding: 5px;
}
@media screen and (max-width: 991px) {
  body.page-faq .faqs_section .faq_list button .image {
    width: 100%;
  }
}
body.page-faq .faqs_section .faq_list button .image img,
body.page-faq .faqs_section .faq_list button .image svg {
  max-width: 100%;
  max-height: 100%;
}
body.page-faq .faqs_section .faq_list button .image img path,
body.page-faq .faqs_section .faq_list button .image svg path {
  transition: all 0.2s linear;
}
body.page-faq .faqs_section .content {
  width: calc(100% - 315px - 48px + var(--bs-gutter-x));
  flex: 0 0 calc(100% - 315px - 48px + var(--bs-gutter-x));
}
@media screen and (max-width: 991px) {
  body.page-faq .faqs_section .content {
    width: 100%;
    flex: 0 0 100%;
  }
}
body.page-faq .faqs_section .content .faq_content {
  display: none;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 110px 85px 117px;
  position: relative;
  top: -50px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #224D64;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  body.page-faq .faqs_section .content .faq_content {
    padding: 40px;
  }
}
body.page-faq .faqs_section .content .faq_content.active {
  display: block;
}
body.page-faq .faqs_section .content .faq_content h1, body.page-faq .faqs_section .content .faq_content h2, body.page-faq .faqs_section .content .faq_content h3 {
  font-family: "Noto Serif", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 28px;
  margin-bottom: 22px;
  color: #012031;
}
body.page-faq .faqs_section .content .faq_content h1:first-child, body.page-faq .faqs_section .content .faq_content h2:first-child, body.page-faq .faqs_section .content .faq_content h3:first-child {
  margin-top: 0;
}
body.page-faq .faqs_section .content .faq_content ul li, body.page-faq .faqs_section .content .faq_content ol li {
  margin-bottom: 10px;
}
body.page-faq .faqs_section .content .faq_content ul li:last-child, body.page-faq .faqs_section .content .faq_content ol li:last-child {
  margin-bottom: 0;
}
body.page-faq .faqs_section .faqs_is_empty {
  text-align: center;
  margin: 100px 0;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #012031;
  line-height: 1.6;
}
body.page-faq .banner_section {
  position: relative;
  padding-top: 10px;
  padding-bottom: 76px;
  background: #F2F9FC;
}
body.page-faq .banner_section:after {
  height: 173px;
  width: 100%;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #224D64;
}
body.page-faq .result_faq_form {
  background: #FFFFFF;
  border-radius: 0 0 30px 30px;
  padding: 20px 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 300px;
  overflow: auto;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
  z-index: 2;
}
body.page-faq .result_faq_form .item {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  display: -webkit-box;
  overflow: hidden;
  height: 31px;
  padding: 5px 20px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #224D64;
  line-height: 1.6;
  transition: all 0.2s linear;
  cursor: pointer;
}
body.page-faq .result_faq_form .item:hover {
  background: #E1E1E1;
}
body.page-faq .result_faq_form .group {
  font-weight: 600;
}

body.page-home .site-wrap {
  overflow: unset;
}
body.page-home .are_you_looking {
  position: relative;
  background-color: #224D64;
  padding-top: 124px;
  padding-bottom: 88px;
  z-index: 1;
}
body.page-home .are_you_looking .container > .row {
  gap: 40px 106px;
}
@media screen and (max-width: 1199px) {
  body.page-home .are_you_looking .container > .row {
    gap: 40px 60px;
  }
}
body.page-home .are_you_looking .container > .row .right_block {
  position: relative;
  max-width: calc(58.33333333% - 106px);
  /*svg,
  img {
  	position: absolute;
  	max-width: calc(100% - 1.5rem);

  	@include mobile(1199px) {
  		position: relative;
  		max-width: 100%;
  	}

  	@include mobile(991px) {
  		max-width: 500px;
  	}
  }*/
}
@media screen and (max-width: 1199px) {
  body.page-home .are_you_looking .container > .row .right_block {
    display: flex;
    align-items: center;
    max-width: calc(50% - 60px);
  }
}
@media screen and (max-width: 991px) {
  body.page-home .are_you_looking .container > .row .right_block {
    max-width: 100%;
    justify-content: center;
  }
}
body.page-home .are_you_looking .title {
  font-size: 56px;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  line-height: 1.3;
  color: #FFFFFF;
  margin-bottom: 21px;
}
@media screen and (max-width: 767px) {
  body.page-home .are_you_looking .title {
    font-size: 36px;
  }
}
body.page-home .are_you_looking .title span {
  color: #FCCD64;
}
body.page-home .are_you_looking .description {
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 18px;
}
body.page-home .are_you_looking .description h2, body.page-home .are_you_looking .description h3 {
  color: #FFFFFF;
  font-family: "Noto Serif", serif;
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  body.page-home .are_you_looking .description h2, body.page-home .are_you_looking .description h3 {
    font-size: 28px;
  }
}
body.page-home .are_you_looking .description p {
  margin-bottom: 10px;
}
body.page-home .are_you_looking .description p:last-child {
  margin-bottom: 0;
}
body.page-home .are_you_looking .logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 27px;
}
body.page-home .are_you_looking .logos .item {
  height: 67px;
}
@media screen and (max-width: 575px) {
  body.page-home .are_you_looking .logos .item {
    height: 55px;
  }
}
body.page-home .are_you_looking .logos .item img {
  max-width: 100%;
  max-height: 100%;
}
body.page-home .offers_various .container {
  position: relative;
  background-color: #F2F9FC;
  border-radius: 0 0 100px 0;
  padding-top: 105px;
  padding-bottom: 42px;
}
@media screen and (max-width: 1199px) {
  body.page-home .offers_various .container {
    padding-top: 60px;
  }
}
body.page-home .offers_various .container:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #F2F9FC;
  z-index: -1;
}
body.page-home .offers_various .container .row {
  align-items: center;
  gap: 40px 126px;
}
@media screen and (max-width: 1199px) {
  body.page-home .offers_various .container .row {
    gap: 40px 60px;
  }
}
body.page-home .offers_various .container .left_block {
  width: calc(50% - 46px);
}
@media screen and (max-width: 767px) {
  body.page-home .offers_various .container .left_block {
    width: 100%;
    text-align: center;
    order: 2;
  }
}
body.page-home .offers_various .container .left_block img {
  max-width: unset;
  width: calc(100% + 24px);
  margin-left: -24px;
}
@media screen and (max-width: 991px) {
  body.page-home .offers_various .container .left_block img {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  body.page-home .offers_various .container .left_block img {
    margin-left: 0;
    max-width: 100%;
    max-height: 300px;
    width: auto;
  }
}
body.page-home .offers_various .container .right_block {
  width: calc(50% - 169px);
}
@media screen and (max-width: 1199px) {
  body.page-home .offers_various .container .right_block {
    width: calc(50% - 14px);
  }
}
@media screen and (max-width: 767px) {
  body.page-home .offers_various .container .right_block {
    width: 100%;
    order: 1;
  }
}
body.page-home .offers_various .title {
  font-size: 36px;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  color: #012031;
  margin-bottom: 35px;
}
body.page-home .offers_various .title span {
  color: #FCCD64;
}
body.page-home .offers_various .description p {
  margin-bottom: 10px;
}
body.page-home .offers_various .description p:last-child {
  margin-bottom: 0;
}
body.page-home .logos_block {
  padding-top: 79px;
  padding-bottom: 166px;
}
@media screen and (max-width: 1199px) {
  body.page-home .logos_block {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}
body.page-home .logos_block .title {
  font-size: 36px;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  text-align: center;
  color: #012031;
  max-width: 738px;
  margin: 0 auto 66px;
  line-height: 1.4;
}
body.page-home .logos_block .title span {
  color: #FCCD64;
}
body.page-home .why_choose_us {
  padding-top: 195px;
  padding-bottom: 66px;
  background-color: #F2F9FC;
}
@media screen and (max-width: 991px) {
  body.page-home .why_choose_us {
    padding-top: 160px;
  }
}
body.page-home .why_choose_us .container .row {
  position: relative;
  align-items: center;
  gap: 40px 186px;
}
@media screen and (max-width: 1199px) {
  body.page-home .why_choose_us .container .row {
    gap: 40px 80px;
  }
}
body.page-home .why_choose_us .container .row .left_block {
  width: calc(50% - 112px);
}
@media screen and (max-width: 1199px) {
  body.page-home .why_choose_us .container .row .left_block {
    width: calc(50% - 4px);
  }
}
@media screen and (max-width: 767px) {
  body.page-home .why_choose_us .container .row .left_block {
    width: 100%;
  }
}
body.page-home .why_choose_us .container .row .right_block {
  position: relative;
  width: calc(50% - 76px);
}
@media screen and (max-width: 767px) {
  body.page-home .why_choose_us .container .row .right_block {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  body.page-home .why_choose_us .container .row .right_block img {
    height: 275px;
  }
}
body.page-home .why_choose_us .container .row .right_block img.girl {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
}
@media screen and (max-width: 767px) {
  body.page-home .why_choose_us .container .row .right_block img.girl {
    max-width: unset;
    height: 320px;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
body.page-home .why_choose_us .title {
  font-size: 36px;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  margin-bottom: 26px;
}
body.page-home .why_choose_us .description {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}
body.page-home .where_to_start {
  position: relative;
  padding-top: 100px;
  padding-bottom: 186px;
  background-color: #224D64;
}
@media screen and (max-width: 880px) {
  body.page-home .where_to_start {
    padding-bottom: 0;
  }
}
body.page-home .where_to_start .bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.15;
}
body.page-home .where_to_start .title {
  position: relative;
  font-size: 36px;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 55px;
  z-index: 1;
}
body.page-home .where_to_start .arrows {
  position: relative;
  white-space: nowrap;
  z-index: 1;
}
@media screen and (max-width: 1348px) {
  body.page-home .where_to_start .arrows {
    overflow: auto;
  }
}
body.page-home .where_to_start .arrows:before, body.page-home .where_to_start .arrows:after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% - 0.75rem);
  width: calc((100vw - 1300px) / 2);
  height: 66px;
  background-color: #FFFFFF;
  z-index: 0;
}
@media screen and (max-width: 1324px) {
  body.page-home .where_to_start .arrows:before, body.page-home .where_to_start .arrows:after {
    width: calc(100vw - 0.75rem);
  }
}
body.page-home .where_to_start .arrows:after {
  background: linear-gradient(90deg, #224d64 0%, rgba(34, 77, 100, 0.51) 100%);
  z-index: 1;
}
body.page-home .where_to_start .arrows table {
  width: 100%;
}
body.page-home .where_to_start .arrows table td {
  text-align: center;
}
body.page-home .where_to_start .arrows table td:first-child {
  text-align: left;
  padding-left: 30px;
  padding-right: 15px;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  body.page-home .where_to_start .arrows table td:first-child {
    padding-left: 0;
  }
}
body.page-home .where_to_start .arrows .arrows_block {
  position: relative;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
body.page-home .where_to_start .arrows .arrows_block td {
  position: relative;
  height: 66px;
  padding: 0 15px 0 30px;
  background-color: #FFFFFF;
}
body.page-home .where_to_start .arrows .arrows_block td:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  max-width: 105px;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(34, 77, 100, 0.51) 0%, rgba(247, 252, 255, 0) 100%);
  z-index: 0;
}
body.page-home .where_to_start .arrows .arrows_block td:after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.75rem;
  width: 24px;
  height: 100%;
  background-color: #FFFFFF;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  z-index: 1;
}
body.page-home .where_to_start .arrows .arrows_block td:last-child {
  background-color: #FCCD64;
}
body.page-home .where_to_start .arrows .arrows_block td:last-child:before {
  background: linear-gradient(90deg, rgba(206, 142, 0, 0.51) 0%, rgba(252, 205, 100, 0) 100%);
}
body.page-home .where_to_start .arrows .arrows_block td:last-child:after {
  background-color: #FCCD64;
}
body.page-home .where_to_start .arrows .arrows_block td span {
  position: relative;
  z-index: 2;
}
body.page-home .where_to_start .arrows .groups_block td {
  position: relative;
  padding: 22px 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #FFFFFF;
}
body.page-home .where_to_start .arrows .groups_block td:after {
  content: "";
  display: block;
  width: 1px;
  height: 26px;
  position: absolute;
  bottom: 10px;
  right: 0;
  background-color: #FFFFFF;
}
body.page-home .where_to_start .arrows .groups_block td:last-child:after {
  display: none;
}
body.page-home .where_to_start .description {
  position: absolute;
  bottom: -62px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 855px;
  height: auto;
  background-color: #FCCD64;
  border-radius: 40px 0 40px 0;
  padding: 34px 50px;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 880px) {
  body.page-home .where_to_start .description {
    position: relative;
    left: 0;
    transform: unset;
    width: calc(100% - 1.5rem);
    margin: 0 0.75rem;
  }
}
body.page-home .where_to_start .description p {
  margin-bottom: 10px;
}
body.page-home .where_to_start .description p:last-child {
  margin-bottom: 0;
}
body.page-home .video_block {
  padding-top: 138px;
  padding-bottom: 104px;
}
body.page-home .video_block .video_wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
body.page-home .video_block .video_wrap.play button.video_play svg,
body.page-home .video_block .video_wrap.play .meta {
  opacity: 0;
  visibility: hidden;
}
body.page-home .video_block .video_wrap button.video_play {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
body.page-home .video_block .video_wrap button.video_play svg {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s linear;
}
body.page-home .video_block .video_wrap button.video_play svg path {
  transition: all 0.2s linear;
}
body.page-home .video_block .video_wrap button.video_play svg:hover .button {
  fill: red;
  opacity: 1;
}
body.page-home .video_block .video_wrap .meta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0 130px 52px;
  color: #FFFFFF;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s linear;
}
@media screen and (max-width: 1199px) {
  body.page-home .video_block .video_wrap .meta {
    padding: 0 60px 52px;
  }
}
@media screen and (max-width: 767px) {
  body.page-home .video_block .video_wrap .meta {
    padding: 0 35px 20px;
  }
}
body.page-home .video_block .video_wrap .meta .title {
  font-size: 36px;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.37;
}
@media screen and (max-width: 991px) {
  body.page-home .video_block .video_wrap .meta .title {
    font-size: 28px;
  }
}
body.page-home .video_block .video_wrap .meta .subtitle {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
body.page-home .video_block video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}
@media all and (min-width: 992px) {
  body.page-home .video_block video {
    /*aspect-ratio: 2.34;*/
    aspect-ratio: 1.67;
  }
}
@media print {
  body.page-home .video_block video {
    /*aspect-ratio: 2.34;*/
    aspect-ratio: 1.67;
  }
}
body.page-home .agrid {
  position: absolute;
  display: flex;
  width: calc(100% - 1.5rem);
  flex-wrap: wrap;
  aspect-ratio: 1;
}
@media screen and (max-width: 1199px) {
  body.page-home .agrid {
    position: relative;
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  body.page-home .agrid {
    max-width: 500px;
  }
}
body.page-home .agrid .item {
  position: absolute;
  width: calc(33.3333333333% - 16px);
  aspect-ratio: 1;
  transition: all 1.5s linear;
}
body.page-home .agrid .item[data-id="0"] {
  top: 0;
  left: 0;
}
body.page-home .agrid .item[data-id="1"] {
  top: 0;
  left: calc(33.3333333333% + 8px);
}
body.page-home .agrid .item[data-id="2"] {
  top: 0;
  left: calc(66.6666666667% + 16px);
}
body.page-home .agrid .item[data-id="3"] {
  top: 33.3333333333%;
  left: 0;
}
body.page-home .agrid .item[data-id="4"] {
  top: 33.3333333333%;
  left: calc(33.3333333333% + 8px);
}
body.page-home .agrid .item[data-id="5"] {
  top: 33.3333333333%;
  left: calc(66.6666666667% + 16px);
}
body.page-home .agrid .item[data-id="6"] {
  top: 66.6666666667%;
  left: 0;
}
body.page-home .agrid .item[data-id="7"] {
  top: 66.6666666667%;
  left: calc(33.3333333333% + 8px);
}
body.page-home .agrid .item[data-id="8"] {
  top: 66.6666666667%;
  left: calc(66.6666666667% + 16px);
}
body.page-home .agrid .item.right {
  text-align: right;
}
body.page-home .agrid .item.tall {
  aspect-ratio: 0.48;
}
body.page-home .agrid .item img,
body.page-home .agrid .item svg {
  max-width: 100%;
  max-height: 100%;
  transition: all 1.5s linear;
}
body.page-home .agrid .item img path,
body.page-home .agrid .item svg path {
  transition: all 0.5s linear;
}
body.page-home .agrid .item img.big,
body.page-home .agrid .item svg.big {
  width: 100%;
  height: 100%;
}
body.page-home .try_our_service {
  width: calc(50% - 1.5rem);
  height: auto;
  background: #D6DD57;
  padding: 76px 219px 72px 55px;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #012031;
  border-radius: 90px 0 90px 0;
  position: absolute;
  top: -195px;
  left: 0.75rem;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 1315px) {
  body.page-home .try_our_service {
    padding: 76px 140px 72px 55px;
  }
}
@media screen and (max-width: 1199px) {
  body.page-home .try_our_service {
    padding: 60px 140px 60px 40px;
  }
}
@media screen and (max-width: 991px) {
  body.page-home .try_our_service {
    top: -160px;
    width: calc(100% - 1.5rem);
  }
}
@media screen and (max-width: 575px) {
  body.page-home .try_our_service {
    padding: 40px 100px 40px 40px;
  }
}
body.page-home .try_our_service b, body.page-home .try_our_service strong {
  font-weight: 600;
}
body.page-home .try_our_service .whatsapp {
  position: absolute;
  top: 50%;
  right: 74px;
  width: 82px;
  height: 82px;
  background: transparent;
  border: none;
  padding: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1315px) {
  body.page-home .try_our_service .whatsapp {
    right: 40px;
  }
}
@media screen and (max-width: 575px) {
  body.page-home .try_our_service .whatsapp {
    width: 50px;
    height: 50px;
  }
}
body.page-home .try_our_service .whatsapp:hover img {
  scale: 1.1;
}
body.page-home .try_our_service .whatsapp img {
  max-width: 100%;
  max-height: 100%;
  transition: all 0.2s linear;
}
body.page-home .video-full div {
  height: 100%;
}
body.page-home .video-full [data-elementor-lightbox] {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
body.page-home .video-full [data-elementor-lightbox] img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

body.page-news .header_section,
body.category-blog .header_section {
  background-image: url(../images/bg-faq.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 148px 0 74px;
}
@media screen and (max-width: 991px) {
  body.page-news .header_section,
  body.category-blog .header_section {
    padding-bottom: 100px;
  }
}
body.page-news .header_section h1,
body.category-blog .header_section h1 {
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #FFFFFF;
  text-align: center;
}
body.page-news .header_section .subtitle,
body.category-blog .header_section .subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.37;
  max-width: 600px;
  margin: 0 auto;
  color: #FFFFFF;
  text-align: center;
}
body.page-news .filter_section,
body.category-blog .filter_section {
  padding: 54px 0 67px;
}
body.page-news .filter_section .left_block,
body.category-blog .filter_section .left_block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 23px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: #012031;
  text-transform: uppercase;
  width: calc(100% - 96px);
  flex: 0 0 calc(100% - 96px);
}
@media screen and (max-width: 575px) {
  body.page-news .filter_section .left_block,
  body.category-blog .filter_section .left_block {
    gap: 15px;
  }
}
@media screen and (max-width: 413px) {
  body.page-news .filter_section .left_block .label,
  body.category-blog .filter_section .left_block .label {
    display: none;
  }
}
body.page-news .filter_section .left_block .form,
body.category-blog .filter_section .left_block .form {
  display: flex;
  align-items: center;
  width: 260px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #FCCD64;
  padding: 0;
}
@media screen and (max-width: 575px) {
  body.page-news .filter_section .left_block .form,
  body.category-blog .filter_section .left_block .form {
    width: 200px;
    height: 40px;
  }
}
body.page-news .filter_section .left_block .select2.select2-container,
body.category-blog .filter_section .left_block .select2.select2-container {
  width: calc(100% - 109px);
  flex: 0 0 calc(100% - 109px);
  height: 100%;
}
@media screen and (max-width: 575px) {
  body.page-news .filter_section .left_block .select2.select2-container,
  body.category-blog .filter_section .left_block .select2.select2-container {
    width: calc(100% - 85px);
    flex: 0 0 calc(100% - 85px);
  }
}
body.page-news .filter_section .left_block .select2.select2-container .selection,
body.category-blog .filter_section .left_block .select2.select2-container .selection {
  width: 100%;
  display: flex;
  height: 100%;
}
body.page-news .filter_section .left_block .select2.select2-container .selection .select2-selection,
body.category-blog .filter_section .left_block .select2.select2-container .selection .select2-selection {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  border: none;
}
body.page-news .filter_section .left_block .select2.select2-container .selection .select2-selection .select2-selection__rendered,
body.category-blog .filter_section .left_block .select2.select2-container .selection .select2-selection .select2-selection__rendered {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 30px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 575px) {
  body.page-news .filter_section .left_block .select2.select2-container .selection .select2-selection .select2-selection__rendered,
  body.category-blog .filter_section .left_block .select2.select2-container .selection .select2-selection .select2-selection__rendered {
    padding: 0 15px;
  }
}
body.page-news .filter_section .left_block .select2.select2-container .selection .select2-selection .select2-selection__arrow,
body.category-blog .filter_section .left_block .select2.select2-container .selection .select2-selection .select2-selection__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 100%;
}
@media screen and (max-width: 575px) {
  body.page-news .filter_section .left_block .select2.select2-container .selection .select2-selection .select2-selection__arrow,
  body.category-blog .filter_section .left_block .select2.select2-container .selection .select2-selection .select2-selection__arrow {
    width: 45px;
  }
}
body.page-news .filter_section .left_block .select2.select2-container .selection .select2-selection .select2-selection__arrow b,
body.category-blog .filter_section .left_block .select2.select2-container .selection .select2-selection .select2-selection__arrow b {
  position: relative;
  top: unset;
  left: unset;
  display: block;
  width: 24px;
  height: 24px;
  border: none;
  background-image: url(../images/arrow-select2.svg);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 0;
}
body.page-news .filter_section .left_block [type=button],
body.category-blog .filter_section .left_block [type=button] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 46px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background-color: #FCCD64;
  color: #012031;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s linear;
  width: 109px;
  flex: 0 0 109px;
  min-width: unset;
  height: 100%;
  border-radius: 0 5px 5px 0;
}
body.page-news .filter_section .left_block [type=button]:hover,
body.category-blog .filter_section .left_block [type=button]:hover {
  background-color: #FFE19F;
}
@media screen and (max-width: 575px) {
  body.page-news .filter_section .left_block [type=button],
  body.category-blog .filter_section .left_block [type=button] {
    width: 85px;
    flex: 0 0 85px;
  }
}
body.page-news .filter_section .right_block,
body.category-blog .filter_section .right_block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 96px;
  flex: 0 0 96px;
}
body.page-news .filter_section .right_block button,
body.category-blog .filter_section .right_block button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  width: 38px;
  height: 38px;
  padding: 0;
  outline: none;
}
body.page-news .filter_section .right_block button.active svg path,
body.category-blog .filter_section .right_block button.active svg path {
  fill: #CE8E00;
}
body.page-news .filter_section .right_block button svg,
body.category-blog .filter_section .right_block button svg {
  width: 23px;
  height: auto;
}
body.page-news .news_section,
body.category-blog .news_section {
  padding-bottom: 118px;
  overflow: hidden;
}
body.page-news .news_section .news_list,
body.category-blog .news_section .news_list {
  gap: 42px 0;
  margin: 0 -25px;
  width: calc(100% + 50px);
}
@media screen and (max-width: 991px) {
  body.page-news .news_section .news_list,
  body.category-blog .news_section .news_list {
    gap: 30px 0;
    margin: 0 -15px;
    width: calc(100% + 30px);
  }
}
body.page-news .news_section .news_list[data-type=list],
body.category-blog .news_section .news_list[data-type=list] {
  gap: 36px 0;
  margin: 0 -20px;
  width: calc(100% + 40px);
}
@media screen and (max-width: 991px) {
  body.page-news .news_section .news_list[data-type=list],
  body.category-blog .news_section .news_list[data-type=list] {
    gap: 30px 0;
    margin: 0 -15px;
    width: calc(100% + 30px);
  }
}
body.page-news .news_section .news_list[data-type=list] .item,
body.category-blog .news_section .news_list[data-type=list] .item {
  width: 50%;
  flex: 0 0 50%;
  min-height: 200px;
}
@media screen and (max-width: 767px) {
  body.page-news .news_section .news_list[data-type=list] .item,
  body.category-blog .news_section .news_list[data-type=list] .item {
    width: 100%;
    flex: 0 0 100%;
  }
}
body.page-news .news_section .news_list[data-type=list] .item .inner,
body.category-blog .news_section .news_list[data-type=list] .item .inner {
  padding: 32px 25px 15px 284px;
}
@media screen and (max-width: 1199px) {
  body.page-news .news_section .news_list[data-type=list] .item .inner,
  body.category-blog .news_section .news_list[data-type=list] .item .inner {
    padding: 32px 25px 15px 234px;
  }
}
@media screen and (max-width: 991px) {
  body.page-news .news_section .news_list[data-type=list] .item .inner,
  body.category-blog .news_section .news_list[data-type=list] .item .inner {
    padding: 32px 25px 15px calc(35% + 25px);
  }
}
body.page-news .news_section .news_list[data-type=list] .item .date,
body.category-blog .news_section .news_list[data-type=list] .item .date {
  padding-left: 0;
  padding-right: 0;
}
body.page-news .news_section .news_list[data-type=list] .item .title,
body.category-blog .news_section .news_list[data-type=list] .item .title {
  padding-left: 0;
  padding-right: 0;
}
body.page-news .news_section .news_list[data-type=list] .item .image,
body.category-blog .news_section .news_list[data-type=list] .item .image {
  position: absolute;
  width: 250px;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  body.page-news .news_section .news_list[data-type=list] .item .image,
  body.category-blog .news_section .news_list[data-type=list] .item .image {
    width: 200px;
  }
}
@media screen and (max-width: 991px) {
  body.page-news .news_section .news_list[data-type=list] .item .image,
  body.category-blog .news_section .news_list[data-type=list] .item .image {
    width: 35%;
  }
}
body.page-news .news_section .item,
body.category-blog .news_section .item {
  line-height: 1;
  padding: 0 25px;
  transition: all 0.2s linear;
}
@media screen and (max-width: 991px) {
  body.page-news .news_section .item,
  body.category-blog .news_section .item {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  body.page-news .news_section .item,
  body.category-blog .news_section .item {
    min-height: 200px;
  }
}
body.page-news .news_section .item .inner,
body.category-blog .news_section .item .inner {
  position: relative;
  display: inline-block;
  text-decoration: none;
  border-radius: 5px;
  background: #FFFFFF;
  border: 1px solid #E1E1E1;
  padding: 42px 0 236px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 0.2s linear;
}
@media screen and (max-width: 767px) {
  body.page-news .news_section .item .inner,
  body.category-blog .news_section .item .inner {
    padding: 32px 25px 15px calc(35% + 25px);
  }
}
body.page-news .news_section .item .inner:hover .image img,
body.category-blog .news_section .item .inner:hover .image img {
  transform: scale(1.1);
}
body.page-news .news_section .item .inner .date,
body.category-blog .news_section .item .inner .date {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #012031;
  padding: 0 40px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  body.page-news .news_section .item .inner .date,
  body.category-blog .news_section .item .inner .date {
    padding-left: 0;
    padding-right: 0;
  }
}
body.page-news .news_section .item .inner .title,
body.category-blog .news_section .item .inner .title {
  font-family: "Noto Serif", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: #012031;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  body.page-news .news_section .item .inner .title,
  body.category-blog .news_section .item .inner .title {
    padding-left: 0;
    padding-right: 0;
  }
}
body.page-news .news_section .item .inner .image,
body.category-blog .news_section .item .inner .image {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  overflow: hidden;
  transition: all 0.2s linear;
}
@media screen and (max-width: 767px) {
  body.page-news .news_section .item .inner .image,
  body.category-blog .news_section .item .inner .image {
    position: absolute;
    height: 100%;
    width: 35%;
  }
}
body.page-news .news_section .item .inner .image img,
body.category-blog .news_section .item .inner .image img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
}
body.page-news .news_section .no_news,
body.category-blog .news_section .no_news {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 32px;
}
body.page-news .news_section .pagination,
body.category-blog .news_section .pagination {
  padding-top: 85px;
  text-align: center;
  justify-content: center;
}
body.page-news .news_section .pagination button[type=button],
body.category-blog .news_section .pagination button[type=button] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 46px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background-color: #FCCD64;
  color: #012031;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s linear;
  background: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  min-width: 200px;
  height: 50px;
  width: auto;
  height: 46px;
  border: 1px solid #012031;
  padding: 0 50px;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}
body.page-news .news_section .pagination button[type=button]:hover,
body.category-blog .news_section .pagination button[type=button]:hover {
  background-color: #FFE19F;
}
body.page-news .news_section .pagination button[type=button]:hover,
body.category-blog .news_section .pagination button[type=button]:hover {
  background-color: #224D64;
  color: #FFFFFF;
}
body.page-news .select2-dropdown,
body.category-blog .select2-dropdown {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: #012031;
  text-transform: uppercase;
}
body.page-news .select2-dropdown.select2-dropdown--above,
body.category-blog .select2-dropdown.select2-dropdown--above {
  margin-top: 31px;
}
body.page-news .select2-dropdown.select2-dropdown--below,
body.category-blog .select2-dropdown.select2-dropdown--below {
  margin-top: 33px;
}
body.page-news .select2-dropdown ul li,
body.category-blog .select2-dropdown ul li {
  padding: 15px 30px;
  color: #012031;
}
body.page-news .select2-dropdown ul li:hover,
body.category-blog .select2-dropdown ul li:hover {
  background: #FFE19F !important;
  color: #012031;
}
body.page-news .select2-dropdown ul li.select2-results__option--selected,
body.category-blog .select2-dropdown ul li.select2-results__option--selected {
  background: #FCCD64 !important;
  color: #012031;
}
body.page-news .select2-dropdown ul li.select2-results__option--highlighted,
body.category-blog .select2-dropdown ul li.select2-results__option--highlighted {
  background: #FFFFFF;
  color: #012031;
}

body.category-blog .header_section .subtitle {
  max-width: 515px;
}

body.page-template-page-prices header#header {
  /*position: absolute;
  background-color: transparent !important;*/
}
body.page-template-page-prices .hero_section {
  position: relative;
  background-color: #224D64;
  padding: 122px 0 0;
  height: 300px;
}
@media screen and (max-width: 991px) {
  body.page-template-page-prices .hero_section {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  body.page-template-page-prices .hero_section {
    padding: 82px 0 0;
    height: 215px;
  }
}
body.page-template-page-prices .hero_section h1 {
  position: relative;
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
  color: #FFFFFF;
  text-align: center;
  z-index: 1;
}
body.page-template-page-prices .hero_section .watermark {
  position: absolute;
  top: 0;
  right: 5%;
  width: auto;
  height: 100%;
}
@media screen and (max-width: 575px) {
  body.page-template-page-prices .hero_section .watermark {
    right: -10%;
  }
}
body.page-template-page-prices .hero_section .watermark img {
  height: 100%;
}
body.page-template-page-prices .plans_section {
  margin-top: -80px;
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  body.page-template-page-prices .plans_section {
    margin-top: -55px;
  }
}
body.page-template-page-prices .plans_section .container {
  max-width: 1082px;
}
body.page-template-page-prices .plans_section [data-index="1"] .field_data {
  position: relative;
}
body.page-template-page-prices .plans_section [data-index="1"] .field_data:before {
  content: attr(data-title);
  position: absolute;
  top: 0;
  left: -200px;
  width: 100%;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  body.page-template-page-prices .plans_section .plan_item {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}
body.page-template-page-prices .plans_section .plan_item .inner {
  position: relative;
  color: #012031;
  background-color: #FCCD64;
  border-radius: 20px 0 20px 0;
  font-family: "Inter", sans-serif;
  height: 100%;
  padding-bottom: 134px;
}
@media screen and (max-width: 767px) {
  body.page-template-page-prices .plans_section .plan_item .inner {
    padding-bottom: 0;
  }
}
body.page-template-page-prices .plans_section .plan_item .header {
  position: relative;
  display: flex;
  justify-content: center;
  aspect-ratio: 1.28;
  background-size: cover;
  background-position: center center;
  padding: 54% 0 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  border-bottom: 1px solid #C79D3F;
  width: 100%;
}
@media screen and (max-width: 767px) {
  body.page-template-page-prices .plans_section .plan_item .header {
    aspect-ratio: 1.67;
    align-items: flex-end;
    padding: 0 0 20px;
    max-height: 250px;
  }
}
body.page-template-page-prices .plans_section .plan_item .header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(0, #FCCD64, transparent);
  z-index: 1;
}
body.page-template-page-prices .plans_section .plan_item .header img {
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  border-radius: 20px 0 0 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  body.page-template-page-prices .plans_section .plan_item .header img {
    object-position: top center;
  }
}
body.page-template-page-prices .plans_section .plan_item .header .service {
  position: relative;
  height: 44px;
  width: 100%;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  body.page-template-page-prices .plans_section .plan_item .header .service {
    height: auto;
  }
}
body.page-template-page-prices .plans_section .plan_item .header .service span {
  display: inline-block;
  max-width: 176px;
}
@media screen and (max-width: 767px) {
  body.page-template-page-prices .plans_section .plan_item .header .service span {
    max-width: 100%;
  }
}
body.page-template-page-prices .plans_section .plan_item .duration {
  padding: 20px 0;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid #C79D3F;
}
body.page-template-page-prices .plans_section .plan_item .duration div {
  padding: 0 20px;
}
body.page-template-page-prices .plans_section .plan_item .description {
  padding: 26px 0 32px;
  font-size: 14px;
  font-weight: 400;
}
body.page-template-page-prices .plans_section .plan_item .description b, body.page-template-page-prices .plans_section .plan_item .description strong {
  font-weight: 700;
}
body.page-template-page-prices .plans_section .plan_item .description div {
  padding: 0 20px;
}
body.page-template-page-prices .plans_section .plan_item .price {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 37px 0 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  height: 134px;
  border-top: 1px solid #C79D3F;
}
@media screen and (max-width: 767px) {
  body.page-template-page-prices .plans_section .plan_item .price {
    height: auto;
    position: relative;
  }
}
body.page-template-page-prices .plans_section .plan_item .price div {
  padding: 0 20px;
}
body.page-template-page-prices .plans_section .plan_item .price span {
  display: block;
  width: 100%;
  margin-top: 10px;
}
body.page-template-page-prices .plans_section .title_col {
  width: 204px;
  max-width: 204px;
}
@media screen and (max-width: 991px) {
  body.page-template-page-prices .plans_section .title_col {
    display: none !important;
  }
}
body.page-template-page-prices .plans_section .plan_description {
  margin-top: 40px;
}
body.page-template-page-prices .plans_section .plan_description .description {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #012031;
  text-align: center;
}
body.page-template-page-prices .plans_section .plan_description .description p {
  margin-bottom: 56px;
}
body.page-template-page-prices .plans_section .plan_description .description p:last-child {
  margin-bottom: 0;
}

body.page-visa .title_section {
  background-image: url("../images/bg-visa-page.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 138px 0 0;
}
body.page-visa .title_section .row {
  align-items: center;
}
body.page-visa .title_section .left_block .inner {
  max-width: 540px;
}
@media screen and (max-width: 991px) {
  body.page-visa .title_section .left_block .inner {
    max-width: 100%;
    text-align: center;
  }
}
body.page-visa .title_section .right_block {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  body.page-visa .title_section .right_block {
    justify-content: center;
    max-height: 400px;
  }
}
body.page-visa .title_section .right_block img {
  height: auto;
  max-height: 100%;
  width: auto;
}
body.page-visa .title_section h1 {
  font-family: "Noto Serif", serif;
  color: #FFFFFF;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
}
body.page-visa .title_section h1 span {
  color: #FCCD64;
}
body.page-visa .title_section .description {
  font-family: "Inter", sans-serif;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  padding-bottom: 70px;
}
body.page-visa .title_section .description p:last-child {
  margin-bottom: 0;
}
body.page-visa .title_section .description p strong {
  font-weight: 700;
}
body.page-visa .title_section .description .wp-block-buttons {
  margin-top: 38px;
}
body.page-visa .title_section .description .wp-block-buttons .wp-block-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
@media screen and (max-width: 991px) {
  body.page-visa .title_section .description .wp-block-buttons .wp-block-button {
    justify-content: center;
  }
}
body.page-visa .title_section .description .wp-block-buttons .wp-block-button a,
body.page-visa .title_section .description .wp-block-buttons .wp-block-button button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 46px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background-color: #FCCD64;
  color: #012031;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s linear;
  padding: 0 48px;
  width: auto;
}
body.page-visa .title_section .description .wp-block-buttons .wp-block-button a:hover,
body.page-visa .title_section .description .wp-block-buttons .wp-block-button button:hover {
  background-color: #FFE19F;
}
body.page-visa .about_section {
  padding: 40px 0 58px;
}
@media all and (min-width: 992px) {
  body.page-visa .about_section .about_block {
    padding-right: 0;
  }
}
@media print {
  body.page-visa .about_section .about_block {
    padding-right: 0;
  }
}
body.page-visa .about_section .about_block .item {
  background: #FCCD64;
  padding: 66px 75px 66px 80px;
  border-radius: 100px 0 0 0;
  height: 100%;
}
@media screen and (max-width: 991px) {
  body.page-visa .about_section .about_block .item {
    padding: 40px 60px;
    border-radius: 60px 0 0 0;
  }
}
@media screen and (max-width: 575px) {
  body.page-visa .about_section .about_block .item {
    padding: 40px;
    border-radius: 50px 0 0 0;
  }
}
@media all and (min-width: 992px) {
  body.page-visa .about_section .about_block .inner {
    max-width: 482px;
  }
}
@media print {
  body.page-visa .about_section .about_block .inner {
    max-width: 482px;
  }
}
body.page-visa .about_section .about_block .before_title {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 6px;
  text-transform: uppercase;
}
body.page-visa .about_section .about_block .title {
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-weight: 600;
  color: #012031;
  line-height: 1.35;
  margin-bottom: 22px;
}
body.page-visa .about_section .about_block .description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #012031;
  line-height: 1.6;
}
body.page-visa .about_section .about_block .description p {
  margin-bottom: 10px;
}
body.page-visa .about_section .about_block .description p:last-child {
  margin-bottom: 0;
}
body.page-visa .about_section .about_block .description p strong {
  font-weight: 700;
}
@media all and (min-width: 992px) {
  body.page-visa .about_section .benefits_block {
    padding-left: 0;
  }
}
@media print {
  body.page-visa .about_section .benefits_block {
    padding-left: 0;
  }
}
body.page-visa .about_section .benefits_block .item {
  background: #224D64;
  padding: 109px 84px 78px 60px;
  border-radius: 0 0 100px 0;
  height: 100%;
}
@media screen and (max-width: 991px) {
  body.page-visa .about_section .benefits_block .item {
    padding: 40px 60px;
    border-radius: 0 0 60px 0;
  }
}
@media screen and (max-width: 575px) {
  body.page-visa .about_section .benefits_block .item {
    padding: 40px;
    border-radius: 0 0 50px 0;
  }
}
@media all and (min-width: 992px) {
  body.page-visa .about_section .benefits_block .inner {
    max-width: 482px;
  }
}
@media print {
  body.page-visa .about_section .benefits_block .inner {
    max-width: 482px;
  }
}
body.page-visa .about_section .benefits_block .title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 27px;
}
body.page-visa .about_section .benefits_block .description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.6;
}
body.page-visa .about_section .benefits_block .description p {
  margin-bottom: 10px;
}
body.page-visa .about_section .benefits_block .description p:last-child {
  margin-bottom: 0;
}
body.page-visa .about_section .benefits_block .description ul {
  padding-left: 26px;
}
body.page-visa .about_section .benefits_block .description ul li {
  margin-bottom: 10px;
}
body.page-visa .about_section .benefits_block .description ul li::marker {
  font-size: 16px;
}
body.page-visa .included_section {
  padding: 0 0 124px;
}
@media screen and (max-width: 767px) {
  body.page-visa .included_section {
    padding: 0 0 80px;
  }
}
body.page-visa .included_section .row {
  align-items: center;
}
body.page-visa .included_section .image_block {
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.page-visa .included_section .image_block {
    max-height: 400px;
  }
}
body.page-visa .included_section .image_block img, body.page-visa .included_section .image_block svg {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 400px;
}
body.page-visa .included_section .title {
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-weight: 600;
  color: #012031;
  line-height: 1.35;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  body.page-visa .included_section .title {
    text-align: center;
  }
}
body.page-visa .included_section .description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(1, 32, 49, 0.6);
  line-height: 1.6;
}
body.page-visa .included_section .description b, body.page-visa .included_section .description strong {
  font-weight: 700;
}
body.page-visa .included_section .description ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  color: #012031;
}
body.page-visa .included_section .description ul li {
  position: relative;
  line-height: 2;
  margin-bottom: 10px;
  padding-left: 45px;
}
body.page-visa .included_section .description ul li:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../images/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 6px;
  left: 0;
}
body.page-visa .included_section .description ul li.closed {
  color: #C4C4C4;
}
body.page-visa .included_section .description ul li.closed:before {
  background-image: url("../images/icons/close.svg");
}
body.page-visa .included_section .description ul li.disabled {
  color: #C4C4C4;
}
body.page-visa .included_section .description ul li.disabled:before {
  filter: grayscale(1);
}
body.page-visa .included_section .description ul li strong {
  font-weight: 700;
}
body.page-visa .included_section .description p {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  body.page-visa .included_section .description p {
    text-align: center;
  }
}
body.page-visa .included_section .description p:last-child {
  margin-bottom: 0;
}
body.page-visa .included_section .description a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 46px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background-color: #FCCD64;
  color: #012031;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s linear;
  margin: 40px 0 0 45px;
}
body.page-visa .included_section .description a:hover {
  background-color: #FFE19F;
}
@media screen and (max-width: 767px) {
  body.page-visa .included_section .description a {
    margin: 40px auto 45px;
  }
}
body.page-visa .how_it_works_section {
  background-image: url(../images/bg-how-it-works.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 74px 0 0;
  margin-bottom: 78px;
}
body.page-visa .how_it_works_section .title {
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.36;
}
body.page-visa .how_it_works_section .subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 14px;
  text-align: center;
  line-height: 2;
}
body.page-visa .how_it_works_section .steps {
  position: relative;
  top: 50px;
}
@media all and (min-width: 768px) {
  body.page-visa .how_it_works_section .steps {
    margin: 0 -20px;
  }
}
@media print {
  body.page-visa .how_it_works_section .steps {
    margin: 0 -20px;
  }
}
@media screen and (max-width: 767px) {
  body.page-visa .how_it_works_section .steps {
    gap: var(--bs-gutter-x) 0;
    justify-content: center;
  }
}
@media all and (min-width: 768px) {
  body.page-visa .how_it_works_section .steps .item {
    padding: 0 20px;
  }
}
@media print {
  body.page-visa .how_it_works_section .steps .item {
    padding: 0 20px;
  }
}
body.page-visa .how_it_works_section .steps .item .inner {
  background: #FCCD64;
  border-radius: 0 0 45px 0;
  padding: 20px 40px 50px 36px;
  height: 100%;
}
@media screen and (max-width: 991px) {
  body.page-visa .how_it_works_section .steps .item .inner {
    padding: 0 25px 50px;
  }
}
body.page-visa .how_it_works_section .steps .item .image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 80px;
  margin-bottom: 70px;
}
@media screen and (max-width: 991px) {
  body.page-visa .how_it_works_section .steps .item .image {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  body.page-visa .how_it_works_section .steps .item .image {
    margin-bottom: 10px;
  }
}
body.page-visa .how_it_works_section .steps .item .image img, body.page-visa .how_it_works_section .steps .item .image svg {
  width: 60px;
  max-width: 100%;
  max-height: 60px;
}
@media screen and (max-width: 991px) {
  body.page-visa .how_it_works_section .steps .item .image img, body.page-visa .how_it_works_section .steps .item .image svg {
    width: 40px;
    max-width: 100%;
    max-height: 40px;
  }
}
body.page-visa .how_it_works_section .steps .item .title {
  font-family: "Noto Serif", serif;
  font-size: 24px;
  font-weight: 600;
  color: #224D64;
  margin-bottom: 16px;
  text-align: left;
  line-height: 1;
}
body.page-visa .how_it_works_section .steps .item .description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #224D64;
  margin-bottom: 0;
  text-align: left;
  line-height: 1.3;
}
body.page-visa .how_it_works_section .steps .item .description p {
  margin-bottom: 10px;
}
body.page-visa .how_it_works_section .steps .item .description p:last-child {
  margin-bottom: 0;
}
body.page-visa .rest_section .block {
  align-items: flex-start;
}
body.page-visa .rest_section .title {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #012031;
  line-height: 1.6;
  margin-bottom: 36px;
  height: 28.8px;
}
body.page-visa .rest_section .documents .content {
  background: #F2F9FC;
  border-radius: 15px;
  padding: 15px 36px;
}
body.page-visa .rest_section .documents .title {
  display: flex;
  align-items: center;
  justify-items: flex-start;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #012031;
  max-width: 210px;
  margin: 0;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  body.page-visa .rest_section .documents .title {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    justify-content: center;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1199px) {
  body.page-visa .rest_section .documents .title + div.col {
    flex: 0 0 100%;
  }
}
body.page-visa .rest_section .docs {
  gap: 15px 0;
}
body.page-visa .rest_section .docs .item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
}
@media screen and (max-width: 575px) {
  body.page-visa .rest_section .docs .item {
    justify-content: flex-start;
    white-space: unset;
    flex: 0 0 auto;
  }
}
body.page-visa .rest_section .docs img, body.page-visa .rest_section .docs svg {
  flex: 0 0 14px;
  width: 14px;
  height: auto;
  max-height: 100%;
  margin-top: 5px;
}
body.page-visa .qualify_section {
  padding: 60px 0 116px;
}
body.page-visa .qualify_section .title {
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-weight: 600;
  color: #012031;
  margin: 0;
  text-align: center;
  line-height: 1.3;
}
body.page-visa .qualify_section .subtitle {
  font-family: "Noto Serif", serif;
  font-size: 24px;
  font-weight: 600;
  color: #012031;
  margin-top: 22px;
  text-align: center;
  line-height: 1.38;
}
body.page-visa .qualify_section .description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #224D64;
  margin: 55px auto 0;
  line-height: 1.6;
  max-width: 1002px;
}
body.page-visa .qualify_section .items {
  max-width: 797px;
  margin: 75px auto 0;
}
body.page-visa .qualify_section .items .item {
  margin-bottom: 30px;
}
body.page-visa .qualify_section .items .item:last-child {
  margin-bottom: 0;
}
body.page-visa .qualify_section .items .item_title {
  display: flex;
  align-items: center;
  justify-items: flex-start;
  position: relative;
  font-family: "Noto Serif", serif;
  font-size: 24px;
  font-weight: 600;
  color: #012031;
  min-height: 50px;
  margin-bottom: 20px;
  line-height: 1.38;
  padding-left: 70px;
}
@media screen and (max-width: 575px) {
  body.page-visa .qualify_section .items .item_title {
    min-height: 40px;
    padding-left: 55px;
  }
}
body.page-visa .qualify_section .items .item_title .icon {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 575px) {
  body.page-visa .qualify_section .items .item_title .icon {
    width: 40px;
    height: 40px;
  }
}
body.page-visa .qualify_section .items .item_title .icon img, body.page-visa .qualify_section .items .item_title .icon svg {
  width: auto;
  height: 100%;
  max-height: 100%;
  padding: 5px;
}
body.page-visa .qualify_section .items .item_description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #224D64;
  line-height: 1.6;
  margin-bottom: 0;
  padding-left: 107px;
}
@media screen and (max-width: 575px) {
  body.page-visa .qualify_section .items .item_description {
    padding-left: 55px;
  }
}
body.page-visa .qualify_section .items .item_description ul {
  padding-left: 15px;
}
body.page-visa .qualify_section .items .item_description ul li > ul {
  list-style: "–";
}
body.page-visa .qualify_section .items .item_description ul li > ul li {
  padding-left: 7px;
}
body.page-visa .qualify_section .items .item_description ul li > ul li > ul {
  margin-top: 10px;
  list-style: disc;
}
body.page-visa .qualify_section .items .item_description ul li > ul li > ul li > ul {
  margin-top: 5px;
  list-style: "–";
}

body.single-news header#header,
body.page-template-default header#header {
  background: rgb(34, 77, 100) !important;
}
body.single-news .page_content,
body.page-template-default .page_content {
  padding-top: 150px;
  padding-bottom: 80px;
}
body.single-news .page_content h1,
body.page-template-default .page_content h1 {
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #012031;
}
body.single-news .page_content h2,
body.page-template-default .page_content h2 {
  font-family: "Noto Serif", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  color: #012031;
  margin-top: 40px;
  margin-bottom: 14px;
}

body.single header#header {
  background: rgb(34, 77, 100) !important;
}
body.single .page_content {
  padding-top: 150px;
  padding-bottom: 80px;
}
body.single .page_content h1 {
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #012031;
}
body.single .page_content h2, body.single .page_content h3 {
  font-family: "Noto Serif", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  color: #012031;
  margin-top: 40px;
  margin-bottom: 14px;
}
body.single .page_content h3 {
  font-size: 22px;
  font-weight: 700;
}
body.single table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #012031;
  margin-bottom: 20px;
}
body.single table th, body.single table td {
  border: 1px solid #012031;
}
body.single table td {
  padding: 5px 15px;
}

body {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  color: #012031;
  line-height: 1.6;
}

.container {
  max-width: calc(1300px + 3rem);
}

.site-wrap {
  max-width: 100%;
  overflow: hidden;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}

.highlight {
  background: #FCCD64;
}

.hidden {
  display: none !important;
}

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