* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.toptitle {
    text-align: center;
    background: black;
}

.toptitle-p1 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 3vmin;
    color: white;
}

/*CSS NAVIGATION BAR*/

nav ul, nav ul li ul {
  list-style: none;
}

.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;
    position: relative;
    z-index: 6;
    box-shadow: 0px 1px 10px 0px black;
}

.nav-img1 {
    height: 50px;
}

.nav-btn1 {
    display: none;
    background: none;
}

.nav-ul1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.nav-ul1 li {
    position: relative;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    padding: 5px 5px;
    margin: 0px 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav > ul > li:hover {
    background: rgb(201, 142, 201);
}

.nav-ul1 li a {
    text-decoration: none;
    color: black;
}

.nav-ul1 ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    background: gray;
    border-top: 7px solid white;
}

/*CSS UNTUK SEKOLAH (MENU DAN SUBMENU)*/

.nav-ul1-li2-ul1 {
    display: none;
}

.nav-ul1-li2:hover .nav-ul1-li2-ul1 {
    display: block;
}

.nav-ul1-li2-ul1 li a {
    text-decoration: none;
    color: black;
    transition: all 0.3s ease;
}

.nav-ul1-li2-ul1 li a:hover {
    color: white;
}

/*CSS UNTUK PENTADBIRAN (MENU DAN SUBMENU)*/

.nav-ul1-li2-ul2 {
    display: none;
}

.nav-ul1-li3:hover .nav-ul1-li2-ul2 {
    display: block;
}

.nav-ul1-li2-ul2 li a {
    text-decoration: none;
    color: black;
    transition: all 0.3s ease;
}

.nav-ul1-li2-ul2 li a:hover {
    color: white;
}

/*CSS UNTUK HUBUNGI KAMI*/

.nav-ul1-li5 {
    background: orange;
}


@media screen and (max-width: 900px) {
    nav ul, nav ul li ul {
        list-style: none;
    }

    .nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        margin: 0px 0px;
        position: relative;
        z-index: 7;
    }

    .nav-img1 {
        width: clamp(30px, 8vw, 50px);
        height: auto;
        margin-left: 10px;
    }

    .nav-btn1 {
        display: block;
        border: 0px solid rgba(0, 0, 0, 0);
        font-size: 20px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        margin-right: 10px;
    }

    .nav-btn1:active {
        transform: scale(0.9);
    }

    .nav-ul1 {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 8;
        background: white;
    }

    .nav-ul1.show {
        display: flex;
    }

    .nav-ul1 li {
        position: unset;
        font-weight: bold;
        font-family: Arial, Helvetica, sans-serif;
        padding: 5px 5px;
        margin: 10px 0px;
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .nav-ul1 li ul li a {
        border-bottom: 1px solid black;
    }

    .nav > ul > li:hover {
        background: rgba(201, 142, 201, 0);
    }

    .nav-ul1-li1-a1:hover {
        background: rgb(201, 142, 201);
        border-radius: 10px;
        padding: 5px;
        border-bottom: 2px solid black;        
    }

    .nav-ul1-li2-a1:hover {
        background: rgb(201, 142, 201);
        border-radius: 10px;
        padding: 5px;        
        border-bottom: 2px solid black;
    }

    .nav-ul1-li3-a1:hover {
        background: rgb(201, 142, 201);
        border-radius: 10px;
        padding: 5px;
        border-bottom: 2px solid black;        
    }

    .nav-ul1-li4-a1:hover {
        background: rgb(201, 142, 201);
        border-radius: 10px;
        padding: 5px;
        border-bottom: 2px solid black;                
    }

    .nav-ul1-li5-a1:hover {
        background: rgb(201, 142, 201);
        border-radius: 20px;
        padding: 5px; 
        transition: all 0.3s ease;         
    }

    .nav-ul1 li a {
        text-decoration: none;
        color: black;
    }

    .nav-ul1 ul {
        flex-direction: unset;
        position: relative;
        top: 0;
        background: rgba(255, 255, 255, 0);
        border-top: 0px solid white;
    }

    /*CSS UNTUK SEKOLAH (MENU DAN SUBMENU)*/

    .nav-ul1-li2-ul1 {
        display: none;
    }

    .nav-ul1-li2:hover .nav-ul1-li2-ul1 {
        display: block;
    }

    .nav-ul1-li2-ul1 li a {
        text-decoration: none;
        color: black;
        transition: all 0.3s ease;
    }

    .nav-ul1-li2-ul1 li a:hover {
        color: rgb(206, 96, 0);
    }

    /*CSS UNTUK PENTADBIRAN (MENU DAN SUBMENU)*/

    .nav-ul1-li2-ul2 {
        display: none;
    }

    .nav-ul1-li3:hover .nav-ul1-li2-ul2 {
        display: block;
    }

    .nav-ul1-li2-ul2 li a {
        text-decoration: none;
        color: black;
        transition: all 0.3s ease;
    }

    .nav-ul1-li2-ul2 li a:hover {
        color: rgb(206, 96, 0);
    }

    /*CSS UNTUK HUBUNGI KAMI*/

    .nav-ul1-li5 {
        background: orange;
    }
}


/*CSS DIV 2*/

.indexdiv2 {
  position: relative;
  overflow: hidden;
}

.indexdiv2-1 {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/750;
}

.indexdiv2-1-img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
}

.indexdiv2-1-img1.active {
  opacity: 1;
  z-index: 1;
}

.indexdiv2-1-btnprev,
.indexdiv2-1-btnnext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  color: white;
  font-size: clamp(1rem, 2vw, 2rem);
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
}

.indexdiv2-1-btnprev {
  left: 20px;
}

.indexdiv2-1-btnnext {
  right: 20px;
}


/*CSS DIV 1A*/

.indexdiv1a {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: clamp(10px, 2vw, 30px);
    z-index: 2;
}

.indexdiv1a-1 {
    background: linear-gradient(rgba(255, 166, 0, 0.9), rgba(255, 166, 0, 0.9)), url(../assets/bg1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: relative;
    border-radius: 30px 0px 30px 0px;
    margin: 5px;
}

.indexdiv1a-1-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: clamp(100px, 39vw, 600px);
    height: clamp(100%, 14vw, 200px);
}

.indexdiv1a-1-1 p {
    font-family: Arial, Helvetica, sans-serif;
}

.indexdiv1a-1-1-p1 {
    font-size: clamp(15px, 2vw, 30px);
    font-weight: bold;
}

.indexdiv1a-1-1-p2 {
    font-size: clamp(5px, 2vw, 20px);
}

.indexdiv1a-1-1 a {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: clamp(7px, 2vw, 20px);
    text-decoration: none;
    color: black;
    background: white;
    border-radius: 10px;
    padding: 5px;
    margin: 5px 0px;
    transition: all 0.3s ease;
}

.indexdiv1a-1-1 a:hover {
    color: white;
    background: black;
}

.indexdiv1a-1-2 {
    position: relative;
    width: clamp(100px, 14vw, 200px);
    height: clamp(100px, 14vw, 200px);
}

.indexdiv1a-1-2 img {
    width: clamp(100px, 14vw, 200px);
    position: absolute;
    bottom: 0;
    right: 0;
}

.indexdiv1a-2 {
    background: linear-gradient(rgba(102, 131, 182, 0.9), rgba(102, 131, 182, 0.9)), url(../assets/bg1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: black;
    display: flex;
    flex-direction: row;
    position: relative;
    border-radius: 30px 0px 30px 0px;
    margin-left: 5px;
}

.indexdiv1a-2-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: clamp(100px, 7vw, 200px);
    position: relative;
}

.indexdiv1a-2-1 img {
    width: clamp(85px, 12vw, 170px);
    position: absolute;
    bottom: 0;
}

.indexdiv1a-2-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: clamp(100px, 39vw, 350px);
    height: clamp(100px, 14vw, 200px);
}

.indexdiv1a-2-2 p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(10px, 2vw, 20px);
    font-weight: bold;
}

.indexdiv1a-2-2 a {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: clamp(7px, 2vw, 20px);
    text-decoration: none;
    color: black;
    background: white;
    border-radius: 10px;
    padding: 5px;
    margin: 5px 0px;
    transition: all 0.3s ease;
}

.indexdiv1a-2-2 a:hover {
    color: white;
    background: black;
}



/*CSS DIV 2A*/

.indexdiv2a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: radial-gradient(rgb(66, 62, 82), rgb(43, 38, 63)) ;
}

.indexdiv2a div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    padding-left: clamp(0px, 3vw, 40px);
    padding-right: clamp(0px, 3vw, 40px);
    margin: clamp(5px, 2vw, 20px);
}

.indexdiv2a div p {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: white;
}

.indexdiv2a-1-p0 {
    font-size: clamp(10px, 1.6vw, 30px);
}

.indexdiv2a-1-p1 {
    font-size: clamp(15px, 4vw, 60px);
}

.indexdiv2a-1-p2 {
    padding: 5px 0px;
    border-top: 2px solid orange;
    font-size: clamp(5px, 2vw, 20px);
}

/*CSS DIV 3*/

.indexdiv3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.indexdiv3-p1 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: clamp(10px, 2vw, 20px);
    color: rgb(255, 255, 255);
    border-radius: 20px;
    background: orange;
    padding: 10px 20px;
    margin: 10px 0px;
}

.indexdiv3-1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.indexdiv3-1 div {
    width: clamp(200px, 35vw, 672px);
    height: clamp(200px, 35vw, 672px);
    overflow: hidden;
    position: relative;
    margin: clamp(2px, 0.3vw, 5px);
}

.indexdiv3-1 div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.indexdiv3-1-1 {
    position: relative;
    border-radius: clamp(10px, 2vw,30px);
    background: rgb(135, 168, 190);
}

.indexdiv3-1-1 img {
    transition: all 0.2s ease;
}

.indexdiv3-1-1 img:hover {
    transform: scale(0.98);
}

.indexdiv3-1-2-2 div {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    margin: 5px;
}

.indexdiv3-1-2-2 div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.indexdiv3-1-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.indexdiv3-1-2-1 {
    border-radius: clamp(10px, 2vw,30px);
    background: peachpuff;
}

.indexdiv3-1-2-1 img {
    transition: all 0.2s ease;
}

.indexdiv3-1-2-1 img:hover {
    transform: scale(0.98);
}

.indexdiv3-1-2-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.indexdiv3-1-2-2-1 {
    border-radius: clamp(10px, 2vw,30px);
    background: rgb(118, 187, 148);
}

.indexdiv3-1-2-2-1 img {
    transition: all 0.2s ease;
}

.indexdiv3-1-2-2-1 img:hover {
    transform: scale(0.96);
}

.indexdiv3-1-2-2-2 {
    border-radius: clamp(10px, 2vw,30px);
    background: rgb(172, 118, 180);
}
.indexdiv3-1-2-2-2 img {
    transition: all 0.2s ease;
}

.indexdiv3-1-2-2-2 img:hover {
    transform: scale(0.96);
}

@media screen and (max-width:1000px) {
    .indexdiv3-1 {
        flex-direction: column;
    }
}

/*CSS DIV 3A*/

.indexdiv3a {
    background: rgb(193, 150, 250);
}
.indexdiv3a img {
    width: 100%;
}

/*CSS DIV 4*/

.indexdiv4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(193, 150, 250);
    padding: 20px 0px;
}

.indexdiv4-1 p {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: clamp(13px, 3vw, 20px);
    color: black;
    text-align: center;
}

.indexdiv4-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.indexdiv4-2 img {
    width: clamp(50px, 10vw, 100px);
    padding: 10px;
}

.indexdiv4-2 a {
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: clamp(20px, 3vw, 30px);
    color: black;
    text-align: center;
    padding: 10px;
}

/*CSS DIV 5*/

.indexdiv5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
}

.indexdiv5-1 p {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: clamp(10px, 2vw, 20px);
    color: black;
    border-radius: 20px;
    background: rgb(105, 150, 228);
    padding: 10px 20px;
    margin-bottom: 10px;
    
}

.indexdiv5-2 {
    display: flex;
    flex-direction: row;
}

.indexdiv5-2 div {
    margin: clamp(2px, 1vw, 10px);
}

.indexdiv5-2-1 {
    display: flex;
    flex-direction: column;
    width: clamp(50px, 8vw, 150px);
    height: clamp(50px, 8vw, 150px);
    border-radius: 2px;
    box-shadow: 0px 0px 5px black;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: clamp(20px, 4vw, 60px);
    text-align: center;
    justify-content: center;
    align-items: center;
}

.indexdiv5-2-1-p2 {
    font-size: clamp(10px, 2vw, 20px);
}

.indexdiv5-2-2 {
    display: flex;
    width: clamp(150px, 32vw, 600px);
    height: clamp(50px, 8vw, 150px);
    border-radius: 2px;
    box-shadow: 0px 0px 5px black;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: clamp(10px, 2vw, 30px);
    text-align: center;
    align-items: center;
    justify-content: center;

}

/*CSS DIV 6*/

.indexdiv6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.indexdiv6-img1 {
    width: 100%;
    filter: brightness(10%);
}

.indexdiv6-p1 {
    position: absolute;
    top: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: clamp(15px, 3vw, 40px);
    color: white;
    border-radius: 0px 0px 20px 20px;
    background: rgb(250, 150, 167);
    padding: 10px;
}

.indexdiv6-p2 {
    position: absolute;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: clamp(15px, 4vw, 60px);
    color: white;
}

/*CSS DIV 7*/

.aboutus {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: orange;
}

.aboutus div {
    padding: clamp(10px, 2vw, 20px);
}

.aboutus-div1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aboutus-div1 img {
    width: clamp(70px, 11vw, 200px);
}

.aboutus-div2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: clamp(10px, 2vw, 15px);
}

.aboutus-div2 p {
    text-align: center;
}

.aboutus-div2 a {
    text-decoration: none;
    color: black;
    text-align: center;
}

@media screen and (max-width: 350px) {
    .aboutus {
        flex-wrap: wrap;
    }
}

/*CSS DIV 8*/

.bottomcopyright {
    background: black;
}

.bottomcopyright p {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    padding: 5px;
    text-align: center;
    font-size: clamp(5px, 2vw, 15px);
}

/*CSS DIV 9*/

.arrowup a {
    position: fixed;
    bottom: 1%;
    right: 1%;
    text-decoration: none;
    color: rgb(255, 255, 255);
    border-radius: 10%;
    background: rgb(80, 200, 98);
    padding: 10px;
    z-index: 9999;
}










