@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
/* ========== CSS RESET (упрощённый) ========== */
/* Reset and base styles  */

html {
	scroll-behavior:smooth;
}
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

textarea {
	resize: vertical;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

input[type='file'] {
	max-width: 100%;
}


html {
    overflow-x: hidden;
}

body {
    background-color: #F4F4F4;
    font-family: "Manrope", sans-serif;
    color: #141414;
    font-size: 18px;
    line-height: 120%;
    font-weight: 300;
    overflow-x: hidden;
    width: 100%;
}


.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

section {
    padding: 80px 0 0;
}

.subtitle {
    border: 1px solid #0D7B85;
    border-radius: 30px;
    padding: 5px 10px;
    display: inline-block;
    margin: 20px 0 40px;
    width: fit-content;
}

.block {
    display: flex;
}

.title_h2 {
    text-transform: uppercase;
    font-size: 38px;
    line-height: 130%;
    font-weight: 400;
}

.btn {
    background: transparent;
    border: 1px solid #363636;
    color: #363636;
    border-radius: 30px;
    padding: 10px 45px 10px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 18px;
    height: 20px;
}

.btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.btn:hover {
    color: #fff;
    background-color: #0D7B85;
    border: 1px solid #0D7B85;
    padding-right: 45px;
}

.btn-white {
    color: #fff;
    border: 1px solid #fff;
}

.btn-white::after {
    color: #fff;
}

.btn-accent {
    color: #fff!important;
    background-color: #0D7B85!important;
    border: 1px solid #0D7B85;
}


.btn-accent::after {
    content: '→';
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 1;
    transition: all 0.3s ease;
    font-size: 18px;
    height: 20px;
    color: #fff;
    margin-left: 10px;
}

.btn-accent:hover {
    background: transparent!important;
    color: #141414!important;
}

.btn-accent:hover::after {
    color: #141414;
}

/*  HEADER  */

.header {
    padding: 50px 0 0 0;
    position: sticky;
    top: 0;
    background-color: #F4F4F4;
    z-index: 1000;
    transition: padding 0.3s ease;
}

.header.sticky {
    padding: 20px 0 0 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.header__rating {
    gap: 20px;
    align-items: center;
}

.header__socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__social-link {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #0D7B85;
    background-color: #F4F4F4;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.header__social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.header__social-link:hover {
    border-color: #0D7B85;
    background-color: #0D7B85;
    color: #fff;
}

.header__rating iframe {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}
.header__rating iframe:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.header .container {
    border-bottom: 1px solid #363636;
    padding-bottom: 30px;
    transition: padding-bottom 0.3s ease;
}

.header.sticky .container {
    padding-bottom: 15px;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__burger {
    display: none;
}

.header__logo {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    line-height: 1.3;
    color: #008A97;
    transition: transform 0.3s ease;
}

.header__logo img {
    height: auto;
    transition: height 0.3s ease, max-width 0.3s ease;
    max-width: 130px;
}

.header.sticky .header__logo {
    transform: scale(0.75);
    transform-origin: left center;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.header__days {
    opacity: .7;
    font-size: .8em;
}

.phone {
    display: inline-block;
}


.header__menu a,
.footer__menu a,
.phone,
.mail {
    transition: all .3s ease;
    padding-bottom: 2px;
    position: relative;
    color: #363636;
}

.header__menu a::before,
.footer__menu a::before,
.phone::before,
.mail::before{
    content: '';
    width: 0%;
    height: 1px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #093e17;
    transition: all .4s ease;
}

.header__menu a:hover,
.footer__menu a:hover,
.phone:hover,
.mail:hover{
    color: #093e17;
}

.header__menu a:hover::before,
.footer__menu a:hover::before,
.phone:hover::before,
.mail:hover::before{
    width: 100%;
}

.header__contacts {
	display:flex;
	flex-direction:column;
	text-align:right;
}

/*  END HEADER  */


/* HERO */

.hero {
  height: 155vh;
  position: relative;
  padding-bottom: 0;
}
.hero__bg {
  position: absolute;
  left: 0; 
  width: 100%; 
  height: 60%;
  bottom: 0;
  background:no-repeat center center / cover;
  clip-path: inset(0 10% 0 10%);
}
.hero__bg-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1);
}

.hero .container {
    position: relative;
    height: 100%;
}

.hero__block__top {
    position: absolute;
    top: 3%;
    left: 0;
    gap: 40px;
    width: 100%;
    justify-content: flex-end;
}

.hero__title {
    width: 100%;
    font-size: 110px;
    line-height: 95%;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
}

.hero__title-line--fluid {
display: inline-block;
white-space: nowrap;
width: 100%;
text-align: justify; 
}

.hero__title-line--fixed {
    display: inline-block;
    white-space: nowrap;
}
  

.hero__title-line--fluid::after {
content: "";
display: inline-block;
width: 100%;
}

.hero__block__item {
    width: 27%;
    font-size: 18px;
    text-transform: uppercase;
}

.adv {
    position: absolute;
    bottom: 0;
    background-color: #EBEAE9;
    width: 100%;
    padding: 20px 0;
}

.adv .container {
    justify-content: space-between;
}

.adv__item {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
}

.hero__btn {
    margin: 40px auto 0;
    text-align: center;
}


/* END HERO */

/*  ABOUT */
.about {
   padding-top: 50px;
}

.third_wrap {
    align-items: flex-start;
    justify-content: space-between;
    margin: 40px 0 80px;
}

.third_wrap .title_h2 {
    width: 58%;
    padding-right: 20%;
}

.third_wrap__item {
    width: 20%;
    padding-right: 50px;
    margin-top: 5px;
}

.about__block__item {
    flex: 0 1 25%;
    text-align: center;
    position: relative;
}

.about__block__item::after {
    content: '';
    width: 1px;
    height: 60%;
    top: 45%;
    position: absolute;
    right: 0;
    background-color: #141414;
}

.about__block__item__subtitle {
    font-weight: 300;
    font-size: 22px;
    text-transform: uppercase;
    padding-bottom: 15px;
    position: relative;
}

.about__block__item__subtitle::after {
    content: '';
    position: absolute;
    display: block;
    width: 88%;
    height: 1px;
    background-color: #141414;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
}

.about__block__item__number,
.about__block__item__number__text, 
.about__block__item__number__near{
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 30px auto 15px;
    display: block;
    color: #0D7B85;
    font-weight: 600;

}

.about__block__item__number {
    display: inline-block;
}


.about__block__item__number__near{
    font-size: 22px;
    display: inline-block;
	margin-right:5px;
    
}

.about__block__item__number__text {
    margin: 0 auto;
    font-size: 22px;
}

.about__block__item__text {
    font-size: 20px;
    margin: 10px auto;
    width: 50%;
}

/* END ABOUT */

/* SERVICES */

.services__block {
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 40px 0;
}

.services__block__item {
    flex: 0 1 30%;
    position: relative;
}

.services__block__item:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 100%;
    background-color: #333;
    position: absolute;
    top: 0;
    right: -8%;
    z-index: 1;
}

.services__block__item__title {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #141414;
    font-size: 24px;
}

.services__block__item__img {
    overflow: hidden;
}

.services__block__item {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services__block__item__img img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.services__block__item:hover .services__block__item__img img {
    transform: scale(1.1);
}   

/* END SERVICES */


/* CONTACT FORM */

.contact-from__block__right {
    max-width: 600px;
    width: 100%;
}

.contact-from__block__left {
    flex-direction: column;
    justify-content: space-between;
}

.contact-from__block__left .title_h2{
    width: 78%;
}

.contact-from__block__left p{
    width: 40%;
}

.contact-from__block__right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-from__block__right .btn{
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 20px;
	color:#333;
	cursor:pointer;
}

.contact-from__block__right .btn:after {
	height:26px;
}

.input {
    border: none;
    padding: 10px 20px 10px 0;
    background: transparent;
    border-bottom: 1px solid #141414;
    width: 100%;
    font-size: 18px;
}

/* Полностью скрываем настоящий input, но оставляем доступным для скринридеров */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Стиль "плейсхолдера" */
.file-upload-placeholder {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 35px;
  background-color: #fff;
  color: #999;
  cursor: pointer;
  transition: border-color 0.2s;
}

.file-upload-placeholder:hover {
  border-color: #999;
  color: #141414;
}

/* (Опционально) — если файл выбран, можно менять текст */
.file-upload-placeholder.has-file::after {
  content: "Файл выбран";
  color: #333;
}

form button {
	color: #333;
	cursor:pointer;
}
/* END CONTACT FORM */


/* CATALOG */

.catalog__block {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 40px 0;
    position: relative;
}

.catalog__block::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #333;
    top: 50%;
    left: 0;
    right: 0;
}

.catalog__block_item {
    flex: 0 1 47%;
    position: relative;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.catalog__block_item:nth-child(even)::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #333;
    top: 0;
    left: -6.5%;
}

.catalog__block_item:nth-child(3),
.catalog__block_item:nth-child(4) {
    margin-bottom: 0;
}

.catalog__block_item .image-mask {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.catalog__block_item .image-mask::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(2, 15, 17, 0.3);
}

.catalog__block_item .image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalog__block_item:hover .image-mask img {
    transform: translateY(0);
}

.postid-258 .catalog-page__intro__images img {
	object-fit:cover;
}

.catalog__block_item__title {
    color: #000;
    position: relative;
    font-size: 20px;
    font-weight: 400;
    margin-top: 0;
}

/* END CATALOG */


/*  FAQ  */

.faq__block {
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-top: 40px;
}
.faq__block__right {
    width: 55%;
}

.faq__image{
    width: 45%;
    height: 100%;
}

/* Общий стиль элемента */
.faq__block__right__item {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  transition: all 0.3s ease;
    position: relative;
}


.faq__block__right__item:hover {
    border-bottom: 1px solid #353535;
}

/* Заголовок */
.faq__block__right__item__heading {
  margin: 0;
  padding-right: 28px; /* место для "+"/"−" */
  cursor: pointer;
  transition: color 0.2s;
  width: 80%;
  font-weight: 400; 
  cursor:pointer;
}

/* Плюс/минус вместо стрелки */
.faq__block__right__item::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: normal;
  color: #333;
  transition: transform 0.2s, opacity 0.2s;
}

/* В открытом состоянии — минус */
.faq__block__right__item.active::after {
  content: '−';
}

.faq__block__right__item__text {
  height: 0;
  overflow: hidden;
  line-height: 1.6;
  color: #555;
  font-size: 16px;
  transition: height 0.3s ease;
}



.faq__block__right__item__text p {
  margin-bottom: 16px;
  padding-right: 70px;
}

.faq__block__right__item__text p:last-child {
  margin-bottom: 0;
}

.faq__block__right__item__text p strong {
  display: inline-block;
  margin-bottom: 4px;
}

.faq__block__right__item__text strong {
  font-weight: 500;
  color: #141414;
}

/*  END FAQ  */

/*  PORTFOLIO  */
.portfolio .container {
    padding: 40px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.portfolio__inner {
    display: flex;justify-content: space-between;
}

.swiper-slide {
    height: 350px;
}

.navigation {
    flex-direction: row-reverse;
    gap: 20px;
    align-items: center;
}

.swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.swiper-button-next::before,
.swiper-button-prev::before {
    content: '';
    background: url('../images/arrow.svg') no-repeat center center;
    width: 14px;
    height: 14px;
}

.swiper-button-prev::before {
    transform: rotate(180deg);
}

.swiper-button-next,
.swiper-button-prev  {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background-color: #0D7B85;
    position: static;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    display: none;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
	content:none;
}

/*  TEAM  */

.team .container {
    padding-bottom: 40px;
    border-bottom: 1px solid #093e17;
}

.team__block {
    align-items: flex-end;
}

.team__block__left {
    width: 58%;
    padding-right: 70px;
}

.team__block__left p {
    margin-right: 4%;
    margin-bottom: 20px;
}

.team__block__left__inner {
    margin-top: 40px;
    flex-wrap: wrap;
}

.team__block__left__inner p {
    position: relative;
    padding: 20px; 
    background:
        linear-gradient(to right, black 2px, transparent 1px) left,
        linear-gradient(to bottom, black 2px, transparent 1px) top,
        linear-gradient(to top, black 2px, transparent 1px) bottom;
    background-size:
        1px 75%, 
        95% 1px,
        95% 1px;
    background-repeat: no-repeat;
    margin: 0;
    width: 50%;
}

.team__block__left__inner p:first-child {
 background:
        linear-gradient(to bottom, black 2px, transparent 1px) top;
    background-size:
        100% 1px;
    background-repeat: no-repeat;
    padding: 20px 20px 20px 0;
}

.team__block__left__inner p:nth-child(2) {
    background: linear-gradient(to right, black 2px, transparent 1px) left, linear-gradient(to bottom, black 2px, transparent 1px) top;
    background-size: 1px 75%, 95% 1px;
    background-repeat: no-repeat;
}

.team__block__left__inner p:nth-child(3) {

    background:
        linear-gradient(to bottom, black 2px, transparent 1px) top,
        linear-gradient(to top, black 2px, transparent 1px) bottom;
    background-size:
        100% 1px,
        100% 1px;
    background-repeat: no-repeat;
    padding: 20px 20px 20px 0;
}

.team__members__item:first-child {
    background-color: #0D7B85;
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    padding: 45px 16px;
    line-height: 120%;
    text-transform: uppercase;
}

.team__members__item:first-child p {
    margin-bottom: 30px;
}

.team__img {
    width: 42%;
}

.team__img.image-mask img {
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team__img:hover.image-mask img,
.team__block:hover .team__img.image-mask img {
    transform: scale(1.03);
}


.team__members {
    justify-content: space-between;
    margin-top: 60px;
    align-items: stretch;
}

.team__members__item {
    flex: 0 1 18%;
}

.team__members__item .image-mask {
    width: 100%;
}

.team__members__item .image-mask img {
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team__members__item:hover .image-mask img {
    transform: scale(1.05);
}

.team__members__item img{
    width: 100%;
}

.team__members__item__name {
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
}
.team__members__item__position {
    color: #7b7b7b;
    font-size: 14px;
}

.team__btn {
    margin: 40px auto 0;
}


/*  TECHNOLOGY  */

.technology__block {
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.technology__block__left {
    width: 45%;
}

.technology__img {
    width: 100%;
    height: 100%;
}

.technology__block__left .image-mask img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.technology__block__left:hover .image-mask img {
    transform: scale(1.03);
}
.collaborate .title_h2 {
    width: 90%;
}

.collaborate__block__left .image-mask img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collaborate__block__left:hover .image-mask img {
    transform: scale(1.03);
}

.collaborate__block__right__item_title {
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.faq__block .image-mask img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__block:hover .image-mask img {
    transform: scale(1.03);
}

.technology__block__right {
    width: 55%;
}

.technology__block__right__text {
    margin-bottom: 50px;
    width: 70%;
}

.technology__block__right__text p:not(:last-child) {
    margin-bottom: 10px;
}
.technology__adv {
    flex-wrap: wrap;
}

.technology__adv__title {
    width: 100%;
    margin-bottom: 15px;
    font-size: 22px;
}

.technology__adv__item {
    margin-bottom: 20px;
    position: relative;
}


.technology__adv__item span {
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

/*  END TECHNOLOGY  */

.collaborate .container {
    padding-top: 40px;
    border-top: 1px solid #093e17;
}

.section__text {
    margin: 20px 0;
}

.collaborate__block {
    align-items: flex-end;
}

.collaborate__block__left {
    width: 50%;
    padding-right: 50px;
}

.collaborate__btn {
    margin: 40px auto;
}

.collaborate__block__right {
    flex-wrap: wrap;
    width: 50%;
}


.collaborate__block__right__item:nth-child(1) {
    flex: 0 1 50%;
    position: relative;
    padding: 20px; 
    background:
        linear-gradient(to bottom, black 2px, transparent 1px) top;
    background-size:
        95% 1px;
    background-repeat: no-repeat;
    margin: 0;
}

.collaborate__block__right__item:nth-child(2) {
    flex: 0 1 50%;
    position: relative;
    padding: 20px; 
    background:
        linear-gradient(to right, black 2px, transparent 1px) left,
        linear-gradient(to bottom, black 2px, transparent 1px) top,
        linear-gradient(to top, black 2px, transparent 1px) bottom;
    background-size:
        1px 75%, 
        95% 1px,
        95% 1px;
    background-repeat: no-repeat;
    margin: 0;
}

.collaborate__block__right__item:nth-child(3) {
    flex: 0 1 50%;
    position: relative;
    padding: 20px; 
    background:
        linear-gradient(to bottom, black 2px, transparent 1px) top,
        linear-gradient(to top, black 2px, transparent 1px) bottom;
    background-size:
        95% 1px,
        95% 1px;
    background-repeat: no-repeat;
    margin: 0;
}

.collaborate__block__right__item:nth-child(4) {
    flex: 0 1 50%;
    position: relative;
    padding: 20px; 
    background:
        linear-gradient(to right, black 2px, transparent 1px) left,
        linear-gradient(to top, black 2px, transparent 1px) bottom;
    background-size:
        1px 75%, 
        95% 1px;
    background-repeat: no-repeat;
    margin: 0;
}


/*  END COLLABORATE  */

/* REVIEW */
.review {
    padding: 60px 0;
}

.review .container {
    padding-top: 40px;
    border-top: 1px solid #093e17;
}

.review__wrap {
    margin-top: 40px;
}

.review__widget {
    width: 100%;
    max-width: 560px;
    height: 800px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.review__widget iframe {
    width: 100%;
    height: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-sizing: border-box;
}

.review__widget a {
    box-sizing: border-box;
    text-decoration: none;
    color: #b3b3b3;
    font-size: 10px;
    font-family: 'YS Text', sans-serif;
    padding: 0 16px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    left: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-height: 14px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .review__widget {
        max-width: 100%;
        height: 600px;
    }
}

@media (max-width: 480px) {
    .review__widget {
        height: 500px;
    }
    .header__socials {
        display: none;
    }
	
}

/* END REVIEW */

/* FOOTER */

.footer {
    background-color: #c3c3c3;
    padding: 40px 0 0 0;
    color: #fff;
    margin-top: 40px;
}

.footer__block {
    justify-content: space-between;
}

.footer__block__item:nth-child(1) {
    width: 25%;
}

.footer__logo {
    width: 60%;
    margin-bottom: 30px;
}

.footer__block__item:nth-child(2) {
    width: 27%;
}

.footer__block__item:nth-child(3) {
    width: 45%;
}

.footer .phone {
    margin-bottom: 20px;
    color: #fff;
}

.footer__menu {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.footer__menu li:not(:last-child){
    margin-bottom: 15px;
}

.footer__menu a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer__menu a:hover {
    color: #0D7B85;
}

/* Footer Contacts */
.footer__contacts {
    display: flex;
    flex-direction: column;
}

.footer__contacts__title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #fff;
}

.footer__contact__item {
    margin-bottom: 20px;
}

.footer__contact__item strong {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #fff;
    font-size: 16px;
}

.footer__contact__item p {
    color: #fff;
    line-height: 1.5;
    margin: 0;
    font-size: 15px;
}

.footer__contact__item a {
    color: #fff;
    transition: color 0.3s ease;
    font-size: 15px;
    text-decoration: none;
}

.footer__contact__item a:hover {
    color: #0D7B85;
}

.footer__socials {
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer_social {
    font-size: 13px;
    padding: 6px 14px;
    border: 1px solid #a9c0c2;
    background-color: #a9c0c2;
    color: #fff;
    transition: all 0.3s ease;
}

.footer_social:hover {
    border: 1px solid #0D7B85;
    background-color: #0D7B85;
    color: #fff;
}

.footer__form .input{
    border-bottom: 1px solid #fff;
}

.footer__form .input::placeholder{
    color: #fff;
}

.footer__form .btn-accent, .contacts__form .btn-accent {
    margin-top: 20px;
    width: 100%;
	cursor:pointer;
}
.footer__form .file-upload-wrapper, .contacts__form .file-upload-wrapper {
    margin-top: 20px;
}
.file-upload-wrapper span {
	display:none;
}
input:focus {
	border:none;
	outline:none;
	border-bottom:1px solid #333;
}
.footer__bottom {
    background-color: #333;
    padding: 30px 0;
    font-size: 15px;
    margin-top: 60px;
}
.footer__bottom a {
    color: #fff;  
    transition: all .3s ease;
}

.footer__bottom a:hover {
    color: #0D7B85;
}

.footer__bottom .container {
    align-items: center;
    justify-content: space-between;
}


/* END FOOTER */

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10003;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
}

.floating-contact__toggle {
  background-color: #0D7B85;
  color: #fff;
  border: 1px solid #0D7B85;
  border-radius: 999px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(20, 20, 20, 0.25);
  transition: all 0.3s ease;
}

.floating-contact__toggle:hover {
  background-color: #093e17;
  border-color: #093e17;
}

.floating-contact__menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.floating-contact.is-open .floating-contact__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-contact__link {
  background-color: #F4F4F4;
  color: #141414;
  border: 1px solid #0D7B85;
  border-radius: 999px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.floating-contact__link:hover {
  background-color: #0D7B85;
  color: #fff;
}

.floating-contact__link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.floating-contact__toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .floating-contact {
    right: 16px;
    bottom: 16px;
  }

  .floating-contact__toggle {
    width: 48px;
    height: 48px;
  }
}

.single__page .container {
	display:flex;
	flex-direction:column;
}

.single__page h1,
.single__page h2,
.single__page h3,
.single__page h4, 
.single__page h5, 
.single__page h6 {
	font-weight:600;
	margin:20px 0 10px;
}
.single__page p {
	line-height:135%;
}

.single__page a {
	color:#0D7B85;
	text-decoration:underline;
}

/* IMAGE ANIMATIONS - Mask effect (reveal from top) */
.image-animate {
    overflow: hidden;
    position: relative;
}

.image-animate img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(-100%);
    animation: revealFromTop 1s ease-out forwards;
}

.image-animate.animated img {
    transform: translateY(0);
}

@keyframes revealFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mask effect - reveal from top to bottom */
.image-mask {
    overflow: hidden;
    position: relative;
}

.image-mask img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(-100%);
    transition: transform 1.8s cubic-bezier(0.4, 0, 0.2, 1), scale 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-mask.animated img {
    transform: translateY(0);
}

/* HEADING ANIMATIONS - Slide up from bottom */
.title-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.title-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.subtitle-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.subtitle-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* MODAL/POPUP STYLES */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.popup-content {
    background: #F4F4F4;
    padding: 50px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow-x: hidden;
    text-align: center;
}

.popup-content-large {
    max-width: 1000px;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
    opacity: 1;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    color: #141414;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #0D7B85;
}

.popup-title {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup-form .input {
    border: none;
    padding: 12px 0;
    background: transparent;
    border-bottom: 1px solid #141414;
    width: 100%;
    font-size: 18px;
}

.popup-form .btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
	color:#333;
}

.popup-form .btn:after,
.footer__form .btn {
	content:none;
}

.popup-form .file-upload-wrapper {
    margin: 0;
}

.popup-text {
    margin-bottom: 30px;
    line-height: 1.6;
}

.popup-text p {
    margin-bottom: 15px;
    font-size: 16px;
}

.popup-text p:last-child {
    margin-bottom: 0;
}

.popup-text strong {
    font-weight: 500;
    color: #0D7B85;
}

.popup-subtitle {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
    font-size: 18px !important;
    text-align: center;
}

.popup-list {
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 0;
}

.popup-list li {
    margin-bottom: 12px;
    padding-left: 10px;
    list-style: decimal;
    font-size: 16px;
    line-height: 1.5;
}

.popup-list li:last-child {
    margin-bottom: 0;
}

.popup__block {
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    gap: 20px;
}

.popup__block img {
    border-radius: 10px;
}

.pink__text {
    color: #E40383;
}

.popup__list {
    text-align: left;
    width: 96%;
}
.popup__list li,
.popup__block_v2 p {
    position: relative;
    padding-left: 10px;
    line-height: 120%;
}

.popup__list li:not(:last-child) {
    margin-bottom: 10px;
}
.popup__list li::before,
.popup__block_v2 p::before  {
    content: '•';
    position: absolute;
    left: -5px;
}
.popup__block_v2 {
    background: transparent;
    gap: 30px;
    align-items: stretch;
    text-align: left;
    justify-content: space-between;
    padding: 0;
    margin: 30px 0;
}

.popup__block_v2 .popup__block__item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    flex: 0 1 33%;
}

.popup__block__item p:not(:last-child) {
    margin-bottom: 15px;
}

.popup__block_v2 img {
    margin-bottom: 15px;
    min-height: 260px;
	object-fit:contain;
}
.popup__block__item p:first-child {
    min-height: 65px;
}

.popup__block__item h3 {
    text-align: left;
    font-size: 15px;
    margin-bottom: 20px;
}

.btn-popap {
    margin: 40px auto 0;
}

.services-page em {
    font-style: normal!important;
    color: #E40383;
}

.error {
	text-align:center;
}

.error .container {
	height:40vh;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
}

.error__title {
	font-size:90px;
	font-weight:600;
	line-height:120%;
	color:#0D7B85;
}

.error__text {
	font-size:35px;
	margin:10px auto;
}

.error .btn {
	margin:20px auto;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 420px;
  background: #0D7B85;
  color: #fff;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-popup p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-popup a {
  color: #fff;
  text-decoration: underline;
}

.cookie-popup button {
  align-self: flex-start;
  background: #fff;
  border: none;
  color: #000;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.cookie-popup button:hover {
  background: #F4F4F4;
}


/* CATALOG PAGES */

.breadcrumbs {
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-bottom: 30px;
    color: #363636;
    font-size: 16px;
}

.breadcrumbs a {
    transition: color 0.3s ease;
    color: inherit;
}

.breadcrumbs a:hover {
    color: #0D7B85;
}

.catalog-page__back {
    display: inline-block;
    margin-bottom: 30px;
    color: #363636;
    transition: color 0.3s ease;
    font-size: 16px;
}

.catalog-page__back:hover {
    color: #0D7B85;
}

.catalog-page__title {
    margin-bottom: 50px;
    text-align: center;
}

.catalog-page__content {
    max-width: 1200px;
    margin: 0 auto;
}

.catalog-page__intro {
    margin-bottom: 40px;
    line-height: 1.8;
    gap: 40px;
}


.catalog-page__intro__images {
    display: flex;
    gap: 35px;
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background-color: #fff;
}

.catalog-page__intro__images .image-mask {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.catalog-page__intro__images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page__intro__images__contain img {
    object-fit: contain;
    height: 220px;
}

.catalog-page__intro__text {
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    padding: 35px;
}

.catalog-page__intro p {
    margin-bottom: 5px;
    font-size: 18px;
}

p.catalog-page__intro__about{
    color: #0D7B85;
    text-align: center;
    font-size: 20px;
    line-height: 110%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.catalog-page__intro p:last-child {
    margin-bottom: 0;
}

/* Intro Plate - отдельная плашка для вводных изображений */
.catalog-page__intro-plate {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.catalog-page__intro-plate__images {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.catalog-page__intro-plate__images .image-mask {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.catalog-page__intro-plate__images img {
   height: 160px;
   object-fit: contain;
}

.catalog-page__intro-plate__text {
    width: 100%;
    line-height: 1.8;
}

.catalog-page__intro-plate__text p {
    margin-bottom: 20px;
    font-size: 18px;
}

.catalog-page__intro-plate__text p:last-child {
    margin-bottom: 0;
}

.catalog-page__subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #0D7B85;
}

.catalog-page__modules {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
    justify-content: center;
}

.catalog-page__module {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition: none;
    background-color: #fff;
    padding: 35px;
    border-radius: 20px;
    flex: 0 1 48%;
}

.catalog-page__module .btn-accent {
    margin-top: 10px;
}

.catalog-page__module:hover {
    transform: none;
    box-shadow: none;
}

.catalog-page__module__images {
    max-width: 600px;
    width: 100%;
    position: relative;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
}

.catalog-page__module__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    transition: opacity 0.4s ease;
}

.catalog-page__module__image--first {
    opacity: 1;
    z-index: 2;
}

.catalog-page__module__image--second {
    opacity: 0;
    z-index: 1;
    padding: 20px;
}

.catalog-page__module__images:hover .catalog-page__module__image--first {
    opacity: 0;
}

.catalog-page__module__images:hover .catalog-page__module__image--second {
    opacity: 1;
}

.catalog-page__module__image--second {
    padding: 20px;
    background-color: #1a2015
}

.catalog-page__module__image .image-mask {
    width: 100%;
    height: 100%;
}

.catalog-page__module__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.catalog-page__module__image--second img {
    object-fit: contain;
}

.catalog-page__module__content {
    flex: 1;
}

.catalog-page__module__title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #141414;
}

.catalog-page__module__info {
    line-height: 1.8;
}

.catalog-page__module__info p {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.catalog-page__module__info p::before {
    content: '•';
    color: #0D7B85;
    font-size: 20px;
    font-weight: 500;
    margin-right: 4px;
    display: inline-block;
    line-height: 100%;
}


.catalog-page__module__info strong {
    color: #0D7B85;
    font-weight: 600;
}

.catalog-page__cta {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .catalog-page {
        padding: 60px 0;
    }
    
    .catalog-page__title {
        margin-bottom: 30px;
        font-size: 28px;
    }
    
    .catalog-page__intro {
        margin-bottom: 40px;
    }
    
    .catalog-page__intro__images {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .catalog-page__intro__images .image-mask {
        flex: 1 1 calc(50% - 8px);
        min-width: 150px;
        height: 200px;
    }
    
    .catalog-page__intro-plate {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .catalog-page__intro-plate__images {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .catalog-page__intro-plate__images .image-mask {
        flex: 1 1 calc(50% - 8px);
        min-width: 150px;
        height: 200px;
    }
    
    .catalog-page__intro-plate__text p {
        font-size: 16px;
    }
    
    .catalog-page__intro p {
        font-size: 16px;
    }
    
    .catalog-page__subtitle {
        font-size: 20px;
    }
    
    .catalog-page__module__images {
        flex: 0 0 auto;
        max-width: 100%;
        height: auto;
        display: flex;
        gap: 15px;
        position: relative;
        aspect-ratio: auto;
    }
    
    .catalog-page__module__image {
        position: relative;
        flex: 1;
        height: 300px;
    }
    
    .catalog-page__module__image--first,
    .catalog-page__module__image--second {
        opacity: 1;
        z-index: 1;
    }

    
    .catalog-page__module__images:hover .catalog-page__module__image--first,
    .catalog-page__module__images:hover .catalog-page__module__image--second {
        opacity: 1;
    }
    
    .catalog-page__modules {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .catalog-page__module {
        flex-direction: column;
        gap: 25px;
    }
    
    .catalog-page__module__image {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        height: 280px;
    }
    
    .catalog-page__module__content {
        width: 100%;
    }
    
    .catalog-page__module__title {
        font-size: 20px;
    }
    
    .catalog-page__module__info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .catalog-page__intro__images .image-mask {
        flex: 1 1 100%;
        height: auto;
    }
    
    .catalog-page__intro-plate {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .catalog-page__intro-plate__images .image-mask {
        flex: 1 1 100%;
        height: 180px;
    }
    
    .catalog-page__intro-plate__text p {
        font-size: 15px;
    }
    
    .catalog-page__module__images {
        flex-direction: column;
        gap: 15px;
        height: auto;
    }
    
    .catalog-page__module__image {
        height: 220px;
    }
}

/* ========== MOBILE ADAPTATION ========== */
@media (max-width: 1520px) {
    
    .container {
        max-width: 1320px;
    }
    .third_wrap__item {
        padding-right: 20px;
    }
    .third_wrap .title_h2 {
        width: 44%;
        padding-right: 10%;
    }
    .collaborate .title_h2 {
        width: 90%;
    }
}
@media (max-width: 1365px) {
    .container {
        max-width: 1140px;
    }
    .title_h2 {
        font-size: 32px;
    }
    .hero__block__top {
        top: 0;
    }
    .third_wrap__item {
        width: 25%;
    }
    .third_wrap .title_h2 {
        width: 40%;
        padding-right: 5%;
    }
    .about__block__item__text {
        width: 60%;
    }
    .team__members__item:first-child {
        font-size: 24px;
    
    }
    .services__block__item__title {
        font-size: 22px;
    }
}
@media (max-width: 1024px) {
    .header {
        padding: 20px 0 0 0;
    }
    
    .header .container {
        padding-bottom: 15px;
    }
    
    .header__burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 99999;
    }
    
    .header__burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #363636;
        transition: all 0.3s ease;
    }
    
    .header__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .header__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .header__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #F4F4F4;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 9999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .header__menu.active {
        right: 0;
    }
    
    .header__menu li {
        width: 100%;
    }
    
    .header__menu a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
    }
    
    .header__phone,
    .mail,
    .header__days {
        font-size: 12px;
        line-height:14px;
        text-align:right;
    }

    .header__rating {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .header__rating iframe {
        border: none;
    }
    
    .header.sticky .header__logo {
        transform: scale(0.7);
    }
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0 0;
    }
    .hero__block__item {
        width: 32%;
    }
    
    .title_h2 {
        font-size: 28px;
    }

    .hero__block__top {
        position: static;
        margin-top: 30px;
        gap: 60px;
    }
    .hero__block__item {
        width: 28%;
    }
    
    .third_wrap {
        flex-direction: column;
        gap: 30px;
    }
    
    .third_wrap .title_h2 {
        width: 100%;
        padding-right: 0;
    }
    
    .third_wrap__item {
        width: 100%;
        padding-right: 0;
    }

    .about__block__item__text {
        width: 75%;
    }
    
    .services__block {
        gap: 20px;
    }
    
    .services__block__item {
        flex: 1 1 100%;
    }

    .services__block__item:not(:last-child)::after {
        content: none;
    }

    .services__block__item__title {
        font-size: 20px;
        width: 73%;
        margin: 0 auto 20px;
    }
    
    .catalog__block {
        gap: 20px;
    }
    
    .catalog__block_item {
        flex: 0 1 48%;
        margin-bottom: 30px;
        
    }
    
    .catalog__block_item:nth-child(3),
    .catalog__block_item:nth-child(4) {
        margin-bottom: 30px;
    }

    .catalog__block_item:nth-child(even)::before {
        content: none;
    }
    .catalog__block::before {
        content: none;
    }
    
    .team__block {
        flex-direction: column;
        gap: 40px;
    }
    
    .team__block__left {
        width: 100%;
    }
    
    .team__block__left p {
        margin-right: 0;
    }
    
    .team__members {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .team__members__item {
        flex: 0 1 calc(50% - 10px);
    }
    
    .technology__block {
        flex-direction: column;
    }
    
    .technology__block__left {
        width: 100%;
    }
    
    .technology__block__right {
        width: 100%;
    }
    
    .collaborate__block {
        flex-direction: column;
    }
    
    .collaborate__block__left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .collaborate__block__right {
        width: 100%;
    }
    
    .faq__block img{
        max-width: 450px;
        width: 100%;
    }

    .team__img {
        width: 100%;
    }    
    
    .team__members__item:first-child{
        flex: 0 1 100%;
    }
    .contact-from__block {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-from__block__left {
        width: 100%;
    }
    
    .contact-from__block__left .title_h2 {
        width: 100%;
    }
    
    .contact-from__block__left p {
        width: 100%;
    }
    
    .contact-from__block__right {
        max-width: 100%;
    }
    
    .swiper.mySwiper {
        overflow: visible;
    }
    
    .swiper-slide {
        height: 250px;
    }
    .footer__logo {
        width: 85%;
    }
    .footer__block__item:nth-child(1) {
        width: 25%;
    }
    .footer__block__item:nth-child(1) {
        width: 30%;
    }
    .footer__block__item:nth-child(3) {
        width: 45%;
    }
    .portfolio .container {
        padding: 0 20px;
    }
    .popup__block_bg .popup__block__item:nth-child(2) {
        order: 3;
    }
    .popup__block_bg .popup__block__item:nth-child(3) {
        order: 2;
    }
    .popup__block_bg {
        align-items: stretch;
    }
    .popup__block_bg img {
        height: 100%;
    }
}

@media (max-width: 920px) {
    .catalog-page__module__info p {
        flex-wrap: wrap;
        gap: 2px;
    }
    .catalog-page__module {
        gap: 20px;
        padding: 20px;
    }
    .footer__block {
        flex-wrap: wrap;
    }
    .footer__block__item:nth-child(2){
        width: 35%;
    }
    .footer__block__item:nth-child(2){
        width: 60%;
    }
    .footer__block__item:nth-child(3) {
        width: 60%;
    }
    .popup__block_bg {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .popup__block_bg .popup__block__item:nth-child(1),
    .popup__block_bg .popup__block__item:nth-child(3) {
        flex: 0 1 48%;
    }
    .popup__block_bg .popup__block__item:nth-child(2) {
        flex: 0 1 100%;
    }
    .popup__block_v2 {
        flex-wrap: wrap;
    }
    .popup__block_v2 .popup__block__item {
        flex: 0 1 100%;
    }
    .popup__block_v2 img{
        max-height: 300px;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0 0;
    }
    
    /* HERO MOBILE */
    .hero {
        height: 120vh;
        min-height: 600px;
    }
    
    .hero__bg {
        height: 50%;
    }
    
    
    .hero__block__item {
        width: 100%;
    }
    
    .hero__title {
        line-height: 110%;
    }
    
    .hero__btn {
        font-size: 14px;
        padding: 10px 35px 10px 15px;
        margin: 30px auto 0;
    }
    
    .adv__item {
        font-size: 16px;
    }
    
    /* ABOUT MOBILE */
    .about__block {
        flex-wrap: wrap;
        gap: 60px 40px;
    }
    
    .about__block__item {
        flex: 0 1 46%;
    }
    
    .about__block__item::after {
        display: none;
    }
    
    .about__block__item__number {
        font-size: 28px;
    }
    
    .about__block__item__text {
        width: 100%;
        font-size: 16px;
    }
    
    /* SERVICES MOBILE */
    .services__block__item__title {
        font-size: 18px;
        margin-bottom: 15px;
        width: 90%;
    }
    
    /* CATALOG MOBILE */
    .catalog__block_item .image-mask {
        height: 300px;
    }
    
    .catalog__block_item__title {
        font-size: 20px;
    }
    
    /* PORTFOLIO MOBILE */
    
    .swiper.mySwiper {
        margin-top: 20px;
    }
    
    .swiper-slide {
        height: 200px;
    }
    
    /* TEAM MOBILE */
    .team__members__item {
        flex: 1 1 48%;
    }
    
    .team__members__item:first-child {
        font-size: 24px;
        padding: 30px 16px;
    }
    
    /* TECHNOLOGY MOBILE */
    .technology__block__right__text {
        width: 100%;
    }
    
    /* POPUP MOBILE */
    .popup-content {
        padding: 30px;
        max-width: 95%;
    }
    
    .popup-content-large {
        max-width: 95%;
    }
    
    .popup-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .popup-text p {
        font-size: 14px;
    }
    
    .popup-list li {
        font-size: 14px;
    }
    
    .popup-close {
        top: 15px;
        right: 15px;
        font-size: 35px;
    }
    
    /* FOOTER MOBILE */
    .footer__block {
        gap: 40px;
    }
    .footer__block__item:nth-child(1) {
        width: 48%;
    }
    .footer__block__item:nth-child(2) {
        width: 44%;
    }
    .footer__block__item:nth-child(3) {
        width: 100%;
    }
    .footer__logo {
        width: 40%;
    }
    
    .footer__menu {
        margin: 20px 0;
    }
    
    .footer__contacts__title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer__contact__item {
        margin-bottom: 18px;
    }
    
    .footer__contact__item strong {
        font-size: 14px;
    }
    
    .footer__contact__item p,
    .footer__contact__item a {
        font-size: 14px;
    }
    
    .footer__socials {
        margin-top: 20px;
        margin-bottom: 25px;
        gap: 10px;
    }
    
    .footer_social {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .footer__bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .team__block__left {
        padding-right: 0;
    }
    .faq__block__right__item__text p {
        padding-right: 30px;
    }
    .catalog-page__module {
        flex: 0 1 100%;
    }
}

@media (max-width: 670px){
    .popup__block_bg .popup__block__item:nth-child(1), 
    .popup__block_bg .popup__block__item:nth-child(3) {
        flex: 0 1 47%;
    }
}

@media (max-width: 620px){
    
    .faq__block {
        flex-direction: column;
    }
    .faq__block__item {
        width: 100%;
    }
    .faq__image,
    .faq__block__right {
        width: 100%;
    }
    .faq__block__item__title {
        font-size: 20px;
    }
    .faq__block__item__text {
        font-size: 14px;
    }
    .footer__block__item:nth-child(2) {
        width: 40%;
    }
    .footer__block__item:nth-child(3) {
        width: 100%;
    }
    .hero__block__top {
        flex-direction: column;
        gap: 20px;
    }
    .adv .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .about__block__item {
        flex: 0 1 44%;
    }
    .services__block {
        flex-direction: column;
        gap: 40px;
    }
    .catalog__block_item .image-mask {
        height: 250px;
    }
    
    .catalog__block_item {
        flex: 0 1 47%;
    }
    .team__members__item {
        flex: 1 1 40%;
    }
    .header__rating iframe {
        display: none;
    }
    .btn::after {
        content: none;
    }
    .btn {
        padding: 8px 15px!important;
    }
    .btn:hover::after {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
    .btn:hover {
        color: #fff;
        background-color: #0D7B85;
        border: 1px solid #0D7B85;
    }
    .catalog-page__module__images {
        flex-direction: column;
    }
    .catalog-page__intro__images {
        padding: 20px;
        gap: 20px;
    }
    .popup__block__item p:first-child {
        min-height: auto;
    }

}

@media (max-width: 480px) {
    .hero__title {
        font-size: 23px;
    }
    
    .hero__block__item {
        font-size: 12px;
    }
    
    .title_h2 {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 14px;
        padding: 4px 8px;
    }
    .btn {
        font-size: 14px;
        padding: 8px 40px 8px 15px;
    }
	
	.about__block {
		gap:30px;
	}
	
	.about__block__item__text {
		width:70%;
	}

    .about__block__item {
        flex: 0 1 100%;
    }

    .about__block__item__number {
        margin:10px auto 10px;
    }
	
	.about__block__item__number, .about__block__item__number__text, .about__block__item__number__near {
		margin-bottom:0;
	}
    .contact-from__block__right .btn {
        font-size: 14px;
    }
    .team__members__item__name {
        font-size: 14px;
        line-height: 110%;
    }
    
    .about__block__item__number {
        font-size: 24px;
    }
    
    .catalog__block_item__title {
        font-size: 20px;
    }
    .catalog__block_item {
        flex: 0 1 100%;
    }
	.services__block__item:hover .services__block__item__img img {
		transform:scale(1);
	}
	.team__block__left p {
		font-size:16px;
	}
	.contact-from__block__left .title_h2 {
		margin-bottom:20px;
	}
    .footer__block {
        flex-direction: column;
        gap: 30px;
    }
    .footer__block__item:nth-child(1),
    .footer__block__item:nth-child(2),
    .footer__block__item:nth-child(3) {
        width: 100%;
    }
    .collaborate__block__right__item:nth-child(1),
    .collaborate__block__right__item:nth-child(2),
    .collaborate__block__right__item:nth-child(3),
    .collaborate__block__right__item:nth-child(4) {
        width: 100%;
        flex: 0 1 100%;
        background: none;
        border-bottom: 1px solid #093e17;
        padding: 20px 0;
    }
    
    .popup-title {
        font-size: 20px;
    }
    .popup-content {
        padding: 20px;
        max-width: 75vh;
    }
    
    .popup-text p {
        font-size: 13px;
    }
    .popup__block_bg img{
        max-height: 250px;
        height: 100%;
        object-fit: cover;
    }
    .popup__block_v2 img {
        max-height: 190px;
		object-fit:contain;
		min-height:auto!important;
    }
}
@media (max-width: 395px){
    .popup__block_v2 img {
        max-height: 170px;
    }
    .popup__block_bg .popup__block__item:nth-child(1), 
    .popup__block_bg .popup__block__item:nth-child(3) {
        flex: 0 1 46%;
    }
    .popup__block {
        padding: 15px;
    }
    .popup__block_v2 {
        padding: 0;
    }
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 40px;
    line-height: 1;
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10002;
}

.lightbox__close:hover {
    color: #0D7B85;
    transform: scale(1.1);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 10002;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__prev {
    left: 30px;
}

.lightbox__next {
    right: 30px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(13, 123, 133, 0.8);
    border-color: #0D7B85;
    transform: translateY(-50%) scale(1.1);
}

.lightbox__prev:active,
.lightbox__next:active {
    transform: translateY(-50%) scale(0.95);
}

/* Делаем изображения в портфолио кликабельными */
.portfolio .swiper-slide {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio .swiper-slide:hover {
    transform: scale(1.05);
}



@media (max-width: 768px) {
    .lightbox__close {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 35px;
    }
    
    .lightbox__prev,
    .lightbox__next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .lightbox__prev {
        left: 10px;
    }
    
    .lightbox__next {
        right: 10px;
    }
    
    .lightbox__content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox__image {
        max-height: 85vh;
    }
	.error__title {
		font-size:75px;
	}
	.error__text {
		font-size:30px;
		line-height:110%;
	}
}

/* Контакты */
.contact-cards {
    display: flex;
    flex-wrap: wrap;
}
.contact-card {
    flex: 0 1 33%;
    position: relative;
    padding: 20px;
    background: linear-gradient(to bottom, black 2px, transparent 1px) top;
    background-size: 95% 1px;
    background-repeat: no-repeat;
    margin: 0; 
}
.contact-card__icon {
    width: 40px;
    height: 40px;
    background: #a9c0c2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #1a8a9e;
}
.contact-card__icon svg {
    stroke: #fff;
}
.contact-card__title {
    font-size: 13px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.contact-card__value {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 4px;
}
.contact-card__value a {
    transition: all .3s ease;
    position: relative;
    color: #363636;
}
.contact-card__value a::before {
    content: '';
    width: 0%;
    height: 1px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #093e17;
    transition: all .4s ease;
}
.contact-card__value a:hover {
    color: #093e17;
}
.contact-card__value a:hover::before {
    width: 100%;
}
.contact-card__extra {
    font-size: 13px;
    color: #777;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
}
.contact-card__social {
    font-size: 13px;
    padding: 6px 14px;
    border: 1px solid #a9c0c2;
    background-color: #a9c0c2;
    color: #fff;
    transition: all 0.3s ease;
    border-radius: 30px;
    cursor: pointer;
}
.contact-card__social:hover {
    border: 1px solid #0D7B85;
    background-color: #0D7B85;
    color: #fff;
}


.contacts-cols {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}
.contacts-block__title {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #141414;
    font-size: 24px;
}
.contacts-block__subtitle {
    margin-bottom: 20px;
}

@media (min-width:1025px) {
    .contact-cards .contact-card:not(:nth-child(3n))::after {
        content: '';
        position: absolute;
        right: 0;
        top: 2.5%;
        height: 95%;
        width: 1px;
        background-color: black;
    }
}
@media (max-width:1024px) {
    .contacts-cols {
        grid-template-columns: auto;
    }
}
@media (max-width:1024px) and (min-width:621px) {
    .contact-card {
        flex: 0 1 50%;
    }
    .contact-cards .contact-card:nth-child(2n + 1)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 2.5%;
        height: 95%;
        width: 1px;
        background-color: black;
    }
}
@media (max-width: 620px) {
    .contact-card {
        flex: 0 1 100%;
    }
}

/* О компании */
.about-details__title {
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #141414;
    font-size: 24px;
}
.about-details__table {
    width: 100%;
    font-size: 18px;
    border-collapse: collapse;
}
.about-details__table tr {
    border-bottom: 1px solid #a9c0c2;
}
.about-details__table td:first-child {
    color: #888;
    width: 40%;
    padding-right: 16px;
    font-weight: 500;
}
.about-details__table td {
    padding: 10px 0;
}

@media (max-width:1024px) {
    .about-details__table {
        font-size: 14px;
    }
}