@import url("https://fonts.googleapis.com/css?family=Comfortaa&display=swap");

@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url("https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_cJD3gfD_u50.woff2") format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}



:root{
    --primary-color: #f00025;
    --shadow-color: rgba(240, 0, 37, .5);
    --secondary-color: #111;
    --background-color: #ffffff;
    --text-color: #999;
}

/* Reset and Base Styles */
* {
    
    text-decoration: none;
                margin: 0;
            padding: 0;
            box-sizing: border-box;
    //outline: 1px solid green;
    font-family: 'Montserrat', sans-serif;
}


html {
    background: var(--secondary-color);
            height: 100svh;
            //overflow: hidden;
}
/*

        body {
            //background: white;
            height: 100%;
            //height: 100vh;
            //height: 100svh;
            overflow: auto;
            
            
        }
*/


/* -----------------------------------
1 - General Styles
------------------------------------*/
::selection {
    background-color: rgba(137, 139, 145, 0.7);
}

/* width */
::-webkit-scrollbar {
    width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
    background: black;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: white;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: white;
}


.bold{
    font-weight: 700;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 4px;
    //background: rgba(240, 0, 37, .85);
    background: var(--primary-color);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    z-index: 1000;
    //border-bottom: 1px solid #e5e5e5;
    //filter: opacity(0.85);
}

.nav-container {
    //max-width: 1200px;
    margin: 0 auto;
    padding: 0 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */   
    height: 0%;
    width: 100%;
    overflow-y: hidden;
    position: fixed; /* Stay in place */
    z-index: 99999; /* Sit on top */
    background-color:var(--primary-color);
    transition: 0.7s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 100px;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);   
    position: absolute;
    width: 100%; /* 100% width */
    text-align: center;
}

/* The navigation links inside the overlay */
.overlay-content a {
    padding: 0px 50px;
    //width: auto;
    text-decoration: none;
    line-height: normal;
    font-weight: 900;
    font-style: italic;
    color: var(--secondary-color);
    display: block; /* Display block instead of inline */
    transition: .25s ease-out; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */

.overlay-content a:hover{
    color: var(--background-color);
    //text-shadow: 0px 0px 10px var(--color3);
    //-webkit-text-stroke: 0.05em black;
    //-webkit-paint-order: stroke fill;
    //text-stroke: 0.05em black;
    //paint-order: stroke fill;
    transition: .15s ease-out;
}



.openbtn {
    z-index: 999999;
    margin: 2rem;
    font-size: 2rem;
    position: fixed;
    right: 0;
    cursor:pointer;
    color: white;
    transition: .15s ease-out;
}


/* Position the close button (top right corner) */
.overlay .closeBtn {
    margin: 1rem 2rem;
    color: var(--background-color);
    font-weight: bold;
    font-size: 2em;
    position: absolute;
    right: 0;
    cursor:pointer;
    text-decoration: none;
}

.logo {
    font-size: 0px;
    //z-index: 9999999;
}

.logo a{
    text-decoration: none;
}

.logo-box{
    width: 300px;
    position: absolute;
    //left: 60px;
    padding: 4px 8px;
    line-height: 1;
}
.logo-text {
    letter-spacing: 1px;
    font-size: 28px;
    font-weight: 900;
    color: var(--background-color);
    margin: 0 auto;
}

.logo-text-sub{
    font-size: 11px;
    font-weight: bold;
    //letter-spacing: .4px;
    color: var(--background-color);
    padding: 0 2px;
    text-transform: uppercase;
}

.logo-symbol {
    //font-size: 16px;
    //color: var(--primary-color);
    width: 36px;
    margin-left: 8px;
}
.logo svg{
    fill: white;
    height: 48px;
}
.st0{
    fill: var(--background-color);
}
.st1{
    fill: var(--primary-color);
}

.nav-cta {
    color: var(--primary-color);
    background: var(--background-color);
    padding: 12px 24px;
    border-radius: 80px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.5s ease;
}

.nav-cta:hover {
    color: var(--background-color);
    background: var(--secondary-color);
    //box-shadow: 0px 7px 30px rgba(0, 0, 0, .25);
    //transform: translateY(-1px);
}



/* Hero Section */
.hero {
    //background-image: url("/images/logan-voss-yKd8zj03L8U-unsplash.jpg");
    background: radial-gradient(#000000 30%, rgba(0,0,0,0) 70%);
    //padding: 160px 0 120px;
    //background-color: black;
    position: relative;
    overflow: hidden;
    height: 100svh;
    display: flex;
    text-align: center;
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-headline {
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
    color: var(--background-color);
    text-transform: uppercase;
}

.hero-image{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    opacity: .1;
    mix-blend-mode: overlay;
    filter: grayscale(100%) contrast(1.2) brightness(1.2);
}

.hero-image img, .hero-image video{
    object-fit: cover;
    object-position: center;

    width: 100%;
    height: 100%;
}

.volt-box{
    //position: relative;
    display: inline;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0px 0px 24px var(--primary-color);
    //padding: 10px;
    //border: solid red;
}

.volt {
    position: absolute;
    color:transparent;
    background-image: url("/images/volt5s.gif");
    //background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    mix-blend-mode: screen;    
    //background-clip: content-box;
    //text-shadow: 0px 0px 24px var(--primary-color);
}



.hero-subheadline {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 40px;
    //max-width: 90%;
    //border: solid green;
}

.hero .hero-subheadline br{
    display: none;
    
}
.hero .hero-headline span br{
    display: none;
}
.benefits .hero-subheadline br{
    display: block;
}
.work .hero-subheadline br{
    display: none;
}
.inner-work .hero-subheadline br{
    display: block;
}

.hero-buttons {
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hero-bullets span{
    font-size: 20px;
    line-height: 1.5;
    color: #666;
    margin: 1rem;
    //max-width: 90%;
}

hr{
    width: 5%;
    height: 1px;
    background-color: var(--primary-color);
    border: none;
    margin: 20px auto;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    //padding: 0 15px 0 0;
    padding: 16px 64px;
    border-radius: 120px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    //border: 2px solid var(--secondary-color);
    //margin-right: 10px;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: var(--primary-color);
    //border: 2px solid var(--primary-color);
    //color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--shadow-color);
}

.btn-secondary {
    display: inline-block;
    background: var(--background-color);
    color: var(--secondary-color);
    //padding: 0 15px 0 0;
    padding: 16px 64px;
    border-radius: 120px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    //border: 2px solid var(--secondary-color);
    text-transform: uppercase;
}

.btn-secondary:hover {
    //background: var(--primary-color);
    //border: 2px solid var(--primary-color);
    //color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, .25);
}

.icon {
    color: var(--primary-color);
    border-radius: 50%;
    padding: .5rem;
    margin: .5rem;
    //text-shadow: 0px 10px 30px rgba(240, 0, 37, .25);
}

footer .fas{
    color: var(--primary-color);
    padding: .5rem;
}


.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.volt-symbol {
    font-size: 72px;
    //color: var(--primary-color);
    //transform: rotate(-15deg);
    user-select: none;
}

/* Section Styles */
.section {
    padding: 120px 0;
}


.section:nth-child(even) {
    //background-color: #fafafa;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    //margin-bottom: 32px;
    text-align: center;
    //color: var(--secondary-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
}

.section-description {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 1rem auto 3rem;
}

.section-title br{
    display: none;
}


/* What We Do Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.service-item {
    background: white;
    padding: 10px 5px;
    border-radius: 160px;
    //border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.service-item:hover {
    //border-color: var(--primary-color);
    //transform: translateY(-4px);
    //box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Why It Works Section */
.benefits .container {
    max-width: 1200px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    //padding: 32px 24px;
    //margin-bottom: 64px;
}

.benefit-icon {
    font-size: 68px;
    text-shadow: 0px 0px 48px var(--primary-color);
    //text-shadow: 0px 1px 0px var(--background-color);
    //margin-bottom: 24px;
}


.benefit-item h3 {
    font-size: 18px;
    font-weight: 600;
    
    //color: #1a1a1a;
    line-height: 2;
    
}

/* Who We Work With Section */
.clients-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.client-type {
    //background: white;
    padding: 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    display: flex;
    //text-align: center;
    //border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    margin: 0 auto;
    align-items: center;
}

.client-type:hover {
    //border-color: var(--primary-color);
    //transform: translateY(-2px);
}

.client-type img{
    width: 100%;
    max-width: 300px;
    margin-right: 2rem;
    border-radius: 100%;
}

.what-we-do{
    text-align: center;
    //background: whitesmoke;
    color:white;
}
/* Work Section */

.work {
    padding: 120px 0;
    color: whitesmoke;
    //background: #000;
    //background: var(--secondary-color);
    text-align: center;
}

.work .container {
    max-width: 1600px;
    margin: 0 auto;
}
.list{
    column-count: 3;
    font-size: 0;
    //padding: 10px;
    //margin: 0 auto;
}
.list video, .list img{
    width: 100%;
}


/* Style for the project container */
.project-item {
  position: relative;
  overflow: hidden;
  margin: 0 10px 10px; /* Add space between projects */
  padding: 0; /* Remove padding if not needed */
  border-radius: 24px;
  box-shadow: 0 25px 30px rgba(0, 0, 0, 0.1);
}

/* Style for the overlay */
.project-item .overlay-work {
    position: absolute;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .85));
    //height: 100%;
    bottom: 0; /* Start the overlay off-screen */
    left: 0;
    width: 100%;
    color: var(--background-color); /* Text color */
    //background: rgba(0, 0, 0, .5); /* Background color */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    pointer-events: none; /* Disable pointer events when the overlay is hidden */
    //display: none;
}
/*
.project-item .overlay .txt{
    //background: var(--secondary-color); 
    //background: rgba(0, 0, 0, .85); 
    top: 0;
    left: 0;
    border-radius: 0 10px 10px 0;
    //width: 100%;
    //height: 90px;
    //padding: 10px;

}*/



/* Title and description styles */
.project-item .overlay-work h3 {
  font-size: 1.5rem;
  margin-bottom: 0px;
  text-transform: uppercase;
  text-shadow: 0px 0px 50px black;
}

.project-item .overlay-work p {
  font-size: 1rem;
  margin-bottom: 0px;
  text-shadow: 0px 0px 50px black;
}


/* Arrow style */
.project-item .overlay-work .arrow {
    font-size: 1rem;
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px; /* Set the width */
    height: 40px; /* Set the height to match the width */
    background: var(--secondary-color); /* Background color */
    color: var(--background-color); /* Text color */
    border-radius: 50%; /* Make it perfectly round */
    display: flex; /* Center the arrow inside */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

/* Show overlay on hover */
.project-item:hover .overlay-work .arrow {
    background: var(--primary-color); /* Background color */
    box-shadow: 0px 0px 24px var(--primary-color);
    transition: all 0.3s ease; /* Optional: Add hover animation */
}


/* How We Work Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    background: #fff;
    border: 3px solid var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.process-note {
    text-align: center;
    font-size: 18px;
    color: #666;
    font-style: italic;
}

/* Services Section */
.pricing{
    margin: 0 auto;
}

.pricing .container {
    //max-width: 1350px;
    margin: 0 auto;
    //padding: 0 20px;
    text-align: center;
}
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-auto-rows: minmax(100px, auto);
    gap: 20px; /* Space between items */
    justify-items: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    text-align: center; /* Center text inside items */
}

.services-list li {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    text-align: center; /* Center text */
    padding: 20px;
    border-radius: 25px;
    width: 100%;
    background-color: rgba(127, 127, 127, .15);
    border: solid 2px rgba(127, 127, 127, .25);
    
}



.services-list h3 {
    margin: 0 auto;
    //color: var(--text-light);
    font-weight: 900;
}

.services-list p {
    //color: var(--text-light);
}

/* Packages */
.packages {
    background-color: var(--light-color);
    //padding: 20px;
}

.packages h3 {
    text-align: center;
    text-transform: uppercase;
    //margin: 0;
}

.packages-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 0 auto;
}

.package {
    //max-width: 350px;
    width: 100%;
    background-color:white;
    padding: 25px 0px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    //border: solid 2px rgba(127, 127, 127, .25);
    box-shadow: 0 25px 30px rgba(0, 0, 0, 0.1);
}

.package:hover {
    //transform: translateY(-10px);
    //box-shadow: 0 25px 30px rgba(0, 0, 0, 0.1);
}

.package.featured {
    //border: 2px solid var(--primary-color);
    //transform: scale(1.05);
}

.package.featured:hover {
    //transform: scale(1.05) translateY(-10px);
}

.package h4 {
    //margin-bottom: 20px;
}

.package ul {
    margin-bottom: 30px;
    //padding-left: 20px;

}

.package ul li {
    margin-bottom: 10px;
    position: relative;
    //padding-left: 20px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    //color: var(--secondary-color);
    margin-bottom: 30px;
}

.package .price span {
    font-size: 1.2rem;
}

.dot {
    font-size: 5.5rem;
    max-width: 150px;
    max-height: 150px;
    aspect-ratio: 1 / 1; /* Maintain a 1:1 ratio for width and height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    //background-color: var(--secondary-color);
    //border-radius: 100%;
    margin: 0 auto; 
    text-align: center;
    transition: all 0.3s ease;
}


.packages-note a{
text-decoration: underline;
color: var(--primary-color);
}

.packages-note br{
    display: none;
}

/* CTA Section */
.cta-section {
    background: var(--secondary-color);
    color: var(--background-color);
    padding: 120px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    //height: 50vh;
}

.cta-headline {
    position: relative;
    font-size: clamp(48px, 5vw, 80px);
    line-height: 1;
    font-weight: 900;
    //margin-bottom: 24px;
    //color: white;
    text-transform: uppercase;
}


.cta-description {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}


.cta-headline span br{
    display: none;
}
.cta-description br{
    display: none;
}

.cta-section .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 1rem 2rem;
}

.cta-section .btn-primary:hover {
    background: var(--primary-color);
    box-shadow: 0 8px 32px var(--shadow-color);
}



    /* Footer Section */
    footer {
        text-align: left;
      color: white;
        background: var(--secondary-color);
        padding: 80px 0 30px;
      }

      footer p,footer li{
        color: white;
      }
footer .logo-symbol{
    margin: 0 4px 0 0;
}
      
      footer .logo-text{
        color: var(--primary-color);
      }

      footer .logo svg{
        //background-color: white;
      }

      footer .container {
        //max-width: 1200px;
      }


  
      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 60px;
        text-align: left;
        
      }

      footer a {
        
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
      } 
      footer a:hover {
        color: var(--primary-color);
        text-decoration: none;
      } 

      .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 25px;
        position: relative;
      }
      
      .footer-column ul {
        list-style: none;
        padding: 0;
      }
      
      .footer-column ul li {
        //margin-bottom: 15px;
      }
      
      .footer-column ul li a {
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
      }
      
      .footer-column ul li a:hover {
        color: var(--primary-color);
      }

      .info{
        border-left: solid var(--background-color) 1px;
        padding-left: 30px;
        height: 90%;
      }

      .info ul li {
        margin-bottom: 15px;
      }

      .s2 h3{
        color: transparent;
      }

      .s2{
        margin-bottom: 15px;
      }
      
      .social-icons {
        display: flex;
        gap: 15px;
        //margin-top: 20px;
        margin-bottom: 20px;
        font-size: 1.2rem;
      }
      
      .social-icons a {
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        color: var(--background-color);
        //background: var(--background-color);
        text-decoration: none;
        transition: all 0.3s ease;
      }
      
      .social-icons a:hover {
        color: var(--background-color);
        background: var(--primary-color);
        box-shadow: 0 8px 32px var(--shadow-color);
      }
      
      .scroll-indicator {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        //color: var(--color4);
        font-size: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 999;
      }
      
      .scroll-indicator i {
        margin-top: 10px;
        animation: bounce 2s infinite;
      }
      
      @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
          transform: translateY(0);
        }
        40% {
          transform: translateY(-10px);
        }
        60% {
          transform: translateY(-5px);
        }
      }

      /* Footer */
footer {
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
  color: white;
}

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

    /*html {
            height: 100svh;
            overflow: hidden;
            width: 100%;
            //overscroll-behavior: none;
            
}

        body {
            width: 100%;
            //background: #222;
            //height: 100%;
            overflow-y: auto;
            overflow-x: hidden;
            
            
        }*/

    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero {
        height: auto;
        padding: 120px 0 80px;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .hero .hero-headline span br{
    display: block;
}

.hero-subheadline {
    font-size: 16px;
    padding: 1rem;
    //border: solid green;
}

.hero .hero-subheadline br{
    display: none;
}

.benefits .hero-subheadline br{
    display: none;
}
.work .hero-subheadline br{
    display: block;
}
.inner-work .hero-subheadline br{
    display: none;
}

    .nav .logo-box{
        //display: none;
    }

    .openbtn {
    margin: 1rem;
}

    .overlay .closeBtn {
        margin: 1rem;
        font-weight: bold;
        font-size: 2em;
        position: absolute;
        right: 0;
        cursor:pointer;
        text-decoration: none;

    }


    .overlay-content a {
        font-size: 50px

    }
    
    .volt-symbol {
        font-size: 120px;
    }
    
    .section {
        padding: 80px 0;
        
    }

    .section-title br{
    display: block;
}

  
    .nav-container {
        height: 70px;
        padding: 0 6px;
    }
    
    .container {
        padding: 0 38px;
    }

    .work .container {
        padding: 0;
    }
    

    .list{
    column-count: 1;
    font-size: 0;
    padding-left:2px;
    //margin: 0 auto;
}
.project-item {
  margin: 10px; /* Add space between projects */
  padding: 0; /* Remove padding if not needed */
  border-radius: 10px;
}


.packages-note br{
    display: block;
}

.cta-headline span br{
    display: block;
}

.cta-description br{
    display: block;
}

    .footer .container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
    }

    .s2 h3{
        display: none;
    }

    .info{
        border-left: solid var(--background-color) 0px;
        padding-left: 0px;
        height: 85%;
      }

      .info ul li {
        margin-bottom: 0px;
      }
    
    .services-grid,
    .benefits-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .clients-list {
        grid-template-columns: 1fr;
    }
}