html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  line-height: 1.6;
  font-size: 18px;
  color: #2B2B2B;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  position: relative;
  padding-top: 80px;
}

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

.footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 1200px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 750px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 600px;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  color: #2B2B2B;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

h1 {
  font-size: 50px;
  font-weight: 700;
}

h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 34px;
  }
  h2 {
    margin-bottom: 10px;
    font-size: 28px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
}
a {
  text-decoration: none;
  color: #168AD8;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  text-decoration: none;
  color: #116caa;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input:not([type=checkbox]) {
  border: none;
  padding: 21px 26px;
  border-radius: 50px;
  width: 100%;
  outline: none;
  font-size: 16px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #2B2B2B;
}
input:not([type=checkbox]):focus, input:not([type=checkbox]):active {
  border: none;
}

textarea {
  border: none;
  width: 100%;
  padding: 25px;
  border-radius: 20px;
  outline: none;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1.5;
  height: 110px;
}
textarea:focus, textarea:active {
  border-color: #000;
}

input[type=checkbox] {
  width: auto;
  margin-right: 10px;
  display: inline-block;
}

input[type=radio] {
  width: auto;
  margin-right: 10px;
  display: inline-block;
}

input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #2B2B2B;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #2B2B2B;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #2B2B2B;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #2B2B2B;
}

input::placeholder,
textarea::placeholder {
  color: #2B2B2B;
}

select {
  padding: 12px;
  border-radius: 0px;
  border-color: #ececec;
  color: #4b4b4b;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
  border: 1px solid #ececec;
}
select:hover {
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

strong {
  font-weight: 700;
}

/*=============Table=============*/
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
table td, table th {
  border: 1px solid #ececec;
  padding: 15px;
}

@media (max-width: 480px) {
  table td, table th {
    padding: 10px;
  }
}
/*=============Table end=============*/
p:not(:last-child) {
  margin-top: 0;
  margin-bottom: 20px;
}

.d-flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-none {
  display: none !important;
}

.ks-btn, input[type=submit] {
  display: inline-block;
  font-size: 13px;
  line-height: 20px;
  border-radius: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  font-weight: 600;
  padding: 25px 50px;
  letter-spacing: 0.16rem;
  background-color: #168AD8;
  min-width: 200px;
  position: relative;
  border: none;
  outline: none;
}

.ks-btn:hover, input[type=submit]:hover {
  color: #fff;
  background-color: #116caa;
  border-color: #116caa;
}

.ks-btn.ks-btn--line {
  background-color: #f9fafb;
  border-color: #d0d5dd;
}
.ks-btn.ks-btn--line:hover {
  background-color: #edf0f3;
}

.submit-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
}

.section_padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .ks-btn, input[type=submit] {
    padding: 17px 30px;
  }
  .section_padding {
    padding: 80px 0;
  }
}
.center-title {
  text-align: center;
}

.btn-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-title {
  margin-bottom: 50px;
}

.classic-text p {
  margin-bottom: 20px;
}
.classic-text p:last-child {
  margin-bottom: 0;
}
.classic-text ul, .classic-text ol {
  margin: 20px 0;
  padding-left: 30px;
}
.classic-text li {
  margin-bottom: 10px;
}

@media (max-width: 990px) {
  .classic-text p {
    margin-bottom: 20px;
  }
  .classic-text p:last-child {
    margin-bottom: 0;
  }
  .classic-text ul, .classic-text ol {
    margin: 20px 0;
  }
}
@media (max-width: 768px) {
  .classic-text h2 {
    font-size: 26px;
  }
  .classic-text h3 {
    font-size: 22px;
  }
  .classic-text h4 {
    font-size: 18px;
  }
  .wrapper {
    padding-top: 60px;
  }
  .page-title {
    margin-bottom: 30px;
  }
}
.ks_bg_line {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1280px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}
.ks_bg_line span {
  display: block;
  background-color: #E9EFF3;
  height: 100%;
  width: 1px;
}

.ks_has_bg_line {
  position: relative;
}
.ks_has_bg_line .container {
  position: relative;
  z-index: 55;
}
.ks_has_bg_line--white .ks_bg_line span {
  background-color: #fff;
  opacity: 0.2;
}

@media (max-width: 1320px) {
  .ks_bg_line {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .ks_bg_line span:nth-child(4) {
    display: none;
  }
}
.ks-form__field {
  margin-bottom: 17px;
}
.ks-form__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 22px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 22px;
  margin-bottom: 25px;
}
.ks-form__row .ks-form__field {
  margin-bottom: 0;
}
.ks-form__btn {
  position: relative;
  margin-bottom: 0px;
}
.ks-form__btn input[type=submit] {
  border: none;
  width: auto;
}
.ks-form__btn .wpcf7-spinner {
  display: none;
}
.ks-form__politic {
  margin-bottom: 40px;
  color: #fff;
}
.ks-form__politic .wpcf7-list-item-label {
  position: relative;
  padding-left: 32px;
  color: transparent;
  margin-right: -6px;
  cursor: pointer;
  display: inline-block;
}
.ks-form__politic .wpcf7-list-item-label::before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: 54%;
  background-position: center;
}
.ks-form__politic input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-image: url(../../img/checked.svg);
}
.ks-form__politic input[type=checkbox] {
  display: none;
}
.ks-form__politic .wpcf7-list-item {
  margin: 0;
}
.ks-form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ks-form input[type=submit] {
  min-width: 220px;
}

.ks_politic_check_text {
  font-size: 15px;
}
.ks_politic_check_text label {
  margin: 0;
}
.ks_politic_check_text a {
  text-decoration: underline;
  display: inline-block;
  margin-left: 5px;
  color: #fff;
}

@media (max-width: 1200px) {
  .form_s {
    padding: 120px 0;
  }
  .form_s .container {
    grid-gap: 40px;
  }
  .form_s__form {
    padding-right: 0;
    padding-top: 0;
  }
}
@media (max-width: 990px) {
  .form_s .container {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .form_s h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .ks-form__btn input[type=submit] {
    width: 100%;
  }
  .ks-form__politic .wpcf7-list-item-label {
    padding-left: 26px;
  }
  .ks-form__politic .wpcf7-list-item-label:before {
    width: 18px;
    height: 18px;
    border-width: 1px;
  }
  .ks-form__row {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    grid-gap: 15px;
    margin-bottom: 15px;
  }
}
.faq_sec h2 {
  margin-bottom: 24px;
}

.faq_accordion .button {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq_accordion .button svg {
  display: block;
  fill: #168AD8;
}
.faq_accordion__item {
  margin-bottom: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #E5F3FC;
  border-radius: 20px;
}
.faq_accordion__item:last-child {
  margin-bottom: 0;
}
.faq_accordion__title {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 20px;
  grid-template-columns: 1fr 20px;
  grid-gap: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  font-size: 20px;
  line-height: 1.2;
  padding: 18px 26px;
  cursor: pointer;
}
.faq_accordion__text {
  display: none;
  font-size: 14px;
  padding: 0px 50px 15px 26px;
}
.faq_accordion__text ul {
  padding-left: 20px;
  margin-top: 0;
}
.faq_accordion__text li {
  margin-bottom: 5px;
}
.faq_accordion__text p {
  margin-bottom: 20px;
}
.faq_accordion__text p:last-child {
  margin-bottom: 0;
}

.faq_accordion__item.active .faq_accordion__title .button {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 990px) {
  .faq_accordion__text {
    padding: 0 20px 15px;
  }
  .faq_accordion__title {
    padding: 18px 20px;
    font-size: 18px;
  }
}
.wp-caption-text,
.faq_caption {
  text-align: center;
  color: #2B2B2B;
  font-weight: 700;
  padding: 10px 0;
}

.faq_img_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 250px;
  grid-template-columns: 1fr 250px;
  grid-gap: 20px;
}
.faq_img_row img {
  max-width: 100%;
}

.faq_img_col--img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.faq_img_col--img p {
  margin: 0;
}

@media (max-width: 768px) {
  .faq_img_row {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.page-padding {
  padding: 70px 0;
}

.post-header {
  margin-bottom: 50px;
}

.post-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px 30px;
}

.post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.post-item__img {
  position: relative;
  padding-bottom: 60%;
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
}
.post-item__img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.post-item__img img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.post-item__title {
  font-size: 22px;
  margin-bottom: 20px;
}
.post-item__text {
  margin-bottom: 15px;
}
.post-item__text p {
  margin: 0;
}
.post-item__more {
  border: none;
  display: inline-block;
  padding: 0;
  color: #168AD8;
  text-decoration: none;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.post-item__more svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-item__more:hover {
  color: #147ec5;
}
.post-item__more:hover svg {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (max-width: 768px) {
  .post-header {
    margin-bottom: 30px;
  }
  .post-grid {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    grid-gap: 40px;
  }
  .post-item__img {
    margin-bottom: 15px;
  }
  .post-item__text {
    margin-bottom: 10px;
  }
  .post-item__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .page-padding {
    padding: 40px 0;
  }
}
.section404 {
  padding: 200px 0 160px;
  text-align: center;
  background-image: url(../../img/404-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}
.section404 h1 {
  text-align: center;
  color: inherit;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
}
.section404__number {
  font-size: 200px;
  text-align: center;
  color: #fff;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
}

.subtitle404 {
  font-size: 18px;
  max-width: 1000px;
  margin: 0 auto 50px;
}

@media (max-width: 480px) {
  .section404 {
    padding: 120px 0 80px;
  }
  .section404__number {
    font-size: 130px;
  }
  .subtitle404 {
    font-size: 16px;
  }
}
.nav-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav-post .pagination {
  padding: 40px 0 0;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.nav-links .page-numbers {
  display: inline-block;
  min-width: 40px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #168AD8;
  padding: 0;
  text-align: center;
  color: #2B2B2B;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav-links .page-numbers.current {
  color: #fff;
  background-color: #168AD8;
}
.nav-links .page-numbers:hover {
  color: #fff;
  background-color: #168AD8;
}
.nav-links .next, .nav-links .prev {
  padding: 0 30px;
}

@media (max-width: 480px) {
  .nav-post .pagination {
    padding-top: 20px;
  }
}
.entry_header {
  max-width: 780px;
  margin-bottom: 40px;
}
.entry_header__excerpt {
  margin-bottom: 24px;
  font-size: 20px;
}

.single-page-title {
  font-weight: 500;
  margin-bottom: 24px;
}

.post-meta {
  gap: 30px;
  margin-bottom: 20px;
}
.post-meta__status {
  color: #dc6803;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 500;
}

.post-thumb {
  position: relative;
  padding-bottom: 40%;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}
.post-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-content {
  font-size: 20px;
  line-height: 1.8;
}

.wp-block-quote {
  background-color: #f7f7f7;
  margin: 30px 0;
  padding: 40px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.wp-block-image {
  margin-bottom: 30px;
}

article.post {
  margin-bottom: 30px;
}
article.post.post-item, article.post.search-item {
  margin-bottom: 0;
}

.post-dop-title, .comment-reply-title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.rating_sidebar {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 10px;
}
.rating_sidebar__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #2B2B2B;
}
.rating_sidebar ul {
  margin: 0;
  padding: 0;
}
.rating_sidebar li {
  list-style-type: none;
}
.rating_sidebar a {
  color: #2B2B2B;
}

#post_contents_block {
  display: none;
}

@media (max-width: 990px) {
  .single_content,
  .pereklad_top_row {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    grid-gap: 40px;
  }
  .entry_header__excerpt {
    font-size: 18px;
  }
  .single-content {
    padding: 40px 60px;
    font-size: 16px;
  }
  .wp-block-quote {
    margin: 20px 0;
    padding: 20px;
  }
  .wp-block-quote p {
    margin-bottom: 10px;
  }
  .post-thumb {
    padding-bottom: 60%;
  }
}
@media (max-width: 768px) {
  .single-content {
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .single-page-title {
    font-size: 26px;
  }
  .post-dop-title, .comment-reply-title {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .post-meta {
    gap: 15px;
  }
}
.wp-block-navigation .wp-block-page-list {
  padding-left: 0;
  margin: 20px 0;
  gap: 20px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 20px;
}
.wp-block-navigation .wp-block-page-list li {
  margin: 0;
}
.wp-block-navigation .wp-block-navigation__submenu-container {
  margin: 0;
  padding: 0;
}
.wp-block-navigation .wp-block-navigation__submenu-container a {
  display: inline-block;
  padding: 5px 10px;
  font-size: 16px;
  line-height: 1.6;
}
.wp-block-navigation .wp-block-navigation__submenu-container a:hover {
  color: #168AD8;
}

.pereclad-to-home {
  margin-bottom: 30px;
}

.back-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #168AD8;
}
.back-btn:hover {
  color: #147ec5;
}

.pereclad_number_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pereclad_number__title {
  font-size: 14px;
  color: #dc6803;
  margin-bottom: 10px;
  font-weight: 500;
}
.pereklad_top_row {
  margin-bottom: 24px;
}

.pereclad_rating_widget {
  border: 1px solid #eaecf0;
  padding: 24px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.pereclad_rating_widget__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.pereclad_rating_widget__logo {
  max-width: 120px;
}
.pereclad_rating_widget__logo img {
  width: 100%;
}
.pereclad_rating_widget__star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
}
.pereclad_rating_widget__btn .ks-btn {
  width: 100%;
}

.evaluation_criteria {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.evaluation_criteria__title {
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.2;
}
.evaluation_criteria__visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.evaluation_criteria__visual_circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #EAECF0;
  position: relative;
  overflow: hidden;
}

.circle.full {
  background-color: #18C362;
}

.circle.partial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #18C362;
}

.circle.empty {
  background-color: #EAECF0;
}

@media (max-width: 990px) {
  .pereklad_top_row {
    margin-bottom: 50px;
  }
}
.reviews_section {
  padding-top: 50px;
}

.reviews_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.reviews {
  background-color: #f9fafb;
  padding: 32px;
  border-radius: 16px;
}
.reviews__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.reviews__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.reviews__stars .rating-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.reviews__stars .star {
  color: #EAECF0;
}
.reviews__stars .star.filled {
  color: #FFD700;
}
.reviews__stars_text {
  font-size: 14px;
  line-height: 1;
}
.reviews__sourse {
  text-align: right;
  font-size: 14px;
  color: #667085;
  font-weight: 500;
}
.reviews__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #2B2B2B;
  margin-bottom: 20px;
}
.reviews__text {
  color: #475467;
  margin-bottom: 24px;
}
.reviews__text p {
  margin-bottom: 15px;
}
.reviews__text p:last-child {
  margin-bottom: 0;
}
.reviews__footer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 48px 12px 1fr;
  grid-template-columns: 48px 1fr;
  grid-gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reviews__img img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 3px;
  color: #2B2B2B;
}
.reviews__stack {
  font-size: 14px;
  color: #667085;
}
.reviews__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 20px;
}

@media (max-width: 480px) {
  .reviews__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .reviews {
    padding: 20px;
  }
}
.styki_pereklad_info {
  position: fixed;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 640px;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 15px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  z-index: 99;
}
.styki_pereklad_info.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.styki_pereklad_info__logo {
  max-width: 120px;
}
.styki_pereklad_info__logo img {
  width: 100%;
}
.styki_pereklad_info .rating_number {
  line-height: 1;
  font-weight: 500;
}

@media (max-width: 768px) {
  .styki_pereklad_info {
    width: calc(100% - 30px);
  }
  .single-pereklad .sticky_button {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .styki_pereklad_info {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50px 20px 1fr;
    grid-template-columns: 50px 1fr;
    gap: 20px;
  }
  .styki_pereklad_info.active {
    display: -ms-grid;
    display: grid;
  }
  .styki_pereklad_info__logo {
    display: none;
  }
  .styki_pereklad_info {
    bottom: 15px;
  }
}
@media (max-width: 480px) {
  .styki_pereklad_info .rating_star svg {
    display: none;
  }
  .styki_pereklad_info .rating_star svg:first-child {
    display: block;
  }
}
.ks-comments {
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid #b9b9b9;
}

.ks-comments-form p {
  margin-bottom: 20px;
}
.ks-comments-form label {
  display: inline-block;
  margin-bottom: 8px;
}
.ks-comments-form textarea {
  height: 130px;
}
@media (min-width: 600px) {
  .ks-comments-form .comment-form-author {
    float: left;
    width: 49%;
  }
}
@media (min-width: 600px) {
  .ks-comments-form .comment-form-email {
    float: right;
    width: 48%;
  }
}
.ks-comments-form .comment-form-cookies-consent {
  clear: both;
}
.ks-comments-form .comment-form-cookies-consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.ks-comments-form .comment-form-cookies-consent input {
  margin-top: 10px;
}
.ks-comments-form .form-submit input[type=submit] {
  min-width: 400px;
  width: auto;
  font-size: 18px;
  line-height: 30px;
  padding: 12px 30px;
  text-align: center;
}

@media (max-width: 500px) {
  .ks-comments-form .form-submit input[type=submit] {
    min-width: 200px;
    font-size: 16px;
    line-height: 26px;
  }
  .ks-comments {
    margin-top: 30px;
    padding-top: 20px;
  }
}
.ks-comments .ks-comment-list {
  padding: 20px 0 20px;
  margin: 0;
}
.ks-comments .ks-comment-list .children {
  padding-left: 40px;
  border-left: 1px solid #ececec;
}
.ks-comments .ks-comment-list li.comment {
  list-style-type: none;
  border-bottom: 1px solid #ececec;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.ks-comments .ks-comment-list li.comment:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.ks-comments .ks-comment-list li.comment .reply a {
  font-size: 14px;
  display: inline-block;
  color: #168AD8;
  border: 1px solid #168AD8;
  border-radius: 30px;
  padding: 7px 30px;
  text-align: center;
  line-height: 20px;
}
.ks-comments .ks-comment-list li.comment .reply a:hover {
  color: #fff;
  background-color: #168AD8;
}
.ks-comments .ks-comment-list .comment-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ks-comments .ks-comment-list .comment-author .fn {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
}
.ks-comments .ks-comment-list .comment-author img.avatar {
  margin-right: 10px;
  border-radius: 50%;
}
.ks-comments .ks-comment-list .comment-meta {
  font-size: 12px;
  margin-bottom: 10px;
}
.ks-comments .ks-comment-list .comment-meta a {
  color: #888;
}

.comment-body p {
  font-size: 16px;
  padding: 15px 30px;
  background-color: #f5f5f5;
  border-radius: 0 30px 30px 30px;
  margin-bottom: 15px;
}

.comment-reply-title a {
  display: inline-block;
  margin: 0 15px;
}

.comment .comment-respond {
  padding: 20px 0;
}
.comment .comment-respond .logged-in-as, .comment .comment-respond .comment-notes {
  margin-bottom: 5px;
}
.comment .comment-respond textarea {
  height: 70px;
}
.comment .comment-respond .comment-form-comment {
  margin-bottom: 10px;
}
.comment .comment-respond .form-submit {
  margin-bottom: 0;
}
@media (min-width: 991px) {
  .comment .comment-respond .comment-form-author, .comment .comment-respond .comment-form-email {
    width: 48%;
  }
  .comment .comment-respond .comment-form-author {
    float: left;
  }
  .comment .comment-respond .comment-form-email {
    float: right;
  }
  .comment .comment-respond .comment-form-cookies-consent {
    clear: both;
  }
}

@media (max-width: 480px) {
  .ks-comments .ks-comment-list .children {
    padding-left: 20px;
  }
  .comment-body p {
    padding: 10px 15px;
    border-radius: 0 15px 15px 15px;
  }
}
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
  padding: 10px 0;
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
.site-header .container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.site-header__logo {
  max-width: 240px;
}
.site-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  gap: 32px;
}
.site-header__menu li {
  list-style-type: none;
  margin: 0;
  position: relative;
}
.site-header__menu a {
  color: #2B2B2B;
  display: inline-block;
  padding: 5px 0px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.site-header__menu a::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #168AD8;
  position: absolute;
  bottom: 0px;
  left: 0;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.site-header__menu a:hover {
  color: #121212;
}
.site-header__menu a:hover::before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.current-menu-item a::before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.site-logo--white {
  display: none;
}

.marker-menu {
  position: absolute;
  top: 28px;
  right: 0px;
  font-size: 12px;
}

.menu-item-has-children {
  padding-right: 16px;
}

@media (min-width: 991px) {
  .mobile-menu {
    display: none;
  }
  .marker-menu {
    pointer-events: none;
  }
  .site-header .sub-menu {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    max-width: 300px;
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 0px;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    visibility: hidden;
    opacity: 0;
  }
  .site-header .sub-menu li {
    margin-bottom: 15px;
    padding: 0 30px;
  }
  .site-header .sub-menu li:last-child {
    margin-bottom: 0;
  }
  .site-header .sub-menu a {
    color: #2B2B2B;
    padding: 0;
    width: 100%;
    padding-bottom: 5px;
  }
  .site-header .sub-menu a::before {
    bottom: 0;
  }
  .site-header .sub-menu .marker-menu {
    color: #2B2B2B;
    top: 8px;
    right: 30px;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .site-header .sub-menu .sub-menu {
    top: -25px;
    left: 100%;
  }
}
.site-header__menu li:hover > .sub-menu {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
  visibility: visible;
  opacity: 1;
}

@media (max-width: 990px) {
  .site-header {
    min-height: 60px;
  }
  .site-header__logo {
    max-width: 200px;
  }
  .site-header__nav {
    z-index: 999;
    display: block;
    position: absolute;
    background-color: #fff;
    padding: 25px 20px;
    width: 100%;
    height: calc(100vh - 60px);
    overflow-y: auto;
    top: 100%;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
  }
  .site-header__nav.open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  .site-header__menu {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .site-header__menu a {
    width: 100%;
    padding: 15px 0;
  }
  .site-header__menu a::before {
    display: none;
  }
  .site-header__menu .marker-menu {
    right: 0px;
  }
  .sub-menu {
    display: none;
    padding: 0 0 0 20px;
    border-left: 1px solid #545454;
  }
  .sub-menu a {
    font-size: 16px;
  }
  .menu-item-has-children {
    padding-right: 0;
  }
  .marker-menu {
    top: 10px;
    padding: 7px;
  }
  .sub-menu--active > .marker-menu {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.mobile-menu {
  border: none;
  background-color: transparent;
  padding: 0;
  width: 24px;
  min-width: 24px;
  height: 19px;
  color: #fff;
  position: relative;
  z-index: 600;
}
.mobile-menu span {
  width: 100%;
  height: 2px;
  background-color: #344054;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mobile-menu span:nth-child(2), .mobile-menu span:nth-child(3) {
  top: 50%;
  margin-top: -1px;
}
.mobile-menu span:last-child {
  top: auto;
  bottom: 0;
}
.mobile-menu.active span:nth-child(1), .mobile-menu.active span:nth-child(4) {
  display: none;
}
.mobile-menu.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mobile-menu.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body.admin-bar .site-header {
  top: 32px;
}

.wrapper.transparent_header {
  padding-top: 0;
}
.wrapper.transparent_header .site-logo--color {
  display: none;
}
.wrapper.transparent_header .site-logo--white {
  display: block;
}
.wrapper.transparent_header .site-header {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: absolute;
  top: 40px;
  width: 100%;
  left: 0;
}
.wrapper.transparent_header .site-header__menu a {
  color: #fff;
}
.wrapper.transparent_header .mobile-menu span {
  background-color: #fff;
}
.wrapper.transparent_header .site-header__nav.open .site-header__menu a {
  color: #2B2B2B;
}

@media (max-width: 480px) {
  .wrapper.transparent_header .site-header {
    top: 0;
  }
}
.wrapper .header_fixed {
  -webkit-animation-name: header;
          animation-name: header;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

@-webkit-keyframes header {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes header {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.home .wrapper {
  padding-top: 0 !important;
}

.site-footer {
  font-size: 16px;
}
.site-footer__top_row {
  background-color: #1A3068;
}
.site-footer__grid {
  padding: 55px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.site-footer__logo img {
  width: 270px;
}
.site-footer__menu {
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  max-width: 300px;
}
.site-footer__menu li {
  list-style-type: none;
  margin-bottom: 10px;
}
.site-footer__menu a {
  color: #fff;
  display: inline-block;
  font-weight: 600;
}
.site-footer__menu a:hover {
  color: #e6e6e6;
}
.site-footer__contact_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
.site-footer__contact_list {
  margin: 0;
  padding: 0;
}
.site-footer__contact_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  white-space: nowrap;
}
.site-footer__contact_list li:last-child {
  margin-bottom: 0;
}
.site-footer__contact_list a {
  color: #fff;
}

.social_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-top: 5px;
}

.copiright {
  padding: 15px 0;
  color: #1A3068;
  font-size: 14px;
  line-height: 23px;
}
.copiright .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.design_by {
  margin-left: auto;
}
.design_by a {
  color: #1A3068;
}

.policy_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.policy_menu li {
  list-style-type: none;
  margin: 0;
}
.policy_menu a {
  color: #1A3068;
}
.policy_menu .current_page_item a {
  font-weight: 600;
}

@media (max-width: 1200px) {
  .site-footer__grid {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .site-footer__grid {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .copiright .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
  .copiright__text {
    -webkit-box-ordinal-group: 56;
        -ms-flex-order: 55;
            order: 55;
  }
  .design_by {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .site-footer__contact_col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .copiright {
    padding: 20px 0;
  }
}
.sticky_button {
  opacity: 0;
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #168AD8;
  color: #fff;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sticky_button:hover {
  background-color: #116caa;
}
.sticky_button svg {
  width: 21px;
  height: 12px;
  display: block;
}
.sticky_button.active {
  opacity: 1;
}

@media (max-width: 600px) {
  .sticky_button {
    right: 10px;
    bottom: 10px;
  }
}
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 48, 104, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 9333;
}
.popup.open {
  opacity: 1;
  visibility: visible;
}
.popup.open .popup__content {
  opacity: 1;
  -webkit-transform: translate(0px, 0);
          transform: translate(0px, 0);
}
.popup__body {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 10px;
}
.popup__content {
  background-color: #fff;
  max-width: 512px;
  width: 100%;
  padding: 45px 60px 60px;
  position: relative;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0;
  -webkit-transform: translate(0px, -100%);
          transform: translate(0px, -100%);
  border-radius: 30px;
}
.popup__close {
  display: inline-block;
  position: absolute;
  top: 25px;
  right: 25px;
  text-decoration: none;
  cursor: pointer;
  z-index: 99;
}
.popup__close svg {
  display: block;
  width: 11px;
  height: 11px;
  fill: #B9B9B9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.popup__close:hover svg {
  fill: #168AD8;
}
.popup__title {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}
.popup .wpcf7 form .wpcf7-response-output {
  display: none !important;
  margin: 15px 0;
}
.popup .wpcf7 form.sent .wpcf7-response-output {
  border-color: #168AD8;
}

body.lock {
  overflow: hidden;
}

.popup input:not([type=submit]),
.popup textarea {
  background-color: #E5F3FC;
}
.popup .ks-form__politic {
  color: #2B2B2B;
}
.popup .ks-form__politic a {
  color: #2B2B2B;
}
.popup .ks-form__politic .wpcf7-list-item-label::before {
  background-color: #E5F3FC;
}

@media (max-width: 768px) {
  .popup__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .popup__content {
    padding: 40px 30px;
  }
}
.projects_popup__content {
  padding: 20px 30px 40px;
}
.projects_popup__location {
  position: relative;
  font-size: 15px;
  line-height: 24px;
  padding-left: 32px;
  margin-bottom: 28px;
}
.projects_popup__location::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../../img/location-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.projects_popup__name {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.projects_popup__text {
  font-size: 16px;
  margin-bottom: 28px;
}

.popup .arrow {
  position: absolute;
  top: 50%;
  z-index: 99;
  margin-top: -14px;
  cursor: pointer;
}
.popup .prev {
  left: 20px;
}
.popup .next {
  right: 20px;
}

.projects_popup_slid {
  position: relative;
  padding-bottom: 54%;
  overflow: hidden;
}
.projects_popup_slid img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#projects_popup .popup__content {
  padding: 0;
  max-width: 810px;
  overflow: hidden !important;
}
#projects_popup .popup__close svg {
  fill: rgba(255, 255, 255, 0.5);
}
#projects_popup .popup__close:hover svg {
  fill: rgb(255, 255, 255);
}

@media (max-width: 440px) {
  .projects_popup__content {
    padding: 20px 20px 30px;
  }
  .projects_popup__location {
    margin-bottom: 15px;
  }
}
#projects_popup .popup__content {
  min-height: 700px;
}

.project_loader_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  z-index: 55;
}

.project_loader {
  width: 48px;
  height: 48px;
  border: 5px solid #168AD8;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.page_title_row {
  background-image: url(../../img/page_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #168AD8;
  padding-top: 155px;
}
.page_title_row h1 {
  color: #fff;
  font-size: 150px;
  font-weight: 700;
  line-height: 0.7;
  margin: 0;
}

.contact_row {
  padding: 60px 0;
}
.contact_row__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 20px;
}
.contact_row .contact_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50px 14px 1fr;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  min-width: 330px;
}
.contact_row .contact_item__img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #168AD8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact_row .contact_item__text {
  font-weight: 600;
  font-size: 18px;
}
.contact_row .contact_item a {
  color: #2B2B2B;
}

@media (max-width: 1200px) {
  .contact_row__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .contact_row .contact_item {
    min-width: 200px;
  }
  .page_title_row h1 {
    font-size: 120px;
  }
}
@media (max-width: 990px) {
  .contact_row__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .page_title_row h1 {
    font-size: 100px;
  }
}
@media (max-width: 768px) {
  .page_title_row h1 {
    font-size: 70px;
  }
}
@media (max-width: 480px) {
  .page_title_row h1 {
    font-size: 50px;
  }
  .contact_row .contact_item__text {
    font-size: 16px;
  }
  .page_title_row {
    padding-top: 80px;
  }
}
@media (max-width: 370px) {
  .contact_row .contact_item {
    -ms-grid-columns: 40px 1fr;
    grid-template-columns: 40px 1fr;
  }
  .contact_row .contact_item__img {
    width: 40px;
    height: 40px;
  }
  .contact_row .contact_item__text {
    font-size: 14px;
  }
}
.contact_us {
  background-image: url(../../img/contact-us.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #2B2B2B;
  padding: 130px 0 130px;
}
.contact_us__title {
  padding-top: 90px;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 50px;
}
.contact_us__title h2 {
  text-align: center;
  color: #fff;
  margin: 0;
}
.contact_us__title__big {
  font-size: 180px;
  text-align: center;
  font-weight: 800;
  color: #E5F3FC;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
}
.contact_us__form {
  max-width: 780px;
  margin: 0 auto;
}
.contact_us input::-webkit-input-placeholder, .contact_us textarea::-webkit-input-placeholder {
  color: #2B2B2B;
}
.contact_us input::-moz-placeholder, .contact_us textarea::-moz-placeholder {
  color: #2B2B2B;
}
.contact_us input:-ms-input-placeholder, .contact_us textarea:-ms-input-placeholder {
  color: #2B2B2B;
}
.contact_us input::-ms-input-placeholder, .contact_us textarea::-ms-input-placeholder {
  color: #2B2B2B;
}
.contact_us input::placeholder,
.contact_us textarea::placeholder {
  color: #2B2B2B;
}

@media (max-width: 990px) {
  .contact_us__title__big {
    font-size: 130px;
  }
  .contact_us {
    padding: 80px 0;
  }
  .contact_us__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .contact_us__title__big {
    font-size: 90px;
  }
  .contact_us__title {
    padding-top: 45px;
  }
}
@media (max-width: 480px) {
  input:not([type=checkbox]),
  textarea {
    padding: 18px 20px;
  }
  .contact_us__title__big {
    font-size: 60px;
  }
  .contact_us__title {
    padding-bottom: 10px;
  }
}
.page-template-projects .page_title_row {
  overflow: hidden;
  z-index: 55;
}

.projects_block {
  padding: 80px 0 90px;
}
.projects_block__title_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
  margin-bottom: 40px;
}
.projects_block__number {
  font-size: 200px;
  line-height: 1;
  font-weight: 200;
  color: #168AD8;
}
.projects_block__title_col h2 {
  margin-bottom: 8px;
}
.projects_block__sub_title {
  font-size: 20px;
}

.page_title_row_title_2 .container {
  position: relative;
}

.projects_decor_title_2 {
  color: #E5F3FC;
  font-size: 150px;
  font-weight: 700;
  line-height: 0.7;
  margin: 0;
  position: absolute;
  top: -0.7em;
  left: 15px;
}

@media (max-width: 1200px) {
  .projects_decor_title_2 {
    font-size: 120px;
  }
}
@media (max-width: 990px) {
  .projects_decor_title_2 {
    font-size: 100px;
  }
}
@media (max-width: 768px) {
  .projects_decor_title_2 {
    font-size: 70px;
  }
}
@media (max-width: 480px) {
  .projects_decor_title_2 {
    font-size: 50px;
  }
}
.projects_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 36px 30px;
  margin-bottom: 60px;
}

.projects_item {
  display: block;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.projects_item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(211deg, rgba(26, 48, 104, 0) 0%, rgba(26, 48, 104, 0) 40%, rgba(26, 48, 104, 0.9) 100%);
}
.projects_item__img img {
  display: block;
}
.projects_item__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  color: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 50px;
  grid-template-columns: 1fr 50px;
  gap: 15px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  z-index: 55;
}
.projects_item__name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.projects_item__location {
  position: relative;
  padding-left: 32px;
}
.projects_item__location::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../../img/location.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.projects_item__more_btn {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.projects_item__more_btn svg {
  display: block;
  width: 12px;
  height: 21px;
}
.projects_item:hover {
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
          box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}
.projects_item:hover .projects_item__more_btn {
  background-color: #168AD8;
  border-color: #168AD8;
}

.project_load_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1200px) {
  .projects_grid {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 990px) {
  .projects_block__number {
    font-size: 170px;
  }
}
@media (max-width: 768px) {
  .projects_block__number {
    font-size: 130px;
  }
  .projects_block__sub_title {
    font-size: 16px;
  }
  .projects_grid {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .projects_block__title_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .projects_block__number {
    font-size: 90px;
  }
  .projects_item {
    border-radius: 20px;
  }
  .projects_item__content {
    padding: 20px;
  }
}
.product_bd_first_s {
  background-image: url(/wp-content/uploads/2025/04/first_s_product_bg-scaled.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.product_bd_first_s h2 {
  margin-bottom: 20px;
}
.product_bd_first_s__text {
  margin-bottom: 40px;
}
.product_bd_first_s .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blue_section {
  background-color: #168AD8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 75px 15px;
}
.blue_section__text {
  font-style: italic;
  text-align: center;
  line-height: 1.2;
  color: #fff;
  max-width: 790px;
}

.product_bd_content {
  overflow: hidden;
}
.product_bd_content::before {
  content: "";
  width: 640px;
  height: 475px;
  background-image: url(../../img/bg-decor.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 76px;
  right: 70px;
}
.product_bd_content__img img {
  border-radius: 30px;
}
.product_bd_content .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 512px 72px 1fr;
  grid-template-columns: 512px 1fr;
  grid-gap: 72px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1200px) {
  .product_bd_content .container {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
}
@media (max-width: 990px) {
  .product_bd_content .container,
  .product_bd_first_s .container {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .product_bd_first_s__img {
    -ms-grid-row: 1;
        grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
  }
}
@media (max-width: 768px) {
  .product_bd_first_s__text {
    margin-bottom: 20px;
  }
  .product_bd_content::before {
    width: 500px;
    height: 400px;
  }
}
.services_s {
  padding: 75px 0 115px;
}
.services_s__head {
  margin-bottom: 70px;
}
.services_s__text {
  font-size: 20px;
}

.services_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 44px 30px;
}

.services_item {
  border-radius: 30px;
  overflow: hidden;
  background-color: #E5F3FC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.services_item__img {
  position: relative;
  padding-bottom: 54%;
  overflow: hidden;
}
.services_item__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services_item__content {
  padding: 20px 30px 40px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.services_item__title_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 64px 22px 1fr;
  grid-template-columns: 64px 1fr;
  grid-gap: 22px;
  margin-bottom: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.services_item__name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
.services_item__text {
  margin-bottom: 20px;
  font-size: 15px;
}
.services_item__btn {
  margin-top: auto;
}
.services_item__btn .ks-btn {
  min-width: 300px;
}

@media (max-width: 990px) {
  .services_grid {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .services_s__text {
    font-size: 18px;
  }
  .services_s__head {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .services_s__text {
    font-size: 16px;
  }
  .services_s {
    padding: 60px 0;
  }
}
@media (max-width: 440px) {
  .services_item__title_row {
    -ms-grid-columns: 40px 22px 1fr;
    grid-template-columns: 40px 1fr;
  }
  .services_item__content {
    padding: 20px 20px 30px;
  }
  .services_item__btn .ks-btn {
    min-width: 200px;
  }
  .services_item {
    border-radius: 20px;
  }
}
.about_text_s {
  overflow: hidden;
}
.about_text_s::before {
  content: "";
  width: 926px;
  height: 715px;
  background-image: url(../../img/bg-decor.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 105px;
  left: 54px;
}

.about_text_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 120px 512px;
  grid-template-columns: 1fr 512px;
  grid-gap: 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 66px;
}

.slogan {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  border-left: 3px solid #168AD8;
  margin-bottom: 35px;
}

.about_text_img img {
  border-radius: 20px;
}

.our_mission {
  overflow: hidden;
  background-color: #168AD8;
  padding: 184px 0 110px;
}
.our_mission__container {
  max-width: 1140px;
  padding: 0 50px;
  margin: 0 auto;
}
.our_mission__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 26px;
  position: relative;
  z-index: 55;
}
.our_mission__title {
  text-align: center;
  color: #1481CE !important;
  top: 52px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.our_mission__text {
  text-align: center;
  font-size: 32px;
  line-height: 1.7;
  color: #fff;
  font-style: italic;
}

.background_text {
  font-size: 180px;
  font-weight: 800;
  position: absolute;
  line-height: 1.2;
  white-space: nowrap;
  color: #E5F3FC;
  z-index: 1;
}

.vision {
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 120px;
}
.vision .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 512px 80px 1fr;
  grid-template-columns: 512px 1fr;
  grid-gap: 80px;
}
.vision h2 {
  position: relative;
  z-index: 44;
  margin-bottom: 50px;
}
.vision__img img {
  border-radius: 30px;
}
.vision__text_col {
  padding-top: 81px;
  position: relative;
}
.vision__text {
  font-size: 22px;
  line-height: 2;
}
.vision__absolute_title {
  color: #E5F3FC;
  top: -15px;
  left: 50px;
}

@media (max-width: 1200px) {
  .about_text_row,
  .vision .container {
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
  }
  .about_text_s::before {
    width: 600px;
    height: 500px;
    top: 60px;
  }
  .background_text {
    font-size: 130px;
  }
  .vision__text_col {
    padding-top: 40px;
  }
  .vision h2 {
    margin-bottom: 40px;
  }
  .vision__text {
    font-size: 18px;
    line-height: 1.8;
  }
  .our_mission {
    padding-top: 140px;
  }
}
@media (max-width: 990px) {
  .about_text_row,
  .vision .container {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    grid-gap: 30px;
  }
  .background_text {
    font-size: 90px;
  }
  .our_mission__text {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .background_text {
    font-size: 60px;
  }
  .our_mission {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .our_mission__container {
    padding: 0 15px;
  }
  .our_mission__text {
    font-size: 20px;
  }
  .about_text_s::before {
    width: 500px;
    height: 400px;
  }
  .vision__absolute_title {
    top: 0;
  }
  .vision h2 {
    margin-bottom: 20px;
  }
  .vision__text {
    font-size: 16px;
  }
  .vision {
    padding: 80px 0;
  }
  .slogan {
    margin-bottom: 25px;
  }
}
@media (max-width: 380px) {
  .background_text {
    font-size: 50px;
  }
}
.home_about {
  padding: 120px 0;
  overflow: hidden;
}
.home_about__text_col {
  padding-top: 50px;
}
.home_about__absolute_title {
  top: 70px;
  left: 75px;
}
.home_about__text {
  margin-bottom: 35px;
}
.home_about__img img {
  border-radius: 30px;
}
.home_about .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 512px;
  grid-template-columns: 1fr 512px;
  grid-gap: 60px;
}

@media (max-width: 1200px) {
  .home_about .container {
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
  }
  .home_about__text_col {
    padding-top: 0;
  }
  .home_about__absolute_title {
    top: 40px;
    left: 30px;
  }
}
@media (max-width: 990px) {
  .home_about .container {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
@media (max-width: 768px) {
  .home_about__absolute_title {
    left: 15px;
  }
  .home_about {
    padding: 80px 0;
  }
}
.services_home {
  padding-top: 40px;
}
.services_home__title {
  padding-top: 111px;
  padding-bottom: 50px;
}
.services_home h2 {
  text-align: center;
  margin-bottom: 0;
  position: relative;
  z-index: 66;
}
.services_home__decor_title {
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0px;
}
.services_home__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  margin-bottom: 50px;
}
.services_home__item {
  position: relative;
  padding-top: 71px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.services_home__item::before {
  content: "";
  width: 142px;
  height: 142px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -11;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.services_home__item_img_wrap {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
  z-index: 10;
}
.services_home__item_img {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 1px solid #E5F3FC;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.services_home__item_img img {
  width: 64px;
  height: 64px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.services_home__item__text_wrap {
  background-color: #E5F3FC;
  border-radius: 30px;
  padding: 96px 24px 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 5;
}
.services_home__item_title {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
  min-height: 65px;
}
.services_home__item_text {
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}
.services_home__more_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 991px) {
  .services_home__item:hover .services_home__item_img {
    background-color: #168AD8;
  }
  .services_home__item:hover .services_home__item_img img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  .services_home__item:hover .services_home__item__text_wrap {
    background-color: #fff;
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  .services_home__item:hover::before {
    -webkit-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 1200px) {
  .services_home__grid {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
  .services_home__title {
    padding-top: 70px;
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .services_home__title {
    padding-top: 40px;
    padding-bottom: 10px;
  }
  .services_home__grid {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .services_home__item_title {
    min-height: 10px;
    margin-bottom: 20px;
  }
}
.title_block {
  text-align: center;
  position: relative;
  padding-top: 10%;
  padding-bottom: 4%;
}
.title_block h2 {
  text-align: center;
  position: relative;
  z-index: 55;
}
.title_block__absolut {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 1200px) {
  .title_block {
    padding-top: 8%;
  }
}
.home_projects,
.home_product {
  background-color: #E5F3FC;
}
.home_projects .ks_bg_line span,
.home_product .ks_bg_line span {
  background-color: #d8e1e6;
  opacity: 1;
}
.home_projects .background_text,
.home_product .background_text {
  color: #fff;
}

.home_product {
  padding: 230px 0 145px;
  background-image: url(../../img/product_home.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.home_product .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home_product h2 {
  margin-bottom: 40px;
}
.home_product__decor_title {
  top: 110px;
  left: 75px;
}
.home_product__text {
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .home_product {
    padding: 120px 0 80px;
  }
  .home_product__decor_title {
    top: 40px;
    left: 15px;
  }
  .home_product h2 {
    margin-bottom: 20px;
  }
  .home_product__text {
    margin-bottom: 20px;
  }
}
@media (max-width: 990px) {
  .home_product {
    background-position: right center;
  }
  .home_product .container {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .home_product__decor_title {
    display: none;
  }
  .home_product__img {
    -ms-grid-row: 1;
        grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
  }
}
@media (max-width: 768px) {
  .home_product {
    padding: 80px 0;
  }
}
.thanks_row {
  height: 100%;
  padding: 160px 0;
}

.thanks_content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .thanks_row {
    padding: 100px 0;
  }
}
.first_section {
  position: relative;
  color: #fff;
}
.first_section::before {
  content: "";
  width: 980px;
  height: 756px;
  position: absolute;
  bottom: 0;
  right: 68px;
  background-image: url(../../img/bg-decor.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  z-index: 5;
  opacity: 0.2;
}
.first_section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1A3068;
}
.first_section__bg_media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.first_section__bg_media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.first_section h1,
.first_section h2 {
  color: #fff;
}
.first_section__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.first_section .container {
  padding-top: 15%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.first_section__content_wrap {
  position: relative;
  max-width: 700px;
  padding-bottom: 130px;
}
.first_section__title {
  font-weight: 400;
  font-size: 56px;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}
.first_section__text {
  max-width: 560px;
  margin-bottom: 35px;
  font-size: 17px;
  line-height: 28px;
}
.first_section .arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.first_section .arrow svg {
  fill: #fff;
  display: block;
}
.first_section .arrow:hover {
  background-color: #168AD8;
  border-color: #168AD8;
}

.first_section_dots_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 200px;
  position: absolute;
  bottom: 50px;
  left: 0px;
  z-index: 55;
}

.home_slider_number {
  font-size: 32px;
  line-height: 1;
}
.home_slider_number span {
  display: inline-block;
  font-size: 18px;
  -webkit-transform: translateY(-11px);
          transform: translateY(-11px);
}

@media (max-width: 1500px) {
  .first_section::before {
    width: 60%;
  }
}
@media (max-width: 1200px) {
  .first_section__title {
    font-size: 48px;
  }
  .first_section__text {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (max-width: 990px) {
  .first_section .container {
    padding-top: 180px;
  }
  .first_section__content_wrap {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .first_section__title {
    font-size: 38px;
  }
  .first_section::before {
    width: 90%;
    right: 5%;
  }
}
@media (max-width: 480px) {
  .first_section__title {
    font-size: 32px;
  }
  .first_section .container {
    padding-top: 120px;
  }
  .first_section_dots_wrap {
    bottom: 30px;
  }
}
@media (max-width: 370px) {
  .first_section__title {
    font-size: 28px;
  }
}
/*# sourceMappingURL=style.css.map */