/* ==========================================================
   STKIP LEARN
   Learning Management System
   STKIP Muhammadiyah Aceh Barat Daya
   Version : 2.0 Final
==========================================================*/


/* ==========================================================
   ROOT
==========================================================*/

:root{

    --primary:#0F766E;
    --primary-dark:#0B5D58;

    --secondary:#1F2937;
    --text:#475569;
    --muted:#64748B;

    --success:#16A34A;
    --warning:#F59E0B;
    --danger:#DC2626;

    --white:#FFFFFF;
    --light:#F8FAFC;
    --border:#E5E7EB;

    --radius:22px;

    --shadow-sm:0 8px 25px rgba(0,0,0,.06);
    --shadow:0 18px 45px rgba(0,0,0,.10);
    --shadow-lg:0 30px 60px rgba(0,0,0,.18);

    --transition:.35s ease;

}


/* ==========================================================
   RESET
==========================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    font-size:16px;

    background:#ffffff;

    color:var(--text);

    overflow-x:hidden;

    line-height:1.8;

}


/* ==========================================================
   TYPOGRAPHY
==========================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    margin:0;

    color:var(--secondary);

    font-weight:700;

}

p{

    margin:0;

    color:var(--text);

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    margin:0;

    padding:0;

    list-style:none;

}


/* ==========================================================
   CONTAINER
==========================================================*/

.container{

    position:relative;

    z-index:5;

}


/* ==========================================================
   BUTTON
==========================================================*/

.btn{

    font-weight:600;

    border-radius:50px;

    transition:var(--transition);

}

.btn-success{

    background:var(--primary);

    border-color:var(--primary);

}

.btn-success:hover{

    background:var(--primary-dark);

    border-color:var(--primary-dark);

    transform:translateY(-3px);

    box-shadow:var(--shadow);

}

.btn-outline-success{

    color:var(--primary);

    border:2px solid var(--primary);

    background:#ffffff;

}

.btn-outline-success:hover{

    background:var(--primary);

    color:#ffffff;

    transform:translateY(-3px);

}


/* ==========================================================
   UTILITIES
==========================================================*/

.section{

    padding:100px 0;

}

.section-title{

    font-size:46px;

    font-weight:800;

    color:var(--secondary);

    text-align:center;

    margin-bottom:18px;

}

.section-subtitle{

    max-width:760px;

    margin:auto;

    text-align:center;

    color:var(--muted);

    font-size:18px;

    line-height:1.9;

    margin-bottom:70px;

}

.shadow-soft{

    box-shadow:var(--shadow);

}

.rounded-xl{

    border-radius:var(--radius);

}

.bg-light-green{

    background:#F6FFFC;

}

.text-primary{

    color:var(--primary)!important;

}


/* ==========================================================
   NAVBAR
==========================================================*/

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(255,255,255,.92)!important;

    backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(0,0,0,.05);

    padding:14px 0;

    transition:var(--transition);

}

.navbar-brand{

    display:flex;

    align-items:center;

}

.navbar-brand img{

    width:58px;

    margin-right:15px;

}

.navbar-brand h5{

    color:var(--primary);

    font-size:22px;

    font-weight:700;
    margin-top: 20px;    /* Jarak ke atas */
    line-height: 10px; /* Jarak pasti dalam piksel */

}

.navbar-brand small{

    color:var(--muted);

    font-size:16px;
    letter-spacing: 4px /* Spasi antar huruf */

}

.navbar-nav .nav-link{

    color:#334155;

    font-weight:500;

    margin-left:20px;

    position:relative;

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.navbar-nav .nav-link:hover::after{

    width:100%;

}

.navbar .btn{

    padding:10px 28px;

}


/* ==========================================================
   ANIMATION
==========================================================*/

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-40px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/* ==========================================================
   HERO SECTION
==========================================================*/

.hero-section{

    position:relative;

    display:flex;

    align-items:center;

    min-height:100vh;

    padding-top:95px;

    padding-bottom:110px;

    overflow:hidden;

    background:#fff;

    width:100%;

}


/* ==========================================================
   HERO BACKGROUND
==========================================================*/

.hero-image{

    position:absolute;

    top:0;
    right:-95px;

    width:65%;

    height:100%;

    overflow:hidden;

    z-index:1;

}

.hero-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/* Gradient agar gambar menyatu dengan sisi kiri */

.hero-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        #ffffff 0%,
        rgba(255,255,255,.96) 15%,
        rgba(255,255,255,.78) 28%,
        rgba(255,255,255,.35) 42%,
        rgba(255,255,255,0) 58%
    ),
    linear-gradient(
        180deg,
        rgba(255,255,255,0) 72%,
        rgba(255,255,255,.15) 84%,
        rgba(255,255,255,.55) 94%,
        #ffffff 100%
    );

}

/* ==========================================================
   HERO CONTENT
==========================================================*/

.hero-row{

    min-height:520px;

    align-items:center;

}

.hero-left{

    position:relative;

    z-index:5;

    max-width:560px;

    animation:fadeLeft .8s ease;

}


/* ==========================================================
   HERO BADGE
==========================================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#ECFDF5;

    color:var(--primary);

    padding:10px 24px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    margin-bottom:28px;

}

.hero-badge i{

    font-size:18px;

}


/* ==========================================================
   HERO TITLE
==========================================================*/

.hero-title{

    font-size:54px;

    font-weight:800;

    color:#0F172A;

    line-height:1.08;

    margin-bottom:18px;

}


/* ==========================================================
   HERO SUBTITLE
==========================================================*/

.hero-subtitle{

    font-size:24px;

    font-weight:600;

    color:var(--primary);

    line-height:1.5;

    margin-bottom:22px;

}


/* ==========================================================
   HERO DESCRIPTION
==========================================================*/

.hero-description{

    font-size:18px;

    color:var(--text);

    line-height:1.8;

    max-width:500px;

    margin-bottom:22px;

}


/* ==========================================================
   HERO BUTTON
==========================================================*/

.hero-button{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

    margin-bottom:18px;

}

.hero-button .btn{

    padding:15px 36px;

    font-size:16px;

}

.hero-button .btn i{

    margin-right:8px;

}


/* HERO FEATURE */

.hero-feature{

    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:36px;
    margin-top:18px;
    flex-wrap:nowrap;

}

.hero-feature-item{

    display:flex;
    align-items:center;
    gap:12px;

}

.hero-feature-icon{

    width:48px;
    height:48px;

    border-radius:50%;

    background:#ECFDF5;

    color:var(--primary);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;

    flex-shrink:0;

}

.hero-feature-text{

    display:flex;
    flex-direction:column;

    line-height:1.15;

}

.hero-feature-text h6{

    margin:0;
    font-size:15px;
    font-weight:700;

}

.hero-feature-text p{

    margin:2px 0 0;
    font-size:13px;
    color:var(--muted);

}

/* ==========================================================
   HERO BUTTON EFFECT
==========================================================*/

.hero-button .btn{

    transition:all .3s ease;

}

.hero-button .btn:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow);

}


/* ==========================================================
   HERO STATISTICS
==========================================================*/

.hero-statistics{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:-35px;

    width:min(1560px,97%);

    background:linear-gradient(135deg,#0F766E,#0B5D58);

    border-radius:18px;

    padding:22px 18px;

    box-shadow:0 18px 45px rgba(0,0,0,.16);

    z-index:30;

    min-height:130px;

}

.hero-statistics .row{

    align-items:stretch;

}

.hero-statistics .col-lg-3,
.hero-statistics .col-6{

    display:flex;

}

.stat-card{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:16px;

    width:100%;

    min-height:76px;

    padding:0 22px;

    color:#ffffff;

    border-right:1px solid rgba(255,255,255,.15);

}

.hero-statistics .col-lg-3:last-child .stat-card{

    border-right:none;

}

.stat-last{

    border-right:none;

}

.stat-card i{

    font-size:34px;

    line-height:1;

    flex-shrink:0;

    color:#ffffff;

}

.stat-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

    text-align:left;

    line-height:1.2;

}

.stat-content h3{

    margin:0;

    color:#ffffff;

    font-size:34px;

    font-weight:700;

    line-height:1;

}

.stat-content p{

    margin:4px 0 0;

    color:rgba(255,255,255,.85);

    font-size:15px;

    line-height:1.3;

}



/* ==========================================================
   ABOUT SECTION
==========================================================*/

#tentang{

    padding:110px 0 110px;

    background:#ffffff;

}


/* ==========================================================
   ABOUT IMAGE
==========================================================*/

.about-image{

    position:relative;

}

.about-image img{

    border-radius:24px;

    box-shadow:var(--shadow);

}

.about-badge{

    position:absolute;

    right:-20px;

    bottom:35px;

    background:#ffffff;

    border-radius:18px;

    padding:20px 24px;

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.about-badge h4{

    color:var(--primary);

    font-size:32px;

    margin-bottom:4px;

}

.about-badge span{

    color:var(--muted);

    font-size:14px;

}


/* ==========================================================
   ABOUT CONTENT
==========================================================*/

.about-content{

    padding-left:40px;

}

.about-content .section-title{

    text-align:left;

    margin-bottom:20px;

}

.about-content .section-subtitle{

    text-align:left;

    margin:0 0 25px;

    max-width:100%;

}

.about-content p{

    font-size:17px;

    line-height:1.9;

    margin-bottom:18px;

}


/* ==========================================================
   ABOUT LIST
==========================================================*/

.about-list{

    margin-top:30px;

}

.about-list li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:18px;

    color:var(--text);

    font-size:16px;

}

.about-list i{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#ECFDF5;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    font-size:18px;

}


/* ==========================================================
   ABOUT BUTTON
==========================================================*/

.about-content .btn{

    margin-top:18px;

    padding:14px 34px;

}


/* ==========================================================
   ABOUT ANIMATION
==========================================================*/

.about-image{

    animation:fadeUp .8s ease;

}

.about-content{

    animation:fadeLeft .8s ease;

}



/* ==========================================================
   FEATURE SECTION
==========================================================*/

#fitur{

    padding:110px 0;

    background:#F8FAFC;

}

.feature-card{

    background:#ffffff;

    border-radius:22px;

    padding:40px 30px;

    height:100%;

    border:1px solid #E5E7EB;

    text-align:center;

    transition:all .35s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.feature-icon{

    width:82px;

    height:82px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#0F766E,#14B8A6);

    color:#ffffff;

    font-size:34px;

}

.feature-card h4{

    font-size:22px;

    margin-bottom:15px;

    font-weight:700;

}

.feature-card p{

    color:#64748B;

    line-height:1.8;

}


/* ==========================================================
   ANNOUNCEMENT
==========================================================*/

#pengumuman{

    padding:110px 0;

    background:#ffffff;

}

.announcement-card{

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #E5E7EB;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    height:100%;

}

.announcement-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.announcement-image{

    overflow:hidden;

}

.announcement-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.4s;

}

.announcement-card:hover .announcement-image img{

    transform:scale(1.05);

}

.announcement-content{

    padding:28px;

}

.announcement-date{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#0F766E;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}

.announcement-content h4{

    font-size:22px;

    margin-bottom:15px;

    line-height:1.4;

}

.announcement-content p{

    color:#64748B;

    line-height:1.8;

}

.announcement-content a{

    display:inline-block;

    margin-top:22px;

    color:#0F766E;

    font-weight:600;

}

.announcement-content a:hover{

    color:#0B5D58;

}


/* ==========================================================
   GUIDE SECTION
==========================================================*/

#panduan{

    padding:110px 0;

    background:#F8FAFC;

}

.guide-card{

    background:#ffffff;

    border-radius:22px;

    padding:40px;

    text-align:center;

    border:1px solid #E5E7EB;

    height:100%;

    transition:.35s;

}

.guide-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.10);

}

.guide-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ECFDF5;

    color:#0F766E;

    font-size:38px;

}

.guide-card h4{

    font-size:22px;

    margin-bottom:15px;

}

.guide-card p{

    color:#64748B;

    margin-bottom:25px;

    line-height:1.8;

}

.guide-card .btn{

    padding:12px 30px;

}


/* ==========================================================
   COMMON CARD ANIMATION
==========================================================*/

.feature-card,
.announcement-card,
.guide-card{

    animation:fadeUp .8s ease;

}






/* ==========================================================
   CONTACT SECTION
==========================================================*/

#kontak{

    padding:110px 0;

    background:#ffffff;

}

.contact-info{

    height:100%;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:28px;

}

.contact-icon{

    width:58px;

    height:58px;

    border-radius:50%;

    background:#ECFDF5;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    flex-shrink:0;

}

.contact-item h5{

    font-size:18px;

    margin-bottom:6px;

}

.contact-item p{

    color:var(--muted);

    line-height:1.8;

}

.contact-map{

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.contact-map iframe{

    width:100%;

    height:420px;

    border:0;

}


/* ==========================================================
   FOOTER
==========================================================*/

footer{

    background:#0F172A;

    color:#ffffff;

    padding:70px 0 25px;

}

.footer-logo{

    display:flex;

    align-items:center;

    margin-bottom:22px;

}

.footer-logo img{

    width:60px;

    margin-right:15px;

}

.footer-logo h5{

    color:#ffffff;

    margin-bottom:2px;

}

.footer-logo small{

    color:rgba(255,255,255,.70);

}

.footer-description{

    color:rgba(255,255,255,.75);

    line-height:1.9;

    margin-bottom:25px;

}

.footer-title{

    color:#ffffff;

    margin-bottom:22px;

    font-size:20px;

}

.footer-links a{

    display:block;

    color:rgba(255,255,255,.72);

    margin-bottom:14px;

    transition:.3s;

}

.footer-links a:hover{

    color:#ffffff;

    padding-left:8px;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#ffffff;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--primary);

    transform:translateY(-4px);

}

.footer-bottom{

    margin-top:45px;

    border-top:1px solid rgba(255,255,255,.10);

    padding-top:22px;

    text-align:center;

    color:rgba(255,255,255,.70);

    font-size:15px;

}


/* ==========================================================
   RESPONSIVE
==========================================================*/

@media (max-width:1200px){

    .hero-title{

        font-size:54px;

    }

    .hero-subtitle{

        font-size:26px;

    }

    .hero-image{

        width:55%;

    }

}

@media (max-width:991px){

    .navbar{

        padding:12px 0;

    }

    .navbar-brand img{

        width:48px;

    }

    .hero-section{

        min-height:auto;

        padding-top:120px;

        padding-bottom:90px;

    }

    .hero-row{

        min-height:auto;

    }

    .hero-left{

        max-width:100%;

        text-align:center;

        margin:auto;

    }

    .hero-description{

        max-width:100%;

    }

    .hero-button{

        justify-content:center;

    }

    .hero-feature{

        justify-content:center;

    }

    .hero-image{

        position:relative;

        width:100%;

        height:420px;

        margin-top:60px;

    }

    .hero-image::after{

        background:linear-gradient(

            180deg,

            rgba(255,255,255,.95),

            rgba(255,255,255,.15)

        );

    }

    .hero-statistics{

        position:relative;

        left:auto;

        bottom:auto;

        transform:none;

        width:100%;

        margin-top:40px;

    }

    .stat-card{

        border-right:none;

        margin-bottom:25px;

    }

    .about-content{

        padding-left:0;

        margin-top:45px;

    }

}

@media (max-width:768px){

    .section{

        padding:80px 0;

    }

    .section-title{

        font-size:34px;

    }

    .section-subtitle{

        font-size:16px;

    }

    .hero-title{

        font-size:40px;

    }

    .hero-subtitle{

        font-size:22px;

    }

    .hero-description{

        font-size:16px;

    }

    .hero-button .btn{

        width:100%;

    }

    .hero-image{

        height:300px;

    }

    .feature-card,

    .guide-card{

        padding:30px 25px;

    }

    .contact-map iframe{

        height:320px;

    }

}

@media (max-width:576px){

    .navbar-brand h5{

        font-size:18px;

    }

    .navbar-brand small{

        display:none;

    }

    .hero-title{

        font-size:34px;

    }

    .hero-subtitle{

        font-size:20px;

    }

    .hero-description{

        font-size:15px;

    }

    .hero-badge{

        font-size:13px;

        padding:8px 18px;

    }

    .hero-image{

        height:240px;

    }

    .footer{

        text-align:center;

    }

    .footer-logo{

        justify-content:center;

    }

    .footer-social{

        justify-content:center;

    }

}


/* ==========================================================
   SCROLLBAR
==========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F1F5F9;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}


/* ==========================================================
   SELECTION
==========================================================*/

::selection{

    background:var(--primary);

    color:#ffffff;

}


/* ==========================================================
   END OF STYLE.CSS
==========================================================*/









/* ==========================================================
   MAPS SECTION
==========================================================*/

.footer-map-section{

    background:#F6FFFC;

    padding:20px 0 30px;

}

.footer-map{

    width:min(1560px,97%);

    margin:auto;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 22px 55px rgba(0,0,0,.12);

}

.footer-map iframe{

    width:100%;

    height:420px;

    border:0;

    display:block;

}







/* ==========================================================
   FOOTER PREMIUM
==========================================================*/

.footer-modern{

    position:relative;

    margin-top:0;

    background:linear-gradient(
        180deg,
        #F6FFFC 0%,
        #ECFDF5 100%
    );

    border-top:1px solid #DCEFE8;

    overflow:hidden;

}

/* ==========================================================
   WAVE
==========================================================*/

.footer-wave{

    width:100%;

    line-height:0;

}

.footer-wave svg{

    display:block;

    width:100%;

    height:55px;

}

/* ==========================================================
   CONTAINER
==========================================================*/

.footer-modern .container{

    position:relative;

    z-index:2;

    padding-top:25px;

    padding-bottom:20px;

    margin-top:-105px;

}

/* ==========================================================
   BRAND
==========================================================*/

.footer-brand{

    display:flex;

    align-items:center;

    margin-bottom:22px;

}

.footer-brand img{

    width:70px;

    margin-right:18px;

}

.footer-brand h4{

    color:#0F766E;

    font-size:28px;

    font-weight:700;

    margin-bottom:2px;

}

.footer-brand span{

    color:#64748B;

    font-size:14px;

}

.footer-description{

    color:#475569;

    line-height:1.9;

    max-width:360px;

    margin-bottom:28px;

}

/* ==========================================================
   TITLE
==========================================================*/

.footer-modern h5{

    color:#0F766E;

    font-size:20px;

    font-weight:700;

    margin-bottom:24px;

}

/* ==========================================================
   MENU
==========================================================*/

.footer-modern ul{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-modern li{

    margin-bottom:6px;

}

.footer-modern li a{

    color:#475569;

    text-decoration:none;

    transition:.3s;

}

.footer-modern li a:hover{

    color:#0F766E;

    padding-left:8px;

}

/* ==========================================================
   CONTACT
==========================================================*/

.footer-contact{

    color:#475569;

}

.footer-contact .contact-item{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:18px;

}

.footer-contact .icon{

    width:46px;

    height:46px;

    border-radius:50%;

    background:#0F766E;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    font-size:18px;

}

/* ==========================================================
   SOCIAL
==========================================================*/

.footer-social{

    display:flex;

    gap:14px;

    margin-top:18px;

}

.footer-social a{

    width:46px;

    height:46px;

    border-radius:50%;

    background:#ffffff;

    color:#0F766E;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:20px;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.footer-social a:hover{

    background:#0F766E;

    color:#ffffff;

    transform:translateY(-5px);

}

/* ==========================================================
   DIVIDER
==========================================================*/

.footer-divider{

    margin:25px 0 15px;

    border:none;

    border-top:1px solid rgba(15,118,110,.15);

}

/* ==========================================================
   COPYRIGHT
==========================================================*/

.footer-bottom{

    width:min(1580px,95%);

    margin:10px auto 15px;

    padding:18px 30px;

    text-align:center;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #0F766E,
        #0B5D58
    );

    border-radius:18px;

    font-size:15px;

    font-weight:500;

}

.footer-bottom strong{

    font-weight:600;

}

/* ==========================================================
   BACKGROUND DECORATION
==========================================================*/

.footer-modern::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(15,118,110,.05);

    right:-180px;

    bottom:-160px;

}

.footer-modern::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(20,184,166,.08);

    left:-80px;

    top:60px;

}

/* ==========================================================
   RESPONSIVE
==========================================================*/

@media (max-width:991px){

    .footer-brand{

        flex-direction:column;

        text-align:center;

    }

    .footer-brand img{

        margin-right:0;

        margin-bottom:15px;

    }

    .footer-description{

        max-width:100%;

        text-align:center;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-modern h5{

        margin-top:25px;

    }

}

@media (max-width:768px){

    .footer-bottom{

        font-size:13px;

        padding:16px;

    }

    .footer-contact .icon{

        width:42px;

        height:42px;

        font-size:16px;

    }

}