body{
font-family:Arial,Helvetica,sans-serif;
color:#0f2345;
background:#fff;
}

/*==================================================
FIORA NAVBAR
==================================================*/

.fiora-navbar{
    background:#082347;
    min-height:88px;
    padding:0;

    /* Bootstrap Navbar Colors */
    --bs-navbar-color:#ffffff;
    --bs-navbar-hover-color:#f4bf18;
    --bs-navbar-active-color:#f4bf18;
    --bs-navbar-brand-color:#ffffff;
    --bs-navbar-brand-hover-color:#ffffff;
}

.navbar-toggler{
    border:1px solid rgba(255,255,255,.4);
}

.navbar-toggler-icon{
    filter:invert(1);
}

/*=========================================
LOGO AREA
=========================================*/

.logo-box{

    width:430px;
    height:88px;

    background:#fff;

    display:flex;
    align-items:center;

    padding:0 25px;

    position:relative;
    overflow:hidden;

    text-decoration:none;
    flex-shrink:0;
}

/* Blue diagonal */

.logo-box::after{

    content:"";

    position:absolute;

    top:0;
    right:-34px;

    width:70px;
    height:100%;

    background:#082347;

    transform:skewX(-28deg);

}

.logo-img{

    width:100px;
    height:auto;

    margin-right:18px;

    position:relative;
    z-index:2;

}

.company-info{

    position:relative;
    z-index:2;
    line-height:1.15;

}

.company-info h3{

    margin:0;

    color:#082347;

    font-size:24px;

    font-weight:800;

    letter-spacing:.4px;

}

.company-info span{

    display:block;

    margin-top:2px;

    color:#555;

    font-size:13px;

    font-weight:500;

}

/*=========================================
MENU
=========================================*/

.fiora-navbar .navbar-collapse{

    justify-content:center;

}

.fiora-navbar .navbar-nav{

    gap:20px;

}

.fiora-navbar .nav-link{

    color:#fff;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    padding:33px 10px;

    position:relative;

    transition:.3s;

}

.fiora-navbar .nav-link:hover{

    color:#f4bf18;

}

.fiora-navbar .nav-link.active{

    color:#f4bf18;

}

.fiora-navbar .nav-link.active::after{

    content:"";

    position:absolute;

    left:10px;
    right:10px;

    bottom:16px;

    height:3px;

    background:#f4bf18;

    border-radius:5px;

}

/*=========================================
TOGGLER
=========================================*/

.navbar-toggler{

    border:0;
    box-shadow:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.fiora-navbar{

    min-height:auto;

}

.logo-box{

    width:300px;
    height:80px;

    padding:0 15px;

}

.logo-box::after{

    right:-28px;
    width:60px;

}

.logo-img{

    width:50px;
    margin-right:12px;

}

.company-info h3{

    font-size:16px;

}

.company-info span{

    font-size:11px;

}

.fiora-navbar .navbar-collapse{

    background:#082347;
    padding:15px 20px;

}

.fiora-navbar .navbar-nav{

    gap:0;

}

.fiora-navbar .nav-link{

    padding:12px 0;

}

.fiora-navbar .nav-link.active::after{

    display:none;

}

}

/*=========================
HOME HERO
=========================*/

#heroSlider,
#heroSlider .carousel-item{
    height:100vh;
    min-height:650px;
    position:relative;
    overflow:hidden;
}

.hero-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    animation:kenburns 12s linear infinite alternate;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(8,35,71,.82) 0%,
        rgba(8,35,71,.45) 45%,
        rgba(8,35,71,.18) 100%);
}

.hero-content{
    position:relative;
    z-index:2;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:120px 0 80px;
}

.hero-tag{
    display:inline-block;
    color:#f4bf18;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.hero-content h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.hero-content p{
    color:#f5f5f5;
    font-size:20px;
    line-height:1.8;
    max-width:650px;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.hero-buttons .btn{
    padding:15px 36px;
    border-radius:40px;
    font-weight:700;
}

.btn-warning{
    background:#f4bf18;
    border:none;
    color:#082347;
}

.btn-outline-light:hover{
    background:#fff;
    color:#082347;
}

.carousel-indicators{
    bottom:30px;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
}

@keyframes kenburns{
    from{transform:scale(1);}
    to{transform:scale(1.12);}
}

/*=========================
TABLET
=========================*/

@media (max-width:991px){

#heroSlider,
#heroSlider .carousel-item{
    min-height:600px;
}

.hero-content{
    text-align:center;
    justify-content:center;
    padding:100px 25px 60px;
}

.hero-content h1{
    font-size:42px;
}

.hero-content p{
    font-size:18px;
    max-width:100%;
}

.hero-buttons{
    justify-content:center;
}

}

/*=========================
MOBILE
=========================*/

@media (max-width:767px){

#heroSlider,
#heroSlider .carousel-item{
    min-height:520px;
    height:auto;
}

.hero-overlay{
    background:rgba(8,35,71,.70);
}

.hero-content{
    min-height:520px;
    padding:90px 20px 50px;
}

.hero-tag{
    font-size:13px;
    letter-spacing:1px;
}

.hero-content h1{
    font-size:30px;
    line-height:1.3;
}

.hero-content p{
    font-size:16px;
    line-height:1.7;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
    width:100%;
}

.hero-buttons .btn{
    width:100%;
    max-width:280px;
    margin:0;
}

.carousel-indicators{
    bottom:15px;
}

}

/*=========================
SMALL MOBILE
=========================*/

@media (max-width:480px){

.hero-content h1{
    font-size:26px;
}

.hero-content p{
    font-size:15px;
}

.hero-buttons .btn{
    max-width:240px;
    padding:13px 25px;
}

}
/*************************
INTRO
**************************/

h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.2;
}

.feature{
    text-align:center;
    padding:35px 25px;
    border:1px solid #ececec;
    min-height:260px;
    background:#fff;
    border-radius:8px;
    transition:.3s;
    margin-bottom:30px;
}

.feature:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.feature .icon{
    width:85px;
    height:85px;
    border:2px solid #ddd;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
}

.feature i{
    font-size:36px;
    color:#0f2345;
}

.feature h5{
    font-weight:700;
    margin-bottom:15px;
    font-size:22px;
}

.feature p{
    color:#555;
    font-size:15px;
    line-height:1.7;
    margin-bottom:0;
}

/*=========================
TABLET
=========================*/

@media (max-width:991px){

h2{
    font-size:34px;
}

.feature{
    min-height:auto;
    padding:30px 20px;
}

.feature .icon{
    width:75px;
    height:75px;
}

.feature i{
    font-size:32px;
}

.feature h5{
    font-size:20px;
}

}

/*=========================
MOBILE
=========================*/

@media (max-width:767px){

h2{
    font-size:28px;
}

.feature{
    padding:25px 20px;
}

.feature .icon{
    width:65px;
    height:65px;
    margin-bottom:20px;
}

.feature i{
    font-size:28px;
}

.feature h5{
    font-size:18px;
}

.feature p{
    font-size:14px;
    line-height:1.6;
}

}

/*=========================
SMALL MOBILE
=========================*/

@media (max-width:480px){

h2{
    font-size:24px;
}

.feature{
    padding:22px 18px;
}

}
/*==============================
COUNTERS
==============================*/

.counter-section{
    background:linear-gradient(135deg,#072b45,#0b4d74);
    padding:90px 0;
}

.counter-box{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    padding:40px 25px;
    text-align:center;
    transition:.35s;
    height:100%;
}

.counter-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.15);
}

.counter-box i{
    font-size:42px;
    color:#ffc107;
    margin-bottom:18px;
}

.counter-box h2{
    color:#fff;
    font-size:54px;
    font-weight:700;
    margin-bottom:10px;
}

.counter-box p{
    color:#ddd;
    font-size:18px;
    margin:0;
    line-height:1.6;
}

/*==============================
TABLET
==============================*/

@media (max-width:991px){

.counter-section{
    padding:70px 0;
}

.counter-box{
    padding:35px 20px;
    margin-bottom:25px;
}

.counter-box i{
    font-size:36px;
}

.counter-box h2{
    font-size:42px;
}

.counter-box p{
    font-size:16px;
}

}

/*==============================
MOBILE
==============================*/

@media (max-width:767px){

.counter-section{
    padding:55px 0;
}

.counter-box{
    padding:30px 20px;
}

.counter-box i{
    font-size:32px;
    margin-bottom:15px;
}

.counter-box h2{
    font-size:34px;
}

.counter-box p{
    font-size:15px;
}

}

/*==============================
SMALL MOBILE
==============================*/

@media (max-width:480px){

.counter-box{
    padding:25px 15px;
}

.counter-box h2{
    font-size:30px;
}

.counter-box p{
    font-size:14px;
}

}
/*************************
CTA
**************************/

.cta-section{
    padding:70px 0;
}

.cta-box{
    background:#082346;
    color:#fff;
    padding:50px;
    border-radius:18px;
    position:relative;
    overflow:hidden;
}

.cta-box::before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:350px;
    height:100%;
    background:url(images/ships-bg.png) right center no-repeat;
    background-size:contain;
    opacity:.12;
}

.cta-box > *{
    position:relative;
    z-index:2;
}

.cta-icon{
    width:95px;
    height:95px;
    border:2px solid #d4a100;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:25px;
    flex-shrink:0;
}

.cta-icon i{
    font-size:40px;
    color:#d4a100;
}

.cta-box h2{
    color:#fff;
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;
}

.cta-box p{
    color:#ddd;
    font-size:17px;
    line-height:1.8;
    margin-bottom:0;
}

/* CTA Button Only */

.cta-box .btn-warning{
    background:#f2b300;
    border:none;
    color:#082346;
    font-weight:700;
    padding:16px 40px;
    border-radius:40px;
    transition:.3s;
}

.cta-box .btn-warning:hover{
    background:#d89d00;
}

/*************************
TABLET
**************************/

@media (max-width:991px){

.cta-section{
    padding:60px 0;
}

.cta-box{
    text-align:center;
    padding:40px 30px;
}

.cta-box::before{
    display:none;
}

.cta-icon{
    margin:0 auto 25px;
}

.cta-box h2{
    font-size:30px;
}

.cta-box p{
    font-size:16px;
}

.cta-box .btn-warning{
    margin-top:25px;
}

}

/*************************
MOBILE
**************************/

@media (max-width:767px){

.cta-section{
    padding:50px 0;
}

.cta-box{
    padding:30px 20px;
}

.cta-icon{
    width:75px;
    height:75px;
}

.cta-icon i{
    font-size:30px;
}

.cta-box h2{
    font-size:24px;
}

.cta-box p{
    font-size:15px;
    line-height:1.7;
}

.cta-box .btn-warning{
    width:100%;
    max-width:260px;
    padding:14px 30px;
}

}

/*************************
SMALL MOBILE
**************************/

@media (max-width:480px){

.cta-box{
    padding:25px 18px;
}

.cta-box h2{
    font-size:22px;
}

}


/*************************
FOOTER
**************************/
/*=========================
FOOTER
=========================*/

.footer{

    background:#1d3560;
    border-top:4px solid #f2c400;

    padding:42px 0;

    color:#fff;
}

.footer-logo{

    font-size:2rem;
    font-weight:700;

    margin-bottom:10px;

    color:#fff;
}

.footer-logo i{

    color:#f2c400;

    margin-right:10px;

    font-size:1.5rem;
}

.footer p{

    margin:0;

    color:#d7dde8;

    font-size:17px;
}

.footer-social{

    display:flex;

    justify-content:flex-end;

    gap:15px;

    margin-bottom:20px;
}

.footer-social a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    transition:.35s;
}

.footer-social a:hover{

    background:#f2c400;

    color:#1d3560;

    transform:translateY(-4px);
}

.footer-social i{

    font-size:16px;
}

.copyright{

    color:#d7dde8;

    font-size:15px;
}

.copyright strong{

    color:#fff;
}

@media (max-width:991px){

.footer{

    text-align:center;
}

.footer-social{

    justify-content:center;

    margin-top:25px;
}

}


}
