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

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    overflow-x: hidden;
    color: #000;
    font-size: 18px;
    font-weight: 500;
}
h1{
    text-transform: uppercase;
}
a:hover {
    text-decoration: none;
}
/* HEADER */
@media (max-width: 992px){

    .header_nav{
        display: none;
    }

    .header{
        padding: 0 20px;
    }

}
p{
    font-size: 18px;
    font-weight: 500;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 55px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
   
    background: transparent;
    box-shadow: none;
     z-index: 1000;
    transition: all 0.3s ease;
   
}
.header.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: headerSlideDown 0.3s ease;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.header--inner {
    position: relative;
    background: #F7F7F7;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header_logo {
    display: flex;
    align-items: center;
}
.logo--white {
    display: block;
}

.logo--dark {
    display: none;
    height: 65px;
}

.header--inner .logo--white {
    display: none;
}

.header--inner .logo--dark {
    display: block;
}

.logo-img {
    height: 65px;
}

.header_nav {
    display: flex;
    gap: 120px;
}

.nav-link {
    text-decoration: none;
    color:black;
    font-weight: 600;
    font-size: 22px;
    position: relative;
}
.nav-link:hover {
    color: #F2572B;
}

.header_controls {
    display: flex;
    gap: 10px;
}
.header--inner .header_nav .nav-link {
    color:#4D4D4D;
}
.header--inner .header_nav .nav-link:hover {
    color: #F2572B;
}

/* buttons */

.lang-btn {
  
    padding: 8px 10px;
    border: none;
    border-radius: 10px;
    background-color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color:black;
}

.menu-btn {
    padding: 5px 10px;
    border: none;
    border-radius: 10px;
    background-color: white;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;

    width: 40px;
    height: 40px;
}

.menu-btn span {
    width: 18px;
    height: 2px;
    background: black; 
    display: block;
}
.header--inner .menu-btn span {
    background-color: #fff;
}
.header--inner .lang-btn,
.header--inner .menu-btn {
    background-color: #4D4D4D;
    color: #fff;
}

/* HERO */

.hero {
     position: relative;
    min-height: 100vh;
    height: auto;
    
}

.hero_bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.info-card {
    background: rgb(205 205 205 / 18%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 20px;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    min-height: 130px;
}

.container-cards-wrapper {
    position: absolute;
    bottom: 50px; /* відступ від низу */
    left: 0;
    width: 100%;
    z-index: 2;
}
.about{
    background-color: white;
}
.about-title{
    font-size: 40px;
    font-weight: 800;
   
    margin-bottom: 64px;
    margin-top: 80px;
}
.about-text{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 12px;
}
.about-link{
    color: #F2572B;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    margin-top: 10px;
}
.about-link:hover {
    text-decoration: underline;
}
.about-cards-wrapper{
    margin-top: 80px;
}
.about-cards-wrapper .row {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;}

    .about-cards-wrapper .col-12 {
        padding: 0;
        width: calc(50% - 22.5px);
    }

.about-card {
    border-radius: 15px;
    padding: 20px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dedede;
    color: #4D4D4D;
}

.col-12:nth-child(2) .about-card,
.col-12:nth-child(3) .about-card,
.col-12:nth-child(6) .about-card {
    background-color: #F2572B;
    color: white;
}

.solutions-section{
    padding: 80px 0 80px;
    overflow: hidden;
}

/* SLIDE EFFECTS */
.solutions-slider .slick-slide{
    opacity: 0.7;
    filter: blur(3px);
    transform: scale(0.85);
    transition: 0.3s;
}

.solutions-slider .slick-center{
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

/* GAP між слайдами */
.solutions-slider .slick-list{
    margin: 0 -12.5px;
}

.solutions-slider .slick-slide {
    padding: 20px 12.5px 15px 12.5px;
    box-sizing: border-box;
    text-decoration: none;
    background: #dedede;
    border-radius: 20px;
}

/* CARD */
.solutions-slider .slick-slide > div{
    border-radius: 15px;
    overflow: hidden;
}
.solution-text{
    color:#000;
    font-size: 16px;
      margin-bottom: 15px;
}
/* TITLE */
.solution-title{
    font-size: 20px;
    font-weight: 800;
        color: #000;
      
}

/* IMAGE */
.solution-image{
    height: 350px;
    width: 100%;
    overflow: hidden;
}

.solution-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ARROWS */
.solutions-slider .slick-arrow{
    width: 57px;
    height: 57px;
    border: none;
    border-radius: 15px;
    background-color: #F2572B;
    color: white;
    font-size: 0;
    position: absolute;
    bottom: -80px;
    top: auto;
    transform: none;
    z-index: 5;
    transition: 0.3s;
}

.solutions-slider .slick-arrow:hover{
    background-color: #4D4D4D;
}

/* Left arrow */
.solutions-slider .slick-prev{
    left: calc(50% - 70px);
}

/* Right arrow */
.solutions-slider .slick-next{
    right: calc(50% - 70px);
}

/* Arrow icons */
.solutions-slider .slick-prev::before,
.solutions-slider .slick-next::before{
    font-size: 28px;
    color: white;
    opacity: 1;
    font-family: inherit;
}

.solutions-slider .slick-prev::before{
    content: '←';
}

.solutions-slider .slick-next::before{
    content: '→';
}
.news-card {
    position: relative;
    width: 100%;
    max-width: 645px;
    height: 385px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}
.section-news-title {
     font-size: 40px;
      font-weight: 800;
       margin-bottom: 80px;
        text-transform: uppercase;
         letter-spacing: 1px;
        text-align: center;
        margin-top: 65px;
    }


.news-card::before {
    content: "";
    position: absolute;
    inset: 0;
     background: linear-gradient(
        to right,
        rgba(77, 77, 77, 1) 0%,
        rgba(77, 77, 77, 0) 100%,
        rgba(255, 255, 255, 0.58) 58%,
        rgba(255, 255, 255, 0) 100%
    );
   
    z-index: 1;
    transition: 0.8s ease-in-out;
}

.news-card:hover::before {
    background: linear-gradient(
        to right,
        rgba(242, 87, 43, 1) 0%,
        rgba(242, 87, 43, 0) 100%,
        rgba(255, 255, 255, 0.58) 58%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: 0.8s ease-in-out;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 80px 30px 80px 30px; 
   display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    color: white;
    width: 100%;
    
}


.card-date {
    position: absolute;
    top: 20px;
    left: 20px;

    background: #4D4D4D;
    color: #fff;

    font-size: 13px;
    font-weight: 400;

    border-radius: 10px;
    padding: 5px 10px;
    z-index: 3;
}


.card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    padding-right: 80px;
}


.card-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: #4D4D4D;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    z-index: 3;
}
.card-btn:hover {
    background-color: #F2572B;
}
.news-card--bg1 {
    background-image: url("../img/delivery1.jpg");
}

.news-card--bg2 {
    background-image: url("../img/delivery2.jpg");
}
.news-container {
    display: flex;
    flex-wrap: nowrap;     
    gap: 20px;
    justify-content: center;
    overflow-x: auto;       
    padding-bottom: 10px;
}
.news-section {
    padding-bottom: 60px;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    overflow: visible;
}

.news-card {
    max-width: none;
    height: 385px;
}

/* планшет */
@media (max-width: 991px) {
    .section-news-title {
        font-size: 34px;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .news-container {
        grid-template-columns: 1fr;
    }

    .news-card {
        height: 360px;
    }
}

/* телефон */
@media (max-width: 576px) {
    .section-news-title {
        font-size: 28px;
        margin-top: 40px;
        margin-bottom: 35px;
    }

    .news-container {
        gap: 20px;
    }

    .news-card {
        height: 330px;
        border-radius: 12px;
    }

    .card-content {
        padding: 70px 20px 75px;
    }

    .card-title {
        font-size: 21px;
    }

    .card-text {
        font-size: 15px;
        padding-right: 0;
    }

    .card-date {
        top: 15px;
        left: 15px;
        font-size: 12px;
    }

    .card-btn {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
}
/* footer */
.footer{
    background:#DEDEDE ;
    padding: 30px 0 5px;
 

}
.footer-row{
    row-gap: 40px;
}
.footer-logo img{
    max-width: 250px;
    width: 100%;
}
.footer-copy{
    font-size: 14px;
    font-weight: 400;
    color: #4D4D4D;
}
.footer-title{
    font-size: 20px;
    font-weight: 700;
    color: #4D4D4D;
    margin-bottom: 30px;
}
.footer-link{
   font-size: 16px;
    font-weight: 500;
    color:black;
    text-decoration: none;
    
}
.footer-description{
    margin: 25px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: black;
    max-width: 320px;
}

.socials{
    display: flex;
    gap: 15px;
}

.socials a img{
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: 0.3s ease;
}
.footer-bottom {
    width: 61px;
    height: 29px;
display: flex;
margin-top: 40px;
}    



/* Mega Menu */
.mega-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 9999;

    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.mega-menu.active {
    transform: translateX(0);
}

/* Wrapper */
.mega-menu__wrapper {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Left Column */
.mega-menu__left {
    width: 36%;
    padding: 50px 60px 50px 80px;
    background: white;
    border-right: 2px solid #F2572B;
}

.mega-menu__logo {
    display: inline-block;
    margin-bottom: 70px;
}

.mega-menu__logo img {
    max-width: 220px;
    height: auto;
}

/* Categories */
.mega-menu__categories,
.mega-menu__nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu__categories {
    margin-bottom: 60px;
}

.mega-menu__categories li,
.mega-menu__nav li {
    margin-bottom: 15px;
}

.menu-link {
    color: #4D4D4D;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.menu-link:hover,
.menu-link.active {
    color: #F2572B;
}

/* Center Column */
.mega-menu__center {
    width: 34%;
    padding: 180px 60px 50px;
    background-color: white;
   background-image: url("../img/ico\ 1.png");
   background-size: cover;
   background-position: left center;
   
    background-repeat: no-repeat;
    
}

.mega-menu__submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu__submenu.active {
    display: block;
}

.mega-menu__submenu li {
    margin-bottom: 18px;
}

.mega-menu__submenu a {
    color: #4D4D4D;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.mega-menu__submenu a:hover {
    color: #F2572B;
}

/* Image */
.mega-menu__image {
    width: 30%;
    min-height: 100vh;
}

.mega-menu__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Close Button */
.mega-menu__close {
    position: absolute;
    top: 35px;
    right: 40px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 10px;
    background: #F2572B;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.mega-menu__close:hover {
    background: #d94b24;
}

/* Responsive */
@media (max-width: 992px) {
    .mega-menu__wrapper {
        flex-direction: column;
    }

    .mega-menu__left,
    .mega-menu__center,
    .mega-menu__image {
        width: 100%;
    }

    .mega-menu__left {
        padding: 40px 30px;
    }

    .mega-menu__center {
        padding: 20px 30px 40px;
    }

    .mega-menu__image {
        min-height: 280px;
    }

    .mega-menu__close {
        top: 25px;
        right: 25px;
    }
}
body.menu-open {
    overflow: hidden;
}
/*   BREADCRUMBS */
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}
.breadcrumbs a {
    color: #4D4D4D;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumbs a:hover {
    color: #F2572B;
}
.breadcrumbs span {
    color: #4D4D4D;
}
/*   industry-section */
.industry-section {
    background-color: white;
    padding: 80px 0;
}
.industry-title{
    font-size: 40px;
    font-weight: 800;
  color: black;
    margin-bottom: 50px;
}
.industry-subtitle{
    font-size: 40px;
    font-weight: 800;
    color: black;
    margin-bottom: 20px;
}
.industry-text p{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #000;
}
.industry-image img{
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}
.solutions-header {
    text-align: center;
    margin-bottom: 50px;
}
.solutions-main-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}
.startup-section {
    padding: 35px 0;
    background: #fff;
}
.startup-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 35px;
}
.startup-text {
    max-width: 100%;
}

.startup-text p {
    font-size: 18px;
    line-height: 1.9;
    font-weight: 500;
    color: #000;
    margin: 0;
    white-space: pre-line;
}

/* Marketing Materials Section */
.marketing-materials {
    position: relative;
    padding: 120px 0;
    background: url('../img/1a5b8cf90ec1cfccf6372665b2153288.jpg') center center / cover no-repeat;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.marketing-materials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.marketing-materials .container {
    position: relative;
    z-index: 2;
}

.marketing-card {
    display: block;
    max-width: 645px;
    background: rgba(221, 99, 67, 0.82);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 12px;
    padding: 60px 48px 42px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.marketing-card__title {
    margin: 0 0 80px;
    font-size: 50px;
    line-height: 0.95;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.marketing-card__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.marketing-card__text {
    margin: 0;
    max-width: 420px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.marketing-card__pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    height: 56px;
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    flex-shrink: 0;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .marketing-materials {
        padding: 80px 0;
        min-height: 500px;
    }

    .marketing-card {
        padding: 40px 30px;
    }

    .marketing-card__title {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .marketing-card__text {
        font-size: 16px;
    }

    .marketing-card__pdf {
        min-width: 75px;
        height: 48px;
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .marketing-card__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .marketing-card__title {
        font-size: 34px;
        margin-bottom: 35px;
    }

    .marketing-card__text {
        max-width: 100%;
        font-size: 14px;
    }

    .marketing-card__pdf {
        min-width: 70px;
        height: 44px;
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .marketing-materials {
        padding: 60px 0;
        min-height: 420px;
    }

    .marketing-card {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .marketing-card__title {
        font-size: 28px;
    }
}
/* Mashinobuduvannya page */
.industry-mashin-title{
    font-size: 40px;
    font-weight: 800;
    color: black;
    margin-bottom: 35px;
    text-align: center;
}
.industry-mashin-text p{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #000;
}

.details-section{
    
    padding-top: 50px;
}
.details-container{
    display: flex;
    flex-wrap: nowrap;     
    gap: 20px;
    justify-content: center;
    overflow-x: auto;       
    padding-bottom: 30px;

}
.details-card{
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    text-decoration: none;
    

}

.details-card--bg1 {
    background-image: url("../img/93.jpg");
}
.details-card--bg2 {
    background-image: url("../img/83.jpg");
}
.details-card--bg3 {
    background-image: url("../img/menu-image-2.jpg");
}
.details-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to right,
    rgba(242, 87, 43, 1) 0%,
    rgba(242, 87, 43, 0.85) 20%,
    rgba(255, 255, 255, 0) 50%
);
    z-index: 1;
    transition: background 0.3s ease;
}


.details-card:hover::before {
    background: linear-gradient(
        to right,
        rgba(77, 77, 77, 1) 0%,
        rgba(77, 77, 77, 0) 100%,
        rgba(255, 255, 255, 0.58) 58%,
        rgba(255, 255, 255, 0) 100%
    );
}
.details-card-content {
    position: relative;
    z-index: 2;
    padding: 80px 30px; 
   display: flex;
    flex-direction: column;
    justify-content: center;
       color: white;
   width: 100%;
          }
          
.details-card-content .card-text {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.4;
    padding-right: 80px;
}

.certificates-section {
    padding: 80px 0 150px;
}

.certificates-title {
    font-size: 40px;
    font-weight: 800;
    color: black;
    text-align: center;
    margin-bottom: 30px;
}

.certificates-text {
   
    margin: 0 auto 50px;
    text-align: left;
    font-size: 18px;
    line-height: 1.5;
    color: #000;
}

.certificates-slider {
    position: relative;
     padding-bottom: 20px;
}

.certificates-slider .slick-slide {
    padding: 0 15px;
    box-sizing: border-box;
}

.certificate-card {
    border-radius: 15px;
    overflow: hidden;
}

.certificate-card img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    display: block;
}

/* Стрілки */
/* Стрілки */
.certificates-slider .slick-arrow {
    width: 57px;
    height: 57px;
    border: none;
    border-radius: 15px;
    background-color: #F2572B;
    position: absolute;
    bottom: -90px;
    top: auto;
    transform: none;
    z-index: 10;
    font-size: 0;
    cursor: pointer;
    transition: 0.3s ease;

    display: flex !important;
    align-items: center;
    justify-content: center;
}

.certificates-slider .slick-arrow:hover {
    background-color: #4D4D4D;
}

.certificates-slider .slick-prev {
    left: calc(50% - 70px);
}

.certificates-slider .slick-next {
    right: calc(50% - 70px);
}

.certificates-slider .slick-prev::before,
.certificates-slider .slick-next::before {
    font-size: 28px;
    color: #fff;
    opacity: 1;
    font-family: inherit;
    line-height: 1;
}

.certificates-slider .slick-prev::before {
    content: '←';
}

.certificates-slider .slick-next::before {
    content: '→';
}

@media (max-width: 768px) {
    .certificates-section {
        padding: 60px 0 130px;
    }

    .certificates-title {
        font-size: 38px;
    }

    .certificates-text {
        font-size: 16px;
    }

    .certificate-card img {
        height: 320px;
    }
}

.marketing-bottom{
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}
/* poslugy page */
.processing-section {
    padding: 35px 0;
    background: #fff;
}

.processing-title{
    font-size: 40px;
    font-weight: 800;
    color: #000;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 55px;
}
.thermal-title{
   font-size: 40px;
    font-weight: 800;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 55px; 
}

.processing-text {
    max-width: 680px;
    margin-bottom: 70px;
    color: #000;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
}

.processing-text p {
    margin-bottom: 5px;
}

.processing-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.processing-text li::before {
    content: "- ";
}

.thermal-title {
    margin-bottom: 35px;
}

.thermal-text {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin-bottom: 35px;
}

.thermal-cards {
    display: flex;
    gap: 30px;
}

.thermal-card {
    width: 33.333%;
    min-height: 140px;
    background: #F2572B;
    border-radius: 15px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px;
}

/* Responsive */
@media (max-width: 991px) {
    .processing-title,
    .thermal-title {
        font-size: 32px;
    }

    .thermal-cards {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .processing-section {
        padding: 50px 0;
    }

    .processing-title,
    .thermal-title {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .processing-text {
        margin-bottom: 50px;
    }

    .thermal-text {
        font-size: 16px;
    }

    .thermal-cards {
        flex-direction: column;
    }

    .thermal-card {
        width: 100%;
    }
}

.welding-lab-section {
    padding: 60px 0;
    background: #fff;
}

.welding-title,
.lab-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.welding-text {
   
    margin: 0 auto 30px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    color: #000;
    text-align: left;
}

.welding-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 70px;
}

.welding-card {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.welding-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to right,
    rgba(242, 87, 43, 1) 0%,
    rgba(242, 87, 43, 0.85) 20%,
    rgba(255, 255, 255, 0) 50%
);
    z-index: 1;
}

.welding-card span {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
}

.welding-card--bg1 {
    background-image: url("../img/zvaruvalnik.jpg");
}

.welding-card--bg2 {
    background-image: url("../img/zvaruvalnik.jpg");
}

.welding-card--bg3 {
    background-image: url("../img/zvaruvalnik.jpg");
}

.welding-card--bg4 {
    background-image: url("../img/zvaruvalnik.jpg");
}

.lab-title {
    margin-bottom: 25px;
}

.lab-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
    color: #000;
    margin-bottom: 40px;
}

.lab-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.lab-card {
    width: calc(33.333% - 15px);
    min-height: 130px;
    background: #F2572B;
    border-radius: 15px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.15;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px;
}
@media (max-width: 575px) {
    .startup-title {
        font-size: 23px;
    }
}
@media (max-width: 575px) {
    .industry-title {
        font-size: 23px;
    }
}



@media (min-width: 1200px) {
    .lab-card:nth-child(4),
.lab-card:nth-child(5) {
    width: calc(33.333% - 15px);
}
}
/* Responsive */
@media (max-width: 991px) {
    .welding-title,
    .lab-title {
        font-size: 32px;
    }

    .welding-text {
        font-size: 18px;
    }

    .welding-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .lab-card {
        width: calc(50% - 11px);
    }
}

@media (max-width: 575px) {
    .welding-lab-section {
        padding: 50px 0;
    }

    .welding-title,
    .lab-title {
        font-size: 23px;
    }

    .welding-text {
        font-size: 16px;
    }

    .welding-cards {
        grid-template-columns: 1fr;
    }

    .welding-card {
        height: 170px;
    }

    .lab-card {
        width: 100%;
        min-height: 140px;
    }
}
.sertificate-section{
    padding: 40px 0;
    }
.sertificate-text{
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: black;
}
.sertificate-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 30px;
    border-radius: 16px;
    background: #DEDEDE;
    border: 1px solid #E0E0E0;
}
.sertificate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 90px;
    height: 48px;

    background: #F2572B;
    color: #fff;
    text-decoration: none;

    font-size: 20px;
    font-weight: 500;

    border-radius: 10px;
    transition: 0.3s ease;
}

.sertificate-btn:hover {
    background: #4D4D4D;
    color: #fff;
}

/* Adaptive */
@media (max-width: 768px) {

    .sertificate-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .sertificate-btn {
        width: 100%;
    }

    .sertificate-text {
        font-size: 18px;
    }
}
.delivery-section {
    padding-top: 70px;
    background: #fff;
}

.delivery-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* LEFT COLUMN */
.delivery-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.delivery-img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.delivery-text {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
}

.delivery-item .delivery-text {
    margin-top: 25px;
}

.delivery-btn {
    width: 65px;
    height: 37px;
    background: #F2572B;
    color: #fff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

/* BUTTON LEFT COLUMN */
.delivery-item .delivery-btn {
    margin-top: 180px;
}

/* RIGHT COLUMN */
.delivery-item--right {
    display: flex;
    flex-direction: column;
    padding-top: 0;
}

.delivery-item--right .delivery-text {
    margin-top: 0;
    margin-bottom: 190px;
}

.delivery-item--right .delivery-btn {
    margin-bottom: 14px;
}

@media (max-width: 768px) {

    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .delivery-title {
        font-size: 30px;
    }

    .delivery-img {
        height: 280px;
    }

    .delivery-item .delivery-btn,
    .delivery-item--right .delivery-btn {
        margin-top: 25px;
        margin-bottom: 20px;
    }

    .delivery-item--right .delivery-text {
        margin-bottom: 25px;
    }
}
/* PRO COMPANY */
.pronas-section {
    padding: 50px 0;
    background: #fff;
}

.pronas-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    text-align: left;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.pronas-text {
    max-width: 100%;
}

.pronas-text p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: black;
    margin: 0;
    white-space: pre-line;
}
.numbers-section {
    padding-top: 50px;
}

.numbers-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.numbers-card {
    background: #DADADA;
    border-radius: 15px;
    min-height: 250px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 30px;
}

.numbers-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #F2572B;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;
}

.numbers-icon i {
    color: #fff;
    font-size: 44px;
}

.numbers-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #000;
    margin: 0;
    max-width: 320px;
}

/* Tablet */
@media (max-width: 991px) {

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .numbers-title {
        font-size: 38px;
    }

    .numbers-text {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .numbers-section {
        padding: 60px 0;
    }

    .numbers-title {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .numbers-card {
        min-height: 200px;
    }

    .numbers-text {
        font-size: 20px;
    }
}
.history-section {
    padding: 50px 0;
    
}

.history-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 50px;
}



.history-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    margin-bottom: 28px;
}

.history-text strong {
    font-weight: 700;
}

.history-text--gray {
    color: #8A8A8A;
    margin-bottom: 55px;
}

.history-link {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #F2572B;
    text-decoration: none;
    transition: 0.3s ease;
}

.history-link:hover {
    color: #d94c23;
}
.history-hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.history-hidden.active {
    max-height: 1000px;
}

.history-btn {
    margin-top: 20px;
    border: none;
    background: none;
    color: #F2572B;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

/* Tablet */
@media (max-width: 991px) {

    .history-title {
        font-size: 38px;
    }

    .history-text {
        font-size: 17px;
    }

    .history-link {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .history-section {
        padding: 60px 0;
    }

    .history-title {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .history-content {
        max-width: 100%;
    }

    .history-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .history-text br {
        display: none;
    }

    .history-link {
        font-size: 22px;
    }
}
.structure-section {
    width: 100%;
    height: 750px;
    overflow: hidden;
}
.structure-title{
    font-size: 40px;
    font-weight: 800;
    color: #000;
     text-transform: uppercase;
     letter-spacing: 1px;
     text-align: center;
     margin-bottom: 35px;
}

.structure-img {
    width: 100%;
    height: 100%;
   
    display: block;
}

/* Tablet */
@media (max-width: 991px) {

    .structure-section {
        height: 350px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .structure-section {
        height: 250px;
    }
}
.management-section {
    padding: 50px 0;
    background: #fff;
}

.management-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}



.management-slider {
    margin: 0 -12px;
    position: relative;
    padding-bottom: 90px;
}

.management-slider .slick-slide {
    margin: 0 12px;
}

.management-card {
    background: #dedede;
    border-radius: 15px;
    padding: 10px 14px 24px;
    min-height: 470px;
    color: #fff;
}

.management-name {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 18px;
    color:#4d4d4d;;
}

.management-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-bottom: 12px;
   
}

.management-position {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    color: #4d4d4d;
}
/* arrows */
.management-slider .slick-prev,
.management-slider .slick-next {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid #D9D9D9;
    background: #fff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    top: auto;
    bottom: 0;
    transform: none;
    z-index: 10;
}

.management-slider .slick-prev {
    left: calc(50% - 70px);
}

.management-slider .slick-next {
    right: calc(50% - 70px);
}

.management-slider .slick-prev:hover,
.management-slider .slick-next:hover {
    background: #F2572B;
    border-color: #F2572B;
}

.management-slider .slick-prev,
.management-slider .slick-next {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    background: #F2572B;

    display: flex !important;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;

    top: auto;
    bottom: 0;
    transform: none;
    z-index: 10;
}

.management-slider .slick-prev:hover,
.management-slider .slick-next:hover {
    background: #F2572B;
    border-color: #F2572B;
}

/* прибираємо дефолтні стрілки slick */
.management-slider .slick-prev::before,
.management-slider .slick-next::before {
    font-size: 28px;
    color: white;
    opacity: 1;
    font-family: inherit;
}

/* responsive */
@media (max-width: 991px) {
    .management-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .management-section {
        padding: 50px 0;
    }

    .management-title {
        font-size: 26px;
    }
}
.commissioning-text{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #000;
    margin-bottom: 40px;
}
.commissioning-text-2{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #4D4D4D;
    margin-bottom: 40px;
    margin-top: 60px;
}
.commissioning-text-3{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: black;
    margin-bottom: 40px;
}
/* Сталий розвиток */
.sustainability-section {
    padding-top: 50px;
}

.sustainability-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sustainability-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.sustainability-card {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.sustainability-card--bg1 {
    background-image: url("../img/f49c384148f1405f88b469092f25e252.jpg");
}

.sustainability-card--bg2 {
    background-image: url("../img/f49c384148f1405f88b469092f25e252.jpg");
}

.sustainability-card--bg3 {
    background-image: url("../img/f49c384148f1405f88b469092f25e252.jpg");
}

.sustainability-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to right,
    rgba(242, 87, 43, 1) 0%,
    rgba(242, 87, 43, 0.85) 20%,
    rgba(255, 255, 255, 0) 50%
);
    z-index: 1;
    transition: background 0.3s ease;
}

.sustainability-card:hover::before {
    background: linear-gradient(
        to right,
        rgba(77, 77, 77, 1) 0%,
        rgba(77, 77, 77, 0.85) 45%,
        rgba(255, 255, 255, 0) 100%
    );
}

.sustainability-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    color: white;
    width: 100%;
}

.sustainability-card-text {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.4;
    padding-right: 80px;
    
}

.sustainability-card-btn {
     position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #4D4D4D;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    z-index: 3;
}

.sustainability-card-btn:hover {
   background-color: #F2572B;
}




/* Tablet */
@media (max-width: 991px) {
    .sustainability-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .sustainability-container {
        grid-template-columns: 1fr;
    }

    .sustainability-card-text {
        font-size: 20px;
        padding-right: 20px;
    }
}
/* kodeks_etiki */
.code-page {
    padding: 10px 0 70px;
}



.code-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 25px;
}

.code-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    margin-bottom: 25px;
    border-radius: 15px;
}

.code-text {
    margin-bottom: 30px;
}

.code-text p {
    font-size: 18px;
    line-height: 1.25;
    color: #000;
    margin-bottom: 20px;
}

.code-documents {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.code-document {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 52px;
    padding: 0 20px;
}

.code-document--gray {
    background-color: #E5E5E5;
}

.code-document p {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin: 0;
}

.code-document-btn {
    width: 62px;
    height: 30px;
    border-radius: 10px;
    background-color: #F2572B;
    color: white;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.code-document-btn:hover {
    background-color: #4D4D4D;
    color: white;
    text-decoration: none;
}
/* Медіа page */
.media-section {
    padding-bottom: 80px;
   
}

.media-title {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 40px;
}

.media-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.media-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
}

/* Фото */
.media-card--photo {
    background-image:
        linear-gradient(
            90deg,
            rgba(242, 87, 43, 0.85) 0%,
            rgba(242, 87, 43, 0.45) 35%,
            rgba(242, 87, 43, 0) 100%
        ),
        url("../img/f49c384148f1405f88b469092f25e252.jpg");
}

/* Відео */
.media-card--video {
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(0, 0, 0, 0) 100%
        ),
        url("../img/f49c384148f1405f88b469092f25e252.jpg");
}

.media-card-content {
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.media-card-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.media-card-btn {
    width: 65px;
    height: 45px;
    border-radius: 10px;
    border: 1px solid #fff;
    background: #F2572B;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.media-card-btn:hover {
    background: #4D4D4D;
    color: #fff;
}

/* Адаптив */
@media (max-width: 992px) {
    .media-container {
        grid-template-columns: 1fr;
    }

    .media-title {
        font-size: 38px;
    }

    .media-card {
        height: 260px;
    }

    .media-card-title {
        font-size: 26px;
    }
}

/* Career */
.career-section {
    padding: 46px 0 40px;
    background: #fff;
}

.career-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin: 35px 0 45px;
}

.vacancies-list {
    width: 100%;
}

.vacancy-item {
    min-height: 70px;
    padding: 0 30px 0 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.vacancy-item:nth-child(odd) {
    background: #d9d9d9;
}

.vacancy-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.vacancy-btn {
    width: 65px;
    height: 38px;
    border-radius: 10px;
    background: #F2572B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0;
}

.employment-section {
    padding: 45px 0 80px;
    background: #fff;
}

.employment-title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin-bottom: 65px;
}

.employment-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.employment-step {
    width: 170px;
    height: 155px;
    border-radius: 10px;
    background: #d9d9d9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.employment-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #F2572B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 15px;
}

.employment-step p {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

.employment-arrow {
    font-size: 30px;
    color: #4d4d4d;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .employment-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .employment-arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .career-title,
    .employment-title {
        font-size: 30px;
    }

    .vacancy-item {
        padding: 18px 15px;
    }

    .vacancy-title {
        font-size: 16px;
    }

    .employment-step {
        width: 100%;
        max-width: 220px;
    }
}
/* Vacancy page */
.vacancy-detail-section {
    padding: 40px 0 80px;
    background: #fff;
}

.vacancy-detail-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin: 0 0 45px;
    text-transform: uppercase;
}

.vacancy-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 90px;
    align-items: start;
}

.vacancy-detail-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    margin: 0 0 18px;
}

.vacancy-detail-content ul {
    margin: 0 0 25px;
    padding-left: 25px;
}

.vacancy-detail-content li {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 1.25;
}

.vacancy-detail-content p {
    max-width: 760px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 1.25;
    margin: 0;
}

.salary-box {
    width: 100%;
    min-height: 125px;
    border: 2px solid #F2572B;
    border-radius: 10px;
    background: #d9d9d9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 55px;
}

.salary-box h3 {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin: 0 0 20px;
}

.salary-box p {
    font-size: 18px;
    font-weight: 800;
    color: #F2572B;
    margin: 0;
}

.vacancy-form h2 {
    font-size: 22px;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin: 0 0 18px;
}

.vacancy-form input,
.vacancy-form textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #d9d9d9;
    border-radius: 5px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.vacancy-form input::placeholder,
.vacancy-form textarea::placeholder {
    color: #777;
}

.vacancy-form > input {
    margin-bottom: 18px;
}

.vacancy-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.vacancy-form textarea {
    height: 100px;
    resize: none;
    margin-bottom: 35px;
}

.file-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #777;
    margin-bottom: 18px;
}

.file-btn {
    width: fit-content;
    min-width: 145px;
    height: 38px;
    padding: 0 15px;
    background: #d9d9d9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 14px;
}

.file-btn input {
    display: none;
}

.vacancy-form button {
    width: 145px;
    height: 50px;
    border: none;
    border-radius: 10px;
    background: #F2572B;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 992px) {
    .vacancy-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .vacancy-detail-sidebar {
        max-width: 360px;
    }
}

@media (max-width: 576px) {
    .vacancy-detail-title {
        font-size: 28px;
    }

    .vacancy-form-row {
        grid-template-columns: 1fr;
    }
}
/* Контакти */
.contacts-section {
    padding: 46px 0 25px;
    background: #fff;
}

.contacts-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin: 35px 0 55px;
}

.contacts-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.contacts-card {
    min-height: 210px;
    padding: 30px 20px;
    border-radius: 15px;
    background: #DEDEDE;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contacts-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #F2572B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 28px;
}

.contacts-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0 0 20px;
}

.contacts-card p {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0;
}

.feedback-section {
    margin-top: 100px;
    padding: 25px 0 80px;
    background: #fff;
}

.feedback-title {
    font-size: 22px;
    font-weight: 800;
    color: #000;
    margin: 0 0 22px;
}

.feedback-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 45px;
}

.feedback-form {
    max-width: 770px;
    margin: 0 auto;
}

.feedback-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 15px;
}

.feedback-field label {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.feedback-field input,
.feedback-field textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #F2F2F2;
    border-radius: 15px;
    padding: 15px;
    font-size: 16px;
    color: #000;
}

.feedback-field input {
    height: 65px;
}

.feedback-field textarea {
    height: 150px;
    resize: none;
}

.feedback-field--full {
       margin-bottom: 20px;
}

.feedback-btn {
    border: none;
    border-radius: 15px;
    background: #F2572B;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    text-transform: none;
    padding: 20px 40px;
    margin-bottom: 20px;
}

.feedback-policy {
    font-size: 12px;
    font-weight: 500;
    color: #4D4D4D;
    margin: 0;
}

@media (max-width: 992px) {
    .contacts-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .feedback-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contacts-title,
    .feedback-title {
        font-size: 30px;
    }

    .contacts-cards,
    .feedback-row {
        grid-template-columns: 1fr;
    }

    .feedback-subtitle {
        font-size: 16px;
    }

    .feedback-btn {
        height: 60px;
        font-size: 26px;
    }
}
.marketing-section {
    padding: 46px 0 80px;
    background: #fff;
}

.marketing-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin: 45px 0 35px;
    text-transform: uppercase;
}

.marketing-list {
    width: 100%;
}

.marketing-item {
    min-height: 70px;
    padding: 0 35px 0 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.marketing-item:nth-child(odd) {
    background: #DEDEDE;
}

.marketing-item p {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.marketing-btn {
    width: 90px;
    height: 45px;
    background: #F2572B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .marketing-title {
        font-size: 30px;
    }

    .marketing-item {
        padding: 15px;
    }

    .marketing-item p {
        font-size: 16px;
    }

    .marketing-btn {
        width: 70px;
        height: 40px;
    }
}

.gallery-section {
    padding: 46px 0 80px;
    background: #fff;
}

.gallery-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin: 45px 0;
}

.gallery-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-grid.active {
    display: grid;
}

.gallery-item {
    display: block;
    height: 320px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Pagination */

.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
}

.gallery-page-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 10px;
    background: #F2572B;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-page-btn:hover {
    opacity: 0.85;
}

.gallery-page-btn.active {
    background: #d94d22;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-title {
        font-size: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 240px;
    }

    .gallery-pagination {
        flex-wrap: wrap;
    }

    .gallery-page-btn {
        width: 45px;
        height: 45px;
    }
}
.video-section {
    padding: 46px 0 80px;
    background: #fff;
}

.video-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin: 45px 0;
    text-transform: uppercase;
}

.video-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-grid.active {
    display: grid;
}

.video-item {
    position: relative;
    display: block;
    height: 320px;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
}

.video-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-item:hover img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #F2572B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    font-size: 42px;
}

.video-play i {
    margin-left: 4px;
}

/* Pagination */

.video-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
}

.video-page-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 10px;
    background: #F2572B;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.video-page-btn:hover {
    opacity: 0.85;
}

.video-page-btn.active {
    background: #d94d22;
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .video-title {
        font-size: 30px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-item {
        height: 240px;
    }

    .video-pagination {
        flex-wrap: wrap;
    }

    .video-page-btn {
        width: 45px;
        height: 45px;
    }
}
.mega-menu__nav li .menu-link{
    text-transform: none !important;

}
.lang-switcher {
    position: relative;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 80px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    z-index: 100;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown__item {
    display: block;
    padding: 8px 16px;
    color: #000;
    text-decoration: none;
    transition: .2s;
}

.lang-dropdown__item:hover,
.lang-dropdown__item.active {
    background: #f5f5f5;
}
.page-transition {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999999;
    pointer-events: none;

    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;

    transition:
        opacity 0.55s ease,
        transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Після завантаження сторінки білий фон красиво зникає */
.page-transition.is-hidden {
    opacity: 0;
    transform: scaleY(0);
}

/* При переході білий фон красиво зʼявляється */
.page-transition.is-active {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom;
}

/* Меню має бути нижче білого переходу */
.mega-menu {
    z-index: 9999;
}
.control>ul>li {
    list-style-type: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    align-content: center
}

.control>ul>li:nth-child(1) {
    background-color: #DEDEDE;
    border-top-left-radius: 10px;
}

.control>ul>li:nth-child(2) {
    background-color: #4D4D4D
}

.control>ul>li:nth-child(3) {
    background-color: #F2572B;
    border-bottom-left-radius:10px;
}



.control {
    position: fixed;
    right: 0;
    top: 350px;
    z-index: 999
}

.uk-tooltip {
    background-color: #d9d9d9;
    font-size: 16px;
    border-radius: 0;
    color: #1e293b;
    padding: 7px 17px 8px;
    position: relative;
    text-align: center
}

.uk-tooltip::after {
    position: absolute;
    content: '';
    right: -11px;
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-bottom-width: 8px;
    border-top-width: 8px;
    border-left: 12px solid #d9d9d9;
    top: 12px
}

ul.uk-dropdown-nav {
    display: block!important
}
.hero_bg {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider,
.hero-slide {
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero_overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}
.code-text ul li{
    font-size: 18px;
    color: #000;
    font-weight: 500;
}
 ul li{
    font-size: 18px;
    color: #000;
    font-weight: 500;
}
