/* Style strony głównej */

:root {
    --primary:#1f2937;
    --secondary:#dc2626;
    --light:#f8fafc;
    --text:#334155;
    --white:#ffffff
}

* {
    margin:0;
    padding:0;
    box-sizing:border-box
}

html {
    scroll-behavior:smooth
}

body {
    font-family:Arial,sans-serif;
    color:var(--text);
    line-height:1.6;
    overflow-x:hidden
}

.container {
    width:90%;
    max-width:1200px;
    margin:auto
}

header .container {
    width:96%;
    max-width:none
}

header {
    position:fixed;
    width:100%;
    background:#fff;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
    z-index:1000
}

nav {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0
}

.logo {
    display:flex;
    align-items:center;
    text-decoration:none
}

.logo img {
    height:60px;
    width:auto;
    display:block
}

nav ul {
    display:flex;
    list-style:none
}

nav ul li {
    position:relative;
    padding:0 28px;
    margin:0
}

nav ul li:not(:last-child)::after {
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:22px;
    background:#dcdcdc
}

nav a {
    position:relative;
    text-decoration:none;
    color:var(--text);
    font-weight:600;
    transition:.3s
}

nav a:hover {
    color:var(--secondary)
}

nav a::after {
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:var(--secondary);
    transition:.3s
}

nav a:hover::after {
    width:100%
}

.menu-toggle {
    display:none;
    font-size:18px;
    cursor:pointer;
    color:var(--primary)
}

.hero {
    height:auto;
    min-height:auto;
    padding:30px;
    background:white
}

.hero-slider {
    position:absolute;
    inset:0;
    z-index:-1
}

.hero-slide {
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1s ease-in-out
}

.hero-slide.active {
    opacity:1
}

.hero-slide::after {
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55)
}

.hero-content {
    max-width:900px
}

.hero-controls {
    position:absolute;
    left:50%;
    bottom:35px;
    transform:translateX(-50%);
    display:flex;
    gap:12px
}

.hero-dot {
    width:13px;
    height:13px;
    border-radius:50%;
    border:2px solid #fff;
    background:transparent;
    padding:0;
    cursor:pointer
}

.hero-dot.active {
    background:#fff
}

.hero h1 {
    font-size:58px;
    line-height:1.1;
    margin-bottom:20px
}

.hero p {
    font-size:22px;
    margin-bottom:30px
}

.btn {
    display:inline-block;
    background:var(--secondary);
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:8px;
    font-weight:700;
    transition:.3s
}

.btn:hover {
    transform:translateY(-3px)
}

section {
    padding:40px 0
}

.section-title {
    text-align:left;
    margin-bottom:30px;
    color:var(--primary);
    font-size:40px
}

.about {
    max-width:900px;
    margin:auto;
    text-align:left;
    font-size:18px
}

.services {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px
}

.card {
    background:white;
    padding:35px;
    border-radius:15px;
    text-align:left;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    border-bottom:4px solid var(--secondary);
    transition:.35s
}

.card:hover {
    transform:translateY(-8px)
}

.service-icon {
    font-size:42px;
    color:var(--secondary);
    margin-bottom:20px
}

.card h3 {
    margin-bottom:15px;
    color:var(--primary)
}

.process {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px
}

.step {
    background:var(--light);
    padding:30px;
    text-align:left;
    border-radius:12px;
    font-weight:600
}

.projects {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px
}

.project {
    overflow:hidden;
    border-radius:15px;
    background:white;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s
}

.project:hover {
    transform:translateY(-8px)
}

.project img {
    width:100%;
    height:240px;
    object-fit:cover
}

.project-info {
    padding:20px
}

.project-info h3 {
    color:var(--primary);
    margin-bottom:10px
}

.advantages {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px
}

.adv {
    background:white;
    color:var(--text);
    padding:35px;
    border-radius:15px;
    text-align:left;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    border-bottom:4px solid var(--secondary);
    transition:.35s
}

.adv:hover {
    transform:translateY(-8px)
}

.adv i {
    font-size:40px;
    margin-bottom:20px;
    color:var(--secondary)
}

.adv h3 {
    margin-bottom:15px
}

.contact {
    background:var(--light)
}

.contact-form {
    max-width:700px;
    margin:auto
}

input,textarea {
    width:100%;
    padding:16px;
    border:1px solid #d1d5db;
    border-radius:8px;
    margin-bottom:15px;
    font-size:14px
}

button {
    background:var(--secondary);
    color:white;
    border:none;
    padding:16px 35px;
    border-radius:8px;
    font-size:14px;
    cursor:pointer;
    transition:.3s
}

button:hover {
    opacity:.9
}

footer {
    background:var(--primary);
    color:white;
    text-align:left;
    padding:30px
}

.contact-cards {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:40px
}

.contact-card {
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:left;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    border-bottom:4px solid var(--secondary);
    transition:.3s
}

.contact-card:hover {
    transform:translateY(-5px)
}

.contact-card i {
    font-size:18px;
    color:var(--secondary);
    margin-bottom:15px
}

.contact-card h3 {
    color:var(--primary);
    margin-bottom:15px
}

.contact-card a {
    color:var(--text);
    text-decoration:none;
    font-weight:600
}

.contact-card iframe {
    width:100%;
    height:220px;
    border:0;
    border-radius:10px;
    margin-top:20px
}

.hero-caption {
    position:absolute;
    left:50px;
    bottom:45px;
    color:rgba(255,255,255,0.45);
    font-size:14px;
    font-weight:400;
    letter-spacing:2px;
    text-transform:uppercase;
    text-shadow:none;
    z-index:2
}

@media(max-width:768px) {
    .menu-toggle {
        display:block
    }
    nav ul {
        display:none;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:white;
        flex-direction:column;
        padding:25px;
        box-shadow:0 10px 20px rgba(0,0,0,.1)
    }
    nav ul.active {
        display:flex
    }
    .hero {
        text-align:left
    }
    .hero h1 {
        font-size:18px
    }
    .hero p {
        font-size:18px
    }
    .section-title {
        font-size:18px
    }
}

.section-title::after {
    content:"";
    display:block;
    width:120px;
    height:3px;
    background:var(--secondary);
    margin:15px auto 0;
    border-radius:10px
}

section:nth-of-type(even) {
    background:#f8fafc
}

.card:hover,.adv:hover,.contact-card:hover,.project:hover {
    transform:translateY(-10px)
}

.project {
    position:relative
}

.project-info {
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    background:linear-gradient(transparent,rgba(0,0,0,.85));
    color:white
}

.project-info h3,.project-info p {
    color:white
}

.back-to-top {
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--secondary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    text-decoration:none;
    box-shadow:0 6px 20px rgba(0,0,0,.2);
    z-index:999
}

.logo img {
    transition:.3s
}

.logo img:hover {
    transform:scale(1.05)
}

.about-modern {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center
}

.about-image img {
    width:100%;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.12)
}

.about-tag {
    color:var(--secondary);
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px
}

.about-modern h3 {
    font-size:18px;
    color:var(--primary);
    margin-bottom:20px
}

.about-list {
    list-style:none;
    margin:25px 0
}

.about-list li {
    margin:12px 0;
    font-weight:500
}

.about-btn {
    display:inline-block;
    background:var(--secondary);
    color:white;
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
    margin-top:10px
}

@media(max-width:768px) {
    .about-modern {
        grid-template-columns:1fr
    }
}

.page-content {
    padding-top:100px;
    min-height:calc(100vh - 90px)
}

.about-trust {
    margin-top:30px
}

.about-trust-title {
    font-size:20px !important;
    margin-bottom:20px !important;
    color:var(--primary)
}

.about-trust .advantages {
    grid-template-columns:repeat(2,minmax(220px,1fr));
    gap:18px
}

.about-trust .adv {
    padding:22px
}

.about-trust .adv i {
    font-size:18px
}

@media(max-width:768px) {
    .about-trust .advantages {
        grid-template-columns:1fr
    }
}

.menu-active {
    color:var(--secondary)!important
}

.menu-active::after {
    width:100%!important
}

.hero-slide {
    position:relative;
    display:none
}

.hero-slide.active {
    display:block
}

.hero-slide img {
    width:100%;
    height:auto;
    max-height:650px;
    object-fit:contain;
    border-radius:20px;
    display:block
}

.hero-caption {
    position:absolute;
    left:30px;
    bottom:20px;
    color:rgba(255,255,255,.9);
    font-size:14px;
    font-weight:600;
    text-transform:uppercase
}

.hero {
    padding:0 !important;
    background:#fff !important;
    height:70vh !important;
    min-height:600px;
    overflow:hidden
}

.hero-slide {
    position:absolute;
    inset:0
}

.hero-slide img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    border-radius:0 !important;
    max-height:none !important
}

.hero-caption {
    position:absolute;
    left:60px;
    bottom:90px;
    color:white;
    font-size:42px;
    font-weight:700;
    text-transform:uppercase;
    background:rgba(0,0,0,.45);
    padding:12px 22px;
    border-radius:10px;
    z-index:5
}

.hero-controls {
    bottom:35px !important
}

@media(max-width:768px) {
    .hero {
        height:55vh !important;
        min-height:420px
    }
    .hero-caption {
        left:20px;
        right:20px;
        bottom:70px;
        font-size:22px
    }
}

.hero-caption {
    background:none !important;
    color:rgba(255,255,255,0.45) !important;
    font-size:20px !important;
    font-weight:400 !important;
    letter-spacing:2px;
    text-transform:uppercase;
    text-shadow:none !important;
    left:50px !important;
    bottom:45px !important;
    padding:0 !important
}

.hero {
    padding:0 !important;
    background:#fff !important;
    height:70vh !important;
    min-height:600px;
    overflow:hidden
}

.hero-slide {
    position:absolute;
    inset:0
}

.hero-slide img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    border-radius:0 !important;
    max-height:none !important;
    display:block
}

.hero-caption {
    background:none !important;
    color:rgba(255,255,255,0.45) !important;
    font-size:20px !important;
    font-weight:400 !important;
    letter-spacing:2px;
    text-transform:uppercase;
    text-shadow:none !important;
    left:50px !important;
    bottom:45px !important;
    padding:0 !important;
    position:absolute;
    z-index:5
}

.hero-controls {
    bottom:35px !important
}

.site-footer {
    background:#1f2d3d;
    color:#fff;
    padding:12px 18px 10px;
    text-align:left;
    text-align:left
}

.footer-inner {
    max-width:1100px;
    margin:0 auto;
    padding-left:10px
}

.footer-company {
    font-size:15px;
    font-weight:700;
    margin-bottom:10px
}

.footer-details {
    display:flex;
    justify-content:flex-start;
    align-items:center;
    flex-wrap:wrap;
    gap:8px 18px;
    font-size:10px;
    line-height:1.6;
    opacity:.95;
    margin-bottom:10px
}

.footer-details span {
    position:relative
}

.footer-details span:not(:last-child)::after {
    content:'';
    position:absolute;
    right:-10px;
    top:50%;
    width:1px;
    height:12px;
    background:rgba(255,255,255,.35);
    transform:translateY(-50%)
}

.footer-details a {
    color:#fff;
    text-decoration:none
}

.footer-details a:hover {
    color:#e52525
}

.footer-copy {
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:10px;
    font-size:10px;
    opacity:.75
}

@media(max-width:700px) {
    .footer-details {
        flex-direction:column;
        gap:6px
    }
    .footer-details span:not(:last-child)::after {
        display:none
    }
}

.reveal-text {
    opacity:0;
    transform:translateY(35px);
    transition:opacity .8s ease,transform .8s ease
}

.reveal-text.visible {
    opacity:1;
    transform:translateY(0)
}

.hero::before,.hero::after,.hero-slide::before,.hero-slide::after {
    display:none !important;
    opacity:0 !important;
    background:none !important
}

.hero-slide img {
    filter:none !important
}

.experience-strip,.slogan-strip {
    background:#fff;
    padding:38px 20px 44px !important;
    text-align:center
}

.experience-inner,.slogan-inner {
    display:flex;
    align-items:baseline;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    color:#1f2d3d
}

.experience-small,.slogan-small {
    font-size:20px !important;
    font-weight:300 !important
}

.experience-number,.slogan-number {
    font-size:18px !important;
    line-height:.9;
    font-weight:300 !important;
    color:#e52525 !important
}

.experience-strip h2,.slogan-strip h2 {
    font-size:18px !important;
    font-weight:400 !important
}

.experience-strip h2 strong,.slogan-strip h2 strong {
    font-size:72px !important;
    color:#e52525 !important
}

.site-footer {
    padding:16px 20px 12px !important;
    text-align:left !important
}

.footer-inner {
    max-width:1500px !important;
    margin:0 auto !important
}

.footer-main-line {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    flex-wrap:wrap
}

.footer-company {
    margin:0 !important;
    text-align:left !important
}

.footer-details {
    display:flex !important;
    justify-content:flex-end !important;
    align-items:center !important;
    flex-wrap:wrap !important;
    gap:8px 18px !important;
    margin:0 !important;
    text-align:right !important
}

.footer-details span {
    position:relative
}

.footer-details span:not(:last-child)::after {
    content:'';
    position:absolute;
    right:-10px;
    top:50%;
    width:1px;
    height:12px;
    background:rgba(255,255,255,.35);
    transform:translateY(-50%)
}

.footer-copy {
    margin-top:10px !important;
    padding-top:8px !important;
    text-align:center !important
}

@media(max-width:900px) {
    .footer-main-line {
        align-items:flex-start;
        flex-direction:column;
        gap:8px
    }
    .footer-details {
        justify-content:flex-start !important;
        text-align:left !important
    }
    .footer-details span:not(:last-child)::after {
        display:none
    }
}

.hero-caption,.slide-caption,.carousel-caption,.project-caption {
    background:rgba(0,0,0,.35)!important;
    display:inline-block!important;
    padding:12px 18px!important;
    border-radius:2px!important
}

.hero,.slider,.hero-section {
    margin-bottom:0!important;
    padding-bottom:0!important
}

.experience-strip,.slogan-strip {
    margin-top:0!important
}

.hero {
    margin-bottom:0 !important;
    padding-bottom:0 !important
}

.hero+section,.hero+.experience-strip,.hero+.slogan-strip {
    margin-top:0 !important
}

.experience-strip,.slogan-strip {
    margin-top:0 !important
}

.hero-caption {
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    width:100% !important;
    box-sizing:border-box !important;
    padding:22px 55px 28px !important;
    background:rgba(0,0,0,.38) !important;
    color:rgba(255,255,255,.88) !important;
    text-shadow:none !important;
    font-size:20px !important;
    line-height:1.25 !important;
    font-size:18px !important;
    font-weight:500 !important;
    letter-spacing:1px !important
}

.hero-slide .caption,.slide-caption {
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    width:100% !important;
    box-sizing:border-box !important;
    padding:22px 55px 28px !important;
    background:rgba(0,0,0,.38) !important
}

.hero,.slider,.hero-slider {
    margin-bottom:0!important;
    padding-bottom:0!important
}

.hero+*,.slider+* {
    margin-top:0!important
}

.hero::after,.slider::after,.hero-spacer,.slider-spacer {
    display:none!important;
    height:0!important
}

.experience-strip {
    margin-top:0!important;
    padding-top:0!important
}

.hero,.hero-slider,.slider,#home {
    margin-bottom:0 !important;
    padding-bottom:0 !important
}

.hero+.experience-strip,.hero-slider+.experience-strip,.slider+.experience-strip,#home+.experience-strip {
    margin-top:0 !important
}

.experience-strip {
    margin-top:0 !important;
    padding-top:34px !important
}

.hero-caption {
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    width:100% !important;
    box-sizing:border-box !important;
    margin:0 !important;
    padding:18px 55px 22px !important;
    background:rgba(0,0,0,.38) !important;
    color:rgba(255,255,255,.9) !important
}

#scrollTop,.scroll-top,.back-to-top,.to-top {
    display:none!important
}

.reveal-photo {
    opacity:0;
    transform:translateY(40px);
    transition:opacity .8s ease,transform .8s ease
}

.reveal-photo.visible {
    opacity:1;
    transform:translateY(0)
}

#home {
    margin-bottom:0 !important;
    padding-bottom:0 !important
}

#home+.experience-strip {
    margin-top:0 !important
}

#home+.experience-strip {
    padding:38px 20px 44px !important;
    background:#f8fafc !important
}

#home.hero {
    height:70vh !important;
    min-height:600px !important;
    overflow:hidden !important
}

#home .hero-slide {
    position:absolute !important;
    inset:0 !important;
    height:100% !important
}

#home .hero-slide.active {
    display:block !important
}

#home .hero-slide img {
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important
}

#home+.experience-strip {
    margin-top:0 !important;
    padding-top:38px !important
}

#home+header {
    background:linear-gradient(120deg,rgba(255,255,255,.08) 0 12%,transparent 12% 100%),linear-gradient(135deg,transparent 0 36%,rgba(255,255,255,.09) 36% 42%,transparent 42% 100%),linear-gradient(90deg,rgba(3,78,66,.96),rgba(0,100,78,.96) 48%,rgba(2,82,68,.96));
    box-shadow:0 3px 14px rgba(0,0,0,.18) !important;
    border-bottom:1px solid rgba(255,255,255,.18);
    overflow:hidden
}

header::before {
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.28;
    background-image:url("../../header-tech.svg");
    background-size:cover;
    background-position:center;
    background-size:360px 130px,420px 130px,44px 44px,44px 44px;
    background-position:40px 0,180px -20px,0 0,0 0
}

header::after {
    content:"";
    position:absolute;
    top:-30px;
    left:22%;
    width:26%;
    height:150px;
    pointer-events:none;
    background:rgba(255,255,255,.08);
    transform:skewX(-28deg)
}

header .container,header nav {
    position:relative;
    z-index:1
}

nav a {
    color:#fff !important;
    text-shadow:0 1px 2px rgba(0,0,0,.28)
}

nav a:hover {
    color:#fff !important
}

nav a::after,.menu-active::after {
    background:var(--secondary) !important
}

nav ul li:not(:last-child)::after {
    background:rgba(255,255,255,.55) !important
}

.menu-toggle {
    color:#fff !important
}

.logo img {
    filter:drop-shadow(0 2px 3px rgba(0,0,0,.25))
}

@media(max-width:768px) {
    nav ul {
        background:rgba(2,78,66,.98) !important
    }
}

.home-header-experience {
    display:flex;
    align-items:center;
    gap:8px;
    margin-left:24px;
    margin-right:auto;
    padding:9px 17px 8px 16px;
    border-left:3px solid var(--secondary,#ee302b);
    background:rgba(255,255,255,.08);
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.12);
    color:#fff;
    line-height:1;
    white-space:nowrap;
    opacity:0;
    transform:translateX(-12px);
    animation:homeExpFadeIn .9s ease .25s forwards
}

.home-exp-over {
    font-size:13px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
    opacity:.9
}

.home-exp-number {
    font-size:18px;
    line-height:.85;
    color:var(--secondary,#ee302b);
    font-weight:700;
    letter-spacing:-1px;
    text-shadow:none
}

.home-exp-text {
    font-size:12px;
    line-height:1.18;
    font-weight:600;
    letter-spacing:.04em;
    text-transform:uppercase;
    opacity:.95
}

@keyframes homeExpFadeIn {
    to {
        opacity:1;
        transform:translateX(0)
    }
}

body.home-page .experience-strip {
    display:none !important
}

@media (max-width:1100px) {
    .home-header-experience {
        padding:7px 11px;
        margin-left:14px;
        gap:6px
    }
    .home-exp-over {
        font-size:11px
    }
    .home-exp-number {
        font-size:18px
    }
    .home-exp-text {
        font-size:10px
    }
}

@media (max-width:900px) {
    .home-header-experience {
        display:none
    }
}

.experience-strip {
    position:relative;
    z-index:20;
    background:#fff !important;
    margin-top:-34px !important;
    padding:72px 20px 44px !important
}

#home .hero-caption {
    position:absolute !important;
    top:0 !important;
    bottom:auto !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    margin:0 !important;
    padding:18px 40px !important;
    background:rgba(0,0,0,.35) !important;
    color:#fff !important;
    box-sizing:border-box !important;
    line-height:1.25 !important;
    font-size:18px !important;
    font-weight:500 !important;
    letter-spacing:1px !important
}

@media(max-width:768px) {
    #home .hero-caption {
        top:0 !important;
        left:0 !important;
        right:0 !important;
        width:100% !important;
        padding:14px 20px !important;
        font-size:18px !important;
        line-height:1.3 !important
    }
}

#home .hero-caption {
    position:absolute !important;
    top:var(--gid-header-offset,120px) !important;
    bottom:auto !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    box-sizing:border-box !important;
    margin:0 !important;
    padding:10px 35px !important;
    background:rgba(0,0,0,.35) !important;
    color:#fff !important;
    font-size:20px !important;
    line-height:1.25 !important;
    font-weight:500 !important;
    letter-spacing:1px !important;
    text-transform:uppercase !important;
    text-shadow:0 1px 2px rgba(0,0,0,.45) !important;
    border-radius:0 !important;
    z-index:20 !important
}

@media(max-width:768px) {
    #home .hero-caption {
        top:var(--gid-header-offset,90px) !important;
        padding:8px 16px !important;
        font-size:16px !important;
        line-height:1.3 !important
    }
}

header {
    background-color:#075f4f !important;
    background-image:url("../../header-tech.svg");
    background-size:cover;
    background-position:center;
    background-size:100% 100%,100% 100%,cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
    box-shadow:0 3px 14px rgba(0,0,0,.20) !important;
    border-bottom:1px solid rgba(255,255,255,.16) !important;
    overflow:hidden !important
}

header::before {
    content:"" !important;
    position:absolute !important;
    inset:0 !important;
    pointer-events:none !important;
    opacity:.78 !important;
    background-image:url("../../header-tech.svg");
    background-size:cover;
    background-position:center;
    background-size:360px 140px,460px 140px !important;
    background-position:40px -8px,170px -14px !important
}

header::after {
    content:"" !important;
    position:absolute !important;
    top:-38px !important;
    left:18% !important;
    width:34% !important;
    height:180px !important;
    pointer-events:none !important;
    background:linear-gradient(90deg,rgba(255,255,255,.06),rgba(255,255,255,.13),rgba(255,255,255,.04)) !important;
    transform:skewX(-30deg) !important
}

header .container,header nav {
    position:relative !important;
    z-index:2 !important
}

nav a {
    color:#fff !important;
    text-shadow:0 1px 2px rgba(0,0,0,.35) !important
}

nav a:hover,nav a.active,.menu-active {
    color:#fff !important
}

nav a::after,.menu-active::after,nav a.active::after {
    background:var(--secondary,#ee302b) !important
}

.home-slider,.slider,.hero-slider,.owl-carousel,.owl-stage-outer,.owl-stage,.owl-item {
    height:calc(100vh - 120px)!important;
    min-height:520px!important
}

.home-slider img,.slider img,.hero-slider img,.owl-item img {
    width:100%!important;
    height:100%!important;
    object-fit:cover!important
}

.owl-dots {
    position:absolute!important;
    bottom:20px!important;
    left:0;
    right:0
}

body.home-page {
    min-height:100vh !important
}

body.home-page #home.hero {
    position:relative !important;
    display:block !important;
    width:100% !important;
    height:calc(100vh - var(--gid-header-height,120px)) !important;
    min-height:calc(100vh - var(--gid-header-height,120px)) !important;
    max-height:none !important;
    margin:0 !important;
    padding:0 !important;
    overflow:hidden !important;
    background:#000 !important
}

body.home-page #home .hero-slider {
    position:absolute !important;
    inset:0 !important;
    height:100% !important;
    width:100% !important
}

body.home-page #home .hero-slide {
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    min-height:0 !important;
    display:block !important;
    opacity:0 !important;
    transition:opacity .8s ease-in-out !important
}

body.home-page #home .hero-slide.active {
    opacity:1 !important;
    z-index:2 !important
}

body.home-page #home .hero-slide img {
    display:block !important;
    width:100% !important;
    height:100% !important;
    max-height:none !important;
    min-height:0 !important;
    object-fit:cover !important;
    object-position:center center !important;
    border-radius:0 !important
}

body.home-page #home .hero-caption {
    top:0 !important;
    bottom:auto !important
}

body.home-page #home .hero-controls {
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:28px !important;
    z-index:30 !important
}

body.home-page .site-footer {
    margin-top:0 !important
}

@media(max-width:768px) {
    body.home-page #home.hero {
        height:calc(100vh - var(--gid-header-height,96px)) !important;
        min-height:calc(100vh - var(--gid-header-height,96px)) !important
    }
    body.home-page #home .hero-controls {
        bottom:18px !important
    }
}

header {
    background:#6b7280 !important;
    background-color:#6b7280 !important;
    background-image:none !important
}

header::before,header::after {
    background:none !important;
    background-image:none !important;
    opacity:0 !important
}

nav a::after,.menu-active::after,nav a.active::after {
    background:#d1d5db !important
}

.projects {
    max-width:1600px !important;
    grid-auto-rows:130px !important;
    gap:14px !important
}

@media(max-width:1200px) {
    .projects {
        grid-auto-rows:120px !important
    }
}

@media(max-width:768px) {
    .projects {
        grid-auto-rows:190px !important
    }
}

.contact-cards {
    display:flex !important;
    flex-direction:column !important;
    gap:28px !important;
    max-width:760px !important;
    margin:0 !important
}

.contact-card {
    background:transparent !important;
    box-shadow:none !important;
    border:0 !important;
    border-radius:0 !important;
    padding:0 !important;
    transform:none !important
}

.contact-card:hover {
    transform:none !important
}

.contact-card-title {
    justify-content:flex-start !important;
    text-align:left !important;
    margin-bottom:8px !important
}

.contact-card p {
    text-align:left !important;
    margin:0 0 12px 0 !important
}

.contact-card iframe {
    width:100% !important;
    max-width:760px !important;
    height:300px !important;
    border:0 !important;
    border-radius:0 !important;
    box-shadow:none !important
}

body.home-page {
    min-height:100vh !important;
    overflow-x:hidden !important
}

body.home-page #home.hero {
    position:relative !important;
    width:100% !important;
    height:var(--gid-home-hero-height,calc(100vh - 120px)) !important;
    min-height:420px !important;
    max-height:none !important;
    padding:0 !important;
    margin:0 !important;
    overflow:hidden !important;
    background:#102333 !important;
    line-height:normal !important
}

body.home-page #home .hero-slide {
    position:absolute !important;
    inset:0 !important;
    display:block !important;
    width:100% !important;
    height:100% !important;
    min-height:0 !important;
    margin:0 !important;
    padding:0 !important;
    opacity:0 !important;
    visibility:hidden !important;
    transition:opacity .7s ease !important
}

body.home-page #home .hero-slide.active {
    opacity:1 !important;
    visibility:visible !important;
    z-index:1 !important
}

body.home-page #home .hero-slide img {
    display:block !important;
    width:100% !important;
    height:100% !important;
    min-height:0 !important;
    max-height:none !important;
    object-fit:cover !important;
    object-position:center center !important;
    margin:0 !important;
    padding:0 !important
}

body.home-page #home .hero-caption {
    line-height:1.25 !important;
    z-index:5 !important
}

body.home-page #home .hero-controls {
    position:absolute !important;
    left:50% !important;
    bottom:24px !important;
    transform:translateX(-50%) !important;
    z-index:20 !important;
    margin:0 !important
}

body.home-page .site-footer {
    margin-top:0 !important
}

@media(max-width:768px) {
    body.home-page #home.hero {
        min-height:360px !important
    }
    body.home-page #home .hero-controls {
        bottom:14px !important;
        gap:8px !important
    }
}

body.home-page {
    min-height:100vh !important;
    overflow-x:hidden !important
}

body.home-page #home.hero {
    position:relative !important;
    display:block !important;
    width:100% !important;
    height:100vh !important;
    min-height:100vh !important;
    max-height:none !important;
    margin:0 !important;
    padding:0 !important;
    overflow:hidden !important;
    background:#102333 !important
}

body.home-page #home .hero-slider {
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    margin:0 !important;
    padding:0 !important
}

body.home-page #home .hero-slide {
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    min-height:100% !important;
    margin:0 !important;
    padding:0 !important;
    display:block !important;
    opacity:0 !important;
    visibility:hidden !important;
    z-index:0 !important;
    transition:opacity .8s ease-in-out !important;
    transform:none !important
}

body.home-page #home .hero-slide.active {
    opacity:1 !important;
    visibility:visible !important;
    z-index:1 !important
}

body.home-page #home .hero-slide img {
    display:block !important;
    width:100% !important;
    height:100% !important;
    min-width:100% !important;
    min-height:100% !important;
    max-width:none !important;
    max-height:none !important;
    object-fit:cover !important;
    object-position:center center !important;
    border-radius:0 !important;
    margin:0 !important;
    padding:0 !important;
    transform:none !important
}

body.home-page #home .hero-caption {
    position:absolute !important;
    top:var(--gid-fixed-header-height,120px) !important;
    left:0 !important;
    right:0 !important;
    bottom:auto !important;
    width:100% !important;
    box-sizing:border-box !important;
    display:block !important;
    margin:0 !important;
    padding:10px 35px !important;
    background:rgba(0,0,0,.35) !important;
    color:#fff !important;
    font-size:20px !important;
    line-height:1.25 !important;
    font-weight:500 !important;
    letter-spacing:1px !important;
    text-transform:uppercase !important;
    text-shadow:0 1px 2px rgba(0,0,0,.45) !important;
    z-index:50 !important;
    opacity:1 !important;
    visibility:visible !important
}

body.home-page #home .hero-controls {
    position:absolute !important;
    left:50% !important;
    right:auto !important;
    bottom:34px !important;
    width:auto !important;
    transform:translateX(-50%) !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    gap:12px !important;
    margin:0 !important;
    padding:0 !important;
    z-index:60 !important
}

body.home-page .site-footer {
    margin-top:0 !important;
    position:relative !important;
    z-index:2 !important
}

@media(max-width:768px) {
    body.home-page #home.hero {
        height:100vh !important;
        min-height:100vh !important
    }
    body.home-page #home .hero-caption {
        top:var(--gid-fixed-header-height,96px) !important;
        padding:8px 16px !important;
        font-size:16px !important
    }
    body.home-page #home .hero-controls {
        bottom:20px !important
    }
}

header {
    background-color:#686d73 !important;
    background-image:linear-gradient(90deg,rgba(88,92,98,.96),rgba(116,121,128,.94) 48%,rgba(96,101,108,.96)),url("../../header-tech.svg") !important;
    background-size:cover,100% 220px !important;
    background-position:center center,center center !important;
    background-repeat:no-repeat,repeat-x !important;
    box-shadow:0 3px 14px rgba(0,0,0,.22) !important;
    border-bottom:1px solid rgba(255,255,255,.14) !important;
    overflow:hidden !important
}

header::before {
    content:"" !important;
    position:absolute !important;
    inset:0 !important;
    pointer-events:none !important;
    opacity:.58 !important;
    background-image:url("../../header-tech.svg") !important;
    background-size:100% 220px !important;
    background-position:center center !important;
    background-repeat:repeat-x !important
}

header::after {
    content:"" !important;
    position:absolute !important;
    top:-55px !important;
    left:18% !important;
    width:36% !important;
    height:220px !important;
    pointer-events:none !important;
    opacity:1 !important;
    background:linear-gradient(90deg,rgba(255,255,255,.04),rgba(255,255,255,.11),rgba(255,255,255,.03)) !important;
    transform:skewX(-30deg) !important
}

header .container,header nav {
    position:relative !important;
    z-index:2 !important
}

nav a {
    color:#fff !important;
    text-shadow:0 1px 2px rgba(0,0,0,.42) !important
}

nav a:hover,nav a.active,.menu-active {
    color:#fff !important
}

nav a::after,.menu-active::after,nav a.active::after {
    background:var(--secondary,#ee302b) !important
}

nav ul li:not(:last-child)::after {
    background:rgba(255,255,255,.52) !important
}

.menu-toggle {
    color:#fff !important
}

@media(max-width:768px) {
    header {
        overflow:visible !important
    }
    header nav ul,nav ul {
        background:rgba(96,101,108,.98) !important
    }
}
