/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Body */
html,
body{

    margin:0;
    padding:0;
    overflow-x:hidden;
    background:#fff;

}

.container{
    max-width:1200px;
    width:100%;
    margin:0 auto;
    padding:0 20px;
}

/* Header */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
    z-index:999;
}

/* Container */

.header .container{

    max-width:1200px;

    width:100%;

    margin:0 auto;

    padding:0 20px;

    height:85px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}
/* Logo */

.logo img{
    height:150px;
}

/* Navigation */

#navbar{
    display:flex;
    gap:30px;
}

#navbar a{
    text-decoration:none;
    color:#333;
    font-weight:bold;
}

#navbar a:hover{
    color:#e30613;
}

/* Call Button */

.call-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-width:138px;
    height:46px;
    background:#e30613;
    color:#fff;
    text-decoration:none;
    padding:0 24px;
    border-radius:999px;
    font-size:16px;
    font-weight:700;
    line-height:1;
    white-space:nowrap;
    box-shadow:0 10px 24px rgba(227,6,19,.22);
    transition:background .25s ease, transform .25s ease, box-shadow .25s ease;
}

/* FLOATING CONTACT BUTTONS */

.floating-contact{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:1000;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.floating-contact a{
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:24px;
    box-shadow:0 12px 30px rgba(0,0,0,.22);
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.floating-call{
    background:#E30613;
}

.floating-whatsapp{
    background:#25D366;
}

.floating-contact a:hover{
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 16px 34px rgba(0,0,0,.28);
}

.floating-call:hover{
    background:#C80012;
}

.floating-whatsapp:hover{
    background:#20bd5a;
}

.floating-contact a:focus-visible{
    outline:3px solid rgba(227,6,19,.25);
    outline-offset:3px;
}

@media(max-width:768px){

.floating-contact{
    right:16px;
    bottom:18px;
    gap:10px;
}

.floating-contact a{
    width:52px;
    height:52px;
    font-size:22px;
}

}

.call-btn i{
    font-size:15px;
}

.call-btn:hover{
    background:#c80012;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 14px 28px rgba(227,6,19,.30);
}

.call-btn:focus-visible{
    outline:3px solid rgba(227,6,19,.25);
    outline-offset:3px;
}

/* Mobile Menu */

#menuBtn{
    display:none;
    font-size:30px;
    cursor:pointer;
}

/* Mobile */

@media(max-width:768px){

    #navbar{

        position:fixed;
        top:80px;
        left:-100%;

        width:100%;
        height:100vh;

        background:white;

        display:flex;
        flex-direction:column;

        padding:30px;

        transition:.3s;
    }

    #navbar.active{
        left:0;
    }

    .call-btn{
        display:none;
    }

    #menuBtn{
        display:block;
    }

}
/* ================= HERO ================= */

.hero{

margin-top:80px;

padding:60px;

display:flex;

align-items:center;

justify-content:space-between;

gap:40px;

background:#f4f4f4;

}

.hero-left{

width:45%;

}

.hero-right{

width:55%;

}

.hero-right img{

width:100%;

border-radius:15px;

}

.hero-badge{

display:inline-block;

background:#e30613;

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:14px;

margin-bottom:20px;

}

.hero h1{

font-size:38px;

line-height:1.3;

margin-bottom:15px;

}

.hero p{

font-size:16px;

color:#555;

line-height:1.8;

margin-bottom:25px;

}

.hero-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:10px;

margin-bottom:25px;

}

.hero-features div{

font-weight:600;

}

.hero-features i{

color:#E30613;

margin-right:6px;

}

.enquiry-form button{

background:#E30613;

color:#fff;

width:180px;

height:48px;

border-radius:30px;

font-weight:600;

margin:20px auto 0;

display:block;

border:none;

}

.enquiry-form button:hover{

background:#C80012;

}
.form-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:12px;

margin-bottom:12px;

}

.enquiry-form input{

padding:14px;

border:1px solid #ddd;

border-radius:25px;

font-size:14px;

}

.enquiry-form button{

background:#E30613;

color:#fff;

border:none;

padding:14px 40px;

border-radius:30px;

font-size:15px;

font-weight:bold;

cursor:pointer;

display:block;

width:160px;

margin:20px auto 0;

}

.enquiry-form button:hover{

background:#C80012;

}

@media(max-width:768px){

.hero{

flex-direction:column-reverse;

padding:30px 20px;

}

.hero-left,
.hero-right{

width:100%;

}

.form-row{

grid-template-columns:1fr;

}

.hero h1{

font-size:30px;

}

.hero-features{

grid-template-columns:1fr;

}

}

/* ================= WHY CHOOSE US ================= */

.why-section{

padding:90px 0;

background:#ffffff;

}

.why-container{

max-width:1200px;

margin:auto;

display:flex;

align-items:center;

gap:70px;

padding:0 20px;

}

.why-image{

flex:1;

}

.why-image img{

width:100%;

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.why-content{

flex:1;

}

.section-badge{

display:inline-block;

background:#E30613;

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:14px;

font-weight:600;

margin-bottom:20px;

}

.why-content h2{

font-size:42px;

margin-bottom:20px;

color:#222;

line-height:1.2;

}

.why-content>p{

font-size:17px;

line-height:1.8;

color:#666;

margin-bottom:35px;

}

.why-items{

display:grid;

gap:20px;

margin-bottom:35px;

}

.why-item{

display:flex;

align-items:flex-start;

gap:18px;

padding:18px;

background:#fff;

border:1px solid #ececec;

border-radius:15px;

transition:.3s;

}

.why-item:hover{

border-color:#E30613;

transform:translateY(-5px);

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.why-icon{

width:60px;

height:60px;

background:#E30613;

color:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:28px;

flex-shrink:0;

}

.why-item h4{

margin:0 0 8px;

font-size:20px;

color:#222;

}

.why-item p{

margin:0;

color:#666;

line-height:1.6;

}

.why-btn{

display:inline-block;

background:#E30613;

color:#fff;

padding:15px 35px;

border-radius:35px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.why-btn:hover{

background:#C60012;

}

@media(max-width:991px){

.why-container{

flex-direction:column;

}

.why-content{

text-align:center;

}

.why-item{

text-align:left;

}

}

@media(max-width:768px){

.why-content h2{

font-size:32px;

}

.why-item{

padding:15px;

}

.why-icon{

width:50px;

height:50px;

font-size:22px;

}

}
/* ================= SERVICES ================= */

.services{

padding:90px 0;

background:#F8F9FC;

text-align:center;

}

.services h2{

font-size:52px;

margin:20px 0;

color:#222;

}

.services h2 span{

color:#E30613;

}

.section-subtitle{

max-width:720px;

margin:20px auto 60px;

color:#666;

font-size:18px;

line-height:1.8;

}

.services-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.service-card{

background:#fff;

padding:40px 30px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

text-align:left;

}

.service-card:hover{

transform:translateY(-8px);

border:1px solid #E30613;

}

.service-icon{

width:80px;

height:80px;

border-radius:50%;

background:#FFF2F3;

color:#E30613;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

margin-bottom:25px;

}

.service-card h3{

font-size:28px;

margin-bottom:15px;

color:#222;

}

.service-card p{

color:#666;

font-size:17px;

line-height:1.8;

}

.service-btn{

display:inline-block;

margin-top:60px;

padding:18px 40px;

background:#E30613;

color:#fff;

border-radius:40px;

text-decoration:none;

font-weight:600;

font-size:18px;

transition:.3s;

}

.service-btn:hover{

background:#C50012;

}

@media(max-width:991px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services{

padding:70px 20px;

}

.services h2{

font-size:34px;

}

.services-grid{

grid-template-columns:1fr;

}

.service-card{

text-align:center;

}

.service-icon{

margin:0 auto 20px;

}

}

/*================ TV PROBLEMS ================*/

.problems-section{

    padding:90px 0;

    background:#ffffff;

    text-align:center;

}

.problems-section h2{

    font-size:48px;

    color:#222;

    margin:20px 0;

}

.problems-section h2 span{

    color:#E30613;

}

.problems-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

    margin-top:50px;

}

.problem-item{

    display:flex;

    align-items:center;

    gap:12px;

    background:#fff;

    padding:18px 22px;

    border:1px solid #eee;

    border-radius:12px;

    font-size:17px;

    font-weight:500;

    transition:.3s;

}

.problem-item i{

    color:#E30613;

    font-size:18px;

}

.problem-item:hover{

    border-color:#E30613;

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.problem-btn{

    display:inline-block;

    margin-top:50px;

    background:#E30613;

    color:#fff;

    padding:16px 38px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.problem-btn:hover{

    background:#C40012;

}

/* Tablet */

@media(max-width:992px){

.problems-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.problems-section{

padding:70px 20px;

}

.problems-section h2{

font-size:34px;

}

.problems-grid{

grid-template-columns:1fr;

}

.problem-item{

font-size:16px;

}

}

/*================ BRANDS ================*/

.brands-section{

padding:90px 0;

background:linear-gradient(180deg,#ffffff,#f8f9fc);

text-align:center;

}

.brands-list{

display:flex;

flex-wrap:wrap;

justify-content:center;

gap:18px;

margin-top:50px;

}

.brands-list span{

padding:14px 28px;

background:#fff;

border:1px solid #ececec;

border-radius:40px;

font-weight:600;

font-size:17px;

color:#333;

transition:.3s;

cursor:default;

box-shadow:0 5px 15px rgba(0,0,0,.04);

}

.brands-list span:hover{

background:#E30613;

color:#fff;

border-color:#E30613;

transform:translateY(-4px);

}

.highlight{

background:#E30613 !important;

color:#fff !important;

border-color:#E30613 !important;

}

/*==========================================
        OUR PROCESS
==========================================*/

.process-section{

    padding:100px 0;

    background:#ffffff;

    overflow:hidden;

    text-align:center;

}

.process-section h2{

    font-size:54px;

    font-weight:700;

    margin:20px 0;

    color:#111;

}

.process-section h2 span{

    color:#E30613;

}

.process-section .section-subtitle{

    max-width:700px;

    margin:0 auto 60px;

    color:#666;

    font-size:18px;

    line-height:1.8;

}

.roadmap{

    position:relative;

    width:100%;

    height:520px;

    margin-top:60px;

}

.road-svg{

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:100%;

}

/*=========================
STEP CARD
=========================*/

.step{

    position:absolute;

    width:180px;

    text-align:center;

    transition:.35s;

    z-index:10;

}

.step:hover{

    transform:translateY(-10px);

}

.number{

    position:absolute;

    left:50%;

    top:-12px;

    transform:translateX(-50%);

    width:42px;

    height:42px;

    border-radius:50%;

    background:#E30613;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    font-size:18px;

    border:4px solid #fff;

    box-shadow:0 5px 15px rgba(0,0,0,.12);

}

.icon{

    width:100px;

    height:100px;

    margin:25px auto 18px;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    color:#E30613;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.step:hover .icon{

    background:#E30613;

    color:#fff;

    transform:scale(1.08);

}

.step h3{

    font-size:22px;

    margin-bottom:12px;

    color:#111;

}

.step p{

    color:#666;

    line-height:1.7;

    font-size:15px;

}

/*=========================
STEP POSITION
=========================*/

.step1{

    left:10px;

    top:170px;

}

.step2{

    left:220px;

    top:20px;

}

.step3{

    left:430px;

    top:280px;

}

.step4{

    left:640px;

    top:30px;

}

.step5{

    left:850px;

    top:260px;

}

.step6{

    right:0;

    top:20px;

}

/*=========================
BOTTOM INFO
=========================*/

.process-footer{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.process-footer div{

    background:#fff;

    padding:18px;

    border-radius:15px;

    border:1px solid #eee;

    font-weight:600;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.process-footer i{

    color:#E30613;

    margin-right:8px;

}

/*=========================
BUTTON
=========================*/

.process-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:45px;

    background:#E30613;

    color:#fff;

    padding:18px 42px;

    border-radius:45px;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.process-btn:hover{

    background:#c30011;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:1100px){

.roadmap{

height:auto;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

}

.road-svg{

display:none;

}

.step{

position:relative;

left:auto!important;

right:auto!important;

top:auto!important;

width:100%;

}

.process-footer{

grid-template-columns:repeat(2,1fr);

}

}

@media (max-width:768px){

.process-section{

    padding:60px 20px;

}

.process-section h2{

    font-size:34px;

}

.process-section .section-subtitle{

    font-size:16px;

    margin-bottom:40px;

}

.road-svg{

    display:none;

}

.roadmap{

    display:flex;

    flex-direction:column;

    gap:30px;

    height:auto;

}

.step{

    position:relative !important;

    left:auto !important;

    right:auto !important;

    top:auto !important;

    width:100%;

    text-align:left;

    display:flex;

    align-items:center;

    gap:20px;

    background:#fff;

    padding:20px;

    border-radius:16px;

    border:1px solid #eee;

    box-shadow:0 10px 20px rgba(0,0,0,.05);

}

.number{

    position:absolute;

    left:55px;

    top:-12px;

    transform:none;

}

.icon{

    margin:0;

    width:70px;

    height:70px;

    font-size:28px;

    flex-shrink:0;

}

.step h3{

    font-size:20px;

    margin-bottom:8px;

}

.step p{

    font-size:15px;

    margin:0;

}

.process-footer{

    grid-template-columns:1fr;

}

}
/*=========================
Moving Pin
=========================*/

#movingPin{

filter:drop-shadow(0 5px 12px rgba(227,6,19,.45));

}

#movingPin circle:first-child{

animation:pulse 1.5s infinite;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.18);

}

100%{

transform:scale(1);

}

}

/*=========================
Road Animation
=========================*/

.road-svg path:nth-child(2){

stroke-dasharray:16;

animation:roadMove 18s linear infinite;

}

@keyframes roadMove{

to{

stroke-dashoffset:-200;

}

}
/*======================================
FAQ
======================================*/

.faq-section{

padding:90px 20px;

background:#F8F9FC;

}

.faq-section .container{

max-width:1000px;

margin:auto;

}

.faq-section .section-badge{

display:block;

width:70px;

margin:0 auto 20px;

text-align:center;

}

.faq-section h2{

font-size:48px;

text-align:center;

margin-bottom:20px;

}

.faq-section h2 span{

color:#E30613;

}

.faq-section .section-subtitle{

text-align:center;

max-width:700px;

margin:0 auto 60px;

font-size:18px;

color:#666;

line-height:1.8;

}

/* Accordion */

.faq-container{

max-width:900px;

margin:auto;

}

.faq-item{

background:#fff;

border-radius:15px;

margin-bottom:18px;

box-shadow:0 10px 30px rgba(0,0,0,.06);

overflow:hidden;

transition:.3s;

}

.faq-item.active{

border:2px solid #E30613;

}

.faq-question{

width:100%;

background:#fff;

border:none;

padding:24px 28px;

display:flex;

justify-content:space-between;

align-items:center;

cursor:pointer;

font-size:20px;

font-weight:600;

}

.faq-question span{

text-align:left;

}

.faq-question i{

font-size:22px;

color:#E30613;

transition:.3s;

}

.faq-item.active i{

transform:rotate(45deg);

}

.faq-answer{

max-height:0;

overflow:hidden;

transition:max-height .4s ease;

}

.faq-answer p{

padding:0 28px 24px;

font-size:17px;

color:#666;

line-height:1.8;

}

.faq-item.active .faq-answer{

max-height:200px;

}

@media(max-width:768px){

.faq-section h2{

font-size:34px;

}

.faq-question{

font-size:17px;

padding:18px;

}

.faq-answer p{

padding:0 18px 18px;

font-size:15px;

}

}

/*==================================
FINAL CTA
==================================*/

.cta-section{
    background:#E30613;
    padding:80px 20px;
    margin:0;
}

.cta-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:50px;
    

}

.cta-content{

    color:#fff;

}

.cta-badge{

    display:inline-block;

    background:#fff;

    color:#E30613;

    padding:12px 24px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

}

.cta-content h2{

    font-size:58px;

    line-height:1.15;

    margin-bottom:25px;

}

.cta-content h2 span{

    color:#FFD54A;

}

.cta-content p{

    font-size:19px;

    line-height:1.8;

    margin-bottom:35px;

    opacity:.95;

}

.cta-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:18px;

    font-weight:500;

}

.feature i{

    color:#FFD54A;

    font-size:20px;

}

.cta-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-whatsapp{

    background:#25D366;

    color:#fff;

    text-decoration:none;

    padding:16px 32px;

    border-radius:50px;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    gap:10px;

    transition:.3s;

}

.btn-whatsapp:hover{

    transform:translateY(-4px);

}

.btn-call{

    background:#fff;

    color:#E30613;

    text-decoration:none;

    padding:16px 32px;

    border-radius:50px;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    gap:10px;

}

.btn-call:hover{

    transform:translateY(-4px);

}

.cta-rating i{

    color:#FFD54A;

}

.cta-rating{

    margin-top:30px;

    font-size:16px;

    opacity:.9;

}

.cta-image{

    display:flex;

    justify-content:center;

}

.cta-image img{

    width:100%;

    max-width:520px;

    border-radius:18px;

    box-shadow:0 25px 60px rgba(0,0,0,.30);

}

/*============================
Responsive
============================*/

@media(max-width:992px){

.cta-wrapper{

grid-template-columns:1fr;

text-align:center;

}

.cta-content{

order:2;

}

.cta-image{

order:1;

}

.cta-features{

grid-template-columns:1fr;

}

.cta-buttons{

justify-content:center;

}

.cta-content h2{

font-size:42px;

}

}
html{
    scroll-behavior:smooth;
}

section{
    scroll-margin-top:100px;
}

/*=========================
FOOTER
=========================*/

.footer{

    background:#111;

    color:#fff;

    margin-top:0px;

}

.footer .container{

    max-width:1200px;

    margin:auto;

    padding:70px 20px 40px;

}

.footer-grid{

    display:grid;

    grid-template-columns:1.8fr 1fr 1fr 1.2fr;

    gap:60px;

}

.footer-logo{

    width:180px;

    background:#fff;

    border-radius:12px;

    padding:10px;

    margin-bottom:25px;

}

.footer-about p{

    color:#bdbdbd;

    line-height:1.9;

    margin-bottom:25px;

}

.footer h3{

    font-size:24px;

    margin-bottom:25px;

}

.footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer li{

    margin-bottom:16px;

}

.footer a{

    color:#d7d7d7;

    text-decoration:none;

    transition:.3s;

}

.footer a:hover{

    color:#E30613;

    padding-left:6px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    background:#222;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

}

.footer-social a:hover{

    background:#E30613;

    color:#fff;

}

.contact-list li{

    display:flex;

    gap:12px;

    align-items:flex-start;

}

.contact-list i{

    color:#E30613;

    margin-top:4px;

}

.footer-btn{

    display:inline-block;

    margin-top:25px;

    background:#E30613;

    color:#fff;

    padding:14px 28px;

    border-radius:40px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.footer-btn:hover{

    background:#C40012;

    color:#fff !important;

    padding-left:28px;

}

.copyright{

    border-top:1px solid #2d2d2d;

    text-align:center;

    padding:22px;

    color:#999;

    font-size:15px;

}

.copyright span{

    display:block;

    margin-top:8px;

}

.copyright a{

    color:#fff;

    font-weight:700;

}

.copyright a:hover{

    color:#E30613;

    padding-left:0;

}

/*=====================
Responsive
=====================*/

@media(max-width:992px){

.footer-grid{

grid-template-columns:1fr;

gap:45px;

text-align:center;

}

.footer-logo{

margin:auto auto 20px;

}

.footer-social{

justify-content:center;

}

.contact-list li{

justify-content:center;

}

}

@media(max-width:768px){

.hero-cta{
    flex-direction:column;
}

.call-btn,
.whatsapp-btn{
    width:100%;
}

}

/* HERO ACTION BUTTONS */

.hero-actions{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    margin-top:25px;
    flex-wrap:nowrap;
    width:100%;
}

.hero-actions .submit-btn{
    width:calc((100% - 36px) / 3);
    height:55px;
    border:none;
    border-radius:35px;
    background:#e30613;
    color:#fff;
    font-weight:700;
    cursor:pointer;
    font-size:16px;
    font-family:inherit;
    margin:0;
    padding:0 12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    line-height:1;
    white-space:nowrap;
    box-sizing:border-box;
}

.hero-call,
.hero-whatsapp{
    width:calc((100% - 36px) / 3);
    height:55px;
    border-radius:40px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    text-decoration:none;
    font-weight:700;
    font-size:16px;
    transition:.3s;
    padding:0 12px;
    line-height:1;
    white-space:nowrap;
    box-sizing:border-box;
}

.hero-call{

    width:calc((100% - 36px) / 3);
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#E30613;
    color:#fff;

    border-radius:35px;

    text-decoration:none;

    font-size:16px;
    font-weight:700;
    font-family:inherit;

    padding:0 12px;

    box-sizing:border-box;
}

.hero-whatsapp{

    width:calc((100% - 36px) / 3);
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#25D366;
    color:#fff;

    border-radius:35px;

    text-decoration:none;

    font-size:16px;
    font-weight:700;
    font-family:inherit;

    padding:0 12px;

    box-sizing:border-box;
}
.hero-call:hover,
.hero-whatsapp:hover,
.hero-actions .submit-btn:hover{
    transform:translateY(-3px);
}

.hero-call:hover,
.hero-actions .submit-btn:hover{
    background:#C80012;
}

.hero-whatsapp:hover{
    background:#20bd5a;
}

@media(max-width:768px){

.hero-actions{
    flex-direction:column;
    align-items:stretch;
}

.hero-actions .submit-btn,
.hero-call,
.hero-whatsapp{

    width:100%;
    max-width:320px;
    margin:0 auto;

}

.hero-actions .submit-btn,
.hero-call{

    background:#E30613;
    color:#fff;

}

.hero-whatsapp{

    background:#25D366;
    color:#fff;

}

/* Paste here ↓↓↓ */

.hero-call i,
.hero-whatsapp i{

    font-size:18px;
    margin-right:8px;
    line-height:1;
    display:flex;
    align-items:center;

}

}

