body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#nextButton {
    position: absolute;
    padding: 0.6vw 1.1vw;
    font-size: 1.3vw;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 10px;
    border: solid 0.2vw #2c3e50;
    border-radius: 1.4vw;
    cursor: pointer;
    background-color: #fffff0;
    transition: 0.2s;
    z-index: 5;
    user-select: none;
}

#nextButton:hover {
    background-color: #e2faff;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}

.sailboat {
    overflow: hidden;
}

.sailboat img {
    width: 41vw;
    position: absolute;
    bottom: 40px;
    right: 10vw;
    z-index: 3;
    user-select: none;
}

.sailboat .text {
    position: absolute;
    top: 27vh;
    left: 13vw;
    z-index: 50;
    user-select: none;
}

.sailboat .text h1 {
    font-size: 4vw !important;
    font-family: 'Times New Roman', Times, serif;
}

.sailboat .text p {
    font-size: 2vw !important;
    font-family: 'Times New Roman', Times, serif;
}

.shake {
    animation: shake 3s infinite;
    transform-origin: bottom center;
}

@keyframes shake {
    0% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(10deg);
    }
}

.shake {
    transform-origin: calc(50% - 10px) center;
}

.cloud1 {
    position: absolute;
    width: 7vw;
    left: 100vw;
    top: 15vh;
    animation: moveCloud 8s linear infinite;
    z-index: 1;
    user-select: none;
}

.cloud2 {
    position: absolute;
    width: 7vw;
    left: 100vw;
    top: 30vh;
    animation: moveCloud 8s linear infinite;
    animation-delay: 4s;
    z-index: 1;
    user-select: none;
}

@keyframes moveCloud {
    0% {
        left: 100vw;
    }

    100% {
        left: -100px;
    }
}

.wave-image1 {
    position: absolute;
    width: 100vw;
    height: auto;
    bottom: 0;
    animation: move-left 5s linear infinite;
    z-index: 4;
    user-select: none;
}

.wave-image2 {
    position: absolute;
    width: 100vw;
    height: auto;
    bottom: 0;
    animation: move-right 5s linear infinite;
    z-index: 2;
    user-select: none;
}

.wave-image3 {
    position: absolute;
    width: 100vw;
    height: auto;
    bottom: 0;
    animation: move-left 6s linear infinite;
    z-index: 1;
    user-select: none;
}

.wave-image11,
.wave-image31 {
    left: 0;
}

.wave-image12,
.wave-image32 {
    left: 99.9vw;
}

.wave-image21 {
    right: 0;
}

.wave-image22 {
    right: 99.9vw;
}

@keyframes move-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100vw);
    }
}

@keyframes move-right {
    0% {
        transform: translateX(0vw);
    }

    100% {
        transform: translateX(100vw);
    }
}

@media (max-width: 768px) {
    .sailboat img {
        top: 50vh;
        width: 100%;
        max-width: none;
        right: 0;
    }

    .sailboat .text {
        top: 150px;
        left: 5%;
    }

    .sailboat .text h1 {
        font-size: 36px !important;
    }

    .sailboat .text p {
        font-size: 18px !important;
    }

    .wave-image1,
    .wave-image2,
    .wave-image3 {
        bottom: 40px;
    }

    #nextButton {
        padding: 5px 10px;
        font-size: 14px;
        margin-top: 10px;
    }
}

/*********************/

.carousel-container {
    display: flex;
    height: 100vh;
}

.carousel {
    overflow: hidden;
}

.carousel-inner {
    transition: transform 0.5s ease-in-out;
}

.dots-container {
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.dot {
    width: 0.4vw;
    height: 0.4vw;
    border-radius: 50%;
    background: #ccc;
    margin: 0.8vh 0;
    cursor: pointer;
}

.dot.active {
    background: #333;
    width: 0.65vw;
    height: 0.65vw;
}

.section-container {
    height: 100vh;
    width: 100vw;
}

section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    background-size: cover;
    background-position: center;
    padding: 20px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.home-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82%;
    height: 70%;
    margin: 0 auto;
    padding: 1vw;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2.2vw;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.home-container .image {
    width: 100%;
    max-width: 27vw;
    padding: 2vw;
    height: auto;
    border-radius: 10px;
    transition: transform 1s ease-in-out;
    user-select: none;
}

.home-container .text {
    width: 100%;
    max-width: 33vw;
    padding: 2vw;
    text-align: center;
}

.home-container h1,
.home-container h2 {
    margin-bottom: 20px;
    font-family: 'Arial Black', Gadget, sans-serif;
}

.home-container h1 {
    font-size: 2.9vw !important;
    color: #2c3e50 !important;
}

.home-container h2 {
    font-size: 2.6vw !important;
    color: #34495e !important;
}

.home-container p {
    font-size: 1.56vw !important;
    line-height: 1.5;
    color: #555 !important;
}

#home1 {
    background: #ebf6ff;
}

#home2 {
    background: #f6ecff;
}

#home3 {
    background: #e0e4ff;
}

#home4 {
    background: #fff1fa;
}

#home5 {
    background: #ffe2e2;
}

#home6 {
    background: #111;
}

#home7 {
    background: #dfffe1;
}

#home8 {
    background: #e8e6ff;
}

#home9 {
    background: #f7e8ff;
}

#home10 {
    background: #e2ffe9;
}

.show {
    opacity: 1;
    transform: scale(1);
}

.show .image {
    transform: scale(1.05);
}

.But {
    color: #fff !important;
    border: 0.4vw solid #d53b48 !important;
    border-radius: 2.2vw;
    padding: 3vw;
    font-size: 3vw !important;
}

.video-container {
    position: relative;
    width: 45vw;
    height: 25.3vw;
    border: 0.4vw solid #4CAF50;
    border-radius: 1.2vw;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.video-container iframe {
    width: 45vw;
    height: 25.3vw;
}

.bean-man {
    display: none;
}

@media (max-width: 1000px) {
    .video-container {
        width: 504px;
        height: 283.5px;
    }

    .video-container iframe {
        width: 504px;
        height: 283.5px;
    }

    .home-container {
        height: 80vh;
    }

    .home-container .image {
        max-width: 50%;
        padding: 0 20px;
    }

    .home-container .text {
        padding: 0 20px;
    }

    .home-container h1 {
        font-size: 2.2rem !important;
    }

    .home-container h2 {
        font-size: 2rem !important;
    }

    .home-container p {
        font-size: 1.2rem !important;
    }

    .But {
        font-size: 30px !important;
    }
}

@media (max-width: 800px) {
    .video-container {
        width: 336px;
        height: 189px;
    }

    .video-container iframe {
        width: 336px;
        height: 189px;
    }

    .home-container {
        flex-direction: column;
    }

    .home-container .image {
        max-width: 70%;
        padding: 30px 0px;
    }

    .home-container h1 {
        font-size: 1.8rem !important;
    }

    .home-container h2 {
        font-size: 1.6rem !important;
    }

    .home-container p {
        font-size: 1rem !important;
    }
}

@media (max-width: 600px) {
    .bean-man {
        display: block;
        position: absolute;
        width: 100px;
        top: 150px;
    }

    .sit {
        margin: auto;
    }
}

.num-container {
    display: flex;
}

.home4title {
    position: absolute;
    top: 20vh;
    margin: auto;
    margin-bottom: 50px;
}

.home4title h1 {
    font-size: 4vw !important;
    color: #164160 !important;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 2000px !important;
}

.num-container .column {
    background-color: #fff;
    border-radius: 2vw;
    padding: 0 2vw;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    width: 30%;
    height: 30vh;
    margin: 0 1.5vw;
    margin-top: 10vh;
    text-align: center;
    opacity: 0;
    transform: translateY(4vw);
    transition: opacity 1s ease, transform 1s ease;
    transition-delay: 0s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.num-container .column.active {
    opacity: 1;
    transform: translateY(0);
}

.num-container .column:nth-child(1).active {
    transition-delay: 0s;
}

.num-container .column:nth-child(2).active {
    transition-delay: 1s;
}

.num-container .column:nth-child(3).active {
    transition-delay: 2s;
}

.num-container .number {
    font-size: 3.1vw;
    font-weight: bold;
    color: #34495e;
}

.num-container .text {
    font-size: 1.3vw;
    color: #666;
}

@media (max-width: 1000px) {
    .num-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        height: 100vh;
    }

    .num-container .column {
        max-width: 400px;
        width: 100%;
        height: 100px;
        margin: 15px;
        padding: 50px;
    }

    #num1,
    #num2,
    #num3 {
        font-size: 35px;
    }

    .num-container .text {
        font-size: 16px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .dot.active {
        width: 10px;
        height: 10px;
    }
}