body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

a:hover {
    color: #fff !important;
}



@media only screen and (max-width: 1024px) {
    h1 {
        font-size: 30px !important;
    }

    h2 {
        font-size: 25px !important;
    }
}

/*STYLE HEADER*/

.header {
    position: absolute;
    z-index: 4;
    width: 100%;
    background-color: #00000079;
}

header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.header img {
    height: 80px;
    top: 20px;
    margin: 20px;
}

.mobile-menu-wrapper {
    display: none;
}

.menu {
    margin: 40px;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
    color: #fff;
    margin: 0px;
}

.menu ul li a {
    color: #fff;
    cursor: pointer;
}

.hamburger {
    font-size: 32px;
    padding: 20px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    color: #fff;
}

/*FINE HEADER*/

.titles {
    position: relative;
    color: #fff;
    z-index: 4;
    display: flex;
    align-items: end;
}

.main-title {
    flex: 4;
    font-size: 90px;
}

.second-title {
    flex: 1;
}

.hero-points {
    display: flex;
    justify-content: space-between;
    color: #fff;
    position: relative;
    z-index: 4;
}

.point h3 {
    font-size: 40px;
}

#carousel .carousel-item.boat {
    background-image: url("img/2.jpg");
}

#carousel .carousel-item.sea {
    background-image: url("img/3.jpg");
}

#carousel .carousel-item.river {
    background-image: url("img/6.jpg");
}

#carousel .carousel-item {
    height: 100vh;
    width: 100%;
    min-height: 350px;
    background: no-repeat center center scroll;
    background-size: cover;
}

#carousel .carousel-inner .carousel-item {
    transition: -webkit-transform 2s ease;
    transition: transform 2s ease;
    transition: transform 2s ease, -webkit-transform 2s ease;
}

#carousel .carousel-item .caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    color: white;
    animation-duration: 1s;
    animation-delay: 2s;
}

#carousel .caption h2 {
    animation-duration: 1s;
    animation-delay: 2s;
}

#carousel .caption p {
    animation-duration: 1s;
    animation-delay: 2.2s;
}

#carousel .caption a {
    animation-duration: 1s;
    animation-delay: 2.4s;
}

.carousel-text {
    position: absolute;
    top: 40%;
    left: 10%;
    z-index: 3;
    color: #fff;
    width: fit-content;
    padding: 30px;
    background-color: #000000b5;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.195);
    z-index: 1;
}

.carousel-item,
.active {
    cursor: default !important;
}

.carousel-indicators {
    z-index: 3 !important;
}

.carousel-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.carousel-text p {
    line-height: 1.5;
}

footer {
    background-color: #000;
    color: #666;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media only screen and (max-width: 1024px) {

    .menu {
        display: none;
    }

    .mobile-menu-wrapper {
        display: block;
    }

    .mobile-menu-wrapper {
        position: relative;
        z-index: 2000;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background: #111111f5;
        color: white;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 1500;
    }

    #carousel .carousel-item {
        height: 60vh;
    }

    #close-menu {
        position: absolute;
        top: 45px;
        right: 20px;
        cursor: pointer;
    }
  
    nav img{
        width: 150px;
        height: auto !important;
        margin-top:30px !important;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        text-align: center;
    }

    .mobile-menu li {
        margin: 20px 0;
    }

    .mobile-menu a {
        color: white;
        text-decoration: none;
        font-size: 32px;
    }

    .mobile-menu.open {
        transform: translateX(0);
    }

    .carousel-text h1 {
        font-size: 50px;
    }

    .carousel-text p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {

    #carousel .carousel-item {
        height: 80vh;
    }

    .carousel-text {
        left: 0;
    }

    .carousel-text h1 {
        font-size: 40px;
    }

    .carousel-text p {
        font-size: 16px;
    }

    .carousel-control-next,
    .carousel-control-prev {
        display: none !important;
    }
}

@media only screen and (max-width: 380px) {

    #carousel .carousel-item {
        height: 100vh;
    }
}