/* reset.css */

/* Сброс маргинов и паддингов для всех элементов */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Убираем стандартное поведение списков */
ul,
ol {
  list-style: none;
}

/* Убираем подчеркивание для ссылок */
a {
  text-decoration: none;
  color: inherit; /* Убирает цвет по умолчанию */
}

/* Убираем стили для таблиц */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Убираем стили для форм */
input,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
body,html{
    overflow-x: hidden;
}
/* Убираем стандартные отступы у блоков */
body {
  font-family: sans-serif; /* Задайте базовый шрифт для страницы */
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* Лучшая отрисовка шрифтов в WebKit-браузерах */
  -moz-osx-font-smoothing: grayscale; /* Для Firefox на MacOS */
  text-rendering: optimizeLegibility; /* Лучшая читаемость шрифтов */
}

img {
  max-width: 100%; /* Убираем растягивание изображений */
  height: auto;
  display: block; /* Убираем лишние отступы вокруг картинок */
}

button {
  cursor: pointer; /* Появляется курсор при наведении на кнопки */
}


@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --orange: #ee6832;
  --blue-main: #011955;
  --gray: #f2f3f5;
  --blue-dark: rgba(1, 25, 85, 0.5);
  --blue-light: #ccd1dd;

  --font-family: "Roboto", sans-serif;
}

body {
  font-size: 16px;
  color: var(--blue-main);
  font-family: var(--font-family);
}

.confirmed{
	margin: 150px auto;
}

.aligncenter {
    clear: both;
    margin: 0 auto;
    display: block;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}


.container H1{
    font-size: 42px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 20px;
}

.container H2{
    font-size: 36px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 20px;
}

.container H3{
    font-size: 28px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 20px;
}

.container H4{
    font-size: 20px;
    font-weight: 700;
}


.section {
  padding: 80px 0px;
}

/* ========= header__top =========*/

.header__top {
  padding: 8px 0px;
}
.header__top .container{
    display: flex;
    justify-content: space-between;
	    align-items: center;
}

.right-top{    
    display: flex;
    align-items: center;
	}
	
.header__top-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.header__top-city,
.header__top-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}
.phone-wrap{
    display: flex;
}
.phone-wrap a{
    margin-right: 10px;
}
.active .phone-wrap{
    max-height: 500px;
    padding: 20px 10px 10px;
    transition: 0.5s;
}
.header__top-icons {
  display: none;
  /*display: flex;*/
  gap: 19px;
}

.header__top-wrapper {
  border-bottom: 1px solid var(--blue-light);
}

/* ========= header__nav =========*/

.header__logo img{
  height: 70px;
}
/*.header__nav-inner .header__nav-button{
 display: none;
}*/

.header__nav {
  padding: 6px 0px;
  border-bottom: 1px solid var(--blue-light);
}

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

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}
.btn-phone{
    cursor: pointer;
}
.header__nav-item {
  font-weight: 500;
      margin: 4px;
}

.header__nav .header__nav-link {
  transition: all 0.3s ease;
}

.header__nav .header__nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
  color: var(--orange);
   white-space: normal;
}

.header__nav .header__nav-link:hover,.header__nav .header__nav-link.active {
  text-decoration: underline;
  text-underline-offset: 6px;
  color: var(--orange);
  white-space: normal;
}
.header__top-icon{
    width: 22px;
}
.header__nav .header__nav-link{
     color: var(--blue-main);
}
.button {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background-color: var(--orange);
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
   white-space: nowrap;
}

.button:hover {
  color: var(--orange);
  border: 1px solid var(--orange);
  background-color: transparent;
}
.sity-nav{
    display: flex;
    flex-direction: column;
    position: absolute;
    white-space: nowrap;
    top: 100%;
    left: 0;
    padding-left: 30px;
    width: 360px;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s;
}
.header__top-city_active .sity-nav{
    max-height: 500px;
    transition: 0.5s;
	z-index: 2;
    background-color: white;
}
.btn-menu{
    display: none;
}
.btn-menu span {
    display: block;
    width: 30px;
    height: 2px;
    background: #333;
    margin: 4px 10px;
}


/*
.sity-nav li{
    position: absolute;
}
.sity-nav li:first-child, .sity-nav li .li-active{
    position: static;
}
*/
.sity-nav .li-active{
    order:-1;
}
.li-active{
    cursor: pointer;
}
/* ========= header__content =========*/
.header__nav-links .header__nav-item{
    margin: 20px;
    flex-wrap: nowrap;
    /*white-space: nowrap;*/

}
.header__nav-links .sub-menu{
    position: absolute;
    right:2000px;
    transition: 0.2s;
    padding: 20px;
    border-radius: 15px;
    top: calc(100% - 20px);
}
.header__nav-links .header__nav-item:hover .sub-menu {
    right: 0;
    transition: 0.2s;
    background: #FFF;
    z-index: 2;
    display: grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
}
.header__nav-links .sub-menu .header__nav-item {
    margin: 10px 5px;
}






.header__content-wrapper {
  /*background-image: url("../img/header-background.png");*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 738px;
  padding-top: 150px;
  position: relative;
}
.header__content-wrapper:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
}
.header__content-inner{
     position: relative;
    z-index: 1;
}

.servises-page .header__content-wrapper {
    min-height: 250px;
    padding-top: 100px;
}
/*.header__content:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0000007a;
}
*/
.header__content-title {
  max-width: 650px;
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  line-height: 59px;
  margin-bottom: 25px;
}

.header__content-title span {
  color: var(--orange);
}

.header__content-description {
  color: #fff;
  font-size: 24px;
  margin-bottom: 25px;
  max-width: 650px;
}

/* ========= about-section =========*/

.about-section {
  /* margin: 120px 0; */
}

.about-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.about-section__inner {
  display: flex;
  align-items: center;
  gap: 154px;
}

.about-section__title {
  font-size: 47px;
  font-weight: 700;
  line-height: 50px;
}

.about-section__button {
  display: block;
}

/* ========= advantages-section =========*/

.advantages-section {
  /* margin: 120px 0px; */
}

.advantages-section__title {
  font-size: 47px;
  line-height: 50px;
  margin-bottom: 40px;
}

.advantages-section__inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.advantages-section__content {
}

.advantages-section__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
  border-radius: 10px;
}

.advantages-section__item {
  display: flex;
  align-items: center;
  background-color: var(--blue-main);
  padding: 24px 30px;
  color: #fff;
  font-size: 22px;
  gap: 20px;
  line-height: 26px;
}

/* ========= services-section =========*/

.section-wrapper {
  background-color: var(--gray);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-header__title {
  line-height: 54px;
  font-size: 47px;
  font-weight: bold;
}

.section-header__button {
  padding: 16px 42px;
}

/* ========= text-container =========*/
.text-container{
	line-height: 180%;
	padding-top: 40px;
}

.text-container ul, .text-container li, .section-post ul, .section-post ol {
    list-style: disc;
    margin-left: 20px;
    text-align: justify;
}


.entry-content ul, .entry-content ol, .section-post ul, .section-post ol {
	    margin-left: 20px;
}
	

/* ========= slider-services =========*/


.slick-slider {
}

.services-slider {
}

.services-slider__item {
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  margin-right: 20px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.services-slider__item:hover {
  border-bottom: 3px solid var(--orange);
}

.services-slider__item:hover .services-slider__link {
  width: 100%;
}

.services-slider__img {
  width: 60px;
  height: 60px;
}

.services-slider__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 25px;
}
.articles-slider__img-wrap{
    height: 300px;
    position: relative;
    overflow: hidden;
}
.articles-slider__img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: none;
}
.services-slider__description {
  font-size: 15px;
}

.slider-link {
  color: var(--orange);
  font-size: 17px;
  font-weight: 500;
}

.services-slider__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  transition: all 0.3s ease;
}

/* Стрілка */

.slider-position {
  position: relative;
}

body .slick-arrow {
  border: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 0;
  height: fit-content;
  width: fit-content;
  background-color: var(--orange)!important;
  padding: 15.33px 11.5px;
  border-radius: 4px;
}

/* Стрілка вліво */
.slick-arrow.slick-prev {
  left: -12px;
}

.slick-arrow.slick-prev::before {
  content: "";
  display: block;
  width: 23px; /* тут задаєш розмір стрілки */
  height: 15.33px;
  background: url("../img/icons/arrow-prev.svg") center center / contain
    no-repeat;
}

/* Стрілка вправо */
.slick-arrow.slick-next {
  right: -12px;
}
.slick-arrow.slick-next::before {
  content: "";
  display: block;
  width: 23px; /* тут задаєш розмір стрілки */
  height: 15.33px;
  background: url("../img/icons/arrow-next.svg") center center / contain
    no-repeat;
}

/* ========= calculate-services =========*/

.calculate-services__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 54px;
  margin-bottom: 40px;
}

.calculate-services__content {
  display: flex;
  gap: 32px;
}

.calculate-services__box {
  width: 100%;
}

.calculate-services__list {
  overflow: hidden;
  border-radius: 8px;
}

.calculate-services__list {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--blue-light);
}

.calculate-services__item {
  border-top: 1px solid var(--blue-light);
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.calculate-services__item:first-child {
  border-top: none;
}

.form {
  height: fit-content;
  background-color: var(--blue-main);
  color: #fff;
  padding: 32px 16px;
  border-radius: 8px;
  max-width: 300px;
}

.form__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 8px;
}

.form__description {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 20px;
}

.from__input-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form__input {
  background-color: #fff;
  color: var(--blue-dark);
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 26px;
  width: 100%;
}
.wpcf7-form-control-wrap{
    margin-bottom: 15px;
    display: block;
}
.form__button {
  width: 100%;
}
.wpcf7-textarea{
    max-height:100px;
}
/* ========= clear-canalization =========*/

.clear-canalization {
}

.clear-canalization__title {
  font-size: 46px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 40px;
}

.clear-canalization__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.clear-canalization__item {
  background-color: var(--gray);
  padding: 30px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.clear-canalization__img {
  display: block;
  width: 40px;
  height: 40px;
}

.clear-canalization__card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}

/* ========= order-kyiv =========*/

.order-kyiv__wrapper {
  padding-bottom: 120px;
}

.order-kyiv__title {
  font-size: 30px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 30px;
  line-height: 54px;
}

.order-kyiv__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.order-kyiv__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.order-kyiv__link {
  font-size: 18px;
  text-decoration: underline;
}

/* ========= questions =========*/

.questions {
  border-bottom: 1px solid var(--blue-light);
}

.questions__title {
  text-align: center;
  font-size: 47px;
  font-weight: 700;
  line-height: 54px;
  margin-bottom: 40px;
}

.accordion__faq {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion__item {
  border: 1px solid var(--blue-light);
  border-radius: 8px;
  overflow: hidden;
}

.accordion__header {
  background: #fff;
  padding: 20px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion__body {
  padding: 20px;
  background: var(--blue-main);
  color: white;
  display: none;
}

.accordion__item.active .accordion__header {
  background: var(--blue-main);
  color: white;
  border-bottom: 1px solid #fff;
}

.accordion__item.active .accordion__body {
  display: block;
}

.icon {
  font-size: 24px;
}

.drag .accordion__header {
  border: 2px dashed #007bff;
  background-color: #e6f0ff;
  padding: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: 2px solid #007bff;
  cursor: default;
}

.dashed {
  border: none;
  outline: none;
  border-bottom: 1px dashed;
}

.move-icon {
  font-size: 20px;
  border: 1px dashed #007bff;
  padding: 2px 6px;
  border-radius: 4px;
}

.questions__box {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.questions__form {
  min-width: 410px;
  padding: 40px 30px;
}

.questions__form-form {
}

.form__box {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

/* ========= footer =========*/
.footer{
  border-top: 1px solid var(--blue-light);	
}

.footer__inner {
  padding-top: 40px;
  padding-bottom: 70px;

  display: flex;
  justify-content: space-between;
  align-items: start;
}
.logo-text-footer{
    max-width: 130px;
}
.footer__box {
  display: flex;
  gap: 120px;
}

.footer__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 35px;
}

.footer__title {
  font-size: 20px;
  font-weight: 600;
}

.footer__link {
  cursor: pointer;
  font-size: 15px;
  line-height: 22px;

}

.footer__link:hover {
  text-decoration: underline;
}

.footer__socials {
  z-index: 10;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 32px;
  height: 32px;
}

.reviews-section {
  background-color: var(--blue-main);
}

/* ========== services slider ========== */

.reviews-slider__item {
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  margin-right: 20px;
  height: auto !important;
}

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

.reviews-slider__name {
  font-size: 20px;
  font-weight: 600;
}

.reviews-slider__date {
  color: var(--blue-dark);
  font-size: 15px;
}

.reviews-slider__star-box {
  display: flex;
  gap: 6px;
}

.reviews-section__title {
  color: #fff;
  font-size: 47px;
  font-weight: 700;
}

/* ========== projects slider ========== */

.projects-section__title {
  font-size: 47px;
  font-weight: 700;
  color: var(--blue-main);
  text-align: center;
}

.projects-section__slide {
  display: flex !important;
  align-items: end;
  padding: 12px;
  height: 495px !important;
  min-width: 327px !important;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin:0 10px;
}

.projects-slider__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
}

.projects-slider__button {
  padding: 10px 8px;
  height: fit-content;
}

.projects-slider__title {
  font-size: 19px;
  font-weight: 600;
}

.projects{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}


.projects .projects-section__slide{
    width: calc(33.3% - 20px);
    margin-bottom: 20px;
}








.eviews-slider__icon {
  display: block;
  width: 100px;
  height: 100px;
}
/* articles slider */
.articles-slider__item {
  padding: 0;
  gap: 0;
}



.articles-slider__data {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--blue-dark);
}

.articles-slider__content {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}






.projects-section__slide {
  position: relative;
  min-height: 300px;
  background-color: #ccc;
  border-radius: 12px;
  overflow: hidden;
}

.projects-slider__box {
  position: relative;
  z-index: 2;
  padding: 20px;
 /* color: #fff;*/
}

.open-lightbox-btn {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.pop-up-form,.pop-up-form-reviews{
   display: none;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12;
    background: #000000ba;
}

.pop-up-form-active .pop-up-form,.pop-up-form-active-reviews .pop-up-form-reviews{
    display: block;
}

.pop-up-form .calculate-services__form, .pop-up-form-cont-reviews {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}



.pop-up-form .wpcf7-textarea{
    display: none;
}


    .header__top-wrapper-active .btn-menu-item-top{
        transform: rotate(45deg);
        margin: 0;
    }
    .header__top-wrapper-active .btn-menu-item-ceter{
        display: none;
    }
    .header__top-wrapper-active .btn-menu-item-bottom{
        transform: rotate(-45deg);
        margin: 0;
    }
    



.btn-mob{
    display: none;
}


.reviews-section__inner .slick-dots{
    
}

body .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--orange);
}
.slick-dots li button:before{
    
}
body .slick-dots li button:before {
    font-family: 'slick';
    font-size: 13px;
    color: #d7d7d7;
    opacity: 1 !important;
    
}
body .slick-dots {
    bottom: -55px;
}

.slick-dots{
    display: none!important;
}

/* POPUP STYLE */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 480px;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  display: none;
  z-index: 99999;
}

.cookie-popup-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.cookie-btn {
  padding: 10px 18px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  width: fit-content;
  align-self: flex-end;
}

.cookie-btn:hover {
  background: #005fcc;
}


@media screen and (max-width: 991px){
    .phone-wrap{
    max-height: 0;
    position: absolute;
    transform: translateX(-50%);
    top: 100%;
    background: #fff;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;  
    align-items: center;
}
    .scrol .header{
        position: fixed;
        z-index: 3;
        left: 0;
        width: 100%;
        background: #fff;
    }
    .btn-menu{
        display: block;
        order: 1;
        min-width: 50px;
    }
    .header{
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .header__top-wrapper{
        order: 1;
        border-top: 1px solid #ccc;
        position: absolute;
        top: 100%;
        background: #fff;
        z-index: 2;
        width: 0;
        transition: 0.2s;
        right: 0;
    }
    .header__top-wrapper-active .header__top-wrapper{
        width: 100%;
    }
    .right-top,.header__top-inner,
    .phone-wrap,
    .calculate-services__content,
    .questions__box{
        flex-direction: column;
    }
    .header__nav-links{
        order: -1;
    }
    .header__top .container {
    justify-content: flex-start;
    }
    .right-top,.header__top-inner {
        align-items: flex-start;
        width: 100%;
    }
    .header__nav-list {
        display: block;
    }
    .header__nav-links .header__nav-item {
        margin: 5px;
    }
    .header__top-icons {
         order: 1;
         justify-content: center;
         width: 100%;
    }
    .wpml-ls-legacy-list-horizontal a{
        padding-left: 0!important;
    }
    .header__top-phone{
        align-items: flex-start;
        margin-left: auto;
    }
    .header__logo img {
        height: auto;
    }
    .text-logo-header{
        font-size:0px;
    }
    
/**/
.header__content-title,.advantages-section__title,
.section-header__title,.calculate-services__title,
.clear-canalization__title,.reviews-section__title,
.section-header__title,.questions__title {
    font-size: 38px;
    line-height: 39px;

 
}
    
   .header__nav-links{
       display: none;
   } 
    
    .header__top-wrapper-active .header__nav-links{
       display: block;
   } 
    .about-section__inner,.advantages-section__inner{
        flex-direction: column;
        gap: 54px;
    }
    .section{
        padding: 50px 0px;
    }
    .about-section__title {
        font-size: 37px;
        line-height: 40px;
    }
    .btn-mob{
        display: block;
        text-align: center;
        margin: 70px auto 0;
        max-width: 400px;
    }
    .btn-deckt{
        display: none;
    }
    .calculate-services__form{
        max-width: 100%;
    }
    .clear-canalization__box,.order-kyiv__list{
        grid-template-columns: repeat(2, 1fr);
    }
    .questions__form{
        max-width: 100%;
        margin: 0 auto;
        min-width: 100%;
    }
    .accordion__header{
        font-size: 18px;
    }
    .slick-arrow{
        display: none!important;
    }
    .slick-dots{
        display: block!important;
    }
	
.header__content-wrapper {

  min-height: 600px;
  padding-top: 100px;
}
.container H1 {
    font-size: 36px;
}
.header__content-description {
    font-size: 20px;
}
.header__nav-links .sub-menu{
    display: none!important;
}
	
}
@media screen and (max-width: 768px){
	.phone-wrap a {
    margin-right: 10px;
    margin-bottom: 10px;
	font-size: 20px;
    }
    .footer__inner{
        flex-direction: column;
    }
    .footerLogo{
        margin-bottom: 30px;
    }
    .footer__box{
        flex-wrap: wrap;
        justify-content: space-between;
        gap:0;
    }
    .footer__item-soc{
        width: 100%;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }
    .logo-text-footer{
        max-width: 100%;
        font-size: 12px;
    }
    .calculate-services__item{
        flex-direction: column;
    }
    .calculate-services__info{
        font-weight: bold;
        margin-top: 10px;
    }
	    .container H1 {
        font-size: 32px;
    }
    .header__nav-button{
        padding: 10px 10px;
    }
	.header__nav-item {
    font-size: 20px;
}
}

@media screen and (max-width: 480px){
    .header__nav-button{
        width: 100%;
    }
    .button{
        width: 100%;
        text-align: center;
    }
    .advantages-section__item{
        font-size:18px;
        padding: 15px;
    }
    .clear-canalization__card-title {
        font-size: 16px;
    }
    .clear-canalization__item {
        padding: 20px 10px;
 
    }
    .projects-slider__button{
        max-width: 50px;
    }
    .projects-slider__title {
        font-size: 16px;
    }
	.cookie-popup {
    bottom: 10px;
    padding: 15px;
  }
}






