/* ==========================================
   ALLINIT WEBSITE 2026
   Technology • Digital Media • Business Solutions
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#37A52A;
    --secondary:#F5A000;
    --dark:#111111;
    --white:#ffffff;
    --light:#f8f9fa;
    --gray:#6c757d;
    --shadow:0 10px 30px rgba(0,0,0,0.08);
    --transition:all 0.3s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--dark);
    background:var(--white);
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:70px 0;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:var(--dark);
}

.section-title p{
    color:var(--gray);
    margin-top:15px;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    border-radius:50px;
    transition:var(--transition);
    font-weight:600;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
}

.btn-primary:hover{
    background:#2e8c23;
    transform:translateY(-3px);
}

.btn-secondary{
    background:var(--secondary);
    color:#fff;
}

.btn-secondary:hover{
    background:#d88d00;
    transform:translateY(-3px);
}

/* ==========================
HEADER
========================== */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    background:#fff;
    box-shadow:0 2px 20px rgba(0,0,0,.05);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:85px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    height:55px;
}

.logo h2{
    color:var(--primary);
    font-size:28px;
    font-weight:800;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    color:var(--dark);
    font-weight:500;
    transition:var(--transition);
    position:relative;
    padding-bottom:5px;
}

.nav-links a:hover{
    color:var(--primary);
}

.nav-links a.active{
    color:var(--primary);
    font-weight:600;
    border-bottom:2px solid var(--primary);
}

.dark-toggle{

    background:none;
    border:none;
    cursor:pointer;

    font-size:22px;

    color:var(--primary);

    margin-left:20px;

    transition:var(--transition);

}

.dark-toggle:hover{

    transform:rotate(20deg);

}

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}

/* ==========================
HERO
========================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    color:#fff;
}

.hero-content{
    max-width:700px;
}

.hero h1{
    font-size:65px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:800;
}

.hero span{
    color:var(--secondary);
}

.hero p{
    font-size:20px;
    margin-bottom:35px;
}

.hero-buttons{

    display:flex;

    gap:15px;

    margin-top:30px;

    flex-wrap:wrap;

}

.hero-badges{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-top:40px;

}

.hero-badge{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    padding:12px 18px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:10px;

    border:1px solid rgba(255,255,255,.2);

}

.hero-badge i{

    color:var(--secondary);

}

/* ==========================
STATS
========================== */

.stats{
    background:var(--primary);
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.stat-box h3{
    font-size:50px;
    font-weight:800;
}

.stat-box p{
    font-size:18px;
}

/* ==========================
SERVICES
========================== */

.services{
    background:var(--light);
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.service-card:hover{
    transform:translateY(-10px);
}

.modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.modal.active{
    display: flex;
}

.modal-content{
    width: 100%;
    max-width: 560px;
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.modal-close{
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #333;
}

.modal-content h2{
    margin-bottom: 15px;
}

.modal-content p{
    margin-bottom: 24px;
    color: #555;
}

.modal-content .form-group{
    margin-bottom: 18px;
}

.modal-content input,
.modal-content textarea{
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
}

.modal-content textarea{
    resize: vertical;
    min-height: 130px;
}

.modal-content .btn{
    width: 100%;
}

.service-card i{
    font-size:50px;
    color:var(--primary);
    margin-bottom:20px;
}

.service-card .service-icon{
    width:50px;
    height:50px;
    margin-bottom:20px;
    object-fit:contain;
}

.service-card h3{
    margin-bottom:15px;
}

/* ==========================
ABOUT
========================== */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-content h2{
    font-size:45px;
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:20px;
}

.about-image img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.team-card{
    display:flex;
    align-items:center;
    gap:20px;
    padding:20px;
    background:#fff;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.team-card img{
    width:100px;
    height:100px;
    object-fit:cover;
    border-radius:20px;
    flex-shrink:0;
}

.team-card h3{
    margin-bottom:6px;
    font-size:18px;
}

.team-card p{
    margin:0;
    color:var(--gray);
}

.team-card{
    cursor:pointer;
}

.staff-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:none;
    align-items:center;
    justify-content:center;
    padding:30px;
    z-index:1000;
}

.staff-modal.active{
    display:flex;
}

.staff-modal-content{
    background:#fff;
    width:100%;
    max-width:960px;
    border-radius:24px;
    padding:30px;
    position:relative;
}

.close-modal{
    position:absolute;
    top:20px;
    right:20px;
    border:none;
    background:transparent;
    color:#222;
    font-size:34px;
    cursor:pointer;
}

.staff-modal-body{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:30px;
    align-items:start;
}

.staff-modal-image{
    width:100%;
    border-radius:20px;
    object-fit:cover;
    min-height:320px;
}

.staff-modal-name{
    font-size:32px;
    margin-bottom:10px;
}

.staff-modal-role{
    color:var(--primary);
    margin-bottom:20px;
    font-weight:700;
}

.staff-contact-list{
    list-style:none;
    padding:0;
    margin:0;
}

.staff-contact-list li{
    margin-bottom:12px;
}

.staff-contact-list a{
    color:var(--primary);
    text-decoration:none;
}

@media(max-width:768px){
    .staff-modal-body{
        grid-template-columns:1fr;
    }
}

.video-card{
    position:relative;
    width:100%;
    padding-bottom:56.25%;
    height:0;
    overflow:hidden;
    border-radius:20px;
}

.video-card iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

/* ==========================
PORTFOLIO
========================== */

.portfolio{
    background:var(--light);
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.project-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.logo-gallery-trigger{
    cursor:pointer;
    transition:transform .25s ease, box-shadow .25s ease;
}

.logo-gallery-trigger:hover,
.logo-gallery-trigger:focus-visible{
    transform:translateY(-6px);
    box-shadow:0 16px 35px rgba(0,0,0,.16);
    outline:none;
}

.portfolio-gallery-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:14px;
    color:var(--primary);
    font-weight:700;
}

.logo-gallery-modal{
    position:fixed;
    inset:0;
    z-index:10000;
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
    background:rgba(0,0,0,.75);
}

.logo-gallery-modal.active{
    display:flex;
}

.logo-gallery-content{
    position:relative;
    width:min(1100px, 100%);
    max-height:90vh;
    overflow:auto;
    padding:36px;
    border-radius:24px;
    background:#fff;
}

.logo-gallery-heading{
    padding-right:40px;
    margin-bottom:24px;
}

.logo-gallery-heading h2{
    margin-bottom:8px;
}

.logo-gallery-heading p{
    margin:0;
    color:var(--gray);
}

.logo-gallery-close{
    position:absolute;
    top:18px;
    right:18px;
    border:0;
    background:transparent;
    color:#222;
    font-size:34px;
    line-height:1;
    cursor:pointer;
}

.logo-gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap:18px;
}

.logo-gallery-grid figure{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:180px;
    margin:0;
    padding:16px;
    border:1px solid #e8e8e8;
    border-radius:14px;
    background:#fafafa;
}

.logo-gallery-grid img{
    display:block;
    max-width:100%;
    max-height:180px;
    object-fit:contain;
}

.careers-intro{
    max-width:760px;
    margin:0 auto 36px;
    text-align:center;
}

.careers-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap:24px;
}

.job-card{
    display:flex;
    flex-direction:column;
    gap:16px;
    padding:28px;
    background:#fff;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.job-card h3,
.job-card p{
    margin:0;
}

.job-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.job-meta span{
    padding:7px 10px;
    border-radius:999px;
    background:var(--light);
    color:var(--primary);
    font-size:14px;
    font-weight:700;
}

.job-card .btn{
    margin-top:auto;
    align-self:flex-start;
}

.vacancies-empty{
    grid-column:1 / -1;
    padding:38px;
    border-radius:20px;
    background:#fff;
    box-shadow:var(--shadow);
    text-align:center;
}

@media(max-width:600px){
    .logo-gallery-modal{
        padding:12px;
    }

    .logo-gallery-content{
        padding:28px 18px;
    }

    .logo-gallery-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:12px;
    }

    .logo-gallery-grid figure{
        min-height:130px;
        padding:10px;
    }
}

.project-card.media video,
.project-card.media img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.project-content{
    padding:25px;
}

.project-content h3{
    margin-bottom:10px;
}

/* ==========================
VIDEO SECTION
========================== */

.video-section{
    background:#fff;
}

.video-wrapper{
    position:relative;
    padding-bottom:56.25%;
    height:0;
    overflow:hidden;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.video-wrapper iframe,
.video-card iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:0;
}

.video-wrapper .video-fallback,
.video-card .video-fallback{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(135deg, rgba(11, 53, 95, 0.95), rgba(0, 0, 0, 0.75));
    overflow:hidden;
}

.video-wrapper .video-fallback img,
.video-card .video-fallback img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    opacity:0.75;
}

.video-wrapper .video-fallback span,
.video-card .video-fallback span{
    position:absolute;
    bottom:20px;
    left:20px;
    background:rgba(255,255,255,0.16);
    backdrop-filter:blur(8px);
    padding:10px 16px;
    border-radius:999px;
    font-weight:700;
    letter-spacing:0.03em;
    border:1px solid rgba(255,255,255,0.2);
}

/* ==========================
TESTIMONIALS
========================== */

.testimonials{
    background:var(--primary);
    color:#fff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.testimonial{
    background:rgba(255,255,255,.1);
    padding:30px;
    border-radius:20px;
}

/* ==========================
CONTACT
========================== */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    font-family:Poppins;
    background:#fff;
    color:#111;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
}

.contact-form select{
    cursor:pointer;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

.contact-info{
    background:var(--primary);
    color:#fff;
    padding:40px;
    border-radius:20px;
}

.contact-info h3{
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:15px;
}

/* ==========================
CTA
========================== */

.cta{
    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));
    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:45px;
    margin-bottom:20px;
}

.cta p{
    margin-bottom:30px;
}

/* ==========================
FOOTER
========================== */

footer{
    background:#111;
    color:#fff;
    padding:40px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    margin-bottom:40px;
}

.footer-col h3{
    margin-bottom:20px;
    color:var(--secondary);
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col a{
    color:#ccc;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
    text-align:center;
}

/* ==========================
WHATSAPP
========================== */

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25d366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:35px;
    z-index:999;
    box-shadow:0 10px 20px rgba(0,0,0,.2);
}

/* ==========================
PAGE BANNER
========================== */

.page-banner{
    padding-top:170px;
    padding-bottom:90px;
    background:
    linear-gradient(
    rgba(0,0,0,.75),
    rgba(0,0,0,.75)),
    url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
}

.page-banner h1{
    font-size:55px;
}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:992px){

    .hero h1{
        font-size:48px;
    }

    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:85px;
        left:-100%;
        width:100%;
        background:#fff;
        flex-direction:column;
        padding:30px;
        transition:.4s;
    }

    .nav-links.active{
        left:0;
    }

    .hero h1{
        font-size:38px;
    }

    .section-title h2{
        font-size:32px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .page-banner h1{
        font-size:40px;
    }
}

@media(max-width:480px){

    .hero h1{
        font-size:32px;
    }

    .btn{
        display:block;
        margin-bottom:15px;
        text-align:center;
    }
}

.hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
    z-index:-1;
}

/* ==========================================
DARK MODE
========================================== */

.dark-mode{

    background:#121212;
    color:#ffffff;

}

.dark-mode header{

    background:#1a1a1a;

}

.dark-mode .service-card{

    background:#1f1f1f;

    color:#ffffff;

}

.dark-mode .project-card{

    background:#1f1f1f;

    color:#ffffff;

}

.dark-mode .about-content h2,
.dark-mode .section-title h2{

    color:#ffffff;

}

.dark-mode .nav-links a{

    color:#ffffff;

}

.dark-mode .nav-links a.active{

    color:var(--primary);

    border-bottom-color:var(--primary);

}

.dark-mode footer{

    background:#000000;

}

.dark-mode .contact-form input,
.dark-mode .contact-form textarea{

    background:#222;

    color:#fff;

    border:1px solid #444;

}

.dark-mode .services{

    background:#181818;

}

.dark-mode .video-section{

    background:#121212;

}

/* ==========================================
CLIENT LOGOS
========================================== */

.client-slider{

    width:100%;

    padding:20px 0;

}

.client-slider .swiper-wrapper{

    display:flex;

    align-items:center;

}

.client-slider .swiper-slide{

    display:flex;

    justify-content:center;

    align-items:center;

    width:auto;

}

.client-slider img{

    max-height:90px;

    width:auto;

    opacity:.75;

    transition:var(--transition);

    filter:grayscale(100%);

}

.client-slider img:hover{

    opacity:1;

    filter:none;

    transform:scale(1.05);

}

.client-slider .swiper-slide{

    padding: 0 15px;

}

/* ==========================================
TESTIMONIAL SLIDER
========================================== */

.testimonials-slider{

    max-width:800px;

    margin:auto;

}

.swiper-slide{

    padding:20px;

}

.testimonial{

    text-align:center;

}

/* ==========================================
PORTFOLIO FILTERS
========================================== */

.portfolio-filters{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:50px;

}

.filter-btn{

    border:none;

    background:#eee;

    padding:12px 25px;

    border-radius:50px;

    cursor:pointer;

    font-weight:600;

    transition:var(--transition);

}

.filter-btn:hover{

    background:var(--primary);

    color:#fff;

}

.filter-btn.active{

    background:var(--primary);

    color:#fff;

}

/* ==========================================
CHAT ASSISTANT
========================================== */

.chat-toggle{

    position:fixed;

    left:25px;

    bottom:25px;

    background:linear-gradient(135deg,var(--primary),#1f7f21);

    color:#fff;

    padding:15px 22px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:10px;

    cursor:pointer;

    z-index:1000;

    font-weight:600;

    box-shadow:0 12px 28px rgba(0,0,0,.18);

    transition:var(--transition);

}

.chat-toggle:hover,
.chat-toggle.active{

    transform:translateY(-4px);

    box-shadow:0 16px 35px rgba(0,0,0,.22);

}

.chat-toggle i{

    font-size:18px;

}

.chat-widget{

    position:fixed;

    left:25px;

    bottom:95px;

    width:min(360px, calc(100vw - 30px));

    background:#fff;

    border-radius:24px;

    box-shadow:0 18px 45px rgba(0,0,0,.18);

    z-index:1000;

    overflow:hidden;

    transform:translateY(20px);

    opacity:0;

    pointer-events:none;

    transition:var(--transition);

}

.chat-widget.active{

    transform:translateY(0);

    opacity:1;

    pointer-events:auto;

}

.chat-header{

    padding:16px 18px;

    background:linear-gradient(135deg,var(--primary),#2e8c23);

    color:#fff;

    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:12px;

}

.chat-header h3{

    font-size:18px;

    margin-bottom:4px;

}

.chat-header p{

    font-size:12px;

    opacity:.9;

}

.chat-close{

    background:none;

    border:none;

    color:#fff;

    font-size:24px;

    cursor:pointer;

    line-height:1;

}

.chat-body{

    padding:16px;

    max-height:320px;

    overflow-y:auto;

    display:flex;

    flex-direction:column;

    gap:10px;

    background:#f8f9fa;

}

.chat-message{

    max-width:85%;

    padding:10px 12px;

    border-radius:14px;

    font-size:14px;

    line-height:1.5;

}

.chat-message.bot{

    background:#e8f5e9;

    color:#1b3d1d;

    align-self:flex-start;

}

.chat-message.user{

    background:var(--primary);

    color:#fff;

    align-self:flex-end;

}

.chat-suggestions{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

    padding:0 16px 12px;

    background:#fff;

}

.chat-chip{

    border:1px solid #d4d4d4;

    background:#f8f9fa;

    color:var(--dark);

    padding:7px 10px;

    border-radius:999px;

    font-size:12px;

    cursor:pointer;

}

.chat-form{

    display:flex;

    align-items:center;

    gap:8px;

    padding:12px 14px 14px;

    background:#fff;

    border-top:1px solid #eee;

}

.chat-form input{

    flex:1;

    border:1px solid #ddd;

    border-radius:999px;

    padding:10px 14px;

    font-size:14px;

}

.chat-form button{

    border:none;

    background:var(--primary);

    color:#fff;

    width:42px;

    height:42px;

    border-radius:50%;

    cursor:pointer;

}

.dark-mode .chat-widget,
.dark-mode .chat-body,
.dark-mode .chat-suggestions,
.dark-mode .chat-form{

    background:#1f1f1f;

    color:#fff;

}

.dark-mode .chat-chip{

    background:#2b2b2b;

    color:#fff;

    border-color:#444;

}

.dark-mode .chat-body{

    background:#181818;

}

.dark-mode .chat-message.bot{

    background:#264d29;

    color:#f1f8e9;

}

@media(max-width:480px){

    .chat-toggle{

        left:15px;

        bottom:20px;

        padding:12px 16px;

    }

    .chat-widget{

        left:15px;

        bottom:82px;

        width:calc(100vw - 30px);

    }

}

.footer-socials{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-socials a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    color:#fff;
    transition:all .3s ease;
}

.footer-socials a:hover{
    background:var(--primary);
    transform:translateY(-3px);
}

.newsletter-form{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.newsletter-form input{
    flex:1;
    padding:12px;
    border:none;
    border-radius:8px;
}

.newsletter-form button{
    border:none;
    padding:12px 18px;
    border-radius:8px;
    background:var(--secondary);
    color:#fff;
    cursor:pointer;
}
