/*-- awal header --*/
.header {   
    background: #136ef7;                  /*-- (19, 110, 247, 0.8); warna background, 0.8 = tingkat transparan --*/
    width: 100%;                              /*-- panjang (jangan diubah) --*/
    height: 70px;                             /*-- lebar (sesuaikan saja) --*/
    padding: 5px 20px 5px 20px;               /*-- jarak kosong atas kanan bawah kiri (lebih baik jangan diubah) --*/
    position: fixed;                          /*-- fixed = melayang, static = tetap --*/
    z-index: 1;                               /*-- posisi tumpukan item (jangan diubah) --*/
}

.logo img {
    max-height: 60px;                         /*-- sesuaikan dengan lebar header --*/
    width: auto;                              /*-- panjang (jangan diubah) --*/
    height: auto;                             /*-- lebar (jangan diubah) --*/
    float: left;                              /*-- rata kiri --*/
}

.navigation.navbar {
    float: right;                             /*-- rata kanan --*/
}

.navigation.navbar-dark .navbar-nav .nav-link {
    padding: 10px 25px;                       /*-- jarak kosong atas bawah = 10, kanan kiri = 25 (lebih baik jangan diubah) --*/
    color: #fff;                            /*-- warna font --*/
    font-size: 16px;                          /*-- warna font --*/
    line-height: 20px;
    text-align: center;
}

.navigation.navbar-dark .navbar-nav .nav-item .fa {
    margin-right: 8px;
}

.navigation.navbar-dark .navbar-nav .nav-link:focus, .navigation.navbar-dark .navbar-nav .nav-link:hover{
    color: #136ef7;
    background: #ffffff;
    border-radius: 3px;
}

.navigation.navbar-dark .navbar-nav .active>.nav-link, .navigation.navbar-dark .navbar-nav .nav-link.active, 
.navigation.navbar-dark .navbar-nav .nav-link.show, .navigation.navbar-dark .navbar-nav .show>.nav-link {
    color: #fdd430;
}

.navigation.navbar-dark .navbar-nav .nav-item {
    position: relative;
}

.navigation.navbar-dark .navbar-nav .nav-item:hover .dropdown-menu,
.navigation.navbar-dark .navbar-nav .dropdown-menu:hover {
    visibility: visible;
    display: block;
    position: absolute;
    left: 0;
    z-index: 1;
    margin-top: 0px;
}

.navigation.navbar-dark .navbar-nav .nav-item:hover .nav-link {
    background-color: #fff;
    color: #136ef7;
    border-radius: 3px;

}

.navigation.navbar-dark .navbar-nav .nav-item .dropdown-menu a {
    color: #000000;
}

.navigation.navbar-dark .navbar-nav .nav-item .dropdown-menu a:hover {
    color: #136ef7;
    background-color: #e0e0e0;
}
/*-- akhir header --*/

/* awal section1 */
.section1 {
    /* background: #0c0f38;
    background-size: cover;
    background-repeat: no-repeat; */
    position: relative;
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    align-items: center;
    display: flex;
    overflow: hidden;
}

#background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    z-index: -1;
}

.section1_text h1 {
    color: #136ef7;
    font-size: 60px;
    line-height: 80px;
    padding-bottom: 25px;
    font-weight: bold;
}

.section1_text span {
    color: #fdd430;
    font-size: 40px;
    line-height: 35px;
    font-weight: bold;
}

.section1_text p {
    color: #fff;
    font-size: 17px;
    line-height: 28px;
    padding: 40px 0;
}

.section1_text a {
    font-size: 16px;
    font-weight: 500;
    background-color: #fff;
    color: #000;
    padding: 10px 0px;
    width: 100%;
    max-width: 190px;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 3px;
}

.section1_text a:hover {
    background-color: #136ef7cc;
    color: #fff;
    text-decoration: none;
}

.text-img figure img {
    width: 100%;
}
/* akhir section1 */

/* awal section2 */
.section2 {
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    display: flex;
    background-color: #ffffff;
}

.section2_image_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0px;
    padding: 0px;
    box-sizing: border-box;
    border: 1px solid #555353;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 500px;
    overflow: hidden;
}

.section2_image {
    flex: 1;
    overflow: hidden; 
}

img {
    width: 100%; 
    height: auto;
    display: block;
}

.section2_pad_page {
    margin-left: 40px;
}

.section2_text_page {
    text-align: center;
    padding-bottom: 30px;
}

.section2_text_page h2 {
    color: #136ef7;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
}

.section2_middle_lines {
    position: relative;
    margin: 20px auto;
    text-align: center;
}

.section2_middle_lines:before,
.section2_middle_lines:after {
    content: "";
    height: 2px;
    background: #136ef7;
    display: block;
    position: absolute;
    top: 50%;
    width: calc(50% - 65px);
}

.section2_middle_lines:before {
    left: 0;
}

.section2_middle_lines:after {
    right: 0;
}

.section2_text_company {
    text-align: left;
    margin-bottom: 20px;
}

.section2_text_company h1 {
    font-size: 40px;
    color: #980f1d;
    line-height: 40px;
    font-weight: bold;
    padding: 0;
}

.section2_text_description {
    text-align: justify;
}

.section2_button a {
    font-size: 16px;
    background-color: #fff;
    color: #136ef7;
    padding: 10px 0px;
    width: 100%;
    max-width: 150px;
    text-align: center;
    display: inline-block;
    border: 1px solid #136ef7;
    border-radius: 10px;
    margin-top: 10px;
}

.section2_button a:hover {
    background-color: #136ef7;
    color: #fff;
    text-decoration: none;
}

.section2_text_or {
    margin: 0 15px;
    font-size: 16px;
    color: #136ef7;
}

.box_section2 {
    margin: 20px 0px;
    height: 130px;
    background-color: #ffffff;
    border: 1px solid #136ef7;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.box_section2_icon {
    font-size: 5rem;
    color: #136ef7;
    margin: 0 20px;
}

.box_section2_content {
    float: right;
    margin: 20px;
    margin-top: 35px;
}

.box_section2_content h2 {
    font-size: 24px;
    font-weight: bold;
}

.box_section2_content p {
    font-size: 18px;
}

.box_section2:hover {
    background-color: #136ef7;
    text-decoration: none;
}

.box_section2:hover * {
    color: #fff;
}

/* .page2_fadein {
	opacity: 0;
	transition: all 1s ease-out;
	transition-delay: 0.2s;
}

.animate_fadein {
	opacity: 1;
}

.page2_fadefrombottom {
	opacity: 0;
	transform: translateY(50%);
	transition: all 0.4s ease-out;
	transition-delay: 0.2s;
}

.animate_bottom {
	opacity: 1;
	transform: translateY(0);
}

.page2_fadefromleft {
	opacity: 0;
	transform: translateX(-50%);
	transition: all 0.4s ease-out;
	transition-delay: 0.2s;
}

.page2_fadefromright {
	opacity: 0;
	transform: translateX(50%);
	transition: all 0.4s ease-out;
	transition-delay: 0.2s;
}

.animate_rightleft {
	opacity: 1;
	transform: translateX(0);
} */
/* akhir page2 */

/* awal section3 */
.section3 {
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    display: flex;
    background-color: #1083f0;
}

.section3_text_page {
    text-align: center;
    padding-bottom: 20px;
}

.section3_text_page h2 {
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
}

.section3_middle_lines {
    position: relative;
    margin: 20px auto;
    text-align: center;
}

.section3_middle_lines:before,
.section3_middle_lines:after {
    content: "";
    height: 2px;
    background: #ffffff;
    display: block;
    position: absolute;
    top: 50%;
    width: calc(50% - 65px);
}

.section3_middle_lines:before {
    left: 0;
}

.section3_middle_lines:after {
    right: 0;
}

.section3_box_page {
    text-align: center;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    height: 260px;
    margin-bottom: 25px;
}

.section3_icon {
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.section3_icon i {
    font-size: 4rem;
    color: #136ef7;
}

.section3_box_page h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0px 10px 0px;
    color: #ffffff;
}

.section3_text_description {
    color: #ffffff;
    font-size: 16px;
}

.section3_box_page:hover {
    background-color: #ffffff;
}

.section3_box_page:hover .section3_icon {
    background-color: #136ef7;
}

.section3_box_page:hover .section3_icon i {
    color: #ffffff;
}

.section3_box_page:hover h4,
.section3_box_page:hover .section3_text_description {
    color: #136ef7;
}
/* akhir section3 */

/* awal section4 */
.section4 {
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    display: flex;
    background-color: #ffffff;
}

.section4_text_page h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 15px;
}

.section4_video {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 20px;
}

.section4_text_advantages {
    text-align: center;
    padding-bottom: 10px;
}

.section4_text_advantages h2{
    font-size: 18px;
    font-weight: bold;
}

.section4_middle_lines {
    position: relative;
    margin: auto;
    text-align: center;
}

.section4_middle_lines:before,
.section4_middle_lines:after {
    content: "";
    height: 2px;
    background: #000000;
    display: block;
    position: absolute;
    top: 50%;
    width: calc(50% - 95px);
}

.section4_middle_lines:before {
    left: 0;
}

.section4_middle_lines:after {
    right: 0;
}

.section4_text_bottom {
    display: flex;
    align-items: center;
}

.section4_text_bottom i {
    margin-right: 10px;
    font-size: 24px;
    color: #10b742;
}

.section4_text_bottom h2 {
    font-size: 18px;
    font-weight: bold;
    padding-top: 5px;
}

/* akhir section4 */

/* awal section5 */
.section5 {
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    display: flex;
    background-color: #1083f0;
}

.section5_text_page {
    text-align: center;
    padding-bottom: 20px;
}

.section5_text_page h2 {
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
}

.section5_middle_lines {
    position: relative;
    margin: 20px auto;
    text-align: center;
}

.section5_middle_lines:before,
.section5_middle_lines:after {
    content: "";
    height: 2px;
    background: #ffffff;
    display: block;
    position: absolute;
    top: 50%;
    width: calc(50% - 85px);
}

.section5_middle_lines:before {
    left: 0;
}

.section5_middle_lines:after {
    right: 0;
}

.section5_box {
    text-align: center;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 20px;
}

.section5_box h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 30px 0px 10px 0px;
}

.section5_box p {
    font-size: 16px;
}

.section5_box img {
    max-width: 300px;
    height: auto;
    max-height: 150px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
}

.section5_button a {
    font-size: 16px;
    background-color: #fff;
    color: #136ef7;
    padding: 10px 0px;
    width: 100%;
    max-width: 200px;
    text-align: center;
    display: inline-block;
    border: 1px solid #136ef7;
    border-radius: 10px;
    margin-top: 10px;
}

.section5_button a:hover {
    background-color: #136ef7;
    color: #fff;
    text-decoration: none;
}
/* akhir section5 */

/* awal section6 */
.section6 {
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    display: flex;
    background-color: #ffffff;
}

.section6_text_page h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 20px;
}

.swiper-slide {
    transition:all 100ms linear;
    transform: scale(0.8); 
}

.swiper-slide-active{
    transform: scale(1);
}

.swiper-slide img {
    max-width: 350px;
    max-height: 350px;
    border-radius: 15px;
    border: 2px solid #000;
}

/* akhir section6 */

/* awal testi section */
.testi-page {
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.testi-text {
    text-align: center;
}

.testi-text h2 {
    color: #136ef7cc;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
}

.testi-customer{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px;
}
.testi-slide-content{
    margin: 0 40px; 
}
.testi-card{
    border-radius: 25px;
    border: 2px solid #136ef7cc;
    background: #fff;
}

.testi-image-content, .testi-card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;

}

.testi-image-content{
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
}

.testi-overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #136ef7cc;
    border-radius: 25px;
}

/* .testi-overlay::before, .testi-overlay::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #136ef7cc;
}

.testi-overlay::after{
    border-radius: 0 25px 0 0;
    background-color: #fff;
} */

.testi-card-image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
}

.testi-card-image .testi-card-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #136ef7cc;
}

.testi-name-person{
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.testi-description{
    font-size: 14px;
    color: #000;
    text-align: center;
}

/* akhir testi section */


/* awal page3 */
.page3 {
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    background-color: #ffffff;
    display: flex;
    position: relative;
}



.swiper-nav-button{
    color: #fff;
    transition: color 0.3s ease;
}

.swiper-nav-button:hover{
    color: #136ef7cc;
}

.swiper-nav-button::before, .swiper-nav-button::after{
    font-size: 40px;
}

.swiper-button-next{
    right: 0;
}

.swiper-button-prev{
    left: 0;
}

/* .swiper-slide img {
    max-width: 400px;
    max-height: 800px;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 2px solid #000;
} */

/* .cards-wrapper {
    display: flex;
    justify-content: center;
}
.card img {
    max-width: 100%;
    max-height: 100%;
}
.card {
    margin: 0 0.5em;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    border: none;
    border-radius: 0;
}
.carousel-inner {
    padding: 1em;
}
.carousel-control-prev,
.carousel-control-next {
    background-color: #e1e1e1;
    width: 5vh;
    height: 5vh;
    border-radius: 50%;
    top: 50%;

} */

/* .carousel-inner .carousel-item .active,
.carousel-inner .carousel-control-prev,
.carousel-inner .carousel-control-next {
    display: flex;
} */

.image_page3 {
    width: 100%;
    max-width: 300px;
    height: auto;
    border: 1px solid #000;
    border-radius: 10px;
    /* max-width: 300px;
    width: auto;
    height: auto;
    max-height: 450px;
    border: 2px solid #136ef7cc;
    border-radius: 15px; */
}


/* .carousel-control-prev,
  .carousel-control-next {
    position: absolute;
    top: 50%;
    color: #fff;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
} */
/* akhir page3 */
  
/*
---------------------------------------------
popular categories
---------------------------------------------
*/ 

section.popular-categories {
    padding: 0px 65px;
  }
  
  section.popular-categories .main-button {
    text-align: right;
  }
  
  .popular-item {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
  }
  
  .popular-item .top-content {
    display: flex;
    margin-bottom: 30px;
  }
  
  .popular-item .icon {
    background-color: #f7f7f7;
    width: 75px;
    height: 75px;
    display: inline-block;
    text-align: center;
    line-height: 75px;
    border-radius: 10px;
    margin-right: 20px;
  }
  
  .popular-item .icon img {
    max-width: 36px;
    border-radius: 0px;
  }
  
  .popular-item h4 {
    font-size: 20px;
    margin-top: 5px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .popular-item span em {
    font-style: normal;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 8px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #00bdfe;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
    margin-right: 10px;
  }
  
  .popular-item span {
    color: #afafaf;
    font-weight: 400;
  }
  
  .popular-item img {
    border-radius: 15px;
  }
  
  .popular-item .thumb {
    position: relative;
    overflow: hidden;
  }
  
  .popular-item .thumb span.category {
    font-size: 15px;
    color: #00bdfe;
    background-color: #fff;
    border-radius: 10px;
    font-weight: 500;
    position: absolute;
    left: 15px;
    top: -60px;
    padding: 8px 12px;
    opacity: 0;
    transition: all .3s;
  }
  
  .popular-item .thumb span.likes {
    font-size: 15px;
    color: #00bdfe;
    background-color: #fff;
    border-radius: 10px;
    font-weight: 500;
    position: absolute;
    right: 15px;
    top: -60px;
    padding: 8px 12px;
    opacity: 0;
    transition: all .3s;
  }
  
  .popular-item .thumb:hover span.category,
  .popular-item .thumb:hover span.likes {
    top: 15px;
    opacity: 1;
  }
  
  .popular-item .border-button {
    margin-top: 30px;
  }
  
  .popular-item .border-button a {
    width: 100%;
    text-align: center;
  }
  

/* awal halaman gallery */
.container_gallery {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 80px
}

.text_gallery {
    text-align: center;
    margin-bottom: 30px;
}

.text_gallery h1 {
    font-size: 36px;
    color: #000000;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.gallery img {
    width: 100%;
    border: 4px solid #555353;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.animated-entry-left img {
    animation-name: slideInLeft;
}

.animated-entry-left.delayed-entry img {
    animation-name: slideInLeft;
    animation-duration: 1s;
    animation-delay: 0.5s;
}

.animated-entry-right img {
    animation-name: slideInRight;
}

.animated-entry-right.delayed-entry img {
    animation-name: slideInRight;
    animation-duration: 1s;
    animation-delay: 0.5s;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
/* akhir halaman gallery */

/* awal halaman cv */
.container_cv {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 80px;
}

.text_cv {
    text-align: center;
    margin-bottom: 30px;
}

.text_cv h1 {
    font-size: 36px;
    color: #000000;
}

.cvpic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.cvpic_hover {
    position: relative;
    overflow: hidden;
}

.cvpic_hover img {
    width: 100%;
    border: 2px solid #136ef7cc;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

.cvpic_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 2px solid #fdd430;

}

.cvpic_hover:hover .cvpic_content {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.9); /* Background color on hover (adjust as needed) */
}

.cvpic_content h2 {
    color: #136ef7cc;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
}

/* akhir halaman gallery */

/* .box_page2 {
    width: calc(25% - 20px);
    height: 130px;
    margin: 20px 10px;
    background-color: #ffffff;
    float: left;
    border: 1px solid #136ef7cc;
    border-radius: 10px;
    display: flex;
    align-items: center;
} */