/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 1920px !important;
    margin-left: calc(-1 * (1920px - 1170px) / 2) !important;
    margin-right: calc(-1 * (1920px - 1170px) / 2) !important;
  }
}
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  max-width: 1920px;
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 20px 5px #747474;
  box-shadow: 0 0 20px 5px #747474;
}

a {
  text-decoration: none;
  color: #121212;
  transition: all 0.3s ease-in;
}
ul {
  counter-reset: num;
}
ul li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  list-style-type: none;
}
ul li::marker {
  color: #10223d;
}

ol li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
  position: relative;
  list-style: none;
}
ol li:before {
  content: counter(num);
  counter-increment: num;
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 30px;
  background: #10223d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: -3px;
  color: white;
  text-align: right;
  position: absolute;
}
p {
  margin-bottom: 15px;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
}

h1.page-title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  color: #10223d;
  margin-bottom: 50px;
}

.content{
	padding:20px 0px;
}

main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}
main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.breadcrumbs {
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #dfdfdf;
}
.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.breadcrumbs span.current-item {
  color: #121212;
}

.breadcrumbs span a:hover {
	color: #4472c4;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.scrollT {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: auto;
  padding: 15px 35px;
  background: #10223d;
border-radius: 30px;
  border: 2px solid #faa040;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
font-size: 16px;
line-height: 140%;
color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease-in;
  appearance: none;
  -webkit-appearance: none;
}
.btn svg {
  transition: all 0.3s ease-in;
  margin-right: 10px;
}
.btn svg path {
  transition: all 0.3s ease-in;
}
.btn:hover {
  color: #10223d;
  background-color: white;
  border: 2px solid #faa040;
}
#main,
#primary {
  min-height: 83vh;
  padding-top: 85px;
}
@media (max-width: 500px) {
  #main,
  #primary {
    min-height: 83vh;
    padding-top: 70px;
  }	
}
.block-title {
  font-weight: 800;
font-size: 40px;
line-height: 130%;
color: #10223d;
  margin-bottom: 40px;
  width: 70%;
}
.block-title span {
  color: #10223d;
  font-weight: 700;
}
.wpcf7-form-control {
  outline: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  opacity: 1 !important;
  background: #cccccc !important;
}
.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
  background: #10223d !important;
}
.swiper-button-prev:hover path,
.swiper-button-next:hover path {
  stroke: #10223d;
}
/*============ HEADER =================*/
#header {
  background: #ffffff;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
  position: sticky !important;
  top: 0;
  width: 100%;
  z-index: 100;
}
#header .header-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 15px 0px;
  align-items: center;
}
#header .header-wrapper .logo__holder {
  max-width: 200px;
  max-height: 55px;
}
#header .header-wrapper .logo__holder img {
  height: 100%;
  width: 100%;
  display: block;
}
#header .header-wrapper .header_nav_menu {
  display: flex;
}
#header .header-wrapper .header-menu {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
#header .header-wrapper .header-menu .nav-menu-element {
  margin-right: 35px;
list-style-type: none;
}
#header .header-wrapper .header-menu .nav-menu-element:last-child {
  margin-right: 0px;
}
#header .header-wrapper .header-menu .nav-menu-element.has-childs {
  position: relative;
  transition: all 0.3sease-in;
}
#header .header-wrapper .header-menu .nav-menu-element.has-childs::before {
  position: absolute;
  content: "";
  top: 22px;
  width: 100%;
  height: 20px;
}
#header .header-wrapper .header-menu .nav-menu-element.has-childs::after {
  transition: all 0.3sease-in;
  position: absolute;
  content: "";
  width: 70%;
  height: 2px;
  display: flex;
  justify-content: center;
  left: 0;
  background: white;
  opacity: 0;
  top: 30px;
  left: 53%;
  transform: translate(-50%, -50%);
}
#header .header-wrapper .header-menu .nav-menu-element.has-childs .sub-menu {
  padding: 32px;
  display: none;
  position: absolute;
  top: 42px;
  flex-direction: column;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  background: white;
  opacity: 0;
  transition: 0.3s;
  min-width: 320px;
}
#header .header-wrapper .header-menu .nav-menu-element.has-childs {
position: relative;
}
#header .header-wrapper .header-menu .nav-menu-element.has-childs:hover .sub-menu  {
  display: flex;
  opacity: 1;
}
#header .header-wrapper .header-menu .nav-menu-element.has-childs:hover .sub-menu .nav-menu-element a {
	color: #10223d;
}
#header .header-wrapper .header-menu .nav-menu-element.has-childs:hover .sub-menu .nav-menu-element:hover a {
	color: #4472c4;
}
#header .header-wrapper .header-menu .nav-menu-element.has-childs:hover:after {
  transform: rotate(180deg);
  top: 0;
}
#header .header-wrapper .header-menu .nav-menu-element a {
  font-weight: 400;
font-size: 16px;
line-height: 140%;
color: #10223d;
}
#header .header-wrapper .header-menu .nav-menu-element:hover a {
  color: #4472c4;
}
#header .header-wrapper .phone-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#header .header-wrapper .phone-wrapper a {
  font-weight: 600;
font-size: 20px;
line-height: 130%;
text-align: right;
color: #10223d;
  margin-bottom: 5px;
}
#header .header-wrapper .phone-wrapper a:hover {
  color: #4472c4;
}
#header .header-wrapper .phone-wrapper .header-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #10223d;
  cursor: pointer;
  transition: 0.3s;
}
#header .header-wrapper .phone-wrapper .header-btn:hover {
  color: #4472c4;
}
/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}
#header .burger.open_menu span {
  background-color: #10223d;
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}
#header .burger.open_menu.clicked {
  background-color: #10223d;
}
#header .burger.open_menu.clicked span {
  background-color: #ffffff;
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: white;
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}
#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: #10223d;
}
#header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: #10223d;
  font-weight: 450;
}
#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#header #mobile-mnu .logo__holder img {
  max-height: 60px;
}
#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
}
#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}
#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 1;
  color: #10223d;
  font-weight: 450;
}
#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  width: 100%;
}
#header #mobile-mnu .adresses__holder:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("../images/map.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}
#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #10223d;
  font-weight: 450;
}
#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #10223d;
  font-weight: 450;
}
#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}
#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: white;
  transition: background-color 0.3s ease-in;
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}
#header #mobile-mnu .email__holder .email__item path,
#header #mobile-mnu .phones__holder .phone__item path  {
  stroke: #10223d;
}
/*============ FOOTER ===============*/
#footer {
  background: #10223d;
  margin-top: auto;
}
#footer .container {
  display: flex;
}
#footer .container .bot__line {
  display: flex;
  align-items: center;
  height: 80px;
  width: 100%;
  justify-content: space-between;
}
#footer .container .bot__line .privacy {
  font-weight: 400;
font-size: 14px;
line-height: 130%;
  text-decoration-line: underline;
  color: #cccccc;
  background: none;
  border: none;
  cursor: pointer;
}
#footer .container .bot__line .privacy:hover {
  color: white;
}
#footer .container .bot__line .dev {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #cccccc;
}
/* ============== MODAL ============= */
.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .ajax-loader {
  display: none;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}

#footer .theme-modal {
  height: auto;
  width: auto;
  max-height: 90vh;
  background: white;
  border-radius: 2px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 0.3s ease-in;
  z-index: 9999;
  padding: 60px 80px;
}
#footer .theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
#footer .theme-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 40px;
  font-weight: 750;
  color: #cccccc;
  transform: rotate(45deg);
  cursor: pointer;
}
#footer .theme-modal .close-modal:hover {
  color: #10223d;
}
#footer .modal-title {
  font-weight: 800;
font-size: 40px;
line-height: 130%;
color: #10223d;
  margin-bottom: 40px;
}
#footer .theme-modal .wpcf7-form-control {
  padding: 15px 35px;
  font-weight: 400;
font-size: 16px;
line-height: 140%;
color: #484c6a;
  background: transparent;
  margin-bottom: 20px;
  outline: none;
  border: 1px solid #484c6a;
border-radius: 5px;
  width: 100%;
}
#footer .theme-modal .wpcf7-form-control.wpcf7-not-valid {
  border: 1px solid red;
}
#footer .theme-modal .wpcf7-form-control::placeholder {
  outline: none;
  font-weight: 400;
font-size: 16px;
line-height: 140%;
color: #484c6a;
}
#footer .theme-modal .wpcf7-form-control.wpcf7-not-valid::placeholder {
  color: red;
}
#footer .theme-modal .modal-bot {
  display: flex;
  justify-content: space-between;
}
#footer .theme-modal .modal-bot {
  font-weight: 400;
font-size: 16px;
line-height: 140%;
color: #484c6a;
}
#footer .theme-modal .modal-bot .privacy {
  text-decoration: underline;
  cursor: pointer;
}
#footer .theme-modal .modal-bot .privacy:hover {
  color: #10223d;
}
#footer .theme-modal .btn {
  background: #10223d;
  border-radius: 30px;
  width: max-content;
  color: white;
  border: 1px solid #10223d;
}
#footer .theme-modal .btn:hover {
  background: white;
  color: #10223d;
  border: 1px solid #10223d;
}
#modal-privacy.theme-modal.modal-open {
  width: 95%;
  max-width: unset;
  overflow: auto;
}
#modal-privacy.theme-modal.modal-open strong {
  font-weight: 700;
font-size: 16px;
line-height: 130%;
color: #10223d;
}
#modal-privacy.theme-modal.modal-open p {
  font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #10223d;
}
.wpcf7-form-control.wpcf7-not-valid {
  border: 1px solid red;
}
.wpcf7-form-control.wpcf7-not-valid::placeholder {
  color: red;
}
#modal-fault.theme-modal {
  max-width: 1170px;
  width: 100%;
  max-height: unset;
  height: auto;
  background: #ffffff;
border-radius: 5px;
padding: 0px;
}
#modal-fault.theme-modal .close-modal {
  color: #cccccc;
}
#modal-fault.theme-modal .close-modal:hover {
  color: #10223d;
}
#modal-fault.theme-modal .popup-content{
padding: 60px 80px;
}
#modal-fault.theme-modal .fault-top {
  display: flex;
}
#modal-fault.theme-modal .fault-modal-desc p{
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #484c6a;  
}
#modal-fault.theme-modal .left-side {
  width: 400px;
  max-height: 400px;
}
#modal-fault.theme-modal .left-side img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#modal-fault.theme-modal .right-side {
  width: 60%;
  margin-left: 60px;
}
#modal-fault.theme-modal .fault-modal-title{
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #10223d;
  margin-bottom: 30px;
}
#modal-fault.theme-modal .form {
  padding: 45px 60px;
  background: #10223d;
  display: flex;
  align-items: center;
  justify-content: space-between;
border-radius: 0px 0px 5px 5px;
}
#modal-fault.theme-modal .form-left {
  width: 35%;
  display: flex;
  flex-direction: column;
}
#modal-fault.theme-modal .form-right {
  width: 55%;
}
#modal-fault.theme-modal .form-left h2 {
  font-weight: 800;
font-size: 40px;
line-height: 130%;
color: #ffffff;
margin-bottom: 10px;
}
#modal-fault.theme-modal .form-left p {
  font-weight: 400;
font-size: 16px;
line-height: 140%;
color: #e7eaf8;
}
#modal-fault.theme-modal .form-top {
  display: flex;
  gap: 20px;
}
#modal-fault.theme-modal .form-top input {
  border: 1px solid #e7eaf8;
border-radius: 5px;
font-weight: 400;
font-size: 16px;
line-height: 140%;
color: #e7eaf8;
margin-bottom: 0px;
}
#modal-fault.theme-modal .form-top input::placeholder {
  font-weight: 400;
font-size: 16px;
line-height: 140%;
color: #e7eaf8;
}
#modal-fault.theme-modal .modal-bot {
  margin-top: 20px;
}
#modal-fault.theme-modal .modal-bot .privacy-holder{
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
}
#modal-fault.theme-modal .privacy-holder .privacy{
text-decoration: underline;
transition: 0.3s;
cursor: pointer;
}
#modal-fault.theme-modal .privacy-holder .privacy:hover {
  color: #cccccc;
}
#modal-fault.theme-modal .submit_btn {
  width: max-content;
  margin-left: 30px;
  transition: 0.3s;
  font-weight: 500;
font-size: 16px;
line-height: 140%;
color: #10223d;
background: white;
border: 1px solid white;
}
#modal-fault.theme-modal .submit_btn:hover {
  color: white;
  background: #10223d;
  border: 1px solid white;
}
#modal-fault.theme-modal .name-fault {
 display: none;
}
#modal-fault.theme-modal .form-holder {
  display: block;
}
#modal-success .title{
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}
.map-holder {
  min-height: unset !important;
  height: 600px;
}
/* ============= ARTICLE BLOCK =========== */
@media (max-width: 600px) {
	.single-articles figure {
		max-width: 100% !important;
		width: 100%
	}
}
.single-articles h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 12px;
}
.single-articles figure {
	max-width: 50%;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 12px;
}
.single-articles figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.single-articles ol li {
	display: flex;
    align-items: center;
    gap: 10px;
}
.single-articles ol li::before {
	position: unset;
	
}
.single-articles ul li {
	list-style-type: disc;
}
.archive.archive-article .article-info .articles-all {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
/* ============= ARTICLE CARD =========== */
.article-item {
  background: #ffffff;
  border-radius: 5px;
  padding: 25px;
  display: flex;
  flex-direction: column;
}
.article-item__img {
  width: 100%;
}
.article-item__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.article-item__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #10223d;
  margin: 20px 0px;
}
.article-item__short {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #484c6a;
  margin-bottom: 0px;
}
/* ============= MEDIA QUERIES =========== */
@media (max-width: 1200px) {
  #modal-service.theme-modal.modal-open .form {
    flex-direction: column;
  }
  #header .header-wrapper .header-menu .nav-menu-element {
    margin-right: 15px;
}
#header .header-wrapper .header-menu .nav-menu-element a {
  font-size: 14px;
}
#footer .theme-modal {
  padding: 30px;
}
#modal-fault.theme-modal {
  padding: 0px;
  width: 95%;
}
#modal-fault.theme-modal .popup-content {
  padding: 20px 20px;
}
#modal-fault.theme-modal .close-modal {
  right: 0px;
  top: -10px;
} 
#modal-fault.theme-modal .fault-top {
  flex-direction: column;
  align-items: center;
}
#modal-fault.theme-modal .right-side {
  margin-left: 0px;
  width: 100%;
}
#modal-fault.theme-modal .form {
  padding: 15px;
}
#modal-fault.theme-modal .fault-modal-desc p {
  font-size: 12px;
  line-height: 120%;
}
#modal-fault.theme-modal .left-side {
  display: none;
}
}
@media (max-width: 996px) {
  #header .burger.open_menu {
    display: flex;
    margin-left: 20px;
  }
  #header .header-wrapper .header_nav_menu {
    display: none;
  }
  #header .header-wrapper .logo__holder {
    margin-right: auto;
  }
  #header .header-wrapper .phone-wrapper {
    margin-left: 20px;
  }
  .block-title:before {
    top: 100%;
  }
  #footer .theme-modal {
    padding: 20px;
  }
  #modal-service.theme-modal.modal-open .service-top {
    flex-direction: column;
    align-items: center;
  }
  #modal-service.theme-modal.modal-open .service-top .right-side {
    width: 100%;
    margin-top: 20px;
  }
  #modal-service.theme-modal.modal-open .right-side .service-modal-title {
    font-size: 26px;
    text-align: center;
    line-height: 32px;
    margin-bottom: 5px;
  }
  #modal-service.theme-modal.modal-open .popup-content {
    padding: 20px;
  }
  .block-title {
    width: 100%;
  }
  #footer .theme-modal .modal-bot {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  #footer .theme-modal {
    padding: 50px 20px;
  }
  #footer .theme-modal .modal-bot {
    font-size: 12px;
  }
  #modal-fault.theme-modal {
    padding: 0px;
  }
  #modal-fault.theme-modal .form {
    flex-direction: column;
  }
  #modal-fault.theme-modal .form-left {
    width: 100%;
    margin-bottom: 20px;
  }
  #modal-fault.theme-modal .form-right {
    width: 100%;
  }
}
@media (max-width: 776px) {
  #footer .theme-modal {
    padding: 20px;
  }
  #footer .modal-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 16px;
  }
  #footer .theme-modal .wpcf7-form-control {
    max-width: unset;
  }
  #modal-service.theme-modal.modal-open .form .modal-bot .btn {
    margin-left: 0px;
  }
  #modal-service.theme-modal.modal-open .form .modal-bot p {
    text-align: center;
  }
  #modal-service.theme-modal.modal-open .form {
    padding: 20px;
  }
  #modal-service.theme-modal.modal-open .form .modal-bot .btn {
    margin-bottom: 0px;
  }
  #modal-service.theme-modal.modal-open .form h2 {
    text-align: center;
  }
  #footer .theme-modal .close-modal {
    top: 10px;
    right: 20px;
  }
  #modal-fault.theme-modal {
    padding: 0px;
  }
  #modal-fault.theme-modal .fault-modal-title {
    width: 90%;
  }
}
@media (max-width: 600px) {
  #footer .theme-modal {
    width: 90%;
  }
  #modal-service.theme-modal.modal-open .form .modal-bot p {
    width: 100%;
  }
  #modal-service.theme-modal.modal-open .form .form-right p {
    flex-direction: column;
    align-items: center;
    display: flex;
    gap: 0px;
  }
  #modal-service.theme-modal.modal-open .form .form-right p br {
    display: none;
  }
  #modal-service.theme-modal.modal-open .form .modal-bot .btn {
    width: 100%;
  }
  #modal-service.theme-modal.modal-open {
    width: 95%;
  }
  #modal-service.theme-modal.modal-open .right-side .service-modal-title {
    font-size: 24px;
  }
  .block-title {
    font-size: 28px;
  }
  #footer .theme-modal .btn {
    width: 100%;
  }
  #modal-fault.theme-modal {
    padding: 0px;
    max-height: unset;
    height: 90vh;
    overflow: auto;
    width: 95% !important;
  }
  #modal-fault.theme-modal .submit_btn {
    margin-left: 0px;
  }
  #modal-fault.theme-modal .form-left h2 {
    font-size: 26px;
  }
  #modal-fault.theme-modal .modal-bot .privacy-holder {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  #header .header-wrapper .header_socials {
    display: none;
  }
  #header .header-wrapper .phone-wrapper a {
    font-size: 16px;
  }
  #header .burger.open_menu {
    margin-left: 10px;
  }
  #header .header-wrapper .phone-wrapper {
    margin-left: 10px;
  }
  #header .header-wrapper .logo__holder {
    max-width: 115px;
  }
  #footer .container .bot__line {
    flex-direction: column;
    padding: 10px 0px;
  }
  #footer .theme-modal .close-modal {
    top: 0;
  }
  #modal-service.theme-modal.modal-open .form h2 {
    font-size: 24px;
    line-height: 30px;
  }
  #modal-service.theme-modal.modal-open .form .form-left p {
    font-size: 14px;
    text-align: center;
  }
  .block-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  #footer .theme-modal .wpcf7-form-control {
    padding: 15px;
  }
  #modal-fault.theme-modal {
    padding: 0px;
  }
  #modal-fault.theme-modal .form-top {
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .block-title {
    font-size: 26px;
    text-align: center;
  }
  .block-title:before {
    right: 0%;
  }
  #header .container{
    padding: 0px 5px;
  }
  #header .header-wrapper .phone-wrapper a {
    font-size: 14px;
  }
  #modal-fault.theme-modal {
    padding: 0px;
  }
}
.error404 #primary {
  background: #10223d;
  background-image: url(../images/banner404.png);
}
.error-404 .container {
  padding-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.error-404 .container .error-left {
  margin-right: 100px;
}
.error-404 .container .error-title {
  font-weight: 700;
  font-size: 200px;
  line-height: 160px;
  color: #10223d;
}
.error-404 .container .error-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #f2f2f2;
  margin-bottom: 30px;
}
@media (max-width: 776px) {
  .error-404 .container {
    flex-direction: column;
  }
  .error-404 .container .error-title {
    font-size: 120px;
  }
}
/*# sourceMappingURL=main.css.map */


#header {
  position: unset;
}

#main,
#primary {
  padding: unset;
}

h1.page-title {
  margin-block-end: 40px;
}

.breadcrumb {
  margin-block: 20px;
}

:has(.swiper) {
  min-width: 0;
}
:has(.swiper) .swiper {
  width: 100%;
}
:has(.swiper) .swiper .swiper-wrapper {
  align-items: stretch;
}
:has(.swiper) .swiper .swiper-slide {
  height: auto;
}

.wp-block-media-text:not(:last-child) {
	margin-bottom: 20px;
}

a.wp-block-file__button {
	display: flex;
	width: fit-content;
	margin: 15px 0 0 !important;
	padding: 10px 15px;
	border-radius: 100px;
}
