/*==================================================
    ROOT
==================================================*/

:root{

    --primary:#b22222;
    --primary-dark:#8b1a1a;
    --secondary:#f8f9fa;
    --dark:#222222;
    --light:#ffffff;
    --gray:#6c757d;
    --border:#e9ecef;
    --success:#198754;

    --radius:18px;

    --shadow-sm:0 5px 15px rgba(0,0,0,.08);
    --shadow:0 15px 40px rgba(0,0,0,.12);
    --shadow-lg:0 25px 60px rgba(0,0,0,.18);

    --transition:.35s ease;
}

/*==================================================
    RESET
==================================================*/

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

html{

    scroll-behavior:smooth;
    scroll-padding-top:90px;

}

body{

    font-family:'Poppins',sans-serif;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;
    line-height:1.7;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    margin:0;
    padding:0;
    list-style:none;

}

button{

    transition:var(--transition);

}

/*==================================================
    TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    font-weight:700;
    color:var(--dark);

}

h1{

    font-size:58px;
    line-height:1.2;

}

h2{

    font-size:42px;

}

h3{

    font-size:30px;

}

p{

    color:var(--gray);
    margin-bottom:15px;

}

.section-padding{

    padding:100px 0;

}

/*==================================================
    SECTION HEADER
==================================================*/

.section-header{

    max-width:760px;
    margin:auto;

}

.section-header span{

    display:inline-block;

    color:var(--primary);

    background:#ffe8e8;

    padding:8px 20px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.section-header h2{

    margin-bottom:20px;

}

.section-header p{

    font-size:16px;

}

/*==================================================
    ABOUT TITLE
==================================================*/

.section-title span{

    display:inline-block;

    background:#ffe8e8;

    color:var(--primary);

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:15px;

    font-size:14px;

    font-weight:600;

}

.section-title h2{

    margin-bottom:25px;

}

/*==================================================
    BUTTON
==================================================*/

.btn{

    border-radius:50px;

    padding:14px 34px;

    font-weight:600;

    transition:var(--transition);

}

.btn-danger{

    background:var(--primary);

    border-color:var(--primary);

}

.btn-danger:hover{

    background:var(--primary-dark);

    border-color:var(--primary-dark);

    transform:translateY(-3px);

    box-shadow:var(--shadow);

}

.btn-outline-light{

    border:2px solid #fff;

}

.btn-outline-light:hover{

    color:var(--dark);

    background:#fff;

}

/*==================================================
    CARD
==================================================*/

.service-box,
.feature-box,
.stat-box,
.testimonial-box,
.contact-form,
.contact-info{

    background:#fff;

    border-radius:var(--radius);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.service-box:hover,
.feature-box:hover,
.stat-box:hover,
.testimonial-box:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

/*==================================================
    ICON
==================================================*/

.icon,
.feature-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    background:#ffeaea;

    color:var(--primary);

    font-size:34px;

    transition:var(--transition);

}

.service-box:hover .icon,
.feature-box:hover .feature-icon{

    transform:rotate(10deg) scale(1.1);

    background:var(--primary);

    color:#fff;

}

/*==================================================
    IMAGE
==================================================*/

.about-image img,
.gallery img{

    border-radius:18px;

    transition:var(--transition);

}

.gallery-item{

    display:block;

    overflow:hidden;

    border-radius:18px;

}

.gallery-item img:hover{

    transform:scale(1.08);

}

/*==================================================
    BACKGROUND
==================================================*/

.bg-light{

    background:#f8f9fa !important;

}

/*==================================================
    DIVIDER
==================================================*/

hr{

    border-color:#ececec;

}

/*==================================================
    SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}

/*==================================================
    SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*==================================================
    ANIMATION
==================================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.08);

    }

    100%{

        transform:scale(1);

    }

}

.float{

    animation:float 3s ease-in-out infinite;

}

.pulse{

    animation:pulse 2s infinite;

}
/*==================================================
                NAVBAR
==================================================*/

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding:18px 0;
    transition:.4s ease;
    background:transparent;
}

.navbar.scrolled{
    background:#ffffff;
    padding:12px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.navbar .container{
    display:flex;
    align-items:center;
}

.navbar-brand{

    font-size:30px;
    font-weight:800;
    color:#ffffff;
    letter-spacing:.5px;
    transition:.3s;

}

.navbar-brand i{

    color:var(--primary);
    margin-right:8px;

}

.navbar.scrolled .navbar-brand{

    color:var(--dark);

}

.navbar-nav{

    align-items:center;

}

.navbar-nav .nav-item{

    margin-left:10px;

}

.navbar-nav .nav-link{

    position:relative;
    color:#ffffff;
    font-weight:500;
    font-size:15px;
    padding:12px 15px;
    transition:.3s;

}

.navbar.scrolled .nav-link{

    color:var(--dark);

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

.navbar-nav .nav-link.active{

    color:var(--primary);

}

.navbar-nav .nav-link::after{

    content:"";
    position:absolute;
    left:15px;
    bottom:5px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;

}

.navbar-nav .nav-link:hover::after{

    width:55%;

}

.navbar-nav .nav-link.active::after{

    width:55%;

}

.navbar .btn-danger{

    padding:12px 24px;
    font-size:15px;
    border-radius:50px;
    box-shadow:0 10px 25px rgba(178,34,34,.25);

}

.navbar .btn-danger:hover{

    transform:translateY(-3px);

}

/*=====================================
        TOGGLER
=====================================*/

.navbar-toggler{

    border:none;
    outline:none;
    box-shadow:none !important;

}

.navbar-toggler:focus{

    box-shadow:none;

}

.navbar-toggler-icon{

    background-image:none;
    position:relative;
    width:28px;
    height:2px;
    background:#ffffff;
    display:block;

}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after{

    content:"";
    position:absolute;
    left:0;
    width:28px;
    height:2px;
    background:#ffffff;
    transition:.3s;

}

.navbar-toggler-icon::before{

    top:-8px;

}

.navbar-toggler-icon::after{

    top:8px;

}

.navbar.scrolled .navbar-toggler-icon,
.navbar.scrolled .navbar-toggler-icon::before,
.navbar.scrolled .navbar-toggler-icon::after{

    background:var(--dark);

}

/*=====================================
        MOBILE MENU
=====================================*/

@media (max-width:991px){

.navbar{

    background:#ffffff;
    padding:12px 0;

}

.navbar-brand{

    color:var(--dark);

}

.navbar-nav{

    margin-top:20px;
    padding:15px 0;

}

.navbar-nav .nav-item{

    margin:0;

}

.navbar-nav .nav-link{

    color:var(--dark);
    padding:14px 0;

}

.navbar-nav .nav-link::after{

    display:none;

}

.navbar .btn-danger{

    margin-top:15px;
    width:100%;

}

.navbar-collapse{

    background:#ffffff;
    padding:20px;
    border-radius:15px;
    margin-top:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

}

/*=====================================
        NAVBAR ANIMATION
=====================================*/

.navbar{

    animation:navbarFade .8s ease;

}

@keyframes navbarFade{

    from{

        opacity:0;
        transform:translateY(-40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}
/*==================================================
                    HERO
==================================================*/

.hero{

    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;

    background:
    linear-gradient(135deg,
    rgba(178,34,34,.95),
    rgba(120,15,15,.95));

    color:#ffffff;

}

.hero::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-220px;
    right:-180px;

    filter:blur(10px);

}

.hero::after{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-120px;
    bottom:-120px;

}

.hero .container{

    position:relative;
    z-index:2;

}

.hero .badge{

    background:rgba(255,255,255,.18)!important;

    color:#fff;

    backdrop-filter:blur(10px);

    font-size:15px;

    font-weight:600;

    letter-spacing:.5px;

}

.hero h1{

    font-size:64px;
    font-weight:800;
    line-height:1.2;
    margin:20px 0;

}

.hero h1 span{

    color:#FFD166;

}

.hero p{

    color:#f3f3f3;
    font-size:18px;
    max-width:560px;
    margin-bottom:35px;

}

.hero-btn{

    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;

}

.hero-btn .btn{

    min-width:180px;
    padding:15px 28px;
    font-weight:600;
    border-radius:50px;

}

.hero-btn .btn-danger{

    box-shadow:

    0 15px 35px rgba(0,0,0,.20);

}

.hero-btn .btn-danger:hover{

    transform:translateY(-5px);

}

.hero-btn .btn-outline-light{

    border:2px solid rgba(255,255,255,.6);

    color:#fff;

}

.hero-btn .btn-outline-light:hover{

    background:#fff;

    color:var(--primary);

}

/*===================================
        HERO IMAGE
===================================*/

.hero-img{

    max-width:560px;

    margin:auto;

    position:relative;

    z-index:3;

    animation:heroFloat 5s ease-in-out infinite;

    filter:

    drop-shadow(0 35px 50px rgba(0,0,0,.25));

}

.hero-img::before{

    content:"";

    position:absolute;

}

/* Glow */

.hero .col-lg-6:last-child{

    position:relative;

}

.hero .col-lg-6:last-child::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    background:rgba(255,255,255,.18);

    border-radius:50%;

    filter:blur(90px);

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    z-index:-1;

}

/*===================================
        WAVE
===================================*/

.hero-wave{

    position:absolute;

    left:0;

    bottom:-5px;

    width:100%;

    line-height:0;

}

.hero-wave svg{

    width:100%;
    height:auto;

}

/*===================================
        SCROLL INDICATOR
===================================*/

.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    animation:bounce 2s infinite;

    font-size:30px;

}

/*===================================
        HERO ANIMATION
===================================*/

@keyframes heroFloat{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translate(-50%,0);

    }

    40%{

        transform:translate(-50%,-10px);

    }

    60%{

        transform:translate(-50%,-5px);

    }

}

/*===================================
        HERO DECORATION
===================================*/

.hero-shape{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    animation:floatShape 8s linear infinite;

}

.hero-shape.one{

    width:40px;
    height:40px;

    top:18%;

    left:8%;

}

.hero-shape.two{

    width:70px;
    height:70px;

    right:12%;

    top:28%;

}

.hero-shape.three{

    width:25px;
    height:25px;

    left:30%;

    bottom:20%;

}

@keyframes floatShape{

    0%{

        transform:translateY(0) rotate(0deg);

    }

    50%{

        transform:translateY(-20px) rotate(180deg);

    }

    100%{

        transform:translateY(0) rotate(360deg);

    }

}
/*==================================================
                HERO COUNTER
==================================================*/

.counter{

    position:relative;

    background:#ffffff;

    margin-top:-70px;

    z-index:20;

}

.counter .container{

    background:#ffffff;

    border-radius:25px;

    padding:40px 20px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.counter .col-md-3{

    position:relative;

}

.counter .col-md-3:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;

    top:50%;

    transform:translateY(-50%);

    width:1px;

    height:60px;

    background:#ececec;

}

.counter h2{

    font-size:42px;

    font-weight:800;

    color:var(--primary);

    margin-bottom:10px;

}

.counter p{

    margin:0;

    color:#666;

    font-weight:500;

    font-size:15px;

}

/*=====================================
        HERO IMAGE
=====================================*/

.hero-img{

    width:100%;

    max-width:560px;

}

.hero .col-lg-6:last-child{

    text-align:center;

}

/*=====================================
        HERO CONTENT
=====================================*/

.hero h1{

    max-width:650px;

}

.hero p{

    max-width:540px;

}

.hero-btn{

    margin-top:30px;

}

/*=====================================
        LARGE DESKTOP
=====================================*/

@media (min-width:1400px){

.hero{

    min-height:980px;

}

.hero h1{

    font-size:72px;

}

.hero-img{

    max-width:640px;

}

}

/*=====================================
        LAPTOP
=====================================*/

@media (max-width:1199px){

.hero h1{

    font-size:54px;

}

.hero p{

    font-size:17px;

}

.hero-img{

    max-width:500px;

}

}

/*=====================================
        TABLET
=====================================*/

@media (max-width:991px){

.hero{

    text-align:center;

    padding-top:130px;

    padding-bottom:80px;

    min-height:auto;

}

.hero h1{

    font-size:44px;

}

.hero p{

    margin:auto;

    margin-bottom:35px;

}

.hero-btn{

    justify-content:center;

}

.hero-img{

    margin-top:50px;

    max-width:430px;

}

.counter{

    margin-top:0;

    padding-top:40px;

}

.counter .container{

    border-radius:18px;

}

.counter .col-md-3{

    margin-bottom:30px;

}

.counter .col-md-3::after{

    display:none;

}

}

/*=====================================
        MOBILE
=====================================*/

@media (max-width:767px){

.hero{

    padding-top:120px;

}

.hero h1{

    font-size:34px;

    line-height:1.3;

}

.hero p{

    font-size:16px;

}

.hero-btn{

    flex-direction:column;

}

.hero-btn .btn{

    width:100%;

}

.hero-img{

    max-width:320px;

}

.hero-wave svg{

    height:90px;

}

.counter .container{

    padding:30px 15px;

}

.counter h2{

    font-size:34px;

}

}

/*=====================================
        SMALL MOBILE
=====================================*/

@media (max-width:480px){

.hero h1{

    font-size:28px;

}

.hero .badge{

    font-size:13px;

}

.hero p{

    font-size:15px;

}

.hero-img{

    max-width:270px;

}

.counter h2{

    font-size:30px;

}

.counter p{

    font-size:14px;

}

}

/*=====================================
        EXTRA EFFECT
=====================================*/

.hero-btn .btn{

    transition:.35s ease;

}

.hero-btn .btn:hover{

    transform:translateY(-4px);

}

.hero-img:hover{

    transform:scale(1.03);

    transition:.4s ease;

}
/*==================================================
                    ABOUT
==================================================*/

.about{

    position:relative;
    overflow:hidden;
    background:#fff;

}

.about::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(178,34,34,.05);

    top:-120px;
    left:-120px;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:.4s ease;

}

.about-image:hover img{

    transform:scale(1.03);

}

.about-image::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border:8px solid var(--primary);

    right:-30px;
    bottom:-30px;

    border-radius:25px;

    z-index:-1;

    opacity:.15;

}

.about .section-title h2{

    font-size:42px;
    margin-bottom:20px;

}

.about p{

    color:#666;
    line-height:1.9;

}

.about-item{

    display:flex;
    align-items:center;
    gap:15px;

    padding:15px 18px;

    border-radius:15px;

    background:#fff;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    transition:.3s;

}

.about-item:hover{

    transform:translateX(8px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.about-item i{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#ffe8e8;

    color:var(--primary);

    font-size:18px;

}

.about-item span{

    font-weight:600;
    color:#333;

}

/*==================================================
                SERVICES
==================================================*/

.services{

    position:relative;
    background:#f8f9fa;

}

.services::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:120px;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,1),
        rgba(248,249,250,0)
    );

}

.service-box{

    position:relative;

    padding:40px 30px;

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    text-align:center;

    border:1px solid transparent;

    transition:.35s;

}

.service-box::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:5px;
    height:0;

    background:var(--primary);

    transition:.35s;

}

.service-box:hover::before{

    height:100%;

}

.service-box:hover{

    transform:translateY(-12px);

    border-color:#f1d4d4;

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.service-box .icon{

    width:85px;
    height:85px;

    border-radius:50%;

    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#ffeaea;

    color:var(--primary);

    font-size:36px;

    transition:.35s;

}

.service-box:hover .icon{

    background:var(--primary);

    color:#fff;

    transform:rotate(12deg) scale(1.1);

}

.service-box h4{

    margin-bottom:15px;

    font-size:24px;

    font-weight:700;

}

.service-box p{

    color:#666;

    font-size:15px;

    margin-bottom:0;

    line-height:1.8;

}

/*====================================
            SERVICE NUMBER
====================================*/

.service-box::after{

    content:"";

    position:absolute;

    right:-25px;
    bottom:-25px;

    width:120px;
    height:120px;

    border-radius:50%;

    background:rgba(178,34,34,.05);

    transition:.4s;

}

.service-box:hover::after{

    transform:scale(1.3);

}

/*====================================
            GRID
====================================*/

.services .row{

    row-gap:30px;

}

/*====================================
            RESPONSIVE
====================================*/

@media(max-width:991px){

.about{

    text-align:center;

}

.about-image{

    margin-bottom:40px;

}

.about-image::after{

    display:none;

}

.about .section-title h2{

    font-size:34px;

}

.about-item{

    justify-content:center;

}

}

@media(max-width:767px){

.service-box{

    padding:30px 22px;

}

.service-box h4{

    font-size:22px;

}

.about .section-title h2{

    font-size:30px;

}

.about-item{

    padding:12px 15px;

}

}
/*==================================================
                WHY CHOOSE US
==================================================*/

.why-us{

    position:relative;
    background:#ffffff;
    overflow:hidden;

}

.why-us::before{

    content:"";
    position:absolute;

    width:450px;
    height:450px;

    background:rgba(178,34,34,.04);

    border-radius:50%;

    right:-180px;
    top:-180px;

}

.feature-box{

    position:relative;

    background:#fff;

    padding:35px 30px;

    border-radius:22px;

    text-align:center;

    overflow:hidden;

    transition:.35s;

    border:1px solid #f2f2f2;

    height:100%;

}

.feature-box:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

    border-color:#f4d2d2;

}

.feature-box::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:var(--primary);

    transform:scaleX(0);

    transition:.35s;

}

.feature-box:hover::before{

    transform:scaleX(1);

}

.feature-icon{

    width:85px;
    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    background:#ffeaea;

    color:var(--primary);

    transition:.35s;

}

.feature-box:hover .feature-icon{

    background:var(--primary);

    color:#fff;

    transform:rotate(10deg) scale(1.08);

}

.feature-box h4{

    font-size:24px;

    margin-bottom:15px;

}

.feature-box p{

    margin-bottom:0;

    color:#666;

}

/*==================================================
                PROCESS
==================================================*/

.process{

    background:#f8f9fa;

    position:relative;

}

.process-item{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:30px 15px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    height:100%;

}

.process-item:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.process-item .number{

    width:42px;
    height:42px;

    margin:0 auto 18px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;

}

.process-item i{

    font-size:38px;

    color:var(--primary);

    margin-bottom:18px;

    display:block;

}

.process-item h6{

    font-size:17px;

    margin-bottom:0;

    font-weight:600;

}

/* Garis Penghubung */

@media(min-width:992px){

.process .col-lg-2{

    position:relative;

}

.process .col-lg-2:not(:last-child)::after{

    content:"";

    position:absolute;

    top:52px;

    right:-12px;

    width:24px;

    height:3px;

    background:var(--primary);

    opacity:.35;

}

}

/*==================================================
                    CTA
==================================================*/

.cta-section{

    position:relative;

    overflow:hidden;

    padding:70px 0;

    background:
    linear-gradient(135deg,
    var(--primary),
    #7a1515);

    color:#fff;

}

.cta-section::before{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-120px;
    left:-120px;

}

.cta-section::after{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    right:-100px;
    bottom:-100px;

}

.cta-section .container{

    position:relative;

    z-index:2;

}

.cta-section h2{

    color:#fff;

    font-size:42px;

    margin-bottom:15px;

}

.cta-section p{

    color:#f2f2f2;

}

.cta-section .btn{

    background:#fff;

    color:var(--primary);

    border:none;

    padding:15px 30px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.cta-section .btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(0,0,0,.18);

}

.cta-section .btn i{

    margin-right:8px;

}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:991px){

.process .row{

    row-gap:25px;

}

.cta-section{

    text-align:center;

}

.cta-section h2{

    font-size:34px;

}

}

@media(max-width:767px){

.feature-box,
.process-item{

    padding:28px 20px;

}

.feature-box h4{

    font-size:22px;

}

.cta-section{

    padding:60px 0;

}

.cta-section h2{

    font-size:28px;

}

.cta-section .btn{

    width:100%;

}

}

/*==================================================
                    GALLERY
==================================================*/

.gallery{

    position:relative;
    background:#fff;
    overflow:hidden;

}

.gallery-item{

    position:relative;
    display:block;

    height:320px;

    overflow:hidden;

    border-radius:22px;

    background:#222;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.gallery-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform .6s ease,
        filter .5s ease;

}

.gallery-item:hover img{

    transform:scale(1.1);

    filter:brightness(.65);

}

/*=====================================
        GALLERY OVERLAY
=====================================*/

.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:20px;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0),
            rgba(0,0,0,.75)
        );

    opacity:0;

    transition:.4s ease;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay > div{

    transform:translateY(25px);

    transition:.4s ease;

}

.gallery-item:hover .gallery-overlay > div{

    transform:translateY(0);

}

.gallery-overlay i{

    width:60px;
    height:60px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:0 auto 15px;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    font-size:22px;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

}

.gallery-overlay h5{

    color:#fff;

    font-size:19px;

    margin:0;

}

/*=====================================
        GALLERY MODAL
=====================================*/

#galleryModal .modal-dialog{

    max-width:1000px;

}

#galleryModal .modal-content{

    background:transparent;

}

#galleryModalImage{

    max-height:85vh;

    width:auto;

    max-width:100%;

    margin:auto;

    object-fit:contain;

}

/*==================================================
                TESTIMONIAL
==================================================*/

.testimonial{

    position:relative;

    overflow:hidden;

    background:#f8f9fa;

}

.testimonial .swiper{

    padding:15px 5px 60px;

}

.testimonial .swiper-slide{

    height:auto;

}

.testimonial-card{

    position:relative;

    height:100%;

    min-height:340px;

    padding:35px 30px;

    background:#fff;

    border-radius:22px;

    box-shadow:0 10px 30px rgba(0,0,0,.07);

    transition:.35s ease;

    overflow:hidden;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.testimonial-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:var(--primary);

}

.testimonial-card::after{

    content:"";

    position:absolute;

    width:130px;
    height:130px;

    border-radius:50%;

    background:rgba(178,34,34,.05);

    right:-50px;
    bottom:-50px;

}

/*=====================================
        QUOTE
=====================================*/

.testimonial-card .quote{

    position:absolute;

    top:25px;
    right:30px;

    color:#f2d0d0;

    font-size:55px;

    line-height:1;

}

.testimonial-card .quote i{

    display:block;

}

/*=====================================
        STARS
=====================================*/

.testimonial-card .stars{

    display:flex;

    gap:4px;

    margin-bottom:20px;

}

.testimonial-card .stars i{

    color:#f5b301;

    font-size:15px;

}

/*=====================================
        TESTIMONIAL TEXT
=====================================*/

.testimonial-card > p{

    color:#666;

    font-size:15px;

    line-height:1.9;

    margin-bottom:30px;

    position:relative;

    z-index:2;

}

/*=====================================
        CLIENT
=====================================*/

.testimonial-card .client{

    display:flex;

    align-items:center;

    gap:14px;

    position:absolute;

    left:30px;
    right:30px;
    bottom:25px;

    z-index:2;

}

.testimonial-card .client img{

    width:52px;
    height:52px;

    object-fit:cover;

    border-radius:50%;

    border:3px solid #ffe2e2;

}

.testimonial-card .client h5{

    font-size:16px;

    margin:0 0 3px;

}

.testimonial-card .client span{

    display:block;

    font-size:13px;

    color:#888;

}

/*=====================================
        SWIPER PAGINATION
=====================================*/

.testimonial .swiper-pagination{

    bottom:5px;

}

.testimonial .swiper-pagination-bullet{

    width:9px;
    height:9px;

    opacity:.35;

    transition:.3s;

}

.testimonial .swiper-pagination-bullet-active{

    width:25px;

    border-radius:10px;

    opacity:1;

    background:var(--primary);

}

/*==================================================
                STATISTICS
==================================================*/

.statistics{

    position:relative;

    background:#fff;

    overflow:hidden;

}

.statistics::before{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    border-radius:50%;

    background:rgba(178,34,34,.04);

    left:-200px;
    bottom:-200px;

}

.stat-box{

    position:relative;

    height:100%;

    padding:35px 25px;

    background:#fff;

    border:1px solid #f0f0f0;

    border-radius:22px;

    transition:.35s;

    overflow:hidden;

}

.stat-box::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:var(--primary);

    transform:scaleX(0);

    transition:.35s;

}

.stat-box:hover::before{

    transform:scaleX(1);

}

.stat-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.1);

}

/*=====================================
        STAT ICON
=====================================*/

.stat-icon{

    width:65px;
    height:65px;

    margin:0 auto 20px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#ffeaea;

    color:var(--primary);

    font-size:27px;

    transition:.35s;

}

.stat-box:hover .stat-icon{

    background:var(--primary);

    color:#fff;

    transform:scale(1.08);

}

/*=====================================
        STAT NUMBER
=====================================*/

.stat-box h3{

    margin:0 0 5px;

    font-size:40px;

    font-weight:800;

    color:var(--primary);

}

.stat-box p{

    margin:0;

    font-size:15px;

    font-weight:500;

    color:#777;

}

/*==================================================
                PARTNERSHIP
==================================================*/

.partnership{

    background:#f8f9fa;

    overflow:hidden;

}

.partnerSwiper{

    padding:10px 5px 20px;

}

.partner-logo{

    height:110px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:20px 30px;

    background:#fff;

    border-radius:18px;

    border:1px solid #eee;

    transition:.35s;

}

.partner-logo:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.partner-logo img{

    max-width:150px;

    max-height:60px;

    width:auto;

    height:auto;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.65;

    transition:.35s;

}

.partner-logo:hover img{

    filter:grayscale(0);

    opacity:1;

}

/*==================================================
                CTA
==================================================*/

.cta-section{

    position:relative;

    overflow:hidden;

}

.cta-label{

    display:inline-block;

    margin-bottom:12px;

    padding:7px 18px;

    border:1px solid rgba(255,255,255,.35);

    border-radius:50px;

    color:#fff;

    font-size:14px;

    font-weight:600;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(5px);

}

.cta-section h2{

    position:relative;

    z-index:2;

}

.cta-section p{

    max-width:650px;

}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:991px){

    .gallery-item{

        height:280px;

    }

    .testimonial-card{

        min-height:330px;

    }

    .stat-box{

        padding:30px 20px;

    }

}

@media(max-width:767px){

    .gallery-item{

        height:250px;

    }

    .gallery-overlay{

        opacity:1;

        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,0),
                rgba(0,0,0,.7)
            );

    }

    .gallery-overlay > div{

        transform:translateY(0);

    }

    .gallery-overlay i{

        width:50px;
        height:50px;

        font-size:19px;

    }

    .gallery-overlay h5{

        font-size:16px;

    }

    .testimonial-card{

        min-height:340px;

        padding:30px 25px;

    }

    .testimonial-card .client{

        left:25px;
        right:25px;

    }

    .stat-box h3{

        font-size:34px;

    }

    .partner-logo{

        height:95px;

        padding:15px;

    }

    .partner-logo img{

        max-width:120px;

    }

}

@media(max-width:480px){

    .gallery-item{

        height:220px;

        border-radius:17px;

    }

    .testimonial-card{

        min-height:350px;

    }

}

/*==================================================
                    FAQ
==================================================*/

.faq{

    position:relative;

    background:#fff;

    overflow:hidden;

}

.faq::before{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    border-radius:50%;

    background:rgba(178,34,34,.035);

    right:-200px;
    top:-150px;

}

.faq .container{

    position:relative;

    z-index:2;

}

.faq .accordion{

    max-width:900px;

    margin:0 auto;

}

.faq .accordion-item{

    margin-bottom:15px;

    border:1px solid #eee;

    border-radius:16px !important;

    overflow:hidden;

    background:#fff;

    box-shadow:0 5px 20px rgba(0,0,0,.04);

}

.faq .accordion-button{

    padding:20px 25px;

    background:#fff;

    color:#333;

    font-size:16px;

    font-weight:600;

    box-shadow:none;

}

.faq .accordion-button:not(.collapsed){

    color:var(--primary);

    background:#fff5f5;

    box-shadow:none;

}

.faq .accordion-button::after{

    width:12px;
    height:12px;

    background-size:12px;

}

.faq .accordion-body{

    padding:0 25px 22px;

    color:#666;

    font-size:15px;

    line-height:1.8;

    background:#fff;

}


/*==================================================
                    CONTACT
==================================================*/

.contact{

    position:relative;

    background:#f8f9fa;

    overflow:hidden;

}

.contact::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:rgba(178,34,34,.04);

    left:-250px;
    bottom:-250px;

}

.contact .container{

    position:relative;

    z-index:2;

}


/*==================================================
                CONTACT INFO
==================================================*/

.contact-info{

    height:100%;

    padding:40px;

    border-radius:24px;

    background:
        linear-gradient(
            145deg,
            var(--primary),
            #761515
        );

    color:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    overflow:hidden;

    position:relative;

}

.contact-info::before{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:rgba(255,255,255,.07);

    top:-100px;
    right:-100px;

}

.contact-info::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-80px;
    left:-80px;

}

.contact-info h3{

    position:relative;

    z-index:2;

    color:#fff;

    font-size:30px;

    margin-bottom:15px;

}

.contact-info > p{

    position:relative;

    z-index:2;

    color:rgba(255,255,255,.8);

    line-height:1.8;

    margin-bottom:30px;

}


/*==================================================
                CONTACT ITEM
==================================================*/

.contact-item{

    position:relative;

    z-index:2;

    display:flex;

    align-items:flex-start;

    gap:16px;

    margin-bottom:25px;

}

.contact-item .icon{

    flex:0 0 48px;

    width:48px;
    height:48px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:rgba(255,255,255,.13);

    color:#fff;

    font-size:20px;

}

.contact-item h5{

    color:#fff;

    font-size:16px;

    margin:0 0 5px;

}

.contact-item p{

    margin:0;

    color:rgba(255,255,255,.75);

    font-size:14px;

    line-height:1.6;

}

.contact-item a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.contact-item a:hover{

    color:#ffd5d5;

}


/*==================================================
                CONTACT SOCIAL
==================================================*/

.contact-social{

    position:relative;

    z-index:2;

    display:flex;

    gap:10px;

    margin-top:30px;

}

.contact-social a{

    width:42px;
    height:42px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:#fff;

    background:rgba(255,255,255,.12);

    text-decoration:none;

    transition:.3s;

}

.contact-social a:hover{

    background:#fff;

    color:var(--primary);

    transform:translateY(-4px);

}


/*==================================================
                CONTACT FORM
==================================================*/

.contact-form{

    padding:40px;

    background:#fff;

    border-radius:24px;

    box-shadow:0 15px 45px rgba(0,0,0,.07);

    height:100%;

}

.contact-form h3{

    font-size:30px;

    margin-bottom:10px;

}

.contact-form > p{

    color:#777;

    line-height:1.7;

    margin-bottom:30px;

}

.contact-form .form-label{

    font-size:14px;

    font-weight:600;

    color:#444;

    margin-bottom:8px;

}

.contact-form .form-control{

    min-height:52px;

    border:1px solid #e5e5e5;

    border-radius:12px;

    padding:12px 16px;

    color:#333;

    box-shadow:none;

    transition:.3s;

}

.contact-form textarea.form-control{

    min-height:150px;

    resize:vertical;

}

.contact-form .form-control:focus{

    border-color:var(--primary);

    box-shadow:
        0 0 0 4px
        rgba(178,34,34,.08);

}

.contact-form .btn{

    min-height:52px;

    padding:12px 30px;

    border-radius:12px;

    font-weight:700;

}


/*==================================================
                WHATSAPP FORM BUTTON
==================================================*/

.contact-form .btn-whatsapp{

    background:#25D366;

    color:#fff;

    border:none;

}

.contact-form .btn-whatsapp:hover{

    background:#1ebe5d;

    color:#fff;

    transform:translateY(-2px);

}


/*==================================================
                    MAP
==================================================*/

.map-wrapper{

    position:relative;

    width:100%;

    min-height:450px;

    overflow:hidden;

    border-radius:24px;

    background:#ddd;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.map-wrapper iframe{

    width:100%;

    height:450px;

    display:block;

    border:0;

}


/*==================================================
                MAP OVERLAY CARD
==================================================*/

.map-card{

    position:absolute;

    left:25px;

    bottom:25px;

    max-width:320px;

    padding:20px;

    border-radius:16px;

    background:rgba(255,255,255,.95);

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    backdrop-filter:blur(10px);

}

.map-card h5{

    margin-bottom:8px;

    font-size:17px;

}

.map-card p{

    margin:0;

    color:#666;

    font-size:13px;

    line-height:1.6;

}


/*==================================================
                OPENING HOURS
==================================================*/

.opening-hours{

    margin-top:30px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.15);

    position:relative;

    z-index:2;

}

.opening-hours h5{

    color:#fff;

    font-size:16px;

    margin-bottom:15px;

}

.opening-hours .hour-row{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:15px;

    padding:7px 0;

    color:rgba(255,255,255,.75);

    font-size:14px;

}

.opening-hours .hour-row strong{

    color:#fff;

}


/*==================================================
                CONTACT RESPONSIVE
==================================================*/

@media(max-width:991px){

    .contact-info{

        padding:35px;

    }

    .contact-form{

        padding:35px;

    }

    .map-wrapper{

        margin-top:30px;

    }

}

@media(max-width:767px){

    .faq .accordion-button{

        padding:17px 18px;

        font-size:15px;

    }

    .faq .accordion-body{

        padding:0 18px 18px;

        font-size:14px;

    }

    .contact-info{

        padding:30px 25px;

        border-radius:20px;

    }

    .contact-form{

        padding:30px 22px;

        border-radius:20px;

    }

    .contact-info h3,
    .contact-form h3{

        font-size:25px;

    }

    .map-wrapper{

        min-height:350px;

        border-radius:20px;

    }

    .map-wrapper iframe{

        height:350px;

    }

    .map-card{

        left:15px;

        right:15px;

        bottom:15px;

        max-width:none;

    }

}

@media(max-width:480px){

    .contact-item{

        gap:12px;

    }

    .contact-item .icon{

        flex-basis:42px;

        width:42px;
        height:42px;

        font-size:17px;

    }

    .contact-social a{

        width:38px;
        height:38px;

    }

}

/*==================================================
                    FOOTER
==================================================*/

.footer{

    position:relative;

    background:#171717;

    color:#fff;

    overflow:hidden;

}

.footer::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:rgba(178,34,34,.06);

    top:-250px;
    right:-180px;

}

.footer .container{

    position:relative;

    z-index:2;

}

.footer-top{

    padding:80px 0 60px;

}


/*==================================================
                FOOTER BRAND
==================================================*/

.footer-brand{

    margin-bottom:25px;

}

.footer-brand img{

    max-width:180px;

    max-height:60px;

    object-fit:contain;

    margin-bottom:20px;

}

.footer-brand h3{

    color:#fff;

    font-size:25px;

    margin-bottom:15px;

}

.footer-brand p{

    color:#aaa;

    font-size:14px;

    line-height:1.9;

    max-width:380px;

}


/*==================================================
                FOOTER TITLE
==================================================*/

.footer h5{

    position:relative;

    color:#fff;

    font-size:17px;

    margin-bottom:25px;

    padding-bottom:12px;

}

.footer h5::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:35px;
    height:3px;

    border-radius:5px;

    background:var(--primary);

}


/*==================================================
                FOOTER LINKS
==================================================*/

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#aaa;

    text-decoration:none;

    font-size:14px;

    transition:.3s;

}

.footer-links a:hover{

    color:#fff;

    padding-left:6px;

}

.footer-links a i{

    margin-right:7px;

    color:var(--primary);

}


/*==================================================
                FOOTER CONTACT
==================================================*/

.footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:15px;

    color:#aaa;

    font-size:14px;

    line-height:1.7;

}

.footer-contact i{

    color:var(--primary);

    font-size:17px;

    margin-top:2px;

    flex-shrink:0;

}

.footer-contact a{

    color:#aaa;

    text-decoration:none;

    transition:.3s;

}

.footer-contact a:hover{

    color:#fff;

}


/*==================================================
                FOOTER SOCIAL
==================================================*/

.footer-social{

    display:flex;

    gap:9px;

    margin-top:25px;

}

.footer-social a{

    width:40px;
    height:40px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#252525;

    color:#aaa;

    text-decoration:none;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-4px);

}


/*==================================================
                FOOTER BOTTOM
==================================================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:22px 0;

}

.footer-bottom p{

    margin:0;

    color:#888;

    font-size:13px;

}

.footer-bottom a{

    color:#aaa;

    text-decoration:none;

}

.footer-bottom a:hover{

    color:#fff;

}


/*==================================================
                FLOATING WHATSAPP
==================================================*/

.floating-whatsapp{

    position:fixed;

    right:25px;
    bottom:25px;

    width:58px;
    height:58px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    text-decoration:none;

    font-size:27px;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.2);

    z-index:9998;

    transition:.35s;

}

.floating-whatsapp:hover{

    color:#fff;

    transform:scale(1.1);

    box-shadow:
        0 15px 40px
        rgba(37,211,102,.35);

}


/*==================================================
                WHATSAPP PULSE
==================================================*/

.floating-whatsapp.pulse{

    animation:
        whatsappPulse 1s ease;

}

@keyframes whatsappPulse{

    0%{

        box-shadow:
            0 0 0 0
            rgba(37,211,102,.5);

    }

    70%{

        box-shadow:
            0 0 0 15px
            rgba(37,211,102,0);

    }

    100%{

        box-shadow:
            0 0 0 0
            rgba(37,211,102,0);

    }

}


/*==================================================
                BACK TO TOP
==================================================*/

#backToTop{

    position:fixed;

    right:25px;
    bottom:95px;

    width:45px;
    height:45px;

    display:none;

    align-items:center;
    justify-content:center;

    border:none;

    border-radius:12px;

    background:var(--primary);

    color:#fff;

    font-size:18px;

    cursor:pointer;

    z-index:9997;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.15);

    transition:.35s;

}

#backToTop:hover{

    transform:translateY(-4px);

    background:#8f1b1b;

}


/*==================================================
                    PRELOADER
==================================================*/

#preloader{

    position:fixed;

    inset:0;

    width:100%;
    height:100%;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#fff;

    z-index:10000;

    transition:
        opacity .5s ease,
        visibility .5s ease;

}

.loader{

    width:55px;
    height:55px;

    border:5px solid #eee;

    border-top-color:var(--primary);

    border-radius:50%;

    animation:
        loaderSpin .8s linear infinite;

}

@keyframes loaderSpin{

    to{

        transform:rotate(360deg);

    }

}


/*==================================================
                SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:9px;

}

::-webkit-scrollbar-track{

    background:#f5f5f5;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:#861919;

}


/*==================================================
                SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}


/*==================================================
                FOCUS
==================================================*/

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{

    outline:3px solid
        rgba(178,34,34,.25);

    outline-offset:3px;

}


/*==================================================
                RESPONSIVE FOOTER
==================================================*/

@media(max-width:991px){

    .footer-top{

        padding:60px 0 40px;

    }

    .footer .row{

        row-gap:40px;

    }

}


/*==================================================
                MOBILE
==================================================*/

@media(max-width:767px){

    .footer{

        text-align:center;

    }

    .footer-brand p{

        margin-left:auto;
        margin-right:auto;

    }

    .footer h5::after{

        left:50%;

        transform:
            translateX(-50%);

    }

    .footer-contact li{

        justify-content:center;

        text-align:left;

        max-width:300px;

        margin-left:auto;
        margin-right:auto;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-bottom{

        text-align:center;

    }

    .footer-bottom .text-end{

        text-align:center !important;

        margin-top:8px;

    }

    .floating-whatsapp{

        right:18px;

        bottom:18px;

        width:54px;
        height:54px;

        font-size:24px;

    }

    #backToTop{

        right:18px;

        bottom:85px;

        width:42px;
        height:42px;

    }

}


/*==================================================
                SMALL MOBILE
==================================================*/

@media(max-width:480px){

    .footer-top{

        padding:50px 0 30px;

    }

    .footer-brand img{

        max-width:150px;

    }

    .footer h5{

        font-size:16px;

    }

}
