@font-face {
    font-family: HelveticaBlack;
    src: url(../fonts/Helvetica_Black_Condensed.otf);
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: HelveticaBlack;
}


html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #fff;
}

.preloader .loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font: 14px arial;
}

.section-top {
    /* height: 5vh; */
    background-color: #ff9800;
    color: #fff;
    font-size: 20px;
    padding: 5px 0px 0px 0px;
    /* padding: 5px 0; */
    font-weight: bold;
    /* height: 45px; */

    /* position: relative; */
    width: 100%;
    overflow: hidden;
    height: 35px;
}



.cont {
    width: 100%;
    overflow: hidden;
}

.scorri {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.tithome {
    animation-name: marquee;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    flex-shrink: 0;
}

.tithome li {
    /* width: fit-content; */
    display: inline-block;
    list-style: none;
    padding-right: 30px;
    /* font-size: 40px; */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

.section-slide {
    background: url('../images/slider-bg-resize.jpg') no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 95vh;

}

.section-slide .banner {
    padding-top: 100px;
    /* padding: 40vh 0; */
}

.section-slide h2 {
    font-size: 40px;
    /* Warning: no fallback */
    background: -webkit-linear-gradient(top, #000, #05697c);
    -webkit-background-clip: text;
    -webkit-text-stroke: 5px transparent;
    color: #fff;
}

.navigation {
    padding: 1rem 0;
}

.navigation .logo {
    text-align: center;
}

.navigation .logo img {
    height: 100px;

}

.btn-primary {
    background: rgb(113, 198, 159);
    background: linear-gradient(0deg, rgba(113, 198, 159, 1) 0%, rgba(38, 118, 165, 1) 100%);
    border: 2px solid #000;
    width: 100%;
    max-width: 200px;
}

.section-home-1 {
    background-color: #185f60;
    padding: 120px 0;
    position: relative;
}

.section-home-1 h1 {
    color: #fff;
    font-size: 30px;
}

.section-home-2 {
    background-color: #f8c36b;
    padding: 150px 0;
    position: relative;
}

.section-home-2 h1 {
    color: #fff;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.section-home-2 h2 {
    font-size: 28px;
    color: #fff;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    /* width and color */
}

.section-home-3 {
    background-color: #a7d3c1;
    padding: 100px 0;
    position: relative;
}


.menu-modal {
    height: 80% !important;
    border-bottom: 10px solid #ec3814;
    /* border-radius: 0 0 25px 25px; */
}

/* The navigation links inside the overlay */
.menu-modal .modal-body a {
    /* padding: 8px; */
    text-decoration: none;
    /* font-size: 45px !important; */
    font-size: 7.1759259259vw;
    color: #fff !important;
    /* display: block; */
    /* Display block instead of inline */
    transition: 0.3s;
    /* Transition effects on hover (color) */

}

.article {
    padding-top: 13rem;
}

.menu-modal .modal-body h2 {
    position: relative;
}

.menu-modal .modal-body h2 a {}


.menu-modal .modal-body a:hover {
    text-decoration: underline 5px;
    /* text-decoration-thickness: 100; */
}

.menu-modal .modal-footer {
    border: none;
    display: block;
    /* justify-content: flex-start; */
}

.menu-modal .modal-footer a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}

.menu-modal .modal-footer a:hover {
    text-decoration: underline 2px;
}

.menu-modal .modal-footer img {
    max-height: 20px;
}


/* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    height: 0%;
    width: 100%;
    position: fixed;
    /* Stay in place */
    z-index: 999;
    /* Sit on top */
    left: 0;
    top: -10px;
    background-color: rgba(24, 95, 97, 255);
    /* Black fallback color */
    /* background-color: rgba(24, 95, 97, 0.9); */
    /* Black w/opacity */
    /* overflow-x: hidden; */
    overflow-y: auto;
    /* Disable horizontal scroll */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
    border-bottom: 10px solid #ec3814;
    border-radius: 0 0 25px 25px;
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 10%;
    /* 25% from the top */
    width: 100%;
    /* 100% width */
    /* text-align: center; */
    /* Centered text/links */
    margin-top: 30px;
    /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 45px;
    color: #fff;
    /* display: block; */
    /* Display block instead of inline */
    transition: 0.3s;
    /* Transition effects on hover (color) */
    position: relative;
}

.overlay a:hover {
    text-decoration: underline 5px;
    /* text-decoration-thickness: 100; */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover,
.overlay a:focus {
    color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 40px;

    color: #8bdff7;
    border-radius: 50%;
    padding: 0px 15px;
}

.section-newsletter {
    background-color: #f5d298;
    color: #fff;
    position: relative;
    padding: 50px 0;
}

.section-newsletter input {
    border-radius: 50px;
}

.section-newsletter ::placeholder {
    color: #f5d298;
    opacity: 1;
    /* Firefox */
}

.section-newsletter ::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #f5d298;
}

.btn-newsletter {
    background: #f5d298;
    /* background: linear-gradient(0deg, rgba(113, 198, 159, 1) 0%, rgba(38, 118, 165, 1) 100%); */
    border: 2px solid #fff;
    border-radius: 50px;
    width: 150px;
}

.section-footer {
    background-color: #000;
    padding: 10px 0;
}

.section-footer p {
    color: #fff;
}

.section-animasi {
    position: absolute;
    width: 100%;
    bottom: -60px;
    z-index: 4;
}

.gif-animasi {
    width: 200px;

}

.label-cs {
    height: 50px;
}

.menu-footer {
    margin-top: 200px;
    color: #fff;
    font-size: 18px;
}

.menu-footer a {
    font-size: 18px;
    font-weight: lighter;
}

.menu-footer img {
    height: 35px;
}


.section-newsletter .section-animasi {
    bottom: 60px;
}


.comming-label {
    position: absolute;
    top: -15px;
    /* right: 10px; */
    left: -18px;
    /* background-color: red; */
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    /* border-radius: 50px; */
    height: 40px;
}



.menu-mobile {
    /* z-index: 1000000; */
    position: fixed;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90% !important;
    font-size: 40px;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

.section-page {
    background-color: #185f60;
}

.section-page .article {
    color: #fff;
}

.section-page a {
    color: #fff;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-width: 450px) {
    .menu-modal .modal-body h2 {
        margin-bottom: 1rem;
    }

    .comming-label {
        top: -25px;
        left: -20px;
    }

    .overlay a {
        font-size: 20px;
    }

    .overlay br {
        margin-bottom: 20px;
    }

    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }

    .section-slide h2 {
        font-size: 24px !important;
    }

    .comming-label {
        height: 40px;
    }

    .menu-footer {
        margin-top: 0;
    }

    .menu-modal .modal-footer a {

        font-size: 18px;
        font-weight: lighter;
    }

    .menu-mobile {
        font-size: 40px !important;
    }
}


/* // X-Small devices (portrait phones, less than 576px)
        // No media query for `xs` since this is the default in Bootstrap */
@media (max-width: 575px) {

    .menu-mobile {
        /* z-index: 999; */
        display: block;
        font-size: 40px !important;
    }

    .section-slide .banner {
        padding-top: 60px;
    }


    .btn-primary {
        font-size: 12px;
    }

    .gif-animasi {

        width: 150px;
    }

    /* .logo {
                width: 300px;
                margin: 20px 0;
            } */

    .section-newsletter .section-animasi {
        top: -80px;

    }

}


/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .section-newsletter .section-animasi {
        top: 0px;
    }

    /* .section-newsletter .section-animasi img {
                width: 150px;
            } */

    .gif-animasi {

        width: 150px;
    }

    .menu-mobile {
        /* z-index: 999; */
        display: none;
    }
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}