:root {
  --orange: #EF6E11;
  --text: #072938;
  --blue: #0088C4;
  --grey: #777;
}

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

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

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
  }
}
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

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

body {
  background-color: #fff;
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
}

a {
  text-decoration: none;
  color: #121212;
  transition: all 0.3s ease-in;
}
a:hover {
  color: var(--orange);
}

ul li {
  list-style-position: inside;
  color: var(--grey);
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 10px;
}
ul li::marker {
  color: var(--grey);
}

ol li {
  list-style-position: inside;
  color: var(--grey);
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
  color: var(--grey);
  font-size: 16px;
  line-height: 150%;
}

strong {
  font-weight: 700;
}

h1.page-title {
  color: var(--text);
  font-size: 42px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%; /* 63px */
  margin-bottom: 30px;
}

h2,
h2.block-title {
  color: var(--text);
  font-size: 32px;
  font-weight: 700;
  line-height: 140%; /* 44.8px */
  margin-bottom: 30px;
}
h2 span,
h2.block-title span {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: var(--blue);
}
h3 {
  margin: 25px 0 20px;
}
h4 {
  margin: 20px 0 15px;
}
h5 {
  margin: 15px 0 10px;
}

.breadcrumbs {
  padding: 20px 0;
  color: var(--grey);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  background: var(--orange);
  border-radius: 100px;
  padding: 14px 40px;
  border: none;
  outline: none;
  font-family: "Manrope", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
.btn.ar-right .arrow {
  margin-left: 5px;
}
.btn.ar-left .arrow {
  margin-right: 5px;
}
.btn .arrow {
  display: flex;
}
.btn:hover {
  color: #fff;
  background-color: #FF8905;
}
.btn:focus {
  color: #fff;
  background-color: #E26810;
}

#main,
#primary {
  min-height: 83vh;
}

.dynamic-input {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 25px;
  border: 1px solid #E2E2E2;
  background: #fff;
  padding: 9px 30px;
  transition: border-color 0.3s ease-in, padding 0.3s ease-in;
  position: relative;
  min-height: 50px;
  width: 100%;
}
.dynamic-input.textarea {
  min-height: 100px;
}
.dynamic-input.textarea span.label {
  top: 30px;
}
.dynamic-input span.label {
  color: var(--text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1; /* 16px */
  letter-spacing: 0.8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.dynamic-input textarea,
.dynamic-input input {
  width: 100%;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1; /* 16px */
  letter-spacing: 0.8px;
  outline: none;
  border: none;
  transition: all 0.3s ease-in-out;
  margin-top: auto;
  opacity: 0;
}
.dynamic-input textarea.error,
.dynamic-input input.error {
  color: red !important;
}
.dynamic-input textarea.error::placeholder,
.dynamic-input input.error::placeholder {
  color: red !important;
}
.dynamic-input textarea.error + span,
.dynamic-input input.error + span {
  color: red !important;
}
.dynamic-input textarea {
  resize: none;
  margin-top: 15px;
  height: 100%;
}
.dynamic-input.active, .dynamic-input:hover {
  border-color: var(--blue);
}
.dynamic-input.active span.label, .dynamic-input:hover span.label {
  font-size: 10px;
  color: var(--blue);
  top: 9px;
}
.dynamic-input.active textarea,
.dynamic-input.active input, .dynamic-input:hover textarea,
.dynamic-input:hover input {
  opacity: 1;
}

/*====== NAVIGATION ===========*/
.navigation.pagination {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  text-align: center;
}
.navigation.pagination .page-numbers {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1C0130;
  margin: 0 10px;
}
.navigation.pagination .page-numbers.current {
  font-weight: 750;
}
.navigation.pagination a.prev {
  margin-right: 100px;
  margin-left: -100px;
}
.navigation.pagination a.next {
  margin-right: -100px;
  margin-left: 100px;
}

/*=========== ERROR PAGE ===========*/
#main.error-page .error-holder {
  max-width: 770px;
}
#main.error-page h1.error {
  color: var(--text);
  font-size: 200px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 200px */
  margin-bottom: 20px;
}
#main.error-page h3 {
  color: var(--text);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
#main.error-page p {
  margin-bottom: 20px;
}

/*============ HEADER =================*/
#header .top-line {
  padding: 30px 0;
}
#header .top-line .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header .bot-line {
  background-color: var(--blue);
  padding: 20px 0;
}
#header .bot-line .menu-holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
#header .bot-line .menu-holder li {
  list-style-type: none;
  margin-bottom: 0;
  position: relative;
}
#header .bot-line .menu-holder > li.has-childs > a {
  background: url('../images/svg/arrow-menu.svg');
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
  background-size: 12px 10px;
}
#header .bot-line .menu-holder li.has-childs:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
#header .bot-line .menu-holder li .sub-menu {
  position: absolute;
  left: 0px;
  top: calc(100% + 20px);
  background: var(--blue);
  display: flex;
  flex-direction: column;
  z-index: 10;
  padding: 10px 15px;
  width: 290px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transition-delay: 0.15s;
}
#header .bot-line .menu-holder li .sub-menu .separator {
  display: none;
}
#header .bot-line .menu-holder li .sub-menu li {
  margin-bottom: 10px;
}
#header .bot-line .menu-holder li .sub-menu li:last-child {
  margin-bottom: 0px;
}
#header .bot-line .menu-holder li a {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-bottom: 2px solid transparent;
}

#header #mobile-mnu .menu-holder li .sub-menu {
  display: none;
  padding-left: 10px;
  margin-top: 10px;
}

#header #mobile-mnu .menu-holder li .sub-menu li {
  margin-bottom: 5px;
}

#header #mobile-mnu .menu-holder li .sub-menu li a {
  font-size: 14px;
}

#header .bot-line .menu-holder li a:hover {
  border-color: var(--orange);
}
#header .bot-line .menu-holder li.active > a {
  border-color: var(--orange);
}
#header .bot-line .menu-holder .separator {
  background: rgba(255, 255, 255, 0.15);
  width: 1px;
  height: auto;
}
#header .bot-line .menu-holder .separator:first-child {
  display: none;
}
#header a.logo-holder {
  max-width: 210px;
  width: 100%;
}
#header a.logo-holder img {
  width: 100%;
  object-fit: contain;
}
#header .soc {
  display: flex;
}
#header .soc img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
#header .cities {
  border-radius: 25px;
  background: #F6F6F6;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  padding: 14px 20px;
  gap: 7px;
}
#header .cities .current-city {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
#header .cities .current-city span {
  border-bottom: 1px solid #EF6E11;
  color: var(--text);
  font-size: 16px;
  line-height: 1; /* 0% */
  transition: color 0.3s ease-in;
}
#header .cities .current-city:hover span {
  color: var(--orange);
}
#header .cities .separator {
  height: auto;
  background-color: #E6E6E6;
  width: 1px;
}
#header .cities .address {
  display: flex;
  margin: auto;
}
#header .cities .address p {
  margin-bottom: 0;
  color: var(--grey);
  text-align: left;
  font-size: 12px;
  line-height: 1;
}
#header .phones-holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#header .phone {
  color: var(--text);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  margin-bottom: 4px;
}
#header .phone:hover {
  color: var(--orange);
}
#header .worktime {
  color: var(--grey);
  font-size: 12px;
  line-height: 100%; /* 12px */
}

/*================ 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: var(--orange);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
  pointer-events: none;
}
#header .burger.open_menu.clicked {
  background-color: var(--orange);
}
#header .burger.open_menu.clicked span {
  background-color: #fff;
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: #f1f2f3;
  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: var(--orange);
}
#header #mobile-mnu a.logo-holder {
  margin-bottom: 50px;
}
#header #mobile-mnu a.logo__holder img {
	width: 100%;
}
#header #mobile-mnu .menu-holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 30px;
}
#header #mobile-mnu .menu-holder li {
  list-style-type: none;
  display: block;
  width: 100%;
}

#header #mobile-mnu .menu-holder li a {
  display: block;
  width: 100%;
}

#header #mobile-mnu .menu-holder > li.has-childs > a {
  background: url(../images/svg/arrow-menu-g.svg);
  background-repeat: no-repeat;
  background-position: right 8px;
  padding-right: 20px;
  background-size: 12px 10px;
}

#header #mobile-mnu .menu-holder li a:hover {
  color: #121212;
}

#header #mobile-mnu .cities {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
#header #mobile-mnu .cities .separator {
  width: 100%;
  height: 1px;
}
#header #mobile-mnu .phones-holder {
  margin-bottom: 30px;
}
#header #mobile-mnu .soc-holder {
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
#header #mobile-mnu .soc-holder .soc {
  display: flex;
}
#header #mobile-mnu .soc-holder .soc img {
  object-fit: contain;
  width: 40px;
  height: 40px;
}
#header #mobile-mnu .btn {
  margin-top: auto;
  width: 100%;
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}

/*=========== SINGLE PORTFOLIO ===========*/
#main.single-portfolio {
  padding-bottom: 60px;
}
#main.single-portfolio .portfolio-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  width: 100%;
  margin-bottom: 60px;
}
#main.single-portfolio .portfolio-top .side {
  width: 100%;
}
#main.single-portfolio .portfolio-top .left-side {
  overflow: hidden;
}
#main.single-portfolio .gallery,
#main.single-portfolio .thumbs {
  overflow: hidden;
}
#main.single-portfolio .gallery {
  margin-bottom: 30px;
}
#main.single-portfolio .gallery .image-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 15px;
  outline: none;
}
#main.single-portfolio .gallery .image-holder img {
  width: 100%;
  object-fit: contain;
  object-position: top;
  /*aspect-ratio: 1 / 1;*/
  max-height: 350px;
}
#main.single-portfolio .thumbs img {
  width: 100%;
  object-fit: contain;
  box-sizing: border-box;
  border-radius: 15px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
#main.single-portfolio .portfolio-date {
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 12px */
  border-radius: 25px;
  background: var(--orange);
  padding: 4px 10px;
  width: fit-content;
  margin-bottom: 20px;
}
#main.single-portfolio .attr {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
}
#main.single-portfolio .attr__name {
  color: var(--text);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
#main.single-portfolio .attr__value {
  color: var(--grey);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#main.single-portfolio .single-portfolio-text {
  margin-bottom: 60px;
}
#main.single-portfolio .newest-portfolio {
  margin-top: 60px;
}
#main.single-portfolio .newest-portfolio .block-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
#main.single-portfolio .newest-portfolio .block-head h2.block-title {
  margin-bottom: 0;
}
#main.single-portfolio .newest-portfolio .nav-holder {
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
#main.single-portfolio .newest-portfolio .portfolio-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F5FAFF;
  cursor: pointer;
  outline: none;
  border: none;
  transition: background-color 0.3s ease-in;
}
#main.single-portfolio .newest-portfolio .portfolio-button.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
#main.single-portfolio .newest-portfolio .portfolio-button svg path {
  transition: stroke 0.3s ease-in;
}
#main.single-portfolio .newest-portfolio .portfolio-button:hover {
  background-color: var(--blue);
}
#main.single-portfolio .newest-portfolio .portfolio-button:hover svg path {
  stroke: #fff;
}

/*========= ARCHIVE PORTFOLIO ===========*/
#main.archive-portfolio {
  padding-bottom: 60px;
}
#main.archive-portfolio .archive-holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

/*=========== PORTFOLIO CARD ===========*/
.portfolio-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  box-sizing: border-box;
}
.portfolio-card__date {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 10;
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 12px */
  border-radius: 25px;
  background: var(--orange);
  padding: 4px 10px;
  width: fit-content;
  transition: color 0.3s ease-in, background-color 0.3s ease-in;
}
.portfolio-card__image-holder {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
  z-index: 1;
  width: 100%;
}
.portfolio-card__image-holder:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 15px;
  background: linear-gradient(0deg, rgba(239, 110, 17, 0.9) 0%, rgba(239, 110, 17, 0.9) 100%), lightgray 50%/cover no-repeat;
  box-shadow: 0 5px 50px 0 rgba(239, 110, 17, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease-in;
}
.portfolio-card__image {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1/1;
}
.portfolio-card__region {
  color: var(--grey);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.portfolio-card__title {
  color: var(--text);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  transition: color 0.3s ease-in;
}
.portfolio-card:hover .portfolio-card__date {
  color: var(--grey);
  background-color: #fff;
}
.portfolio-card:hover .portfolio-card__image-holder:after {
  opacity: 0.8;
}
.portfolio-card:hover .portfolio-card__title {
  color: var(--blue);
}

/*========= SINGLE BLOG ============*/
#main.single-blog {
  padding-bottom: 60px;
}

/*=========== ARCHIVE BLOG ===========*/
#main.archive-blog {
  padding-bottom: 60px;
}
#main.archive-blog .archive-holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  align-items: stretch;
}

/*============== BLOG CARD =============*/
.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
}
.blog-card__image-holder {
  display: flex;
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 15px;
}
.blog-card__image-holder:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 15px;
  background: linear-gradient(0deg, rgba(239, 110, 17, 0.9) 0%, rgba(239, 110, 17, 0.9) 100%), lightgray 50%/cover no-repeat;
  box-shadow: 0 5px 50px 0 rgba(239, 110, 17, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease-in;
}
.blog-card__image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 37/22;
}
.blog-card__title {
  color: var(--text);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  margin-bottom: 10px;
  transition: color 0.3s ease-in;
}
.blog-card__excerpt {
  color: var(--grey);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 150%; /* 24px */
}
.blog-card__bot {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: 100%;
}
.blog-card__date {
  color: var(--grey);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.blog-card__pseudo-btn {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: var(--blue);
}
.blog-card:hover .blog-card__image-holder:after {
  opacity: 0.8;
}
.blog-card:hover .blog-card__title {
  color: var(--orange);
}

/*============ FOOTER ===============*/
#footer {
  background-color: var(--text);
}
#footer .top-line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  gap: 20px 10px;
  flex-wrap: wrap;
}
#footer .mid-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  padding-bottom: 30px;
}
#footer .bot-line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 35px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
#footer .bot-line a {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.28px;
}
#footer .bot-line a.privacy {
  text-decoration-line: underline;
}
#footer .bot-line a.dev {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
#footer .bot-line a.dev span {
  font-weight: 800;
  font-size: 22px;
  color: inherit;
}
#footer .bot-line a:hover {
  color: var(--orange);
}
#footer a.logo-holder {
  max-width: 210px;
  width: 100%;
  display: flex;
}
#footer a.logo-holder img {
  object-fit: contain;
  width: 100%;
}
#footer .address-holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#footer .address-holder .address p {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%; /* 24px */
  margin-bottom: 4px;
}
#footer .email,
#footer .worktime {
  color: var(--grey);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
}
#footer .contacts-holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#footer .phone {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%; /* 24px */
  margin-bottom: 4px;
}
#footer .phone:hover {
  color: var(--orange);
}
#footer .email:hover {
  color: var(--orange);
}
#footer .soc {
  display: flex;
}
#footer .soc img {
  object-fit: contain;
  width: 50px;
  height: 50px;
}
#footer .menu-holder {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#footer .menu-holder.additional li:not(:first-child) a {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
#footer .menu-holder.additional li:not(:first-child) a:hover {
  color: var(--orange);
}
#footer .menu-holder.additional li:not(:first-child).active a {
  color: var(--orange);
}
#footer .menu-holder li {
  list-style-type: none;
}
#footer .menu-holder li a {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
}
#footer .menu-holder li a:hover {
  color: var(--orange);
}
#footer .menu-holder li.active a {
  color: var(--orange);
}

#footer .org-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .org-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#footer .org-item {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.28px;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
}
#footer .org-key {
    margin-right: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}
#footer .org-value {
    flex: 1;
}
#footer .org-item:hover .org-value {
    color: var(--orange);
}
@media (max-width: 768px) {
    #footer .org-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    #footer .org-item {
        font-size: 12px;
    }
    #footer .org-key {
        margin-right: 8px;
    }
}
/* ============== MODAL ============= */
.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .ajax-loader {
  display: none;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}

.theme-modal {
  height: fit-content;
  width: 470px;
  max-height: 90vh;
  max-width: 90vw;
  border-radius: 15px;
  background: #F5FAFF;
  padding: 35px 50px 35px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 0.3s ease-in;
  z-index: 99999;
  overflow-y: auto;
  overflow-x: hidden;
}
.theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.theme-modal .close-modal {
  position: absolute;
  right: 15px;
  top: 0;
  font-size: 40px;
  font-weight: 400;
  color: #374957;
  transform: rotate(45deg);
  cursor: pointer;
  transition: color 0.3s ease-in;
}
.theme-modal .close-modal:hover {
  color: var(--orange);
}
.theme-modal .title {
  color: var(--text);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 44.8px */
  text-align: center;
  margin-bottom: 30px;
}
.theme-modal .form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}
.theme-modal .form .btn {
  width: 100%;
}
.theme-modal#modal-city {
  width: 1240px;
}
.theme-modal#modal-city #cities-select-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.theme-modal#modal-city #cities-select-list .cities-group-letter {
  font-weight: 700;
  color: var(--orange);
}
.theme-modal#modal-city #cities-select-list .cities-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px 15px;
}
.theme-modal#modal-city span[data-gmr-city] {
  cursor: pointer;
  transition: color 0.3s ease-in;
  display: flex;
  font-size: 16px;
  line-height: 20px;
}
.theme-modal#modal-city span[data-gmr-city]:hover {
  color: var(--orange);
}

[form-send][disabled] {
  opacity: 0.5;
}

/* ============= MEDIA QUERIES =========== */
@media (max-width: 1025px) {
  /*=========== BASE CONFIG =========*/
  h1.page-title {
    font-size: 35px;
  }
  /*=========== HEADER ===========*/
  #header .top-line {
    padding: 20px 0;
  }
  #header .top-line .btn {
    display: none;
  }
  #header .bot-line {
    display: none;
  }
  #header .phone {
    font-size: 20px;
  }
  #header .burger.open_menu {
    display: flex;
  }
}
@media (max-width: 769px) {
  /*======= BASE CONFIG =========*/
  h1.page-title {
    font-size: 30px;
  }
  h2,
  h2.block-title {
    font-size: 25px;
  }
  /*========= ERROR PAGE ===========*/
  #main.error-page .error-holder {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #main.error-page h1.error {
    font-size: 150px;
  }
  /*========== HEADER ==========*/
  #header .top-line {
    padding: 10px 0;
  }
  #header .top-line a.logo-holder {
    max-width: 180px;
  }
  #header .top-line .container {
    gap: 10px;
  }
  #header .top-line .cities {
    display: none;
  }
  #header .phone {
    font-size: 16px;
  }
  /*======== SINGLE PORTFOLIO ===========*/
  #main.single-portfolio .portfolio-top {
    grid-template-columns: 1fr;
  }
  /*========= ARCHIVE PORTFOLIO ============*/
  #main.archive-portfolio .archive-holder {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
  /*========= ARCHIVE BLOG ==========*/
  #main.archive-blog .archive-holder {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  /*========= FOOTER ==========*/
  #footer .mid-line {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  #footer .bot-line {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  #footer .menu-holder {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }
  #footer .address-holder .address p {
    font-size: 20px;
  }
}
@media (max-width: 498px) {
  /*======== BASE CONFIG ==========*/
  h1.page-title {
    font-size: 25px;
  }
  h2.block-title,
  h2 {
    font-size: 20px;
  }
  /*========== HEADER ==========*/
  #header .top-line a.logo-holder {
    max-width: 120px;
  }
  #header .top-line .soc {
    display: none;
  }
  #header .worktime {
/*     display: none; */
  }
  /*========= ARCHIVE PORTFOLIO ============*/
  #main.archive-portfolio .archive-holder {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 35px;
  }
  /*======== SINGLE PORTFOLIO ===========*/
  #main.single-portfolio .portfolio-top .btn {
    width: 100%;
  }
  /*========= ARCHIVE BLOG ==========*/
  #main.archive-blog .archive-holder {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  /*========== MODALS ==========*/
  .theme-modal {
    padding: 30px;
  }
  .theme-modal .title {
    font-size: 25px;
  }
  .theme-modal .form {
    grid-gap: 15px;
  }
}
@media (max-width: 375px) {
  /*========= BASE CONFIG ============*/
  /*========= HEADER ===========*/
  #header .top-line .phone {
    font-size: 12px;
  }
  /*========= ARCHIVE PORTFOLIO ============*/
  #main.archive-portfolio .archive-holder {
    grid-template-columns: 1fr;
  }
  /*========== MODALS ==========*/
  .theme-modal {
    padding: 20px;
  }
  .theme-modal .close-modal {
    right: 5px;
    top: -10px;
  }
  .theme-modal .title {
    font-size: 25px;
  }
  .theme-modal .form {
    grid-gap: 10px;
  }
}

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


/* blog relinking */
.links-block {
  padding: 60px 0;
}
.links-block .block-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 70px;
}
.links-block h2.block-title {
  margin-bottom: 0;
}
.links-block .links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.links-block .links.slider-enabled {
  display: flex;
  overflow: hidden;
}
.links-block .link {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}
.links-block .link.hidden {
  display: none;
}
.links-block .link__image-holder {
  display: flex;
  position: relative;
  margin-bottom: 10px;
  width: 100%;
}
.links-block .link__image-holder:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 15px;
  background: linear-gradient(0deg, rgba(239, 110, 17, 0.9) 0%, rgba(239, 110, 17, 0.9) 100%), lightgray 50%/cover no-repeat;
  box-shadow: 0 5px 50px 0 rgba(239, 110, 17, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease-in;
}
.links-block .link__image {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 37/21;
  border-radius: 15px;
}
.links-block .link__title {
  color: var(--text);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: color 0.3s ease-in;
}
.links-block .link:hover .link__image-holder:after {
  opacity: 0.8;
}
.links-block .link:hover .link__title {
  color: var(--blue);
}
.links-block .nav-holder {
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
.links-block .links-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F5FAFF;
  cursor: pointer;
  outline: none;
  border: none;
  transition: background-color 0.3s ease-in;
}
.links-block .links-button.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.links-block .links-button svg path {
  transition: stroke 0.3s ease-in;
}
.links-block .links-button:hover {
  background-color: var(--blue);
}
.links-block .links-button:hover svg path {
  stroke: #fff;
}
.links-block .btn.show-more {
  margin: 30px auto 0;
}

@media (max-width: 1025px) {
  .links-block .link__title {
    font-size: 20px;
  }
}
@media (max-width: 769px) {
  .links-block .block-head {
    margin-bottom: 30px;
  }
  .links-block .links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 498px) {
  .links-block {
    padding: 40px 0;
  }
  .links-block .links {
    grid-template-columns: repeat(2, 1fr);
  }
  .links-block .link__title {
    font-size: 16px;
  }
}
@media (max-width: 376px) {
  .links-block .links {
    grid-template-columns: 1fr;
  }
}
/* blog relinking */
/*# sourceMappingURL=block.css.map */

/* blog links */
.blog_content,
.blog_content * {
    color: black !important;
}
.blog_content h1,
.blog_content h2,
.blog_content h3,
.blog_content h4,
.blog_content h5,
.blog_content h6 {
    color: var(--text) !important;
}
.blog_content a {
    color: #0088c4 !important;
    text-decoration: underline;
}
.blog_content ul.wp-block-list {
    list-style: none !important;
    padding-left: 24px;
}
.blog_content ul.wp-block-list li {
    position: relative;
    margin-bottom: 10px;
    line-height: 150%;
    font-size: 16px;
}
.blog_content ul.wp-block-list > li::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 4px;
    width: 14px;
    height: 14px;
    background-image: url('https://lab-td.ru/wp-content/uploads/2025/06/bullet-1.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.blog_content ul.wp-block-list ul.wp-block-list{
    padding-left: 24px;
}
.blog_content ul.wp-block-list ul.wp-block-list > li::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 5px;
    width: 14px;
    height: 14px;
    background-image: url('https://lab-td.ru/wp-content/uploads/2025/06/bullet.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.blog_content ul li::marker {
    content: none !important;
}
.blog_content .form-two-block .block-title, .blog_content .form-two-block .btn{
	color: #fff !important;
}
.blog_content .form-two-block .apperance, .blog_content .form-two-block a {
	color: rgba(255, 255, 255, 0.6) !important;
}


/* same for main text */

p, ol, li, ul {
    color: black !important;
}

ul.wp-block-list {
    list-style: none !important;
    padding-left: 24px;
}
ul.wp-block-list li {
    position: relative;
    margin-bottom: 10px;
    line-height: 150%;
    font-size: 16px;
}
ul.wp-block-list > li::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 4px;
    width: 14px;
    height: 14px;
    background-image: url('https://lab-td.ru/wp-content/uploads/2025/06/bullet-1.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
ul.wp-block-list ul.wp-block-list {
    padding-left: 24px;
}
 ul.wp-block-list ul.wp-block-list > li::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 5px;
    width: 14px;
    height: 14px;
    background-image: url('https://lab-td.ru/wp-content/uploads/2025/06/bullet.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* ul li::marker,
ol li::marker {
    content: none !important;
} */
.form-two-block .block-desc p {color:#fff !important;}

.blog_date {
	padding: 0px 10px 20px 5px;
	font-size: 16px;
	color: #777;
	font-weight: 400;
}

/* Общий стиль */
.expert {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

/* Фото */
.expert__photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
}

.expert__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Делает обрезку */
    object-position: top; /* Мобилка: показываем верх */
}

.expert__name {
    font-weight: bold;
    margin-top: 10px;
}

.expert__duty {
    font-size: 14px;
    color: #666;
}


/* ====== Планшеты и Десктоп ====== */
@media (min-width: 768px) {
    .form__holder {
        display: flex;
    }

    /* Эксперт справа */
    .expert {
        width: 300px;
        margin-left: 30px;
        flex-shrink: 0;
        justify-content: flex-start;
    }

    /* Фото на планшете и десктопе показывается полностью, без обрезки сверху */
    .expert__photo {
        width: 200px;
        height: 200px;
    }

    .expert__photo img {
        object-fit: contain;

	}
}

.portfolio-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
/*     justify-content: center; */
}

.portfolio-tag {
    padding: 8px 20px;
    background: #EAF3FF;
    border-radius: 25px;
    font-size: 15px;
    color: #1C4E91;
    transition: .3s;
    cursor: pointer;
}

.portfolio-tag.active,
.portfolio-tag:hover {
    background: #1C4E91;
    color: #fff;
}

.swiper-wrapper.loading::after {
    content: "Загрузка...";
    display: block;
    padding: 20px;
    text-align: center;
}


.case-block {
  border: 1px solid #e0e4ea;
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  background: #f9fafc;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.case-block * {
  box-sizing: border-box;
}

.case-block-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.case-block-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #1f2933;
}

.case-block-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: #e3f2ff;
  color: #1253a4;
  font-weight: 600;
}

.case-block-section {
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 16px;
}

.case-block-section:first-of-type {
  margin-top: 0;
}

.case-block-section-title {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin: 0 0 10px 0;
}


.case-block-text {
  color: #374151;
  margin: 0 0 10px 0;
}

.case-block-list {
  list-style-type: disc;       /* тип буллетов */
  list-style-position: outside; /* или inside */
  padding-left: 20px; 
  color: #374151;
}

.case-block-list li + li {
  margin-top: 4px;
}

.case-block-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #6b7280;
  margin-top: 10px;
}

.case-block-meta span {
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
}

.case-block-quote {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f1f5f9;
  font-size: 13px;
  color: #111827;
  position: relative;
}

.case-block-quote::before {
  content: "“";
  position: absolute;
  font-size: 36px;
  line-height: 1;
  opacity: 0.15;
  top: 4px;
  left: 10px;
}

.case-block-quote-text {
  margin: 0 0 6px 0;
  padding-left: 18px;
}

.case-block-quote-author {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  color: #6b7280;
}

.case-block-footer {
  margin-top: 18px;
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.case-block-pill {
  padding: 3px 8px;
  border-radius: 999px;
  background: #e5e7eb;
}
.case-block-list li::before {
  content: "•";
  color: #2563eb;
  font-weight: bold;
  margin-right: 6px;
}