@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --primary-color: #3e7dbe;
    --white-color: #fff;
    --light-gray-color: #ddd;
    --blue-color: #1a4e7d;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html{
    font-size:16px;
    scroll-behavior: smooth;
}

/*Utality Classes Start*/
.container{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow:hidden;
}

img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

a{
    text-decoration: none;
    color:inherit;
}

.heading-normal-txt{
    font-size: 30px;
    letter-spacing: 6px;
    color: #3e7dbe;
}

.headings{
    font-size: 3rem;
    padding-bottom: 2rem;
    letter-spacing: 2px;
}

.headings span{
  color: var(--primary-color);  
}

.secondary-headings{
    font-size: 2.5rem;
    padding: 1rem 0;
}

.lead{
    font-size: 1.1rem;
    line-height: 2;
    text-align: justify;
}

.primary-btn{
    width:50%;
    outline:none;
    background-color: var(--primary-color);
    border:none;
    padding:0.7rem;
    font-size:1.7rem;
    border-radius: 4px;
    color: var(--white-color);
    cursor:pointer;
}
/*Utality Classes Close*/

/*Header Start*/
header{
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6;
    width:100%;
    height:100;
    transition: all 0.3s ease-in-out;
}

header.sticky{
    background: var(--primary-color);
}

.logo img{
    width: auto;
    height: 50px;
    object-fit: cover;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items: center;
}

nav ul{
   list-style-type: none;
   display : flex;
}

nav ul li{
    margin: 0 0.9rem;
    position: relative;
}

nav ul li a{
   color: var(--white-color); 
   font-size: 1.1rem;
   font-weight: 600;
   text-decoration: none;
}

nav ul li::before{
    content:"";
    position: absolute;
    top: 30px;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--white-color);
    opacity: 0;
    transition: all 0.3 ease-in;
}

nav ul li:hover::before{
    opacity: 1;
    width: 100%;
}

.buton{
    font-size: 1.3rem;
    color: var(--white-color);
    cursor: pointer;
    display: none;
}
.pelaksanaan{
    font-size: 20px !important; 
}
/*Header Close*/

/*Showcase Start*/
main{
    position: relative;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: 0;
}

.swiper{
    height: 100vh;
}
.slide-container{
    width: 100%;
}
.slide-container img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.img-overlay{
    position:absolute;
    z-index:5;
    left:50%;
    top: 50%;
    text-align: center;
    width: 100%;
    font-family: "ubuntu";
    transform: translate(-50%, -50%);
}

.img-overlay p{
    font-size: 1rem;
    letter-spacing: 8px;
    color: var(--white-color);
    animation: animate 4s forwards;
}

.img-overlay h2{
    font-size:5rem;
    color:var(--white-color);
    text-transform:uppercase;
    letter-spacing:8px;
    animation: animate 4s forwards;
    transition: all 0.5s ease-in-out;
}

.overlay{
    position: relative;
}
.overlay:after{
    content:"";
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.1);
}
@keyframes animate{
    0%{
        transform: translateX(-50%);
        opacity:0;
    }
    50%{
        opacity:0.2;
    }
    70%{
        opacity:.5;
    }
    70%{
        opacity: 1;
        transform:translateX(-0%);
    }
}
.img-overlay h2 span{
    color:transparent;
    -webkit-text-stroke: 1px var(--white-color);
}
/*Showcase Close*/

/*Button Start*/
.button > a{
    text-decoration:none;
    color:inherit;
}
.button{
    margin-top:2rem;
    padding: 1em 0.5em;
    border: none;
    border-radius: 0.5px;
    font-weight: bold;
    letter-spacing: 3px;
    cursor: pointer;
    color: var(--white-color);
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    outline: 2px solid var(--white-color);
    background-color:transparent;
  }
  
  .button:hover {
    color: #ffffff;
    transform: scale(1.1);
    outline: 2px solid transparent;
    box-shadow: 4px 5px 17px -4px var(--primary-color);
  }
  
  .button::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
  }
  
  .button:hover::before {
    width: 250%;
  }
  
/*Button Close*/

/*About Us Start*/
.about-content-wrapper{
    display: grid;
    grid-template: repeat(1,1fr);
    grid-column-gap: 3rem;
    margin: 3rem 0;
}

.about-content-wrapper ul{
    list-style: none;
}
.about-content-wrapper ul .icons{
    display: flex;
    align-items: center;
    align-items: center;
    margin: 1rem 0;
}
.about-content-wrapper ul .icons i{
    background: var(--primary-color);
    padding: 0.8rem;
    border-radius: 50%;
    color: var(--white-color);
}a
.about-content-wrapper ul p{
    margin-left: 1rem;
}
/*About Us Close*/

/*Logo Lomba Start*/
.lomba {
    width: 90%;
    margin: auto;
    padding-top: 3%;
}
.lomba > h1 {
    font-size: 36px;
    font-weight: 600;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.lomba-col {
    flex-basis: 31%;
    background: #BBE9FF50;
    margin-bottom: 5%;
    box-sizing: border-box;
    transition: all 0.3s ease-out;
    background: #eeeeee75;
    border-radius: 15px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.lomba-col-img {
    width: 100%;
    height: auto;
    max-width: 300px;
    max-height: 300px;
    object-fit: cover;
}
.lomba-col > h3 {
    margin-top: 15px;
    opacity: 95%;
}
.lomba-col:hover {
    background-color: #3e7dbe50;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

/*Logo Lomba Close*/

/*Counter Up Start*/
.counters{
    padding: 3em 2em;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    justify-content: center;
}
.counters > div{
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4em 2em;
}
.counter{
    position: relative;
}
.counter h1{
    font-size: 3em;
    margin-bottom: 0.5em;
}
.counter:not(:last-child)::before{
    content: '';
    background: #fff;
    position: absolute;
    width: 2px;
    height: 3em;
    top: 50%;
    transform: translateY(-50%);
    right: -1em;
}
/*Counter Up Close*/

/*Testimonial Start*/
#testimonial{
    padding: 3rem 0;
}
.testimonial-wrapper{
    width: 100%;
}
.carousel{
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.carousel:hover::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
}
.carousel-img-overlay{
    width:100%;
}
.hidden-content-carousel{
    padding: 0.5rem 2rem;
    color: var(--white-color);
    transform: translateY(120%);
    transition: all 0.5s ease-in-out;
}
.carousel-img-overlay i{
    padding-right: 1rem;
}
.carousel:hover .hidden-content-carousel{
    transform: translateY(0%);
}
.carousel:hover{
    transform: scale(1.2);
}
/*Testimonial Close*/

/*News Start*/
#news{
    padding: 6rem 0;
}

.news-wrapper{
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 2rem;
}
.lg-img{
    position: relative;
    transition: all 0.5s;
    cursor: pointer;
    width: 100%;
    height: 96%;
}

.lg-img > img{
    border-radius: 10px;
}

.lg-img:hover::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
}
.lg-img:hover{
    transform: scale(1.02);
}
.img-content{
    position: absolute;
    bottom: 20px;
}
.img-content h2{
    padding: 0 2rem;
    color: var(--white-color);
}

.row-wise-img{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
}
.label{
    background: var(--primary-color);
    color:var(--white-color);
    padding: 0.5rem 1rem;
    position: absolute;
    top: 50px;
    right: 0;
}
/*News Close*/

/*Static Counter Start*/
#static-counter{
    padding: 3rem 0;
    background: url('../assets/background_9.png') no-repeat center center/cover;
    background-attachment: fixed;
    z-index:4;
}
#static-counter::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:-1;
}
.static-wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
    text-align: center;
    align-items: center;
    height: 100%;
    padding: 2rem 0;
}
.static-icons{
    color: var(--white-color);
    cursor: pointer;
}
.static-icons i{
    font-size: 3rem;
    padding: 2rem;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    cursor:pointer;
    transition: all 0.3s
}
.numbers{
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 1rem;
}
.static-icons i:hover{
    background: var(--primary-color);
    border:none;
    transform: translateY(-20%);
}
/*Static Counter Close*/

/*Footer Start*/
.footer{
    width:100%;
    text-align:center;
    padding: 30px 0;
    background-color: var(--primary-color);
    color: var(--white-color);
}
.footer h4{
    margin-bottom: 25px;
    margin-top:20px;
    font-weight: 600;
}
.footer p{
    color: #fff;
}
.footer .icons i {
    color: #fff; 
    margin: 0 10px;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.footer .icons i:hover {
    color: black; 
}
.icons{
    margin-bottom: 10px;
}
/*Footer Close*/

/*Competition Start*/
#competition{
    margin-top: 50px;
}
#competition > .competition-col > p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    margin-left:10px !important;
}
.competition-col > h3{
    margin-left: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.competition-col{
    flex-basis: 100%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

/*Competition Close*/

/*Sub-Header Start*/
.sub-header {
    height: 40vh;
    width: 100%;
    background: var(--primary-color);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1 {
    margin-top: 0;
    font-size: 48px;
    font-weight: bold;

}
.sub-header-title{
    padding-top: 8%;
}
/*Sub-Header Close*/

/*Past Competition Start*/
.package-col{
    flex-basis: 31%;
    background: #BBE9FF50;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
.package-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}
.past-span{
    font-size: small;
}
/*Past Competition Close*/

/*Sample Paper Start*/
.sample-paper{
    margin: auto;
    padding-top: 50px;
}
.gallery-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.gallery-col img{
    width:100% !important;
    height: 100% !important;
    display: block;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    cursor: pointer;
}
.layer:hover{
    background: rgba(0,0,0,.5);
}
.layer h3{
    text-align: center;
    width:100%;
    font-weight:600;
    color: var(--white-color);
    font-size: 16px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}

/*Sample Paper Close*/

/*Dark Mode Toggle Icon Open*/
#darkModeToggle{
    width:23px;
    margin-left:1.1rem;
    cursor: pointer;
}
/*Dark Mode Toggle Icon Start*/

/*Google Translate Script Start*/
.dropdown{
    position: relative;
}
.dropbtn{
    font-weight: bold;
    background-color: inherit;
    color: var(--white-color);
    font-size:1.1rem;
    border:none;
    cursor: pointer;
    margin-left:1.1rem;
}
.dropdown-content{
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    z-index: 1;
}
.dropdown:hover .dropdown-content{
    display: block;
}

/*Google Translate Script Close*/

/*Participant Start*/
.participant-button {
    background: var(--primary-color);
    color: white;
    font-family: inherit;
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 13px;
    font-weight: 500;
    border-radius: 10px;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em var(--primary-color);
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
  }
  
  .participant-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 10px;
    box-shadow: 0.1em 0.1em 0.6em 0.2em var(--primary-color);
    right: 0.3em;
    transition: all 0.3s;
  }
  
  .participant-button:hover .icon {
    width: calc(100% - 0.6em);
  }
  
  .participant-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: var(--primary-color);
  }
  
  .participant-button:hover .icon svg {
    transform: translateX(0.1em);
  }
  
  .participant-button:active .icon {
    transform: scale(0.95);
  }
  .href-nodecoration{
    text-decoration: none;
  }
/*Participant Close*/
