.header-logo-menu {
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2); /* Tambahkan shadow */
    z-index: 1000; /* Pastikan shadow berada di atas elemen lain */
    position: relative; /* Pastikan header memiliki posisi */
}

.gradient-about-area{
  background: linear-gradient(to bottom, #F1F1F1, #FFFFFF);
}

.button-about-contact {
	background: #ffffff none repeat scroll 0 0;
  border: 1px solid #0A4D68 !important;
	color: #0A4D68;
	display: inline-block;
	font-size: 14px;
	margin: 0;
	text-transform: uppercase;
	/*font-family: 'Montserrat', sans-serif;*/
	font-family: 'Poppins', sans-serif;
	padding: 16px 27px;
	font-weight: 600;
	margin-top: 21px;
	border-radius: 50px;
  margin-left:15px;
}
.button-about-contact:hover {
	background-color: #F0F0F0;
	color: #0A4D68;
}

.about-image-area {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Tambahkan shadow */
    border-radius: 8px; /* Opsional: sudut membulat */
    overflow: hidden; /* Agar gambar tidak keluar dari sudut */
    transition: transform 0.3s ease; /* Opsional: efek saat hover */
    padding: 1.5rem;
}

.about-image-area:hover {
    transform: scale(1.05); /* Opsional: perbesar saat hover */
}

.single-latest-item {
  background: #ffffff none repeat scroll 0 0 !important;
	transform: scale(1); /* Zoom 5% lebih besar */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06); /* Efek bayangan */
  border-radius: 8px; /* Membuat sudut melengkung */
}

.single-latest-text {
  background: #ffffff none repeat scroll 0 0 !important;
}

.milestone-card{
  background: #F0F0F0 none repeat scroll 0 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06); /* Efek bayangan */
  border-radius: 8px; /* Membuat sudut melengkung */
  border:none !important;
}

.gallery-card{
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    border-radius: 8px !important;
    border: none !important;
    transition: transform 0.3s ease;
    padding: 0; /* Pastikan padding dihapus */
    margin: 0; /* Pastikan margin dihapus */
    overflow: hidden; /* Agar gambar tidak keluar dari container */
}

.gallery-card:hover{
  transform: scale(1.05); /* Opsional: perbesar saat hover */
}

.single-latest-item:hover {
	transform: scale(1.05); /* Zoom 5% lebih besar */
	/*box-shadow: 2px 5px 25px rgba(34, 30, 31, 0.25);*/
}

.single-latest-image{
    background: #F0F0F0 none repeat scroll 0 0;
}

.about-card-item{
  background: #f0f0f0 none repeat scroll 0 0 !important;
}

.about-card-text {
  background: #f0f0f0 none repeat scroll 0 0 !important;
}

.download-card-item{
  margin:0 !important;
}

/* The actual timeline (the vertical ruler) */
.main-timeline-2 {
  position: relative;
}

/* The actual timeline (the vertical ruler) */
.main-timeline-2::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #26c6da;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.timeline-2 {
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.timeline-2::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -11px;
  background-color: #26c6da;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left-2 {
  padding: 0px 40px 20px 0px;
  left: 0;
}

/* Place the container to the right */
.right-2 {
  padding: 0px 0px 20px 40px;
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left-2::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right-2::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right-2::after {
  left: -14px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
  .main-timeline-2::after {
    left: 31px;
  }

  /* Full-width containers */
  .timeline-2 {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .timeline-2::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left-2::after,
  .right-2::after {
    left: 18px;
  }

  .left-2::before {
    right: auto;
  }

  /* Make all right containers behave like the left ones */
  .right-2 {
    left: 0%;
  }
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background-color: #0A4D68; /* Warna biru Bootstrap */
    border: 4px solid #2E8BC0; /* Tambahkan border putih */
}



.row.display-flex {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
  }
  .row.display-flex > [class*='col-'] {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
  }
  .single-event-item, .single-latest-item  {
	background-color: #f6f6f6;
  }
  
  .single-event-text > h3, .single-latest-text > h3 {
	line-height: 1.5;
}


/* side bar*/
.recent-content-item {
    display: flex; /* Gunakan Flexbox untuk tata letak horizontal */
    align-items: flex-start; /* Rata atas antara gambar dan teks */
    margin-bottom: 22px;
    overflow: hidden;
}

.recent-content-item > a {
    flex-shrink: 0; /* Agar gambar tidak mengecil */
    margin-right: 12px; /* Jarak antara gambar dan teks */
}

.recent-content-item > a img {
    width: 100px; /* Atur ukuran gambar */
    height: 100px; /* Pastikan gambar kotak */
    object-fit: cover; /* Potong gambar agar sesuai dimensi */
    border: 1px solid #FFAE27; /* Sama seperti style sebelumnya */
}

.recent-text {
    flex-grow: 1; /* Teks mengambil sisa ruang */
    overflow: hidden;
}

.recent-text > h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.recent-text > h4 a {
    color: #6b6b6b;
    text-decoration: none;
}

.recent-text .single-item-comment-view {
    font-size: 11px;
    color: #b2b2b2;
    margin-bottom: 5px;
}

.recent-text > p {
    font-size: 12px;
    line-height: 16px;
    margin: 0;
}

.button-default{
    border-radius: 8px !important; 
}

.single-latest-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    aspect-ratio: 370 / 250;
    border-radius: 0px;
}

.single-event-image img {
    width: 100%; /* Agar sesuai dengan lebar kontainer */
    height: 370px; /* Tinggi tetap */
    object-fit: cover; /* Memastikan gambar memenuhi area tanpa distorsi */
    aspect-ratio: 250 / 370; /* Rasio 250:370 */
    border-radius: 0; /* Tidak ada lekukan */
}

.single-client-logo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 0;
}

.bg-grey{
  background-color: #F0F0F0;
}
.bg-dark-grey{
  background-color: #0A4D68;
}

.custom-underline {
    position: relative;
}

.custom-underline h3::after {
    content: '';
    display: block;
    width: 6rem;
    height: 0.25rem;
    background-color: #0B5ED7;
    margin: 10px auto 0;
}

.open-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}


/*custom color ada di admin*/
/*
.hero-slider .owl-nav > button {
  background: #1F3971 !important;
  color: #fff !important;
}

.button-default{
    background: #1F3971 none repeat scroll 0 0;
    color: #ffffff;
}

.hero-slider .owl-nav > button:hover {
  background: #FFAE27 !important;
}

.button-default:hover{
    background: #FFAE27 none repeat scroll 0 0;
}

.event-style-2 .single-event-image a > span {
  background: #1F3971 none repeat scroll 0 0;
}

.blog-content a:hover{
    color:#fff;
}

a:focus,
a:hover {
	color: #FFAE27;
}

.single-latest-text > h3 a {
	color: #1F3971;
}
.single-latest-text > h3 a:hover {
	color: #FFAE27;
}


.recent-text > h4 a {
  color: #6b6b6b;
  text-decoration: none;
}

.recent-text > h4 a:hover {
  color: #FFAE27;
  text-decoration: none;
}

.contact-form-style .button-default:hover {
	color: #FFAE27;
	background-color: #1F3971;
}

.edubuzz-address {
	background-color: #1F3971;
}

.footer-widget-area {
  background: #1F3971 none repeat scroll 0 0;
}

.footer-area {
  background-color: #1C3263;
}

.edubuzz-address > ul > li {
	border-top: 1px solid #4B5B7D;
}
*/



/*
#004029
#FFAE27


*/

/*
#FFAE27
#1F3971
#1C3263
*/
