@import url('fonts.css');
*{
    margin: 0px;
    padding: 0px;
}

body {
    font-family: "Roboto", sans-serif;
}

:root {
    --primary: #5ac4be;
    --secondary: #555;
    --black: #000;
    --white: #fff;
    --grey: #bfb4ab;
}

.primary{
    color: var(--primary);
}
.secondary{
    color: var(--secondary);
}
.black {
    color: var(--black);
}
.white{
    color: var(--white);
}
.grey {
    color: var(--grey);
}

.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;
}

.fs32 {
    font-size: 32px;
}

.fs36 {
    font-size: 36px;
}

.fs38 {
    font-size: 38px;
}

.fs40 {
    font-size: 40px;
}

.fs42 {
    font-size: 42px;
}

.fs70 {
    font-size: 70px;
}

.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;
}

.primary-btn {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 30px;
    border-radius: 50px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    transition: .67s;
}
.primary-btn:hover {
    background-color: #55aaa5;
    border: 1px solid #55aaa5;
}

/* Header Css Start Here  */
.nav-item .nav-link {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 500;
    transition: .67s;
    padding: 0px 20px !important;
}
.nav-item .nav-link:hover {
    color: var(--primary);
}
.header .header-btn a{
    color: var(--white);
    background-color: var(--secondary);
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: .67s;
}
.header .header-btn a:hover {
    background-color: var(--primary);
}

/* Banner Css Start Here  */

.banner {
    background-image: url('../img/banner.png');
    background-repeat: no-repeat;
    padding: 260px 0px 60px 0px;
    background-position: center;
}

/* Popular css start Here  */
.popular .popular-wrapper .cruise-content .location {
    border-top: 1px solid #cbcbcb;
    padding-top: 10px;
    border-bottom: 1px solid #cbcbcb;
    padding-bottom: 10px;
}
.popular .popular-wrapper .cruise-content {
    background-color: #f5f5f5;
    padding: 15px;
}
.popular .popular-wrapper {
    border-radius: 10px;
}
.popular .popular-wrapper:hover .cruise-img img {
    transform: scale(1.1);
}

.destination .destination-wrapper .destination-content {
    position: absolute;
    background-color: #ffffffdb;
    padding: 20px;
    left: 0;
    bottom: 20px;
    width: 80%;
    margin: auto;
    right: 0;
    text-align: center;
    border-radius: 10px;
}
.destination .destination-wrapper .desti-img img {
    border-radius: 10px;
    transition: .67s;
}
.destination .destination-wrapper:hover .desti-img img {
    transform: scale(1.1);
}
.destination .destination-wrapper {
    border-radius: 10px;
}

.med-content .content-wrapper h2 {
    font-size: 30px;
    color: var(--secondary);
}
.med-content .content-wrapper h3 {
    color: var(--secondary);
    font-size: 24px;
}
.med-content .content-wrapper h4 {
    color: var(--secondary);
    font-size: 20px;
}
.med-content .content-wrapper p {
    font-size: 14px;
}

.footer {
    background-color: var(--primary);
    padding: 60px 0px 20px 0px;
}

.footer .f-links ul li a {
    color: var(--black);
    transition: .67s;
}
.footer .f-links ul li a:hover {
    color: var(--black);
}

.footer .contact-erap .address p a {
    color: var(--black);
    transition: .67s;
}
.footer .contact-erap .address p a:hover {
    color: var(--black);
}

.copyright {
    border-top: 1px solid #ffffff29;
    padding-top: 20px;
}