

/* Start:/local/templates/steeldetail_2026/assets/css/custom.css?177411513030705*/
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

:root {
    --primary-dark: #071b33;
    --primary-lightdark: #9e9e9e;
    --primary-light: #f9f9f9;
    --accent-blue: #538af5;
    --accent-gold: #ffa200;
    --text-muted: #626c84;
    --text-grey: #525252;
}
body {
    font-family: 'Onest', Arial, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    color: var(--primary-dark);
    line-height: 1.55;
    margin: 0;
    padding: 0;
}
img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
a {
    text-decoration: none;
    color: var(--primary-dark);
}
a:hover {
    color: var(--primary-lightdark);
}
h1, h2 {
    font-size: 42px;
    font-weight: normal;
    line-height: 1.25;
    margin: 0;
    padding: 0;
}
table td {
    word-wrap: break-word;
    border: 1px solid #dcdcdc;
    padding: 2px 5px;
}
.text-blue,
a.text-blue {
    color: rgb(83, 138, 246);
}
.pt-180 {
    padding-top: 180px;
}
.pt-120 {
    padding-top: 120px;
}
.pt-90 {
    padding-top: 90px;
}
.pt-60 {
    padding-top: 60px;
}

.pb-120 {
    padding-bottom: 120px;
}
.pb-90 {
    padding-bottom: 90px;
}
.pb-60 {
    padding-bottom: 60px;   
}
.pb-40 {
    padding-bottom: 40px;
}

.mb-80 {
    margin-bottom: 80px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-20 {
    margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
    h1 {
        font-size: 36px;
    }
}
@media screen and (max-width: 992px) {
    h1 {
        font-size: 30px;
    }
    .pb-60 {
        padding-bottom: 45px;
    }
    .pb-40 {
        padding-bottom: 25px;
    }
}
@media screen and (max-width: 640px) {
    h1 {
        font-size: 26px;
    }
}

/* Header Mobile Styles */
.header-mobile {
    display: none;
}
.header-mobile-container {
    height: 90px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(7, 27, 51, 1);
}
    .header-mobile-positionfixed {
        width: 100%;
        z-index: 990;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        transform: translate3d(0, 0, 0);
    }

.header-mobile-leftside {
    flex: 1 0 0%;
}    
.header-mobile-logo-container {
    flex: 1;
    display: flex;
    justify-content: left;
}
    .header-mobile-logo-img {
        max-width: 150px;
        height: auto;
    }
.header-mobile-rightside {
    flex: 1 0 0%;
    text-align: right;
}

@media screen and (max-width: 992px) {
    .header-desktop {
        display: none;
    }
    .header-mobile {
        display: block;
    }
}

/* Navigation Main Styles */
.nav-main {
    background-color: rgba(7, 27, 51, 0);
    transition: background-color 0.3s ease;
}
.nav-main-positionfixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 991;
    width: 100%;
}

.nav-main-positionfixed.nav-main-bg {
    background-color: rgba(7, 27, 51, 1);
}
    
.nav-main-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: 90px;
}
.nav-main-bottom {
    display: flex;
    align-items: center;
    height: 60px;
}

.nav-main-logo {
    flex-shrink: 0;
}
.nav-main-logo img {
    max-width: 150px;
    width: 150px;
    height: auto;
}
.nav-main-additionalwrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.nav-main-additional-descr {
    font-size: 14px;
    line-height: 1.3;
    padding-right: 30px;
}
.nav-main-additional-descr a {
    color: #ffffff;
}

.nav-main-button-wrap {
    margin: auto;
}

.nav-main-horizontalline {
    width: 100%;
}
.nav-main-divider-gold {
    background-color: var(--accent-gold);
    height: 1px;
    opacity: 0.5;
}
.nav-main-listwrapper {
    display: flex;
    height: 100%;
}
.nav-main-list {
    display: flex;
    gap: 70px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}
    .nav-main-list-item {
        height: 100%;
        align-content: center;
    }
    .nav-menu-link-item,
    .nav-menu-link-item:hover  {
        display: block;
        font-size: 18px;
        color: #fff;
        text-transform: uppercase; 
        transition: color 0.3s ease;
    }

/* Menu Sub Styles */
.menu-sub {
    position: relative;
}
    .menu-sub-menu {
        position: absolute;
        top: -4px;
        left: -110px;
        background-color: #fff;
        width: 300px;
        max-width: 300px;
        box-shadow: 0px 2px 3px rgba(0, 11, 48, 0.25);
        display: none;
        z-index: 991;
        margin-top: 20px;
        padding: 20px;
    }
    .nav-main-list-item:hover .menu-sub-menu {
        display: block;
    }
    .menu-sub-menu ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
        .menu-sub-menu ul li a {
            display: block;
            color: #333;
            font-size: 16px;
            line-height: 1.35;
            text-transform: uppercase;
            transition: background-color 0.3s ease;
        }
        .menu-sub-menu:after, 
        .menu-sub-menu:before {
            border: 10px solid transparent;
            content: "";
            height: 0;
            position: absolute;
            right: 50%;
            -webkit-transform: translateX(50%);
            transform: translateX(50%);
            width: 0;
            border-bottom-color: #fff;
            top: -20px;
        }
.catalog-header-bg {
    background-color: #071b33;
    height: 100px;
    width: 100%;
}
.catalog-page-product {
    margin-top: 150px;
}
@media screen and (max-width: 992px) {
    .catalog-page-product {
        margin-top: 90px;
    }
}

/* Hero */
.background-hero {
    background-attachment: fixed;
    background-color: #000;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    overflow: hidden;
    position: relative;
    text-align: center;
    vertical-align: middle;
    width: 100%;
}
    .catalog-hero.background-hero {
        height: 300px;
    }

.background-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(34, 34, 34, 0.2));
}

.background-hero .container,
.background-hero .row {
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero-title-h1 {
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 24px 0;
}

.hero-title-h1 h1{
    font-size: 72px;
    font-weight: 400;
    line-height: 1.17;
    color: #fff;
    text-transform: uppercase;
    padding: 24px 0 38px;
}      

@media screen and (max-width: 992px) {
    .hero-title-h1 {
        align-items: center;
    }
    .hero-title-h1 h1 {
        font-size: 30px;
    }
}


/* Footer Styles */
.footer-content {
    background-color: var(--primary-dark);
    padding-top: 75px;
    padding-bottom: 90px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    display: block;
    max-width: 120px;
    height: auto;
    width: 100%;
}

.footer-text {
    color: var(--text-grey);
    opacity: 0.7;
    font-size: 12px;
}

.footer-title {
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 15px;
    text-transform: uppercase;
}
    .footer-title a {
        color: var(--text-muted);
        text-decoration: none;
    }

.footer-descr {
    font-size: 14px;
    color: #fff;
}
    .footer-descr ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-descr ul li {
        margin-bottom: 10px;
    }
        .footer-descr a {
            color: #fff;
            transition: color 0.3s ease;
        }

.soclinks-container ul {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--primary-dark);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 40px 25px 25px;
    z-index: 1001;
}
    .mobile-menu-overlay.active .mobile-menu {
        transform: translateX(0);
    }

.mobile-menu-close {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    padding: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

.mobile-menu-nav {
    flex: 1;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-item {
    margin: 0;
}

.mobile-menu-link {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    display: block;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.mobile-menu-item-has-submenu {
    position: relative;
}

.mobile-menu-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding-top 0.3s ease;
    padding-top: 0;
}

.mobile-menu-item-has-submenu:hover .mobile-menu-submenu,
.mobile-menu-item-has-submenu.mobile-menu-item-active .mobile-menu-submenu {
    max-height: 1000px;
    opacity: 1;
    padding-top: 15px;
}

.mobile-menu-sublink {
    color: #ffffff;
    display: block;
    padding: 8px 0;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    line-height: 1.5;
    padding-left: 15px;
}

.mobile-menu-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.mobile-menu-contact-icon {
    width: 30px; 
    height: 30px;
}

.mobile-menu-contact-address {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}

.mobile-menu-contact-address a {
    color: #ffffff;
    text-decoration: none;
}

.mobile-menu-contact-address a:hover {
    color: var(--accent-gold);
}

/* Menu Burger Styles */
.menu-burger {
    position: relative;
    flex-shrink: 0;
    width: 28px;
    height: 20px;
    padding: 0;
    border: none;
    background-color: transparent;
    outline: none;
    transform: rotate(0deg);
    transition: transform .5s ease-in-out;
    cursor: pointer;
    z-index: 990;
}

.menu-burger span {
    display: block;
    position: absolute;
    width: 100%;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    height: 3px;
    background-color: #000;
}
    .menu-burger span.burger-gold {
        background-color: var(--accent-gold);
    }
    .menu-burger span:nth-child(1) {
        top: 0px;
    }
    .menu-burger span:nth-child(2),
    .menu-burger span:nth-child(3) {
        top: 8px;
    }
    .menu-burger span:nth-child(4) {
        top: 16px;
    }
    .menu-burger.active span:nth-child(1) {
        top: 8px;
        width: 0%;
        left: 50%;
    }
    .menu-burger.active span:nth-child(2) {
        transform: rotate(45deg);
    }
    .menu-burger.active span:nth-child(3) {
        transform: rotate(-45deg);
    }
    .menu-burger.active span:nth-child(4) {
        top: 8px;
        width: 0%;
        left: 50%;
    }

/* Scroll to Top */
.scroll-to-top {
    display: none;
    position: fixed;
    opacity: 1;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.scroll-to-top-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: transparent;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}
    .scroll-to-top-arrow:hover {
        transform: translateY(-3px);
    }
        .scroll-to-top-arrow:hover svg path {
            stroke: #fdfdfd;
            stroke-width: 1;
        }
        .scroll-to-top-arrow:hover svg rect {
            fill: var(--accent-blue);
            fill-opacity: 1;
        }

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}
    .popup-overlay.active {
        display: flex;
    }
.popup-container {
    position: relative;
    background-color: #ffffff;
    border-radius: 0;
    width: auto;
    max-width: 960px;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}
.popup-content {
    padding: 40px 45px;
}
.popup-close {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: background-color 0.3s ease;
}
    .popup-close:hover{
        opacity: .7;
    }
.popup-title {
    font-size: 32px;
    line-height: 1.17;
    color: var(--primary-dark);
    margin: 0 0 30px 0;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .popup-container {
        max-width: 100%;
    }  
    .popup-content {
        padding: 30px 30px;
    }
    .popup-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
    .popup-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.form-section-image-block {
    justify-content: space-between;
}

.form-required {
	color: red;
}

.feedback_2026 input[type=submit]{	
	--height: 60px;
    font-size: 16px;
    padding: 20px 60px;

	color: #071b33;
    background-color: #ffa200;
    border-style: none !important;
    border-radius: 15px;
    box-shadow: 0px 2px 3px rgba(0, 11, 48, 0.25) !important;
    text-transform: uppercase;
    transition-duration: 0.2s;
    transition-property: background-color, color, border-color, box-shadow, opacity, transform, gap;
    transition-timing-function: ease-in-out;
}
	


@media screen and (max-width: 768px) {
    .feedback_2026 input[type=submit]{
        display: block;
        margin: 0 auto;
    }
}

/* Button styles */
.btn {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 30px;
    border-radius: 15px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-call,
.btn-call:hover {
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-request,
.btn-request:hover {
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
}

/* Section */
.sect-bg-grey {
    background-color: var(--text-muted);
    color: var(--primary-light);
}
.sect-bg-grey a {
    color: var(--primary-light);
}

.sect-bg-light {
    background-color: var(--primary-light);
}

.sect-title,
.sect-title h1,
.sect-title h2 {
    font-size: 42px;
    font-weight: normal;
    line-height: 1.55;
    text-transform: uppercase;
}
.sect-title-large,
.sect-title-large h1,
.sect-title-large h2 {
    font-size: 52px;
    line-height: 1.23;
    text-transform: uppercase;
}
.sect-title-small {
    font-size: 24px;
}

.section-subtitle {
    font-size: 28px;
    margin-bottom: 40px;
}

.sect-text-upper {
  text-transform: uppercase;  
}

.sect-text-center {
    text-align: center;
}

.sect-text-content {
    font-size: 20px;
}


@media screen and (max-width: 1200px) {
    .sect-title,
    .sect-title h1,
    .sect-title h2 {
        font-size: 36px;
    }
    .sect-title-large,
    .sect-title-large h1,
    .sect-title-large h2 {
        font-size: 48px;
    }
    .section-subtitle {
        font-size: 24px;
    }
    .sect-text-content {
        font-size: 18px;
    }
    .sect-text-content span {
        font-size: 14px;
    }
}
@media screen and (max-width: 992px) {
    .sect-title,
    .sect-title h1,
    .sect-title h2 {
        font-size: 30px;
    }
    .sect-title-small {
        font-size: 22px;
    }
    .section-subtitle {
        font-size: 20px;
    }
}
@media screen and (max-width: 640px) {
    .sect-title-large,
    .sect-title-large h1,
    .sect-title-large h2 {
        font-size: 30px;
    }
    .sect-title-small {
        font-size: 20px;
    }
    .section-subtitle {
        font-size: 18px;
    }
    .sect-text-content {
        font-size: 16px;
    }
}

/* Gallery Slider Section Styles */
.gallery-slider-section {
    position: relative;
    overflow: hidden;
}

.gallery-slider-wrapper {
    position: relative;
}

.gallery-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 5;
    pointer-events: none;
}

.gallery-slider-control {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-slider-control:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-slider-control svg {
    width: 24px;
    height: 24px;
}

.gallery-slider {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 0 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.gallery-slider-item {
    flex: 0 0 auto;
    width: 500px;
    position: relative;
}

.gallery-slider-img-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.gallery-slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    transition: transform 0.3s ease;
    max-width: 100% !important;
    max-height: 100% !important;
    background: none !important;
    background-image: none !important;
    box-shadow: none !important;
}

.gallery-slider-img:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 640px) {
    .gallery-slider {
        padding: 0 20px;
    }
    
    .gallery-slider-item {
        width: 320px;
    }
    
    .gallery-slider-controls {
        display: none;
    }
}








/* TODO */

/* Form*/
/* .form-section .sect-text-content {
    font-size: 22px;
} */


/* Why Us Section Styles */
.whyus-section-content {
    display: flex;
    align-items: center;
}

.whyus-section-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whyus-section-col-left {
    text-align: left;
}

.whyus-section-col-center {
    text-align: center;
    padding: 20px;
}

.whyus-section-col-right {
    text-align: right;
}

.whyus-section-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.whyus-section-logo {
    max-width: 100%;
    height: auto;
    display: block;
}

.whyus-section-item {
    margin-bottom: 45px;
    text-align: inherit;
}

.whyus-section-item:last-child {
    margin-bottom: 0;
}

.whyus-section-item-wrapper {
    display: inline-block;
    vertical-align: top;
}

.whyus-section-item-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
}

.whyus-section-item-descr {
    color: var(--text-grey);
    margin: 0;
}

@media screen and (max-width: 992px) {    
    .whyus-section-col-left,
    .whyus-section-col-right {
        text-align: center;
    }
    
    .whyus-section-col-center {
        order: -1;
        margin-bottom: 40px;
    }

    .whyus-section-col-left {
        margin-top: 45px;
    }
}

@media screen and (max-width: 640px) {
    .whyus-section-col-center {
        padding: 15px;
    }
    
    .whyus-section-logo {
        max-width: 200px;
    }
}

/* Partners Section Styles */

.partners-section-descr {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.partners-section-descr p {
    margin-bottom: 0;
    text-align: center;
}

.partners-section-gallery {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.partners-section-item {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex: 0 0 20%;
    max-width: 20%;
}

.partners-section-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.partners-section-img:hover {
    filter: grayscale(0%);
    opacity: 0.9;
}

@media screen and (max-width: 992px) {
    .partners-section-descr {
        margin-bottom: 45px;
    }

    .partners-section-item {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media screen and (max-width: 768px) {
    .partners-section-item {
        padding: 10px;
        margin-bottom: 15px;
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .partners-section-img {
        max-width: 150px;
    }
}

/* Services Accordion Section Styles */
.services-accordion {
    width: 100%;
}

.services-accordion-item {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.services-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-accordion-header:hover {
    opacity: 0.8;
}

.services-accordion-title {
    font-size: 24px;
    color: var(--primary-dark);
    text-transform: uppercase;
    flex: 1;
    padding-right: 20px;
}

.services-accordion-icon {
    width: 40px;
    height: 40px;
    fill: transparent;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.services-accordion-header[aria-expanded="true"] .services-accordion-icon {
    transform: rotate(45deg);
}

.services-accordion-lines {
    stroke: var(--primary-dark);
}

.services-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.services-accordion-content[hidden] {
    display: none;
}

.services-accordion-content:not([hidden]) {
    display: block;
    max-height: 2000px;
}

.services-accordion-content-wrapper {
    padding: 20px 0 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.services-accordion-image {
    max-width: 90px;
    height: auto;
    flex-shrink: 0;
}

.services-accordion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.services-accordion-list li {
    font-size: 18px;
    color: var(--text-grey);
    padding-left: 20px;
    position: relative;
}

.services-accordion-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    font-weight: bold;
}

.services-accordion-list li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 992px) {
    .services-accordion-title {
        font-size: 20px;
    }
    
    .services-accordion-content-wrapper {
        flex-direction: column;
        gap: 15px;
    }
}

/* Advantages Section Styles */
.advantages-grid {
    position: relative;
}

.advantages-item {
    position: relative;
    padding: 30px 20px;
    text-align: center;
}

/* Vertical separator between columns */
.advantages-item::after {
    content: '';
    position: absolute;
    top: 5%;
    right: 0;
    width: 1px;
    height: 90%;
    background-color: #000000;
}

/* Remove separator from last item in each row (every 3rd item) */
.advantages-item:nth-child(3n)::after {
    display: none;
}

/* Remove separator from last item overall */
.advantages-item:last-child::after {
    display: none;
}

.advantages-item-number {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantages-item-icon {
    width: auto;
    height: 100px;
    display: block;
}

.advantages-item-title {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.advantages-item-description {
    font-size: 18px;
    text-align: left;
    max-width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {
    .advantages-title {
        font-size: 38px;
    }
    
    .advantages-item-icon {
        height: 70px;
    }
    
    .advantages-item-title {
        font-size: 22px;
    }
    
    .advantages-item-description {
        font-size: 15px;
    }
}

@media screen and (max-width: 992px) {
    .advantages-item::after {
        display: none;
    }
    
    .advantages-item {
        text-align: left;
        border-bottom: none;
        margin-bottom: 30px;
    }
    
    .advantages-item:last-child {
        margin-bottom: 0;
    }
    
    .advantages-item-number {
        display: none;
    }
    
    .advantages-item-title {
        font-size: 18px;
        color: var(--primary-dark);
        text-transform: uppercase;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #333333;
    }
    
    .advantages-item-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 640px) {
    .advantages-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .advantages-item {
        margin-bottom: 0;
    }
    
    .advantages-item-number {
        display: none;
    }
    
    .advantages-item-title {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .advantages-item-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Firstscreen Section Styles */
.firstscreen {
    position: relative;
    width: 100%;
    height: 100vh; 
    min-height: 670px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.firstscreen-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.firstscreen-background-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.firstscreen-background-slide_active {
    opacity: 1;
}

.firstscreen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.70), rgba(0,0,0,0.40));
    z-index: 2;
}

.firstscreen-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.firstscreen-title {
    font-size: 62px;
    font-weight: 400;
    line-height: 1.25;
    color: #ffffff;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.firstscreen-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.firstscreen-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: scrollBounce 2s infinite;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.firstscreen-scroll-indicator:hover {
    opacity: 0.8;
    transform: translateX(-50%) translateY(5px);
}

.firstscreen-scroll-arrow {
    width: 38.417px;
    height: 18.592px;
    display: block;
}

@media screen and (max-width: 1200px) {
    .firstscreen-title {
        font-size: 48px;
    }
    
    .firstscreen-subtitle {
        font-size: 20px;
    }
}

@media screen and (max-width: 992px) {    
    .firstscreen-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .firstscreen-subtitle {
        font-size: 16px;
    }
    
    .firstscreen-scroll-indicator {
        bottom: 30px;
    }
}

@media screen and (max-width: 640px) {
    .firstscreen-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .firstscreen-subtitle {
        font-size: 14px;
    }
}
/* End */
/* /local/templates/steeldetail_2026/assets/css/custom.css?177411513030705 */
