/********** Template CSS **********/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ffffff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #065866;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #054652;
}

:root {
    --primary: rgb(14 84 159);
    --secondary: #4777f5;
    --light: #f7faff;
    --dark: #1d1d27;
}
html,
body {
    font-family: "Roboto", sans-serif !important;
}

.btn-secondary {
    color: #000;
    background-color: #f87474 !important;
    border-color: #f87474 !important;
}
.btn-secondary:hover {
    background-color: #fa9d9d !important;
    border-color: #fa9d9d !important;
}

.bg-primary {
    background-color: #00aff5 !important;
}
.bg-second {
    background-color: #076575 !important;
}
.btn-primary {
    color: #fff;
    background-color: #054652;
    border-color: #054652;
}

.btn-orange {
    color: #fff;
    background-color: #f87474;
    border-color: #f87474;
}

.btn-primary:hover {
    background-color: #075e6d;
    border-color: #075e6d;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: 0.5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.text-primary {
    color: #f87474 !important;
}
/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    font-size: 19px;
    padding: 25px 0;
    color: #00aff5 !important;
    outline: none;
    transition: 0.5s;
}

.nav-item span {
    height: 25px;
    /* background: black; */
    transition: all 0.5s;
    font-size: 9px;
    display: flex;
    margin-right: 5px;
    font-weight: 800;
    border-radius: 50%;
    border: 2px solid #00aff5;
    width: 25px;
    /* display: inline-block; */
    justify-content: center;
    align-items: center;
}
.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top .log {
    padding: 20px 0;
    color: #054652 !important;
}

.sticky-top .navbar-nav .nav-link:hover {
    color: #054652 !important;
}

.sticky-top .nav-item span {
    height: 25px;
    /* background: black; */
    transition: all 0.5s;
    font-size: 10px;
    display: flex;
    margin-right: 5px;
    font-weight: 800;
    border-radius: 50%;
    border: 2px solid #064d5a;
    width: 25px;
    /* display: inline-block; */
    justify-content: center;
    align-items: center;
}

.navbar-light .navbar-nav .nav-link:hover span,
.navbar-light .navbar-nav .nav-link.active {
    color: #fff !important;
}

.navbar-light .navbar-nav .nav-link:hover span {
    color: #00aff5;
    background-color: #f87474;
    border: 2px solid #f87474;
}

.sticky-top.navbar-light .navbar-nav .nav-link:hover span {
    background-color: #054652 !important;
    color: #fff;
}
.navbar-light .navbar-brand h1 {
    color: #ffffff;
}

.navbar-light .navbar-brand img {
    max-height: 45px;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 500px) {
    .hero-header {
        /* height: 40vh !important; */
        /* background: unset !important; */
        background-color: #00aff5 !important;
    }
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #ffffff;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #dddddd;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
        font-weight: bold;
    }
    .bulkheader .dropdown-menu .bi {
        font-size: 5.5vw !important;
        font-weight: bold;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }

    .log {
        font-size: 40px;
        color: #000000 !important;
    }

    #about {
        margin: 28vw 0 2vw !important;
    }

    .searchFilter .btn-search {
        border-radius: 11vw !important;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        background: #fff;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, 0.1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #ffffffed;
    }

    /* .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #fff;
        transition: 0.5s;
    } */

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }
}

/*** Hero Header ***/
.hero-header {
    height: 100vh;
    background: url(/assets/website/img/bg-dot.png),
        url(/assets/website/img/bg-dot.png),
        url(/assets/website/img/bg-round.png),
        url(/assets/website/img/bg-tree.png),
        url(/assets/website/img/bg-bottom-hero.png);
    background-position: 10px 10px, bottom 190px right 10px, left 55% top -1px,
        left 20% bottom -1px, center bottom 0px;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: #f87474;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: #f87474;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgb(243 145 76 / 54%);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}

.vesselsOffers {
    background: url(/assets/website/img/bg-top.png),
        url(/assets/website/img/bg-bottom.png);
    background-position: left top, right bottom;
    background-repeat: no-repeat;
    /* background-color: rgb(14 84 159) !important; */
    background-attachment: fixed;
}
/*** Service ***/
.service-item {
    position: relative;
    background-color: #054652 !important;
    padding: 20px 10px;
    border: 2px solid #ffffff60;
    box-shadow: 0 0 17px rgb(0 0 0 / 20%);
    transition: 0.5s;
    background: url(/assets/website/img/footer.png) center center no-repeat;
}

.service-item:hover {
    border: 2px solid #fff;
    background: #054652;
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 140px;
    /* height: 90px; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    /* background: url(/assets/website/img/icon-shape-primary.png) center center 
        no-repeat;*/
    transition: 0.5s;
    color: #f39b5e;
}

.service-item:hover .service-icon {
    color: #075e6d;
    /* background: url(/assets/website/img/icon-shape-white.png); */
}

.service-item p {
    transition: 0.5s;
    color: #fff;
}
.service-item h5 {
    font-size: 15px;
    transition: 0.5s;
    color: #fff;
}

.service-item:hover h5,
.service-item:hover p {
    color: #fff;
}

.service-item a.btn {
    font-size: 14px;
    position: relative;
    display: flex;
    color: #fff;
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: #dddddd54;
    transition: 0.5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}

/*** Testimonial ***/
.newsletter,
.testimonial {
    background: url(/assets/website/img/bg-top.png),
        url(/assets/website/img/bg-bottom.png);
    background-position: left top, right bottom;
    background-repeat: no-repeat;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--light) !important;
    border-color: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #888888;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h6 {
    color: var(--dark) !important;
}

/*** Team ***/
.team-item {
    position: relative;
    transition: 0.5s;
    z-index: 1;
}

.team-item::after {
    position: absolute;
    content: "";
    top: 3rem;
    right: 3rem;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    z-index: -1;
}

.team-item:hover::after {
    background: var(--primary);
}

.team-item h5,
.team-item small {
    transition: 0.5s;
}

.team-item:hover h5,
.team-item:hover small {
    color: var(--light);
}

/*** Project Portfolio ***/

.portfolio-item {
    height: 400px;
}

#portfolio-flters .btn {
    position: relative;
    display: inline-block;
    margin: 10px 4px 0 4px;
    transition: 0.5s;
}

#portfolio-flters .btn::after {
    position: absolute;
    content: "";
    right: -1px;
    bottom: -1px;
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 50px solid #ffffff;
}

#portfolio-flters .btn:hover,
#portfolio-flters .btn.active {
    color: var(--light);
    background: var(--primary);
}

.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: var(--primary);
    transition: 0.5s;
    z-index: 1;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(website/img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: 0.5s;
    opacity: 0;
    z-index: 2;
}

.portfolio-item:hover .btn {
    opacity: 1;
    transition-delay: 0.15s;
}

/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgb(255 255 255 / 58%);
    border-radius: 40px;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #d6d6d6;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.vesselsOffers .info a {
    background: #ffffff1f;
    color: white;
    font-size: 13px;
    /* border: 2px solid; */
    backdrop-filter: blur(10px);
    margin: 5px;
    padding: 8px 13px;
    border-radius: 20px;
}

.vesselsOffers .info a:hover {
    background: #ffffff1f;
    color: white;
    /* border: 2px solid; */
}

/* .vesselsOffers .fa {
    border: 2px solid #d3d3d3;
    padding: 3px !important;
    color: #d3d3d3;
    border-radius: 50% !important;
    font-size: 10px;
} */

.vesel-item .card {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    /* width: 190px; */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.vesel-item .image-container {
    position: relative;
    height: 140px;
    overflow: hidden;
}
.product-detail-container {
    padding: 15px 10px 0 !important;
}

.vesel-item .thumbnail-image {
    border-radius: 10px 10px 0 0 !important;
    /* width: 90%; */
    display: flex;
    background: #054652;
    justify-content: center;
}
.vesel-item .discount {
    background-color: #f87474;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 9px;
    border-radius: 3px;
    color: #fff;
}
.vesel-item .price {
    background-color: #ffffff;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 9px;
    border-radius: 3px;
    color: #000;
}
.vesel-item .name {
    background: none;
    backdrop-filter: blur(5px);
    width: 100%;
    bottom: 20px;

    /* margin-bottom: 10px; */
    position: absolute;
    bottom: 0;
}
.vesel-item .name h6 {
    font-size: 12px;
}

.vesel-item .wishlist {
    height: 25px;
    width: 25px;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.vesel-item .first {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 9px;
}

.mask {
    width: 100%;
    height: 100%;
    background: #0000002e;
    position: absolute;
    border-radius: 10px 10px 0 0;
    top: 0;
    z-index: 1;
}

.vesel-item .vessel-name {
    font-size: 13px;
    font-weight: bold;
    width: 40%;
}

.vesel-item .dress-name {
    font-size: 12px;
    font-weight: bold !important;
    width: 40%;
}

.vesel-item .details_btn {
    font-size: 13px;
    font-weight: bold !important;

    color: #f87474;
}
.vesel-item .details_btn:hover {
    font-size: 13px;
    font-weight: bold !important;

    color: #fa9d9d;
}

.vesel-item .new-price {
    font-size: 14px;
    font-weight: bold;
    color: #7e7e7e;
}
.vesel-item .old-price {
    font-size: 10px;
    /* font-weight: bold; */
    color: #939393;
}

.vesel-item .btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    padding: 3px;
}

.vesel-item .creme {
    background-color: #fff;
    border: 2px solid grey;
}
.creme:hover {
    border: 3px solid grey;
}

.creme:focus {
    background-color: grey;
}

.vesel-item .red {
    background-color: #fff;
    border: 2px solid red;
}

.vesel-item .red:hover {
    border: 3px solid red;
}
.vesel-item .red:focus {
    background-color: red;
}

.vesel-item .blue {
    background-color: #fff;
    border: 2px solid #40c4ff;
}

.vesel-item.blue:hover {
    border: 3px solid #40c4ff;
}
.vesel-item.blue:focus {
    background-color: #40c4ff;
}
.vesel-item.darkblue {
    background-color: #fff;
    border: 2px solid #01579b;
}
.vesel-item.darkblue:hover {
    border: 3px solid #01579b;
}
.vesel-item.darkblue:focus {
    background-color: #01579b;
}
.vesel-item.yellow {
    background-color: #fff;
    border: 2px solid #ffca28;
}
.vesel-item.yellow:hover {
    border-radius: 3px solid #ffca28;
}
.vesel-item.yellow:focus {
    background-color: #ffca28;
}

.vesel-item.item-size {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid grey;
    color: grey;
    font-size: 10px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
}

.vesel-item.rating-star {
    font-size: 10px !important;
}
.vesel-item.rating-number {
    font-size: 10px;
    color: grey;
}
.vesel-item.buy {
    font-size: 12px;
    color: purple;
    font-weight: 500;
}

.vesel-item .voutchers {
    background-color: #054652;
    border: none;
    color: white;
    border-radius: 10px;
    /* width: 190px; */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: hidden;
}

.vesel-item .voutcher-divider {
    display: flex;
}
.vesel-item .voutcher-left {
    width: 60%;
}
.vesel-item .voutcher-name {
    color: rgb(255, 255, 255);
    font-size: 9px;
    font-weight: 500;
}
.vesel-item .voutcher-code {
    color: rgb(221, 221, 221);
    font-size: 12px;
    font-weight: bold;
}
.vesel-item .voutcher-right {
    width: 40%;
    background-color: purple;
    color: #fff;
}

.vesel-item.discount-percent {
    font-size: 12px;
    font-weight: bold;
    position: relative;
    top: 5px;
}
.vesel-item .off {
    font-size: 14px;
    position: relative;
    bottom: 5px;
}

.vesel-item .card-body h3 {
    color: #6a98c9 !important;
    font-size: 20px;
}

.text-blue {
    color: #006c81;
}

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
}

.openbtn:hover {
    background-color: #444;
}

#main {
    transition: margin-left 0.5s;
    padding: 16px;
}

.primary {
    color: #2196f3 !important;
    font-size: 14px;
}

.orange {
    color: #f7a871 !important;
    font-size: 14px;
}

@media (min-width: 1400px) {
    .hero-header {
        height: 90vh;
        /* width: fit-content; */
        background: url(/assets/website/img/bg-dot.png),
            url(/assets/website/img/bg-dot.png),
            url(/assets/website/img/bg-round.png),
            url(/assets/website/img/bg-tree.png);
        background-position: 10px 10px, bottom 190px right 10px,
            left 55% top -1px, left 45% bottom -1px, center bottom -1px;
        background-repeat: no-repeat;
    }
}

.btn-outline-primary {
    color: #000000;
    border: none;
    box-shadow: 1px 0 8px #c1c1c1;
}

.btn-outline-primary:hover {
    background-color: #f87474;
}

.bulkheader .dropdown-toggle::after {
    display: none;
}
.bulkheader .dropdown-menu {
    right: 0;
    text-align: center;
}
.bulkheader .dropdown-menu .bi {
    font-size: 1.5vw;
    font-weight: bold;
}
.dropdown-item {
    display: flex;
    align-items: center;
    align-content: center;
}
.bulkheader .dropdown-menu h6 {
    padding-left: 1vw;
    margin: 0;
}

.bulkheader .dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #f7a871;
}
.log {
    font-size: 28px;
    color: #18aff5;
}

#about {
    margin: 5vw 0 2vw;
}

.searchFilter {
    display: flex;
    margin-bottom: 20px;
    justify-content: center;
}
.forget {
    border: none;
    background-color: rgb(0 0 0 / 8%);
    margin: 0px auto;
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(12px);
}

.primary_note {
    /* color: #ffad75; */
    font-size: 13px;
    color: #05fdff;
    padding-bottom: 5px;
}
.searchBar {
    font-size: 18px;
    padding: 10px 20px;
}
.searchBar option {
    font-size: 18px;
}
.searchBar2 {
    font-size: 17px;
    padding: 10px 20px;
}
.searchBar2 option {
    font-size: 17px;
}

.info p {
    font-size: 13px;
}
#cargo hr {
    margin: 5px 0;
}
#vessel hr {
    margin: 5px 0;
}

.bulk .image-container {
    height: 110px;
}

.filterbtn .fa {
    font-size: 22px;
    color: #fff;
    display: flex;
    padding: 5px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.filtermore {
}

input[type="date"]:before {
    content: attr(placeholder) !important;
    color: #aaa;
    margin-right: 0.5em;
    display: none;
}
input[type="date"]:focus:before,
input[type="date"]:valid:before {
    content: "";
}
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
    color: #b3b3b3;
}
.form-control::placeholder {
    color: #b3b3b3;
    opacity: 1;
}
label {
    display: inline-block;
    color: #8f8f8f;
    font-weight: bold;
}

.search_filters {
    margin: 0vw 0;
    background: linear-gradient(#fbfbfb, #e7e7e7);
    background: url(/assets/website/img/bg-dot.png),
        url(/assets/website/img/bg-dot.png),
        url(/assets/website/img/bg-round.png),
        url(/assets/website/img/bg-tree.png),
        url(/assets/website/img/bg-bottom-hero.png);
    background-position: 28px 10px, bottom 205px right 18px, left 55% top -1px,
        left 25% bottom -1px, center bottom 0px;
    background-repeat: no-repeat;
    background-color: #297a88;
    border: 5px solid #ffffff;
    background-repeat: no-repeat;
    border-radius: 2vw;
    background-attachment: fixed;
}

.search_filters label {
    color: #fff;
}

.result .fa {
    font-size: 1.5vw !important;
    color: #fff;
    background: #297a88;
    padding: 1vw !important;
    border-radius: 50%;
    margin: 2vw 0 !important;
    border: none !important;
}

.adv-btn {
    background: #297a88;
    border: 5px solid #297a88;
}
.htitle {
    margin-top: 6vw;
}



.table-darkblue {
    background: #297a88!important;
    color: white!important;
}
