* {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-size: 15px;
}
html {
    margin: 0;
    padding: 0;
    background-color:ghostwhite;
    scroll-behavior: smooth;
}
body {
    margin: 0px;
    padding: 0px;
}
.screen-dalam {
    width: 1000px;
    margin: auto;
}
.layar-penuh {
    width: 100%;
}
nav {
    z-index: 100;
    color:#fff;
    text-align: center;
    position: fixed;
    /*border-bottom: 1px solid #b1b1b1;*/
    line-height: 60px;
    width: 100%;
    transition: .7s;
}
nav.putih {
    background-color:#fff;
}
nav .logo {
    float: left;
    position: relative;
    line-height: 80px;
    text-align: center;
}
nav .logo img {
    vertical-align: middle;
    width: 180px;
}

/*menuuuu*/
nav .menu {
    float: right;
    height: 60px;
    max-width: 785px;
}

nav:hover{
    background-color:#001;
    transition: .6s;
}

nav .menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: inline;
}

nav .menu ul li {
    list-style-type: none;
    float: left;
    line-height: 80px;
    position: relative;
}

nav ul li::after {
    content: '';
    height: 3px;
    width: 0;
    background:lightblue;
    position: absolute;
    left: 0;
    bottom: 23px;
    transition: 0.5s;
}

nav ul li:hover::after {
    width: 100%;
}


nav ul li a {
    color: #fff;
    text-align: center;
    padding: 0px 16px 0px 16px;
    text-decoration: none;
    line-height: 70px;
    font-weight:bold;
    font-size: 14px;
    display: inline-block;
}

.intro h3:hover{
    color:aqua;
}
.intro p:hover{
    color:aqua;
}

.intro p{
    font-weight: bolder;
    font-size: large;
}

nav .menu ul li a:hover,
nav .menu ul li a.active {
    color:lightblue;
}
nav .menu ul ul {
    position:absolute;
    top: 60px;
    display: none;
    opacity: 0;
    visibility: hidden;
}
nav .menu ul li ul {
    top: 60px;
    display: block;
    background-color: #001;
    opacity: 0;
}
nav .menu ul li:hover > ul {
    top: 81px;
    display: block;
    background-color:#001;
    opacity: 1;
    transition: .5s;
    visibility: visible;
    border-radius: 20px;
}
nav .menu ul ul li {
    width: 150px;
    float: none;
    display: list-item;
    position: relative;
}


/* pengaturan header */
header {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 2;
}
header video {
    position: absolute;
    height: 100vh;
    width: 100%;
    object-fit: cover;
    z-index: -2;
}
header .intro {
    z-index: 100;
    color: #fff;
    text-align: center;
    position: relative;
    top: 45%;
}
header .intro h3 {
    font-size: 50px;
    margin: 0;
    padding: 0;
}
.tombol {
    background-color:silver;
    height: 40px;
    line-height: 42px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 0px 20px 0px 20px;
    font-size: 15px;
    border-radius: 4px;
}
header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 60%;
    z-index: -1;
}
.tombol-menu {
    position: absolute;
    top: 1.7rem;
    right: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}
.tombol-menu .garis {
    height: 3px;
    background-color:#fff;
}
section {
    padding: 50px 0px 50px 0px;
}
section h3 {
    font-size: 30px;
    margin-top: 35px;
}
section h3::after {
    content: "";
    border-bottom: 5px solid #c86b85;
    width: 52px;
    display: block;
    margin: 20px auto;
}

#aboutus,
#team,
#blog{
    text-align: center;
}
section p.ringkasan {
    font-style: italic;
    font-size: 18px;
    color:#b1b1b1;
}
section p.ringkasanpeta {
    font-style: italic;
    font-size: 14px;
    color:#b1b1b1;
}

section .konten-isi p {
    font-style: normal;
    text-align: justify;
    margin-left: 250px;
    margin-right: 250px;
}
nav.putih {
    background-color:ghostwhite;
    transition: .6s;
}
nav.putih .tombol-menu .garis {
    background-color: #333;
}


nav.putih ul li {
    list-style-type: none;
    float: left;
    line-height: 70px;
    position: relative;
}
nav.putih ul li a {
    color: #333;
    text-align: center;
    padding: 0px 16px 0px 16px;
    text-decoration: none;
    line-height: 70px;
    font-weight:bold;
    font-size: 14px;
}
nav.putih ul ul {
    position:absolute;
    top: 60px;
    display: none;
    opacity: 0;
    visibility: hidden;
}
nav.putih ul li ul {
    top: 60px;
    display: block;
    background-color: #fff;
    opacity: 0;
}
nav.putih ul li:hover > ul {
    top: 72px;
    display: block;
    background-color:#fff;
    opacity: 1;
    transition: .5s;
    visibility: visible;
}
nav.putih ul ul li {
    width: 150px;
    float: none;
    display: list-item;
    position: relative;
}

/*garis bawah menu*/
nav.putih ul li::after {
    content: '';
    height: 3px;
    width: 0;
    background:lightblue;
    position: absolute;
    left: 0;
    bottom: 18px;
    transition: 0.5s;
}

nav.putih ul li:hover::after {
    width: 100%;
}


nav .logo img.hitam{
    float: left;
    position: relative;
    line-height: 60px;
    text-align: center;
    display: none;
}

section.abuabu {
    background-color:ghostwhite;
}
.support,
.tim,
.blog {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.support h6,
.tim h6 {
    margin: 0px;
    margin-top: 20px;
    padding: 0px;
    font-size: 18px;
    font-weight: bold;
}
.support img {
    width: 50px;
}
.support div{
    text-align: center;
    width: 26%;
}
.support div p{
    text-align: justify;
}

.tim div{
    text-align: center;
    width: 16%;
}
section#gallery {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    overflow: hidden;
    padding: 10px 0px 10px 0px;
    margin-top: 70px;
}
section#gallery div {
    padding: 10px;
}
section#gallery div img {
    height: 100px;
    border-radius: 5px;
}
section#gallery div img:hover {
    transition: all 0.2s ease-in-out;
    transform: scale(1.3);
}
.tim div img:hover {
    transition: all 0.2s ease-in-out;
    transform: scale(1.3);
}


section.quote {
    background:url('asset/gapura\ palaes\ 2.jpg') no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-style: italic;
    padding: 180px;
}
section.quote .screen-dalam p {
    display: inline;
    background:url('asset/quote-icon.png') no-repeat;
    padding: 40px;
}
.tim img {
    width: 80%;
    box-shadow: 0px -10px 30px #ccc;
    border-radius: 6px;
}

/*.tim .andrew{
    width: 70%;
    height: 70%;
    box-shadow: 0px -10px 30px #ccc;
    border-radius: 6px;
} */


.blog .area {
    width: 47%;
    box-shadow: 0px -10px 30px #ccc;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: -60px;
}

.blog .area:hover {
    transition: all 0.2s ease-in-out;
    transform: scale(1.1);
}

.blog .area .gambar {
    border-radius: 5px 0px 0px 5px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 300px;
    width: 100%;
}
.blog .area .text article {
    padding: 25px;
}

.blog .area .text article h4 {
    margin: 0px;
}

.blog .area .text article a {
    color: #333;
    text-decoration: none;
    transition: color 0.5s ease;
}
.blog .area .text article a:hover {
    color: #ccc;
}
footer {
    padding: 50px 0px 30px 0px;
    background-color: #343a40;
    color: #fff;
    margin-top: 70px;
}
footer .screen-dalam {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
footer .screen-dalam div {
    width: 20%;
}
footer .screen-dalam h5 {
    margin-top: 0px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
footer .screen-dalam div a{
    color: #fff;
}
.socials{
    list-style: none;
    display: flex;
    justify-content: left;
    margin: 0rem 0rem 0rem -3.2rem;
}
.socials li{
    margin: 0 7px;
}
.socials a{
    text-decoration: none;
    color: #fff;
}
.social a i{
    font-size: 1.1rem;
    transition: color .4s ease;
}
.socials a:hover i{
    color: aqua;
}
footer .screen-dalam .copyright {
    width: 100%;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #666;
    text-align: center;
}
@media screen and (max-width: 991.98px) {
    .screen-dalam {
        width: 90%;
    }
    nav .menu ul {
        display: none;
        margin-top: 60px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    nav .menu ul li {
        width: 100%;
        border-bottom: 1px solid #ccc;
        background-color: #fff;
        line-height: 40px;
    }
    nav .menu ul li a {
        color: #333;
    }
    .tombol-menu {
        display: flex;
    }
    .blog .area {
        display: block;
    }
    .blog div.area div {
        width: 100%;
    }
    .blog .area .gambar {
        border-radius: 5px 5px 0px 0px;
        height: 200px;
    }
    .support {
        display: block;
    }
    .support div {
        width: 100%;
        padding-bottom: 30px;
    }
}