/* =========================================
   GOVERNMENT HEADER
========================================= */

.topbar{
    background:#073b66;
    color:#ffffff;
    font-size:13px;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.topbar .container{
    max-width:1200px;
    margin:auto;
}

.topbar-inner{
    min-height:38px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.topbar-left,
.topbar-right{
    display:flex;
    align-items:center;
    gap:14px;
}

.topbar i{
    margin-right:6px;
    color:#9ed7ed;
}

.topbar a{
    color:#ffffff;
    text-decoration:none;
    transition:.25s ease;
}

.topbar a:hover{
    color:#9ed7ed;
}

.top-divider{
    color:rgba(255,255,255,.35);
}


/* =========================================
   MAIN HEADER
========================================= */

.site-header{
    background:#ffffff;
    border-bottom:4px solid #0a6f9f;
    position:relative;
    z-index:1000;
    box-shadow:0 2px 12px rgba(0,35,65,.08);
}

.header-inner{
    min-height:94px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}


/* =========================================
   BRAND / LOGO
========================================= */

.site-brand{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    color:#073b66;
    flex-shrink:0;
}

.site-logo{
    width:72px;
    height:72px;
    object-fit:contain;
    display:block;
}

.brand-content{
    display:flex;
    flex-direction:column;
    line-height:1.25;
}

.brand-content strong{
    color:#073b66;
    font-size:20px;
    font-weight:800;
    letter-spacing:-.2px;
}

.brand-content span{
    color:#647383;
    font-size:11px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1.2px;
    margin-top:5px;
}


/* =========================================
   NAVIGATION
========================================= */

.main-navigation{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:4px;
}

.nav-link{
    position:relative;
    display:flex;
    align-items:center;
    gap:6px;
    padding:34px 11px;
    color:#243746;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    transition:.25s ease;
    white-space:nowrap;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:11px;
    right:11px;
    bottom:18px;
    height:3px;
    background:#0a6f9f;
    transform:scaleX(0);
    transform-origin:center;
    transition:.25s ease;
}

.nav-link:hover{
    color:#0a6f9f;
}

.nav-link:hover::after{
    transform:scaleX(1);
}

.nav-link i{
    font-size:9px;
    margin-top:1px;
}


/* =========================================
   DROPDOWN
========================================= */

.nav-item-dropdown{
    position:relative;
}

.nav-dropdown-menu{
    position:absolute;
    top:calc(100% - 1px);
    left:0;
    min-width:235px;
    background:#ffffff;
    border-top:3px solid #0a6f9f;
    box-shadow:0 12px 30px rgba(0,35,65,.15);
    padding:8px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:.22s ease;
}

.nav-item-dropdown:hover .nav-dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.nav-dropdown-menu a{
    display:block;
    padding:11px 18px;
    color:#304555;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    border-bottom:1px solid #edf1f4;
    transition:.2s ease;
}

.nav-dropdown-menu a:last-child{
    border-bottom:0;
}

.nav-dropdown-menu a:hover{
    background:#f2f7fa;
    color:#0a6f9f;
    padding-left:23px;
}


/* =========================================
   ONLINE APPLICATION BUTTON
========================================= */

.application-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-left:8px;
    padding:12px 17px;
    background:#0a6f9f;
    color:#ffffff;
    text-decoration:none;
    border-radius:3px;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    white-space:nowrap;
    transition:.25s ease;
}

.application-btn:hover{
    background:#073b66;
    color:#ffffff;
    box-shadow:0 5px 14px rgba(7,59,102,.22);
    transform:translateY(-1px);
}


/* =========================================
   MOBILE BUTTON
========================================= */

.mobile-menu-btn{
    display:none;
    width:44px;
    height:44px;
    border:1px solid #d9e1e7;
    background:#ffffff;
    color:#073b66;
    border-radius:4px;
    font-size:20px;
    cursor:pointer;
}


/* =========================================
   TABLET
========================================= */

@media(max-width:1150px){

    .header-inner{
        gap:15px;
    }

    .brand-content strong{
        font-size:17px;
    }

    .nav-link{
        padding-left:7px;
        padding-right:7px;
        font-size:11px;
    }

    .nav-link::after{
        left:7px;
        right:7px;
    }

    .application-btn{
        padding:10px 12px;
        font-size:10px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .topbar-inner{
        justify-content:center;
        padding:8px 0;
    }

    .topbar-left{
        display:none;
    }

    .header-inner{
        min-height:82px;
    }

    .site-logo{
        width:60px;
        height:60px;
    }

    .brand-content strong{
        font-size:16px;
    }

    .brand-content span{
        font-size:9px;
    }

    .mobile-menu-btn{
        display:block;
    }

    .main-navigation{
        position:absolute;
        left:0;
        right:0;
        top:100%;
        display:none;
        flex-direction:column;
        align-items:stretch;
        background:#ffffff;
        border-top:1px solid #e4e9ed;
        box-shadow:0 12px 25px rgba(0,35,65,.12);
        padding:10px 0;
    }

    .main-navigation.menu-open{
        display:flex;
    }

    .nav-link{
        padding:14px 5%;
        font-size:13px;
        border-bottom:1px solid #edf1f4;
    }

    .nav-link::after{
        display:none;
    }

    .nav-item-dropdown{
        width:100%;
    }

    .nav-item-dropdown .nav-link{
        width:100%;
    }

    .nav-dropdown-menu{
        position:static;
        display:block;
        min-width:0;
        border-top:0;
        border-bottom:1px solid #edf1f4;
        box-shadow:none;
        opacity:1;
        visibility:visible;
        transform:none;
        padding:0;
    }

    .nav-dropdown-menu a{
        padding:11px 9%;
        background:#f7f9fb;
    }

    .application-btn{
        margin:12px 5%;
        padding:13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:575px){

    .topbar{
        font-size:11px;
    }

    .topbar-right{
        gap:7px;
    }

    .site-logo{
        width:52px;
        height:52px;
    }

    .brand-content strong{
        font-size:14px;
    }

    .brand-content span{
        font-size:8px;
        letter-spacing:.7px;
    }

    .header-inner{
        min-height:72px;
    }

}
/* =========================================
   MARAD STYLE HOME PAGE
========================================= */

.marad-hero{
    min-height:570px;
    display:flex;
    align-items:center;
    position:relative;
    color:#fff;
    background:
        linear-gradient(90deg,rgba(3,38,67,.95) 0%,rgba(3,58,91,.82) 48%,rgba(3,58,91,.45) 100%),
        url("../images/maritime-hero.jpg") center center/cover no-repeat;
}

.marad-hero-content{
    max-width:720px;
    padding:70px 0;
}

.hero-label{
    display:inline-block;
    color:#9bd7ee;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:16px;
}

.marad-hero h1{
    font-size:58px;
    line-height:1.08;
    font-weight:800;
    margin:0 0 22px;
    letter-spacing:-1px;
}

.marad-hero p{
    max-width:650px;
    font-size:18px;
    line-height:1.8;
    color:#e7f1f7;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:12px;
}

.hero-outline-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 22px;
    border:1px solid rgba(255,255,255,.65);
    color:#fff;
    text-decoration:none;
    border-radius:3px;
    font-weight:700;
    transition:.25s ease;
}

.hero-outline-btn:hover{
    background:#fff;
    color:#073b66;
}


/* =========================================
   QUICK SERVICES
========================================= */

.quick-services{
    position:relative;
    margin-top:-55px;
    z-index:5;
}

.quick-services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#fff;
    box-shadow:0 12px 35px rgba(0,35,65,.14);
    border:1px solid #e1e8ed;
}

.quick-service{
    min-height:145px;
    padding:25px 22px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    text-decoration:none;
    border-right:1px solid #e5ebef;
    transition:.25s ease;
}

.quick-service:last-child{
    border-right:0;
}

.quick-service:hover{
    background:#f3f8fb;
}

.quick-service i{
    color:#0a6f9f;
    font-size:26px;
    margin-bottom:12px;
}

.quick-service span{
    color:#073b66;
    font-size:16px;
    font-weight:800;
}

.quick-service small{
    color:#687988;
    font-size:12px;
    margin-top:3px;
}


/* =========================================
   HOME INTRO
========================================= */

.home-intro{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:70px;
    align-items:center;
}

.intro-content h2{
    color:#073b66;
    font-size:39px;
    line-height:1.2;
    margin:10px 0 22px;
    max-width:650px;
}

.intro-content p{
    color:#596b7a;
    font-size:16px;
    margin-bottom:16px;
    max-width:680px;
}

.section-label{
    display:inline-block;
    color:#0a6f9f;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
}

.text-link{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-top:12px;
    color:#0a6f9f;
    font-weight:800;
    text-decoration:none;
}

.text-link:hover{
    color:#073b66;
}

.text-link i{
    transition:.2s ease;
}

.text-link:hover i{
    transform:translateX(5px);
}


/* =========================================
   INTRO PANEL
========================================= */

.intro-panel{
    border:1px solid #dce5eb;
    background:#f6f9fb;
    border-top:5px solid #0a6f9f;
}

.intro-panel-title{
    display:flex;
    align-items:center;
    gap:12px;
    padding:22px 25px;
    background:#073b66;
    color:#fff;
    font-weight:800;
}

.intro-panel-title i{
    color:#9bd7ee;
    font-size:20px;
}

.intro-item{
    padding:20px 25px;
    border-bottom:1px solid #dfe7ec;
}

.intro-item:last-child{
    border-bottom:0;
}

.intro-item strong{
    display:block;
    color:#073b66;
    font-size:16px;
}

.intro-item span{
    color:#687988;
    font-size:13px;
}


/* =========================================
   SERVICES SECTION
========================================= */

.services-section{
    background:#f5f8fa;
    border-top:1px solid #e6edf1;
    border-bottom:1px solid #e6edf1;
}

.section-heading{
    max-width:700px;
    margin-bottom:38px;
}

.section-heading h2{
    color:#073b66;
    font-size:39px;
    line-height:1.2;
    margin:9px 0 12px;
}

.section-heading p{
    color:#657685;
    margin:0;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.service-card{
    background:#fff;
    border:1px solid #dfe7ec;
    padding:30px 26px;
    min-height:280px;
    position:relative;
    transition:.25s ease;
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:0;
    background:#0a6f9f;
    transition:.25s ease;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 28px rgba(0,35,65,.10);
}

.service-card:hover::before{
    height:100%;
}

.service-icon{
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    background:#eaf4f8;
    color:#0a6f9f;
    font-size:23px;
    margin-bottom:22px;
}

.service-card h3{
    color:#073b66;
    font-size:20px;
    margin-bottom:12px;
}

.service-card p{
    color:#657685;
    font-size:14px;
    line-height:1.7;
    margin-bottom:20px;
}

.service-card a{
    color:#0a6f9f;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
}

.service-card a i{
    margin-left:6px;
    transition:.2s ease;
}

.service-card a:hover i{
    transform:translateX(4px);
}


/* =========================================
   ONLINE APPLICATIONS
========================================= */

.application-section{
    background:#0a6f9f;
    color:#fff;
    padding:50px 0;
}

.application-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
}

.application-inner h2{
    font-size:34px;
    margin:8px 0 8px;
}

.application-inner p{
    margin:0;
    color:#e4f2f8;
}

.section-label.light{
    color:#a9deef;
}

.btn-white{
    background:#fff;
    color:#073b66;
    white-space:nowrap;
}

.btn-white:hover{
    background:#073b66;
    color:#fff;
}


/* =========================================
   NOTICES
========================================= */

.heading-row{
    max-width:none;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
}

.view-all{
    color:#0a6f9f;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
    white-space:nowrap;
}

.view-all i{
    margin-left:5px;
}

.notice-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.notice-card{
    border:1px solid #dfe7ec;
    background:#fff;
    padding:28px;
    min-height:240px;
    transition:.25s ease;
}

.notice-card:hover{
    border-color:#9bc6d8;
    box-shadow:0 10px 25px rgba(0,35,65,.08);
}

.notice-date{
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#0a6f9f;
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:18px;
}

.notice-date i{
    font-size:13px;
}

.notice-card h3{
    color:#073b66;
    font-size:19px;
    line-height:1.4;
}

.notice-card p{
    color:#687988;
    font-size:14px;
    line-height:1.7;
}

.notice-card > a{
    color:#0a6f9f;
    font-size:13px;
    font-weight:800;
    text-decoration:none;
}


/* =========================================
   DOCUMENT CENTRE
========================================= */

.documents-section{
    background:#f5f8fa;
    border-top:1px solid #e4ebef;
    padding:75px 0;
}

.document-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.document-item{
    display:flex;
    align-items:center;
    gap:17px;
    padding:20px;
    background:#fff;
    border:1px solid #dfe7ec;
    text-decoration:none;
    transition:.25s ease;
}

.document-item > i:first-child{
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    background:#eaf4f8;
    color:#0a6f9f;
    font-size:19px;
    flex-shrink:0;
}

.document-item div{
    flex:1;
}

.document-item strong{
    display:block;
    color:#073b66;
    font-size:15px;
}

.document-item span{
    display:block;
    color:#748391;
    font-size:12px;
    margin-top:3px;
}

.document-item > i:last-child{
    color:#8b9aa6;
    font-size:12px;
}

.document-item:hover{
    border-color:#0a6f9f;
    transform:translateX(4px);
}


/* =========================================
   CONTACT STRIP
========================================= */

.contact-strip{
    background:#073b66;
    color:#fff;
    padding:55px 0;
}

.contact-strip .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
}

.contact-strip h2{
    margin:8px 0 8px;
    font-size:32px;
    line-height:1.25;
}

.contact-strip p{
    margin:0;
    color:#d5e4ed;
}


/* =========================================
   HOME PAGE RESPONSIVE
========================================= */

@media(max-width:1100px){

    .marad-hero h1{
        font-size:50px;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .quick-services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .quick-service{
        border-bottom:1px solid #e5ebef;
    }

    .quick-service:nth-child(2){
        border-right:0;
    }

    .home-intro{
        gap:40px;
    }

}


@media(max-width:800px){

    .marad-hero{
        min-height:600px;
    }

    .marad-hero-content{
        padding:60px 0;
    }

    .marad-hero h1{
        font-size:43px;
    }

    .home-intro{
        grid-template-columns:1fr;
    }

    .notice-grid{
        grid-template-columns:1fr;
    }

    .application-inner,
    .contact-strip .container{
        flex-direction:column;
        align-items:flex-start;
    }

}


@media(max-width:600px){

    .marad-hero{
        min-height:650px;
        background-position:center;
    }

    .marad-hero h1{
        font-size:35px;
    }

    .marad-hero p{
        font-size:15px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-buttons .btn,
    .hero-outline-btn{
        text-align:center;
        width:100%;
    }

    .quick-services{
        margin-top:-25px;
    }

    .quick-services-grid{
        grid-template-columns:1fr;
    }

    .quick-service{
        border-right:0;
    }

    .intro-content h2,
    .section-heading h2{
        font-size:30px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .document-grid{
        grid-template-columns:1fr;
    }

    .contact-strip h2{
        font-size:27px;
    }

}
/* =========================================
   MARAD GOVERNMENT FOOTER
========================================= */

.site-footer{
    background:#062b4b;
    color:#c9d7e1;
    margin-top:0;
}

.footer-main{
    display:grid;
    grid-template-columns:1.45fr 1fr 1fr 1.3fr;
    gap:45px;
    padding:65px 0 50px;
}

.footer-brand{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:22px;
}

.footer-brand img{
    width:65px;
    height:65px;
    object-fit:contain;
}

.footer-brand strong{
    display:block;
    color:#fff;
    font-size:17px;
    line-height:1.35;
}

.footer-brand span{
    display:block;
    color:#8ed4e9;
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:1.2px;
    margin-top:5px;
}

.footer-about p{
    max-width:440px;
    color:#bdccd7;
    font-size:13px;
    line-height:1.8;
}

.footer-more{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#8ed4e9;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    margin-top:5px;
}

.footer-more:hover{
    color:#fff;
}

.footer-column h4{
    display:inline-block;
    color:#fff;
    font-size:16px;
    margin:0 0 22px;
    padding-bottom:10px;
    border-bottom:2px solid #0a6f9f;
}

.footer-column > a{
    display:block;
    color:#c9d7e1;
    text-decoration:none;
    font-size:13px;
    margin-bottom:12px;
    transition:.2s ease;
}

.footer-column > a:hover{
    color:#8ed4e9;
    padding-left:5px;
}


/* CONTACT */

.footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    font-size:13px;
    line-height:1.65;
}

.footer-contact-item > i{
    color:#8ed4e9;
    width:18px;
    margin-top:4px;
    flex-shrink:0;
}

.footer-contact-item a{
    color:#c9d7e1;
    text-decoration:none;
}

.footer-contact-item a:hover{
    color:#8ed4e9;
}


/* =========================================
   IMPORTANT CONTACTS
========================================= */

.footer-important{
    border-top:1px solid rgba(255,255,255,.12);
    padding:28px 0;
}

.footer-important-title{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    margin-bottom:18px;
}

.footer-important-title i{
    color:#8ed4e9;
}

.important-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.important-grid a{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:16px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);
    color:#c9d7e1;
    text-decoration:none;
    transition:.25s ease;
}

.important-grid a:hover{
    background:rgba(255,255,255,.09);
    border-color:#0a6f9f;
}

.important-grid > a > i{
    color:#8ed4e9;
    margin-top:3px;
}

.important-grid span{
    font-size:11px;
    line-height:1.5;
}

.important-grid strong{
    display:block;
    color:#fff;
    font-size:12px;
    margin-bottom:3px;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links-bar{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    border-top:1px solid rgba(255,255,255,.12);
    padding:21px 0;
}

.footer-links-bar a{
    color:#c9d7e1;
    text-decoration:none;
    font-size:12px;
}

.footer-links-bar a:hover{
    color:#8ed4e9;
}

.footer-links-bar span{
    color:#60798b;
}


/* =========================================
   COPYRIGHT
========================================= */

.footer-bottom{
    background:#041f36;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom-inner{
    min-height:62px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.footer-bottom p{
    margin:0;
    color:#91a6b4;
    font-size:12px;
}


/* =========================================
   BACK TO TOP
========================================= */

.back-to-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0a6f9f;
    color:#fff;
    text-decoration:none;
    opacity:0;
    visibility:hidden;
    transition:.25s ease;
    z-index:999;
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
}

.back-to-top:hover{
    background:#073b66;
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1000px){

    .footer-main{
        grid-template-columns:1fr 1fr;
        gap:35px;
    }

    .important-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .footer-main{
        grid-template-columns:1fr;
        padding:50px 0 35px;
    }

    .important-grid{
        grid-template-columns:1fr;
    }

    .footer-links-bar{
        justify-content:flex-start;
    }

    .footer-bottom-inner{
        min-height:auto;
        padding:18px 0;
        flex-direction:column;
        text-align:center;
    }

}
/* =========================================
   SEAFARER SERVICES PAGE
========================================= */

.seafarer-page .section{
    padding:65px 0;
}

.seafarer-page .section-heading{
    max-width:700px;
    margin-bottom:30px;
}

.seafarer-page .section-heading h2{
    color:#073b66;
    font-size:34px;
    line-height:1.2;
    margin:8px 0 12px;
}

.seafarer-page .section-heading p{
    color:#657685;
    font-size:15px;
}


/* SERVICE CARDS */

.seafarer-page .cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.seafarer-page .card{
    background:#fff;
    border:1px solid #dfe7ec;
    padding:28px 25px;
    min-height:235px;
    border-radius:3px;
    box-shadow:0 5px 18px rgba(0,35,65,.06);
    transition:.25s ease;
}

.seafarer-page .card:hover{
    transform:translateY(-4px);
    border-color:#0a6f9f;
    box-shadow:0 12px 28px rgba(0,35,65,.10);
}

.seafarer-page .card > i{
    display:flex;
    align-items:center;
    justify-content:center;
    width:55px;
    height:55px;
    background:#eaf4f8;
    color:#0a6f9f;
    font-size:23px;
    margin-bottom:20px;
}

.seafarer-page .card h3{
    color:#073b66;
    font-size:19px;
    margin:0 0 10px;
}

.seafarer-page .card p{
    color:#667786;
    font-size:14px;
    line-height:1.7;
    margin:0 0 17px;
}

.seafarer-page .card a{
    color:#0a6f9f;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
}

.seafarer-page .card a:hover{
    color:#073b66;
}

.seafarer-page .card a i{
    margin-left:5px;
    font-size:11px;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:850px){

    .seafarer-page .cards{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .seafarer-page .section{
        padding:50px 0;
    }

    .seafarer-page .cards{
        grid-template-columns:1fr;
    }

}
/* =========================================
   FORMS & DOWNLOADS PAGE
========================================= */

.page-hero{
    background:#073b66;
    padding:55px 0;
    color:#fff;
    border-bottom:4px solid #0a6f9f;
}

.page-hero .container{
    max-width:1200px;
    margin:0 auto;
}

.eyebrow{
    display:inline-block;
    color:#9bd8ec;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:10px;
}

.page-hero h1{
    margin:0 0 10px;
    color:#fff;
    font-size:42px;
    line-height:1.2;
    font-weight:800;
}

.page-hero p{
    margin:0;
    max-width:650px;
    color:#dcebf2;
    font-size:16px;
    line-height:1.7;
}


/* =========================================
   COMMON SECTION
========================================= */

.section{
    padding:65px 0;
    background:#fff;
}

.section .container{
    max-width:1200px;
    margin:0 auto;
}

.section-heading{
    margin-bottom:35px;
}

.section-heading h2{
    margin:8px 0 10px;
    color:#073b66;
    font-size:34px;
    font-weight:800;
}

.section-heading p{
    margin:0;
    color:#687988;
    font-size:15px;
}


/* =========================================
   DOWNLOAD / FORM CARDS
========================================= */

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.card{
    background:#fff;
    border:1px solid #dce5eb;
    border-radius:3px;
    padding:28px;
    min-height:230px;
    box-shadow:0 4px 15px rgba(0,35,65,.06);
    transition:.25s ease;
}

.card:hover{
    border-color:#0a6f9f;
    transform:translateY(-4px);
    box-shadow:0 12px 28px rgba(0,35,65,.10);
}

.card > i{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eaf4f8;
    color:#0a6f9f;
    font-size:22px;
    margin-bottom:18px;
}

.card h3{
    color:#073b66;
    font-size:19px;
    margin:0 0 10px;
}

.card p{
    color:#687988;
    font-size:14px;
    line-height:1.7;
    margin:0 0 18px;
}

.card a{
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:#0a6f9f;
    font-size:13px;
    font-weight:800;
    text-decoration:none;
}

.card a:hover{
    color:#073b66;
}


/* =========================================
   DOWNLOAD PAGE - 2 COLUMN OPTION
========================================= */

.download-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.download-card{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    background:#fff;
    border:1px solid #dce5eb;
    transition:.25s ease;
}

.download-card:hover{
    border-color:#0a6f9f;
    box-shadow:0 8px 22px rgba(0,35,65,.08);
}

.download-icon{
    width:52px;
    height:52px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#edf5f8;
    color:#0a6f9f;
    font-size:21px;
}

.download-content{
    flex:1;
}

.download-content h3{
    color:#073b66;
    font-size:17px;
    margin:0 0 5px;
}

.download-content p{
    color:#6c7d8a;
    font-size:13px;
    line-height:1.6;
    margin:0;
}

.download-btn{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:10px 14px;
    background:#0a6f9f;
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:800;
    border-radius:3px;
    white-space:nowrap;
}

.download-btn:hover{
    background:#073b66;
    color:#fff;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:900px){

    .cards{
        grid-template-columns:1fr 1fr;
    }

    .download-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .page-hero{
        padding:42px 0;
    }

    .page-hero h1{
        font-size:32px;
    }

    .page-hero p{
        font-size:14px;
    }

    .section{
        padding:45px 0;
    }

    .section-heading h2{
        font-size:29px;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .download-card{
        align-items:flex-start;
        flex-wrap:wrap;
    }

    .download-btn{
        margin-left:70px;
    }

}
/* =========================================
   CONTACT PAGE
========================================= */

.contact-page{
    background:#f6f9fb;
    padding:65px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}


/* =========================================
   CONTACT CARDS
========================================= */

.contact-card{
    background:#fff;
    border:1px solid #dce5eb;
    padding:30px 26px;
    min-height:310px;
    border-radius:3px;
    box-shadow:0 5px 18px rgba(0,35,65,.06);
    transition:.25s ease;
}

.contact-card:hover{
    border-color:#0a6f9f;
    transform:translateY(-4px);
    box-shadow:0 12px 28px rgba(0,35,65,.10);
}

.contact-icon{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eaf4f8;
    color:#0a6f9f;
    font-size:22px;
    margin-bottom:20px;
}

.contact-card h3{
    color:#073b66;
    font-size:19px;
    line-height:1.4;
    margin:0 0 15px;
}

.contact-card p{
    color:#687988;
    font-size:14px;
    line-height:1.75;
    margin:0 0 18px;
}

.contact-card > a{
    display:flex;
    align-items:center;
    gap:9px;
    color:#0a6f9f;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    margin-top:10px;
}

.contact-card > a:hover{
    color:#073b66;
}

.contact-card > a i{
    width:17px;
}


/* =========================================
   IMPORTANT CONTACTS
========================================= */

.contact-link-list{
    display:flex;
    flex-direction:column;
    gap:13px;
}

.contact-link-list a{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:13px;
    background:#f5f8fa;
    border:1px solid #e2e9ed;
    color:#073b66;
    text-decoration:none;
    transition:.2s ease;
}

.contact-link-list a:hover{
    background:#eaf4f8;
    border-color:#9bc6d8;
}

.contact-link-list a > i{
    color:#0a6f9f;
    margin-top:3px;
    width:18px;
}

.contact-link-list span{
    font-size:12px;
    font-weight:700;
    line-height:1.4;
}

.contact-link-list small{
    display:block;
    color:#687988;
    font-size:11px;
    font-weight:400;
    margin-top:3px;
    word-break:break-word;
}


/* =========================================
   ENQUIRY SECTION
========================================= */

.enquiry-section{
    background:#fff;
    padding:70px 0;
}

.enquiry-grid{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:65px;
    align-items:start;
}

.enquiry-info{
    padding-top:10px;
}

.enquiry-info h2{
    color:#073b66;
    font-size:36px;
    line-height:1.2;
    margin:9px 0 15px;
}

.enquiry-info p{
    color:#687988;
    font-size:15px;
    line-height:1.8;
    max-width:470px;
}

.enquiry-note{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-top:25px;
    padding:17px;
    background:#f1f7fa;
    border-left:4px solid #0a6f9f;
    color:#526775;
    font-size:13px;
    line-height:1.6;
}

.enquiry-note i{
    color:#0a6f9f;
    margin-top:3px;
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form{
    background:#f6f9fb;
    border:1px solid #dce5eb;
    padding:30px;
    box-shadow:0 6px 20px rgba(0,35,65,.06);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.form-group{
    margin-bottom:19px;
}

.form-group label{
    display:block;
    color:#073b66;
    font-size:13px;
    font-weight:800;
    margin-bottom:7px;
}

.form-group input,
.form-group textarea{
    width:100%;
    box-sizing:border-box;
    border:1px solid #ccd9e1;
    background:#fff;
    color:#243746;
    padding:12px 14px;
    font-family:inherit;
    font-size:14px;
    outline:none;
    border-radius:2px;
    transition:.2s ease;
}

.form-group input{
    height:46px;
}

.form-group textarea{
    min-height:145px;
    resize:vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#9aa8b2;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#0a6f9f;
    box-shadow:0 0 0 3px rgba(10,111,159,.08);
}

.form-submit{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:46px;
    padding:0 22px;
    border:0;
    border-radius:3px;
    background:#0a6f9f;
    color:#fff;
    font-family:inherit;
    font-size:13px;
    font-weight:800;
    cursor:pointer;
    transition:.25s ease;
}

.form-submit:hover{
    background:#073b66;
    box-shadow:0 6px 16px rgba(7,59,102,.18);
}


/* =========================================
   CONTACT PAGE MOBILE
========================================= */

@media(max-width:950px){

    .contact-grid{
        grid-template-columns:1fr 1fr;
    }

    .contact-card:last-child{
        grid-column:1 / -1;
    }

    .enquiry-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

}

@media(max-width:650px){

    .contact-page,
    .enquiry-section{
        padding:45px 0;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-card:last-child{
        grid-column:auto;
    }

    .enquiry-info h2{
        font-size:30px;
    }

    .contact-form{
        padding:22px;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }

}
/* =========================================
   GLOBAL HORIZONTAL OVERFLOW FIX
========================================= */

html,
body{
    width:100%;
    max-width:100%;
    margin:0;
    padding:0;
    overflow-x:hidden;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

img{
    max-width:100%;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.container{
    width:100%;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
    padding-left:20px;
    padding-right:20px;
}


/* =========================================
   HEADER FIX
========================================= */

.site-header{
    width:100%;
    max-width:100%;
    overflow:visible;
}

.header-inner{
    width:100%;
    max-width:100%;
    min-width:0;
}

.site-brand{
    min-width:0;
    max-width:420px;
}

.brand-content{
    min-width:0;
}

.brand-content strong{
    white-space:normal;
}

.main-navigation{
    min-width:0;
    max-width:100%;
}


/* =========================================
   HERO FIX
========================================= */

.marad-hero{
    width:100%;
    max-width:100%;
    overflow:hidden;
}

.marad-hero-content{
    width:100%;
    max-width:720px;
}

.marad-hero h1{
    max-width:700px;
}

.marad-hero p{
    max-width:650px;
}


/* =========================================
   DESKTOP HEADER
========================================= */

@media(min-width:992px){

    .header-inner{
        gap:20px;
    }

    .site-brand{
        flex:0 1 390px;
    }

    .main-navigation{
        flex:1 1 auto;
        justify-content:flex-end;
        overflow:visible;
    }

    .nav-link{
        padding-left:8px;
        padding-right:8px;
    }

    .application-btn{
        margin-left:5px;
        padding-left:13px;
        padding-right:13px;
    }

}


/* =========================================
   TABLET / MOBILE
========================================= */

@media(max-width:991px){

    .container{
        padding-left:18px;
        padding-right:18px;
    }

    .header-inner{
        width:100%;
    }

    .main-navigation{
        width:100%;
        max-width:100%;
    }

    .marad-hero-content{
        padding-left:0;
        padding-right:0;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:575px){

    .container{
        padding-left:15px;
        padding-right:15px;
    }

    .site-brand{
        max-width:calc(100% - 55px);
    }

    .brand-content strong{
        font-size:14px;
    }

}
/* =========================================
   PORTS & HARBOURS PAGE
========================================= */

.ports-page{
    background:#f6f9fb;
}

.ports-page .cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.ports-page .card{
    background:#fff;
    border:1px solid #dce5eb;
    padding:28px 25px;
    min-height:235px;
    border-radius:3px;
    box-shadow:0 5px 18px rgba(0,35,65,.06);
    transition:.25s ease;
}

.ports-page .card:hover{
    transform:translateY(-4px);
    border-color:#0a6f9f;
    box-shadow:0 12px 28px rgba(0,35,65,.10);
}

.ports-page .card > i{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eaf4f8;
    color:#0a6f9f;
    font-size:22px;
    margin-bottom:20px;
}

.ports-page .card h3{
    color:#073b66;
    font-size:19px;
    margin:0 0 10px;
}

.ports-page .card p{
    color:#687988;
    font-size:14px;
    line-height:1.7;
    margin:0 0 17px;
}

.ports-page .card a{
    color:#0a6f9f;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
}

.ports-page .card a:hover{
    color:#073b66;
}

.ports-page .card a i{
    margin-left:5px;
    font-size:11px;
}


@media(max-width:800px){

    .ports-page .cards{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .ports-page .cards{
        grid-template-columns:1fr;
    }

}
/* =========================================
   MARITIME SAFETY PAGE
========================================= */

.safety-page{
    background:#f6f9fb;
}

.safety-page .cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.safety-page .card{
    background:#fff;
    border:1px solid #dce5eb;
    padding:28px 25px;
    min-height:235px;
    border-radius:3px;
    box-shadow:0 5px 18px rgba(0,35,65,.06);
    transition:.25s ease;
}

.safety-page .card:hover{
    transform:translateY(-4px);
    border-color:#0a6f9f;
    box-shadow:0 12px 28px rgba(0,35,65,.10);
}

.safety-page .card > i{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eaf4f8;
    color:#0a6f9f;
    font-size:22px;
    margin-bottom:20px;
}

.safety-page .card h3{
    color:#073b66;
    font-size:19px;
    margin:0 0 10px;
}

.safety-page .card p{
    color:#687988;
    font-size:14px;
    line-height:1.7;
    margin:0 0 17px;
}

.safety-page .card a{
    color:#0a6f9f;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
}

.safety-page .card a:hover{
    color:#073b66;
}

.safety-page .card a i{
    margin-left:5px;
    font-size:11px;
}

@media(max-width:800px){

    .safety-page .cards{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .safety-page .cards{
        grid-template-columns:1fr;
    }

}
/* =========================================
   SHIP REGISTRATION
========================================= */

.ship-registration-page{
    background:#fff;
}

.ship-registration-page .two-col{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:55px;
    align-items:start;
}

.registration-content h2{
    color:#073b66;
    font-size:36px;
    margin:8px 0 18px;
}

.registration-content p{
    color:#687988;
    font-size:15px;
    line-height:1.8;
    max-width:650px;
    margin-bottom:15px;
}

.registration-content .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:8px;
}


/* INFO PANEL */

.info-panel{
    background:#f5f8fa;
    border:1px solid #dce5eb;
    border-top:4px solid #0a6f9f;
    padding:28px;
}

.info-panel h3{
    color:#073b66;
    font-size:20px;
    margin:0 0 18px;
}

.info-panel ul{
    list-style:none;
    padding:0;
    margin:0;
}

.info-panel li{
    position:relative;
    padding:11px 0 11px 24px;
    border-bottom:1px solid #dfe7ec;
    color:#596d7b;
    font-size:14px;
}

.info-panel li:last-child{
    border-bottom:0;
}

.info-panel li::before{
    content:"";
    position:absolute;
    left:0;
    top:17px;
    width:7px;
    height:7px;
    background:#0a6f9f;
    border-radius:50%;
}


/* LICENSING */

.registration-services{
    background:#f6f9fb;
    border-top:1px solid #e3eaee;
}

.small-action a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:13px 18px;
    background:#0a6f9f;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
    border-radius:3px;
}

.small-action a:hover{
    background:#073b66;
}


/* RESPONSIVE */

@media(max-width:800px){

    .ship-registration-page .two-col{
        grid-template-columns:1fr;
        gap:35px;
    }

    .registration-content h2{
        font-size:30px;
    }

}

@media(max-width:600px){

    .info-panel{
        padding:22px;
    }

}
/* =========================================
   NOTICES PAGE
========================================= */

.notices-page{
    background:#f6f9fb;
}

.notices-page .notice-list{
    max-width:1000px;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.notices-page .notice-item{
    display:flex;
    align-items:flex-start;
    gap:22px;
    background:#fff;
    border:1px solid #dce5eb;
    padding:25px;
    transition:.25s ease;
}

.notices-page .notice-item:hover{
    border-color:#0a6f9f;
    box-shadow:0 8px 22px rgba(0,35,65,.08);
    transform:translateX(3px);
}

.notices-page .notice-icon{
    width:55px;
    height:55px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eaf4f8;
    color:#0a6f9f;
    font-size:21px;
}

.notices-page .notice-content{
    flex:1;
}

.notices-page .notice-category{
    display:block;
    color:#0a6f9f;
    font-size:10px;
    font-weight:800;
    letter-spacing:1.4px;
    margin-bottom:6px;
}

.notices-page .notice-content h3{
    color:#073b66;
    font-size:19px;
    margin:0 0 8px;
}

.notices-page .notice-content p{
    color:#687988;
    font-size:14px;
    line-height:1.7;
    margin:0 0 12px;
}

.notices-page .notice-content a{
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:#0a6f9f;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
}

.notices-page .notice-content a:hover{
    color:#073b66;
}


/* =========================================
   OFFICIAL SOURCE STRIP
========================================= */

.notice-official{
    background:#073b66;
    color:#fff;
    padding:50px 0;
}

.notice-official-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.notice-official h2{
    margin:8px 0;
    font-size:30px;
}

.notice-official p{
    margin:0;
    color:#d5e4ed;
}

.notice-official .section-label.light{
    color:#9bd8ec;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:650px){

    .notices-page .notice-item{
        padding:20px;
        gap:15px;
    }

    .notices-page .notice-icon{
        width:48px;
        height:48px;
        font-size:18px;
    }

    .notices-page .notice-content h3{
        font-size:17px;
    }

    .notice-official-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .notice-official h2{
        font-size:26px;
    }

}
/* =========================================
   ONLINE APPLICATIONS
========================================= */

.online-applications-page{
    background:#f6f9fb;
}

.online-application-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    max-width:1000px;
}

.online-application-card{
    display:flex;
    align-items:center;
    gap:18px;
    min-height:145px;
    padding:24px;
    background:#fff;
    border:1px solid #dce5eb;
    color:#073b66;
    text-decoration:none;
    transition:.25s ease;
}

.online-application-card:hover{
    border-color:#0a6f9f;
    box-shadow:0 10px 25px rgba(0,35,65,.09);
    transform:translateY(-3px);
}

.online-application-icon{
    width:58px;
    height:58px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eaf4f8;
    color:#0a6f9f;
    font-size:23px;
}

.online-application-card h3{
    margin:0 0 7px;
    color:#073b66;
    font-size:17px;
}

.online-application-card p{
    margin:0;
    color:#687988;
    font-size:13px;
    line-height:1.6;
}

.card-arrow{
    margin-left:auto;
    color:#0a6f9f;
    font-size:13px;
}

.online-info{
    background:#073b66;
    padding:25px 0;
}

.online-info-inner{
    display:flex;
    align-items:center;
    gap:13px;
    color:#dcebf2;
}

.online-info-inner i{
    color:#9bd8ec;
    font-size:19px;
}

.online-info-inner p{
    margin:0;
    font-size:13px;
}


/* MOBILE */

@media(max-width:700px){

    .online-application-grid{
        grid-template-columns:1fr;
    }

    .online-application-card{
        min-height:125px;
    }

}

@media(max-width:450px){

    .online-application-card{
        padding:18px;
        gap:13px;
    }

    .online-application-icon{
        width:48px;
        height:48px;
        font-size:19px;
    }

    .online-application-card h3{
        font-size:15px;
    }

}
