﻿
/******commom css******/
:root {
    --white: #ffffff;
    --offwhite: #f9fafc;
    --black: #121e22;
    --orange: #e9ab00;
    --blue: #51a79e;
    --grey: #f4f5f7;
    --darkblue: #15385e;
    --hover-bg: /*rgba(233, 171, 0, 0.3)*/ #51a79e;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    padding: 0px;
    margin: 0px;
    font-family: "Inter", serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; /* Chrome, Safari */
    text-rendering: optimizeLegibility; /* Firefox */
    font-weight: 300;
    color: var(--black);
}

a {
    color: #002e5b;
}

img {
    max-width: 100%;
}

h1 {
    font-size: 48px;
    font-weight: 400;
    margin: 0;
}

h2 {
    font-weight: 400;
    font-size: 36px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    word-break: break-word;
    line-height: 1.2;
    margin: 0;
    font-family: "Playfair Display", serif;
}

p {
    word-break: break-word;
    margin: 0;
}

button,
input,
optgroup,
select,
textarea {
    font-family: Inter, sans-serif;
}

    button:focus {
        outline: none !important;
    }

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a, a:hover {
    text-decoration: none;
}

input:focus, select:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn {
    font-family: Inter, sans-serif;
    padding: 8px 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    grid-gap: 12px;
    justify-content: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.5s;
}

.btn-primary {
    color: var(--white);
    background-color: var(--orange);
    border-color: var(--orange);
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
        color: var(--white);
        background-color: #dba40d !important;
        border-color: #dba40d !important;
        outline: none;
        box-shadow: none;
    }

.btn-secondary {
    color: var(--white);
    background-color: var(--blue);
    border-color: var(--blue);
}

    .btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
        color: var(--white);
        background-color: var(--darkblue) !important;
        border-color: var(--darkblue) !important;
        outline: none;
        box-shadow: none;
    }

.btn-white {
    color: var(--darkblue);
    background-color: var(--offwhite);
    border-color: var(--offwhite);
}

    .btn-white:hover, .btn-white:focus, .btn-white:active {
        color: var(--white);
        background-color: var(--darkblue) !important;
        border-color: var(--darkblue) !important;
        outline: none;
        box-shadow: none;
    }

.btn-outline {
    color: var(--darkblue);
    background: none;
    border-color: var(--darkblue);
}

    .btn-outline:hover, .btn-outline:focus, .btn-outline:active {
        color: var(--white);
        background: var(--darkblue) !important;
        border-color: var(--darkblue) !important;
        outline: none;
        box-shadow: none;
    }

.scrollTop {
    position: fixed;
    z-index: 99999;
    right: 50px;
    bottom: 50px;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
}

    .scrollTop a {
        background: var(--orange);
        color: var(--white);
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        border-radius: 2px;
    }

/**********common css**********/


/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    /*backdrop-filter: blur(10px);*/
}

    header.fixed, header.fixed {
        box-shadow: var(--shadow);
        background: var(--white);
        /*backdrop-filter: blur(10px);*/
        border-bottom: 1px solid rgba(10, 22, 40, 0.08);
        position: fixed !important;
    }

/* Navigation Container */
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* Main Navigation */
header nav {
    display: flex;
    align-items: center;
    gap: 50px;
}

header .nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

header .nav-item {
    position: relative;
}

header .nav-link {
    padding: 8px 0;
    transition: var(--transition);
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    display: flex;
    width: 100%;
    align-items: center;
    grid-gap: 8px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
}

header.fixed .nav-menu > li > a, .inner-pages header .nav-menu > li > a {
    color: var(--black);
}

header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: var(--transition);
}

header .nav-link:hover::after,
header .nav-item.active .nav-link::after {
    width: 100%;
}

header .nav-link:hover {
    color: var(--orange);
}

/* Dropdown Arrow */
.arrow {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: var(--transition);
    position: relative;
    top: -1px;
}

header .nav-item.active .arrow {
    transform: rotate(-135deg);
    top: 3px;
}

/* Dropdown Menu */
header .dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-45%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    min-width: 250px;
    padding: 10px 0;
}

header .nav-item.active .dropdown {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}


/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

    .mobile-toggle span {
        width: 28px;
        height: 2px;
        background: var(--white);
        transition: var(--transition);
    }

.fixed .mobile-toggle span, .inner-pages .mobile-toggle span {
    background: var(--darkblue);
}

.mobile-toggle.active span {
    background: var(--black);
}

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

header .logo img {
    max-width: 110px;
    margin: 0;
    display: block;
}

header .logo-color {
    display: none;
}

header.fixed .logo.logo-color {
    display: block;
}

header.fixed .logo {
    display: none;
}

.inner-pages header .logo {
    display: none;
}

    .inner-pages header .logo.logo-color {
        display: block;
    }

header .top-right-btn {
    display: flex;
    grid-gap: 15px;
    position: relative;
}

    header .top-right-btn .call-us {
        display: flex;
        align-items: center;
        color: var(--white);
        grid-gap: 10px;
        font-size: 14px;
        font-weight: 400;
    }

header.fixed .top-right-btn .call-us, .inner-pages header .top-right-btn .call-us {
    color: var(--black);
}

header .top-right-btn .call-us img {
    max-width: 16px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    header .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .nav-container {
        padding: 5px 20px;
        position: fixed;
        top: 0;
        background: #fff;
        width: 100%;
        z-index: 999;
    }

    header .top-right-btn .call-us {
        color: var(--black);
    }

    header nav {
        position: fixed;
        top: 61px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 0 20px 30px;
        gap: 20px;
        transform: translateX(100%);
        transition: var(--transition);
        height: 100vh;
        overflow-y: auto;
        /*box-shadow: var(--shadow);*/
    }

        header nav.active {
            transform: translateX(0);
        }

    header .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    header .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(10, 22, 40, 0.1);
    }

    header .nav-link {
        width: 100%;
        padding: 15px 0;
        justify-content: space-between;
        color: var(--black);
    }

    header .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: var(--grey);
        margin-top: 0;
        max-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    header .nav-item.active .dropdown {
        max-height: 400px;
    }

    .mega-menu {
        width: 100%;
        min-width: 100%;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 20px;
    }

    .mega-column {
        gap: 0;
    }

    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 9999
    }

    header .dropdown-link:hover {
        transform: translateX(0);
    }

    .submenu-item {
        padding: 0 15px;
    }

    .mega-column-title {
        margin-bottom: 0;
    }

    .submenu-item.active .third-level-menu {
        margin-left: 0;
        padding-left: 0;
    }
    /*.mobile-toggle {background: #fff;}*/
}



/* ================= RESET ================= */
.nav-menu,
.mainmenu,
.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ================= TOP LEVEL MENU ================= */
.nav-menu {
    display: flex;
    gap: 32px;
    position: relative;
}

    /* .nav-menu > li {
        position: relative;
    }*/

    .nav-menu > li > a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 0;
        font-size: 14px;
        font-family: "Inter", sans-serif;
        color: var(--white);
        text-decoration: none;
        font-weight: 400;
        position: relative;
        width: 100%;
    }

        .nav-menu > li > a:hover, .nav-menu > li > a.active {
            color: var(--yellow);
        }
        /* underline animation */
        .nav-menu > li > a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: 0.3s ease;
        }

        .nav-menu > li > a:hover::after,
        .nav-menu > li > a.active::after {
            width: 100%;
        }

.submenu-link:hover,
.submenu-link.active {
    color: var(--orange);
}

/* ================= LEVEL 1 DROPDOWN ================= */
.mainmenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 900px;
    background: #f8fafc;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    padding: 20px;
    display: none;
    z-index: 99;
    justify-content: space-between;
}

    .mainmenu.active {
        display: flex;
    }

.last-menu .mainmenu {
    left: auto;
    right: -100%;
}

/* columns inside mega menu */
.mainmenu > ul {
    min-width: 250px;
}

.mainmenu li {
    width: 100%;
    max-width: 300px;
}

/* ================= LEVEL 2 & 3 SUBMENUS ================= */
.submenu {
    display: none;
    position: absolute;
    top: 20px;
    left: 270px;
    min-width: 250px;
}

    .submenu.active {
        display: block;
    }

/* level-3 submenu */
.submenu-level-2 .submenu {
    top: 100%;
    left: 0;
}

/* ================= LINKS ================= */
.mainmenu a,
.submenu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    color: #111;
    text-decoration: none;
}

    .mainmenu a.active, .submenu a.active {
        color: var(--orange);
    }

/* ================= ARROWS ================= */
.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.mainmenu .arrow {
    transform: rotate(-50deg);
}

/* ================= IMAGE BLOCK ================= */
.img-box img {
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}



/* ================= MOBILE ================= */
@media (max-width: 991px) {

    nav {
        position: fixed;
        inset: 0;
        background: #fff;
        transform: translateX(100%);
        transition: 0.4s;
        overflow-y: auto;
        z-index: 999;
    }

        nav.active {
            transform: translateX(0);
        }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .mainmenu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        flex-direction: column;
    }

    .submenu {
        position: static;
        padding-left: 20px;
    }

    header .nav-menu {
        align-items: flex-start;
    }

    .nav-menu > li {
        width: 100%;
    }

        .nav-menu > li > a {
            color: var(--black);
            justify-content: space-between;
        }

    .img-box {
        display: none;
    }

    .mainmenu > ul {
        min-width: 100%;
    }

    .mainmenu li {
        max-width: 100%;
    }

    .active + .mobile-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 5px);
    }

    .active + .mobile-toggle span:nth-child(2) {
        opacity: 0;
    }

    .active + .mobile-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .active + .mobile-toggle span {
        background: var(--black);
    }

    .top-right-btn a.btn.btn-white {
        background: var(--darkblue);
        color: var(--white);
    }

        .top-right-btn a.btn.btn-white:hover {
            background: var(--yellow) !important;
            border-color: var(--yellow) !important;
        }
}


/*********************Banner************************/
.main-banner {
    position: relative;
    text-align: center;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: url(../images/banner.png) no-repeat;
    background-size: cover;
    background-position: center;*/
    padding: 100px 0;
    height: 100vh;
}

    .main-banner:after {
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2));
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

video.video-banner {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}

/*.main-banner:after {
        content: "";
        background: url(../images/Banner-strap.png) no-repeat;
        background-size: cover;
    }*/

.main-banner .banner-inner {
    max-width: 700px;
    text-align: left;
}

    .main-banner .banner-inner h1 {
        margin-bottom: 10px;
    }

    .main-banner .banner-inner p {
        line-height: 1.3;
        font-weight: 400;
        font-size: 16px;
    }

    .main-banner .banner-inner .btn-sec {
        margin-top: 120px;
        margin-bottom: 10px;
        display: flex;
        grid-gap: 10px;
    }

.top-banner-right {
    position: absolute;
    right: 50px;
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}

    .top-banner-right div {
        text-align: center;
    }

    .top-banner-right span {
        font-family: "Playfair Display", serif;
        font-size: 40px;
        display: block;
    }

        .top-banner-right span i {
            font-size: 18px;
        }

    .top-banner-right p {
        font-size: 14px;
    }

.content-section {
    padding: 50px 0;
    overflow: hidden;
}

/****************************Find Yacht**************************/

.find-yacht h2 {
    margin-bottom: 30px;
}

.find-block {
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
    border-radius: 2px;
    padding: 10px;
    display: flex;
    margin-bottom: 3px;
}

    .find-block label {
        text-transform: uppercase;
        font-size: 11px;
        font-weight: 400;
        display: block;
        margin: 0 0 2px;
    }

    .find-block select, .find-block input {
        border: none;
        font-size: 13px;
        padding: 0 5px;
        font-weight: 500;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    .find-block > div select {
        width: 100%;
        min-height: 34px;
    }

    .find-block > div {
        width: 30%;
        border-right: 1px solid #ddd;
        margin-right: 15px;
        padding-right: 10px;
    }

        .find-block > div:first-child {
            width: 40%;
        }

        .find-block > div.size {
            border-right: none;
        }

    .find-block .btn {
        padding: 8px 15px;
    }


/****************Perfect Charter****************/

.perfect-charter {
    background: var(--grey);
}

    .perfect-charter h2 {
        margin-bottom: 30px;
        color: inherit;
    }

    .perfect-charter .p-charter-box {
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

        .perfect-charter .p-charter-box > img {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            margin: 0;
        }

        .perfect-charter .p-charter-box .desc {
            display: flex;
            flex-direction: column;
            z-index: 2;
            padding: 20px;
            margin: auto;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            text-align: center;
            color: var(--white);
            transition: all 0.5s ease;
        }

            .perfect-charter .p-charter-box .desc h3 {
                font-style: italic;
                transition: transform 0.4s ease;
                z-index: 2;
                color: var(--white);
            }

            .perfect-charter .p-charter-box .desc p {
                margin-bottom: 20px;
                font-weight: 400;
            }

            .perfect-charter .p-charter-box .desc .btn {
                color: var(--white);
                border-color: var(--white);
            }

                .perfect-charter .p-charter-box .desc .btn:hover, .perfect-charter .p-charter-box .desc .btn:focus {
                    color: var(--darkblue);
                    border-color: var(--white) !important;
                    background: var(--white) !important;
                }

            .perfect-charter .p-charter-box .desc > div {
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.5s ease 0.15s;
                height: 0;
                will-change: opacity;
            }

        .perfect-charter .p-charter-box:hover .desc > div {
            opacity: 1;
            transform: translateY(0);
            height: auto;
        }

        .perfect-charter .p-charter-box:hover .desc h3 {
            transform: translateY(-15px);
        }

.p-charter-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.p-charter-box:hover::after {
    opacity: 1;
}

.p-charter-bottom {
    margin-top: 2rem;
}

    .p-charter-bottom p {
        font-size: 12px;
        margin-bottom: 15px;
    }


/**********************About Us***********************/

.about-sec {
    background: url(../images/about-banner.png) no-repeat;
    background-size: cover;
}

    .about-sec .about-inner {
        background: var(--darkblue);
        color: var(--white);
        padding: 40px 20px;
        border-radius: 10px;
    }

.about-inner .about-content span {
    text-transform: uppercase;
    color: var(--blue);
    font-size: 12px;
}

.about-inner .about-content h2 {
    margin: 5px 0 20px;
    color: inherit;
}

.about-inner .about-content p {
    font-size: 14px;
}

.about-inner .about-content ul {
    margin-top: 20px;
}

    .about-inner .about-content ul li {
        background: url(../images/bullet-point.png) no-repeat;
        background-size: 18px;
        padding: 0 0 8px 30px;
        font-size: 14px;
        background-position: 0 3px;
    }


/***********************Join Our Community*************************/

.join-our-community {
    background: url(../images/community-banner.png) no-repeat;
    background-size: cover;
    color: var(--white);
}

    .join-our-community h2 {
        margin-bottom: 20px;
    }

    .join-our-community p {
        font-size: 14px;
        padding-right: 30px;
    }

    .join-our-community .community-form {
        display: flex;
        flex-wrap: wrap;
        grid-gap: 15px;
        align-items: center;
    }

.community-form > div {
    width: calc(50% - 15px);
}

.community-form input, .community-form .btn {
    border-radius: 4px;
    width: 100%;
    height: 38px;
    border: none;
    font-size: 12px;
    font-weight: 400;
}


/***************************Our Fleet*******************************/

.our-fleet {
    background: var(--grey);
}

    .our-fleet .fleet-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 30px;
        grid-gap: 20px;
    }

        .our-fleet .fleet-top div > span {
            text-transform: uppercase;
            color: var(--blue);
            font-weight: 400;
            font-size: 11px;
        }

        .our-fleet .fleet-top div p {
            margin: 10px 0 0;
            font-size: 14px;
            font-weight: 400;
            max-width: 80%;
        }

    .our-fleet .fleet-box {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 0 5px rgba(0,0,0,0.2);
        background: var(--white);
        position: relative;
        margin: 5px;
    }

        .our-fleet .fleet-box > img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }

        .our-fleet .fleet-box .img-top {
            position: absolute;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 240px;
            top: 0;
            padding: 15px 20px 20px 15px;
            color: var(--white);
        }

            .our-fleet .fleet-box .img-top .tags {
                display: flex;
                flex-wrap: wrap;
                grid-gap: 5px;
            }

                .our-fleet .fleet-box .img-top .tags .tag {
                    background: var(--grey);
                    color: var(--black);
                    font-size: 10px;
                    font-weight: 400;
                    border-radius: 30px;
                    padding: 1px 8px;
                }

        .our-fleet .fleet-box > div:not(.img-top) {
            padding: 20px;
        }

            .our-fleet .fleet-box > div:not(.img-top) span {
                color: var(--blue);
                font-size: 12px;
                font-weight: 400;
            }

            .our-fleet .fleet-box > div:not(.img-top) h6 {
                margin: 5px 0;
            }

            .our-fleet .fleet-box > div:not(.img-top) > div span {
                display: inline-flex;
                align-items: center;
                grid-gap: 5px;
                color: #999;
                font-weight: 400;
            }

                .our-fleet .fleet-box > div:not(.img-top) > div span img {
                    max-width: 15px;
                }

            .our-fleet .fleet-box > div:not(.img-top) > div {
                display: flex;
                align-items: center;
                grid-gap: 10px;
                margin: 10px 0 15px;
            }

        .our-fleet .fleet-box .btn {
            width: 100%;
        }


/***************************Testimonials*******************************/

.testimonial-sec {
    background: url(../images/testimonal-banner.png) no-repeat;
    background-size: cover;
    color: var(--white);
}

    .testimonial-sec .top {
        margin-bottom: 30px;
    }

        .testimonial-sec .top span {
            text-transform: uppercase;
            color: var(--orange);
            font-weight: 400;
            font-size: 11px;
        }

        .testimonial-sec .top h2 {
            margin: 10px 0 20px;
        }

        .testimonial-sec .top p {
            max-width: 500px;
            margin: 0 auto;
        }

.testimonial-block {
    background: rgba(81,167,158,0.1);
    border-radius: 10px;
    padding: 25px;
}

    .testimonial-block > span {
        font-size: 32px;
        line-height: normal;
        color: var(--orange);
    }

    .testimonial-block ul {
        display: flex;
        align-items: center;
        grid-gap: 3px;
        margin: 5px 0 15px;
    }

        .testimonial-block ul li a {
            color: var(--orange);
        }

    .testimonial-block > p ~ p {
        text-overflow: inherit;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 84px;
    }

        .testimonial-block > p ~ p + p {
            display: none;
        }

    .testimonial-block .t-bottom {
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-top: 15px;
        margin-top: 15px;
    }

        .testimonial-block .t-bottom h6 {
            font-size: 14px;
            font-weight: 300;
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .testimonial-block .t-bottom p, .testimonial-block .t-bottom span {
            font-size: 12px;
        }

        .testimonial-block .t-bottom span {
            color: var(--orange);
        }

.testimonial-sec .owl-nav, .our-fleet .owl-nav {
    margin: 25px 0 0;
    text-align: center;
}

.testimonial-sec .owl-carousel .owl-nav button, .our-fleet .owl-carousel .owl-nav button {
    border: 1px solid var(--blue);
    color: var(--blue);
    width: 32px;
    height: 32px;
    border-radius: 5px;
    margin: 0 10px;
}

    .testimonial-sec .owl-carousel .owl-nav button:hover, .our-fleet .owl-carousel .owl-nav button:hover {
        color: var(--white);
        background: var(--blue);
    }


/*********************************Enquiry Form*******************************************/

.enquiry_form {
    background: var(--blue);
}

.full-width > .container .enquiry_form .row {
    margin-left: -15px;
    margin-right: -15px;
}

    .full-width > .container .enquiry_form .row .col-md-12, .full-width > .container .enquiry_form .row .col-lg-12 {
        padding-left: 15px;
        padding-right: 15px;
    }

.enquiry_form .community-form {
    display: block;
}

    .enquiry_form .community-form > div {
        width: auto;
    }

.enquiry_form input, .enquiry_form select, .enquiry_form textarea {
    border-radius: 4px;
    width: 100%;
    height: 38px;
    border: none;
    font-size: 12px;
    font-weight: 400;
}

.enquiry_form textarea {
    height: 60px;
    resize: none;
}

.enquiry_form .community-form > .row > div {
    margin-bottom: 15px;
}

.enquiry_form .community-form > div .btn {
    width: auto;
    min-width: 140px;
}


/******************************Footer*************************************/

footer {
    background: var(--darkblue);
    color: var(--white);
    padding: 25px 0 0;
    font-size: 14px;
    font-weight: 200;
}

.inner-pages footer {
    border-top: 1px solid #fff;
}

.f-logo > div {
    margin: 10px 0;
}

    .f-logo > div:first-child {
        margin: 0 0 30px;
    }

footer .f-logo img {
    max-width: 150px;
}

footer .f-logo a, footer .f-logo p, footer .f-logo address {
    display: flex;
    align-items: flex-start;
    grid-gap: 10px;
    color: var(--white);
}

    footer .f-logo a i, footer .f-logo p i, footer .f-logo address i {
        position: relative;
        top: 4px;
        min-width: 15px;
    }

footer .f-menu h6 {
    margin-bottom: 15px;
}

footer .f-menu ul li {
    margin: 3px 0;
}

footer .f-menu a {
    color: var(--white);
}

    footer .f-menu a:hover {
        color: var(--orange);
    }

.copyright {
    border-top: 1px solid rgba(81,167,158,0.2);
    margin-top: 50px;
}

.copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

    .copyright-inner p {
        font-size: 11px;
    }

.social-icon {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

    .social-icon a {
        color: var(--white);
        background: #2b4c6d;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

        .social-icon a:hover {
            background: var(--orange);
        }

.use-info-wrap {
    margin-bottom: 20px;
}
/*****************************Footer End*************************************/


/********************************Responsive Css************************************/

@media (max-width:991px) {
    .main-banner .banner-inner {
        max-width: 550px;
    }

    .perfect-charter .p-charter-box {
        margin-bottom: 30px;
    }

    .p-charter-bottom {
        margin-top: 0;
    }

    .join-our-community p {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .our-fleet .fleet-box .btn {
        width: 100%;
        padding: 8px 10px;
    }

    .our-fleet .fleet-top .btn {
        white-space: nowrap;
    }
}

@media (max-width:767px) {
    h1 {
        font-size: 36px;
    }

    .main-banner {
        flex-direction: column;
    }

        .main-banner .banner-inner .btn-sec {
            margin-top: 20px;
        }

    .top-banner-right {
        position: static;
        flex-direction: row;
        grid-gap: 20px;
        margin-top: 20px;
    }

    h2 {
        font-size: 28px;
    }

    .find-block {
        flex-wrap: wrap;
    }

        .find-block > div {
            width: calc(50% - 15px);
            margin-right: 15px;
            margin-bottom: 20px;
        }

            .find-block > div:first-child {
                width: calc(50% - 15px);
            }

            .find-block > div:nth-child(2) {
                border: none;
            }

    .about-inner .about-content {
        margin-top: 25px;
    }

    .our-fleet .fleet-box {
        margin-bottom: 20px;
    }

    .enquiry_form .community-form > .row .row > div:first-child {
        margin-bottom: 15px;
    }

    footer .f-logo {
        margin-bottom: 30px;
    }

    header .logo img {
        max-width: 80px;
    }

    .scrollTop {
        right: 20px;
        bottom: 20px;
    }

    .perfect-charter .row {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow: auto;
        margin-bottom: 15px;
    }

        .perfect-charter .row .col-lg-3.col-md-6 {
            min-width: 320px;
            max-width: 320px;
        }

    .perfect-charter .p-charter-box {
        margin-bottom: 10px;
    }

    .our-fleet .row {
        flex-wrap: nowrap;
        overflow: auto;
    }

        .our-fleet .row .col-md-4 {
            max-width: 320px;
            min-width: 320px;
        }
}

@media (max-width:575px) {
    .perfect-charter .p-charter-box > img {
        max-height: 280px;
    }

    .our-fleet .fleet-top {
        display: block;
    }

        .our-fleet .fleet-top .btn {
            margin-top: 15px;
        }

    footer .f-menu {
        margin-bottom: 20px;
    }

    .copyright {
        margin-top: 0;
    }

    .copyright-inner {
        flex-wrap: wrap;
        justify-content: center;
        grid-gap: 5px;
    }

    .main-banner .banner-inner .btn-sec {
        flex-wrap: wrap;
    }

        .main-banner .banner-inner .btn-sec a {
            display: flex;
            width: 100%;
        }

    .find-block > div {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
        border: none !important;
    }

        .find-block > div:first-child {
            width: 100%;
        }

    .community-form > div {
        width: 100%;
    }
}
