*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    overflow-x:hidden;
    background:#fff;
    font-family:'Poppins',sans-serif;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* CONTAINER */

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 25px;
}


.navbar{
    width:100%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid #eee;
}

.navbar-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
}

/* LOGO */

.logo img{
    width:170px;
    display:block;
}

/* DESKTOP MENU */

.nav-menu{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-menu li a{
    color:#111;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.nav-menu li a:hover{
    color:#7d5aa9;
}

/* BUTTON */

.quote-btn{
    background:#000;
    color:#fff;
    padding:14px 24px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.quote-btn:hover{
    background:#7d5aa9;
}

/* TOGGLE */

.menu-toggle{
    width:45px;
    height:45px;
    background:#7d5aa9;
    border-radius:10px;
    display:none;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.menu-toggle i{
    color:#fff;
    font-size:20px;
}

/* =========================
        MOBILE SIDEBAR
========================= */

.mobile-sidebar{
    position:fixed;
    top:0;
    left:-320px;
    width:300px;
    height:100vh;
    background:#fff;
    z-index:99999;
    padding:25px;
    transition:0.4s ease;
    box-shadow:0 0 40px rgba(0,0,0,0.15);
    overflow-y:auto;
}

.mobile-sidebar.active{
    left:0;
}

/* OVERLAY */

.sidebar-overlay{
    position:fixed;
    width:100%;
    height:100vh;
    background:rgba(0,0,0,0.5);
    top:0;
    left:0;
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transition:0.4s ease;
}

.sidebar-overlay.active{
    opacity:1;
    visibility:visible;
}

/* SIDEBAR TOP */

.sidebar-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:40px;
}

.sidebar-logo img{
    width:150px;
}

/* CLOSE */

.close-sidebar{
    width:42px;
    height:42px;
    background:#7d5aa9;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.close-sidebar i{
    color:#fff;
    font-size:20px;
}

/* SIDEBAR MENU */

.sidebar-menu{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.sidebar-menu li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 18px;
    border-radius:12px;
    background:#f7f7f7;
    color:#111;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

.sidebar-menu li a:hover{
    background:#7d5aa9;
    color:#fff;
    transform:translateX(5px);
}

/* SIDEBAR BUTTON */

.sidebar-btn{
    width:100%;
    margin-top:35px;
    background:#000;
    color:#fff;
    padding:16px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.sidebar-btn:hover{
    background:#7d5aa9;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:1100px){

    .nav-menu{
        display:none;
    }

    .desktop-btn{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

}

@media(max-width:768px){

    .navbar-flex{
        min-height:75px;
    }

    .logo img{
        width:130px;
    }

    .mobile-sidebar{
        width:280px;
    }

}
/* ===================================
            HERO SECTION
=================================== */






/* form section  */

/* =========================
   FOOTER
========================= */
.cryptic-footer{
    width:100%;
    background:#fff;
    font-family:'Poppins', sans-serif;
    color:#333;
    overflow:hidden;
}

/* =========================
   CONTAINER
========================= */
.footer-container{
    max-width:1400px;
    margin:auto;
    padding:55px 60px 45px;
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1.2fr;
    gap:70px;
}

/* =========================
   LOGO
========================= */
.footer-logo{
    width:165px;
    background:#f5f5f5;
    padding:10px 14px;
    border-radius:14px;
    margin-bottom:18px;
}

/* =========================
   HEADINGS
========================= */
.footer-about h2{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:#000;
}

.footer-col h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:#000;
}

/* =========================
   LINE
========================= */
.footer-line{
    width:125px;
    height:3px;
    background:#000;
    margin-bottom:26px;
    border-radius:10px;
}

/* =========================
   PARAGRAPH
========================= */
.footer-about p{
    font-size:17px;
    line-height:1.7;
    font-weight:400;
    max-width:320px;
    color:#333;
}

/* =========================
   LISTS
========================= */
.footer-col ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-col ul li{
    margin-bottom:20px;
}

/* =========================
   LINKS
========================= */
.footer-col ul li a{
    color:#333;
    text-decoration:none;
    font-size:17px;
    font-weight:400;
    transition:0.3s ease;
    position:relative;
}

.footer-col ul li a::before{
    content:"›";
    margin-right:8px;
    font-size:18px;
    color:#000;
}

.footer-col ul li a:hover{
    color:#000;
    padding-left:4px;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-links li a i{
    margin-right:10px;
    font-size:16px;
    color:#000;
}

/* =========================
   BOTTOM BAR
========================= */
.footer-bottom{
    border-top:1px solid rgba(0,0,0,0.12);
    padding:22px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p,
.footer-bottom span{
    font-size:16px;
    margin:0;
    color:#333;
}

/* =========================
   TABLET
========================= */
@media(max-width:992px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:50px;
        padding:50px 40px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        gap:45px;
        padding:45px 25px;
    }

    .footer-about p{
        max-width:100%;
        font-size:15px;
    }

    .footer-about h2,
    .footer-col h3{
        font-size:21px;
    }

    .footer-col ul li{
        margin-bottom:16px;
    }

    .footer-col ul li a{
        font-size:15px;
    }

    .footer-bottom{
        padding:20px 25px;
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom p,
    .footer-bottom span{
        font-size:14px;
    }

    .footer-logo{
        width:150px;
    }

}




/* about us  */
/* ===== BANNER ===== */

.vintage-banner{
    width:100%;
    height:100vh;
    position:relative;
    overflow:hidden;
    background:#000;
}

/* IMAGE */

.banner-car{
    width:100%;
    height:100%;
    object-fit:cover;      /* full banner fill */
    object-position:center;
    display:block;
}

/* MOBILE */

@media(max-width:768px){

    .vintage-banner{
        height:25vh;
    }

    .banner-car{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center;
        height: 140px;
    }

}
/*  */




/* new section  */



/* ===== ABOUT SECTION ===== */
.cm-about-section{
    width:100%;
    background:#f7f4ef;
    padding:30px 40px;
    overflow:hidden;
}

.cm-about-container{
    max-width:1500px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:stretch;
    gap:60px;
}


/* ===== LEFT CONTENT ===== */

.cm-about-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    height:100%;
    padding-right:20px;
}

.cm-about-tag{
    font-size:70px;
    color:#000;
    letter-spacing:3px;
    font-family:'Poppins',sans-serif;
    font-weight:600;
    display:block;
}

.cm-about-title{
    font-size:32px !important;
    line-height:1.08;
    color:#111;
    font-family:'Cormorant Garamond',serif;
    font-weight:600;
    margin-bottom:30px;
}

.cm-about-line{
    width:90px;
    height:2px;
    background:#b7925f;
    margin-bottom:35px;
}

.cm-about-text{
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 19px;
    font-weight: 450 !important;
    line-height: 2;
    color: #333;
    margin-bottom: 14px;
    text-align: justify;
    letter-spacing: 0.3px;
    max-width:600px;
}


/* ===== RIGHT IMAGE ===== */

.cm-about-image{
    position:relative;
    width:100%;
    max-width:760px;
    height:100%;
    min-height:600px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.cm-about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:1s ease;
}

.cm-about-image:hover img{
    transform:scale(1.05);
}


/* ===================================
        TABLET VIEW
=================================== */

@media(max-width:1200px){

    .cm-about-section{
        padding:60px 30px;
    }

    .cm-about-container{
        grid-template-columns:1fr;
        gap:45px;
    }

    .cm-about-content{
        padding-right:0;
    }

    .cm-about-tag{
        font-size:52px;
        text-align:center;
    }

    .cm-about-title{
        font-size:32px;
        line-height:1.15;
        text-align:center;
    }

    .cm-about-line{
        margin:0 auto 30px;
    }

    .cm-about-text{
        max-width:100%;
        text-align:center;
        font-size:17px;
        line-height:1.9;
    }

    .cm-about-image{
        width:100%;
        max-width:100%;
        min-height:550px;
        margin:auto;
    }

}


/* ===================================
        MOBILE VIEW
=================================== */

/* MOBILE VIEW */
@media(max-width:768px){

    .cm-about-section{
        padding:45px 18px;
    }

    .cm-about-container{
        gap:30px;
    }

    .cm-about-tag{
        font-size:34px;
        letter-spacing:1px;
        text-align:center;
    }

    .cm-about-title{
        font-size:34px;
        line-height:1.2;
        margin-bottom:18px;
        text-align:center;
    }

    .cm-about-line{
        width:70px;
        margin:0 auto 20px;
    }

    .cm-about-text{
        font-size:15px;
        line-height:1.9;
        margin-bottom:16px;
        text-align:justify;
    }

    .cm-about-image{
        width:100%;
        min-height:320px;
        border-radius:16px;
    }

}


/* SMALL MOBILE VIEW */
@media(max-width:480px){

    .cm-about-section{
        padding:40px 15px;
    }

    .cm-about-tag{
        font-size:28px;
    }

    .cm-about-title{
        font-size:28px;
    }

    .cm-about-text{
        font-size:14px;
        line-height:1.8;
        text-align:justify;
    }

    .cm-about-image{
        min-height:260px;
    }

}
/* =========================================
FOUNDER DESK SECTION
========================================= */
.founder-desk{
    width:100%;
    max-width:1450px;
    margin:auto;
    padding:40px;
    background:linear-gradient(135deg,#f8f5ef,#ffffff);
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    overflow:hidden;
    position:relative;
}

/* =========================================
LEFT IMAGE
========================================= */

.founder-img-wrap{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.founder-shape{
    position:absolute;
    width:85%;
    height:85%;
    background:#d7c2a3;
    border-radius:35px;
    transform:rotate(-7deg);
}

.founder-img{
    width:100%;
    max-width:520px;
    height:650px;
    object-fit:cover;
    border-radius:35px;
    position:relative;
    z-index:2;
    box-shadow:0 30px 70px rgba(0,0,0,.15);
}

/* BADGE */

.founder-badge{
    position:absolute;
    bottom:25px;
    left:20px;
    background:#fff;
    padding:16px 24px;
    border-radius:18px;
    z-index:5;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.founder-badge span{
    font-size:15px;
    color:#2c2c2c;
    font-weight:600;
    font-family:'Poppins',sans-serif;
}

/* =========================================
RIGHT CONTENT
========================================= */

.founder-content{
    position:relative;
    z-index:2;
}

.founder-top-tag{
    display:inline-block;
    background:#000;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:25px;
    font-family:'Poppins',sans-serif;
}

.founder-content h2{
    font-size:60px;
    line-height:1.1;
    color:#1e1e1e;
    margin-bottom:28px;
    font-family:'Playfair Display',serif;
    font-weight:700;
}

.founder-content p{
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 450;
    line-height: 2;
    color: #333;
    margin-bottom: 14px;
    text-align: justify;
    letter-spacing: 0.3px;
}

/* INFO */

.founder-info{
    margin-top:35px;
    margin-bottom:35px;
}

.founder-info h4{
    font-size:28px;
    color:#1f3b2d;
    margin-bottom:8px;
    font-family:'Playfair Display',serif;
}

.founder-info span{
    font-size:15px;
    color:#777;
    font-family:'Poppins',sans-serif;
}

/* BUTTON */

.founder-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:220px;
    height:50px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-size:16px;
    font-weight:500;
    transition:.4s;
    font-family:'Poppins',sans-serif;
}

.founder-btn:hover{
    background:#14261d;
    transform:translateY(-5px);
}


/* =========================================
TABLET VIEW
========================================= */

@media(max-width:991px){

    .founder-desk{
        grid-template-columns:1fr;
        padding: 30px 30px;
        gap:50px;
    }

    .founder-img-wrap{
        width:100%;
    }

    .founder-img{
        max-width:100%;
        height:580px;
    }

    .founder-shape{
        width:82%;
        height:82%;
    }

    .founder-content{
        text-align:center;
    }

    .founder-top-tag{
        margin-bottom:20px;
    }

    .founder-content h2{
        font-size:46px;
        line-height:1.2;
        margin-bottom:22px;
    }

    .founder-content p{
        font-size:16px;
        line-height:1.9;
        text-align:center;
    }

    .founder-info{
        margin-top:28px;
        margin-bottom:28px;
    }

    .founder-btn{
        margin:auto;
    }
}


/* =========================================
MOBILE VIEW
========================================= */

@media(max-width:600px){

    .founder-desk{
        padding:10px 18px;
        border-radius:25px;
        margin:10px 12px;
        gap:35px;
    }

    .founder-img-wrap{
        width:100%;
    }

    .founder-img{
        width:100%;
        height:420px;
        border-radius:25px;
    }

    .founder-shape{
        width:88%;
        height:88%;
        border-radius:25px;
    }

    .founder-content{
        text-align:center;
    }

    .founder-top-tag{
        font-size:11px;
        padding:9px 18px;
        letter-spacing:1px;
    }

    .founder-content h2{
        font-size:34px;
        line-height:1.25;
        margin-bottom:18px;
    }

    .founder-content p{
        font-size:15px;
        line-height:1.9;
        text-align:justify;
        margin-bottom:16px;
    }

    .founder-info{
        margin-top:24px;
        margin-bottom:24px;
    }

    .founder-info h4{
        font-size:24px;
    }

    .founder-info span{
        font-size:14px;
    }

    .founder-btn{
        width:100%;
        height:54px;
        font-size:15px;
    }

    .founder-badge{
        left:10px;
        bottom:15px;
        padding:12px 16px;
        border-radius:14px;
    }

    .founder-badge span{
        font-size:13px;
    }
}


/* =========================================
SMALL MOBILE VIEW
========================================= */

@media(max-width:480px){

    .founder-desk{
        padding:25px 15px;
    }

    .founder-content h2{
        font-size:28px;
    }

    .founder-content p{
        font-size:14px;
        line-height:1.8;
        text-align:justify;
    }

    .founder-img{
        height:360px;
    }

    .founder-btn{
        height:52px;
    }
}

/* vission and mission  */
/* =========================================
VISION MISSION SECTION
========================================= */

.vision-mission-section{
    width:100%;
 
    
    padding:30px 20px;
background: #f8f8f8;
}

/* =========================================
TOP CONTENT
========================================= */

.vm-top{
    text-align:center;
    margin-bottom:70px;
}

.vm-tag{
    display:inline-block;
    padding:10px 24px;
    background:#1f3b2d;
    color:#fff;
    border-radius:50px;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:22px;
    font-family:'Poppins',sans-serif;
}

.vm-top h2{
    font-size:70px;
    line-height:1.1;
    color:#111;
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
    font-weight:700;
}

.vm-top p{
    max-width:720px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:#666;
    font-family:'Poppins',sans-serif;
}

/* =========================================
GRID
========================================= */

.vm-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

/* =========================================
CARD
========================================= */

.vm-card{
    position:relative;
    padding:55px;
    border-radius:40px;
    overflow:hidden;
    z-index:1;
    transition:.5s;
    min-height:480px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

/* VISION */

.vision-card{
    background:#000;
    color:#fff;
}

/* MISSION */

.mission-card{
    background:linear-gradient(135deg,#f7f1e8,#ffffff);
    border:1px solid rgba(0,0,0,.06);
}

/* HOVER */

.vm-card:hover{
    transform:translateY(-12px);
}

/* ICON */

.vm-icon{
    width:90px;
    height:90px;
    border-radius:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:35px;
    backdrop-filter:blur(10px);
}

.vision-card .vm-icon{
    background:rgba(255,255,255,.12);
}

.mission-card .vm-icon{
    background:#efe2d0;
}

.vm-icon i{
    font-size:38px;
}

.vision-card .vm-icon i{
    color:#fff;
}

.mission-card .vm-icon i{
    color:#000;
}

/* SMALL TITLE */

.vm-small-title{
    font-size:13px;
    letter-spacing:3px;
    margin-bottom:18px;
    display:block;
    font-family:'Poppins',sans-serif;
}

.vision-card .vm-small-title{
    color:#d9d9d9;
}

.mission-card .vm-small-title{
    color:#777;
}

/* HEADING */

.vm-card h3{
    font-size:42px;
    line-height:1.2;
    margin-bottom:25px;
    font-family:'Playfair Display',serif;
    font-weight:700;
}

.vision-card h3{
    color:#fff;
}

.mission-card h3{
    color:#111;
}

/* TEXT */

.vm-card p{
        font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 450;
    line-height: 2;
    color: #333;
    margin-bottom: 14px;
    text-align: justify;
    letter-spacing: 0.3px;
}

.vision-card p{
    color:#e5e5e5;
}

.mission-card p{
    color:#555;
}

/* GLOW EFFECT */

.vm-glow{
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    right:-120px;
    bottom:-120px;
    opacity:.15;
    z-index:-1;
}

.vision-card .vm-glow{
    background:#fff;
}

.mission-card .vm-glow{
    background:#d2b48c;
}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .vm-grid{
        grid-template-columns:1fr;
    }

    .vm-top h2{
        font-size:52px;
    }

    .vm-card{
        min-height:auto;
    }
}

/* =========================================
MOBILE
========================================= */

@media(max-width:600px){

    .vision-mission-section{
        margin:0px auto;
        padding:0 12px;
    }

    .vm-top{
        margin-bottom:40px;
    }

    .vm-top h2{
        font-size:38px;
    }

    .vm-top p{
        font-size:15px;
        line-height:1.8;
    }

    .vm-grid{
        gap:22px;
    }

    .vm-card{
        padding:30px 22px;
        border-radius:28px;
    }

    .vm-card h3{
        font-size:28px;
    }

    .vm-card p{
        font-size:15px;
        line-height:1.8;
    }

    .vm-icon{
        width:75px;
        height:75px;
        border-radius:20px;
        margin-bottom:25px;
    }

    .vm-icon i{
        font-size:30px;
    }
}
/*  */


/* =========================
   FOOTER
========================= */
.cryptic-footer{
    width:100%;
    background:#fff;
    font-family:'Poppins', sans-serif;
    color:#333;
    overflow:hidden;
}

/* =========================
   CONTAINER
========================= */
.footer-container{
    max-width:1400px;
    margin:auto;
    padding:55px 60px 45px;
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1.2fr;
    gap:70px;
}

/* =========================
   LOGO
========================= */
.footer-logo{
    width:165px;
    background:#f5f5f5;
    padding:10px 14px;
    border-radius:14px;
    margin-bottom:18px;
}

/* =========================
   HEADINGS
========================= */
.footer-about h2{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:#000;
}

.footer-col h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:#000;
}

/* =========================
   LINE
========================= */
.footer-line{
    width:125px;
    height:3px;
    background:#000;
    margin-bottom:26px;
    border-radius:10px;
}

/* =========================
   PARAGRAPH
========================= */
.footer-about p{
    font-size:17px;
    line-height:1.7;
    font-weight:400;
    max-width:320px;
    color:#333;
}

/* =========================
   LISTS
========================= */
.footer-col ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-col ul li{
    margin-bottom:20px;
}

/* =========================
   LINKS
========================= */
.footer-col ul li a{
    color:#333;
    text-decoration:none;
    font-size:17px;
    font-weight:400;
    transition:0.3s ease;
    position:relative;
}

.footer-col ul li a::before{
    content:"›";
    margin-right:8px;
    font-size:18px;
    color:#000;
}

.footer-col ul li a:hover{
    color:#000;
    padding-left:4px;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-links li a i{
    margin-right:10px;
    font-size:16px;
    color:#000;
}

/* =========================
   BOTTOM BAR
========================= */
.footer-bottom{
    border-top:1px solid rgba(0,0,0,0.12);
    padding:22px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p,
.footer-bottom span{
    font-size:16px;
    margin:0;
    color:#333;
}

/* =========================
   TABLET
========================= */
@media(max-width:992px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:50px;
        padding:50px 40px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        gap:45px;
        padding:45px 25px;
    }

    .footer-about p{
        max-width:100%;
        font-size:15px;
    }

    .footer-about h2,
    .footer-col h3{
        font-size:21px;
    }

    .footer-col ul li{
        margin-bottom:16px;
    }

    .footer-col ul li a{
        font-size:15px;
    }

    .footer-bottom{
        padding:20px 25px;
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom p,
    .footer-bottom span{
        font-size:14px;
    }

    .footer-logo{
        width:150px;
    }

}