* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(7, 55, 81, 0.574), rgba(0, 0, 0, 0.92)), url(images/ezgif.com-gif-maker.gif);
    background-position: center;
    background-size: cover;
    position: absolute;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

nav {
    overflow: hidden;
    width: 100%;
    background: #E7F6F2;
    position: fixed;
    top: 0;
    height: 75px;
    display: flex;
    justify-content: space-around;
    box-shadow: 2px 2px 12px rgb(57, 91, 100);
    z-index: 3;
}

nav img {
    width: 82%;
    left: 5px;
    position: relative;
    top: 19px;
}

.nav-links {
    flex: 1;
    text-align: right;
}


.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 23px 5px;
    position: relative;
}

.nav-links ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 16px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #00c8ff;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
    padding: auto;

}

.text-box {
    width: 90%;
    color: #E7F6F2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
svg{
    margin-bottom: -10px;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #d3dbf1;

    padding: 12px 34px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.322);
    position: relative;
    cursor: pointer;
    border-radius: 13px;
}

.hero-btn:hover {
    border: 1px;
    background: rgb(165, 201, 202);
    transition: 0.5s;
    color: #00607a;
}

.text-box h1 {
    font-size: 75px;

}




.text-box p {
    margin: 0px 0 40px;
    font-size: 14px;
    color: #E7F6F2;
}

nav .fa-solid {
    display: none;
}


@media(max-width: 700px) {
    .text-box h1 {
        font-size: 20px;
    }

    .nav-links ul li {
        display: block;
        position: relative;
    }

    .nav-links ul li {
        padding: 20px;
    }


    .nav-links {
        position: fixed;
        background: #d6f6ed;
        height: 100vh;
        width:50%;
        top: 0;
        right: -300px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }

    nav .fa-solid {
        display: block;
        color: rgb(44, 51, 51);
        margin: 24px;
        margin-right: 0px;
        font-size: 25px;
        cursor: pointer;
    }

    .nav-links {
        padding: 0 20px;
    }
}



h1 {
    font-size: 36px;
    font-weight: 600;
}

p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}





@media(max-width: 700px) {
    .row {
        flex-direction: column;
    }
}

/* ------------ terbaru ------------ */

#blog {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    border-bottom: 1px solid rgb(44, 51, 51);
}

.blog-heading {
    padding-top: 750px;
    display: flex;
    justify-content: center;
    justify-items: center;
    flex-direction: column;
}

.blog-heading h2 {
    color: #24262b;
    font-weight: 600;
}

.blog-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
    flex-wrap: wrap;
}

.blog-box {
    width: 360px;
    background-color: #E7F6F2;
    border: 1px solid rgb(44, 51, 51);
    margin: 20px;
    border-radius: 15px;
}

.blog-img {
    width: 100%;
    height: auto;
}

.blog-img img {
    border: 1px solid rgb(44, 51, 51);
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-text {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.blog-text span {
    color: #00607a;
    font-size: 0.8rem;
}

.blog-text .blog-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #24262b;
}

.blog-text .blog-title:hover {
    color: #90b7c2;
    transition: all ease 0.3s;
}

.blog-text p {
    color: #395B64;
    font-size: 0.9 rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 20px 0px;
}

.blog-text a {
    color: #24262b;
}

.blog-text a:hover {
    color: #90b7c2;
    transition: all ease 0.3ms;
}

/* ------------ facilities ------------ */

.facilities {
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 80px;
}

.facilities-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 0%;
    text-align: left;
}

.facilities-col img {
    width: 100%;
    border-radius: 15px;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.facilities-col img:hover {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.facilities-col p {
    padding: 0;
}

.facilities-col a h3 {
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
    color: #000000;
}

.facilities-col h3:hover {
    color: #00ccff;
    transition: 0.2s;
}


/* -------------- sejarawan ----------------- */

.testimonials {
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.testimonials-col {
    flex-basis: 48%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #E7F6F2;
    padding: 25px;
    cursor: pointer;
    display: flex;
}

.testimonials-col img {
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50px;
}

.testimonials-col p {
    padding: 0;
}

.facilities-col a:visited {
    color: rgb(44, 51, 51);
    background-color: transparent;
    text-decoration: white;
}

.testimonials-col h3 {
    margin-top: 15px;
    text-align: left;
}

.testimonials-col .fa-solid,
.fa-regular {
    color: #395B64;
}

@media(max-width: 700px) {
    .testimonials-col img {
        margin-left: 0px;
        margin-right: 15px;
    }
}

/* ------------ cta ---------------- */

.cta {
    margin: 100px auto;
    width: 80%;
    background: radial-gradient(at 21% 20%, hsla(235,100%,61%,1) 0px, transparent 50%),
    radial-gradient(at 27% 22%, hsla(304,100%,71%,1) 0px, transparent 50%),
    radial-gradient(at 98% 57%, hsla(135,100%,60%,1) 0px, transparent 50%),
    radial-gradient(at 79% 69%, hsla(245,100%,60%,1) 0px, transparent 50%);
    background-size: 400% 400%;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
    animation: gradient 10s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta a:hover {
    color: #000000;
}

.cta h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

.cta a {
    color: rgb(255, 255, 255);
}

@media(max-width: 700px) {
    .cta h1 {
        color: #fff;
        font-size: 20px;
        padding: 10px;
    }
}



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1170px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

ul {
    list-style: none;
}

/* ------------ footer ---------------- */
.footer {
    background-color: #395B64;
    padding: 25px 0;
}

.footer-col {
    width: 30%;
    padding: 0 15px;
}

.footer-col p {
    color: #E7F6F2;
}

.footer-col h4 {
    font-size: 18px;
    color: #E7F6F2;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #E7F6F2;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #E7F6F2;
    text-decoration: none;
    font-weight: 300;
    color: #E7F6F2;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #E7F6F2;
    transition: all 0.5s ease;
}

.footer-col .social-links .fb:hover {
    color: #ffffff;
    background-color: #4267B2;
}

.footer-col .social-links .tw:hover {
    color: #ffffff;
    background-color: #1DA1F2;
}

.footer-col .social-links .ig:hover {
    color: #ffffff;
    background-color: #E1306C;
}

.footer-col .social-links .pin:hover {
    color: #ffffff;
    background-color: #E60023;
}

/*responsive*/
@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}



.top {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    cursor: pointer;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: rgba(rgb(138, 115, 115));
}

h1::selection {
    background: #539baf;
}

h2::selection {
    background: #539baf;
}

h3::selection {
    background: #539baf;
}

h4::selection {
    background: #539baf;
}

h5::selection {
    background: #539baf;
}

p::selection {
    background: #8ae5cb;
}

a::selection {
    background: #539baf;
}

::-webkit-scrollbar-track {

    background-color: #E7F6F2;
}

::-webkit-scrollbar {
    width: 12px;
    background-color: #00c8ff;
}

::-webkit-scrollbar-thumb {

    background: linear-gradient(10deg, #00ccff, #00c8ff);
}

footer .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(images/wave.png);
    background-size: 1000px 100px;
}

footer #wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animatedWave 4s linear infinite;
}

footer #wave2 {
    z-index: 999;
    opacity: 0.75;
    bottom: 10px;
    animation: animatedWave_02 4s linear infinite;
}

footer #wave3 {
    z-index: 998;
    opacity: 0.5;
    bottom: 20px;
    animation: animatedWave 3s linear infinite;
}

footer #wave4 {
    z-index: 1000;
    opacity: 0.25;
    bottom: 30px;
    animation: animatedWave_02 2s linear infinite;
}

@keyframes animatedWave {
    0% {
        background-position-x: 1000px;
    }

    100% {
        background-position-x: 0;
    }
}

@keyframes animatedWave_02 {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1000px;
    }
}

#nav {
    transition: 0.8s;
}