/*-- 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: 100;                               /*-- 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: 100;
    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: #508C9B;
    font-size: 60px;
    font-weight: bold;
}

.section1_text span {
    color: #fdd430;
    font-size: 60px;
    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: #508C9B;
    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: 30px;
}

.section4_text_advantages {
    text-align: center;
    padding-bottom: 20px;
}

.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;
    z-index: 1;
}

.section6_text_page h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 30px;
}

.section6_slider_images .swiper-slide {
    transition:all 100ms linear;
    transform: scale(0.8); 
}

.section6_slider_images .swiper-slide-active{
    transform: scale(1);
}

.section6_slider_images .swiper-slide img {
    max-width: 350px;
    max-height: 350px;
    border-radius: 15px;
    border: 2px solid #000;
}

.section6_text_partners {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
}

.section6_text_partners h2{
    font-size: 18px;
    font-weight: bold;
}

.section6_middle_lines {
    position: relative;
    margin: auto;
    text-align: center;
}

.section6_middle_lines:before,
.section6_middle_lines:after {
    content: "";
    height: 2px;
    background: #000000;
    display: block;
    position: absolute;
    top: 50%;
    width: calc(50% - 95px);
}

.section6_middle_lines:before {
    left: 0;
}

.section6_middle_lines:after {
    right: 0;
}

.section6_slider_partners .swiper-slide {
    transition:all 100ms linear;
    transform: scale(1);
}

.section6_slider_partners .swiper-slide img {
    max-width: 100px;
    max-height: 100px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.section6_slider_partners .swiper-slide img:hover {
    filter: grayscale(0%);
}
/* akhir section6 */

/* awal section7 */
.section7 {
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    display: flex;
    background-color: #1083f0;
}

.section7_text_page {
    text-align: center;
    padding-bottom: 20px;
}

.section7_text_page h2 {
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
}

.section7_middle_lines {
    position: relative;
    margin: 20px auto;
    text-align: center;
}

.section7_middle_lines:before,
.section7_middle_lines:after {
    content: "";
    height: 2px;
    background: #ffffff;
    display: block;
    position: absolute;
    top: 50%;
    width: calc(50% - 85px);
}

.section7_middle_lines:before {
    left: 0;
}

.section7_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 section7 */

/* awal section8 */
.section8 {
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    display: flex;
    background-color: #ffffff;
}

.section8_text_page {
    text-align: center;
    padding-bottom: 10px;
}

.section8_text_page h2 {
    color: #136ef7;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
}

.section8_middle_lines {
    position: relative;
    margin: 20px auto;
    text-align: center;
}

.section8_middle_lines:before,
.section8_middle_lines:after {
    content: "";
    height: 2px;
    background: #136ef7;
    display: block;
    position: absolute;
    top: 50%;
    width: calc(50% - 85px);
}

.section8_middle_lines:before {
    left: 0;
}

.section8_middle_lines:after {
    right: 0;
}

.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 section8 */

/* awal footer */

footer {
    background-color: #136ef7; /* Blue background */
    color: white;
    text-align: center;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70px;
    padding: 0;

}

.footer-content .section {
    flex: 1;
}
.footer-content .section h4, .footer-content .section p {
    margin: 0; /* Adjust margins for text elements */
    font-size: 14px;
}

.footer-bottom {
    background-color: #000; /* Black background */
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: white;
}
/* akhir footer */

/* awal halaman about */
/* awal section1 about */
.section1-about {
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    display: flex;
    background-color: #ffffff;
}

.col-lg-12 {
    width: 100%;
    padding: 0;
}
.image-container-section1-about {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.image-container-section1-about img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.image-container-section1-about .text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 54px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.3);
}
.section1-about_text_page {
    text-align: center;
    padding-top: 10px;
}

.section1-about_text_page h2 {
    color: #1083f0;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
}

.section1-about_middle_lines {
    position: relative;
    margin: 20px auto;
    text-align: center;
}

.section1-about_middle_lines:before,
.section1-about_middle_lines:after {
    content: "";
    height: 2px;
    background: #1083f0;
    display: block;
    position: absolute;
    top: 50%;
    width: calc(50% - 105px);
}

.section1-about_middle_lines:before {
    left: 0;
}

.section1-about_middle_lines:after {
    right: 0;
}
/* .row {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
} */

.section1-about-logo_left, .section1-about-logo_right {
    max-width: 250px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section1-about-logo_left img, .section1-about-logo_right img {
    max-width: 100%;
    height: auto;
}
.section1-about-tabel_identitas {
    flex-grow: 1;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section1-about-tabel {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}

.section1-about-label {
    width: 30%;
    text-align: left;
    padding: 5px 5px 5px 20px;
    font-size: 14px;
    color: #000000;
    font-weight: bold;
    vertical-align: top;
}
.section1-about-point {
    width: 5%;
    text-align: left;
    padding: 5px;
    font-size: 14px;
    color: #000000;
    font-weight: bold;
    vertical-align: top;
}
.section1-about-value {
    width: 65%;
    text-align: left;
    padding: 5px 20px 5px 5px;
    font-size: 14px;
    color: #000000;
    font-weight: bold;
    vertical-align: top;
}
/* akhir section1 about */

/* 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 */

/* awal halaman contact */
/* awal section1 contact */
.section1-contact {
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    display: flex;
    background-color: #ffffff;
}
.text_follow_medsos {
    text-align: center;
    margin: 10px 10px 30px 10px;
}
.section1-social-media-text {
    text-align: center;
    padding-top: 10px;
}

.section1-social-media-text h2 {
    color: #000000;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
}
.section1-social-media-middle-lines {
    position: relative;
    margin: 20px auto;
    text-align: center;
}
.section1-social-media-middle-lines:before,
.section1-social-media-middle-lines:after {
    content: "";
    height: 2px;
    background: #000000;
    display: block;
    position: absolute;
    top: 50%;
    width: calc(50% - 95px);
}
.section1-social-media-middle-lines:before {
    left: 0;
}
.section1-social-media-middle-lines:after {
    right: 0;
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 10px;
    vertical-align: top;
}

.map-column {
    width: 50%;
}

.info-column {
    width: 50%;
}

.info-content table {
    width: 100%;
}

.info-content td {
    padding: 5px 10px;
    vertical-align: top;
}

.info-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.info-content ul li {
    margin: 5px 0;
}



.section1-contact-tabel-medsos {
    flex-grow: 1;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section1-contact-tabel {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}
.box_section1-medsos-content {
    float: right;
    margin: 25px 10px 10px 10px;
}
.box_section1-medsos-content p {
    font-size: 14px;
    font-weight: bold;
    color: #000;
}
.section1-contact-youtube{
    padding: 5px;
}
.box_section1-youtube {
    margin: 10px 0px;
    height: 50px;
    width: 150px;
    background-color: #ffffff;
    border: 1px solid #d5080b;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.box_section1-youtube-icon {
    font-size: 2rem;
    color: #d5080b;
    margin: 10px;
}
.box_section1-youtube:hover {
    background-color: #d5080b;
    text-decoration: none;
}
.box_section1-youtube:hover * {
    color: #fff;
}
.section1-contact-instagram{
    padding: 5px;
}
.box_section1-instagram {
    margin: 10px 0px;
    height: 50px;
    width: 150px;
    background-color: #ffffff;
    border: 1px solid #e40c87;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.box_section1-instagram-icon {
    font-size: 2rem;
    color: #e40c87;
    margin: 10px;
}
.box_section1-instagram:hover {
    background-color: #e40c87;
    text-decoration: none;
}
.box_section1-instagram:hover * {
    color: #fff;
}
.section1-contact-tiktok{
    padding: 5px;
}
.box_section1-tiktok {
    margin: 10px 0px;
    height: 50px;
    width: 150px;
    background-color: #ffffff;
    border: 1px solid #242322;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.box_section1-tiktok-icon {
    font-size: 2rem;
    color: #242322;
    margin: 10px;
}
.box_section1-tiktok:hover {
    background-color: #242322;
    text-decoration: none;
}
.box_section1-tiktok:hover * {
    color: #fff;
}
.section1-contact-facebook{
    padding: 5px;
}
.box_section1-facebook {
    margin: 10px 0px;
    height: 50px;
    width: 150px;
    background-color: #ffffff;
    border: 1px solid #136ef7;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.box_section1-facebook-icon {
    font-size: 2rem;
    color: #136ef7;
    margin: 10px;
}
.box_section1-facebook:hover {
    background-color: #136ef7;
    text-decoration: none;
}
.box_section1-facebook:hover * {
    color: #fff;
}
.section1-contact-twitter{
    padding: 5px;
}
.box_section1-twitter {
    margin: 10px 0px;
    height: 50px;
    width: 150px;
    background-color: #ffffff;
    border: 1px solid #2bcdee;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.box_section1-twitter-icon {
    font-size: 2rem;
    color: #2bcdee;
    margin: 10px;
}
.box_section1-twitter:hover {
    background-color: #2bcdee;
    text-decoration: none;
}
.box_section1-twitter:hover * {
    color: #fff;
}
.section1-contact-whatsapp{
    padding: 5px;
}
.box_section1-whatsapp {
    margin: 10px 0px;
    height: 50px;
    width: 150px;
    background-color: #ffffff;
    border: 1px solid #068515;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.box_section1-whatsapp-icon {
    font-size: 2rem;
    color: #068515;
    margin: 10px;
}
.box_section1-whatsapp:hover {
    background-color: #068515;
    text-decoration: none;
}
.box_section1-whatsapp:hover * {
    color: #fff;
}
/* akhir section1 contact */

/* .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;
} */