/*============= ALIGNES ===============*/
:root{
  --main: #062939;
  --sec: #e58b53;
  --bg: #e9ecf1;
  --lText: #56585b;
}

.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: 100vw !important;
    max-width: unset;
    /*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-weight: 400;
  box-sizing: inherit;
}

body {
  background-color: var(--bg);
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  color: var(--main);
  font-family: Manrope;
  font-size: 16px;
}
.seo-text::-webkit-scrollbar {
  width: 3px; 
}
.seo-text::-webkit-scrollbar-track {
  background-color: var(--main);
  border-radius: 0px;
  border-left: 1.5px dashed transparent;
  border-right: 1.5px dashed transparent;
  background-clip: padding-box;
}
.seo-text::-webkit-scrollbar-thumb {
  background: var(--main);
  border-radius: 41px;
}
a {
  text-decoration: none;
  transition: all 0.3s ease-in;
  color: var(--text);
}

ul li {
  list-style-position: inside;
  font-size: 18px;
  line-height: 130%;
  list-style-type: none;
}

ol li {
  list-style-position: inside;
  font-size: 18px;
  line-height: 130%;
}

p {
  font-size: 16px;
  line-height:  130%;
}

h1.page-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 60px;
}

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-top: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}
.breadcrumbs span {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  transition: 0.3s;
}

.container {
  max-width: 1650px;
  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: transparent;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--sec);
  padding: 19px 30px 19px 67px;
  background-color: transparent;
  border: 1px solid var(--sec);
  cursor: pointer;
  border-radius: 100px;
  transition: 0.3s;
}
.btn:hover {
  padding-left: 30px;
  padding-right: 67px;
  background-color: var(--sec);
  color: white;
}
.btn:before {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  left: 3px;
  border-radius: 50%;
  background-color: var(--sec);
  background-image: url(../images/btn.svg);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.btn:hover:before {
  left: unset;
  right: 3px;
  transform: rotate(45deg);
  background-color: white;
  background-image: url(../images/btnHover.svg);
}
.btn.second {
  background: transparent;
  color: var(--main);
  border-color: var(--main);
}
.btn.second:hover {
  padding-left: 30px;
  padding-right: 67px;
  background-color: var(--main);
  color: white;
}
.btn.second:before {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background-color: var(--main);
  background-image: url(../images/btn.svg);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.btn.second:hover:before {
  left: unset;
  right: 3px;
  transform: rotate(45deg);
  background-color: white;
  background-image: url(../images/btnHoverS.svg);
}
#main,
#primary,
main {
  min-height: 64vh;
  margin-top: 135px;
}
.home #main {
  margin-top: unset;
}
.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.swiper-button-prev:hover ,
.swiper-button-next:hover {
  background: var(--main);
}
.swiper-button-disabled {
  background: white !important;
  opacity: 1 !important;
  width: 50px;
  height: 50px;
  border: 1px solid var(--main);
}
.swiper-button-disabled path {
  stroke: var(--main);
}
.block-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 40px;
}
.desc ul,
.desc ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
.desc ul li {
  padding-left: 20px;
  position: relative;
}
.desc ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  top: 5px;
  left: 0;
  position: absolute;
  background: var(--main);
  border-radius: 50%;
}
.pagination {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  padding: 0px 50px;
  gap: 25px;
  position: relative;
}
.page-numbers {
  font-size: 24px;
  font-weight: 400;
  transition: 0.3s;
  color: #929292;
}
.page-numbers.current {
  color: var(--main);
}
.page-numbers:hover {
  color: var(--main);
}
.page-numbers.active {
  color: var(--main);
}
.prev.page-numbers,
.next.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--grad);
  transition: 0.3s;
  width: 49px;
  height: 49px;
  position: absolute;
}
.prev.page-numbers {
  left: 0;
}
.prev.page-numbers svg,
.next.page-numbers svg {
  max-width: 90%;
}
.next.page-numbers {
  right: 0;
}
.prev.page-numbers:hover,
.next.page-numbers:hover {
  background: white;
  border: 1px solid var(--main);
}
.prev.page-numbers path,
.next.page-numbers path {
  transition: 0.3s;
  stroke: white;
}
.prev.page-numbers:hover path,
.next.page-numbers:hover path {
  stroke: var(--main);
}
.desc {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#modal-background {
  z-index: 100 !important;
}
.text-holder {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.text-holder ul,
.text-holder ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.text-holder p,
.text-holder li {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
}
.text-holder ul li {
  position: relative;
  padding-left: 18px;
}
.text-holder li:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  background: var(--main);
  border-radius: 50%;
  top: 9px;
  left: 0;
}
.text-holder h2 {
  font-size: 42px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 20px;
}
.text-holder h3 {
  font-size: 32px;
  font-weight: 800;
  line-height: 100%;
  margin-top: 20px;
  margin-bottom: 15px;
}
.text-holder h4 {
  font-size: 24px;
  font-weight: 800;
  line-height: 100%;
  margin-top: 15px;
  margin-bottom: 10px;
}
.text-holder h5 {
  font-size: 18px;
  font-weight: 800;
  line-height: 100%;
  margin-top: 10px;
  margin-bottom: 5px;
}
.text-holder h6 {
  font-size: 14px;
  font-weight: 800;
  line-height: 100%;
  margin-top: 15px;
  margin-bottom: 0px;
}
.nav-holder.block {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.nav-holder.block .buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

/*============ HEADER =================*/
/* Единая «стеклянная» шапка для всех страниц: читаемая над баннером и над
   светлым контентом. Отступ обеспечивается margin-top: 135px на main. */
#header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1234;
  transition: top 0.3s ease;
}
#header .header-wrapper {
  background: rgba(18, 20, 28, 0.42);
  padding: 14px 25px;
  display: flex;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  align-items: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
/* Прижатое состояние при скролле — плотнее и без верхнего зазора, чтобы
   сверху не «торчал» контент. */
#header.painted {
  top: 0;
}
#header.painted .header-wrapper {
  background: rgba(13, 15, 21, 0.88);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}
#header .header-wrapper .btn {
  border-color: white;
  color: white;
}
#header .header-wrapper .btn:before {
  background-color: white;
  background-image: url(../images/btnHoverS.svg);
}
#header .header-wrapper .btn:hover {
  background: white;
  color: var(--main);
}
#header .header-wrapper .btn:hover:before {
  background-color: var(--main);
  background-image: url(../images/btn.svg);
}
#header .logo-holder {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
#header .logo-holder img {
  width: auto;
  height: 52px;
  max-height: 52px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
#header #mobile-mnu .logo-holder img {
	filter: brightness(0) invert(1);
	height: 64px;
	width: auto;
	max-height: 64px;
}
#header .header-menu {
  display: flex;
  flex-wrap: nowrap;
  gap: 34px;
  margin: 0px 40px;
  width: auto;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
}
#header .nav-menu-element a {
  font-size: 16px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  transition: color 0.3s ease;
}
#header .info-wrapper.phones {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  align-items: flex-end;
  margin-right: 30px;
}
#header .info-name {
  font-size: 18px;
  font-weight: 600;
  color: white;
}
#header .info-name:nth-child(2){
  font-size: 14px;
  opacity: 0.6;
}
#header .info-name:hover {
  color: var(--sec);
  opacity: 1;
}
#header .nav-menu-element a:hover {
  color: var(--sec);
}
#header .header-menu .nav-menu-element.active a{
  color: var(--sec);
}
#header .header-menu .nav-menu-element.active:hover a {
  color: var(--sec);
}
#header .header-menu .nav-menu-element.active .sub-menu a {
  color: var(--lText);
}
#header .header-menu .nav-menu-element.active .sub-menu a:hover {
  color: var(--sec);
}
#header .header-menu .nav-menu-element.has-childs {
  position: relative;
  margin-right: 10px;
}
#header .nav-menu-element.has-childs > a::before {
  content: "";
  background-color: white;
  width: 2px;
  height: 5px;
  position: absolute;
  left: unset;
  right: -11px;
  top:  13px;
  margin-top: -2px;
  transform: rotate(129deg);
  transition: all 0.5s ease;
  opacity: 1;
}
#header .nav-menu-element.has-childs:hover > a::before {
  transform: rotate(45deg);
  background-color: var(--sec);
}
#header .nav-menu-element.has-childs > a::after {
  content: "";
  background-color: white;
  width: 2px;
  height: 5px;
  position: absolute;
  right: -14px;
  top: 13px;
  margin-top: -2px;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
#header .nav-menu-element.has-childs:hover > a::after {
  transform: rotate(135deg);
  background-color: var(--sec);
}
#header .header-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.15);
    z-index: 100;
    margin-top: 5px;
    transform: none !important;
}
#header .header-menu > .nav-menu-element.has-childs:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none !important;
    left: 0;
}
#header .header-menu .sub-menu .nav-menu-element a{
  font-size: 16px;
  font-weight: 400;
  color: var(--lText);
  border-bottom: 1px solid #EEEFF0;
  padding: 10px 0px;
  display: block;
}
#header .header-menu .sub-menu .nav-menu-element:hover a {
  color: var(--sec);
  border-color: var(--sec);
}
/*================ 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;
  margin-left: 10px;
  
}
#header .burger.open_menu span {
  background-color: var(--sec);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}
#header .burger.open_menu.clicked {
  background-color: var(--sec);
  
}
#header .burger.open_menu.clicked span {
  background: white;
  width: 24px;
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
  background-color: var(--main);
  padding: 20px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
  
}
#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 15px;
  top: 0px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: var(--sec);
}
#header #mobile-mnu a:hover {
  color: var(--sec);
}
#header #mobile-mnu .logo-holder  {
  font-size: 24px;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 20px;
}
#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}
#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
}
#header #mobile-mnu .menuTop li a:hover {
  color: var(--sec);
}
#header #mobile-mnu .menuTop li.active a {
  color: var(--sec);
}
#header #mobile-mnu .nav-menu-element.has-childs .sub-menu{
  display: none;
  margin-top: 10px;
}
#header #mobile-mnu .nav-menu-element.has-childs .sub-menu .nav-menu-element {
  padding-left: 15px;
  position: relative;
}
#header #mobile-mnu .nav-menu-element.has-childs .sub-menu .nav-menu-element:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 9px;
  left: 0;
  position: absolute;
  background: var(--sec);
}
#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  width: 100%;
	color: var(--sec);
}
#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;
  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;
  font-weight: 450;
  color: var(--sec);
}
#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--sec);
}
#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .email__holder .email__item svg path {
  stroke: var(--sec);
}
#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;
  font-weight: 450;
  color: var(--sec);
}
#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--sec);
}
#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .phones__holder .phone__item svg path {
  stroke: var(--sec);
}
#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%;
  border: 1px solid var(--sec);
  color: var(--sec);
  transition: background-color .3s ease-in;
}
#header #mobile-mnu .soc__holder .soc__item svg,
#header #mobile-mnu .soc__holder .soc__item img {
  max-width: 60%;
  max-height: 60%;
}
#header #mobile-mnu .soc__holder .soc__label {
  color: var(--sec);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: color .3s ease-in;
}
#header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: var(--sec);
  color: white;
}
#header #mobile-mnu .soc__holder .soc__item:hover path {
  fill: white;
}
#header #mobile-mnu .soc__holder .soc__item:hover .soc__label {
  color: white;
}
#header #mobile-mnu .soc__holder .social-fallback-icon,
#footer .footer-social-link .social-fallback-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
#header #mobile-mnu .soc__holder .social-fallback-icon path,
#footer .footer-social-link .social-fallback-icon path {
  fill: none;
  stroke: var(--sec);
}
#header #mobile-mnu .soc__holder .soc__item:hover .social-fallback-icon path,
#footer .footer-social-link:hover .social-fallback-icon path {
  fill: none;
  stroke: var(--main);
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}

/*============ FOOTER ===============*/
#footer {
  background: var(--main);
  border-top: 1px solid rgba(255, 255, 255, 0.367);
}
#footer .info-holder {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.367);
}
#footer .info-item {
  padding: 50px;
  display: flex;
  flex-direction: column;
}
#footer .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .icon svg,
#footer .icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}
#footer .icon svg path {
  stroke: var(--sec);
  transition: 0.3s;
}
#footer .info-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
#footer .info-name,
#footer .info-name p {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: white;
	    display: inline-flex;
    max-width: 100%;
}
#footer a.info-name:hover {
  color: var(--sec);
}

#footer .footer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 0px;
}
#footer .footer-dev{
  font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: white;
}

#footer .time p {
  color: white;
  font-size: 16px;
}
#footer .footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
#footer .logo-holder {
  display: flex;
  max-width: 290px;
}
#footer .logo-holder img {
  width: 100%;
  display: block;
  object-fit: contain;
	filter: invert(1) hue-rotate(180deg);
}
#footer .foot-menu {
  display: flex;
  gap: 50px;
}
#footer .nav-menu-element a {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
}
#footer .nav-menu-element a:hover {
  color: var(--sec);
}
#footer .nav-menu-element.active a{
  color: var(--sec);
}
#footer .nav-menu-element.active:hover a {
  color: var(--sec);
}
#footer .nav-menu-element.active .sub-menu a {
  color: var(--lText);
}
#footer .nav-menu-element.active .sub-menu a:hover {
  color: var(--sec);
}
#footer .nav-menu-element.has-childs {
  position: relative;
  margin-right: 10px;
}
#footer .nav-menu-element.has-childs > a::before {
  content: "";
  background-color: white;
  width: 2px;
  height: 5px;
  position: absolute;
  left: unset;
  right: -11px;
  top:  13px;
  margin-top: -2px;
  transform: rotate(129deg);
  transition: all 0.5s ease;
  opacity: 1;
}
#footer .nav-menu-element.has-childs:hover > a::before {
  transform: rotate(45deg);
  background-color: var(--sec);
}
#footer .nav-menu-element.has-childs > a::after {
  content: "";
  background-color: white;
  width: 2px;
  height: 5px;
  position: absolute;
  right: -14px;
  top: 13px;
  margin-top: -2px;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
#footer .nav-menu-element.has-childs:hover > a::after {
  transform: rotate(135deg);
  background-color: var(--sec);
}
#footer .sub-menu {
  position: absolute;
  top: 0;
  width: max-content;
  height: max-content;
  left: 50%;
  right: 0;
  opacity: 0;
  transform: translate(-32%, -43%);
  transition: all 0.2s ease;
  transition-delay: 0.15s;
  visibility: hidden;
  z-index: -100;
  display: flex;
  flex-direction: column;
  background: white;
  min-width: fit-content;
  padding: 20px 30px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
#footer .nav-menu-element.has-childs:hover .sub-menu {
  opacity: 1;
  left: 0%;
  transform: translate(-5%, -100%);
  visibility: visible;
  z-index: 100;
}
#footer .sub-menu .nav-menu-element a{
  font-size: 16px;
  font-weight: 400;
  color: var(--lText);
  border-bottom: 1px solid #EEEFF0;
  padding: 10px 0px;
  display: block;
}
#footer .sub-menu .nav-menu-element a:before {
  content: "";
  width: 8px;
  height: 8px;
  top: 28px;
  left: 28px;
  position: absolute;
  background: var(--grad);
  border-radius: 50%;
}
#footer .sub-menu .nav-menu-element:hover a {
  color: var(--main);
  border-color: #EEEFF0;
}
#footer .line{
  height: 1px;
  background: white;
  opacity: 0.3;
}
#footer .bottom-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 30px 0px;
}
#footer .privacy-holder {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: white;
}
#footer .privacy-holder:hover {
  color: var(--sec);
}
#footer .dev {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  display: flex;
  gap: 5px;
}
#footer .dev:hover {
  color: var(--sec);
}
#footer .dev path {
  transition: all 0.3s ease-in;
  fill: var(--lText);
}
#footer .dev:hover path {
  fill: var(--sec);
}
#footer .rights {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: white;
}


/* ============== 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: 680px;
  max-height: 90vh;
  max-width: 90vw;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform .3s ease-in;
  z-index: 9999;
  overflow: hidden;
  background: #F5F5F5;
  padding: 40px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}
.theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.theme-modal .close-modal {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.theme-modal .close-modal path {
  transition: 0.3s;
}
.theme-modal .close-modal:hover path {
 stroke: var(--main);
}
.theme-modal .modal-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 20px;
}
.theme-modal .modal-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  margin-bottom: 20px;
}
.theme-modal .form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.theme-modal .form-top {
  display: flex;
  gap: 20px;
}
.theme-modal .form-top .left-side  {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 10px;
}
.theme-modal .form-top .form-floating.text{
  width: 50%;
  height: 120px;
}
.theme-modal .form-top .form-floating.text textarea {
  height: 100%;
  border: 1px solid black;
  padding-left: 20px;
  border-radius: 3px;
}
.theme-modal .form-top .form-floating.text label {
  padding-left: 20px;
}
.theme-modal .form-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  justify-content: space-between;
}
.theme-modal .privacy {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  width: 50%;
}
.theme-modal .privacy a {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--main);
  text-decoration: underline;
}
.theme-modal .privacy a:hover {
  color: var(--sec);
}
#modal-success.theme-modal {
  padding: 40px 20px 20px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: unset;
  height: fit-content;
  width: fit-content;
}
#modal-success.theme-modal .close-modal {
  top: 10px;
  right: 10px;
}
.theme-modal .close-modal path {
  transition: 0.3s;
}
.theme-modal .close-modal:hover path{
  stroke: var(--sec);
}
#modal-success.theme-modal .modal-title {
  text-align: center;
}
.form-floating {
  position: relative;
  width: 100%;
  display: flex;
}
.form-control {
  display: block;
  padding: 15px 20px 15px 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color .5s ease-in-out,box-shadow .5s ease-in-out;
  width: 100%;
  outline: none;
  cursor: pointer;
  position: relative;
  border: unset;
  border-bottom: 1px solid black;
  background: transparent;
  height: fit-content;
}
.form textarea {
  resize: none;
}
.form-control.text {
  overflow: auto;
}
.form-control:focus {
  border-color: var(--main);
}
.form-control::placeholder {
  transition: 0.5s;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  opacity: 0;
}
.form-control:focus::placeholder {
  opacity: 1;
}
.form input.error,
.form textarea.error {
  border-color: red;
}
.form .form-floating label{
  position: absolute;
  top: 15px;
  color: var(--lText);
  left: 0;
  z-index: 2;
  height: 100%;
  pointer-events: none;
  transition: opacity .2s ease-in-out,transform .2s ease-in-out;
  font-size: 16px;
  font-weight: 400;
}
.form .form-floating .form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
  transform: scale(1) translateY(-10px) translateX(0px);
  font-size: 10px;
  font-weight: 400;
  line-height: 150%;
}
#file {
  display: none;
}
.file {
  background: var(--primary, linear-gradient(90deg, #0077C2 0%, #59A5F5 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 100%;
}

#modal-review .form {
  gap: 20px;
}
/* ============== Pages Start============= */
.error404 .error-holder {
  background-image: url(../images/404.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.error404 .error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0px;
}
.error404 .error-title {
  font-size: 300px;
  font-weight: 800;
  line-height: 100%;
  background: var(--main);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.error404 .error-subtitle {
  font-size: 42px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.error404 .error-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  margin-bottom: 40px;
  color: var(--lText);
  width: 55%;
}
.privacy-policy .content {
  margin-bottom: 40px;
}
.privacy-policy .content p strong {
  font-weight: 600;
}
.page-id-215 .offer-block {
  padding-top: 80px;
}
.page-id-99 h1.page-title {
  margin-bottom: 30px;
}







/* ============== Archive-news Start ============= */
#archive-news {
  padding-bottom: 100px;
}
#archive-news .news-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#archive-news .news-item {
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  position: relative;
  width: calc((100% - 20px) / 2);
  height: auto;
  background: white;
}
#archive-news .news-item .gallery {
  width: 100%;
  max-height: 410px;
  display: flex;
}
#archive-news .news-item .gallery-wrapper {
  width: auto;
}
#archive-news .news-item .gallery-img {
  box-sizing: border-box;
}
#archive-news .news-item .gallery-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#archive-news .bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 40px;
  background: white;
  height: auto;
}
#archive-news .bottom-left {
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#archive-news .bottom-left  .data {
  color: var(--lText);
  font-size: 14px;
}
#archive-news .name {
  font-size: 22px;
  font-weight: 700;
  line-height: 135%;
  transition: 0.3s;
}
#archive-news .news-item:hover .name {
  color: var(--sec);
}
#archive-news .link {
  min-width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main);
  transition: 0.3s;
}
#archive-news .news-item:hover .link{
  background: var(--sec);
}
#archive-news .news-item:hover .link {
  transform: rotate(45deg);
}
#archive-news .category {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40px;
  left: 40px;
  width: fit-content;
  color: white;
  font-size: 16px;
  font-weight: 400;
  z-index: 10;
  border-radius: 100px;
  padding: 10px 20px;
}
#archive-news .category.news {
  background: var(--main);
}
#archive-news .category.stocks {
  background: var(--sec);
}
#archive-news .swiper-pagination {
  position: absolute;
  top: 50px;
  right: 40px;
  left: unset;
  display: flex;
  gap: 10px;
  width: fit-content;
  z-index: 12;
  height: 10px;
}
#archive-news .swiper-pagination-bullet {
  height: 10px;
  margin: unset;
  background: white;
  width: 10px;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}
#archive-news .swiper-pagination-bullet:hover {
  background: var(--sec);
}
#archive-news .swiper-pagination-bullet-active {
  width: 35px;
  background: var(--sec);
}
/* ============== Archive-news End ============= */







/* ============== Single-news Start ============= */
.single main {
  margin-top: unset;
}
.single-page .single-top {
  height: 900px;
  background-size: cover;
  position: relative;
  padding: 50px 150px;
  display: flex;
  align-items: flex-end;
}
.single-page .single-top:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../images/banner.png);
  pointer-events: none;
}
#single-news h1.page-title {
  color: white;
  position: relative;
  width: 80%;
  margin-bottom: 0px;
}
#single-news .desc {
  padding-top: 30px;
  padding-bottom: 100px;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
}
/* ============== Single-news End ============= */







/* ============== Archive-works Start ============= */
#archive-works h1.page-title {
  margin-bottom: 30px;
}
#archive-works .tabs__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
#archive-works .tabs__btn {
  font-size: 16px;
  font-weight: 400;
  color: var(--lText);
  cursor: pointer;
  transition: 0.3s;
  background: white;
  padding: 10px 20px;
  border-radius: 100px;
}
#archive-works .tabs__btn.active,
#archive-works .tabs__btn:hover {
  background: var(--sec);
  color: white;
}
#archive-works .works-wrapper {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  padding-bottom: 40px;
}
#archive-works .works-item {
  display: flex;
  flex-direction: column;
  position: relative;
  background: white;
}
#archive-works .works-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}
#archive-works .works-img .original-img {
  opacity: 1;
  transition: 0.5s;
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
#archive-works .works-item:hover .original-img {
  opacity: 0;
}
#archive-works .works-img .hover-img {
  opacity: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
#archive-works .works-item:hover .hover-img {
  opacity: 1;
}
#archive-works .works-item:hover .works-img .hover-img img{
  transform: scale(1.1);
}
#archive-works .works-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 0.7;
  transition: 0.5s;
  z-index: 1;
}
#archive-works .works-img.unhovered:hover .original-img {
  opacity: 1;
}
#archive-works .works-img.unhovered:hover .original-img img {
  transform: scale(1.1);
}
#archive-works .works-img--design-collage {
  align-items: stretch;
  justify-content: stretch;
  background: #f4f5f3;
  padding: 16px;
}
#archive-works .design-work-collage {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
#archive-works .design-work-stage {
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
}
#archive-works .design-work-stage-img {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: var(--bg);
}
#archive-works .design-work-stage-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: auto;
  transition: 0.5s;
}
#archive-works .works-item:hover .design-work-stage-img img {
  transform: scale(1.04);
}
#archive-works .design-work-stage figcaption {
  padding: 9px 10px 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  color: var(--main);
  background: #fff;
}
#archive-works .cat {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  color: white;
  top: 20px;
  left: 20px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: var(--main);
  width: fit-content;
  z-index: 2;
  transition: 0.3s;
}
#archive-works .works-item:hover .cat {
  background: var(--sec);
}
#archive-works .cat.sec-color {
  background: var(--sec);
	display:none;
}
#archive-works .works-item:hover .cat.sec-color {
  background: var(--main);
}
#archive-works .info-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 25px 40px;
  gap: 10px;
}
#archive-works .info-wrapper .left-side {
  width: 80%;
  display: flex;
  flex-direction: column;
}
#archive-works .info-wrapper .left-side .name {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  transition: 0.3s;
  margin-bottom: 10px;
}
#archive-works .works-item:hover .name {
  color: var(--sec);
}
#archive-works .street {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
  transition: 0.3s;
}
#archive-works .works-item:hover .street {
  color: var(--sec);
}
#archive-works .city {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  margin-bottom: 15px;
}
#archive-works .chars-wrapper {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  width: 80%;
  gap: 20px 100px;
}
#archive-works .archive-char-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#archive-works .char-top {
  display: flex;
  gap: 4px;
  align-items: center;
}
#archive-works .char-icon {
  width: 16px;
  height: 16px;
  display: flex;
}
#archive-works .char-icon svg,
#archive-works .char-icon img  {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}
#archive-works .char-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
}
#archive-works .char-value {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}
#archive-works .icon {
  min-width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--main);
  transition: 0.3s;
}
#archive-works .works-item:hover .icon {
  background: var(--sec);
  transform: rotate(45deg);
}
/* ============== Archive-works End ============= */








/* ============== Single-works Start ============= */
#single-works .banner-gallery {
  position: relative;
  width: 100%;
  height: 100%;
}
#single-works .single-top {
  padding: unset;
  position: relative;
}
#single-works .banner-gallery-img {
  box-sizing: border-box;
}
#single-works .banner-gallery-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#single-works .banner-gallery-img:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../images/banner.png);
  pointer-events: none;
}
#single-works .single-top .swiper-button-prev,
#single-works .single-top .swiper-button-next {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sec);
  border: unset;
}
#single-works .single-top .swiper-button-prev:hover,
#single-works .single-top .swiper-button-next:hover {
  background: var(--main);
}
#single-works .single-top .swiper-button-prev {
  left: 50px;
}
#single-works .single-top .swiper-button-next {
  right: 50px;
}
#single-works .banner-info {
  position: absolute;
  bottom: 85px;
  left: calc((100% - 1620px) / 2);
  display: flex;
  flex-direction: column;
  z-index: 12;
}
#single-works h1.page-title {
  color: white;
  margin-bottom: 15px;
  width: 60%;
}
#single-works .banner-subtitle {
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
#single-works .chars {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin: 30px 0px;
}
#single-works .char-item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: center;
  background: white;
  gap: 10px;
}
#single-works .char-value {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  color: var(--sec);
}
#single-works .char-value span {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  color: var(--sec);
}
#single-works .char-name {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
}
#single-works .texts-holder {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px 80px;
}
#single-works .text-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#single-works .text-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}
#single-works .text p{
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
}
#single-works .people-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  background: white;
  margin-bottom: 60px;
  padding: 40px 50px;
}
#single-works .people-name {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 5px;
}
#single-works .people-post {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 20px;
  color: var(--sec);
}
#single-works .gallery-block {
  padding: 60px 0px;
}
/* ============== Single-works End ============= */






/* ============== Archive-services Start ============= */
#archive-services .works-block {
  padding-bottom: 60px;
}
#archive-services .services-wrapper {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  padding-bottom: 30px;
}
#archive-services .services-item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 45px 40px;
  height: 480px;
}
#archive-services .services-item:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.62) 100%);
  z-index: 2;
  pointer-events: none;
  transition: background 0.4s ease;
}
#archive-services .services-item:hover:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.52) 100%);
}
#archive-services .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
#archive-services .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.5s;
}
#archive-services .services-item:hover img {
  transform: scale(1.1);
}
#archive-services .info {
  display: flex;
  margin-top: auto;
  position: relative;
  z-index: 3;
}
#archive-services .left-side {
  display: flex;
  flex-direction: column;
  width: 80%;
}
#archive-services .name {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
  color: white;
}
#archive-services .short-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: white;
}
#archive-services .services-item .icon {
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  transition: 0.3s;
  margin-left: auto;
}
#archive-services .services-item .icon path {
  transition: 0.3s;
}

#archive-services .services-item:hover .icon {
  transform: rotate(45deg);
  width: 60px;
  min-width: 60px;
  height: 60px;
  background: var(--sec);
}
#archive-services .services-item:hover path {
  stroke: white;
}
/* ============== Archive-services End ============= */









/* ============== Single-services Start ============= */
#single-services .banner-wrapper {
  position: relative;
  height: 520px;
  margin-bottom: 30px;
  background-size: cover;
  overflow: hidden;
}
#single-services .gallery {
  height: 100%;
}
#single-services .gallery-img {
  box-sizing: border-box;
}
#single-services .gallery-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#single-services .banner-wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url(../images/banner.png);
  z-index: 12;
}
#single-services .banner-info {
  position: absolute;
  display: flex;
  flex-direction: column;
  bottom: 85px;
  left: calc((100% - 1620px) / 2);
  z-index: 12;
  max-width: 1000px;
}
#single-services .title {
  color: white;
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
  width: 70%;
}
#single-services .subtitle {
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
#single-services .modal-btn {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(15px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 280px;
  bottom: 50px;
  right: calc((100% - 1620px) / 2);
  z-index: 12;
  cursor: pointer;
  transition: 0.3s;
}
#single-services .modal-btn:hover {
  background: white;
  backdrop-filter: unset;
}
#single-services .btn-title {
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 30px;
  transition: 0.3s;
}
#single-services .modal-btn:hover .btn-title {
  color: var(--main);
}
#single-services .icon {
  min-width: 54px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  transition: 0.3s;
}
#single-services .icon path {
  transition: 0.3s;
}
#single-services .modal-btn:hover .icon {
  background: var(--sec);
}
#single-services .modal-btn:hover .icon path {
  stroke: white;
}
#single-services .prices-holder {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
#single-services .price-title {
  margin-bottom: 0px;
}
#single-services .prices {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0px 20px;
}
#single-services .price-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 30px 0px;
  border-bottom: 1px solid rgba(86, 88, 91, 0.20);
}
#single-services .price-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}
#single-services .price-value {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  color: var(--sec);
	white-space: nowrap;
}
#single-services .btn.second {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
/* ============== Single-services End ============= */











@media (max-width: 1650px) {
  #header .header-menu {
    margin: 0px 15px;
    gap: 30px;
    width: auto;
  }
  #single-news .single-top {
    height: 800px;
  }
  #single-works .banner-info {
    left: 15px;
    bottom: 15px;
  }
  #single-works h1.page-title {
    width: 100%;
  }
  #single-works .single-top {
    height: 800px;
  }
  #archive-services .services-item {
    height: 400px;
    padding: 15px;
  }
  #archive-services .name {
    font-size: 20px;
  }
  #archive-services .short-desc {
    font-size: 14px;
  }
  #archive-services .services-item .icon {
    margin-top: auto;
  }
  #single-services .banner-info {
    left: 15px;
    width: calc(100% - 30px);
    bottom: 110px;
    max-width: unset;
  }
  #single-services .title {
    width: 100%;
  }
  #single-services .modal-btn {
    width: calc(100% - 30px);
    padding: 15px;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    gap: 10px;
    left: 15px;
    bottom: 15px;
  }
  #single-services .btn-title {
    margin-bottom: 0px;
  }
}

@media (max-width: 1450px) {
  #header .header-wrapper {
    padding: 15px;
  }
  #header .header-menu {
    display: none;
  }
  #header .burger.open_menu {
    display: flex;
    
  }
  #footer .logo-holder {
    max-width: 160px;
  }
  #footer .footer-wrapper {
    padding: 15px 0px;
  }
  #footer .foot-menu {
    gap: 15px;
  }
  #footer .nav-menu-element a {
    font-size: 14px;
  }
  #single-news .single-top {
    height: 700px;
    padding: 100px 15px 15px 15px;
  }
  #archive-works .chars-wrapper {
    width: 100%;
    gap: 20px;
  }
  #archive-works .info-wrapper {
    padding: 15px;
  }
  #archive-works .street {
    font-size: 20px;
  }
  #single-works .single-top {
    height: 700px;
  }
  #single-services .banner-wrapper {
    height: 460px;
  }
}

@media (max-width: 1200px) {
  #footer .info-item {
    padding: 15px;
  }
  #footer .info-wrapper {
    margin-top: 10px;
  }
  #footer .info-name, #footer .info-name p {
    font-size: 14px;
  }
  h1.page-title {
    font-size: 52px;
    margin-bottom: 40px;
  }
  #archive-news,
  #single-news .desc {
    padding-bottom: 80px;
  }
  #archive-news .bottom {
    padding: 15px;
  }
  #archive-news .name {
    font-size: 18px;
  }
  #archive-news .category {
    top: 5px;
    left: 5px;
    padding: 5px;
  }
  #single-news .single-top {
    height: 600px;
  }
  #single-services .title {
    font-size: 32px;
  }
  #single-works .char-value {
    font-size: 20px;
  }
  #single-works .char-value span {
    font-size: 16px;
  }
  #single-works .char-item {
    padding: 10px;
  }
  #single-works .single-top {
    height: 600px;
  }
  #archive-news .swiper-pagination {
    top: 10px;
    right: 10px;
  }
  #archive-services .services-wrapper {
    grid-template-columns: repeat(2,1fr);
  }
  #archive-services .block-top {
    margin-bottom: 40px;
  }
  #archive-services .link-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }
  #single-services .banner-wrapper {
    height: 400px;
  }
}

@media (max-width: 996px) {
  #footer .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  #footer .sub-menu {
    padding: 5px 15px;
  }
  #footer .sub-menu .nav-menu-element a {
    font-size: 12px;
    padding: 5px 0px;
  }
  #footer .icon {
    width: 20px;
    height: 20px;
  }
  h1.page-title {
    font-size: 42px;
    margin-bottom: 30px;
  }
  .breadcrumbs span,
  .breadcrumbs {
    font-size: 14px;
  }
  #archive-news,
  #single-news .desc {
    padding-bottom: 60px;
  }
  #archive-news .news-wrapper {
    gap: 10px;
  }
  #archive-news .link {
    min-width: 40px;
    height: 40px;
  }
  #archive-news .name {
    font-size: 16px;
  }
  #single-news .single-top {
    height: 500px;
  }
  #single-news h1.page-title {
    width: 100%;
  }
  .text-holder p, .text-holder li,
  #single-works .text p {
    font-size: 18px;
  }
  #archive-works .char-value {
    font-size: 16px;
  }
  #archive-works .char-name {
    font-size: 12px;
  }
  #single-works .people-wrapper {
    padding: 15px;
  }
  .block-title {
    margin-bottom: 30px;
    font-size: 32px;
  }
  #single-works .chars {
    grid-template-columns: repeat(2,1fr);
  }
  #single-works .texts-holder {
    gap: 30px;
  }
  #single-works .single-top {
    height: 500px;
  }
  #single-works .single-top .swiper-button-next {
    right: 15px;
    width: 40px;
    height: 40px;
    transform: translateY(-20px);
  }
  #single-works .single-top .swiper-button-prev {
    left: 15px;
    width: 40px;
    height: 40px;
    transform: translateY(-20px);
  }
  #archive-services .block-top {
    margin-bottom: 30px;
  }
  #single-services .banner-wrapper {
    height: 360px;
  }
  #single-services .prices {
    margin-top: 20px;
  }
  #single-services .price-item {
    padding: 10px 0px;
  }
  #single-services .price-name {
    font-size: 16px;
  }
  #single-services .price-value {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #footer .bottom-wrapper {
    padding: 10px 0px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  #footer .privacy-holder,
  #footer .dev,
  #footer .rights {
    font-size: 12px;
  }
  #header .container {
    padding: unset;
  }
  #header .header-wrapper {
    border-radius: 0px 0px 10px 10px;
    padding: 5px;
  }
  #header {
    top: 0px;
  }
  .btn {
    padding: 7px 10px 8px 41px;
    font-size: 12px;
  }
  .btn:hover,
  .btn.second:hover {
    padding-left: 10px;
    padding-right: 41px;
  }
  .btn:before,
  .btn.second:before {
    width: 30px;
    height: 30px;
    left: 1px;
  }
  #footer .foot-menu {
    flex-wrap: wrap;
    gap: 20px;
  }
  .theme-modal .form-top {
    flex-direction: column;
    gap: 10px;
  }
  .theme-modal .form-top .left-side {
    width: 100%;
  }
  .theme-modal .form-top .form-floating.text {
    width: 100%;
  }
  .theme-modal {
    padding: 40px 15px 15px 15px;
  }
  .theme-modal .modal-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .theme-modal .form-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .theme-modal .privacy {
    width: 100%;
    font-size: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .theme-modal .form {
    gap: 10px;
  }
  .theme-modal .privacy a {
    font-size: 12px;
  }
  #footer .info-holder {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  #footer .info-item {
    padding: 10px 15px;
    flex-direction: row;
    gap: 10px;
  }
  #footer .info-wrapper {
    margin-top: unset;
  }
  h1.page-title {
    margin-bottom: 30px;
    font-size: 32px;
  }
  #main, #primary {
    margin-top: 60px;
  }
  #archive-news .news-wrapper {
    flex-direction: column;
  }
  #archive-news .news-item {
    width: 100%;
  }
  #single-news .single-top {
    height: 400px;
  }
  .text-holder p, .text-holder li,
  #single-works .text p {
    font-size: 16px;
  }
  .theme-modal {
    width: 95%;
  }
  #archive-works .works-wrapper {
    display: flex;
    flex-direction: column;
  }
  #archive-works .works-img--design-collage {
    height: auto;
    min-height: 420px;
  }
  #archive-works .design-work-collage {
    grid-template-columns: 1fr;
  }
  #single-works .people-name {
    font-size: 24px;
  }
  .block-title,
  #single-services .title {
    font-size: 28px;
  }
  #single-works .texts-holder {
    display: flex;
    flex-direction: column;
  }
  #archive-services .services-item {
    height: 300px;
  }
  #archive-services .info {
    flex-direction: column;
    gap: 5px;
  }
  #archive-services .left-side {
    width: 100%;
  }
  #archive-services .services-item .icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  #archive-services .name {
    font-size: 20px;
  }
  #archive-services .short-desc {
    font-size: 14px;
  }
  #archive-services .block-top {
    flex-direction: column;
    align-items: unset;
  }
  #archive-services .block-title {
    width: 100%;
  }
  #archive-services .link-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    margin-left: auto;
  }
  #archive-services .link-icon p {
    font-size: 13px;
  }
  main {
    margin-top: 60px;
  }
  #single-services .banner-wrapper {
    height: 300px;
  }
  #single-services .modal-btn {
    flex-direction: column;
    padding: 5px;
  }
  #single-services .icon {
    margin-right: auto;
  }
  #single-services .btn-title {
    font-size: 12px;
  }
  .error404 .error-title {
    font-size: 120px;
  }
  .error404 .error-subtitle {
    font-size: 24px;
  }
  .error404 .error-desc {
    width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
/*   #header .logo-holder {
    max-width: 150px;
  } */
	#header .header-wrapper .btn {
		display: none;
	}
  #header .info-wrapper.phones {
    margin-right: 10px;
  }
  #header .info-name {
    font-size: 14px;
  }
  h1.page-title,
  .block-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  #archive-news,
  #single-news .desc {
    padding-bottom: 40px;
  }
  #archive-news .bottom {
    flex-direction: column;
    gap: 5px;
  }
  #archive-news .link {
    margin-left: auto;
  }
  #archive-news .category {
    font-size: 12px;
  }
  #single-news .single-top {
    height: 300px;
  }
  .text-holder p, .text-holder li {
    font-size: 14px;
  }
  #archive-works .cat {
    padding: 5px 10px;
    top: 10px;
    left: 10px;
    font-size: 12px;
  }
  #archive-works .icon {
    min-width: 40px;
    height: 40px;
  }
  #single-services .title {
    font-size: 24px;
  }
  #single-works .gallery-block {
    padding: 40px 0px;
  }
  #single-works .banner-info {
    width: calc(100% - 30px);
  }
  #single-works h1.page-title {
    margin-bottom: 10px;
  }
  #single-works .banner-subtitle {
    font-size: 12px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
  }
  #archive-news .bottom-left {
    width: 100%;
  }
  #archive-services .block-top {
    margin-bottom: 20px;
  }
  #single-services .banner-wrapper {
    height: auto;
    min-height: 300px;
    display: flex;
  }
  #single-services .gallery {
    height: auto;
  }
  #single-services .icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }
  #single-services .modal-btn {
    width: auto;
    max-width: calc(100% - 30px);
    align-items: flex-start;
  }
  #single-services .prices {
    display: flex;
    flex-direction: column;
  }
  #single-services .btn.second {
    margin-top: 20px;
  }
  #archive-works .tabs__btn {
    padding: 5px 10px;
    font-size: 14px;
  }
  #archive-works .tabs__btns {
    gap: 10px;
  }
}

@media (max-width: 498px) {
  #header .header-wrapper {
    flex-wrap: wrap;
/*     gap: 10px; */
  }
  #header .logo-holder {
    width: 50%;
  }
  #header .info-wrapper.phones {
    width: 50%;
  }
  #header .burger.open_menu {
    margin-left: auto;
  }
  #main, #primary {
    margin-top: 100px;
  }
  #archive-works .info-wrapper {
    flex-direction: column;
  }
  #archive-works .icon {
    margin-left: auto;
  }
  #archive-works .info-wrapper .left-side {
    width: 100%;
  }
  #archive-works .works-img--design-collage {
    min-height: 0;
  }
  #archive-works .design-work-stage-img {
    aspect-ratio: 4 / 3;
    flex: none;
  }
  #single-works .chars {
    display: flex;
    flex-direction: column;
  }
  #archive-services .services-wrapper {
    display: flex;
    flex-direction: column;
  }
  main {
    margin-top: 90px;
  }
  #single-services .price-name,
  #single-services .price-value { 
    font-size: 14px;
  }
}


.grampus-cookie-notice {
    display: none;
    position: sticky;
    bottom: 0;
    margin: 0 auto;
    width: 80%;
    height: fit-content;
    padding: 10px 0;
    z-index: 2000;
    background-color: var(--cookie-bg, #fff);
    padding: 30px;
    border-radius: 20px;
}

.cookie-notice-container{
    flex-direction: row;
}

.grampus-cookie-notice p{
    text-align: center;
}

.grampus-cookie-accept-button{
    background-color: black;
    border: 1px solid black;
    border-radius: 10px;
}

@media (max-width: 600px){
    .grampus-cookie-accept-button{
        width: 100%;
    }
    .cookie-notice-container{
    flex-direction: column;
    }
}


.policy-checkbox input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        min-width: 24px;
        min-height: 24px;
        border: 1px solid #ccc;
        border-radius: 2px;
        outline: none;
        cursor: pointer;
        position: relative;
        vertical-align: middle;
        border: 1px solid #000000;
        padding: 0;
    }
    
    /* Стиль для отмеченного чекбокса */
    .policy-checkbox input[type="checkbox"]:checked {
        background-color: #007bff;
        border-color: #007bff;
    }
    
    /* Галочка внутри чекбокса */
    .policy-checkbox input[type="checkbox"]:checked::after {
        content: "✓";
        position: absolute;
        color: white;
        font-size: 12px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    /* Стиль для ошибки (только чекбокс) */
    .policy-checkbox input[type="checkbox"].error {
        border-color: red;
        box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
    }
    
    .policy-checkbox{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding-top: 20px;
    align-items: center;
    }
    
    #consent-checkbox,
    .policy-checkbox input[type="checkbox"]{
        width: 20px !important;
        height: 20px !important;
        border: 1px solid #000000 !important;
    }

.policy-checkbox label{
        width: 90% !important;
    }


.policy-checkbox a:hover {
    color: black;
}



/* Ошибка для инпута — красится и border, и текст */
.form .form-control.error {
    border-color: red;
    color: red;
}



/* Ошибка для label (если есть) */
.form .form-floating .form-control.error ~ label {
    color: red;
}

.privacy-policy .content p
{
	margin-bottom:20px;
}


.works-block .cat.sec-color {
display:none;
}

.contacts-column {
    display: flex;
    flex-direction: column;
    gap: 10px;    
    margin-left: auto;
}

.contacts-group {
    display: flex;
    flex-direction: column;
}

.contacts-link {
    white-space: nowrap;
}

@media (max-width: 767px) {
    .contacts-link {
        font-size: 12px !important;
    }
}

.repair-offer-section,
.repair-packages-section,
.repair-trust-section {
    margin: 70px 0;
}

.repair-offer-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: end;
    padding: 36px 0;
    border-top: 1px solid rgba(6, 41, 57, 0.14);
    border-bottom: 1px solid rgba(6, 41, 57, 0.14);
}

.repair-offer-section .section-label {
    margin-bottom: 12px;
    color: var(--sec);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.repair-offer-section p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--lText);
    font-size: 18px;
    line-height: 150%;
}

.repair-offer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.repair-packages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.repair-package,
.repair-trust-item {
    border: 1px solid rgba(6, 41, 57, 0.14);
    padding: 24px;
    background: #fff;
}

.repair-package-name,
.repair-trust-title {
    font-size: 22px;
    line-height: 120%;
    font-weight: 700;
    color: var(--main);
}

.repair-package-price {
    margin-top: 14px;
    font-size: 28px;
    line-height: 120%;
    font-weight: 700;
}

.repair-package-desc,
.repair-trust-text {
    margin-top: 14px;
    color: var(--lText);
    line-height: 150%;
}

.repair-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

@media (max-width: 1100px) {
    .repair-offer-section {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .repair-offer-actions {
        justify-content: flex-start;
    }

    .repair-packages,
    .repair-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .repair-offer-section,
    .repair-packages-section,
    .repair-trust-section {
        margin: 44px 0;
    }

    .repair-packages,
    .repair-trust-grid {
        grid-template-columns: 1fr;
    }

    .repair-offer-actions .btn {
        width: 100%;
    }
}

/*============ UX-ДОРАБОТКИ (2026-06) =================*/

/* Плавный переход к калькулятору по ссылке из хиро и учёт фиксированной шапки. */
html {
  scroll-behavior: smooth;
}
:target,
#repair-calculator,
.calculator-block {
  scroll-margin-top: 125px;
}

/* Изображения появляются плавно без blur-плейсхолдера. */
@keyframes theme-image-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mainbanner-block .gallery-img img,
.single-page .banner-wrapper .gallery-img img,
.services-block .services-item .img img,
#archive-services .services-item .img img,
.about-block .gallery-img img,
.gallery-block .gallery-img img,
.works-block .works-img img,
#archive-works .works-img img,
.taxonomy-works .works-img img,
.design-pipeline-block .stage-image img {
  filter: none;
  opacity: 1;
  animation: theme-image-fade-in 0.35s ease both;
}

.services-block .services-item:before,
#archive-services .services-item:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.62) 100%);
}

.services-block .services-item:hover:before,
#archive-services .services-item:hover:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.52) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .mainbanner-block .gallery-img img,
  .single-page .banner-wrapper .gallery-img img,
  .services-block .services-item .img img,
  #archive-services .services-item .img img,
  .about-block .gallery-img img,
  .gallery-block .gallery-img img,
  .works-block .works-img img,
  #archive-works .works-img img,
  .taxonomy-works .works-img img,
  .design-pipeline-block .stage-image img {
    animation: none;
  }
}

/* Карточка портфолио без второго (hover) фото — не показываем пустой дубль. */
.works-img.unhovered .hover-img {
  display: none;
}
.works-img.unhovered .original-img {
  opacity: 1;
}

/* Больше воздуха у заголовков секций и «шапок» страниц (photo п.5). */
.block-top {
  margin-bottom: 50px;
}
.about-block .block-title,
.works-block .block-title,
.calculator-block .block-title,
.services-block .block-title,
.steps-block .block-title,
.form-block .block-title,
.prices-holder .block-title {
  margin-bottom: 22px;
  line-height: 1.18;
}
.archive-page .page-title,
.single-page .banner-info .title {
  margin-bottom: 22px;
}
.archive-page .tabs__btns {
  margin-bottom: 40px;
}

/* Логотип в фиксированной шапке: тонкий темный PNG на прозрачности. */
#header .logo-holder img {
  height: 76px;
  max-height: 76px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.65));
}
#header #mobile-mnu .logo-holder img {
  height: 82px;
  max-height: 82px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.65));
}

@media (max-width: 1650px) {
  #header .logo-holder img {
    height: 68px;
    max-height: 68px;
  }
}

@media (max-width: 768px) {
  #header .logo-holder img {
    height: 58px;
    max-height: 58px;
  }
}

@media (max-width: 498px) {
  #header .logo-holder img {
    height: 52px;
    max-height: 52px;
  }
}

/*============ FOOTER REWORK ===============*/
#footer.site-footer {
  background: var(--main);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
}

#footer .container {
  max-width: 1080px;
}

#footer .footer-main {
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) minmax(280px, 1fr) minmax(260px, 0.85fr);
  gap: 38px;
  align-items: start;
  padding: 40px 0 32px;
}

#footer .footer-brand,
#footer .footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#footer .footer-brand {
  gap: 16px;
}

#footer .footer-contacts {
  gap: 12px;
}

#footer .logo-holder {
  max-width: 210px;
}

#footer .logo-holder img {
  width: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.28));
}

#footer .footer-tagline {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 150%;
}

#footer .footer-title,
#footer .footer-schedule span,
#footer .footer-contact-label {
  color: var(--sec);
  font-size: 13px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
}

#footer .footer-title {
  margin-bottom: 14px;
}

#footer .footer-schedule {
  padding-left: 14px;
  border-left: 2px solid var(--sec);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 145%;
}

#footer .footer-schedule span {
  display: block;
  margin-bottom: 6px;
}

#footer .footer-schedule p {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

#footer .footer-nav {
  min-width: 0;
}

#footer .foot-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer .nav-menu-element {
  position: relative;
}

#footer .nav-menu-element a {
  color: white;
  font-size: 15px;
  font-weight: 600;
  line-height: 135%;
  text-transform: none;
}

#footer .nav-menu-element a:hover,
#footer .nav-menu-element.active a {
  color: var(--sec);
}

#footer .nav-menu-element.has-childs {
  margin-right: 0;
}

#footer .nav-menu-element.has-childs > a::before,
#footer .nav-menu-element.has-childs > a::after {
  display: none;
}

#footer .sub-menu,
#footer .nav-menu-element.has-childs:hover .sub-menu {
  position: static;
  display: grid;
  gap: 8px;
  width: auto;
  min-width: 0;
  height: auto;
  margin: 10px 0 0;
  padding: 0 0 0 12px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: auto;
}

#footer .sub-menu .nav-menu-element a {
  display: block;
  padding: 0;
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 400;
}

#footer .sub-menu .nav-menu-element a::before {
  display: none;
}

#footer .sub-menu .nav-menu-element a:hover {
  color: var(--sec);
}

#footer .footer-contact {
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

#footer .footer-contact-label {
  margin-bottom: 6px;
}

#footer .footer-contact-value,
#footer .footer-contact-value p {
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 145%;
}

#footer a.footer-contact-value:hover {
  color: var(--sec);
}

#footer .footer-socials {
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

#footer .footer-socials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#footer .footer-social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sec);
  border-radius: 50%;
  color: var(--sec);
  transition: color .3s ease-in, background-color .3s ease-in;
}

#footer .footer-social-link svg,
#footer .footer-social-link img {
  width: 62%;
  max-height: 62%;
  display: block;
  object-fit: contain;
}

#footer .footer-social-link span {
  color: inherit;
  font-size: 10px;
  font-weight: 700;
}

#footer .footer-social-link:hover {
  background: var(--sec);
  color: var(--main);
}

#footer .footer-cta {
  margin-top: 4px;
}

#footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

#footer .privacy-holder,
#footer .rights {
  color: rgba(255, 255, 255, 0.78);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

#footer .privacy-holder:hover {
  color: var(--sec);
}

@media (max-width: 1200px) {
  #footer .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
  }

  #footer .footer-contacts {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  #footer .footer-contacts .footer-title,
  #footer .footer-contacts .footer-cta,
  #footer .footer-contacts .footer-socials {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  #footer .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 0 26px;
  }

  #footer .footer-contacts {
    display: flex;
  }

  #footer .footer-title {
    margin-bottom: 14px;
  }

  #footer .footer-tagline {
    font-size: 15px;
  }

  #footer .foot-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }

  #footer .footer-contact-value,
  #footer .footer-contact-value p {
    font-size: 16px;
  }

  #footer .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 18px 0 22px;
  }
}

@media (max-width: 520px) {
  #footer .logo-holder {
    max-width: 210px;
  }

  #footer .foot-menu {
    grid-template-columns: 1fr;
  }

  #footer .footer-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Модалки находятся внутри footer.php, поэтому явно сбрасываем наследование цвета футера. */
#footer .theme-modal {
  color: var(--lText);
}

#footer .theme-modal .modal-title {
  color: var(--main);
}

#footer .theme-modal .modal-subtitle,
#footer .theme-modal .form .form-floating label,
#footer .theme-modal .policy-checkbox label {
  color: var(--lText);
}

#footer .theme-modal .policy-checkbox a {
  color: var(--main);
  text-decoration: underline;
}

#footer .theme-modal .policy-checkbox a:hover {
  color: var(--sec);
}

#footer .theme-modal .btn[form-send] {
  color: var(--main);
  border-color: var(--main);
  opacity: 1;
}

#footer .theme-modal .btn[form-send]:hover {
  background-color: var(--main);
  border-color: var(--main);
  color: white;
}

#footer .theme-modal .btn[form-send][disabled] {
  color: var(--main);
  border-color: rgba(6, 41, 57, 0.35);
  opacity: 0.72;
}

/* Детальные страницы работ: полный первый экран, фото без кропа и затемнения. */
#single-works {
  --single-works-header-offset: 170px;
  margin-top: var(--single-works-header-offset);
}

#single-works .single-top {
  height: calc(100vh - var(--single-works-header-offset));
  height: calc(100svh - var(--single-works-header-offset));
  min-height: calc(100vh - var(--single-works-header-offset));
  min-height: calc(100svh - var(--single-works-header-offset));
  overflow: hidden;
  background: var(--bg);
}

#single-works .banner-gallery,
#single-works .banner-gallery-wrapper,
#single-works .banner-gallery-img {
  height: 100%;
}

#single-works .banner-gallery-img {
  background: var(--bg);
}

#single-works .banner-gallery-img--portrait-group {
  box-sizing: border-box;
  padding: 0 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#single-works .banner-gallery-portrait-grid {
  width: min(100%, 1440px);
  height: 100%;
  display: grid;
  grid-template-columns: repeat(var(--portrait-count), minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

#single-works .banner-gallery-img--portrait-count-1 .banner-gallery-portrait-grid {
  width: min(100%, 420px);
}

#single-works .banner-gallery-img--portrait-count-2 .banner-gallery-portrait-grid {
  width: min(100%, 840px);
}

#single-works .banner-gallery-img--portrait-count-3 .banner-gallery-portrait-grid {
  width: min(100%, 1120px);
}

#single-works .banner-gallery-portrait-item {
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
}

#single-works .banner-gallery-img img {
  object-fit: contain;
  background: var(--bg);
}

#single-works .banner-gallery-img--portrait-group .banner-gallery-portrait-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

#single-works .banner-gallery-img::before {
  content: none;
  display: none;
}

#single-works .banner-info {
  left: max(20px, calc((100% - 1620px) / 2));
  bottom: clamp(32px, 7vh, 90px);
  width: min(1120px, calc(100% - 40px));
}

#single-works h1.page-title {
  width: 100%;
  max-width: 1120px;
  margin-bottom: 0;
  font-size: 76px;
  line-height: 108%;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

@media (max-width: 1280px) {
  #single-works h1.page-title {
    font-size: 58px;
  }
}

@media (max-width: 768px) {
  #single-works {
    --single-works-header-offset: 90px;
  }

  #single-works .banner-gallery-img--portrait-group {
    padding: 0 58px 96px;
  }

  #single-works .banner-gallery-portrait-grid {
    gap: 10px;
  }

  #single-works .banner-gallery-img--portrait-count-3 .banner-gallery-portrait-grid,
  #single-works .banner-gallery-img--portrait-count-4 .banner-gallery-portrait-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  #single-works .banner-info {
    bottom: 24px;
  }

  #single-works h1.page-title {
    font-size: 38px;
  }
}

@media (max-width: 420px) {
  #single-works {
    --single-works-header-offset: 100px;
  }

  #single-works h1.page-title {
    font-size: 32px;
  }
}
