/* =========================================
   GOVERNMENT OF SINT MAARTEN
   HEADER + NAVIGATION
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    width:100%;
    overflow-x:hidden;
}

body{
    width:100%;
    min-width:0;
    font-family:'Roboto',sans-serif;
    background:#fff;
    color:#333;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1400px;
    margin:0 auto;
}


/* =========================================
   HEADER
========================================= */

.header{
    width:100%;
    background:#fff;
    border-bottom:1px solid #e5e5e5;
    padding:18px 0;
    position:relative;
    z-index:1000;
}

.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
}


/* =========================================
   LOGO
========================================= */

.logo{
    display:flex;
    align-items:center;
    min-width:0;
}

.logo a{
    display:flex;
    flex-shrink:0;
}

.logo img{
    display:block;
    width:80px;
    height:auto;
    margin-right:18px;
}

.logo-text{
    min-width:0;
}

.logo-text h2{
    color:#333;
    font-size:20px;
    line-height:1.3;
    font-weight:700;
    margin:0 0 6px;
}

.logo-text span{
    display:block;
    color:#666;
    font-size:15px;
    line-height:1.6;
}


/* =========================================
   HEADER RIGHT
========================================= */

.header-right{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:25px;
    flex-shrink:0;
}


/* LANGUAGE */

.language select{
    height:38px;
    padding:6px 32px 6px 10px;
    border:0;
    border-bottom:2px solid #ddd;
    outline:none;
    background:#fff;
    color:#444;
    font-family:inherit;
    font-size:14px;
    cursor:pointer;
}


/* SOCIAL */

.social{
    display:flex;
    align-items:center;
    gap:17px;
}

.social a{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#444;
    font-size:18px;
    transition:.25s ease;
}

.social a:hover{
    color:#c94d5d;
}


/* SEARCH */

.search a{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d64045;
    font-size:21px;
    transition:.25s ease;
}

.search a:hover{
    color:#003366;
}


/* =========================================
   NAVIGATION
========================================= */

.navbar{
    width:100%;
    background:#d96a72;
    position:relative;
    z-index:999;
}

.navbar .container{
    display:flex;
    align-items:center;
    justify-content:center;
}

.navbar ul{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
}

.navbar ul li{
    position:relative;
}

.navbar ul li a{
    display:block;
    color:#fff;
    font-size:17px;
    font-weight:500;
    line-height:1;
    padding:19px 0;
    transition:.25s ease;
}

.navbar ul li a:hover{
    color:#ffe9b1;
}


/* UNDERLINE */

.navbar ul li::after{
    content:"";
    position:absolute;
    left:0;
    bottom:8px;
    width:0;
    height:3px;
    background:#fff;
    transition:.25s ease;
}

.navbar ul li:hover::after{
    width:100%;
}


/* =========================================
   TABLET
========================================= */

@media(max-width:1100px){

    .header .container{
        gap:20px;
    }

    .logo img{
        width:70px;
        margin-right:13px;
    }

    .logo-text h2{
        font-size:18px;
    }

    .logo-text span{
        font-size:13px;
        line-height:1.5;
    }

    .header-right{
        gap:17px;
    }

    .navbar ul{
        gap:25px;
    }

    .navbar ul li a{
        font-size:15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .container{
        width:92%;
    }

    .header{
        padding:15px 0;
    }

    .header .container{
        flex-direction:column;
        gap:18px;
    }

    .logo{
        justify-content:center;
        text-align:center;
    }

    .logo img{
        width:65px;
        margin-right:12px;
    }

    .logo-text h2{
        font-size:17px;
    }

    .logo-text span{
        font-size:12px;
    }

    .header-right{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }

    .navbar .container{
        width:100%;
    }

    .navbar ul{
        width:100%;
        flex-direction:column;
        gap:0;
    }

    .navbar ul li{
        width:100%;
        text-align:center;
    }

    .navbar ul li a{
        padding:13px 15px;
        font-size:15px;
    }

    .navbar ul li::after{
        display:none;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .logo{
        width:100%;
    }

    .logo img{
        width:58px;
    }

    .logo-text{
        text-align:left;
    }

    .logo-text h2{
        font-size:15px;
    }

    .logo-text span{
        font-size:11px;
        line-height:1.4;
    }

    .social{
        gap:13px;
    }

    .social a{
        font-size:16px;
    }

    .search a{
        font-size:19px;
    }

}
/* =========================================
   GOVERNMENT OF SINT MAARTEN
   FOOTER
========================================= */

.footer{
    width:100%;
    background:#f4f4f4;
    color:#444;
    border-top:1px solid #ddd;
}


/* =========================================
   FOOTER MAIN
========================================= */

.footer .container{
    width:90%;
    max-width:1400px;
    margin:0 auto;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.35fr 1fr 1fr 1.25fr;
    gap:50px;
    padding:55px 0 45px;
}


/* =========================================
   FOOTER BOX
========================================= */

.footer-box{
    min-width:0;
}

.footer-box h3{
    color:#333;
    font-size:17px;
    font-weight:700;
    margin:0 0 20px;
    padding-bottom:10px;
    border-bottom:2px solid #d96a72;
}

.footer-box h4{
    color:#333;
    font-size:14px;
    font-weight:700;
    margin:20px 0 8px;
}

.footer-box p{
    color:#666;
    font-size:13px;
    line-height:1.7;
    margin:0 0 5px;
}


/* =========================================
   FOOTER LOGO
========================================= */

.footer-logo{
    display:block;
    width:65px;
    height:auto;
    margin-bottom:15px;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-box ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-box ul li{
    margin-bottom:10px;
}

.footer-box ul li a{
    color:#666;
    font-size:13px;
    text-decoration:none;
    transition:.25s ease;
}

.footer-box ul li a:hover{
    color:#d64045;
    padding-left:4px;
}


/* =========================================
   CONTACT
========================================= */

.footer-box p i{
    width:18px;
    margin-right:6px;
    color:#d64045;
}

.footer-box p a{
    color:#666;
    text-decoration:none;
}

.footer-box p a:hover{
    color:#d64045;
}


/* =========================================
   FOOTER SOCIAL
========================================= */

.footer-social{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:20px;
}

.footer-social a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #d5d5d5;
    background:#fff;
    color:#555;
    font-size:14px;
    transition:.25s ease;
}

.footer-social a:hover{
    background:#d96a72;
    border-color:#d96a72;
    color:#fff;
}


/* =========================================
   COPYRIGHT
========================================= */

.copyright{
    width:100%;
    background:#333;
    border-top:1px solid #444;
}

.copyright .container{
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.copyright p{
    color:#ddd;
    font-size:12px;
    line-height:1.6;
    text-align:center;
    margin:0;
}


/* =========================================
   TABLET
========================================= */

@media(max-width:1050px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:35px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:600px){

    .footer .container{
        width:92%;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
        padding:40px 0 35px;
    }

    .footer-box h3{
        font-size:16px;
    }

    .footer-logo{
        width:60px;
    }

    .copyright .container{
        min-height:auto;
        padding:16px 0;
    }

    .copyright p{
        font-size:11px;
    }

}
/* =========================================================
   HOME PAGE - PART 1 CSS
   Hero + Welcome + Aviation
========================================================= */


/* =========================================================
   HERO SECTION
========================================================= */

.hero{
    position:relative;
    width:100%;
    min-height:570px;

    background-image:
        linear-gradient(
            rgba(0,35,65,.55),
            rgba(0,35,65,.65)
        ),
        url("../images/hero.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;
}

.hero-overlay{
    width:100%;
    min-height:570px;

    display:flex;
    align-items:center;
}

.hero .container{
    width:90%;
    max-width:1400px;
    margin:0 auto;
}

.hero-content{
    max-width:760px;
    color:#fff;
    padding:70px 0;
}

.hero-label{
    display:inline-block;

    margin-bottom:15px;

    color:#ffe9b1;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
}

.hero-content h1{
    margin:0 0 20px;

    color:#fff;

    font-size:46px;
    line-height:1.18;
    font-weight:700;
}

.hero-content p{
    max-width:700px;

    margin:0 0 28px;

    color:#f4f4f4;

    font-size:16px;
    line-height:1.8;
}


/* HERO BUTTON */

.hero-content .btn{
    display:inline-flex;
    align-items:center;
    gap:9px;

    padding:13px 22px;

    background:#d96a72;
    color:#fff;

    border-radius:3px;

    font-size:13px;
    font-weight:700;

    transition:.25s ease;
}

.hero-content .btn:hover{
    background:#c94d5d;
    transform:translateY(-2px);
}


/* =========================================================
   COMMON SECTION TITLE
========================================================= */

.section-title{
    max-width:850px;
    margin:0 auto 40px;

    text-align:center;
}

.section-title > span{
    display:block;

    margin-bottom:8px;

    color:#c94d5d;

    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    margin:0 0 15px;

    color:#333;

    font-size:34px;
    line-height:1.3;
    font-weight:700;
}

.section-title p{
    margin:0;

    color:#666;

    font-size:15px;
    line-height:1.8;
}


/* =========================================================
   WELCOME SECTION
========================================================= */

.welcome-section{
    width:100%;

    background:#fff;

    padding:75px 0;
}

.welcome-section .section-title{
    margin-bottom:0;
}


/* =========================================================
   AVIATION SECTION
========================================================= */

.aviation-section{
    width:100%;

    background:#f7f7f7;

    padding:75px 0;
}

.aviation-section .section-heading,
.maritime-section .section-heading{
    margin-bottom:35px;
}

.section-heading > span{
    display:block;

    margin-bottom:8px;

    color:#c94d5d;

    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
}

.section-heading h2{
    margin:0;

    color:#333;

    font-size:34px;
    line-height:1.3;
    font-weight:700;
}


/* =========================================================
   INFO BOX
========================================================= */

.info-box{
    width:100%;

    background:#fff;

    border:1px solid #e2e2e2;

    border-left:4px solid #d96a72;

    padding:28px 30px;

    margin-bottom:18px;

    transition:.25s ease;
}

.info-box:hover{
    border-left-color:#003366;

    box-shadow:0 8px 22px rgba(0,0,0,.06);
}


/* INFO BOX HEADING */

.info-box h3{
    display:flex;
    align-items:center;
    gap:10px;

    margin:0 0 12px;

    color:#333;

    font-size:20px;
    font-weight:700;
}

.info-box h3 i{
    color:#d64045;

    font-size:19px;
}


/* INFO BOX TEXT */

.info-box p{
    margin:0;

    color:#666;

    font-size:14px;
    line-height:1.8;
}


/* INFO BOX LIST */

.info-box ul{
    margin:0;
    padding:0;

    list-style:none;
}

.info-box ul li{
    position:relative;

    padding:8px 0 8px 24px;

    color:#666;

    font-size:14px;
    line-height:1.7;

    border-bottom:1px solid #eee;
}

.info-box ul li:last-child{
    border-bottom:0;
}

.info-box ul li::before{
    content:"";

    position:absolute;

    left:2px;
    top:16px;

    width:7px;
    height:7px;

    background:#d96a72;

    border-radius:50%;
}


/* =========================================================
   PART 1 RESPONSIVE
========================================================= */

@media(max-width:900px){

    .hero,
    .hero-overlay{
        min-height:520px;
    }

    .hero-content{
        max-width:680px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .section-title h2,
    .section-heading h2{
        font-size:30px;
    }

}


@media(max-width:650px){

    .hero,
    .hero-overlay{
        min-height:500px;
    }

    .hero .container{
        width:92%;
    }

    .hero-content{
        padding:55px 0;
    }

    .hero-content h1{
        font-size:30px;
        line-height:1.25;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.7;
    }

    .welcome-section,
    .aviation-section{
        padding:50px 0;
    }

    .section-title{
        margin-bottom:30px;
    }

    .section-title h2,
    .section-heading h2{
        font-size:27px;
    }

    .section-title p{
        font-size:14px;
    }

    .info-box{
        padding:22px;
    }

    .info-box h3{
        font-size:18px;
    }

    .info-box p,
    .info-box ul li{
        font-size:13px;
    }

}
/* =========================================================
   HOME PAGE - PART 2 CSS
   Maritime Section
========================================================= */


/* =========================================================
   MARITIME SECTION
========================================================= */

.maritime-section{
    width:100%;
    background:#fff;
    padding:75px 0;
}

.maritime-section .section-heading{
    margin-bottom:35px;
}

.maritime-section .section-heading > span{
    display:block;
    margin-bottom:8px;

    color:#c94d5d;

    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
}

.maritime-section .section-heading h2{
    margin:0;

    color:#333;

    font-size:34px;
    line-height:1.3;
    font-weight:700;
}


/* =========================================================
   MARITIME INFO BOX
========================================================= */

.maritime-section .info-box{
    width:100%;

    background:#f8f8f8;

    border:1px solid #e2e2e2;
    border-left:4px solid #003366;

    padding:28px 30px;

    margin-bottom:18px;

    transition:.25s ease;
}

.maritime-section .info-box:hover{
    border-left-color:#d96a72;

    background:#fff;

    box-shadow:0 8px 22px rgba(0,0,0,.06);
}


/* =========================================================
   MARITIME HEADINGS
========================================================= */

.maritime-section .info-box h3{
    display:flex;
    align-items:center;
    gap:10px;

    margin:0 0 12px;

    color:#333;

    font-size:20px;
    font-weight:700;
}

.maritime-section .info-box h3 i{
    color:#003366;
    font-size:19px;
}


/* =========================================================
   MARITIME TEXT
========================================================= */

.maritime-section .info-box p{
    margin:0;

    color:#666;

    font-size:14px;
    line-height:1.8;
}


/* =========================================================
   MARITIME CORE TASKS
========================================================= */

.maritime-section .info-box ul{
    margin:0;
    padding:0;

    list-style:none;
}

.maritime-section .info-box ul li{
    position:relative;

    padding:8px 0 8px 24px;

    color:#666;

    font-size:14px;
    line-height:1.7;

    border-bottom:1px solid #e5e5e5;
}

.maritime-section .info-box ul li:last-child{
    border-bottom:0;
}

.maritime-section .info-box ul li::before{
    content:"";

    position:absolute;

    left:2px;
    top:16px;

    width:7px;
    height:7px;

    background:#d96a72;

    border-radius:50%;
}


/* =========================================================
   MARITIME RESPONSIVE
========================================================= */

@media(max-width:900px){

    .maritime-section{
        padding:60px 0;
    }

    .maritime-section .section-heading h2{
        font-size:30px;
    }

}


@media(max-width:650px){

    .maritime-section{
        padding:50px 0;
    }

    .maritime-section .section-heading h2{
        font-size:27px;
    }

    .maritime-section .info-box{
        padding:22px;
    }

    .maritime-section .info-box h3{
        font-size:18px;
    }

    .maritime-section .info-box p,
    .maritime-section .info-box ul li{
        font-size:13px;
    }

}
/* =========================================================
   HOME PAGE - PART 3 CSS
   Department Information + Contact
========================================================= */


/* =========================================================
   DEPARTMENT INFORMATION
========================================================= */

.department-info{
    width:100%;
    background:#f7f7f7;
    padding:75px 0;
}

.department-info .section-title{
    margin-bottom:40px;
}


/* =========================================================
   INFORMATION GRID
========================================================= */

.info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}


/* =========================================================
   INFORMATION CARD
========================================================= */

.info-card{
    background:#fff;

    border:1px solid #e2e2e2;

    padding:28px 22px;

    min-height:210px;

    text-align:center;

    transition:.25s ease;
}

.info-card:hover{
    border-color:#d96a72;

    transform:translateY(-4px);

    box-shadow:0 10px 24px rgba(0,0,0,.07);
}

.info-card > i{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 17px;

    background:#fbeaec;

    color:#c94d5d;

    font-size:21px;
}

.info-card h3{
    margin:0 0 10px;

    color:#333;

    font-size:18px;
    font-weight:700;
}

.info-card p{
    margin:0;

    color:#666;

    font-size:13px;
    line-height:1.7;
}

.info-card p a{
    color:#c94d5d;
    text-decoration:none;
    word-break:break-word;
}

.info-card p a:hover{
    color:#003366;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section{
    width:100%;

    background:#fff;

    padding:75px 0;
}

.contact-section .section-title{
    margin-bottom:40px;
}


/* =========================================================
   CONTACT GRID
========================================================= */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}


/* =========================================================
   CONTACT BOX
========================================================= */

.contact-box{
    background:#f8f8f8;

    border:1px solid #e2e2e2;

    padding:30px 25px;

    text-align:center;

    transition:.25s ease;
}

.contact-box:hover{
    background:#fff;

    border-color:#d96a72;

    transform:translateY(-4px);

    box-shadow:0 10px 24px rgba(0,0,0,.07);
}

.contact-box > i{
    color:#c94d5d;

    font-size:27px;

    margin-bottom:17px;
}

.contact-box h3{
    margin:0 0 10px;

    color:#333;

    font-size:19px;
}

.contact-box p{
    margin:0;

    color:#666;

    font-size:14px;
    line-height:1.7;
}

.contact-box p a{
    color:#c94d5d;
    text-decoration:none;
}

.contact-box p a:hover{
    color:#003366;
}


/* =========================================================
   PART 3 RESPONSIVE
========================================================= */

@media(max-width:1050px){

    .info-grid{
        grid-template-columns:1fr 1fr;
    }

    .contact-grid{
        grid-template-columns:1fr 1fr;
    }

}


@media(max-width:650px){

    .department-info,
    .contact-section{
        padding:50px 0;
    }

    .info-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .info-card{
        min-height:auto;
    }

    .contact-box{
        padding:25px 20px;
    }

}
/* =========================================================
   HOME PAGE - PART 4 CSS
   CTA + News + Map
========================================================= */


/* =========================================================
   CALL TO ACTION
========================================================= */

.cta-section{
    width:100%;
    background:#d96a72;
    padding:65px 0;
    text-align:center;
    color:#fff;
}

.cta-section .container{
    max-width:900px;
    margin:0 auto;
}

.cta-label{
    display:inline-block;
    margin-bottom:12px;

    color:#ffe9b1;

    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
}

.cta-section h2{
    margin:0 0 15px;

    color:#fff;

    font-size:34px;
    line-height:1.3;
    font-weight:700;
}

.cta-section p{
    max-width:700px;

    margin:0 auto 25px;

    color:#fff;

    font-size:15px;
    line-height:1.7;
}


/* CTA BUTTON */

.cta-section .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    padding:13px 22px;

    background:#fff;
    color:#c94d5d;

    border-radius:3px;

    font-size:13px;
    font-weight:700;

    transition:.25s ease;
}

.cta-section .btn:hover{
    background:#003366;
    color:#fff;
}


/* =========================================================
   NEWS SECTION
========================================================= */

.news-section{
    width:100%;
    background:#f7f7f7;
    padding:75px 0;
}

.news-section .section-title{
    margin-bottom:40px;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}


/* NEWS CARD */

.news-card{
    background:#fff;

    border:1px solid #e2e2e2;

    padding:28px;

    min-height:245px;

    transition:.25s ease;
}

.news-card:hover{
    border-color:#d96a72;

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(0,0,0,.07);
}

.news-card > i{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fbeaec;

    color:#c94d5d;

    font-size:21px;

    margin-bottom:20px;
}

.news-card h3{
    margin:0 0 10px;

    color:#333;

    font-size:19px;
}

.news-card p{
    margin:0 0 18px;

    color:#666;

    font-size:14px;
    line-height:1.7;
}

.news-card a{
    display:inline-flex;
    align-items:center;
    gap:7px;

    color:#c94d5d;

    font-size:13px;
    font-weight:700;

    text-decoration:none;
}

.news-card a:hover{
    color:#003366;
}


/* =========================================================
   MAP / LOCATION SECTION
========================================================= */

.map-section{
    width:100%;
    background:#fff;
    padding:75px 0;
}

.map-section .section-title{
    margin-bottom:35px;
}

.map-box{
    width:100%;
    min-height:270px;

    border:1px solid #ddd;

    background:#f2f3f4;

    overflow:hidden;
}

.map-placeholder{
    width:100%;
    min-height:270px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:30px;

    text-align:center;

    background:#f1f3f4;

    color:#333;

    text-decoration:none;

    transition:.25s ease;
}

.map-placeholder:hover{
    background:#e8eaec;
}

.map-placeholder > i{
    color:#d64045;

    font-size:42px;

    margin-bottom:15px;
}

.map-placeholder h3{
    margin:0 0 6px;

    color:#333;

    font-size:20px;
}

.map-placeholder p{
    margin:0 0 13px;

    color:#666;

    font-size:14px;
}

.map-placeholder span{
    display:inline-flex;
    align-items:center;
    gap:7px;

    color:#c94d5d;

    font-size:13px;
    font-weight:700;
}


/* =========================================================
   PART 4 RESPONSIVE
========================================================= */

@media(max-width:900px){

    .news-grid{
        grid-template-columns:1fr 1fr;
    }

    .cta-section h2{
        font-size:30px;
    }

}


@media(max-width:650px){

    .cta-section{
        padding:50px 0;
    }

    .cta-section h2{
        font-size:26px;
    }

    .cta-section p{
        font-size:14px;
    }

    .news-section,
    .map-section{
        padding:50px 0;
    }

    .news-grid{
        grid-template-columns:1fr;
    }

    .news-card{
        min-height:auto;
    }

    .map-box,
    .map-placeholder{
        min-height:230px;
    }

}
/* =========================================================
   ABOUT PAGE
   Department of Civil Aviation,
   Shipping & Maritime Affairs
========================================================= */


/* =========================================================
   PAGE BANNER
========================================================= */

.page-banner{
    width:100%;
    min-height:320px;

    background-image:
        linear-gradient(
            rgba(0,35,65,.62),
            rgba(0,35,65,.72)
        ),
        url("../images/about.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;
}

.banner-overlay{
    width:100%;
    min-height:320px;

    display:flex;
    align-items:center;
}

.page-banner .container{
    width:90%;
    max-width:1400px;
    margin:0 auto;
}

.banner-label{
    display:block;

    margin-bottom:10px;

    color:#ffe9b1;

    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
}

.page-banner h1{
    margin:0 0 12px;

    color:#fff;

    font-size:42px;
    line-height:1.2;
    font-weight:700;
}

.page-banner p{
    margin:0;

    color:#f3f3f3;

    font-size:15px;
    line-height:1.7;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-page{
    width:100%;
    background:#fff;
    padding:75px 0;
}

.about-page .section-title{
    margin-bottom:45px;
}

.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:55px;
}


/* IMAGE */

.about-image{
    width:100%;
    overflow:hidden;
}

.about-image img{
    display:block;

    width:100%;
    height:390px;

    object-fit:cover;

    border-radius:2px;
}


/* TEXT */

.about-text{
    width:100%;
}

.about-text p{
    margin:0 0 18px;

    color:#666;

    font-size:15px;
    line-height:1.85;
}

.about-text p:last-child{
    margin-bottom:0;
}


/* =========================================================
   MISSION & VISION
========================================================= */

.mission-vision{
    width:100%;
    background:#f7f7f7;
    padding:70px 0;
}

.mv-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.mv-card{
    background:#fff;

    border:1px solid #e2e2e2;

    padding:35px;

    text-align:center;

    transition:.25s ease;
}

.mv-card:hover{
    border-color:#d96a72;

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(0,0,0,.07);
}

.mv-card > i{
    width:58px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 18px;

    background:#fbeaec;

    color:#c94d5d;

    font-size:23px;
}

.mv-card h3{
    margin:0 0 12px;

    color:#333;

    font-size:21px;
}

.mv-card p{
    max-width:600px;

    margin:0 auto;

    color:#666;

    font-size:14px;
    line-height:1.8;
}


/* =========================================================
   RESPONSIBILITIES
========================================================= */

.responsibilities{
    width:100%;
    background:#fff;
    padding:75px 0;
}

.responsibilities .section-title{
    margin-bottom:40px;
}

.responsibilities .info-box{
    max-width:1000px;
    margin:0 auto;

    background:#f8f8f8;

    border:1px solid #e2e2e2;
    border-left:4px solid #d96a72;

    padding:30px;
}

.responsibilities .info-box ul{
    margin:0;
    padding:0;

    list-style:none;
}

.responsibilities .info-box li{
    position:relative;

    padding:12px 0 12px 28px;

    color:#555;

    font-size:14px;
    line-height:1.6;

    border-bottom:1px solid #e5e5e5;
}

.responsibilities .info-box li:last-child{
    border-bottom:0;
}

.responsibilities .info-box li::before{
    content:"";

    position:absolute;

    left:4px;
    top:20px;

    width:8px;
    height:8px;

    background:#d96a72;

    border-radius:50%;
}


/* =========================================================
   ABOUT PAGE - DEPARTMENT INFORMATION
========================================================= */

.about-page + .mission-vision + .responsibilities + .department-info{
    background:#f7f7f7;
}

.department-info{
    width:100%;
    background:#f7f7f7;
    padding:75px 0;
}

.department-info .section-title{
    margin-bottom:40px;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.info-card{
    background:#fff;

    border:1px solid #e2e2e2;

    padding:28px 22px;

    min-height:205px;

    text-align:center;

    transition:.25s ease;
}

.info-card:hover{
    border-color:#d96a72;

    transform:translateY(-4px);

    box-shadow:0 10px 24px rgba(0,0,0,.07);
}

.info-card > i{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 17px;

    background:#fbeaec;

    color:#c94d5d;

    font-size:21px;
}

.info-card h3{
    margin:0 0 10px;

    color:#333;

    font-size:18px;
}

.info-card p{
    margin:0;

    color:#666;

    font-size:13px;
    line-height:1.7;
}

.info-card p a{
    color:#c94d5d;
    text-decoration:none;
    word-break:break-word;
}

.info-card p a:hover{
    color:#003366;
}


/* =========================================================
   ABOUT PAGE RESPONSIVE
========================================================= */

@media(max-width:1000px){

    .about-content{
        grid-template-columns:1fr;
        gap:35px;
    }

    .about-image img{
        height:350px;
    }

    .info-grid{
        grid-template-columns:1fr 1fr;
    }

}


@media(max-width:700px){

    .page-banner,
    .banner-overlay{
        min-height:260px;
    }

    .page-banner h1{
        font-size:31px;
    }

    .page-banner p{
        font-size:13px;
    }

    .about-page,
    .mission-vision,
    .responsibilities,
    .department-info{
        padding:50px 0;
    }

    .about-image img{
        height:270px;
    }

    .mv-grid{
        grid-template-columns:1fr;
    }

    .mv-card{
        padding:28px 22px;
    }

    .info-grid{
        grid-template-columns:1fr;
    }

    .info-card{
        min-height:auto;
    }

}


@media(max-width:480px){

    .page-banner h1{
        font-size:27px;
    }

    .about-text p{
        font-size:14px;
    }

    .responsibilities .info-box{
        padding:20px;
    }

}
/* =========================================================
   MARITIME PAGE
   Shipping & Maritime Affairs
========================================================= */


/* =========================================================
   MARITIME INTRO
========================================================= */

.maritime-intro{
    width:100%;
    background:#fff;
    padding:70px 0 55px;
}

.maritime-intro .section-title{
    max-width:850px;
    margin:0 auto;
}


/* =========================================================
   MARITIME MISSION / VISION
========================================================= */

.maritime-mission{
    width:100%;
    background:#f7f7f7;
    padding:65px 0;
}

.maritime-mission .mv-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.maritime-mission .mv-card{
    background:#fff;
    border:1px solid #e1e1e1;
    padding:34px 30px;
    text-align:center;
    transition:.25s ease;
}

.maritime-mission .mv-card:hover{
    border-color:#d96a72;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.07);
}

.maritime-mission .mv-card > i{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;

    background:#fbeaec;
    color:#c94d5d;

    font-size:23px;
}

.maritime-mission .mv-card h3{
    margin:0 0 12px;
    color:#333;
    font-size:21px;
}

.maritime-mission .mv-card p{
    max-width:650px;
    margin:0 auto;

    color:#666;
    font-size:14px;
    line-height:1.8;
}


/* =========================================================
   MARITIME RESPONSIBILITIES
========================================================= */

.maritime-responsibilities{
    width:100%;
    background:#fff;
    padding:75px 0;
}

.maritime-responsibilities .section-title{
    margin-bottom:40px;
}


/* TASK GRID */

.maritime-task-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}


/* TASK CARD */

.maritime-task{
    background:#fff;

    border:1px solid #e1e1e1;
    border-top:3px solid #003366;

    padding:28px 24px;

    min-height:220px;

    transition:.25s ease;
}

.maritime-task:hover{
    border-top-color:#d96a72;

    transform:translateY(-4px);

    box-shadow:0 10px 24px rgba(0,0,0,.07);
}

.maritime-task > i{
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:17px;

    background:#eef4f8;
    color:#003366;

    font-size:20px;
}

.maritime-task h3{
    margin:0 0 10px;

    color:#333;

    font-size:18px;
    line-height:1.4;
}

.maritime-task p{
    margin:0;

    color:#666;

    font-size:13px;
    line-height:1.75;
}


/* =========================================================
   MARITIME ADMINISTRATION
========================================================= */

.maritime-administration{
    width:100%;
    background:#003b63;
    padding:55px 0;
}

.administration-content{
    display:flex;
    align-items:center;
    gap:25px;

    max-width:950px;
    margin:0 auto;
}

.administration-icon{
    flex:0 0 70px;

    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.12);

    color:#fff;

    font-size:29px;
}

.administration-content .banner-label{
    display:block;

    margin:0 0 7px;

    color:#ffe9b1;

    font-size:10px;
    font-weight:700;
    letter-spacing:2px;
}

.administration-content h2{
    margin:0 0 10px;

    color:#fff;

    font-size:30px;
    line-height:1.3;
}

.administration-content p{
    max-width:800px;

    margin:0;

    color:#e9f0f4;

    font-size:14px;
    line-height:1.8;
}


/* =========================================================
   OFFICIAL MARITIME RESOURCES
========================================================= */

.maritime-official{
    width:100%;
    background:#f7f7f7;
    padding:70px 0;
}

.maritime-official .section-title{
    margin-bottom:35px;
}

.maritime-links{
    max-width:900px;
    margin:0 auto;

    display:flex;
    flex-direction:column;
    gap:12px;
}


/* OFFICIAL LINK */

.maritime-link{
    display:flex;
    align-items:center;
    gap:16px;

    width:100%;

    padding:19px 22px;

    background:#fff;

    border:1px solid #dedede;

    color:#333;

    text-decoration:none;

    transition:.25s ease;
}

.maritime-link:hover{
    border-color:#d96a72;
    transform:translateX(4px);
    box-shadow:0 7px 18px rgba(0,0,0,.06);
}

.maritime-link > i:first-child{
    flex:0 0 42px;

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fbeaec;

    color:#c94d5d;

    font-size:17px;
}

.maritime-link span{
    flex:1;

    display:flex;
    flex-direction:column;
    gap:4px;
}

.maritime-link strong{
    color:#333;
    font-size:15px;
}

.maritime-link small{
    color:#777;
    font-size:12px;
}

.maritime-link > i:last-child{
    color:#003366;
    font-size:14px;
}


/* =========================================================
   MARITIME PAGE RESPONSIVE
========================================================= */

@media(max-width:1000px){

    .maritime-task-grid{
        grid-template-columns:1fr 1fr;
    }

}


@media(max-width:700px){

    .maritime-intro,
    .maritime-responsibilities,
    .maritime-official{
        padding:50px 0;
    }

    .maritime-mission{
        padding:50px 0;
    }

    .maritime-mission .mv-grid{
        grid-template-columns:1fr;
    }

    .maritime-task-grid{
        grid-template-columns:1fr;
    }

    .maritime-task{
        min-height:auto;
    }

    .maritime-administration{
        padding:45px 0;
    }

    .administration-content{
        align-items:flex-start;
        flex-direction:column;
    }

    .administration-content h2{
        font-size:26px;
    }

}


@media(max-width:480px){

    .maritime-mission .mv-card{
        padding:27px 20px;
    }

    .maritime-task{
        padding:24px 20px;
    }

    .maritime-link{
        padding:16px;
        gap:12px;
    }

    .maritime-link strong{
        font-size:14px;
    }

    .maritime-link small{
        font-size:11px;
    }

    .maritime-link > i:first-child{
        flex:0 0 38px;

        width:38px;
        height:38px;
    }

}
/* =========================================================
   AVIATION PAGE
   Civil Aviation
========================================================= */


/* =========================================================
   AVIATION INTRO
========================================================= */

.aviation-intro{
    width:100%;
    background:#fff;
    padding:70px 0 55px;
}

.aviation-intro .section-title{
    max-width:850px;
    margin:0 auto;
}


/* =========================================================
   AVIATION MISSION / VISION
========================================================= */

.aviation-mission{
    width:100%;
    background:#f7f7f7;
    padding:65px 0;
}

.aviation-mission .mv-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.aviation-mission .mv-card{
    background:#fff;
    border:1px solid #e1e1e1;
    padding:34px 30px;
    text-align:center;
    transition:.25s ease;
}

.aviation-mission .mv-card:hover{
    border-color:#d96a72;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.07);
}

.aviation-mission .mv-card > i{
    width:58px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 18px;

    background:#fbeaec;
    color:#c94d5d;

    font-size:23px;
}

.aviation-mission .mv-card h3{
    margin:0 0 12px;

    color:#333;
    font-size:21px;
}

.aviation-mission .mv-card p{
    max-width:650px;
    margin:0 auto;

    color:#666;

    font-size:14px;
    line-height:1.8;
}


/* =========================================================
   AVIATION RESPONSIBILITIES
========================================================= */

.aviation-responsibilities{
    width:100%;
    background:#fff;
    padding:75px 0;
}

.aviation-responsibilities .section-title{
    margin-bottom:40px;
}


/* =========================================================
   AVIATION TASK GRID
========================================================= */

.aviation-task-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.aviation-task{
    background:#fff;

    border:1px solid #e1e1e1;
    border-top:3px solid #003366;

    padding:28px 24px;

    min-height:220px;

    transition:.25s ease;
}

.aviation-task:hover{
    border-top-color:#d96a72;

    transform:translateY(-4px);

    box-shadow:0 10px 24px rgba(0,0,0,.07);
}

.aviation-task > i{
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:17px;

    background:#eef4f8;
    color:#003366;

    font-size:20px;
}

.aviation-task h3{
    margin:0 0 10px;

    color:#333;

    font-size:18px;
    line-height:1.4;
}

.aviation-task p{
    margin:0;

    color:#666;

    font-size:13px;
    line-height:1.75;
}


/* =========================================================
   AVIATION AUTHORITY
========================================================= */

.aviation-authority{
    width:100%;
    background:#003b63;
    padding:55px 0;
}

.authority-content{
    display:flex;
    align-items:center;
    gap:25px;

    max-width:950px;
    margin:0 auto;
}

.authority-icon{
    flex:0 0 70px;

    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.12);

    color:#fff;

    font-size:29px;
}

.authority-content .banner-label{
    display:block;

    margin:0 0 7px;

    color:#ffe9b1;

    font-size:10px;
    font-weight:700;
    letter-spacing:2px;
}

.authority-content h2{
    margin:0 0 10px;

    color:#fff;

    font-size:30px;
    line-height:1.3;
}

.authority-content p{
    max-width:800px;

    margin:0;

    color:#e9f0f4;

    font-size:14px;
    line-height:1.8;
}


/* =========================================================
   OFFICIAL AVIATION INFORMATION
========================================================= */

.aviation-official{
    width:100%;
    background:#f7f7f7;
    padding:70px 0;
}

.aviation-official .section-title{
    margin-bottom:35px;
}


/* =========================================================
   AVIATION LINKS
========================================================= */

.aviation-links{
    max-width:900px;
    margin:0 auto;

    display:flex;
    flex-direction:column;
    gap:12px;
}

.aviation-link{
    display:flex;
    align-items:center;
    gap:16px;

    width:100%;

    padding:19px 22px;

    background:#fff;

    border:1px solid #dedede;

    color:#333;

    text-decoration:none;

    transition:.25s ease;
}

.aviation-link:hover{
    border-color:#d96a72;

    transform:translateX(4px);

    box-shadow:0 7px 18px rgba(0,0,0,.06);
}

.aviation-link > i:first-child{
    flex:0 0 42px;

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fbeaec;

    color:#c94d5d;

    font-size:17px;
}

.aviation-link span{
    flex:1;

    display:flex;
    flex-direction:column;
    gap:4px;
}

.aviation-link strong{
    color:#333;
    font-size:15px;
}

.aviation-link small{
    color:#777;
    font-size:12px;
    line-height:1.5;
}

.aviation-link > i:last-child{
    color:#003366;
    font-size:14px;
}


/* =========================================================
   AVIATION RESPONSIVE
========================================================= */

@media(max-width:1000px){

    .aviation-task-grid{
        grid-template-columns:1fr 1fr;
    }

}


@media(max-width:700px){

    .aviation-intro,
    .aviation-responsibilities,
    .aviation-official{
        padding:50px 0;
    }

    .aviation-mission{
        padding:50px 0;
    }

    .aviation-mission .mv-grid{
        grid-template-columns:1fr;
    }

    .aviation-task-grid{
        grid-template-columns:1fr;
    }

    .aviation-task{
        min-height:auto;
    }

    .aviation-authority{
        padding:45px 0;
    }

    .authority-content{
        align-items:flex-start;
        flex-direction:column;
    }

    .authority-content h2{
        font-size:26px;
    }

}


@media(max-width:480px){

    .aviation-mission .mv-card{
        padding:27px 20px;
    }

    .aviation-task{
        padding:24px 20px;
    }

    .aviation-link{
        padding:16px;
        gap:12px;
    }

    .aviation-link strong{
        font-size:14px;
    }

    .aviation-link small{
        font-size:11px;
    }

    .aviation-link > i:first-child{
        flex:0 0 38px;

        width:38px;
        height:38px;
    }

}
/* =========================================================
   SERVICES PAGE
   Civil Aviation & Maritime Services
========================================================= */


/* =========================================================
   SERVICES INTRO
========================================================= */

.services-intro{
    width:100%;
    background:#fff;
    padding:70px 0 55px;
}

.services-intro .section-title{
    max-width:850px;
    margin:0 auto;
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section{
    width:100%;
    background:#f7f7f7;
    padding:70px 0;
}

.services-section.services-maritime{
    background:#fff;
}

.services-section .section-heading{
    margin-bottom:35px;
}

.services-section .section-heading > span{
    display:block;

    margin-bottom:8px;

    color:#c94d5d;

    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
}

.services-section .section-heading h2{
    margin:0;

    color:#333;

    font-size:32px;
    line-height:1.3;
    font-weight:700;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card{
    min-height:235px;

    background:#fff;

    border:1px solid #e1e1e1;
    border-top:3px solid #003366;

    padding:28px 23px;

    transition:.25s ease;
}

.services-maritime .service-card{
    background:#fdfdfd;
}

.service-card:hover{
    border-top-color:#d96a72;

    transform:translateY(-4px);

    box-shadow:0 10px 24px rgba(0,0,0,.07);
}

.service-card > i{
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:18px;

    background:#eef4f8;

    color:#003366;

    font-size:21px;
}

.service-card h3{
    margin:0 0 10px;

    color:#333;

    font-size:18px;
    line-height:1.4;
}

.service-card p{
    margin:0;

    color:#666;

    font-size:13px;
    line-height:1.75;
}


/* =========================================================
   OFFICIAL RESOURCES
========================================================= */

.services-official{
    width:100%;

    background:#f7f7f7;

    padding:70px 0;
}

.services-official .section-title{
    max-width:800px;
    margin:0 auto 35px;
}


/* =========================================================
   OFFICIAL SERVICE LINKS
========================================================= */

.service-links{
    max-width:900px;
    margin:0 auto;

    display:flex;
    flex-direction:column;
    gap:12px;
}

.service-link{
    display:flex;
    align-items:center;
    gap:16px;

    width:100%;

    padding:19px 22px;

    background:#fff;

    border:1px solid #dedede;

    color:#333;

    text-decoration:none;

    transition:.25s ease;
}

.service-link:hover{
    border-color:#d96a72;

    transform:translateX(4px);

    box-shadow:0 7px 18px rgba(0,0,0,.06);
}

.service-link > i:first-child{
    flex:0 0 42px;

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fbeaec;

    color:#c94d5d;

    font-size:17px;
}

.service-link span{
    flex:1;

    display:flex;
    flex-direction:column;
    gap:4px;
}

.service-link strong{
    color:#333;

    font-size:15px;
}

.service-link small{
    color:#777;

    font-size:12px;
    line-height:1.5;
}

.service-link > i:last-child{
    color:#003366;

    font-size:14px;
}


/* =========================================================
   SERVICES RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .service-grid{
        grid-template-columns:1fr 1fr;
    }

}


@media(max-width:700px){

    .services-intro,
    .services-section,
    .services-official{
        padding:50px 0;
    }

    .services-section .section-heading h2{
        font-size:28px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        min-height:auto;
    }

}


@media(max-width:480px){

    .service-card{
        padding:24px 20px;
    }

    .service-link{
        padding:16px;
        gap:12px;
    }

    .service-link strong{
        font-size:14px;
    }

    .service-link small{
        font-size:11px;
    }

    .service-link > i:first-child{
        flex:0 0 38px;

        width:38px;
        height:38px;
    }

}
/* =========================================================
   NEWS PAGE
   Official News & Announcements
========================================================= */


/* =========================================================
   NEWS INTRO
========================================================= */

.news-intro{
    width:100%;
    background:#fff;
    padding:70px 0 50px;
}

.news-intro .section-title{
    max-width:850px;
    margin:0 auto;
}


/* =========================================================
   OFFICIAL NEWS
========================================================= */

.official-news{
    width:100%;
    background:#f7f7f7;
    padding:65px 0 75px;
}

.official-news .container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}


/* =========================================================
   NEWS GRID
========================================================= */

.official-news .news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}


/* =========================================================
   NEWS CARD
========================================================= */

.official-news-card{
    display:flex;
    flex-direction:column;

    background:#fff;

    border:1px solid #e1e1e1;

    min-height:390px;

    transition:.25s ease;
}

.official-news-card:hover{
    border-color:#d96a72;

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(0,0,0,.07);
}


/* =========================================================
   NEWS ICON
========================================================= */

.news-card-icon{
    width:100%;
    height:105px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#003b63;

    color:#fff;

    font-size:30px;
}

.official-news-card:hover .news-card-icon{
    background:#d96a72;
}


/* =========================================================
   NEWS CONTENT
========================================================= */

.news-card-content{
    display:flex;
    flex-direction:column;
    flex:1;

    padding:25px;
}

.news-date{
    display:block;

    margin-bottom:9px;

    color:#c94d5d;

    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.news-card-content h3{
    margin:0 0 12px;

    color:#333;

    font-size:19px;
    line-height:1.45;
}

.news-card-content p{
    margin:0 0 20px;

    color:#666;

    font-size:13px;
    line-height:1.75;
}


/* =========================================================
   NEWS LINK
========================================================= */

.news-card-content a{
    display:inline-flex;
    align-items:center;
    gap:8px;

    margin-top:auto;

    color:#c94d5d;

    font-size:13px;
    font-weight:700;

    text-decoration:none;

    transition:.2s ease;
}

.news-card-content a:hover{
    color:#003366;
}

.news-card-content a i{
    font-size:11px;
}


/* =========================================================
   OFFICIAL NEWS SOURCE
========================================================= */

.news-source{
    width:100%;

    background:#003b63;

    padding:55px 0;
}

.news-source-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;

    max-width:1100px;

    margin:0 auto;
}

.news-source-inner .banner-label{
    display:block;

    margin-bottom:7px;

    color:#ffe9b1;

    font-size:10px;
    font-weight:700;
    letter-spacing:2px;
}

.news-source-inner h2{
    margin:0 0 9px;

    color:#fff;

    font-size:28px;
    line-height:1.3;
}

.news-source-inner p{
    max-width:650px;

    margin:0;

    color:#e8f0f4;

    font-size:14px;
    line-height:1.7;
}


/* =========================================================
   OFFICIAL NEWS BUTTON
========================================================= */

.news-source-inner .btn{
    flex-shrink:0;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    padding:13px 20px;

    background:#fff;
    color:#003b63;

    border-radius:3px;

    font-size:13px;
    font-weight:700;

    text-decoration:none;

    transition:.25s ease;
}

.news-source-inner .btn:hover{
    background:#d96a72;
    color:#fff;
}


/* =========================================================
   NEWS RESPONSIVE
========================================================= */

@media(max-width:1000px){

    .official-news .news-grid{
        grid-template-columns:1fr 1fr;
    }

    .official-news-card{
        min-height:370px;
    }

}


@media(max-width:700px){

    .news-intro,
    .official-news{
        padding:50px 0;
    }

    .official-news .news-grid{
        grid-template-columns:1fr;
    }

    .official-news-card{
        min-height:auto;
    }

    .news-card-content{
        padding:23px;
    }

    .news-source{
        padding:45px 0;
    }

    .news-source-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .news-source-inner h2{
        font-size:25px;
    }

}


@media(max-width:480px){

    .news-card-icon{
        height:90px;
        font-size:27px;
    }

    .news-card-content h3{
        font-size:18px;
    }

    .news-card-content p{
        font-size:13px;
    }

    .news-source-inner .btn{
        width:100%;
    }

}
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-intro{
    width:100%;
    background:#fff;
    padding:70px 0 50px;
}

.contact-intro .section-title{
    max-width:850px;
    margin:0 auto;
}


/* =========================================================
   CONTACT INFORMATION CARDS
========================================================= */

.contact-information{
    width:100%;
    background:#f7f7f7;
    padding:65px 0 75px;
}

.contact-info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.contact-info-card{
    background:#fff;
    border:1px solid #e1e1e1;
    padding:28px 22px;
    min-height:205px;
    text-align:center;
    transition:.25s ease;
}

.contact-info-card:hover{
    border-color:#d96a72;
    transform:translateY(-4px);
    box-shadow:0 10px 24px rgba(0,0,0,.07);
}

.contact-icon{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 17px;

    background:#fbeaec;
    color:#c94d5d;
    font-size:21px;
}

.contact-info-card h3{
    margin:0 0 10px;
    color:#333;
    font-size:18px;
}

.contact-info-card p{
    margin:0;
    color:#666;
    font-size:13px;
    line-height:1.75;
}

.contact-info-card a{
    color:#c94d5d;
    text-decoration:none;
    word-break:break-word;
}

.contact-info-card a:hover{
    color:#003366;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details{
    width:100%;
    background:#fff;
    padding:75px 0;
}

.contact-details-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.contact-panel{
    background:#f8f8f8;
    border:1px solid #e1e1e1;
    border-left:4px solid #003b63;
    padding:32px;
}

.contact-panel-label{
    display:block;
    margin-bottom:8px;

    color:#c94d5d;
    font-size:10px;
    font-weight:700;
    letter-spacing:2px;
}

.contact-panel h2{
    margin:0 0 14px;
    color:#333;
    font-size:27px;
    line-height:1.3;
}

.contact-panel > p{
    margin:0 0 22px;
    color:#666;
    font-size:14px;
    line-height:1.8;
}


/* =========================================================
   CONTACT DETAIL ROW
========================================================= */

.contact-detail-row{
    display:flex;
    align-items:flex-start;
    gap:13px;

    padding:13px 0;

    border-top:1px solid #e3e3e3;

    color:#555;
    font-size:14px;
    line-height:1.6;
}

.contact-detail-row i{
    width:20px;
    margin-top:3px;

    color:#c94d5d;
    text-align:center;
}

.contact-detail-row a{
    color:#555;
    text-decoration:none;
}

.contact-detail-row a:hover{
    color:#c94d5d;
}


/* =========================================================
   CONTACT LIST
========================================================= */

.contact-list{
    margin:5px 0 0;
    padding:0;
    list-style:none;
}

.contact-list li{
    display:flex;
    align-items:center;
    gap:13px;

    padding:14px 0;

    border-bottom:1px solid #e3e3e3;

    color:#555;
    font-size:14px;
}

.contact-list li:last-child{
    border-bottom:0;
}

.contact-list li i{
    width:22px;
    color:#003b63;
    text-align:center;
}


/* =========================================================
   OFFICIAL GOVERNMENT SOURCE
========================================================= */

.contact-official{
    width:100%;
    background:#003b63;
    padding:55px 0;
}

.contact-official-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;

    max-width:1100px;
    margin:0 auto;
}

.contact-official .contact-panel-label{
    color:#ffe9b1;
}

.contact-official h2{
    margin:0 0 9px;
    color:#fff;
    font-size:28px;
    line-height:1.3;
}

.contact-official p{
    max-width:680px;
    margin:0;
    color:#e8f0f4;
    font-size:14px;
    line-height:1.7;
}


/* =========================================================
   OFFICIAL BUTTON
========================================================= */

.contact-btn{
    flex-shrink:0;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    padding:13px 20px;

    background:#fff;
    color:#003b63;

    border-radius:3px;

    font-size:13px;
    font-weight:700;

    text-decoration:none;

    transition:.25s ease;
}

.contact-btn:hover{
    background:#d96a72;
    color:#fff;
}


/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media(max-width:1050px){

    .contact-info-grid{
        grid-template-columns:1fr 1fr;
    }

}


@media(max-width:700px){

    .contact-intro,
    .contact-information,
    .contact-details{
        padding:50px 0;
    }

    .contact-info-grid{
        grid-template-columns:1fr;
    }

    .contact-info-card{
        min-height:auto;
    }

    .contact-details-grid{
        grid-template-columns:1fr;
    }

    .contact-panel{
        padding:26px 22px;
    }

    .contact-official{
        padding:45px 0;
    }

    .contact-official-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .contact-official h2{
        font-size:25px;
    }

}


@media(max-width:480px){

    .contact-info-card{
        padding:24px 20px;
    }

    .contact-panel h2{
        font-size:24px;
    }

    .contact-btn{
        width:100%;
    }

}