@import url('font.css');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
}

:root {
    --blue: #003c60;
    --black: #000;
    --white: #fff;
    --orange: #eb662b;
}

.blue {
    color: var(--blue);
}

.black {
    color: var(--black);
}

.white {
    color: var(--white);
}

.fs12 {
    font-size: 12px;
}

.fs14 {
    font-size: 14px;
}

.fs16 {
    font-size: 16px;
}

.fs18 {
    font-size: 18px;
}

.fs20 {
    font-size: 20px;
}

.fs22 {
    font-size: 22px;
}

.fs24 {
    font-size: 24px;
}

.fs26 {
    font-size: 26px;
}

.fs28 {
    font-size: 28px;
}

.fs30 {
    font-size: 30px;
}

.fs36 {
    font-size: 36px;
}

.fs38 {
    font-size: 38px;
}

.fs40 {
    font-size: 40px;
}

.fs42 {
    font-size: 42px;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700 {
    font-weight: 700;
}

.fw800 {
    font-weight: 800;
}

.fw900 {
    font-weight: 900;
}

.index {
    z-index: 9;
}

.transit {
    transition: .67s;
}

.p60 {
    padding: 60px 0px;
}

.blue-btn {
    background-color: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 10px;
    padding: 10px 20px;
    color: var(--white);
    transition: .67s;
}

.blue-btn:hover {
    background-color: var(--orange);
    border: 1px solid var(--orange);
}

.orange-btn {
    background-color: var(--orange);
    border: 1px solid var(--orange);
    border-radius: 10px;
    padding: 10px 30px;
    color: var(--white);
    transition: .67s;
}

/* Header Css Start Here  */

.header .nav-link {
    padding: 0px 20px !important;
    color: var(--blue);
    font-size: 16px;
    font-weight: 500;
    transition: .67s;
}

.header .nav-link:hover {
    color: var(--orange);
}

.header .navbar-toggler-icon {
    height: auto;
}

.header .navbar-toggler:focus {
    box-shadow: none;
}

.header .nav-link.blue-btn {
    padding: 7px 20px !important;
    margin-left: 20px;
}

.banner .banner-content {
    background-color: var(--blue);
    padding: 90px 50px;
}

/* .banner .row {
    border-radius: 10px;
    overflow: hidden;
} */
.banner .banner-content::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 0px;
    height: 100%;
    width: 65px;
    display: block;
    background-image: url(../img/banner-shape.png);
    background-repeat: no-repeat;
}

.banner .img-banner img {
    height: 100%;
    object-fit: cover;
}

/* Destinations Section Css Start Here  */
.destination .d-wrapper .img-destination {
    border-radius: 10px;
}

.destination .d-wrapper .img-destination::after {
    content: '';
    position: absolute;
    top: 0px;
    display: block;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: .6;
    transition: .67s;
}

.destination .desti-name {
    position: absolute;
    bottom: 20px;
    left: 0px;
    right: 0px;
}

.destination .d-wrapper:hover .img-destination img {
    transform: scale(1.1);
}

.destination .d-wrapper:hover .img-destination::after {
    opacity: .4;
}

.destination {
    background-color: #f3faff;
}

/* Cruise Assistance Css Start Here  */
.cruise-assistance .servis-assist {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #003c60;
    background-color: #f3faff;
}

.cruise-assistance .servis-assist h4 {
    min-height: 48px;
}

/* Med Content Css Start Here  */
.med-content .content-wrapper h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 16px;
}

.med-content .content-wrapper h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 16px;
}

.med-content .content-wrapper h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 16px;
}

.med-content .content-wrapper p {
    font-size: 14px;
    font-weight: 400;
}

.med-content .content-wrapper ul {
    list-style-type: none;
    margin-bottom: 0px;
}

.med-content .content-wrapper ul li {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}

.med-content .content-wrapper ul li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 6px;
    display: block;
    height: 10px;
    width: 10px;
    background-image: url(../img/list-arrow.png);
    background-size: 10px;
    background-repeat: no-repeat;
}

/* Footer Css Start Here  */
.footer {
    background-color: var(--blue);
    padding: 60px 0px 20px 0px;
}

.footer .f-links ul li a {
    color: var(--white);
}

.footer .contact-erap .address p a {
    color: var(--white);
}

.copyright {
    border-top: 1px solid #ffffff29;
    padding-top: 20px;
}

/* Inner Pages Css Start Here  */
.inner-banner {
    padding: 100px 0px;
    background-repeat: no-repeat;
    background-position: center;
}

.inner-banner::after {
    content: '';
    position: absolute;
    top: 0px;
    display: block;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: .6;
}

.inner-banner .breadcrumb li a {
    color: var(--white);
}

.inner-banner .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}

.contact .contact-details .address {
    padding: 30px;
    border: 1px solid var(--blue);
    border-radius: 10px;
}

.contact .contact-form {
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #ececec;
}

.contact .contact-form input,
.contact .contact-form textarea {
    height: 40px;
    color: #000;
    font-size: 14px;
    border-radius: 8px;
}

.contact .contact-form textarea {
    height: 100px;
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
    box-shadow: none;
    border: 1px solid #ced4da;
}