@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Bold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap
}
.wpcf7 form.sent .wpcf7-response-output {
    display: none;
}
.form-container2 .custom-contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
img {
    pointer-events: none; /* Забороняє будь-яку взаємодію з зображенням */
    user-select: none;   /* Забороняє виділення */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway';
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-variant-numeric: lining-nums;
}

body {
    background: #0c0c0c;
    height: 100%;
    margin: 0;
    padding: 0;
    letter-spacing: 0.3px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0c0c0c;
    color: #ffffff;
    z-index: 1000; /* Для того, щоб header був поверх інших елементів */
}


.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 60px;
    list-style: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    z-index: 2;
}

.nav-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    font-family: "Raleway", Sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3.4px;
    transition: background-color 0.3s ease, color 0.3s ease; 
}

.nav-links a:hover {
    color: #ffffffc2;
}
.signin-btn {
    display: flex;
    align-items: center;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon .line {
    width: 40px;
    height: 1px;
    background-color: #fff;
}
.logo img {
    width: 145px;
    padding: 10px 0;
}
@media (max-width: 1000px) {
    .navbar {
        height: 70px;
    }
    .nav-links {
        display: none;
        position: fixed; /* Зроблено фіксованим на екрані */
        top: 0;
        right: 0;
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px 20px 50px 20px;
        transform: translateY(-20px); /* Початкове положення меню */
        transition: opacity 0.3s ease, transform 0.3s ease;
        gap: 30px;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 999; /* Меню буде знаходитися поверх інших елементів */
    }
    .nav-links a {
        letter-spacing: 2px;
    }
    .nav-links.active {
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateY(0); /* Плавно з’являється */
        opacity: 1; /* Встановлено видимість */
        z-index: 1000; /* Меню на першому плані */
    }
    
    .navbar {
        padding: 0 10px;
    }
    .menu-icon {
        display: flex;
        z-index: 1003;
    }
    .menu-icon.active {
        transform: rotate(90deg);
    }
    .menu-icon.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-icon.active .line:nth-child(2) {
        opacity: 0;
    }
    .menu-icon.active .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .line {
        transition: all 0.3s ease;
    }
    .menu-icon {
        transition: transform 0.3s ease;
    }
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #0c0c0c;
    color: #fff;
    flex-wrap: wrap;
    font-size: 16px;
    padding: 122px 30px 80px 30px;
}

.contact-info {
    color: #E1E1E1;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    text-decoration: none;
}

.contact-info a {
    color: #E1E1E1;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    text-decoration: none;
}
.contact-info-tel {
    padding-bottom: 30px;
}
.social-icons {
    display: flex;
    gap: 15px;
    flex: 1;
    justify-content: center;
    gap: 75px;
}

.social-icon {
    width: 20px;
    height: auto;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    text-decoration: none;
}

.facebook {
    color: #fff;
}

.instagram {
    color: #fff;
}

.behance {
    color: #fff;
    width: 25px;
}

.pinterest {
    color: #fff;
}

.social-icon:hover {
    opacity: 0.7;
}

.copyright {
    text-align: right;
    flex: 1;
    padding: 10px;
    font-size: 14px;
    max-width: 300px;
}
.display-none {
    display: none;
}
@media (max-width: 770px) {
    .footer {
        flex-direction: column;
        font-size: 14px;
        padding: 22px 13px 70px 13px;
    }
    .muro-container {
        padding: 13px;
    }
    .display-none {
        display: flex;
        margin-bottom: 20px;
    }
    .display-block {
        display: none;
    }
    .social-icon {
        width: 16px;
    }
    .behance {
        width: 20.5px;
    }
    .contact-info, .social-icons, .copyright {
        width: 100%;
        text-align: left;
    }
    .copyright {
        text-align: left;
        max-width: 100%;
        margin-top: 20px;
        padding: 0;
    }
    .social-icons {
        justify-content: left;
        margin-top: 15px;
        gap: 30px;
    }
}
.contact-info-tel {
    padding-bottom: 30px;
    gap: 5px;
    display: flex;
    flex-direction: column;
}
.muro-container {
    text-align: center;
    margin: 0 auto;
    padding: 13px;
    color: #fff;
    margin-top: 00px;
    max-width: 1000px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 50vh;
    justify-content: center;
}
.center-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.center-logo img {
    display: block;
    margin: 20px;
    width: 120%;
    height: 120%;
    margin: 20px 40px 30px 0px;
}
.muro-title {
    color: #ffffff;
    font-family: "Raleway", Sans-serif;
    font-size: 35px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4em;
}

.muro-description {
    text-align: center;
    color: #E9E9E9;
    font-size: 14px;
    font-weight: 400;
    line-height: 2em;
}


.muro-portfolio-link-2 {
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    background: #ff9204;
    padding: 7px 60px;
    transition: color 0.3s ease, background 0.3s ease;
    border: none;
}

.muro-portfolio-link-2:hover {
    color: #fff; 
    background: #ff920487;
}

.muro-portfolio-link {
    font-size: 1rem;
    text-decoration: none;
    color: #000000;
    background: #fff;
    padding: 7px 60px;
    transition: color 0.3s ease, background 0.3s ease; /* Додаємо плавний перехід */
    border: none;
}

.muro-portfolio-link:hover {
    color: #000; 
    background: #ffffffd4;
}
.form-container {
    background-color: #f8f8f8;
    padding: 0px 30px;
    max-width: 80%;
    width: 100%;
    margin: auto;
    padding: 120px;
    margin-top: 100px;
}

.form-container h1 {
    font-family: "Raleway", Sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.3em;
    color: #0c0c0c;
    text-align: center;
    padding: 0px 0px 50px 0px;
    text-transform: uppercase;
}

.custom-contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Проміжок між елементами */
}

.form-group {
    display: flex;
    flex-direction: column; /* Розташування полів у стовпчик */
    flex: 1 1 calc(50% - 20px); /* Займає половину ширини з урахуванням відступів */
    box-sizing: border-box; /* Враховує padding і border у розмірах */
}
.form-group-text {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}
.form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid transparent; /* Нижнє підкреслення прозоре */
    outline: none; /* Видаляє стандартний контур */
    background-color: transparent; /* Прозорий фон */
    transition: border-bottom 0.3s ease; /* Анімація для підкреслення */
    border-bottom: 1px solid #ccc;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.form-group input:focus {
    border-bottom: 1px solid #838383; /* Зміна кольору під час фокусу */
}

.form-group input::placeholder {
    color: #aaa;
}
.form-textarea textarea::placeholder {
    color: #aaa;
}
.form-textarea {
    margin-bottom: 15px;
}

.form-textarea textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid transparent; /* Нижнє підкреслення прозоре */
    outline: none; /* Видаляє стандартний контур */
    background-color: transparent; /* Прозорий фон */
    resize: vertical; /* Дозволяє змінювати розмір тільки вертикально */
    height: 100px;
    transition: border-bottom 0.3s ease; /* Анімація для підкреслення */
    border-bottom: 1px solid #ccc;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.form-textarea textarea:focus {
    border-bottom: 1px solid #838383; /* Зміна кольору під час фокусу */
}

.form-button {
    text-align: center;
}

.form-button button {
    position: relative;
    transition: all 0.3s ease-in-out;
    padding-block: 0.8rem;
    padding-inline: 1.25rem;
    background-color: #000;
    cursor: pointer;
    color: #ffff;
    border: none;
    outline: none;
    overflow: hidden;
    font-size: 14px;
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .form-button button:hover {
    background: #222222;
  }
  
  
  .form-button button:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .form-button button::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 100%;
    background-image: linear-gradient(120deg, rgb(255 255 255 / 0%) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -200px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }
@media (max-width: 770px) {
    .form-group {
        flex-direction: column;
        margin-bottom: 0;
    }
    .custom-contact-form {
        flex-direction: column;
    }
    .center-logo img {
        width: 90%;
        height: 90%;
        margin: 40px;
    }
    .center-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .form-container {
        max-width: 100%;
        margin: 0;
        padding: 13px;
        margin-top: -1px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .form-container h1 {
        padding: 0px 0px 20px 0px;
        font-size: 30px;
    }
    .form-group input {
        width: 100%;
        margin-bottom: 10px;
    }
    .custom-contact-form {
        gap: 25px;
    }
}

.social-media-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #f8f8f8;
    padding-left: 150px;
    padding-right: 150px;
    margin-top: 100px;
    height: auto;
}

.text-content h1 {
    font-family: "Raleway", Sans-serif;
    font-size: 35px;
    font-weight: 400;
    text-transform: uppercase;
    color: #0f0f0f;
}

.text-content p {
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #0f0f0f;
    width: 80%;
    line-height: 1.9;
}

.icons {
    display: flex;
    gap: 30px;
    flex-direction: row;
}
.icons img {
    width: 20px;
    height: 20px;
}
.text-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.icons a {
    text-decoration: none;
    color: #0f0f0f;
    font-size: 16px;
    transition: color 0.3s ease;
}

.icons a:hover {
    color: #000;
}

.phone-image img {
    width: 100%;
    margin-top: 70px;
    margin-bottom: -4px;
}
@media (max-width: 1120px) {
    .social-media-block {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        padding-left: 13px;
        padding-right: 13px;
        padding-top: 60px;
        margin-top: 10px;
        margin-bottom: 0px;
    }
    .text-content p {
        width: 100%;
        text-align: center;
    }
    .text-content h1 {
        text-align: center;
        font-size: 25px;
    }
    .text-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    .phone-image img {
        width: 100%;
        margin-top: 30px;
    }
    .icons a {
        font-size: 18px;
    }
}


.services-container {
    padding: 0;
    text-align: left;
    width: 90%;
    margin: auto;
  }
  .services-container h1 {
    font-size: 24px;
    margin-bottom: 50px;
  }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
    }
    
  .service img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }
  .service h3 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 27px;
    letter-spacing: 0.5px;
    text-align: left;
  }
  .service p {
    font-size: 14px;
    font-weight: 300;
    line-height: 2em;
    margin-bottom: 10px;
    text-align: left;
    color: #D7D7D7;
    height: 200px;
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    width: 100%;
  }
  @media (max-width: 770px) {
    .services-container h1 {
      font-size: 20px;
    }
  }
    @media (max-width: 1368px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr); /* По 2 колонки */
      }
      .service p {
          height: auto;
          padding-bottom: 20px;
      }
    }
    @media (max-width: 770px) {
      .services-grid {
        grid-template-columns: repeat(1, 1fr); /* По 2 колонки */
      }
      .service p {
          padding-bottom: 0px;
      }
    }    
  .muro-all-link {
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    background: #ff9204;
    padding: 15px 40px;
    transition: color 0.3s ease, background 0.3s ease; /* Додаємо плавний перехід */
    border: none;
    text-transform: uppercase;
    text-align: center;
}

.muro-all-link:hover {
    color: #fff; 
    background: #000000;
}

  .muro-all-link-zabespech {
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    background: #ff9204;
    padding: 15px 40px;
    transition: color 0.3s ease, background 0.3s ease; /* Додаємо плавний перехід */
    border: none;
    text-transform: uppercase;
    text-align: center;
    border-radius: 6px;
}

.muro-all-link-zabespech:hover {
    color: #fff; 
    background: #ff9204ad;
}
  .muro-all-link-chomu {
    font-size: 1rem;
    text-decoration: none;
    color: #dc3232 ;
    background: #fff;
    padding: 15px 40px;
    transition: color 0.3s ease, background 0.3s ease; /* Додаємо плавний перехід */
    border: none;
    text-transform: uppercase;
    text-align: center;
    border-radius: 6px;
}

.muro-all-link-chomu:hover {
    background: #ffffffd6;
}
.header-service svg {
    width: 100%;
}
.header-service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0px;
}
@media (max-width: 770px) {
    .services-container {
        width: 100%;
        padding-left: 13px;
        padding-right: 13px;
    }
    .muro-all-link {
        font-size: 0.9rem;
        padding: 10px 10px;
    }
    .header-service svg {
        width: 80%;
    }
    .header-service-top {
        padding: 20px 0px;
        align-items: center;
    }
    .question-mark {
        font-size: 3.9rem;
    }
    .bold-text {
        font-size: 1.6rem;
    }
    .text-chomu {
        font-size: 1.6rem;
    }
    .service {
        padding: 10px 0;
    }
    .service p {
        height: auto;
        width: 100%;
      }
  }
  .parallax {
        padding-top: 80px;
        padding-bottom: 80px;
        width: 90%;
        height: 70vh;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        margin: auto;
    }
    .parallax-conteiner {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    @media (max-width: 770px) {
        .parallax {
            width: 100%;
            height: 50vh;
        }
      }



    .yakist-container {
        margin: 0 auto;
        padding: 50px 20px;
        display: flex;
        flex-wrap: wrap;
        color: #fff;
        width: 90%;
    }

    .yakist-section {
        flex: 1 1 50%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: flex-start;     
        
    }

    .text-heading {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 30px;
    }

    .grid-section {
        flex: 1 1 50%;
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Два стовпці */
        gap: 20px;
        box-sizing: border-box;
    }


    .grid-card {
        padding: 20px 0px;
        text-align: left;
    }

    .grid-card h2 {
        color: #FFFFFF;
        font-size: 20px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 10px;
    }

    .grid-card p {
        text-align: left;
        color: #D7D7D7;
        font-size: 14px;
        font-weight: 300;
        line-height: 2em;
        margin-top: 10px;
    }

    .grid-card span {
        color: #F8F8F8;
        font-size: 14px;
        font-weight: 400;
        text-transform: uppercase;
    }
    @media (max-width: 1268px) {
        .yakist-section, .grid-section {
            grid-template-columns: repeat(2, 1fr); /* Завжди 2 колонки */
        }
    }
    @media (max-width: 770px) {
        .yakist-container {
            flex-direction: column;
            width: 100%;
            padding: 20px 13px;
        }

        .yakist-section, .grid-section {
            flex: 1 1 100%;
            padding: 0;
            grid-template-columns: repeat(1, 1fr); /* Завжди 2 колонки */
        }
        .grid-section {
            gap: 0;
        }
        .line-break br {
            display: none;
        }
    }

    .header-yakist {
        display: flex;
        align-items: center;
        gap: 2px; /* відступ між елементами */
        color: #ffffff;
    }

    .header-yakist-top {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .header-yakist img {
        width: 100%;
    }
    .header-service img {
        width: 100%;
    }
    @media (max-width: 770px) {
        .header-yakist-top {
            padding: 20px 0px;
            align-items: center;
            gap: 10px;
        }
        .header-service img {
            width: 80%;
        }
        .header-yakist img {
            width: 100%;
        }
        .yakist-section {
            display: block;
        }
        .header-yakist-top {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .header-yakist {
            width: 100%;
            justify-content: center;
        }
        .header-yakist-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
      }
      .slider-container {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    .slider {
        display: flex;
        transition: transform 1s ease;
        height: 100%;
        filter: brightness(0.5);
    }

    .slide {
        min-width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: transform 8s ease;
    }

    .slide.active img {
        transform: scale(1.2);
    }

    .center-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 3rem;
        z-index: 25;
    }
    .center-text {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 75%;
    }
    .controls {
        position: absolute;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        z-index: 23;
    }

    .control {
        cursor: pointer;
        background: rgba(0, 0, 0, 0.0);
        padding: 1rem;
        color: #fff;
        border: none;
        outline: none;
        font-size: 1.5rem;
        user-select: none;
        height: 100vh;
        width: 90px;
        transition: all 0.5s ease;
    }
    .control:hover {
        backdrop-filter: blur(20px);
    }
    .prev {
        border-color: rgba(255, 255, 255, 0.1);
        border-style: solid;
        border-width: 0px 1px 0px 0px;
    }
    .next {
        border-color: rgba(255, 255, 255, 0.1);
        border-style: solid;
        border-width: 0px 0px 0px 1px;
    }
    .center-text {
        text-align: center;
        font-size: 24px;
    }
    .icon-container {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 20px;
    }
    .icon-container a {
        color: #fff;
        font-size: 18px;
        transition: color 0.3s;
    }
    .icon-container a:hover {
        color: #fff;
    }
    .slider-container svg {
        display: block;
        margin: 20px auto;
        width: 100px;
        height: 100px;
    }
    .control-mob {
        display: none;
    }
    .muro-cont-link {
        font-size: 1rem;
        text-decoration: none;
        color: #fff;
        background: #ff9204;
        padding: 15px 40px;
        transition: color 0.3s ease, background 0.3s ease; /* Додаємо плавний перехід */
        border: none;
        text-transform: uppercase;
        text-align: center;
    }
    
    .muro-cont-link:hover {
        color: #fff; 
        background: #000000;
    }
    @media (max-width: 770px) { 
        .controls {
            display: none;
        }
        .control-mob {
            position: absolute;
            top: 35%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            z-index: 26;
            right: 30px;
        }
        .control-mobile {
            cursor: pointer;
            background: rgba(0, 0, 0, 0.0);
            padding: 1rem;
            color: #fff;
            border: none;
            outline: none;
            font-size: 1rem;
            user-select: none;
            transition: all 0.5s ease;
        }
        .short-line {
            width: 1px;
            height: 40px;
            background-color: #ffffff7a;
            margin: 20px 5px;
        }
        .slider-container {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        .center-text {
            width: 100%;
        }
        .center-text {
            width: 100%;
            flex-direction: column;
            gap: 20px;
        }
        .muro-cont-link {
            font-size: 0.8rem;
            padding: 15px 20px;
        }
        .muro-cont-link {
            display: block;
        }
    }

/* Стиль для попапу */
.popup-container {
    display: flex; /* Робимо flex-контейнер для центрування */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Затемнення фону */
    justify-content: center;
    align-items: center;
    opacity: 0; /* Початкова непрозорість */
    visibility: hidden; /* Початково приховано */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Плавний перехід */
    z-index: 1200;
    backdrop-filter: blur(3px);
}
.popup-header {
    font-family: Raleway;
    font-weight: 500;
    letter-spacing: -0.0125em;
    text-transform: none;
    text-align: center;
    font-size: 1.5rem;
}
.form-container2 p {
    font-family: "Raleway", Sans-serif;
    font-weight: 300;
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}
.form-container2 form {
    display: flex;
    flex-direction: column;
}
/* Анімація відкриття */
.popup-container.open {
    opacity: 1; /* Показуємо елемент */
    visibility: visible; /* Робимо видимим */
}
/* Стиль для попапу */
.popup-container-rew {
    display: flex; /* Робимо flex-контейнер для центрування */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Затемнення фону */
    justify-content: center;
    align-items: center;
    opacity: 0; /* Початкова непрозорість */
    visibility: hidden; /* Початково приховано */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Плавний перехід */
    z-index: 999;
    backdrop-filter: blur(3px);
}

/* Анімація відкриття */
.popup-container-rew.open {
    opacity: 1; /* Показуємо елемент */
    visibility: visible; /* Робимо видимим */
}

/* Стили для форми */
.form-container2 {
    background-color: #fff;
    padding: 20px;
    width: 50%;
    transform: scale(0.9); /* Початковий розмір трохи менше */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Плавний перехід */
    opacity: 0; /* Початкова непрозорість форми */
    overflow: auto;
    height: auto;
    max-height: 80%;
}
/* Ховаємо скролбар для веб-клієнтів */
.form-container2::-webkit-scrollbar {
    display: none;
}

/* Ховаємо скролбар для всіх інших браузерів */
.form-container2 {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}
/* Анімація форми */
.popup-container-rew.open .form-container2 {
    transform: scale(1); /* Повертаємо нормальний розмір */
    opacity: 1; /* Робимо видимим */
}

/* Анімація форми */
.popup-container.open .form-container2 {
    transform: scale(1); /* Повертаємо нормальний розмір */
    opacity: 1; /* Робимо видимим */
}


/* Відключення скролу на сторінці, коли попап відкритий */
body.no-scroll {
    overflow: hidden;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    background: none;
    border: none;
}
.close-btn svg {
    width: 24px;
    height: 24px;
    fill: black;
    transition: fill 0.3s ease;
}

.close-btn:hover svg {
    fill: red;
}

/* Close button */
.close-btn-rew {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    background: none;
    border: none;
}
.close-btn-rew svg {
    width: 24px;
    height: 24px;
    fill: black;
    transition: fill 0.3s ease;
}

.close-btn-rew:hover svg {
    fill: red;
}

@media (max-width: 868px) {
    .form-container2 {
        width: 95%;
        max-width: 90%;
    }
    .block3 {
        height: auto;
      } 
      .header-service {
        width: 50%;
    }
}
.form-container2 input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid transparent; /* Нижнє підкреслення прозоре */
    outline: none; /* Видаляє стандартний контур */
    background-color: transparent; /* Прозорий фон */
    transition: border-bottom 0.3s ease; /* Анімація для підкреслення */
    border-bottom: 1px solid #ccc;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.form-container2 input:focus {
    border-bottom: 1px solid #838383; /* Зміна кольору під час фокусу */
}

.form-container2 input::placeholder {
    color: #aaa;
}
.form-container2 textarea::placeholder {
    color: #aaa;
}
.form-container2 {
    margin-bottom: 15px;
}

.form-container2 textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid transparent; /* Нижнє підкреслення прозоре */
    outline: none; /* Видаляє стандартний контур */
    background-color: transparent; /* Прозорий фон */
    resize: vertical; /* Дозволяє змінювати розмір тільки вертикально */
    height: 100px;
    transition: border-bottom 0.3s ease; /* Анімація для підкреслення */
    border-bottom: 1px solid #ccc;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.form-container2 textarea:focus {
    border-bottom: 1px solid #838383; /* Зміна кольору під час фокусу */
}

.form-button-popup {
    text-align: center;
    margin-top: 20px;
}
.contact-form p {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.form-button-popup button {
    position: relative;
    transition: all 0.3s ease-in-out;
    padding-block: 0.8rem;
    padding-inline: 1.25rem;
    background-color: #ff9204;
    cursor: pointer;
    color: #ffff;
    border: none;
    outline: none;
    overflow: hidden;
    font-size: 14px;
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .form-button-popup button:hover {
    background: #ff9204b3;
  }
  
  
  .form-button-popup button:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .form-button-popup button::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 100%;
    background-image: linear-gradient(120deg, rgb(255 255 255 / 0%) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -200px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }
  .scroll-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background-color: #ffffff00;
    color: #757575;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transition: opacity 0.3s, visibility 0.3s;
    border: 1px solid #757575 ;
    text-decoration: none;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #00000030;
}






.sliderr {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
    background: #fff;
}

.container-portfolio {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease-in-out;
    opacity: 0;
}

.container-portfolio.active {
    opacity: 1;
}

.image-left-portfolio, .image-right-portfolio {
    position: absolute;
    object-fit: cover;
}

.image-left-portfolio {
    bottom: 0;
    left: 0;
    width: 440px;
    aspect-ratio: 1/1;
}

.image-right-portfolio {
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}

.text-block-portfolio {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    z-index: 10;
    width: 35%;
    text-align: left;
}

.text-block-portfolio h1 a {
    font-size: 43px;
    color: #000;
    text-decoration: none;
}

.text-block-portfolio p {
    font-size: 12px;
    line-height: 26px;
}

.controler-btn {
    position: absolute;
    bottom: 10%;
    left: 38%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.controler-btn button {
    padding: 10px 20px;
    font-size: 25px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
    background: none;
}

.controler-btn button:hover {
    transform: scale(1.1);
}

.shutter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 5;
    transform: translateX(-100%);
    transition: transform 0.8s ease-in-out;
}

.container-portfolio.active .shutter {
    transform: translateX(100%);
}

.url-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff9204;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 6px;
}

.url-btn:hover {
    background-color: #ff9204a3;
    transform: scale(1.05);
}

.url-btn-cont {
    width: 60%;
    text-align: left;
    flex-direction: row;
    align-items: center;
    position: absolute;
    bottom: 10%;
    left: 80%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.vertical-line {
    width: 200px;
    height: 2px;
    background-color: #fff;
    margin: 20px 20px;
}

.slide-number {
    position: absolute;
    top: 15%;
    left: 22%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 30%;
    text-align: left;
    line-height: 44px;
    font-size: 30px;
}
@media screen and (max-width: 1400px) {
    .slide-number {
        top: 130px;
    }
    .controler-btn {
        left: 40%;
    }
    .image-left-portfolio {
        width: 350px;
    }
}
@media screen and (max-width: 770px) {
    .image-left-portfolio {
        display: none;
    }
    .text-block-portfolio h1 a {
        font-size: 25px;
    }
    .slide-number {
        color: #fff;
        left: 35%;
        top: 15%;
    }
    .url-btn-cont {
        left: 76%;
    }
    .vertical-line {
        display: none;
    }

    .image-right-portfolio {
        width: 100%;
        height: 100%;
    }

    .controler-btn {
        bottom: 5%;
        left: 20%;
    }
    .controler-btn button {
        font-size: 18px;
    }
    .url-btn-cont {
        bottom: 5%;
        right: 20%;
    }

    .next-portf:hover {
        transform: scale(1.05);
    }

    .next-portf {
        padding: 15px 15px;
        color: #989898;
        background: #ffffff;
    }

    .url-btn {
        padding: 15px 30px;
    }

    .url-btn:hover {
        background-color: #ff9204a3;
        transform: scale(1.01);
    }

    .text-block-portfolio {
        right: 0%;
        left: auto;
        transform: translate(0, -50%);
        text-align: left;
        width: 80%;
        background: rgb(255 255 255);
        padding: 20px;
    }
    .controler-btn button {
        padding: 15px 20px;
        font-size: 16px;
        background: none;
        border: none;
        cursor: pointer;
        transition: transform 0.3s;
        display: flex;
        align-items: center;
        background: #fff;
    }            
}
.parallax-contacts {
    padding-top: 80px;
    width: 100%;
    height: 50vh;
    background-image: url('../img/baner-contacts.webp'); /* Замініть на ваше зображення */
    background-attachment: fixed;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin: auto;
    filter: brightness(0.5);
}
.parallax-contacts-conteiner {
    padding-top: 20px;
}

@media (max-width: 1100px) {
    .parallax-contacts {
        padding-top: 80px;
        width: 100%;
        height: 30vh;
        background-image: url('../img/baner-contacts.webp'); /* Замініть на ваше зображення */
        background-attachment: local;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        margin: auto;
    }
}


.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    margin: auto;
    padding: 20px;
    background: #fff;
    padding: 100px 200px;
}

.contact-info-section {
    width: 45%;
}

.contact-info-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: "Raleway", Sans-serif;
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
}
.contact-info-block {
    padding-top: 30px;
    font-weight: 500;
}
.contact-info-block p {
    color: #000;
}
.contact-info-section {
    color: #4B4B4B;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.contact-info-section a {
    color: #000;
    text-decoration: none;
}

.form-section {
    width: 45%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.form-section input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid transparent; /* Нижнє підкреслення прозоре */
    outline: none; /* Видаляє стандартний контур */
    background-color: transparent; /* Прозорий фон */
    transition: border-bottom 0.3s ease; /* Анімація для підкреслення */
    border-bottom: 1px solid #ccc;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.form-section input:focus {
    border-bottom: 1px solid #838383; /* Зміна кольору під час фокусу */
}

.form-section input::placeholder {
    color: #aaa;
}
.form-section textarea::placeholder {
    color: #aaa;
}
.form-section {
    margin-bottom: 15px;
}

.form-section textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid transparent; /* Нижнє підкреслення прозоре */
    outline: none; /* Видаляє стандартний контур */
    background-color: transparent; /* Прозорий фон */
    resize: vertical; /* Дозволяє змінювати розмір тільки вертикально */
    height: 100px;
    transition: border-bottom 0.3s ease; /* Анімація для підкреслення */
    border-bottom: 1px solid #ccc;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.form-section textarea:focus {
    border-bottom: 1px solid #838383; /* Зміна кольору під час фокусу */
}


.form-section button {
    position: relative;
    transition: all 0.3s ease-in-out;
    padding-block: 0.8rem;
    padding-inline: 1.25rem;
    background-color: #ff9204;
    cursor: pointer;
    color: #ffff;
    border: none;
    outline: none;
    overflow: hidden;
    font-size: 14px;
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .form-section button:hover {
    background: #ff9204b3;
  }
  
  
  .form-section button:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .form-section button::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 100%;
    background-image: linear-gradient(120deg, rgb(255 255 255 / 0%) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -200px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }
@media (max-width: 1300px) {
    .contact-container {
        padding: 70px 13px;
    }
}
.wpcf7-not-valid-tip {
    color: #dc3232 !important;
    font-size: 0.8em;
}
.wpcf7-not-valid {
  border-bottom: 1px solid #dc3232 !important; /* Червоний бордер для помилок */
}
.wpcf7 form .wpcf7-response-output {
    margin: 1em 0.5em 1em;
    padding: 0.2em 1em;
    border: none;
    text-align: center;
    color: #dc3232;
    font-size: 0.8rem;
}
.custom-contact-form p {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
span.wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}
@media (max-width: 770px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-info-section, .form-section {
        width: 100%;
        padding-bottom: 50px;
    }
}



.image-grid {
    display: flex;
    flex-wrap: wrap; /* Дозволяє перенос колонок */
    gap: 10px; /* Відстань між елементами */
    width: 95%;
    margin: auto;
    margin-top: 100px;
}

.column {
    flex: 1 1 calc(25% - 10px); /* 4 колонки на великому екрані (25% ширини) */
}

.image-container {
    position: relative;
    overflow: hidden; /* Обрізає зображення при збільшенні */
    text-align: center;
    height: 500px; /* Фіксована висота блоку */
}
  .image-container .text-overlay .title {
    font-size: 1.5em;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    font-weight: 200;
  }
  
  .image-container .text-overlay .subtitle {
    font-size: 1em;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    font-weight: 200;
  }
.image-container img {
    width: 100%; /* Адаптація до ширини контейнера */
    height: 100%; /* Займає всю висоту контейнера */
    object-fit: cover; /* Забезпечує збереження пропорцій без стискання */
    transition: transform 0.5s ease, filter 0.5s ease; /* Плавне збільшення зображення */
}

.image-container:hover img {
    transform: scale(1.1); /* Збільшення зображення */
    filter: brightness(50%); /* Затемнення зображення */
}

.image-container .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    opacity: 0; /* Спочатку приховано */
    transition: opacity 0.5s ease;
    z-index: 1; /* Відображається поверх зображення */
    width: 100%;
    margin: auto;
}

.image-container:hover .text-overlay {
    opacity: 1; /* Плавна поява тексту */
}

/* Для екранів менше 1200px: 2 елементи в ряд */
@media (max-width: 1200px) {
    .column {
        flex: 1 1 calc(50% - 10px); /* 2 колонки в ряд */
    }
}

/* Для мобільних пристроїв: 1 елемент в ряд */
@media (max-width: 770px) {
    .column {
        flex: 1 1 100%; /* 1 колонка в ряд */
    }

    .image-grid {
        margin-top: 60px;
    }

    .image-container .text-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        background: rgb(216 216 216 / 50%);
        opacity: 1; /* Текст завжди видимий */
        padding: 10px;
        top: auto;
    }

    .image-container img {
        transform: none; /* Без анімації на мобільних пристроях */
        filter: none;
    }
}
  
  .parallax-pronas-img {
    position: relative;
    width: 100%;
    height: 100vh;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto;
}

.parallax-pronas-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Затемнення */
    z-index: 1;
}

.parallax-content {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    text-align: left;
    z-index: 2; /* Щоб текст був поверх затемнення */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.parallax-content h1 {
    color: #EDEDED;
    font-family: "Raleway", Sans-serif;
    font-size: 45px;
    font-weight: 400;
}

.parallax-content p {
    color: #EAEAEA;
    font-family: "Raleway", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
}

.parallax-content button {
    background-color: #ff6c00;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 5px;
}

.parallax-content button:hover {
    background-color: #e65a00;
}

@media (max-width: 1100px) {
    .parallax-pronas-img {
        background-attachment: local;
    }

    .parallax-content h1 {
        font-size: 32px;
    }

    .parallax-content p {
        font-size: 14px;
        width: 100%;
    }

    .parallax-content button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    .parallax-content {
        width: 90%;
        left: 50%;
    }
}
.stats-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    align-items: center;
    height: auto;
    background: #ffffff;
    text-align: center;
    padding: 30px 0px;
}

.stat {
    padding: 20px;
}
.stat p {
    font-family: "Raleway", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 2.5;
}
.number {
    color: #484848;
    font-family: "Raleway", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    display: block;
}
@media (max-width: 770px) {
    .stats-container{
        flex-direction: column;
        gap: 40px;
        height: auto;
        padding-top: 40px;
    }
}
.goal-block {
    text-align: center;
    color: #000;
    padding: 40px 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 30px;    
    height: auto;
    margin-top: -1px;
}

.number-text-prt .strong-2 {
    font-weight: 900;
    font-size: 35px;
}

.number-text-prt .light-2 {
    font-weight: 300;
    font-size: 35px;
}
.number-text-prt {
    line-height: 1;
}

@media (max-width: 770px) {
    .goal-block {  
        height: auto;
    }
}
.goal-block .subtitle {
    text-align: center;
    color: #0f0f0f;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.goal-block .title {
    text-align: center;
    color: #0f0f0f;
    font-family: "Raleway", Sans-serif;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    line-height: 1.5;
}
@media (max-width: 770px) {
    .goal-block .title {
        font-size: 25px;
    }
}
.goal-block i {
    font-size: 40px;
    color: #0000001A;
}



.content-section-prn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background-color: #0c0c0c;
    color: #fff;
    height: 70vh;
}

.content-section__image img {
    width: 100%;
    height: auto;
}

.content-section__text {
    max-width: 50%;
    text-align: left;
    color: #e1e1e1;
    font-family: "Raleway", Sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.content-section__title {
    margin-bottom: 20px;
    text-align: left;
    color: var(--e-global-color-text);
    font-family: "Raleway", Sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
}

.content-section__paragraph {
    font-size: 16px;
    line-height: 1.6;
}
.content-section__image {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width: 770px) {
    .content-section-prn {
        flex-direction: column;
        height: 70vh;
        justify-content: center;
        gap: 0;
    }

    .content-section__image {
        order: -1; /* Зображення зверху */
    }

    .content-section__text {
        text-align: left;
        color: #e1e1e1;
        font-family: "Raleway", Sans-serif;
        font-size: 15px;
        font-weight: 400;
        padding: 0 13px;
    }
    .content-section__image img {
        width: 100%;
    }
    .content-section__image {
        width: 100%; 
    }
    .content-section__text {
        max-width: 100%;
        height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;        
    }
    .content-section__title {
        font-size: 24px;
    }

    .content-section__paragraph {
        font-size: 14px;
    }
}
.quality-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 70px 150px;
    gap: 30px;
}

.quality-section__text {
    max-width: 500px;
}

.quality-section__title {
    text-align: left;
    color: #0f0f0f;
    font-family: "Raleway", Sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    padding-bottom: 40px;
}

.quality-section__paragraph {
    line-height: 1.8;
    text-align: left;
    color: #0F0F0F;
    font-family: "Raleway", Sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.quality-section__image img {
    width: 100%;
    height: auto;
}
.quality-section__image {
    width: 52.5%;
}
@media (max-width: 900px) {
    .quality-section {
        flex-direction: column;
        padding: 40px 0px 0px 0px;
        gap: 30px;
    }
    .quality-section__text {
        max-width: 100%;
    }
    .quality-section__image {
        order: 1; /* Розташування зображення після тексту */
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .quality-section__text {
        text-align: center;
        padding: 0px 13px;
    }

    .quality-section__title {
        text-align: left;
        color: #0f0f0f;
        font-family: "Raleway", Sans-serif;
        font-size: 32px;
        font-weight: 400;
        letter-spacing: 2px;
        padding-bottom: 30px;
    }
}
.dovira-container {
    text-align: center;
    margin: 0 auto;
    padding: 70px 13px;
    color: #fff;
    max-width: 1000px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    justify-content: center;
}
.dovira-title {
    text-align: center;
    color: #e1e1e1;
    font-family: "Raleway", Sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2.4px;
}
.dovira-description {
    text-align: center;
    color: #FFFFFF;
    font-family: "Raleway", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
}
@media (max-width: 770px) {
    .dovira-container {
     background-color: #fff;
     margin-top: -1px;
     align-items: flex-start;
     height: 40vh;
    }
    .dovira-title {
        color: #232323;
        text-align: left;
    }
    .dovira-description {
        color: #242424;
        text-align: left;
    }
}
.custom-section {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #333;
    background-color: #fff;
    height: auto;
    padding: 70px 150px;
}

.custom-section__text {
    max-width: 50%;
}

.custom-section__paragraph {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.custom-section__images {
    display: flex;
    flex-direction: row;
    gap: 10px;
    max-width: 50%;
}

.custom-section__image {
    width: auto;
    height: 100%;
    max-height: 70%;
    overflow: hidden;
    object-position: center;
}

.custom-section__mobile-image {
    display: none; /* Приховати для десктопа */
}

.custom-section__mobile-image img {
    width: 100%;
    margin-bottom: 20px;
}

@media (max-width: 770px) {
    .custom-section {
        flex-direction: column;
        padding: 0px;
        height: auto;
        padding-bottom: 30px;
    }

    .custom-section__images {
        max-width: 90%;
    }

    .custom-section__mobile-image {
        display: block; /* Показати мобільне зображення */
    }

    .custom-section__text {
        text-align: center;
        max-width: 100%;
        padding: 0 13px;
    }
    .custom-section__paragraph {
        font-size: 14px;
    }
}



.meta-block {
    text-align: center;
    color: #000;
    padding: 50px 13px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 30px;    
    height: auto;
    margin-top: -1px;
    align-items: center;
    justify-content: center;
}
.meta-block .meta-subtitle {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #3f444b;
}

.meta-block .meta-title {
    font-family: "Raleway", Sans-serif;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3f444b;
}
.muro-meta {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0 20px;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 400;
    font-size: 17px;
    overflow: hidden;
    background: #ff9204;
    color: #fff;
    text-decoration: none;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
   }
   
   .muro-meta span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
   }
   
   .muro-meta :hover span {
    color: #000;
   }
   
   .muro-meta::before,
   .muro-meta::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
   }
   
   .muro-meta::before {
    content: "";
    background: #000;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
   }
   
   .muro-meta:hover::before {
    transform: translate3d(100%, 0, 0);
   }
   
@media (max-width: 770px) {
    .meta-block {  
        height: auto;
    }
    .meta-block .meta-title {
        font-size: 30px;
    }
}




.service-packages {
    text-align: center;
    padding: 0px 13px;
    background-color: #fff;
    color: #333;
    font-family: Arial, sans-serif;
}

.service-packages__title {
    font-family: "Raleway", Sans-serif;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3f444b;
    margin-bottom: 40px;
    padding-top: 120px;
}

.service-packages__container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Дозволяє карткам переноситися */
}

.service-card {
    flex: 1 1 420px; /* Базова ширина карток */
    height: 580px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    transition: all 0.3s ease; /* Гладкий перехід */
}

/* Для екранів менше 1188px */
@media (max-width: 1188px) {
    .service-card {
        flex: 1 1 calc(50% - 20px); /* Дві картки в ряд */
    }
    .service-packages__title {
        padding-top: 100px;
    }
}

/* Для екранів менше 770px */
@media (max-width: 770px) {
    .service-packages__container {
        gap: 15px; /* Менший відступ між картками */
    }

    .service-card {
        flex: 1 1 100%; /* Картки займають всю ширину */
    }

    /* Робимо кожну картку, яка переноситься, широкою */
    .service-card:nth-child(odd) {
        flex: 1 1 100%; /* Перша картка в рядку стає широкою */
    }
}

/* Додатковий стиль для карток */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
    z-index: 1;
}

.service-card__content {
    padding: 20px;
    text-align: left;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card__header {
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card__header span {
    color: #fff;
    font-family: "Raleway", Sans-serif;
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 48px;
}

.service-card__description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: -70px;
    text-align: center;
    height: 160px;
}

.service-card__button {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0 20px;
    font-family: inherit;
    font-size: inherit;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 400;
    font-size: 17px;
    background: #ff9204;
    color: #000;
    text-decoration: none;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.4s ease;
}

.service-card__button:hover {
    background: #000;
    color: #fff;
}
.butom-poslugi {
    padding-top: 40px;
    padding-bottom: 40px;
}
h3.service-card__header {
    display: flex;
    flex-direction: column;
    text-align: left;
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
}
.avtorskiy-title {
    color: #ffffff;
    font-family: "Raleway", Sans-serif;
    font-size: 35px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4em;
}

.avtorskiy-description {
    text-align: center;
    color: #E9E9E9;
    font-size: 14px;
    font-weight: 400;
    line-height: 2em;
}
.avtorskiy-container {
    text-align: center;
    margin: 0 auto;
    padding: 13px;
    color: #fff;
    margin-top: 00px;
    max-width: 80%;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 50vh;
    justify-content: center;
}
@media (max-width: 770px) {
    .avtorskiy-container {
        height: auto;
        max-width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .avtorskiy-title {
        font-size: 30px;
    }
}
.parallax-info {
    padding-top: 80px;
    width: 100%;
    height: 60vh;
    background-image: url('../img/basic.webp'); /* Замініть на ваше зображення */
    background-attachment: fixed;
    background-position: center 130%;
    background-repeat: no-repeat;
    background-size: 100%;
    margin: auto;
    filter: brightness(1);
}
.parallax-info-conteiner {
    padding-top: 80px;
}
.parallax-info-content {
    position: absolute;
    top: 50%;
    left: 17%;
    transform: translate(-50%, -50%);
    text-align: left;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    color: #FFFFFF;
    font-family: "Raleway", Sans-serif;
    font-size: 130px;
    font-weight: 200;
}
@media (max-width: 1100px) {
    .parallax-info {
        padding-top: 80px;
        width: 100%;
        height: 40vh;
        background-attachment: local;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        margin: auto;
    }
    .parallax-info-content {
        top: 35%;
        left: 50%;
        font-size: 62px;
    }
}
.content-poslugi {
    background-color: #fff;
    padding: 100px 120px;
    display: flex;
    flex-direction: column;
    gap: 30px;   
}
.content-poslugi p {
    color: #121212;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
}
.content-poslugi strong {
    color: #121212;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
}
.content-poslugi li {
    list-style-type: " - "; /* Додає тере як маркер списку */
    margin-bottom: 3px;
}
.content-poslugi ul {
    padding-left: 20px;
    color: #121212;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
}
.content-poslugi ul {
   gap: 0;
}
@media (max-width: 770px) {
    .content-poslugi {
        padding: 40px 13px;
        gap: 30px;   
    }
}


.parallax-info-gold {
    padding-top: 80px;
    width: 100%;
    height: 60vh;
    background-image: url('../img/gold.webp'); /* Замініть на ваше зображення */
    background-attachment: fixed;
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    margin: auto;
    filter: brightness(1);
}

.parallax-info-content-gold {
    position: absolute;
    top: 50%;
    left: 17%;
    transform: translate(-50%, -50%);
    text-align: left;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    color: #FFFFFF;
    font-family: "Raleway", Sans-serif;
    font-size: 130px;
    font-weight: 200;
}
@media (max-width: 1100px) {
    .parallax-info-gold {
        padding-top: 80px;
        width: 100%;
        height: 40vh;
        background-attachment: local;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        margin: auto;
    }
    .parallax-info-content-gold {
        top: 25%;
        left: 50%;
        font-size: 62px;
    }
}


.parallax-info-silver {
    padding-top: 80px;
    width: 100%;
    height: 60vh;
    background-image: url('../img/silver.webp'); /* Замініть на ваше зображення */
    background-attachment: fixed;
    background-position: 0px -800px;
    background-repeat: no-repeat;
    background-size: 100%;
    margin: auto;
    filter: brightness(1);
}
.parallax-info-conteiner-silver {
    padding-top: 80px;
}
.parallax-info-content-silver {
    position: absolute;
    top: 50%;
    left: 17%;
    transform: translate(-50%, -50%);
    text-align: left;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    color: #FFFFFF;
    font-family: "Raleway", Sans-serif;
    font-size: 130px;
    font-weight: 200;
}
@media (max-width: 1100px) {
    .parallax-info-silver {
        padding-top: 80px;
        width: 100%;
        height: 40vh;
        background-attachment: local;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        margin: auto;
    }
    .parallax-info-content-silver {
        top: 35%;
        left: 50%;
        font-size: 62px;
    }
}



.parallax-portfolio {
    padding-top: 80px;
    width: 100%;
    height: 100vh;
    background-image: url('../img/portfolio.webp'); /* Замініть на ваше зображення */
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    margin: auto;
    filter: brightness(0.3);
}
.parallax-portfoilio-conteiner {
    padding-top: 20px;
}
.parallax-portfolio-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 70%;
    align-items: flex-end;
}
.parallax-portfolio-content p {
    color: #EAEAEA;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    width: 90%;
    letter-spacing: 0.3px;
    line-height: 1.4;
}
.parallax-portfolio-content h1 {
    color: #EDEDED;
    font-family: "Raleway", Sans-serif;
    font-size: 43px;
    font-weight: 400;
    padding-bottom: 30px;
    text-transform: uppercase;
}
@media (max-width: 770px) {
    .parallax-portfolio {
        padding-top: 80px;
        width: 100%;
        height: 70vh;
        background-attachment: local;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        margin: auto;
    }
    .parallax-portfolio-content {
        top: 45%;
        left: 53%;
        font-size: 62px;
        width: 90%;
    }
}
.parallax-portfolio-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.parallax-portfolio-informarion .fa-solid {
    font-size: 21px;
    color: #fff;
}
.parallax-portfolio-informarion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.project-type {
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    letter-spacing: 0.2px;
    color: #fff;
    text-transform: uppercase;
}
.parallax-portfolio-icon {
    display: flex;
    gap: 10px;
    flex-direction: row;
    color: #fff;
    font-size: 20px;
    align-items: center;
}
.parallax-portfolio-information {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
@media (max-width: 770px) {
    .parallax-portfolio-content {
        flex-direction: column;
    }
    .parallax-portfolio-content p {
        font-size: 12px;
        width: 90%;
    }
    .parallax-portfolio-content h1 {
        font-size: 32px;
    }
    .parallax-portfolio-content {
        align-items: flex-start;
        gap: 30px;
    }
    .parallax-portfolio-information {
        gap: 30px;
    }
}


.kitchen-living-room {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    padding: 50px 60px;
    width: 100%;
    justify-content: center;
}

.klr-title-container {
    width: 30%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    justify-content: flex-start;
    text-align: left;
}

.klr-title {
    color: #0f0f0f;
    font-family: "Raleway", Sans-serif;
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.klr-paragraph-container {
    width: 50%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.klr-paragraph {
    color: #0f0f0f;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 10px 0;
}
@media (max-width: 770px) {
    .kitchen-living-room {
        padding: 0px 13px;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin: -1px;
        padding-top: 20px;
    }
    .klr-title-container {
        width: 100%;
    }
    .klr-paragraph-container {
        width: 100%;
    }
}

/* Перше зображення займає весь ряд */
.portfolio-featured {
    grid-column: span 3; /* Займає всі три колонки */
    object-fit: cover; /* Заповнює прямокутник без спотворення */
    width: 100%;
    cursor: pointer;
}
/* Адаптація під мобільні пристрої */
@media (max-width: 1100px) {
    .kitchen-living-room {
        padding: 0px 13px;
        justify-content: space-between;
        padding-top: 20px;
    }
    .parallax-portfolio-content {
        width: 90%;
    }
}
#obgovor {
    padding-bottom: 50px;
}
/* Адаптація під мобільні пристрої */
@media (max-width: 770px) {
    .portfolio-featured {
        grid-column: span 1; /* Займає лише один стовпець */
        width: 100%;
    }
}

/* Галерея портфоліо */
.portfolio-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px; /* Відстань між зображеннями */
  justify-content: center;
  padding-bottom: 30px;
  background: #fff;
  padding: 50px 210px;
}

.portfolio-gallery a {
  flex: 1 1 25%; /* Базова ширина карток */
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  transition: all 0.3s ease; /* Гладкий перехід */
}

.portfolio-gallery img {
  width: 100%;
  height: 100%; /* Однакова висота для всіх зображень */
  object-fit: cover;
}

@media (max-width: 1350px) {
  .portfolio-gallery {
        padding: 50px 150px;
    }
}
@media (max-width: 1100px) {
  .portfolio-gallery {
      padding: 50px 13px;
  }
}
@media (max-width: 1188px) {
  .portfolio-gallery a {
    flex: 1 1 calc(50% - 20px); /* Дві картки в ряд */
  }
}
@media (max-width: 770px) {
  .portfolio-gallery {
    flex-direction: column;
  }
}

.authorship-supervision-block {
    background-color: #fff;
    text-align: center;
    padding-top: 100px;
    display: flex;
    justify-content: flex-end;
}
.authorship-title {
    color: #0f0f0f;
    font-family: "Raleway", Sans-serif;
    font-size: 35px;
    font-weight: 500;
    text-transform: uppercase;
}
.authorship-subtitle {
    margin: 10px 0 0;
    color: #0f0f0f;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
}


.supervision-ingo {
    background: #DEDEDE;
    padding: 40px 20px;
    width: 54%;
    text-align: left;
    margin-right: 9%;
}
@media (max-width: 770px) {
    .supervision-ingo {
        background: #DEDEDE;
        padding: 40px 13px;
        width: 100%;
        text-align: left;
        margin-right: 0px;
    }
    .authorship-supervision-block {
        padding-top: 70px;
    }
}



.unique-content-section {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 60px 13px;
    width: 85%;
    margin: auto;
}
.unique-text-block {
    flex: 1;
    min-width: 200px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.unique-text-block h2 {
    font-family: "Raleway", Sans-serif;
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #e1e1e1;
}
.unique-text-block p {
    color: #e1e1e1;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
}
.unique-images-block {
    display: flex;
    flex: 1;
    flex-direction: row;
    gap: 20px;
    min-width: 65.4%;
}
.unique-image-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.unique-image-wrapper img {
    max-width: 100%;
    height: auto;
}
.unique-image-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #e1e1e1;
    font-weight: 500;
    text-align: left;
}

/* Адаптивний дизайн */
@media (max-width: 770px) {
    .unique-content-section {
        flex-direction: column;
        width: 100%;
    }
    .unique-text-block {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .unique-images-block {
        flex-direction: column;
        min-width: 300px;
    }
}


.task-content-section {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background: #fff;
    padding: 60px 123px;
}
.task-images-container {
    flex: 1.5;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-right: 20px;
    align-items: center;
    width: 100%;
}
.task-image-large {
    flex: 1 1 100%;
}
.task-image-small {
    flex: 1 1 calc(50% - 10px);
}
.task-image-wrapper {
    position: relative;
}
.task-image-wrapper img {
    width: 100%;
    height: auto;
}
.task-image-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #0f0f0f;
    font-weight: 500;
    text-align: left;
    padding-bottom: 10px;
}
.task-text-container {
    flex: 1;
    min-width: 300px;
}
.task-text-container h2 {
    font-family: "Raleway", Sans-serif;
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
    color: #0f0f0f;
}
.task-text-p {
    display: flex;
    flex-direction: column;
    gap: 30px;
    line-height: 1.5em;
}
.task-text-container h4 {
    color: #0f0f0f;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 30px;
}
.task-text-container p {
    color: #0f0f0f;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* Адаптивний дизайн */
@media (max-width: 770px) {
    .task-content-section {
        flex-direction: column;
        flex-direction: column-reverse;
        padding: 60px 13px;
    }
    .task-images-container {
        margin-right: 0;
        gap: 10px;
        padding-top: 40px;
    }
    .task-image-small {
        flex: 1 1 100%;
    }
}

.unique-section-container {
    background-color: #FFFFFF;
    padding-bottom: 50px;
}
.unique-section-header {
    display: flex;
    align-items: center;
    background-color: #e5e5e5;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    height: 100px;
    width: 63%;
}
.unique-section-header-vhod p {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}
.unique-section-header .unique-highlight {
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    margin-right: 10px;
    height: 100px;
    display: flex;
    align-items: center;
    font-size: 50px;
}
.unique-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 123px;
}
.unique-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1 1 calc(50% - 20px);
}
.unique-feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.unique-feature-icon img {
    width: 80px;
    height: 80px;
}
.unique-feature-text {
    flex: 1;
}
.unique-feature-title {
    font-size: 23px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.unique-feature-description {
    color: #0c0c0c;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7em;
}
/* Адаптивність */
@media (max-width: 1268px) {
    .unique-features-grid {
        padding: 60px 13px;
    }
}
/* Адаптивність */
@media (max-width: 770px) {
    .unique-features-grid {
        flex-direction: column;
    }
}
.unique-section-header-top {
    display: flex;
    justify-content: flex-end;
    margin-top: -1px;
}
@media (max-width: 770px) {
    .unique-section-header {
        width: 100%;
    }
    .unique-feature-item {
        flex-direction: column;
    }
    .unique-features-grid {
        padding: 0px 13px;
    }
}




.exclude-section-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: #fff;
}

.exclude-image-container {
    flex: 1;
    background-image: url('../img/img-service.webp');
    background-size: cover;
    background-position: center;
    max-height: 100%;
}

.exclude-content-container {
    flex: 2;
    background-color: #fff;
    padding: 0px 0px;
}

.exclude-header {
    display: flex;
    align-items: center;
    background-color: #e5e5e5;
    height: 100px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.exclude-header .exclude-highlight {
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    margin-right: 10px;
    height: 100px;
    display: flex;
    align-items: center;
    font-size: 50px;
}

.exclude-list {
    list-style: none;
    padding: 0 23px;
    margin: 0;
}

.exclude-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.exclude-list-item-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.exclude-list-item-icon img {
    width: 100%;
    height: 100%;
}

.exclude-note {
    font-size: 12px;
    font-weight: bold;
    margin-top: 20px;
    color: #555;
    padding: 0 23px;
}

/* Адаптивність */
@media (max-width: 770px) {
    .exclude-section-container {
        flex-direction: column-reverse;
    }
    li.exclude-list-item p {
        width: 100%;
    }
    .exclude-image-container {
        max-height: 100%;
    }
    .exclude-content-container {
        padding:0;
    }
    .exclude-list {
        padding: 0 13px;
    }
    .exclude-note {
        padding: 13px 13px;
    }
}
.compilation-section-wrapper {
    display: flex;
    flex-direction: column;
}

.compilation-header-block {
    background-color: #e5e5e5;
    color: #000;
    padding: 20px;
    text-align: center;
}

.compilation-title-text {
    font-size: 24px;
    margin: 0;
}

.compilation-description-text {
    margin: 10px 0 0;
    font-size: 14px;
}

.compilation-content-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 30px 123px;
}

.compilation-left-textbox {
    flex: 1;
    padding: 20px;
    max-width: 600px;
    max-width: 34.6%;
}

.compilation-left-title {
    margin-bottom: 20px;
    font-family: "Raleway", Sans-serif;
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
    color: #e1e1e1;
}

.compilation-left-paragraph {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    margin: 10px 0;
    color: #e1e1e1;
}

.compilation-right-imagebox {
    flex: 1;
    text-align: center;
}

.compilation-right-image {
    width: 100%;
    max-width: 1000px;
}

/* Адаптивність */
@media (max-width: 770px) {
    .compilation-content-layout {
        flex-direction: column;
        text-align: center;
        padding: 30px 13px;
    }

    .compilation-left-textbox {
        max-width: 100%;
        padding: 10px;
        text-align: left;
    }

    .compilation-right-imagebox {
        padding: 10px;
    }

    .compilation-right-image {
        width: 100%;
    }
}


.authorship-compilation-block {
    background-color: #fff;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    padding-top: 80px;
}
.compilation-title {
    color: #0f0f0f;
    font-family: "Raleway", Sans-serif;
    font-size: 35px;
    font-weight: 500;
    text-transform: uppercase;
}
.compilation-subtitle {
    margin: 10px 0 0;
    color: #0f0f0f;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 400;
}
.compilation-ingo {
    background: #DEDEDE;
    padding: 40px 20px;
    width: 54%;
    text-align: left;
    margin-right: 9%;
    margin-top: -1px;
}
@media (max-width: 770px) {
    .compilation-ingo {
        background: #DEDEDE;
        padding: 40px 13px;
        width: 100%;
        text-align: left;
        margin-right: 0px;
    }
}


.discounts-section {
    display: flex;
    flex-direction: column;
    background: #E8E8E8;
    margin-top: -1px;
}

.discounts-green-banner {
    background-color: #0c0c0c;
    color: #fff;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 70px;
    height: 100px;
    width: 63%;
    justify-content: flex-start;
}
.discounts-black-banner {
    display: flex;
    justify-content: flex-end;
    background: #fff;
    padding-top: 70px;
    height: 200px;
}
.discounts-green-banner h2 {
    text-align: left;
    color: #e1e1e1;
    font-family: "Raleway", Sans-serif;
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;
}

.discounts-green-banner p {
    margin: 10px 0 0;
    font-size: 14px;
}

.discounts-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
}

.discounts-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.discounts-text-block {
    background-color: #fff;
    padding: 0px 20px;
}
.discounts-text-block.grean-block {
    background: #849D35;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 30px;
}
.discounts-text-block.black-1-block {
    background: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 30px;
}
.discounts-text-block h3 {
    font-family: "Raleway", Sans-serif;
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.discounts-text-block p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6em;
}

.discounts-image-block {
    flex: 1;
    text-align: center;
    height: 200px;
}

.discounts-image-block img {
    width: 80%;
    height: auto;
}

.discounts-note {
    margin-top: -1px;
    font-size: 0.8rem;
    font-weight: 200;
    letter-spacing: 0.3px;
    line-height: 1.6em;
    background: #fff;
    padding: 23px 23px 70px 23px;
}
/* Адаптивність */
@media (max-width: 1168px) {
    .discounts-image-block {
        display: none;
    }
    .discounts-text-block h3 {
        font-size: 20px;
    }
    .horizontal-line {
        display: none;
    }
}
/* Адаптивність */
@media (max-width: 770px) {
    .discounts-content {
        flex-direction: column;
    }

    .discounts-column {
        flex: none;
        width: 100%;
    }
    .discounts-green-banner {
        width: 100%;
    }
    .discounts-image-block {
        margin-top: 20px;
    }

    .discounts-note {
        text-align: left;
        margin-top: -1px;
    }
    .discounts-section {
        padding: 20px 13px;
    }
    .discounts-image-block {
        display: flex;
        justify-content: center;
    }
}
.vertical-line-12 {
    width: 7px;
    height: 200px;
    background-color: #fff;
}
.vertical-line-13 {
    width: 7px;
    height: 200px;
    background-color: #000;
}
.horizontal-line-fx {
    position: absolute;
    z-index: 2;
    height: 240px;
    width: 100%;
    background-color: #fff;
}
@media (max-width: 1168px) {
    .horizontal-line-fx {
        display: none;
    }
    .discounts-section {
        background: #fff;
    }
    .discounts-image-block {
        display: none;
    }
    .discounts-column {
        gap: 0;
    }
    .vertical-line-13 {
        display: none;
    }
    .vertical-line-12 {
        display: none;
    }
    .discounts-text-block.grean-block {
        padding: 20px;
    }
    .discounts-text-block.black-1-block {
        margin: 30px 0px;
    }
}

.container-timeline .title {
    color: #ffffff;
    font-family: "Raleway", Sans-serif;
    font-size: 35px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.4em;
}

    .container-timeline {
      min-height: 100vh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 100px 0;
      background-image: url(../img/fixed-timeline.webp);
      background-position: center center;
      background-size: cover;
      background-attachment: fixed;
      flex-direction: column;
      padding-top: 30px;
      gap: 30px;
    }
    .timeline {
      width: 80%;
      height: auto;
      margin: 0 auto;
      position: relative;
    }
    
    .timeline ul {
      list-style: none;
    }
    .timeline ul li {
      z-index: 2;
    }
    .timeline ul li:last-child {
      margin-bottom: 0;
    }
    .timeline-content h1 {
      color: #2D2D2D;
      font-size: 25px;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      margin-bottom: 20px;
    }
    .timeline-content p {
      text-align: left;
      font-family: "Raleway", Sans-serif;
      font-size: 14px;
      font-weight: 300;
      color: #171717;
      letter-spacing: 0.3px;
      line-height: 1.5;
      margin-bottom: 20px;
    }
    .timeline-content .date {
      font-size: 12px;
      font-weight: 300;
      margin-bottom: 10px;
      letter-spacing: 2px;
    }
  @media only screen and (min-width: 770px) {
    .timeline:before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 5px;
      height: 93%;
      background-color: #fff;
      top: 50px;
    }
    .timeline ul li {
      width: 50%;
      position: relative;
      margin-bottom: 50px;
    }
    .timeline ul li:nth-child(odd) {
      float: left;
      clear: right;
      transform: translateX(-30px);
      border-radius: 20px 0px 20px 20px;
    }
    .timeline ul li:nth-child(even) {
      float: right;
      clear: left;
      transform: translateX(30px);
      border-radius: 0px 20px 20px 20px;
    }
    .timeline ul li::before {
      content: attr(data-step);
      position: absolute;
      height: 40px;
      width: 40px;
      border-radius: 50%;
      background-color: #000;
      top: 50px;
      text-align: center;
      font-size: 25px;
      display: flex;
      align-items: center;
      justify-content: center;  
      color: #fff;  
      font-weight: 600;
    }
    .timeline ul li:nth-child(odd)::before {
      transform: translate(50%, -50%);
      right: -30px;
    }
    .timeline ul li:nth-child(even)::before {
      transform: translate(-50%, -50%);
      left: -30px;
    }
    .timeline-content .date {
      position: absolute;
      top: -30px;
    }
  }
  .timeline ul li.right-an  {
    opacity: 0;
    transition: opacity 1.5s ease, transform 1s ease;
  }
  
  @media (max-width: 770px) {
    .timeline ul li.left-an {
      transform: translateY(50px); /* Початкове положення для мобільних */
    }
  }
  
  @media (min-width: 769px) {
    .timeline ul li.left-an {
      transform: translateX(100px); /* Початкове положення для непарних */
    }
  
    .timeline ul li.right-an {
      transform: translateX(-100px); /* Початкове положення для парних */
    }
    .timeline-content {
      opacity: 0;
      transform: translateY(50px); /* або translateX для desktop */
      transition: transform 0.6s ease, opacity 1.5s ease;
    }
    
  }
  .timeline-content {
    position: relative; /* Це потрібно для позиціонування стрілки відносно елемента */
    padding: 20px;
    background-color: #f1f1f1;
    margin-bottom: 20px;
    z-index: 3;
  }
  
  .timeline-content.left-an::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #f1f1f1; /* Колір стрілки повинен збігатися з фоном */
    position: absolute;
    top: 50px;
    right: -9px;
    transform: translateY(-50%);
    transition: all .25s linear 0s; /* Ефект анімації */
  }
  
  .timeline-content.right-an::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #f1f1f1; /* Колір стрілки повинен збігатися з фоном */
    position: absolute;
    top: 50px;
    left: -9px; /* Відступ для випирання за межі блоку */
    transform: translateY(-50%);
    transition: all .25s linear 0s; /* Ефект анімації */
  }
  .custom-card-section {
        display: flex;
        flex-direction: column;
        width: 50%;
        height: 100%;
    }
    p.custom-section__name {
        text-align: left;
        color: #000000;
        font-size: 16px;
        font-weight: 500;
        padding-top: 10px;
    }
    p.custom-section__caption {
    text-align: left;
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    padding-top: 3px;
}
  @media (max-width: 770px) {
    .timeline-content.left-an::after {
        display: none;
      }
        .dynamic-scroll-line {
            display: none;
        }
        .service-card__description {
            display: flex;
            align-items: flex-start;
            margin-bottom: -60px;
        }
        h3.service-card__header {
            margin-top: 60%;
        }
      .timeline-content.right-an::after {
        display: none;
      }
      .timeline {
        width: 95%;
      }
      .timeline ul li::before {
        content: attr(data-step);
        height: 40px;
        width: 50px;
        border-radius: 50%;
        background-color: #000;
        top: 50px;
        text-align: center;
        font-size: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 600;
    }
    .timeline ul li {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: row;
        gap: 20px;
    }
    .timeline-content {
        width: 100%;
    }
    .container-timeline {
        min-height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 100px 0;
        position: relative; /* Щоб псевдоелемент працював правильно */
        background-image: url(../img/fixed-timeline.webp);
        background-position: center center;
        background-size: cover;
        background-attachment: local;
        padding-top: 20px;
      }
  }
  .fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}  

.opacity-fade {
    opacity: 0;
    transition: opacity 1s ease;
}

.opacity-fade.visible {
    opacity: 1;
}
.icon-container a {
    width: 20px;
    height: 20px;
    display: flex;
}
button.control-mobile img {
    width: 12px;
    height: auto;
}
.controls img {
    width: 23px;
    height: 23px;
}
.controler-btn img {
    width: 24px;
    height: auto;
}
#scrollToTopBtn img {
    width: 20px;
    height: auto;
}
span.quote-icon img {
    width: 40px;
    height: auto;
}
.parallax-portfolio-icon img {
    width: 25px;
    height: auto;
}
@media (max-width: 770px) {
    .controler-btn img {
        width: 16px;
    }
    #scrollToTopBtn img {
        width: 16px;
    }
    span.quote-icon img {
        width: 50px;
    }
}

.err-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
    background-image: url(../img/card-2.webp);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    margin: auto;
    z-index: 1;
    gap: 30px;
    text-align: center;
}

.err-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.73); /* Напівпрозорий чорний фон */
    z-index: -1; /* Розміщення позаду контенту */
}
.thank-you-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
    background-image: url('../img/baner-contacts.webp'); /* Замініть на ваше зображення */
    background-attachment: fixed;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative; /* Обов'язково */
    margin: auto;
    z-index: 1; /* Щоб контент залишався зверху */
    gap: 30px;
}

.thank-you-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.73); /* Напівпрозорий чорний фон */
    z-index: -1; /* Розміщення позаду контенту */
}


.thank-you-title {
    color: #ffffff;
    font-family: "Raleway", Sans-serif;
    font-size: 35px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4em;
    padding-right: 13px;
    padding-left: 13px;
}

.thank-you-message {
    text-align: center;
    color: #E9E9E9;
    font-size: 14px;
    font-weight: 400;
    line-height: 2em;
    padding-right: 13px;
    padding-left: 13px;
}


.chomutext-container {
    display: flex;
    align-items: center;
}

.symbol-question {
    font-size: 8rem;
    font-weight: 200;
    color: white;
}
.chomutext-content {
    line-height: 0.9;
}
.text-chomu {
    font-size: 2.5rem;
    font-weight: 300;
    color: #fff;
}

.text-muro {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}
.line-break {
    text-align: left;
    color: #D7D7D7;
    font-size: 14px;
    font-weight: 300;
    line-height: 2em;
    margin-top: 10px;
}


@media (max-width: 770px) {
    .symbol-question {
        font-size: 5rem;
    }
    
    .text-chomu {
        font-size: 1.5rem;
    }
    
    .text-muro {
        font-size: 2rem;
    }
    .muro-all-link-chomu {
        width: auto;
        font-size: 0.8rem;
        padding: 15px 30px;
    }
    .muro-all-link-zabespech {
        width: auto;
        font-size: 0.8rem;
        padding: 15px 30px;
    }
    .services-grid {
        gap: 5px;
    }
}
@media (min-width: 770px) {
    .header-yakist-top {
        display: flex;
        align-items: flex-start;
    }
    .muro-all-link-zabespech {
        margin-left: 75px;
    }
}
.symbol-question2 {
    font-size: 8rem;
    font-weight: 200;
    color: white;
}
.chomutext-content {
    line-height: 0.9;
}
.text-chomu2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #fff;
}

.text-muro2 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}
@media (max-width: 1368px) {
    .symbol-question2 {
        font-size: 6rem;
    }
    
    .text-chomu2 {
        font-size: 2rem;
    }
    
    .text-muro2 {
        font-size: 3rem;
    }
}
@media (max-width: 770px) {
    .symbol-question2 {
        font-size: 5rem;
    }
    
    .text-chomu2 {
        font-size: 1.5rem;
    }
    
    .text-muro2 {
        font-size: 2rem;
    }
}
@media (max-width: 1300px) and (min-width: 770px) {
    .compilation-content-layout {
        padding: 30px 30px;
    }
    .avtorskiy-container {
        height: auto;
    }
    .text-block-portfolio {
        left: 60%;
    }
    .controler-btn {
        left: 44%;
    }
    .yakist-section {
        justify-content: center;
    }
    .quality-section {
        padding: 30px;
    }
}
.designer-profile-block {
    display: flex;
    background-color: #ffffff;
    overflow: hidden;
    justify-content: center;
    margin: auto;
    padding: 50px 200px;
}

.profile-image-section {
    flex: 0 0 400px;
    max-width: 400px;
}

.profile-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.profile-text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0px 0px 40px;
}

.profile-name {
    color: #0f0f0f;
    font-family: "Raleway", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 5px;
}

.profile-title {
    color: #000;
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    padding-bottom: 10px;
}


.profile-details {
    font-family: "Raleway", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 10px 0;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

@media (max-width: 770px) {
    .designer-profile-block {
        padding: 25px 13px;
        flex-direction: column;
    }
    .profile-text-section {
        padding: 24px 0px;
    }
}
@media (max-width: 1350px) {
    .designer-profile-block {
        padding: 50px 150px;
    }
}
@media (max-width: 1100px) {
    .designer-profile-block {
        padding: 20px 13px;
    }
}


    /* Загальний стиль галереї */
    .unique-gallery {
      text-align: center;
      padding: 20px;
      background: #ffffff;
      padding: 50px 210px;
      display: flex;
        flex-direction: column;
        align-items: center;
    }

    .unique-gallery-description {
        margin-bottom: 30px;
        color: #0c0c0c;
        font-family: "Raleway", Sans-serif;
        font-size: 14px;
        font-weight: 400;
        width: 90%;
        letter-spacing: 0.3px;
        line-height: 1.4;
    }

    /* Галерея зображень */
    .unique-gallery-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 15px; /* Відстань між зображеннями */
      justify-content: center;
      padding-bottom: 30px;
    }

    .unique-gallery-item {
      flex: 1 1 calc(25% - 15px); /* 4 зображення в ряд */
      max-width: calc(100% - 0px);
      transition: transform 0.4s ease, filter 0.4s ease;
    }

    .unique-gallery-item img {
      width: 100%;
      height: 100%; /* Однакова висота для всіх зображень */
      object-fit: cover;
      transition: transform 0.4s ease, filter 0.4s ease;
    }

    /* Якщо є перенесення, то зображення займає всю ширину */
    @media (max-width: 1350px) {
      .unique-gallery-item {
        flex: 1 1 calc(50% - 15px); /* 2 зображення в ряд */
        max-width: calc(100% - 0px);
      }
      .unique-gallery {
            padding: 50px 150px;
        }
    }
    @media (max-width: 1100px) {
    .unique-gallery {
        padding: 50px 13px;
        align-items: flex-start;
    }
}
    @media (max-width: 770px) {
      .unique-gallery-item {
        flex: 1 1 100%; /* 1 зображення в ряд */
        max-width: 100%;
      }
    .unique-gallery {
        padding: 5px 13px;
    }
    .unique-gallery-description {
        text-align: left;
    }
    .url-btn {
        padding: 15px 15px;
    }
}