@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:...&display=swap);
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes anim {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
    transform: translate(0, -5px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes logoHourse {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-12deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(12deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.navigation-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .navigation-container {
    width: auto;
    border-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .navigation-container .container {
    padding: 0;
  }
}

.navi {
  padding: 0;
  background: transparent;
}
@media screen and (max-width: 991px) {
  .navi {
    display: flex;
    justify-content: flex-end;
  }
}
.navi .toggle-menu__name {
  display: none;
}
@media screen and (max-width: 991px) {
  .navi .toggle-menu__name {
    display: none;
  }
}
.navi ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  justify-content: flex-end;
  visibility: hidden;
  position: absolute;
  z-index: 99;
  flex: 1 1 auto;
  opacity: 0;
  background: #fff;
  right: 0;
  top: 100%;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px);
  transition: 0.3s;
}
.navi ul li {
  position: relative;
  display: flex;
}
.navi ul li a {
  font-size: 14px;
  padding: 1rem 1.3rem;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
  margin-top: -1px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-weight: 300;
  background: #1e1e1e;
}
.navi ul li ul {
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
  border: 1px solid #f6f6f6;
  position: absolute;
  transition: 0.3s;
  left: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
}
@media screen and (max-width: 991px) {
  .navi ul li ul {
    display: none;
  }
}
.navi ul li ul li a {
  display: block;
  color: #939292;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
}
.navi ul li ul li a:hover {
  color: #374463;
  text-decoration: none;
}
.navi ul li.current-menu-item > a {
  background: #161616;
  color: #fff;
}
.navi ul li:hover > a {
  background: #1e1e1e;
  color: #fff;
}
.navi ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.navi ul li:first-child a {
  padding: 1rem 2.2rem;
}
.navi .toggle-menu {
  font-weight: 500;
  background: #ffffff;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: center;
  height: 50px;
  padding: 5px;
  margin: 0;
  align-items: center;
  height: 100%;
  width: 70px;
  display: flex;
  justify-content: center;
}
.navi .toggle-menu:focus {
  outline: none;
}
.navi .toggle-menu__name {
  margin-left: 0.5rem;
  font-weight: bold;
}
.navi .toggle-menu .lines {
  width: 34px;
  height: 3px;
  background: #fff;
  display: inline-block;
  margin: 0;
  top: 0;
  position: relative;
  transition: 0.3s;
  height: 4px;
  background: #161616;
}
.navi .toggle-menu .lines:before, .navi .toggle-menu .lines:after {
  width: 34px;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  content: "";
  transform-origin: 4px center;
  transition: 0.3s;
  height: 4px;
  background: #161616;
}
.navi .toggle-menu .lines:before {
  top: 9px;
}
@media screen and (max-width: 991px) {
  .navi .toggle-menu .lines:before {
    top: 11px;
  }
}
.navi .toggle-menu .lines:after {
  top: -9px;
}
@media screen and (max-width: 991px) {
  .navi .toggle-menu .lines:after {
    top: -11px;
  }
}
.navi.active .toggle-menu {
  transition: none;
}
.navi.active .toggle-menu .lines {
  background: transparent;
}
.navi.active .toggle-menu .lines:before, .navi.active .toggle-menu .lines:after {
  transform-origin: 50% 50%;
  top: 0;
}
.navi.active .toggle-menu .lines:before {
  transform: rotate3d(0, 0, 1, 45deg);
}
.navi.active .toggle-menu .lines:after {
  transform: rotate3d(0, 0, 1, -45deg);
}
.navi.active ul {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.heading-light {
  color: #374463;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.post {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 300;
  color: #4f5152;
  margin-bottom: 1.25rem;
}
.post strong,
.post b {
  font-weight: bold;
}
.post p {
  margin-bottom: 15px;
}
.post .wp-block-gallery ul {
  opacity: 1;
}
.post h1,
.post h2,
.post h3,
.post h4 {
  opacity: 1;
  line-height: 1.4;
  font-weight: bold;
  text-align: left;
  color: #374463;
}
.post h1 {
  font-size: 28px;
  margin: 0 0 25px 0;
}
.post h2 {
  font-size: 24px;
  margin: 0 0 25px 0;
}
.post h3 {
  font-size: 20px;
  margin: 0 0 20px 0;
}
.post a:not(.btn) {
  color: #374463;
  text-decoration: underline;
}
.post a:not(.btn):hover {
  text-decoration: none;
}
.post ul {
  padding-left: 17px;
}
.post ol {
  display: flex;
  flex-wrap: wrap;
  opacity: 1;
  margin-bottom: 30px;
}
.post ol li {
  flex: 0 0 calc(50% - 60px);
  margin: 0 120px 20px 0;
  min-height: 60px;
  padding: 0;
  font-size: 16px;
  color: #fff;
  text-align: left;
}
.post ol li:nth-child(2n+2) {
  margin-right: 0;
}
.post ol li:before {
  font-size: 44px;
  left: -60px;
  top: 3px;
}
.post table {
  width: 100%;
  border: 1px solid #9c9c9c;
  margin: 0 0 30px 0;
}
.post table td,
.post table th {
  border: 1px solid #9c9c9c;
  padding: 8px;
  vertical-align: top;
  text-align: left;
}

.post-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
  position: relative;
}
.post-list .post-item {
  margin: 0 1rem 2rem 1rem;
  flex: 0 0 calc(33.333% - 2rem);
}
.post-list .post-item__image {
  height: 180px;
  margin-bottom: 2rem;
}
.post-list .post-item__image img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
  height: 100%;
}
.post-list .post-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #374463;
}
.post-list .post-item p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 300;
}
.post-list .post-item .button-link i {
  margin-left: 0.5rem;
}
.post-list .post-item .post-date {
  color: #fff;
  opacity: 0.4;
  font-size: 13px;
}

.news-row .meta-post {
  margin-bottom: 1rem;
  color: #374463;
}

.me-artice_search {
  margin: 30px 0;
}
.me-artice_search .blog-information {
  display: none;
}
.me-artice_search .link-more {
  display: none;
}

.link-more {
  display: none;
}

.breadcrumb {
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  background: #fff;
  letter-spacing: 2px;
}
.breadcrumb span a {
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  color: #161616;
  padding: 5px;
}
.breadcrumb span .post {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.4;
  font-weight: 300;
  color: #161616;
  padding: 5px;
  letter-spacing: 2px;
}
.breadcrumb span span {
  margin: 0 3px;
}

.page-top {
  background: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 2rem;
}
.page-top__inner {
  display: flex;
  justify-content: space-between;
}
.page-top__title {
  font-size: 1.25rem;
  margin: 0;
  line-height: 59px;
  color: #374463;
}
@media screen and (max-width: 991px) {
  .page-top__title {
    display: none;
  }
}
.page-top .breadcrumbs {
  color: #adadad;
  font-size: 0.8rem;
  font-weight: 300;
  padding: 0;
}
.page-top .breadcrumbs a {
  color: #adadad;
  display: inline-block;
  font-size: 0.8rem;
}
.page-top .breadcrumbs a span {
  margin: 0;
}
.page-top .breadcrumbs a:hover {
  color: #374463;
  text-decoration: none;
}
.page-top .breadcrumbs > span {
  display: inline-block;
  line-height: 59px;
  position: relative;
  padding: 0 33px 0 10px;
}
.page-top .breadcrumbs > span:first-of-type {
  padding-left: 0;
}
.page-top .breadcrumbs > span:after {
  content: "";
  background: url(../images/breadcrumb-separator.png) no-repeat;
  width: 18px;
  height: 59px;
  position: absolute;
  right: 0;
}
.page-top .breadcrumbs > span i {
  margin-right: 3px;
}
.page-top .breadcrumbs > span .current-item {
  color: #374463;
  font-size: 0.8rem;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

.form-consult .form-group .form-control {
  background: #fff;
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  font-size: 17px;
  padding: 6px 15px;
  height: auto;
}
.form-consult .form-group .form-control:focus {
  border-color: #374463;
  background: #fff;
  box-shadow: none;
}

.form-control {
  border-radius: 1px;
}

.form-consult .alert {
  top: 0px;
  right: 0px;
  position: relative;
}
.form-consult .wpcf7-form-control-wrap {
  display: block;
}
.form-consult .wpcf7-not-valid-tip {
  font-size: 13px;
  background: #e18b8b;
  color: #fff;
  padding: 5px;
}
.form-consult .form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-consult .form-group p {
  margin: 0;
}
.form-consult .form-group .wpcf7-not-valid-tip {
  position: absolute;
  z-index: 10;
  top: 30px;
  right: -1px;
}
.form-consult .form-group .control-label {
  font-weight: 600;
  line-height: 1;
  color: #000;
  padding-top: 7px;
  text-align: left;
}
.form-consult .form-group .control-label .req {
  color: #f38b95;
}
.form-consult .form-group .form-control {
  transition: 0.3s;
  height: 42px;
}
.form-consult .form-group .form-control.has-error {
  border-color: #a00808 !important;
}
.form-consult .form-group .form-control:focus {
  background: rgb(249.9, 249.9, 249.9);
}
.form-consult .form-group .form-icon-input {
  position: relative;
  border: 1px solid #000;
}
.form-consult .form-group .form-icon-input .form-control {
  border: none;
  padding-left: 55px;
  height: 40px;
}
.form-consult .form-group .form-icon-input .form-control.date-picker {
  padding: 3px 35px 3px 10px;
  padding-right: 35px;
  border: 1px solid #222;
  border-radius: 0;
  font-size: 14px;
  position: relative;
  z-index: 5;
  background: none;
}
.form-consult .form-group .form-icon-input .form-control.date-picker:focus {
  border-color: #8c8c8c;
  background: none;
}
.form-consult .form-group .form-icon-input .form-control.date-picker:focus + .icon {
  border-color: #8c8c8c;
}
.form-consult .form-group .form-icon-input .icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  height: 100%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-consult .form-group textarea.form-control {
  height: 70px;
}
.form-consult div.wpcf7-response-output {
  font-size: 13px;
  margin: 10px 0;
  flex: 0 0 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.radio {
  margin: 0 0 5px 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.radio label.lbl {
  font-size: 15px;
  padding-left: 40px;
  flex: 1 0 210px;
}
.radio label.lbl:before {
  content: "";
  width: 23px;
  height: 23px;
  border: 1px solid #d9d9d9;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  left: 0;
  background: #fff;
  z-index: 1;
  transition: 0.3s;
}
.radio label.lbl:after {
  content: "";
  width: 17px;
  height: 17px;
  border: 1px solid #e3e3e3;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  left: 3px;
  background: #374463;
  z-index: 2;
  transition: 0.3s;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
}
.radio:hover:before {
  border-color: #374463;
}
.radio input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}
.radio input[type=radio]:checked ~ .lbl:after {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.radio .form-control {
  display: inline-block;
  margin: 0 0 0 25px;
  padding: 5px 10px;
  max-width: 300px;
  color: #000;
  font-size: 14px;
  line-height: 1;
  border-radius: 0;
  border: 1px solid #000;
}
.radio textarea {
  padding-left: 8px !important;
}

.checkbox {
  margin: 0 0 5px 0;
}
.checkbox label {
  padding-left: 55px;
  min-height: 31px;
  white-space: normal;
  cursor: pointer;
  font-size: 14px;
}
.checkbox label span {
  min-height: 31px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.checkbox .txt {
  position: relative;
  line-height: 1;
}
.checkbox .txt a {
  text-decoration: underline;
}
.checkbox .txt a:hover {
  text-decoration: none;
}
.checkbox .txt:before {
  content: "";
  width: 26px;
  height: 26px;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  margin-top: -13px;
  left: 5px;
  z-index: 1;
  transition: 0.3s;
}
.checkbox .txt:after {
  content: "";
  width: 18px;
  height: 8px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  left: 10px;
  z-index: 2;
  transition: 0.3s;
  transform: rotate(-55deg) scale(0);
  opacity: 0;
  visibility: hidden;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox]:checked ~ .txt:after {
  transform: rotate(-55deg) scale(1);
  opacity: 1;
  visibility: visible;
}
span.wpcf7-list-item {
  display: block;
  margin: 0 0 5px 0;
}
span.wpcf7-list-item label {
  padding-left: 45px;
  min-height: 31px;
  white-space: normal;
  cursor: default;
  font-size: 14px;
}
span.wpcf7-list-item label .wpcf7-list-item-label {
  min-height: 31px;
  font-size: 16px;
  line-height: 1.1;
  position: relative;
}
span.wpcf7-list-item label .wpcf7-list-item-label a {
  margin-right: 5px;
}
span.wpcf7-list-item label .wpcf7-list-item-label:before {
  content: "";
  width: 26px;
  height: 26px;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  margin-top: -13px;
  left: -45px;
  z-index: 1;
  transition: 0.3s;
  cursor: pointer;
}
span.wpcf7-list-item label .wpcf7-list-item-label:after {
  content: "";
  width: 18px;
  height: 8px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  left: -40px;
  z-index: 2;
  transition: 0.3s;
  transform: rotate(-55deg) scale(0);
  opacity: 0;
  visibility: hidden;
}
span.wpcf7-list-item label input[type=checkbox] {
  visibility: hidden;
  opacity: 0;
  position: absolute;
}
span.wpcf7-list-item label input[type=checkbox]:checked ~ .wpcf7-list-item-label:after {
  transform: rotate(-55deg) scale(1);
  opacity: 1;
  visibility: visible;
}

.form-consult {
  border-radius: 4px;
  background-color: #1a1a1a;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form-consult .form-body {
  position: relative;
  padding: 14px 20px;
}
.form-consult .form-body .form-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: none;
  color: #374463;
  font-weight: 400;
  transition: 0.3s;
  display: none;
}
.form-consult .form-body .form-close:hover {
  transform: scale(1.1);
}
.form-consult__text {
  color: #f9f9f9;
  margin: 0 0 20px 0;
}
.form-consult__text h3 {
  font-size: 20px;
  margin: 0;
}
.form-consult__text p {
  font-size: 15px;
  margin: 0;
}
.form-consult__text .old-price {
  display: inline-block;
  position: relative;
  margin: 0 5px 0 0;
}
.form-consult__text .old-price:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  border-bottom: 2px solid #c03c3c;
  pointer-events: none;
  transform: rotate(-8deg);
}
.form-consult__row {
  display: flex;
  margin: 0 -8px;
}
.form-consult__row .form-inputs {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
}
.form-consult__row .form-group {
  flex: 0 0 200px;
  margin: 0 8px;
}
.form-consult__row .form-group input {
  width: 100%;
  padding: 10px;
  height: 44px;
  border-radius: 4px;
  border: none;
  background-color: #ffffff;
  font-size: 13px;
  color: #202020;
}
.form-consult__row .form-baton button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  margin: 0 15px 15px;
  border-radius: 50%;
  box-shadow: 0 14px 16px 0 rgba(0, 0, 0, 0.25);
  border: none;
  background: #374463;
  color: #e7e7e7;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 0 8px;
}
.form-consult__row .form-baton button:hover {
  background: rgb(36.7857142857, 45.4805194805, 66.2142857143);
}

@media screen and (max-width: 767px) {
  .form-horizontal .form-group .control-label {
    font-size: 14px;
  }
  .form-horizontal .form-group .help {
    font-size: 14px;
  }
  .form-horizontal .form-group .info {
    font-size: 12px;
  }
  .form-horizontal .form-group .checkbox {
    margin: 0 0 5px 0;
  }
  .form-horizontal .form-group .checkbox label {
    font-size: 14px;
  }
  .form-horizontal .form-group .form-control {
    font-size: 15px;
    height: 32px;
    padding: 3px 10px;
  }
  .form-horizontal .form-bot .btn {
    width: 180px;
    height: 40px;
    font-size: 14px;
  }
  .form-consult {
    width: 100%;
  }
  .form-consult__row {
    margin: 0;
  }
  .form-consult .form-group {
    flex: 0 0 100%;
    margin: 0 0 10px 0;
  }
  .form-consult .form-group:last-of-type {
    margin: 0;
  }
  .form-consult .form-baton {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .form-consult .form-baton button {
    margin: 0 0 0 16px;
  }
}
.map-form {
  background: linear-gradient(90deg, #374463 0%, rgb(36.7857142857, 45.4805194805, 66.2142857143) 100%);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 16px;
  color: #fff;
  padding: 20px 32px;
  width: 420px;
}
@media screen and (max-width: 766px) {
  .map-form {
    padding: 15px;
  }
}
.map-form__heading {
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
  margin-bottom: 30px;
}
.map-form form {
  padding: 0;
}
.map-form form textarea,
.map-form form input[type=text],
.map-form form input[type=tel],
.map-form form input[type=email] {
  width: 100%;
  border-radius: 24px;
  background: hsla(0, 0%, 100%, 0.93);
  outline: none;
  transition: 0.3s;
}
.map-form form textarea:focus,
.map-form form input[type=text]:focus,
.map-form form input[type=tel]:focus,
.map-form form input[type=email]:focus {
  background: rgb(229.5, 229.5, 229.5);
}
.map-form form input[type=text],
.map-form form input[type=tel],
.map-form form input[type=email] {
  height: 48px;
  padding: 0 15px 0 25px;
}
.map-form form textarea {
  padding: 15px 15px 15px 25px;
  resize: none;
  height: 120px;
}
.map-form form .form-baton {
  display: flex;
  justify-content: flex-end;
}

.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  display: none;
}
.modal-mask.shown {
  display: table;
}
.modal-mask .consultation-form .col-baton {
  text-align: right;
}
.modal-mask .consultation-form .col-baton input[type=submit] {
  max-width: 200px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #374463;
  color: #374463;
  transition: 0.3s;
  padding: 0 15px;
}
.modal-mask .consultation-form .col-baton input[type=submit]:hover {
  background: #374463;
  color: #fff;
}

.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.modal-container {
  width: 60%;
  margin: 0px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  transition: all 0.3s ease;
  font-family: "Roboto", sans-serif;
  position: relative;
}
@media screen and (max-width: 991px) {
  .modal-container {
    width: 90%;
    padding: 20px 5px;
  }
}

.modal-header {
  border: 0;
}
.modal-header h3 {
  float: left;
  margin-top: 0;
  color: #374463;
  width: 80%;
  font-weight: 300;
  font-size: 27px;
}
@media screen and (max-width: 991px) {
  .modal-header h3 {
    font-size: 24px;
    width: auto;
  }
}

.modal-body {
  margin: 0;
  padding: 0 10px;
}

.modal-default-button {
  float: right;
}

.modal-enter,
.modal-leave {
  opacity: 0;
}
.modal-enter .modal-container,
.modal-leave .modal-container {
  transform: scale(1.1);
}

.close-modal-component {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}

.consultation form input {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 24px;
  padding: 0 15px 0 25px;
  background: rgba(219, 222, 222, 0.88);
  margin-bottom: 20px;
}
.consultation form textarea {
  width: 100%;
  max-width: 100%;
  height: 148px;
  max-height: 148px;
  border: none;
  border-radius: 24px;
  padding: 15px 15px 15px 25px;
  background: rgba(219, 222, 222, 0.88);
  margin-bottom: 20px;
  resize: none;
}
.consultation form button {
  width: 170px;
  line-height: 48px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 24px;
}

.error input:focus,
.error select:focus,
.error textarea:focus,
.error button:focus {
  box-shadow: 0 0 3px #CC0000;
}

.required {
  color: #CC0000;
}

.success input:focus,
.success select:focus,
.success textarea:focus,
.success button:focus {
  box-shadow: 0 0 5px #45903a;
}

.wpcf7-form {
  text-align: center;
}
.wpcf7-form .control-label {
  font-weight: 600;
  font-size: 18px;
}
.wpcf7-form p label {
  display: block;
  color: #fff;
}
.wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 15px;
}
.wpcf7-form-control-wrap .wpcf7-form-control {
  width: 50%;
  background: #fff;
  border: 1px solid rgb(197, 197, 197);
  border: 1px solid #c5c5c5;
  padding: 13px;
  border-radius: 8px;
}
@media screen and (max-width: 991px) {
  .wpcf7-form-control-wrap .wpcf7-form-control {
    width: 100%;
  }
}
.wpcf7-form-control-wrap textarea {
  height: 140px;
  resize: none;
}
.wpcf7-form .btn-submit .ajax-loader {
  float: left;
}
.wpcf7-form .btn-submit .wpcf7-submit {
  text-transform: uppercase;
  background: #374463;
  color: #fff;
  font-size: 14px;
  border: none;
  padding: 8px 30px;
}
.wpcf7-form .btn-submit .wpcf7-submit:hover {
  background: #374463;
}
.wpcf7-form .btn-submit .wpcf7-spinner {
  display: none;
}
.wpcf7-form .wpcf7-response-output {
  display: none;
}

.pagination {
  justify-content: center;
}

.wp-pagenavi {
  text-align: center;
  margin: 30px 0;
}
.wp-pagenavi .pages,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .first,
.wp-pagenavi .last {
  display: none;
}
.wp-pagenavi span,
.wp-pagenavi a {
  display: inline-block;
  border: none;
  border-radius: 50%;
}
.wp-pagenavi span.current {
  background: #e8e8e8;
  color: #424242;
}
.wp-pagenavi a {
  color: rgba(255, 255, 255, 0.5);
  background: rgba(85, 85, 85, 0.5);
}
.wp-pagenavi a.last, .wp-pagenavi a.first {
  border: none;
}
.wp-pagenavi a.last:hover, .wp-pagenavi a.first:hover {
  text-decoration: underline;
}
.wp-pagenavi a:hover {
  background: rgb(85, 85, 85);
  text-decoration: none;
}
.wp-pagenavi .page,
.wp-pagenavi .current {
  margin: 0 3px;
  padding: 4px 5px;
  width: 34px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi .pages {
    display: none;
  }
}
.calc {
  /* Стилізація повзунка (кнопки для переміщення) */
  /* Стилізація для Firefox */
  /* Стилізація активного стану */
  /* Стилізація для Firefox треку */
}
.calc .usr-value {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .calc .usr-value {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.calc .usr-value #calc-value-1 {
  margin: 0 15px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 24px;
  width: 100px;
  font-weight: bold;
  color: #374463;
}
.calc .usr-value label {
  display: flex;
  margin: 0 30px 0 0;
  color: #374463;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  .calc .usr-value label {
    font-size: 18px;
  }
}
.calc .usr-value input {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .calc .usr-value input {
    width: 100%;
    order: 1;
    margin: 20px 20px 0;
  }
}
.calc .usr-value .value {
  display: flex;
  align-items: center;
  color: #374463;
  font-size: 22px;
  font-weight: bold;
}
.calc .usr-value .value span {
  font-size: 18px;
  order: 2;
}
.calc .result {
  display: flex;
  background: #a3c0eb;
  padding: 30px;
  border-radius: 20px;
  min-height: 100px;
  margin: 30px 0;
  flex-direction: column;
}
.calc .result .item {
  display: flex;
  justify-content: space-between;
  font-size: 25px;
  color: #374463;
  margin: 20px 0;
  font-weight: bold;
  border-bottom: 1px dotted #fff;
}
.calc .result .item .res {
  display: flex;
}
.calc .result .item .res span {
  margin-left: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.calc .result .item span {
  display: flex;
  font-size: 18px;
}
.calc input[type=range] {
  -webkit-appearance: none; /* Видалення стандартного стилю для WebKit браузерів */
  height: 5px;
  background: #374463;
  border-radius: 5px;
  outline: none;
}
.calc input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #ffcc00;
  border-radius: 50%;
  cursor: pointer;
}
.calc input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #fff201;
  border-radius: 50%;
  cursor: pointer;
}
.calc input[type=range]:active::-webkit-slider-thumb {
  background: #fc3200;
}
.calc input[type=range]::-moz-range-track {
  background: #374463;
  border-radius: 5px;
  height: 10px;
}

.calc-contact-form {
  margin-bottom: 100px;
}
.calc-contact-form .v_btn-submit .wpcf7-submit {
  background: #ccc;
  padding: 15px 30px;
  border-radius: 10px;
  border: 0;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
}

.category-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
.category-list .cat-item {
  display: flex;
  width: 25%;
}
@media screen and (max-width: 991px) {
  .category-list .cat-item {
    width: 100%;
  }
}
.category-list .cat-item a {
  padding: 10px 30px;
  margin: 5px;
  background: #e9ecef;
  text-decoration: none;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 3px;
  color: #4e69a9;
}
@media screen and (max-width: 991px) {
  .category-list .cat-item a {
    width: 100%;
  }
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  margin: 50px 20px;
}
.product-list .product-item {
  display: flex;
  margin: 40px 0;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .product-list .product-item {
    flex-direction: column;
  }
}
.product-list .product-item .post-image {
  display: flex;
}
.product-list .product-item .post-image a {
  display: flex;
  width: 300px;
}
@media screen and (max-width: 991px) {
  .product-list .product-item .post-image a {
    width: 100%;
  }
}
.product-list .product-item .post-image a img {
  display: flex;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.product-list .product-item .blog-container {
  display: flex;
  width: 100%;
  margin: 0 0 0 20px;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .product-list .product-item .blog-container {
    margin: 20px 0 0 0;
  }
}
.product-list .product-item .blog-container a {
  text-decoration: none;
}
.product-list .product-item .blog-container a .post-title {
  font-size: 20px;
  color: #3b3b3b;
  margin: 0;
}
.product-list .product-item .blog-container .post-description {
  margin: 20px 0;
}
.product-list .product-item .blog-container .read_more {
  padding: 7px 30px;
  background: #ff0000;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  width: fit-content;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #4f5152;
  font-size: 14px;
  line-height: 1.4;
  overflow-x: hidden;
  font-weight: 300;
}
body .body-overlay {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 0.3s ease 0s;
  width: 100%;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
body.menu-opened .body-overlay {
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1800;
}

.container {
  max-width: 1200px;
  width: 100%;
}

#main {
  min-height: calc(100vh - 406px);
  padding: 2rem 0 0;
}

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

a {
  outline: none !important;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none !important;
}

li {
  list-style: none;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.bg-main {
  background: #fff;
  padding: 30px 0 60px 0;
}
@media screen and (max-width: 766px) {
  .bg-main {
    padding: 20px 0 30px 0;
  }
}

.section-heading {
  color: #374463;
  margin: 1.25rem 0 2.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-heading h3 {
  text-align: center;
  font-weight: 300;
  font-size: 1.75rem;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (min-width: 767px) and (max-width: 991px) {
  .section-heading h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 766px) {
  .section-heading h3 {
    font-size: 25px;
  }
}
.section-heading p {
  font-size: 18px;
  margin-bottom: 8px;
}
@media screen and (min-width: 767px) and (max-width: 991px) {
  .section-heading p {
    font-size: 16px;
  }
}
@media screen and (max-width: 766px) {
  .section-heading p {
    font-size: 14px;
  }
}
.section-heading a {
  color: #374463;
  font-weight: bold;
}
.section-heading a i {
  margin-left: 0.5rem;
}

.section-content {
  display: flex;
  flex-direction: column;
  padding: 2rem 0 4rem 0;
}

.page-title {
  font-size: 1.75rem;
  color: #161616;
  margin: 0 0 1.25rem 0;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  letter-spacing: 4px;
  font-weight: 300;
}
@media screen and (max-width: 766px) {
  .page-title {
    font-size: 1.5rem;
  }
}

.page-text {
  font-size: 1.125rem;
  color: #4f5152;
  line-height: 1.8;
  margin: 2rem 0;
  font-weight: 300;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 766px) {
  .page-text {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
  }
}

.heading__border {
  flex: 0 0 340px;
  position: relative;
  max-width: 340px;
  border-top: 2px solid #d0d0d0;
}
.heading__border:before, .heading__border:after {
  content: "";
  display: block;
  width: 10px;
  height: 8px;
  background: #d0d0d0;
  position: absolute;
  top: -5px;
  left: 0;
}
.heading__border:after {
  left: 28px;
}
.heading__border.rt:before {
  right: 0;
  left: auto;
}
.heading__border.rt:after {
  left: auto;
  right: 28px;
}

input,
textarea {
  outline: none;
}

button {
  outline: none !important;
  box-shadow: none !important;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 766px) {
  .services-list {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 -10px;
    padding: 0 10px;
  }
}
.services-list .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: box-shadow 0.3s ease;
  text-decoration: none;
}
@media screen and (max-width: 766px) {
  .services-list .service-item {
    flex: 1 1 100%; /* на всю ширину */
  }
}
.services-list .service-item .service-item-image {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.services-list .service-item .service-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.services-list .service-item h2 {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  color: #161616;
  font-weight: 300;
  text-align: center;
}

header {
  position: relative;
  padding: 0 50px;
  border-bottom: 1px solid #161616;
}
@media screen and (max-width: 991px) {
  header {
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 20px;
  }
}
header .header-main {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  header .header-main {
    height: 70px;
  }
}
header .header-main .logo-container {
  display: flex;
}
header .header-main .logo-container a {
  display: flex;
  max-width: 300px;
  min-width: 170px;
}
header .header-main .logo-container a img {
  height: 100%;
}
header .header-main .header-countainer-r {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: end;
  align-items: center;
}
header .header-main .header-countainer-r .header-contacts {
  display: flex;
  flex-direction: column;
}
header .header-main .header-countainer-r .header-contacts a {
  margin-right: 20px;
  font-size: 15px;
  color: #161616;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  header .header-main .header-countainer-r .header-contacts a {
    margin-right: 0px;
  }
}

.footer {
  color: #4f5152;
  padding: 4rem 0;
  margin-top: 4rem;
  border-top: 1px solid #161616;
}
.footer a {
  color: #b3b3b3;
}
.footer a:hover {
  text-decoration: none;
}
.footer .logo-footer {
  margin: 10px 0 40px;
  max-width: 300px;
}
@media screen and (max-width: 991px) {
  .footer .logo-footer {
    margin-bottom: 2rem;
  }
}
.footer .logo-footer img {
  height: auto;
}
.footer .heading-footer {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2e2e2e;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer .footer-col {
  margin: 0px 0 40px;
}
.footer .footer-address {
  font-size: 1.2rem;
  color: #4f5152;
}
.footer .footer-email {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 1rem;
}
.footer .soc-links {
  display: flex;
  flex-direction: column;
}
.footer .soc-links a {
  font-size: 1rem;
  margin: 10px 4px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #4f5152;
}
.footer .soc-links a i {
  font-size: 35px;
}
.footer .soc-links a span {
  margin-left: 7px;
}
.footer .copyright {
  margin: 1.5rem 0 0;
  font-size: 1rem;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-contacts li a {
  font-size: 1.2rem;
  color: #4f5152;
}
.footer .footer-menu {
  font-weight: 300;
  font: 0.9rem "Roboto Condensed", sans-serif;
  line-height: 1.2;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  .footer .footer-menu {
    display: none;
  }
}
.footer .footer-menu li {
  padding: 0 1rem;
  border-right: 1px solid #888888;
}
.footer .footer-menu li:last-of-type {
  padding-right: 0;
  border: none;
}
.footer .footer-menu li a {
  font-weight: 300;
}

.scroll-top {
  position: fixed;
  z-index: 999;
  right: 10px;
  bottom: 40px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #374463;
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: translateX(-100%);
}
.scroll-top i {
  color: #fff;
  transition: 0.3s;
}
.scroll-top:hover {
  background: #374463;
  text-decoration: none;
  opacity: 0.8;
}
.scroll-top.shown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.side_bar_service ul {
  list-style: none;
  padding: 0 15px;
}
.side_bar_service ul li {
  margin: 4px 0;
}
.side_bar_service ul li a {
  color: #374463;
  font-weight: 600;
  border: 1px solid #c7cedd;
  border-radius: 5px;
  padding: 10px 10px;
  display: flex;
  text-decoration: none;
  transition: 0.3s ease;
}
.side_bar_service ul li a:hover {
  background: #374463;
  color: #fff;
}

.side_bar_blog {
  width: 100%;
}
.side_bar_blog ul {
  list-style: none;
  padding: 0 15px;
}
.side_bar_blog ul li {
  margin: 4px 0;
}
.side_bar_blog ul li a {
  color: #374463;
  font-weight: 600;
  border: 1px solid #c7cedd;
  border-radius: 5px;
  padding: 10px 10px;
  display: flex;
  text-decoration: none;
  transition: 0.3s ease;
}
.side_bar_blog ul li a:hover {
  background: #374463;
  color: #fff;
}

body.modal-open,
.modal-open .navbar-fixed-top,
.modal-open .navbar-fixed-bottom {
  padding-right: 17px;
}

.modal-scrollable {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
}

.modal-dialog {
  width: 100%;
  max-width: 430px;
  margin: 10% auto;
}
.modal-content {
  border-radius: 0;
  padding: 25px 20px;
}
.modal-content .modal-header {
  color: #374463;
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  display: block;
  padding: 0;
  border: none;
  margin: 0 0 20px 0;
}
.modal-content .modal-header p {
  font-size: 32px;
  line-height: 1;
  margin: 0 0 10px 0;
}
.modal-content .modal-close {
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
  display: block;
  text-align: center;
  font-size: 34px;
  line-height: 34px;
  width: 34px;
  color: #9b9da5 !important;
}
.modal-content .modal-close:hover {
  color: #374463 !important;
}
.modal-content .form-horizontal {
  max-width: 360px;
  margin: 0 auto 15px auto;
}
.modal-content .form-horizontal .form-baton .btn {
  display: block;
  width: 100%;
  max-width: 240px;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  body.modal-open,
  .modal-open .navbar-fixed-top,
  .modal-open .navbar-fixed-bottom {
    padding-right: 0;
  }
  .modal-dialog {
    max-width: 90% !important;
  }
  .modal-content {
    padding: 20px;
  }
  .modal-content .form-top {
    font-size: 22px;
    line-height: 29px;
  }
  .modal-content .form-name {
    font-size: 18px;
    line-height: 24px;
  }
}
#wp-admin-bar-root-default {
  display: block !important;
}

.slider {
  position: relative;
}
.slider .slider-text {
  position: absolute;
  display: flex;
  width: 50%;
  height: 100%;
  justify-content: center;
  align-items: center;
  left: 0;
  z-index: 10;
  color: #fff;
  font-size: 4rem;
  font-weight: 500;
  color: #fff;
}
.slider .slider-text span {
  text-align: center;
}
.slider .cont-form {
  position: absolute;
  display: flex;
  width: 35%;
  height: 100%;
  justify-content: center;
  align-items: center;
  right: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.25);
  transition: 0.5s;
}
.slider .cont-form:hover {
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 766px) {
  .slider .cont-form {
    width: 70%;
    margin: 0 auto;
  }
}
.slider .cont-form .wpcf7 {
  width: 100%;
}
.slider .cont-form .wpcf7 .wpcf7-form-control {
  background: rgba(255, 255, 255, 0.8);
  width: 70%;
  transition: 0.5s;
}
.slider .cont-form .wpcf7 .wpcf7-form-control:hover {
  background: #ffffff;
}
.slider .cont-form .wpcf7 .v_btn-submit {
  display: flex;
  width: 100%;
  justify-content: center;
}
.slider .cont-form .wpcf7 .v_btn-submit input {
  border-radius: 7px;
  width: 250px;
}
.slider .cont-form .wpcf7 .v_btn-submit span {
  display: none;
}

.home_img1 {
  position: relative;
  display: flex;
  z-index: 1;
}
.home_img1 img {
  z-index: 5;
}
.home_img1::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border: 2px solid #333;
  z-index: 4;
}

.section-service .sct-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 100px;
}
@media screen and (max-width: 766px) {
  .section-service .sct-container {
    margin: 0;
  }
}
.section-service .sct-container .sct-image {
  width: 50%;
  box-sizing: border-box;
  order: 1;
  padding: 20px;
}
@media screen and (max-width: 766px) {
  .section-service .sct-container .sct-image {
    width: 100%;
  }
}
.section-service .sct-container .sct-content {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  width: 50%;
  order: 2;
  padding: 20px;
}
@media screen and (max-width: 766px) {
  .section-service .sct-container .sct-content {
    width: 100%;
  }
}
.section-service .sct-container .sct-content .sct-title {
  font-size: 1.5rem;
  color: #161616;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  order: 1;
}
.section-service .sct-container .sct-content .sct-descr {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  order: 2;
}
.section-service .sct-container .sct-content .sct-images {
  display: flex;
  flex-direction: column;
}
.section-service .sct-container .sct-content .sct-images .slick-dots {
  flex-direction: row;
  margin: 1rem 0 0 0;
}
.section-service .sct-container .sct-content .sct-images div {
  padding: 10px;
}
.section-service .sct-container .sct-content .bth-more {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  padding-top: 30px;
  order: 3;
}
@media screen and (max-width: 766px) {
  .section-service .sct-container .sct-content .bth-more {
    justify-content: center !important;
  }
}
.section-service .sct-container .sct-content .bth-more a {
  border: 2px solid #8a8a8c;
  background: 0;
  padding: 10px 20px;
  font-size: 0.8rem;
  color: #8a8a8c;
  text-transform: uppercase;
  font-weight: 400;
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
}
.section-service .sct-container .sct-content .bth-more:hover a {
  background: #8a8a8c;
  color: #fff;
  transition: 0.5s;
}
.section-service .sct-container .sct-content .info {
  margin: 0 0 20px;
}
.section-service .sct-container .sct-content .slick-track {
  display: flex;
  align-items: center;
}
.section-service .sct-container .sct-content .sct-images {
  display: flex;
  order: 3;
}
@media screen and (max-width: 766px) {
  .section-service .sct-container .sct-content .sct-images {
    order: 0;
    margin-bottom: 50px;
  }
}
.section-service .sct-container .sct-content .sct-images img {
  display: flex;
  /* height: 200px; */
  width: auto;
}

.section-service {
  padding: 20px 0;
  border-bottom: 5px solid #555;
}
@media screen and (max-width: 766px) {
  .section-service h2 {
    margin: 20px 0;
  }
}
.section-service .page-title {
  text-align: left;
}
@media screen and (max-width: 766px) {
  .section-service .page-title {
    text-align: center;
  }
}
.section-service ul {
  margin: 50px 0 50px 30px;
  display: flex;
  flex-direction: column;
  padding: 0;
}
@media screen and (max-width: 766px) {
  .section-service ul {
    margin: 0 0 30px;
  }
}
.section-service ul li {
  margin: 3px 0;
  display: flex;
}
@media screen and (max-width: 766px) {
  .section-service ul li {
    justify-content: center !important;
  }
}
.section-service ul li a {
  display: flex;
  list-style: none;
  padding: 0;
  font-size: 1.2rem;
  color: #8a8a8c;
  text-transform: uppercase;
  font-weight: 300;
}
@media screen and (max-width: 991px) {
  .section-service ul li a {
    justify-content: center !important;
    text-align: center;
  }
}

.section-portfolio .page-title {
  padding: 30px 0 10px;
  font-size: 1.75rem;
  color: #161616;
  margin: 0 0 1.25rem 0;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  letter-spacing: 4px;
}

.srvice-cattegory-7 .page-title {
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 766px) {
  .srvice-cattegory-7 .page-title {
    justify-content: center;
  }
}
.srvice-cattegory-7 ul {
  margin: 0 0 50px;
}
.srvice-cattegory-7 ul li {
  margin: 3px 0;
  display: flex;
  justify-content: end;
}
.srvice-cattegory-7 .bth-more {
  justify-content: end;
}

.srvice-cattegory-9 .page-title {
  text-align: center;
}
.srvice-cattegory-9 ul li {
  display: flex;
  justify-content: center;
}
.srvice-cattegory-9 .bth-more {
  display: flex;
  margin-left: 0;
  justify-content: center;
}
.srvice-cattegory-9 .info-l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 30px 0;
}
@media screen and (max-width: 766px) {
  .srvice-cattegory-9 .info-l {
    order: 2;
  }
}
@media screen and (max-width: 766px) {
  .srvice-cattegory-9 .info-r {
    order: 1;
  }
}

.section-about {
  position: relative;
  padding: 4rem 3rem;
}
.section-about .information .text {
  font-size: 1.125rem;
  color: #4f5152;
  line-height: 1.8;
  margin: 0 0 2rem 0;
  font-weight: 300;
}
.section-about .information .text .title {
  font-size: 1.75rem;
  color: #161616;
  margin: 0 0 1.25rem 0;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  letter-spacing: 4px;
}
.section-about .information .text .title:hover {
  text-decoration: none;
}

.section_video {
  display: flex;
  height: 550px;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 991px) {
  .section_video {
    height: 550px;
  }
}
@media screen and (max-width: 766px) {
  .section_video {
    height: 350px;
  }
}
.section_video video {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  filter: brightness(95%);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .section_video video {
    height: 100%;
    width: auto;
  }
}
.section_video video::-internal-media-controls {
  display: none;
}
.section_video video::-webkit-media-controls {
  display: none;
}
.section_video .v_content {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  z-index: 9;
}
@media screen and (max-width: 991px) {
  .section_video .v_content {
    flex-direction: column;
    justify-content: space-around;
  }
}
@media screen and (max-width: 991px) {
  .section_video .v_content .wpcf7-form-control-wrap .wpcf7-form-control {
    width: 85%;
  }
}
.section_video .v_content .v_title {
  width: 100%;
  display: flex;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  padding: 30px 0 0 30px;
  text-shadow: -2px 2px 3px rgba(10.879989624, 10.879989624, 10.879989624, 0.6);
  position: absolute;
  bottom: 4rem;
  font-weight: 500;
  letter-spacing: 3px;
}
@media screen and (max-width: 991px) {
  .section_video .v_content .v_title {
    font-size: 35px;
  }
}
.section_video .v_content .v_form {
  display: flex;
  align-items: center;
  width: 100%;
}
.section_video .v_content .v_form .wpcf7 {
  width: 100%;
}
.section_video .v_content .v_form .wpcf7 form p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section_video .v_content .v_form .wpcf7 form p .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 15px;
  width: 100%;
}
.section_video .v_content .v_form .wpcf7 form p .wpcf7-not-valid-tip {
  display: none;
}
.section_video .v_content .v_form .wpcf7 form p .name {
  text-align: center;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
}
.section_video .v_content .v_form .wpcf7 form p .name::-moz-placeholder {
  color: #c1c1c1;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.section_video .v_content .v_form .wpcf7 form p .name::placeholder {
  color: #c1c1c1;
  transition: 0.5s;
}
.section_video .v_content .v_form .wpcf7 form p .name:hover {
  background: rgba(255, 255, 255, 0.6);
}
.section_video .v_content .v_form .wpcf7 form p .name:hover::-moz-placeholder {
  color: #6e6e6e;
}
.section_video .v_content .v_form .wpcf7 form p .name:hover::placeholder {
  color: #6e6e6e;
}
.section_video .v_content .v_form .wpcf7 form p .telephone {
  text-align: center;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
}
.section_video .v_content .v_form .wpcf7 form p .telephone::-moz-placeholder {
  color: #c1c1c1;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.section_video .v_content .v_form .wpcf7 form p .telephone::placeholder {
  color: #c1c1c1;
  transition: 0.5s;
}
.section_video .v_content .v_form .wpcf7 form p .telephone:hover {
  background: rgba(255, 255, 255, 0.6);
}
.section_video .v_content .v_form .wpcf7 form p .telephone:hover::-moz-placeholder {
  color: #6e6e6e;
}
.section_video .v_content .v_form .wpcf7 form p .telephone:hover::placeholder {
  color: #6e6e6e;
}
.section_video .v_content .v_form .wpcf7 form p .wpcf7-not-valid {
  border: 1px solid #ffcc00;
}
.section_video .v_content .v_form .wpcf7 form p .wpcf7-not-valid::-moz-placeholder {
  color: #ffcc00;
}
.section_video .v_content .v_form .wpcf7 form p .wpcf7-not-valid::placeholder {
  color: #ffcc00;
}
.section_video .v_content .v_form .wpcf7 form p .v_btn-submit {
  position: relative;
}
.section_video .v_content .v_form .wpcf7 form p .v_btn-submit .wpcf7-submit {
  width: auto;
  display: flex;
  border: none;
  background: #ffcc00;
  border-radius: 40px;
  font-size: 15px;
  font-weight: bold;
  padding: 17px 50px 17px 40px;
}
.section_video .v_content .v_form .wpcf7 form p .v_btn-submit:before {
  content: "";
  position: absolute;
  top: 13px;
  right: -30px;
  width: 70px;
  height: 70px;
  border-radius: 4px;
  background: url(../images/btn-cont-pointer.png) no-repeat;
  background-size: 60px;
}
.section_video .v_content .v_form .wpcf7 form p .wpcf7-spinner {
  display: none;
}

.post-list {
  display: flex;
  margin: 0 -1rem;
}
.post-list .post-item {
  margin: 0 1rem 2rem 1rem;
  flex: 0 0 calc(33.333% - 2rem);
}
.post-list .post-item__image {
  height: 180px;
  margin-bottom: 2rem;
}
.post-list .post-item__image img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
  height: 100%;
}
.post-list .post-item .post-date {
  font-weight: bold;
  margin-bottom: 1rem;
  color: #f00000;
}
@media screen and (max-width: 991px) {
  .post-list .post-item .post-date {
    margin-bottom: 0.5rem;
  }
}
.post-list .post-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #374463;
}
.post-list .post-item p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 300;
}
.post-list .post-item .button-link i {
  margin-left: 0.5rem;
}

.contacts-main {
  margin-bottom: 30px;
  font-size: 18px;
}
.contacts-main h3 {
  text-align: center;
  font-weight: 300;
}
.contacts-main .cont-item {
  margin-top: 5px;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
}
.contacts-main .cont-item strong {
  margin-right: 5px;
}
.contacts-main .grafik {
  margin: 10px 0;
}
.contacts-main img {
  display: block;
  margin-bottom: 15px;
}
.contacts-main p {
  margin-bottom: 15px;
}
.contacts-main a {
  color: #374463;
  text-decoration: none;
}
.contacts-main a:hover {
  text-decoration: none;
}
.contacts-form-title {
  font-size: 1.25rem;
  margin: 0.5rem 0 1.25rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e4e2;
  color: #374463;
}

.list-service {
  margin: 20px 0;
}
.list-service .more-link {
  display: none;
}

.v_btn-submit input {
  border: 2px solid #8a8a8c;
  background: 0;
  padding: 10px 20px;
  font-size: 0.8rem;
  color: #8a8a8c;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 50px;
}
.v_btn-submit input:hover {
  background: #8a8a8c;
  color: #fff;
  transition: 0.5s;
}
.v_btn-submit input:focus {
  background: #8a8a8c;
  color: #fff;
  transition: 0.5s;
}

.vendor-container {
  background: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}

.vendors {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.vendor-item {
  flex: 0 0 20%;
  margin: 0 -1px -1px 0;
  border: 1px solid #e0e0e0;
  padding: 1.25rem 2rem;
  text-align: center;
  transition: 0.3s;
  background: -webkit-linear-gradient(top, rgba(22, 61, 137, 0.99), rgb(126, 141, 187));
}
.vendor-item.hidden {
  display: none;
}
@media screen and (max-width: 991px) {
  .vendor-item {
    flex: 0 0 33.333%;
  }
}
@media screen and (max-width: 766px) {
  .vendor-item {
    flex: 0 0 50%;
    padding: 0.5rem 0.75rem;
  }
}
.vendor-item a {
  display: block;
  color: #fff;
}
.vendor-item__image {
  height: 90px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 766px) {
  .vendor-item__image {
    flex: 0 0 50%;
    padding: 0 0.75rem;
  }
}
.vendor-item__image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.vendor-item__name {
  font: 1.5rem "Roboto Condensed", sans-serif;
  font-weight: 700;
  display: none;
}
.vendor-item:hover {
  background: -webkit-linear-gradient(top, rgba(100, 132, 195, 0.99), rgb(126, 141, 187));
}
.vendor-item:hover a {
  color: #fff;
  text-decoration: none;
}

.me-panel {
  color: #fff;
  border-radius: 6px;
  background: #374463;
  position: relative;
  padding: 28px 30px 29px;
  box-shadow: 0px 3px 0px 0px #f7f7f7;
  margin-bottom: 28px;
  position: sticky;
  top: 30px;
}
.me-panel:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 30px 30px 0;
  border-style: solid;
  border-color: #fff #fff #374463 #374463;
  width: 0;
  border-bottom-left-radius: 5px;
}
.me-panel h3 {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 1rem 0;
}
.me-panel h3 i {
  margin-right: 0.5rem;
}
.me-panel a {
  color: #fff;
}
.me-panel ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1rem;
}
.me-panel ul li {
  margin-bottom: 0.5rem;
  padding-left: 0.75rem;
}
.me-panel ul li::marker {
  content: "\f56d";
  font-size: 1rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  color: #fff;
  margin-right: 0.5rem;
}
.me-panel ul li a {
  display: block;
  color: #fff;
}

.services-list-contianer {
  list-style: none;
  margin: 0 0 4rem 0;
  padding: 0;
}
.services-list-contianer .services-inner {
  padding-top: 3rem;
  margin-bottom: 2rem;
}
.services-list-contianer .services-inner:first-of-type {
  padding-top: 0;
}
.services-list-contianer .services-list {
  position: relative;
}
.services-list-contianer .services-list:before {
  content: "";
  background: #e4e4e4;
  height: 100%;
  width: 3px;
  position: absolute;
  left: 100px;
}
@media screen and (max-width: 766px) {
  .services-list-contianer .services-list:before {
    left: 67px;
  }
}
.services-list-contianer .services-list:after {
  content: "";
  background: #e4e4e4;
  height: 17px;
  width: 17px;
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 93px;
}
@media screen and (max-width: 766px) {
  .services-list-contianer .services-list:after {
    left: 60px;
  }
}
.services-list-contianer .services-list > i {
  font-size: 3rem;
  opacity: 0.7;
  color: #169fe6;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 766px) {
  .services-list-contianer .services-list > i {
    font-size: 2.5rem;
  }
}
.services-list-contianer .services-list .service-list-information {
  margin-left: 150px;
}
@media screen and (max-width: 766px) {
  .services-list-contianer .services-list .service-list-information {
    margin-left: 90px;
  }
}
.services-list-contianer .services-list .service-list-information > h4 {
  font-weight: bold;
  color: #374463;
  font-size: 1.25rem;
}

.vendor-info {
  margin-bottom: 1rem;
}
.vendor-info__image {
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: #fff;
  border-radius: 6px;
}
.vendor-info__image img {
  width: 100%;
}
.vendor-info__name {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #72aee6;
}

.vendor-support {
  position: relative;
  padding-left: 25px;
}
.vendor-support i {
  position: absolute;
  left: 0;
  top: 3px;
}
.vendor-support h3 {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0.75rem 0;
}
.vendor-support h3 i {
  margin-right: 0.5rem;
}
.vendor-support p {
  margin: 0;
}
.vendor-support a {
  color: #fff;
}

#library {
  padding-top: 4rem;
}

.article-list .me-artice {
  padding-top: 1rem;
  display: flex;
}
@media screen and (max-width: 766px) {
  .article-list .me-artice {
    display: block;
  }
}

.me-artice {
  margin-bottom: 3rem;
  position: relative;
}
.me-artice .post-image {
  flex: 0 0 140px;
}
@media screen and (max-width: 766px) {
  .me-artice .post-image {
    margin-bottom: 1rem;
  }
}
.me-artice .post-image img {
  border: 1px solid #e1e1e1;
  border-radius: 3px;
}
.me-artice .post-image + .blog-container {
  margin-left: 30px;
}
@media screen and (max-width: 766px) {
  .me-artice .post-image + .blog-container {
    margin-left: 0;
  }
}
.me-artice .post-date {
  color: #374463;
  margin-bottom: 1.25rem;
  font-weight: bold;
}
.me-artice .post-date i {
  margin-right: 0.5rem;
}
.me-artice .blog-information {
  width: 85px;
  min-height: 90px;
  border: 1px solid #e1e1e1;
  background: #f8f8f8;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 766px) {
  .me-artice .blog-information {
    width: 65px;
    min-height: 70px;
  }
}
.me-artice .date-blog-information {
  font-size: 2.75rem;
  font-weight: 300;
  color: #a3a3a3;
  text-align: center;
  padding: 10px 0 0;
}
@media screen and (max-width: 766px) {
  .me-artice .date-blog-information {
    font-size: 1.75rem;
  }
}
.me-artice .date-blog-information span {
  font-size: 1rem;
  color: #fff;
  display: block;
  background: #169fe6;
  margin: 0 -1px;
  padding: 0.25rem;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
@media screen and (max-width: 766px) {
  .me-artice .date-blog-information span {
    font-size: 0.8rem;
  }
}
.me-artice .blog-container {
  margin-left: 120px;
}
@media screen and (max-width: 766px) {
  .me-artice .blog-container {
    margin-left: 90px;
  }
}
.me-artice .blog-container a {
  color: #374463;
}
.me-artice .blog-container a:hover {
  color: #374463;
}
.me-artice .blog-container > .button {
  color: #374463;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.me-artice .blog-container > .button i {
  margin-left: 0.5rem;
}
.me-artice .blog-container > .button:hover {
  text-decoration: none;
  color: #374463;
}
.me-artice .blog-container .post-title {
  font-size: 23px;
  font-weight: bold;
}
.me-artice .blog-container p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
}
.me-artice .blog-more {
  text-align: center;
  position: relative;
  flex: 0 0 100%;
}
.me-artice .blog-more:before {
  content: "";
  background: #e1e1e1;
  height: 1px;
  width: 100%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}
.me-artice .blog-more .button-more {
  display: inline-block;
  background: #fff;
  position: relative;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
  z-index: 2;
}
.me-artice .blog-more .button-more .button {
  display: inline-block;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 0;
  z-index: 2;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  background: #374463;
  color: #fff;
  transition: 0.3s;
}
.me-artice .blog-more .button-more .button i {
  margin-left: 5px;
}
.me-artice .blog-more .button-more .button:hover {
  background: rgb(36.7857142857, 45.4805194805, 66.2142857143);
  text-decoration: none;
}

.alphabet {
  text-align: center;
  margin-bottom: 3rem;
}
.alphabet .btn {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  margin: 0 0.2rem 0.2rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #d9d9d9;
  transition: 0.3s;
}
.alphabet .btn:hover {
  background: rgb(191.5, 191.5, 191.5);
}
.alphabet .btn.active {
  background: #374463;
  color: #fff;
}
.alphabet span {
  margin: 0 1.5rem;
}

.sl {
  height: auto;
  position: relative;
}

.sl-item {
  position: relative;
  height: auto;
  overflow: hidden;
}

.sl .slick-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  /* height: auto; */
  height: 600px;
}

.sl-item__content {
  position: absolute;
  left: 30px;
  padding: 20px;
}

.sl-item-name {
  font-size: 4rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
}

.sl-item-text {
  font-size: 14px;
  color: #666;
  letter-spacing: 3px;
}

.slick-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  margin-top: -35px;
  cursor: pointer;
  min-width: 70px;
  min-height: 70px;
  position: absolute;
  display: block;
  z-index: 100;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 35px;
  border: none;
  transition: 0.3s;
}

.slick-arrow {
  background: rgba(0, 0, 0, 0.2);
}

.slick-next {
  right: 15px;
}

.slick-prev {
  left: 15px;
}

@media screen and (max-width: 767px) {
  .sl {
    height: auto;
  }
  .sl-item {
    height: auto;
  }
  .sl .slick-slide {
    height: auto;
  }
  .sl-item__content {
    margin-left: auto;
    margin-top: auto;
    width: auto;
    right: 10%;
    left: 10%;
    top: 20%;
    height: auto;
    padding: 10px;
  }
  .sl-item-name {
    font-size: 18px;
    line-height: 1.3;
  }
  .slick-arrow {
    display: none !important;
  }
}
.tbl-ans {
  margin: 30px 0;
}

.tbl-ans thead {
  background: #3c4d8f;
  color: #fff;
  font-weight: bold;
  border-bottom: 3px solid #c4c4c4;
}

.sl_prt .slick-slide {
  padding: 0 10px; /* відступи між слайдами (по боках) */
  box-sizing: border-box;
}

.sl_prt {
  margin: 0 -10px; /* компенсуємо відступи зліва/справа */
}

.sl_prt .slick-slide > div {
  height: 450px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* щоб обрізати зайве */
}

.sl_prt .slick-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Контейнер крапок */
.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

/* Окремий елемент (точка) */
.slick-dots li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Активна точка */
.slick-dots li.slick-active {
  background-color: #555;
}

/* Кнопки всередині (ховаємо, щоб працював li як кнопка) */
.slick-dots li button {
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.service-arch {
  display: flex;
  flex-direction: column;
  margin: 0 0 100px;
}
@media screen and (max-width: 991px) {
  .service-arch {
    margin-bottom: 0.5rem;
  }
}
.service-arch .list {
  display: flex;
  flex-direction: column;
}
.service-arch .list .item {
  display: flex;
}
.service-arch .list .item img {
  display: flex;
  width: 125px;
  height: -moz-fit-content;
  height: fit-content;
}
.service-arch .list .item .descr {
  padding: 20px;
}
.service-arch .list .item .descr .title {
  margin-bottom: 20px;
}
.service-arch .list .item .descr .title a {
  font-size: 23px;
  color: #374463;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */