html,
body {
  height: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  /*color: #495057;*/
  line-height: 1.5;
  scroll-behavior: smooth;
  background-color: #fff;
}

body.active {
  overflow: hidden;
}

h1 {
  font-weight: 2000;
}

* {
  margin: 0;
  padding: 0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.005);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

.fader-wrap {
  position: fixed;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 6;
  background: rgba(26, 69, 111, 0.5);
  display: block;
  opacity: 0;
  display: none;
  pointer-events: none;
}

.site-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

a {
  color: inherit;
}

a:hover {
  text-decoration: none;
}

.page-wrapper {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
  position: relative;
}

.page-wrapper-wide {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
  position: relative;
}

@media screen and (max-width: 991px) {
  /* .page-wrapper {
        padding-left:22px;
        padding-right: 22px;
    } */
}

.mobile-header {
  display: none;
  z-index: 6;
}

/* .header {
    width:100%;
    position: absolute;
    left:0;
    top:0;
    right:0;
    margin:auto;
    padding-top: 46px;
    padding-bottom: 20px;
    box-sizing: border-box;
    z-index: 1;
} */

.header-cont-row-wrap {
  padding: 24px 0;
  overflow: hidden;
}

.header-cont-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo-block {
  display: flex;
  justify-content: center;
  align-content: center;
  margin-right: 60px;
  text-decoration: none;
}

.comp-logo-row {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.comp-logo-row a {
  width: auto;
  margin-right: 30px;
}

.comp-logo-row a:last-child {
  /* margin-right: 0;*/
}

.header-info-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.header-info-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.header-info-block a {
  color: #0b1f35;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.header-soc-block {
  margin-left: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-left: 1px solid #adb5bd;
  box-sizing: border-box;
  padding: 0 0 0 30px;
}

.header-soc-block a {
  color: transparent;
  text-decoration: none;
  margin-left: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-soc-block a img {
  transition: 0.2s;
}

.header-soc-block a:hover img {
  filter: brightness(60%);
}

.header-soc-block a:first-child {
  margin-left: 0;
}

.header-search-btn-block {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 30px;
  border-left: 1px solid #adb5bd;
  box-sizing: border-box;
}

.header-search-btn-block a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1c8eff;
  text-decoration: none;
  transition: 0.2s;
}

.header-search-btn-block a:hover {
  color: #0b1f35;
}

.header-search-btn-block a img {
  margin-right: 12px;
}

.header-menu-row-wrap {
  background-color: #1c8eff;
}

.header-menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-menu-link {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 20px 23px;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.2s;
}

.main-menu-link:hover,
.main-menu-link:focus {
  background-color: rgba(0, 0, 0, 0.2);
}

.header-main-nav ul.inner-main-nav-list {
  position: absolute;
  background-color: #fff;
  padding: 12px 24px;
  box-sizing: border-box;
  list-style: none;
  left: -200%;
  right: -200%;
  max-width: 220px;
  top: 100%;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 5;
}

.header-main-nav ul > li:hover ul.inner-main-nav-list {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.inner-main-nav-list::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -6px;
  width: 12px;
  margin: auto;
  height: 12px;
  transform: rotate(45deg);
  background-color: #fff;
}

.inner-main-nav-list li a {
  font-size: 11px;
  line-height: 1.3;
  padding: 10px 0;
  font-weight: 600;
  color: #343a40;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.inner-main-nav-list li a:hover {
  transition: 0.2s;
  color: #1c8eff;
}

.header-menu-nav-wrap {
  width: 100%;
}

.header-main-nav {
  width: 100%;
}

.header-main-nav ul li {
  margin-right: 20px;
  position: relative;
}

.header-main-nav ul li:last-child {
  margin-right: 0;
}

.header-main-nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-lang-selector {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: 60px;
}

.header-lang-selector a {
  font-size: 11px;
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
  text-align: center;
  box-sizing: border-box;
  padding: 9px;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.header-lang-selector a.active:hover {
  text-decoration: none;
}

.header-lang-selector a:hover {
  text-decoration: underline;
}

.header-lang-selector a::before {
  content: "";
  position: absolute;
  margin: auto;
  left: -2px;
  top: 0;
  bottom: 0;
  height: 20px;
  width: 1px;
  background-color: #fff;
  opacity: 0.3;
  transform: rotate(20deg);
}

.header-lang-selector a:first-child::before {
  display: none;
}

.header-lang-selector a.active {
  opacity: 0.6;
}

.main-slider-unit {
  position: relative;
}

.main-slider-cont {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.inslider-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.39;
  color: #fff;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  position: relative;
}

.inslider-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: -16px;
  width: 116px;
  height: 3px;
  background-color: #1c8eff;
}

.inslider-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.slick-dots {
  width: 100%;
  max-width: 1240px;
  margin: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
}

.slick-dots {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.slick-dots li {
  margin-right: 16px;
}

.slick-dots button {
  font-size: 0;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #adb5bd;
  border: none;
  cursor: pointer;
  outline: none;
}

.slick-dots li.slick-active button {
  background-color: #1c8eff;
}

.main-page-service-section {
  padding-top: 40px;
  padding-bottom: 50px;
  box-sizing: border-box;
}

.main-page-service-text-panel {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.uptitle {
  font-size: 11px;
  color: #adb5bd;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  line-height: 1.6;
  color: #0b1f35;
  font-weight: 800;
  margin-bottom: 32px;
  margin-top: 0;
}

.section-title h1 {
  font-size: 36px;
  line-height: 1.6;
  color: #0b1f35;
  font-weight: 800;
  margin: 0;
}

.section-title-row {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title-row .section-title {
  margin-bottom: 0;
}

.section-title-row .more-link-row {
  margin-top: 0;
}

.main-page-service-text-panel p {
  font-size: 13px;
  line-height: 24px;
  color: #495057;
  text-align: center;
  margin: auto;
  max-width: 585px;
}

.main-page-service-card-list {
  padding-top: 36px;
  box-sizing: border-box;
  max-width: 1260px;
}

.service-card-carousel .slick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -68px;
  width: 80px;
  height: 40px;
  background-color: #f2f6f9;
  cursor: pointer;
  transition: 0.2s;
}

.service-card-carousel .slick-arrow:hover {
  background-color: #f8fcff;
}

.service-card-carousel .slick-arrow:focus {
  background-color: #e4e9ec;
}

.service-card-carousel .slick-arrow.slick-prev {
  left: 10px;
}

.service-card-carousel .slick-arrow.slick-next {
  right: 10px;
}

.service-card-carousel .slick-arrow.slick-next img {
  transform: rotate(180deg);
}

.pic-pano .slick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 10px;
  width: 80px;
  height: 40px;
  background-color: #f2f6f9;
  cursor: pointer;
  transition: 0.2s;
}

.pic-pano .slick-arrow:hover {
  background-color: #f8fcff;
}

.pic-pano .slick-arrow:focus {
  background-color: #e4e9ec;
}

.pic-pano .slick-arrow.slick-prev {
  left: 0;
}

.pic-pano .slick-arrow.slick-next {
  right: 0;
}

.pic-pano .slick-arrow.slick-next img {
  transform: rotate(180deg);
}

.scc-unit-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.scc-unit-pic img {
  width: 100%;
}

.scc-unit {
  margin: 0 12px;
}

.scc-unit p {
  font-size: 17px;
  font-weight: 700;
  line-height: 26px;
}

.more-link-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.more-link-row a {
  color: #1c8eff;
  font-size: 11px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  flex-flow: row nowrap;
}

.more-link-row a img {
  margin-left: 6px;
}

.more-link-row a span {
  border-bottom: 1px solid #1c8eff;
  transition: 0.2s;
  white-space: nowrap;
}

.more-link-row a:hover span {
  border-bottom: 1px solid transparent;
}

.main-page-news-section {
  background-color: #f2f6f9;
  padding-top: 60px;
  padding-bottom: 60px;
}

.main-page-news-list {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.main-pn-col-left {
  width: 32%;
  border-right: 1px solid #f2f6f9;
  box-sizing: border-box;
  display: flex;
}

.main-pn-col-right {
  width: 68%;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.main-pn-unit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  padding: 32px;
  box-sizing: border-box;
}

.main-pn-col-right .main-pn-unit {
  border-right: 1px solid #f2f6f9;
  width: 50%;
  border-bottom: 1px solid #f2f6f9;
  display: flex;
}

.main-pn-col-right .main-pn-unit:nth-child(3),
.main-pn-col-right .main-pn-unit:nth-child(4) {
  border-bottom: none;
}

.main-pn-col-right .main-pn-unit:nth-child(2n) {
  border-right: none;
}

.main-pn-unit img {
  width: auto;
  max-width: 100%;
  margin-bottom: 20px;
}

.main-pn-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  transition: 0.2s;
  margin-bottom: 10px;
}

.main-pn-date {
  font-size: 13px;
  font-weight: 500;
  color: #adb5bd;
  margin-top: auto;
}

.main-pn-unit:hover .main-pn-title {
  color: #1c8eff;
}

.main-page-text-form-panel {
  padding-top: 60px;
}

.main-page-text-form-panel {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.main-page-text-formed-col {
  margin-left: 103px;
  padding-top: 20px;
  box-sizing: border-box;
}

.main-page-text-formed-col form {
  max-width: 380px;
  min-width: 380px;
  width: 100%;
  padding: 32px;
  box-sizing: border-box;
  box-shadow: 0 20px 40px -8px rgba(18, 55, 92, 0.5);
}

.form.blue-form {
  background-color: #1c8eff;
}

.form.white-form {
  background-color: #ffffff;
}

.form-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.form p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
}

.blue-form .form-title,
.blue-form p {
  color: #fff;
}

.white-form .form-title,
.white-form p {
  color: #0b1f35;
}

.input-row {
  position: relative;
  margin-bottom: 24px;
}

.input-row input {
  width: 100%;
  border: none;
  outline: none;
  padding-left: 20px;
  font-size: 15px;
  color: #0b1f35;
  box-sizing: border-box;
  line-height: 48px;
  height: 48px;
  transition: 0.2s;
  border: 2px solid rgba(36, 113, 189, 0);
  box-shadow: none;
}

.blue-form .input-row input {
  background-color: #fff;
  border-radius: 0;
}

.white-form .input-row input {
  background-color: #f2f6f9;
}

.input-row input:focus {
  border: 2px solid rgba(36, 113, 189, 1);
}

.checkbox-row input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox-row label {
  position: relative;
  padding-left: 32px;
  box-sizing: border-box;

  font-size: 13px;
  line-height: 22px;
  display: block;
  cursor: pointer;
}

.blue-form .checkbox-row label {
  color: #fff;
  font-weight: 100;
}

.white-form .checkbox-row label {
  color: #343a40;
}

.checkbox-row label::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: url(../images/check.svg) no-repeat;
  background-size: contain;
  left: 3px;
  top: 3px;
  opacity: 0;
  transition: 0.2s;
}

.checkbox-row {
  position: relative;
  margin-bottom: 24px;
}

.checkbox-row label::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  top: 0;
  left: 0;
  border: 2px solid rgba(36, 113, 189, 0);
  box-sizing: border-box;
  transition: 0.2s;
}

.blue-form .checkbox-row label::before {
  background-color: #fff;
}

.white-form .checkbox-row label::before {
  background-color: #f2f6f9;
}

.checkbox-row input:focus + label::before {
  border: 2px solid rgba(36, 113, 189, 1);
}

.checkbox-row input:checked + label::after {
  opacity: 1;
}

.btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1c8eff;
  padding: 12px;
  color: #fff;
  font-size: 11px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

.btn:hover {
  background-color: #2d7ecd;
}

.btn:focus {
  background-color: #2471bd;
}

.form .btn {
  width: 100%;
}

.blue-form .btn {
  background-color: rgb(36, 113, 189);
}

.button-text {
  margin-left: 30px;
  margin-right: 30px;
}

.text-panel p {
  font-size: 15px;
  line-height: 28px;
  color: #0b1f35;
  margin-bottom: 28px;
}

.text-panel ul,
.text-panel ol {
  list-style: none;
}

.text-panel ol {
  counter-reset: section;
}

.text-panel ul li,
.text-panel ol li {
  position: relative;
  font-size: 15px;
  line-height: 28px;
  color: #0b1f35;
  margin-bottom: 28px;
  padding-left: 20px;
}

.text-panel ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #1c8eff;
}

.text-panel ol li::after {
  counter-increment: section;
  content: counter(section) ".";
  color: #1c8eff;
  font-size: inherit;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}

.text-panel ul.ya-share2__list li {
  margin: 0 8px 0 0;
  padding: unset;
}

.text-panel ul.ya-share2__list li::after {
  display: none;
}

.text-panel a {
  color: #1c8eff;
  text-decoration: underline;
}

.text-panel a:hover {
  text-decoration: none;
}

.pwc-form-col .form {
  background-color: #fff;
  padding: 32px;
  box-sizing: border-box;
}

.faq-panel-wrap {
}

.main-partners-carousel-section {
  padding-top: 60px;
  padding-bottom: 60px;
  box-sizing: border-box;
  border-bottom: 1px solid #f2f6f9;
}

.main-partners-carousel .slick-track {
  display: flex;
  align-items: center;
}

.main-partners-carousel .mpc-unit {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.mpc-unit-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 50px;
  box-sizing: border-box;
}

.mpc-unit-pic img {
  max-width: 100%;
  width: auto;
}

.main-partners-carousel .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}

.main-partners-carousel .slick-arrow.slick-prev {
  left: 0;
}

.main-partners-carousel .slick-arrow {
  transition: 0.2s;
}

.main-partners-carousel .slick-arrow:hover {
  filter: brightness(60%);
}

.main-partners-carousel .slick-arrow.slick-next {
  right: 0;
  transform: rotate(180deg);
}

.mobile-menu-close {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 20px;
  top: 20px;
  width: 16px;
  height: 16px;
}

.mobile-menu-close img {
  max-width: 100%;
}

.footer {
  background-color: #fff;
  padding-bottom: 40px;
  box-sizing: border-box;
}

.footer-contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #f2f6f9;
}

.footer-contact-unit {
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 500;
}

.footer-contact-unit img {
  margin-right: 8px;
  margin-top: 2px;
}

.footer-part-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
  flex-flow: row wrap;
}

.footer-part-row img {
  max-height: 50px;
  /*filter:grayscale(100%);*/
  /*opacity: 0.9;*/
  margin: 0 25px;
}

.footer-part-row img:first-child {
  /*opacity: 0.5;*/
}

.footer-copyright-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright-row p {
  max-width: 350px;
  width: 100%;
  margin: auto;
  text-align: center;
  color: #adb5bd;
  font-size: 13px;
  font-weight: 500;
}

.header-tel-soc-block {
  display: Flex;
  align-items: center;
  padding-right: 30px;
  box-sizing: border-box;
}

.mobile-search-btn {
  display: none;
}

.burger-btn {
  display: none;
}

.hidden-search-form {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: row nowrap;
  pointer-events: none;
  transform: translateX(100%);
  transition: 0.2s;
  opacity: 0;
  width: 100%;
}

.hidden-search-form input[type="text"] {
  padding-left: 12px;
  height: 38px;
  border: 1px solid #adb5bd;
  font-size: 14px;
  line-height: 38px;
  box-sizing: border-box;
  width: 100%;
}

.hidden-search-form input[type="text"]:focus {
  border: 1px solid #1c8eff;
  outline: none;
}

.hidden-search-btn {
  border: none;
  outline: none;
  transform: translateX(0px);
  position: absolute;
  right: 48px;
  background: transparent;
  cursor: pointer;
  position: absolute;
  right: 50px;
}

.search-panel-btn {
  width: 40px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 12px;
}

.search-panel-btn img {
  max-width: 20px;
}

.hidden-search-form.active {
  pointer-events: all;
  opacity: 1;
  transform: translateX(0);
}

.breadcrumbs {
  padding-top: 32px;
  padding-bottom: 16px;
}

.breadcrumbs {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  list-style: none;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  position: relative;
}

.breadcrumbs li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

.breadcrumbs li:after {
  content: "";
  position: absolute;
  width: 10px;
  right: -15px;
  top: 6px;
  height: 10px;
  background: url(../images/chevron.svg) no-repeat;
  background-position: center;
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs li a {
  color: #0b1f35;
}

.breadcrumbs li span {
  color: #8091a1;
}

.inner-page-wrapper {
  background-color: #f2f6f9;
}

.news-page-list {
  display: block;
  margin-bottom: 25px;
}

.np-unit {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 32px;
  background-color: #fff;
  padding: 32px;
  box-sizing: border-box;
  text-decoration: none;
}

.np-unit:last-child {
  margin-bottom: 0;
}

.np-unit:hover .np-title-text {
  color: #1c8eff;
}

.np-pic-block {
  width: 240px;
  min-width: 240px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  margin-right: 32px;
}

.np-pic-block img {
  max-width: 100%;
}

.np-text-block {
  width: 100%;
  display: block;
}

.np-title-text {
  font-size: 17px;
  font-weight: 700;
  color: #212529;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: 0.2s;
}

.np-date {
  font-size: 13px;
  line-height: 24px;
  color: #adb5bd;
  margin-bottom: 8px;
}

.np-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #0b1f35;
}

.paginator {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
  list-style: none;
  padding-bottom: 60px;
  box-sizing: border-box;
}

.paginator li {
  margin: 5px;
}

.paginator li a {
  background-color: #fff;
  min-width: 40px;
  box-sizing: border-box;
  padding: 0 6px;
  font-weight: 500;
  height: 40px;
  color: #495057;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.2s;
}

.paginator li.pag-prev a,
.paginator li.pag-next a {
  width: 80px;
}

.paginator li.pag-next a img {
  transform: rotate(180deg);
}

.paginator li a:hover {
  background-color: #1c8eff;
  color: #fff;
}

.paginator li a:hover img {
  filter: brightness(200%);
}

.inslider-title h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.39;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}

.inner-banner-panel {
  position: relative;
  overflow: hidden;
}

.inner-banner-text {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 1;
  text-align: center;
}

.inner-banner-text .inslider-title::after {
  left: 0;
  right: 0;
  margin: auto;
}

.inner-banner-text .inslider-title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -16px;
  width: 116px;
  height: 3px;
  background-color: #1c8eff;
}

.thin-page-wrapper {
  max-width: 850px;
}

.news-item-page-wrap {
  display: flex;
  flex-direction: column;
}

.news-item-cont-panel {
  padding: 20px;
  background-color: #fff;
  margin-bottom: 30px;
  display: block;
}

.news-item-page-wrap .breadcrumbs {
  padding: 30px 0;
}

.pic-pano {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}

.pic-pano-item {
  width: calc(33.333% - 22px);
  margin-right: 32px;
  margin-bottom: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pic-pano-item a img {
  width: 100%;
}

.pic-pano-item:nth-child(3n) {
  margin-right: 0;
}

.pic-pano-hov-block {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url(../images/icon-zoom.svg) no-repeat center,
    rgba(22, 95, 167, 0.6);
  background-size: 30px;
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
}

.pic-pano-item:hover .pic-pano-hov-block {
  opacity: 1;
}

.other-news-btns-panel {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 60px;
}

.other-news-btn {
  background-color: #fff;
  padding: 16px 20px;
  box-sizing: border-box;
  text-decoration: none;
  width: calc(50% - 15px);
  position: relative;
}

.on-prev-news {
  padding-left: 54px;
}

.on-next-news {
  padding-right: 54px;
}

.other-news-btn.on-prev-news {
  text-align: left;
}

.other-news-btn.on-next-news {
  text-align: right;
}

.on-news-arrow-ico {
  position: absolute;
  top: 18px;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.on-news-arrow-ico img {
  width: 100%;
}

.other-news-btn.on-next-news .on-news-arrow-ico {
  right: 20px;
  transform: rotate(180deg);
}

.other-news-btn.on-prev-news .on-news-arrow-ico {
  left: 20px;
}

.on-news-text {
  font-size: 15px;
  font-weight: 500;
  color: #0b1f35;
  margin-bottom: 6px;
  transition: 0.2s;
}

.on-news-title {
  font-size: 13px;
  line-height: 1.6;
  color: #868e96;
  transition: 0.2s;
}

.other-news-btn:hover .on-news-text {
  color: #1c8eff;
}

.other-news-btn:hover .on-news-title {
  color: #0b1f35;
}

.services-list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-flow: row wrap;
}

.services-item {
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
  width: calc(33.333% - 20px);
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-decoration: none;
  margin-bottom: 30px;
}

.services-item:nth-child(3n) {
  margin-right: 0;
}

.si-pic-wrap {
  width: 100%;
  margin-bottom: 18px;
}

.si-pic-wrap img {
  width: 100%;
}

.si-title {
  font-size: 17px;
  font-weight: 900;
  color: #212529;
  line-height: 1.4;
  margin-bottom: 14px;
  transition: 0.2s;
}

.si-text {
  color: #0b1f35;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.services-item:hover .si-title {
  color: #1c8eff;
}

.services-page-wrapper {
  display: flex;
  flex-direction: column;
}

.services-item .btn-row {
  width: 100%;
  margin-top: auto;
  justify-content: center;
  align-items: center;
}

.services-item .btn-row .btn {
  width: 100%;
  background-color: #1c8eff;
  border-radius: 0;
}

.services-item:hover .btn-row .btn {
  background-color: #3e9fff;
}

.services-list {
  margin-bottom: 30px;
}

.breadcrumbs li a img {
  transform: translateY(-1px);
  transition: 0.2s;
}

.breadcrumbs li a:hover img {
  filter: brightness(60%);
}

.panel-with-col {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.pwc-cont-col {
  width: 100%;
}

.panel-with-col-wrap {
  display: flex;
  padding-bottom: 60px;
  flex-direction: column;
}

.pwc-form-col {
  max-width: 380px;
  min-width: 380px;
  width: 100%;
  margin-left: 30px;
}

.service-item-panel .pwc-cont-col {
  background-color: #fff;
  padding: 32px;
  box-sizing: border-box;
}

.services-links-list {
  background-color: #fff;
  padding: 32px;
  box-sizing: border-box;
}

.s-link-title {
  font-size: 17px;
  color: #212529;
  font-weight: 700;
  line-height: 1.6;
}

.services-links-list ul {
  list-style: none;
  margin-top: 32px;
}

.services-links-list ul li {
  border-top: 1px solid #ebedef;
}

.services-links-list ul li a {
  color: #1c8eff;
  font-size: 15px;
  display: flex;
  line-height: 1.6;
  padding: 16px 0;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: 500;
}

.services-links-list ul li a:hover {
  text-decoration: underline;
}

.contact-page-map-panel {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.cpm-map-col {
  min-width: 688px;
  width: 100%;
}

.cpm-text-col {
  width: 100%;
  padding: 30px 32px;
  box-sizing: border-box;
  background-color: #fff;
}

.cpm-contact-list .footer-contact-unit {
  margin-bottom: 24px;
  font-size: 15px;
}

.cpm-contact-list a.footer-contact-unit {
  color: #1c8eff;
}

.cc-list-title {
  font-size: 17px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 40px;
}

.contact-cards-list-wrap {
  padding-top: 50px;
  padding-bottom: 50px;
  box-sizing: border-box;
}

.contact-cards-list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-flow: row wrap;
}

.cc-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  padding: 24px 0 0;
  box-sizing: border-box;
  width: calc(25% - 30px);
  margin-right: 30px;
  margin-bottom: 30px;
}

.cc-unit:nth-child(4n) {
  margin-right: 0;
}

.cc-pic-wrap {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 120px;
  box-sizing: border-box;
  margin: 0 auto 26px;
}

.cc-pic-wrap img {
  width: 100%;
}

.cc-name {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
  font-size: 15px;
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 20px;
}

.cc-position {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
  font-size: 13px;
  color: #adb5bd;
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.cc-contact-unit-wrap {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  box-sizing: border-box;
  padding: 20px;
  box-sizing: border-box;
  border-top: 1px solid #e9eff4;
  width: 100%;
}

.cc-contact-unit-wrap a {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  display: block;
  text-align: center;
  text-decoration: none;
}

.cc-contact-unit-wrap a.ccc-tel {
  font-size: 13px;
  color: #0b1f35;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 8px;
}

.cc-contact-unit-wrap a.ccc-mail {
  color: #1c8eff;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}

.faq-unit {
  background-color: #fff;
  padding: 24px;
  box-sizing: border-box;
  position: relative;
  transition: 0.2s;
  margin-bottom: 30px;
}

.faq-unit::after {
  content: "";
  position: absolute;
  top: 31px;
  right: 26px;
  width: 14px;
  height: 14px;
  transform: rotate(-90deg);
  background: url(../images/arrow.svg) no-repeat;
  transition: 0.2s;
}

.faq-unit.active::after {
  transform: rotate(-275deg);
}

.faq-unit.active {
  box-shadow: 0 20px 30px -6px rgba(11, 36, 60, 0.1);
}

.faq-q-title {
  color: #212529;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.8;
  cursor: pointer;
  width: 100%;
  padding-right: 40px;
  box-sizing: border-box;
}

.faq-a-block {
  padding-top: 20px;
  display: none;
}

.exporters-list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-flow: row wrap;
}

.exporters-item {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding: 24px;
  background-color: #fff;
  width: calc(50% - 15px);
  margin-right: 30px;
  margin-bottom: 30px;
  text-decoration: none;
  box-sizing: border-box;
}

.exporters-item:nth-child(2n) {
  margin-right: 0;
}

.ei-title {
  font-size: 15px;
  line-height: 28px;
  color: #212529;
  font-weight: 600;
}

.ei-text {
  font-size: 15px;
  font-weight: 400;
  color: #0b1f35;
}

.ei-num {
  font-size: 13px;
  color: #adb5bd;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.sr-item {
  display: block;
  margin-bottom: 20px;
  padding: 24px;
  box-sizing: border-box;
  background-color: #fff;
}

.sr-title {
  font-size: 15px;
  line-height: 28px;
  color: #212529;
  font-weight: 600;
  margin-bottom: 8px;
}

.sr-text {
  font-size: 15px;
  font-weight: 400;
  color: #0b1f35;
}

.input-search-row-wrap {
  display: flex;
  flex-flow: row nowrap;
  padding: 14px 24px 14px 14px;
  box-sizing: border-box;
  background-color: #fff;
  margin-bottom: 40px;
  box-shadow: 0 20px 30px -6px rgba(11, 36, 60, 0.1);
}

.input-search-row-wrap .input-row {
  margin-bottom: 0;
  width: 100%;
}

.input-search-row-wrap .input-row input {
  padding-left: 34px;
}

.input-search-row-wrap .input-row::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../images/icon-search.svg) no-repeat;
  width: 14px;
  height: 14px;
  background-size: cover;
  opacity: 0.9;
}

.input-search-row-wrap .btn {
  padding: 12px 24px;
}

.btn-isr-wrap {
  margin-left: 24px;
  display: flex;
  flex-flow: row nowrap;
}

.btn-isr-wrap select {
  border: none;
  outline: none;
  background-color: #f2f6f9;
  color: #8091a1;
  padding: 0 12px;
  margin-right: 24px;
}

.doc-panel {
  display: block;
  padding: 32px 0;
  box-sizing: border-box;
}

.doc-panel-title {
  display: block;
  margin-bottom: 32px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  color: #212529;
}

.doc-panel-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

a.doc-panel-unit {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 32px;
  text-decoration: none !important;
}

.doc-panel-unit {
  margin-bottom: 0;
}

.doc-ico-wrap {
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}

.doc-ico-wrap img {
  max-width: 100%;
}

.doc-title-row {
  width: 100%;
}

.doc-title-row .doc-name {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 0;
  color: #0b1f35;
  transition: 0.2s;
}

.doc-panel-unit:hover .doc-name {
  color: #1c8eff;
}

.doc-size {
  color: #adb5bd;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

.text-page-panel-wrap {
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}

.text-page-panel {
  background-color: #fff;
  padding: 32px;
  box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
  .cpm-map-col {
    min-width: 50%;
    width: 100%;
  }

  .logo-block {
    margin-right: 40px;
  }

  .comp-logo-row img {
    margin-right: 40px;
  }

  .header-tel-soc-block {
    flex-direction: column;
    align-items: flex-end;
    border-left: 1px solid #adb5bd;
  }

  .header-soc-block {
    border-left: none;
    margin-left: 0;
  }

  .header-info-block a {
    margin-bottom: 6px;
  }

  .header-info-row {
    align-items: stretch;
    margin-left: 24px;
  }

  .main-menu-link {
    padding: 20px 6px;
  }
}

@media screen and (max-width: 991px) {
  .contact-page-map-panel {
    flex-direction: column;
  }

  .cpm-contact-list {
    display: flex;
    flex-flow: row wrap;
  }

  .cpm-contact-list .footer-contact-unit {
    width: 50%;
    padding-right: 24px;
    box-sizing: border-box;
    display: flex;
    align-items: baseline;
  }

  .contact-cards-list .cc-unit {
    width: calc(33.333% - 20px);
  }

  .contact-cards-list .cc-unit:nth-child(4n) {
    margin-right: 30px;
  }

  .contact-cards-list .cc-unit:nth-child(3n) {
    margin-right: 0;
  }

  .panel-with-col {
    flex-direction: column;
  }

  .pwc-cont-col {
    margin-bottom: 32px;
  }

  .pwc-form-col {
    width: 100%;
    min-width: unset;
    max-width: unset;
    margin-left: 0;
  }

  .services-item:nth-child(3n) {
    margin-right: 30px;
  }

  .services-item:nth-child(2n) {
    margin-right: 0;
  }

  .services-item {
    width: calc(50% - 15px);
  }

  .inner-banner-panel img {
    max-height: 460px;
  }

  .header-main-nav ul li {
    margin-right: 0;
  }

  .main-map-panel {
    max-height: 360px;
    overflow: hidden;
  }

  .footer-contact-row {
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
  }

  .footer-contact-unit {
    width: 40%;
    margin: 8px 0;
    padding-left: 12px;
    box-sizing: border-box;
  }

  .main-page-text-form-panel {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .main-pn-col-right {
    flex-direction: column;
  }

  .main-page-text-form-col,
  .main-page-text-formed-col {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .main-page-text-formed-col form {
    width: 100%;
    max-width: unset;
    min-width: unset;
  }

  .main-page-text-form-col {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .main-pn-col-right .main-pn-unit {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #f2f6f9;
  }

  .main-pn-col-right .main-pn-unit:nth-child(3) {
    border-bottom: 1px solid #f2f6f9;
  }

  .main-pn-col-right .main-pn-unit:last-child {
    border-bottom: none;
  }

  .header-search-btn-block a {
    font-size: 0;
  }

  .logo-block {
    margin-right: 30px;
  }

  .comp-logo-row img {
    max-width: 130px;
    margin-right: 30px;
  }

  .form .form-cont {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
  }

  .form .form-cont .input-row {
    width: calc(50% - 16px);
    margin-right: 32px;
  }

  .form .form-cont .checkbox-row {
    width: calc(50% - 16px);
    margin-right: 32px;
  }

  .form .form-cont .btn-row {
    width: calc(50% - 16px);
    margin-right: 0;
    justify-content: flex-end;
  }

  .form .form-cont .btn-row .btn {
    max-width: 320px;
  }

  .form .form-cont .input-row:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .text-page-panel {
    padding: 24px;
  }

  .pic-pano-item {
    margin: 0 !important;
  }

  .pic-pano {
    padding-bottom: 70px;
  }

  .input-search-row-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px;
  }

  .input-search-row-wrap .input-row {
    margin-bottom: 24px;
  }

  .btn-isr-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0;
  }

  .exporters-item {
    width: 100%;
    margin-right: 0;
  }

  .exporters-item:nth-child(2n) {
    margin-right: 0;
  }

  .contact-cards-list .cc-unit {
    width: calc(50% - 15px);
  }

  .contact-cards-list .cc-unit:nth-child(4n) {
    margin-right: 30px;
  }

  .contact-cards-list .cc-unit:nth-child(3n) {
    margin-right: 30px;
  }

  .contact-cards-list .cc-unit:nth-child(2n) {
    margin-right: 0;
  }

  .other-news-btn {
    width: calc(50% - 10px);
    height: 40px;
  }

  .on-news-text,
  .on-news-title {
    display: none;
  }

  .other-news-btn.on-prev-news .on-news-arrow-ico,
  .other-news-btn.on-next-news .on-news-arrow-ico {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }

  .np-pic-block {
    width: 180px;
    min-width: 180px;
  }

  .main-pn-col-left .main-pn-unit {
    border-bottom: 1px solid #f2f6f9;
  }

  .main-pn-unit img {
    width: 100%;
    max-width: unset;
  }

  .header-main-nav ul.inner-main-nav-list {
    position: relative;
    opacity: 1;
    pointer-events: all;
    transform: unset;
    z-index: 1;
    left: auto;
    right: auto;
    background: none;
    padding: 0 10px 0 0;
    top: auto;
    margin: 0;
    align-items: flex-end;
    margin-bottom: 6px;
  }

  .header-main-nav ul.inner-main-nav-list::before {
    display: none;
  }

  .inner-main-nav-list li a {
    color: rgba(255, 255, 255, 0.72);
    text-align: right;
    padding: 8px;
  }

  .inner-main-nav-list li a:hover {
    background-color: #fff;
  }

  .hidden-search-form {
    position: fixed;
    right: 0;
    top: 0;
    bottom: auto;
    margin: auto;
    background-color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row nowrap;
    pointer-events: none;
    transform: translateX(100%);
    transition: 0.2s;
    opacity: 0;
    width: 100%;
    height: 57px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
    z-index: 5;
    padding: 20px;
    padding-right: 10px;
    box-sizing: border-box;
  }

  .hidden-search-form input[type="text"] {
    height: 36px;
  }

  .hidden-search-btn {
    right: 59px;
  }

  .fader-wrap {
    display: block;
    opacity: 0;
    width: 100%;
    transform: translate(100%);
  }

  .fader-wrap.active {
    width: 100%;
    opacity: 1;
    transform: translate(0);
    pointer-events: all;
  }

  .mobile-menu-close {
    display: flex;
  }

  .header-main-nav {
    margin-top: 10px;
  }

  .main-menu-link {
    font-size: 16px;
    padding: 10px;
    box-sizing: border-box;
    text-align: right;
    align-items: flex-end;
  }

  header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    margin: auto;
    z-index: 3;
    background-color: #fff;
    box-shadow: 0px 0px 14px 4px rgba(0, 0, 0, 0.3);
  }

  .page-content {
    padding-top: 170px;
    box-sizing: border-box;
    z-index: 2;
  }

  .section-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title-row .section-title {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.6;
  }

  .section-title h1 {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.6;
  }

  .main-page-text-form-col .section-title {
    margin-bottom: 20px;
  }

  .main-slider-unit img {
    min-height: 420px;
    max-height: 420px;
    width: auto;
  }

  .footer-part-row img {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .footer-part-row {
    padding: 32px 0;
  }

  .main-page-text-formed-col form {
    padding: 30px;
  }

  .footer-contact-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-partners-carousel-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-contact-unit {
    width: 100%;
  }

  .main-page-news-list {
    flex-direction: column;
  }

  .main-pn-col-left,
  .main-pn-col-right {
    width: 100%;
    border-right: none;
  }

  .comp-logo-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .comp-logo-row img {
    margin-bottom: 8px;
  }

  .comp-logo-row img:last-child {
    margin-bottom: 0;
  }

  .header-info-block a {
    margin-bottom: 10px;
  }

  .header-search-btn-block {
    display: none;
  }

  .header-tel-soc-block {
    padding-right: 0;
  }

  .header-menu-nav-wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 360px;
    z-index: 7;
    background-color: #1c8eff;
    transform: translateX(100%);
    transition: 0.2s;
    padding-right: 20px;
    box-sizing: border-box;
    overflow-y: auto;
  }

  .header-menu-nav-wrap.active {
    transform: translate(0);
  }

  .header-main-nav ul {
    flex-direction: column;
    align-items: flex-end;
  }

  .header-main-nav ul li {
    margin-right: 0;
  }

  .header-lang-selector {
    margin-left: 0;
  }

  .burger-btn {
    display: flex;
    width: 20px;
    height: 14px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-left: 24px;
  }

  .burger-btn span {
    width: 100%;
    background-color: #fff;
    height: 2px;
  }

  .mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .header-menu-row {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .main-slider .slick-arrow {
    position: absolute;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.2);
    background-image: url(../images/arrow-w.svg);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center;
    border: none;
    z-index: 3;
    font-size: 0;
    outline: none;
  }

  .main-slider .slick-arrow.slick-next {
    transform: rotate(180deg);
    right: 30px;
  }

  .main-slider .slick-arrow.slick-prev {
    right: 70px;
  }
}

@media screen and (max-width: 570px) {
  .services-item:nth-child(3n) {
    margin-right: 0;
  }

  .services-item:nth-child(2n) {
    margin-right: 0;
  }

  .services-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .page-content {
    padding-top: 157px;
  }

  .comp-logo-row {
    display: none;
  }

  .logo-block {
    margin-right: 10px;
  }

  .logo-block img {
    max-width: 110px;
  }

  .form .form-cont {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .form .form-cont * {
    width: 100% !important;
    margin-right: 0 !important;
  }

  .form .form-cont .btn-row {
    justify-content: center;
  }

  .np-unit {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
  }

  .np-pic-block {
    width: 100%;
    min-width: unset;
    margin-bottom: 24px;
  }

  .np-pic-block img {
    width: 100%;
  }

  .cpm-contact-list {
    flex-direction: column;
  }

  .cpm-text-col {
    padding: 24px;
  }

  .cpm-contact-list .footer-contact-unit {
    width: 100%;
    padding: 0;
    margin-right: 0;
    padding-right: 0;
    line-height: 1.8;
    margin-bottom: 20px;
    margin-top: 0;
  }

  .cpm-contact-list .footer-contact-unit:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  .text-page-panel-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .text-page-panel {
    padding: 10px;
    padding-bottom: 24px;
  }

  .news-item-page-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .other-news-btns-panel {
    padding-left: 10px;
    padding-right: 10px;
  }

  .service-item-panel .pwc-cont-col {
    padding-left: 14px;
    padding-right: 14px;
  }

  .doc-title-row .doc-name {
    font-size: 13px;
  }

  .doc-ico-wrap {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .btn-isr-wrap {
    flex-direction: column;
    align-items: center;
  }

  .input-search-row-wrap .input-row {
    margin-bottom: 14px;
  }

  .btn-isr-wrap select {
    height: 48px;
    width: 100%;
    margin: 0 0 14px 0;
  }

  .btn-isr-wrap .btn-row,
  .btn-isr-wrap .btn {
    width: 100%;
  }

  .contact-cards-list .cc-unit {
    width: 100%;
    margin-right: 0;
  }

  .contact-cards-list .cc-unit:nth-child(4n) {
    margin-right: 0;
  }

  .contact-cards-list .cc-unit:nth-child(3n) {
    margin-right: 0;
  }

  .contact-cards-list .cc-unit:nth-child(2n) {
    margin-right: 0;
  }

  .header-info-row {
    margin-left: 8px;
  }

  .inslider-title,
  .inslider-title h1 {
    font-size: 24px;
  }

  .inslider-subtitle {
    font-size: 22px;
  }

  .main-slider-unit .page-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-slider .slick-arrow.slick-next {
    right: 20px;
  }

  .main-slider .slick-arrow.slick-prev {
    right: 60px;
  }

  .news-item-page-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 375px) {
  .page-content {
    padding-top: 155px;
  }

  .page-wrapper,
  .main-page-text-form-col {
    padding-left: 10px;
    padding-right: 10px;
  }

  .logo-block img {
    max-width: 99px;
  }

  .news-item-page-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .text-page-panel-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .text-page-panel {
    padding: 10px;
    padding-bottom: 24px;
  }
}
