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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;

}

.wrapper {
    background: #ffffff;
    position: fixed;
    width: 100%;
}

.wrapper nav {
    position: relative;
    display: flex;
    max-width: calc(100% - 200px);
    margin: 0 auto;
    height: 70px;
    align-items: center;
    justify-content: space-between;
}

nav .content {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    align-content: center;
}

nav .content .links {
    width: 90%;
    margin-left: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.containerLink {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.content .logo {
    width: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content .logo a {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-items: center;
    align-content: center;
    color: #fff;
    font-size: 30px;
    font-weight: 600;

    height: 100%;
}

.content .logo a img {
    width: 100%;
    padding-top: 20%;
}

.content .links li {
    list-style: none;
    line-height: 30px;
}

.content .links li a {
    color: #005AA9;
    font-size: 15px;
    font-weight: 300;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 400px) {
    .content .links li a {
        color: #005AA9;
        font-size: 15px;
        font-weight: 300;
        padding: 9px 17px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
}

.content .links li label {
    display: none;
}

.submenu li a {

    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.account:hover {
    background-color: #005AA9 !important;
    color: #fff !important;
    margin-left: 5px;
    margin-right: 5px;
}

.content .links li a:hover,
.content .links li label:hover,
.content .links li a:active,
.content .links li label:active {
    background: #034b8a;
    color: #fff;
}

.wrapper .search-icon,
.wrapper .menu-icon {
    color: #005AA9;
    font-size: 18px;
    cursor: pointer;
    line-height: 70px;
    width: 70px;
    text-align: center;
}



.containerbtnLog {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

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

.wrapper #show-search:checked~.search-icon i::before {
    content: "\f00d";
}

.wrapper .search-box {
    position: absolute;
    height: 100%;
    max-width: calc(100% - 50px);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.wrapper #show-search:checked~.search-box {
    opacity: 1;
    pointer-events: auto;
}

.search-box input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 17px;
    color: #fff;
    background: #005AA9;
    padding: 0 100px 0 15px;
}

.search-box input::placeholder {
    color: #f2f2f2;
}

.search-box .go-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 60px;
    width: 70px;
    background: #005AA9;
    border: none;
    outline: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.wrapper input[type="checkbox"] {
    display: none;
}

/* Dropdown Menu code start */
.content .links ul {
    position: absolute;
    background: #013e72;
    top: 80px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.content .links li:hover>ul {
    top: 70px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.content .links ul li a {
    display: block;
    width: 100%;
    line-height: 30px;
    border-radius: 0px !important;
}

.content .links ul ul {
    position: absolute;
    top: 0;
    right: calc(-100% + 8px);
}

.content .links ul li {
    position: relative;
}

.content .links ul li:hover ul {
    top: 0;
}

/* Responsive code start */
@media screen and (max-width: 1250px) {
    .wrapper nav {

        max-width: 100%;
        padding: 0 20px;
    }

    nav .content .logo {
        height: 100%;
    }

    nav .content .links {
        margin-left: 30px;
    }

    .content .links li a {
        padding: 8px 13px;
    }

    .wrapper .search-box {
        max-width: calc(100% - 100px);
    }

    .wrapper .search-box input {
        padding: 0 100px 0 15px;
    }
}

@media screen and (max-width: 900px) {
    .wrapper .menu-icon {
        display: block;
    }

    .wrapper #show-menu:checked~.menu-icon i::before {
        content: "\f00d";
    }

    nav .content .links {
        display: block;
        position: fixed;
        background: #005AA9;
        color: #ffffff;
        height: 100%;
        width: 100%;
        top: 70px;
        left: -100%;
        margin-left: 0;
        max-width: 350px;
        padding-bottom: 100px;
        transition: all 0.3s ease;

        border-right: solid white 2px;
    }

    .containerLink {
        display: flex;
        flex-direction: column;
        align-items: left;
        align-content: flex-start;

        text-align: left;
        color: #ffffff;
        width: 100%;
    }

    .containerLink li:hover,
    .containerLink li:active {
        background: #000;
    }

    .submenu {
        overflow-y: scroll;
    }

    .containerLink li {
        width: 100%;
    }

    nav #show-menu:checked~.content .links {
        left: 0%;

    }

    .content .links li {
        margin: 15px 20px;
    }

    .content .links li a,
    .content .links li label {
        line-height: 40px;
        font-size: 20px;
        display: block;
        padding: 8px 18px;
        cursor: pointer;
    }

    .content .links li a.desktop-link {
        display: none;
    }

    /* dropdown responsive code start */
    .content .links ul,
    .content .links ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        background: none;
        max-height: 0px;
        overflow-y: scroll;
        overflow-x: hidden;
        height: 250px;

    }

    .content .links #show-features:checked~ul,
    .content .links #show-services:checked~ul,
    .content .links #show-items:checked~ul {
        max-height: 100vh;
    }

    .content .links ul li {
        margin: 7px 20px;
    }

    .content .links ul li a {
        font-size: 18px;
        line-height: 30px;
        border-radius: 5px !important;
    }
}

@media screen and (max-width: 400px) {
    .wrapper nav {
        padding: 0 10px;
    }

    .content .logo a {
        font-size: 27px;
    }

    .wrapper .search-box {
        max-width: calc(100% - 70px);
    }

    .wrapper .search-box .go-icon {
        width: 30px;
        right: 0;
    }

    .wrapper .search-box input {
        padding-right: 30px;
    }
}

/* different style css */

.web {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;

    margin-top: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    z-index: -1;
    text-align: left;
    transform: translate(-50%, -50%);
}

.webSatu {
    height: min-content;
}

.containerWebSatuPutih {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
    margin-right: 50%;
}

.webSatuPutih {
    width: 100%;
    background-color: #fff;
}

.webSatuPutih img {
    width: 50%;
    left: 0%;
}

.webSatuPutih h2 {
    width: 50%;
    margin-top: 50px;
    margin-bottom: 100px;
}

@media screen and (max-width: 1250px) {}

@media screen and (max-width: 900px) {}

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


    .containerWebSatuPutih {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        justify-items: center;

        width: 60%;
        margin-right: 50%;
        margin-bottom: -40px;
    }

    .containerWebSatuPutih h2 {

        font-size: 0.5em;
        text-align: left;
        align-items: center;
        align-content: center;

        margin-left: 0%;
    }



}

.webSatuBiru {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    align-content: center;

    background-color: #00ADEE;
    width: 100%;
    height: 250px;
}

.contWebSatuBiru {
    margin-left: 100px;
    display: flex;
    flex-direction: column;

    color: white;
    text-align: left;
}



.imgPohon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    width: 50%;
    height: 100%;

}

.imgPohon img {
    position: absolute;

    width: 80%;
    bottom: 10%;
}

@media screen and (max-width: 1250px) {}

@media screen and (max-width: 900px) {}

@media screen and (max-width: 450px) {
    .contWebSatuBiru {
        margin-left: 20px;
        display: flex;
        flex-direction: column;
        height: max-content;
        width: 40%;

        color: white;
        text-align: left;
        overflow-x: hidden;
    }

    .contWebSatuBiru h2 {
        font-size: 0.5em;
        margin-bottom: 5px;
    }

    .contWebSatuBiru p {
        font-size: 0.2em;
    }

    .webSatuBiru {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        align-content: center;

        background-color: #00ADEE;
        width: 100%;
        height: 100px;

    }

    .imgPohon {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        position: relative;
        height: 100%;
        width: 50%;
    }

    .imgPohon img {
        position: absolute;
        overflow-x: hidden;

        width: 100%;
        bottom: 10%;
    }
}

.judul {
    text-align: left;
    left: 0%;
}

.contWebSatuBiru p {
    text-align: left;
    left: 0%;
}

.contWebSatuBiru h2 {
    text-align: left;
    left: 0%;
}


.webDua {
    width: 100%;
    background-color: #fff;

    display: flex;
    flex-direction: row;
    justify-content: space-between;

    margin-top: 50px;
    margin-bottom: 50px;
    text-align: left;
}


.contwebDuaKiri {
    margin-left: 50px;
    width: 40%;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-left: 150px;

}

.contwebDuaKiri img {
    width: 60%;
    margin-bottom: 10%;
}

.contwebDuaKanan {
    width: 60%;
    margin-right: 150px;

}

.contwebDuaKanan h2 {
    color: #005AA9;
    left: 0;
}

.contwebDuaKanan ul {
    margin-left: 20px;
}

@media screen and (max-width: 1250px) {}

@media screen and (max-width: 900px) {}

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

    .webDua {
        width: 100%;
        background-color: #fff;

        display: flex;
        flex-direction: column;

        margin-top: 50px;
        margin-bottom: 50px;
        text-align: left;
    }

    .contwebDuaKiri {
        width: 70%;
        margin: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .contwebDuaKiri img {
        width: 40%;
    }

    .contwebDuaKanan {
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        margin: auto;
        font-size: 00.5em;
    }

    .contwebDuaKanan h2 {
        color: #005AA9;
        left: 0;
    }

    .contwebDuaKanan ul {
        margin-left: 20px;
    }

}

.webTiga {
    background-color: #005AA9;
    width: 100%;
}

.contWebTiga {
    padding: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;

    width: 100%;
    color: white;
}

.contWebTigaKiri {
    width: 40%;
    text-align: left;
    margin-left: 100px;
    list-style: none;
}

.contWebTigaKiri li {
    list-style-type: none;
}

.contWebTigaKiri h2,
.contWebTigaKiri h1 {
    left: -40%;
}

.contWebTigaKanan {
    width: 40%;
}

.contWebTigaKanan img {
    width: 50%;
}

@media screen and (max-width: 1250px) {}

@media screen and (max-width: 900px) {}

@media screen and (max-width: 450px) {
    .webTiga {
        background-color: #005AA9;
        width: 100%;
        font-size: 0.5em;

    }

    .contWebTiga {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;

        align-items: center;

        font-size: 1em;

        width: 100%;
        color: white;
        left: 0;
    }

    .contWebTigaKiri {
        margin: auto;

        width: 80%;
        text-align: left;
        list-style: none;
    }

    .contWebTigaKiri li {
        list-style-type: none;
    }

    .contWebTigaKiri ul {
        margin-top: 10px;
    }

    .contWebTigaKiri h2,
    .contWebTigaKiri h1 {
        margin: auto;
        text-align: center;
    }

    .contWebTigaKanan {
        width: 100%;

        display: flex;
        flex-direction: row;
        justify-content: center;
        justify-items: center;
        align-items: center;
        align-content: center;

        margin-bottom: 20px;
    }

    .contWebTigaKanan img {
        width: 50%;
        left: 50%;

    }
}

.webEmpat {
    padding-top: 40px;
    width: 100%;
    background-color: #00ADEE;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.webEmpat h2 {
    margin-bottom: 10px;
}

.webEmpat img {
    width: 40%;
}

@media screen and (max-width: 1250px) {}

@media screen and (max-width: 900px) {}

@media screen and (max-width: 450px) {
    .webEmpat {
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        font-size: 0.5em;

        width: 100%;
        color: white;
        left: 0;
    }

    .contwebEmpatAtas {
        width: 50%;
        margin-bottom: 10px;
    }

    .webEmpat h2 {
        margin-bottom: 10px;
        text-align: center;
    }

    .webEmpat img {
        width: 80%;
    }
}

.webLima {
    background-color: #005AA9;
    color: white;

    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
    padding-top: 50px;
}

.contwebLimaAtas {
    margin-bottom: 20px;
}

.contwebLimaBawah {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    text-align: left;
}

.contwebLimaBawah img {
    width: 30%;
    height: auto;
}

@media screen and (max-width: 1250px) {}

@media screen and (max-width: 900px) {}

@media screen and (max-width: 450px) {
    .webLima {
        background-color: #005AA9;
        color: white;
        display: flex;
        flex-direction: column-;
        justify-content: space-between;

        font-size: 0.5em;

        width: 100%;
        left: 0;
    }



    .contwebLimaAtas {
        margin-bottom: 20px;
    }

    .contwebLimaBawah {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 80%;
        text-align: left;
    }

    .contwebLimaBawah img {
        padding: auto;
        width: 20%;
        height: auto;
    }

    #imgPulau {
        width: 90px !important;
    }

}

.webEnam {
    background-color: white;
    color: #005AA9;

    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
    padding-top: 50px;
}

.webEnamAtas {
    text-align: center;
    padding: 0%;
}

.webEnamImg {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.webEnamImg img {
    width: 150px;
}

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

    .webEnam {
        background-color: white;
        color: #005AA9;

        width: 100%;
        font-size: 0.5em;


        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 50px;
        padding-top: 50px;
    }

    .webEnamAtas {
        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
        padding: 0%;
    }

    .webEnamImg {
        width: 80%;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .webEnamImg img{
        width: 15%;
        height: auto;
    }

}

.webTujuh {
    background-color: #00ADEE;
    color: white;

    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-items: center;
    padding-bottom: 50px;
    padding-top: 50px;
}

.webTujuhAtas {

    width: 80%;
    margin: auto;

    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: left;

}

.subb {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.subbImg {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.subbImg img {
    width: 10%;
    margin-right: 10px;
}

.webTujuhBawah {
    margin-top: 20px;
}

.webTujuhKiri {
    width: 20%;
}

.webTujuhKanan {
    width: 20%;
}

@media screen and (max-width: 1250px) {}

@media screen and (max-width: 900px) {}

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


    .webTujuh {

        background-color: #00ADEE;
        color: white;
        display: flex;
        flex-direction: column-;
        justify-content: space-between;

        font-size: 0.5em;

        width: 100%;
        left: 0;
    }

    .webTujuhAtas {

        width: 90%;
        margin: auto;

        display: flex;
        flex-direction: row;
        justify-content: center;
        text-align: left;

    }

    .subb {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
    }

    .subbImg {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    .subbImg img {
        width: 10%;
        margin-right: 10px;
    }

    .webTujuhBawah {
        margin-top: 20px;
    }

    .webTujuhKiri {
        width: 20%;
    }

    .webTujuhKanan {
        width: 20%;
    }

}
