@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/********** Template CSS **********/
:root {
  --primary: #00a859;
  --secondary: #078a4f ;
  --dongker: #1B297B;
  --red: #E01C1E;
  --light: white;
  --dark: #000;
  --abu: #e5e5e5;
  --theme-colour: #068A50;
  --common-colour: #007d3a;
  --common-font: 'Sawarabi Mincho';
  --main-color: #00a859;
  --second-color: #00a859;
  --white-color: #fff;
}
body{
  font-family: "Nunito", sans-serif;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Nunito", sans-serif;
  color: #068A50;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Control Tambahan Start ***/
.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative !important;
}

.sticky {
  position: sticky;
}

.font-thin {
  font-weight: 100 !important;
}
.font-extralight {
  font-weight: 200 !important;
}
.font-light {
  font-weight: 300 !important;
}
.font-normal {
  font-weight: 400 !important;
}
.font-medium {
  font-weight: 500 !important;
}
.font-semibold {
  font-weight: 600 !important;
}
.font-bold {
  font-weight: 700 !important;
}

.font-8 {
  font-size: 8px;
}

.font-10 {
  font-size: 10px;
}

.font-12 {
  font-size: 12px;
}

.font-14 {
  font-size: 14px;
}

.font-15 {
  font-size: 15px;
}

.font-16 {
  font-size: 16px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

.font-24 {
  font-size: 24px;
}
.justify-normal {
  justify-content: normal;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-stretch {
  justify-content: stretch;
}

.flex {
  display: flex;
}
.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.rounded-none {
  border-radius: 0px;
}

.rounded-sm {
  border-radius: 0.125rem !important; /* 2px */
}

.rounded {
  border-radius: 0.25rem !important; /* 4px */
}

.rounded-md {
  border-radius: 0.375rem !important; /* 6px */
}

.rounded-lg {
  border-radius: 0.5rem !important; /* 8px */
}

.rounded-xl {
  border-radius: 0.75rem !important; /* 12px */
}

.rounded-2xl {
  border-radius: 1rem !important; /* 16px */
}

.rounded-3xl {
  border-radius: 1.5rem; /* 24px */
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-s-none {
  border-start-start-radius: 0px;
  border-end-start-radius: 0px;
}

.rounded-s-sm {
  border-start-start-radius: 0.125rem; /* 2px */
  border-end-start-radius: 0.125rem; /* 2px */
}

.rounded-s {
  border-start-start-radius: 0.25rem; /* 4px */
  border-end-start-radius: 0.25rem; /* 4px */
}

.rounded-s-md {
  border-start-start-radius: 0.375rem; /* 6px */
  border-end-start-radius: 0.375rem; /* 6px */
}

.rounded-s-lg {
  border-start-start-radius: 0.5rem; /* 8px */
  border-end-start-radius: 0.5rem; /* 8px */
}

.rounded-s-xl {
  border-start-start-radius: 0.75rem; /* 12px */
  border-end-start-radius: 0.75rem; /* 12px */
}

.rounded-s-2xl {
  border-start-start-radius: 1rem; /* 16px */
  border-end-start-radius: 1rem; /* 16px */
}

.rounded-s-3xl {
  border-start-start-radius: 1.5rem; /* 24px */
  border-end-start-radius: 1.5rem; /* 24px */
}

.rounded-s-full {
  border-start-start-radius: 9999px;
  border-end-start-radius: 9999px;
}

.rounded-e-none {
  border-start-end-radius: 0px;
  border-end-end-radius: 0px;
}

.rounded-e-sm {
  border-start-end-radius: 0.125rem; /* 2px */
  border-end-end-radius: 0.125rem; /* 2px */
}

.rounded-e {
  border-start-end-radius: 0.25rem; /* 4px */
  border-end-end-radius: 0.25rem; /* 4px */
}

.rounded-e-md {
  border-start-end-radius: 0.375rem; /* 6px */
  border-end-end-radius: 0.375rem; /* 6px */
}

.rounded-e-lg {
  border-start-end-radius: 0.5rem; /* 8px */
  border-end-end-radius: 0.5rem; /* 8px */
}

.rounded-e-xl {
  border-start-end-radius: 0.75rem; /* 12px */
  border-end-end-radius: 0.75rem; /* 12px */
}

.rounded-e-2xl {
  border-start-end-radius: 1rem; /* 16px */
  border-end-end-radius: 1rem; /* 16px */
}

.rounded-e-3xl {
  border-start-end-radius: 1.5rem; /* 24px */
  border-end-end-radius: 1.5rem; /* 24px */
}

.rounded-e-full {
  border-start-end-radius: 9999px;
  border-end-end-radius: 9999px;
}

.rounded-t-none {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.rounded-t-sm {
  border-top-left-radius: 0.125rem; /* 2px */
  border-top-right-radius: 0.125rem; /* 2px */
}

.rounded-t {
  border-top-left-radius: 0.25rem; /* 4px */
  border-top-right-radius: 0.25rem; /* 4px */
}

.rounded-t-md {
  border-top-left-radius: 0.375rem; /* 6px */
  border-top-right-radius: 0.375rem; /* 6px */
}

.rounded-t-lg {
  border-top-left-radius: 0.5rem; /* 8px */
  border-top-right-radius: 0.5rem; /* 8px */
}

.rounded-t-xl {
  border-top-left-radius: 0.75rem; /* 12px */
  border-top-right-radius: 0.75rem; /* 12px */
}

.rounded-t-2xl {
  border-top-left-radius: 1rem; /* 16px */
  border-top-right-radius: 1rem; /* 16px */
}

.rounded-t-3xl {
  border-top-left-radius: 1.5rem; /* 24px */
  border-top-right-radius: 1.5rem; /* 24px */
}

.rounded-t-full {
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}

.rounded-r-none {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.rounded-r-sm {
  border-top-right-radius: 0.125rem; /* 2px */
  border-bottom-right-radius: 0.125rem; /* 2px */
}

.rounded-r {
  border-top-right-radius: 0.25rem; /* 4px */
  border-bottom-right-radius: 0.25rem; /* 4px */
}

.rounded-r-md {
  border-top-right-radius: 0.375rem; /* 6px */
  border-bottom-right-radius: 0.375rem; /* 6px */
}

.rounded-r-lg {
  border-top-right-radius: 0.5rem; /* 8px */
  border-bottom-right-radius: 0.5rem; /* 8px */
}

.rounded-r-xl {
  border-top-right-radius: 0.75rem; /* 12px */
  border-bottom-right-radius: 0.75rem; /* 12px */
}

.rounded-r-2xl {
  border-top-right-radius: 1rem; /* 16px */
  border-bottom-right-radius: 1rem; /* 16px */
}

.rounded-r-3xl {
  border-top-right-radius: 1.5rem; /* 24px */
  border-bottom-right-radius: 1.5rem; /* 24px */
}

.rounded-r-full {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.shadow {
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
}

.shadow-none {
  box-shadow: 0 0 #0000;
}
@media (max-width: 768px) {
  .font-sm-8 {
    font-size: 8px !important;
  }

  .font-sm-10 {
    font-size: 10px !important;
  }

  .font-sm-12 {
    font-size: 12px !important;
  }

  .font-sm-14 {
    font-size: 14px !important;
  }

  .font-sm-16 {
    font-size: 16px !important;
  }

  .font-sm-18 {
    font-size: 18px !important;
  }

  .font-sm-20 {
    font-size: 20px !important;
  }

  .font-sm-24 {
    font-size: 24px !important;
  }

  .font-sm-28 {
    font-size: 28px !important;
  }

  .font-sm-30 {
    font-size: 30px !important;
  }
}
.text-start {
  text-align: start;
}

.bg-nav{
    background-color: #FFF;    
}

.bg-utama1{
  background-color: var(--primary);
}

.bg-utama{
  background: linear-gradient(to right, rgb(0 168 89), rgb(7 137 79));
}

.bg-kedua{
  background-color: var(--secondary);
}

.bg-section{
  background-color: var(--abu);
}

.bg-merah{
  background-color: var(--red);
}

.bg-hitam{
  background-color: var(--dark);
}

.text-utama{
  color: var(--primary);
}

.text-kuning{
  color: var(--secondary);
}

.text-merah{
  color: var(--red);
}

.text-putih{
  color: var(--light);
}

.border-putih{
  color: var(--light);
}

.fz-12{
    font-size: 12px;
}

.fz-20{
  font-size: 20px;
}

.title-berita{
  position: absolute;
  z-index: 2;
}

.rad-left-10{
  border-top-left-radius: 10px;
}

/* blockquote {
  overflow: hidden;
  background-color: rgba(82, 86, 94, 0.06);
  padding: 20px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

blockquote p {
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--primary);
  margin-top: 20px;
  margin-bottom: 20px;
} */

.sidebar{
  position: sticky;
  top: 90px;
}

@media (min-width: 767.98px) {
  .footer-about {
      margin-top: -24px;
      margin-bottom: -112px;
  }
}

.btn {
  font-weight: 700;
  transition: .5s;
}

.btn:hover {
  -webkit-box-shadow: 0 8px 6px -6px #555555;
  -moz-box-shadow: 0 8px 6px -6px #555555;
  box-shadow: 0 8px 6px -6px #555555;
}

.btn.btn-utama {
  color: #FFFFFF;
  border: 1px #FFF solid;
}

.btn.btn-utama:hover {
  color: var(--primary);
  background-color: var(--light);
}

.btn.btn-kedua {
  color: var(--secondary);
  border: 1px var(--secondary) solid;
}

.btn.btn-kedua:hover {
  color: var(--light);
  background-color: var(--secondary);
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: rgb(29,142,90);
  /* height: 40px; */
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 1001;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
  height: 70px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #078a4f;
}

#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #078a4f;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #078a4f;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #078a4f;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #078a4f;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #078a4f;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog-item .blog-img img  {
  transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team-item {
  transition: .5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
  background-color:#049452;
  color:#fff !Important;
  border:none;
}

.team-item:hover {
  box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
  background: rgba(255, 255, 255, .7);
}

.team-item:hover .team-social p {
  color: #fff;
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
  transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-container {
  background-color: var(--light);
  height: 100%;
  padding: 20px;
  /* border-radius: 10px 0 0 10px; */
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
  width: 100%;
  background: linear-gradient(to right, rgba(27, 161, 162, 1), rgba(20, 85, 115, 1));
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: #fff;
  color: var(--primary);
}

.contact .php-email-form {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 0 10px 10px 0;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(0, 131, 116, 0.8);
}

@keyframes animate-loading {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}
/*** Control Tambahan End ***/

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
  color: #ffffff;
}

.btn.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}



/*** Header ***/
.carousel-home {
  height: 81vh;
  overflow: hidden;
}

.carousel-home .carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-home .carousel-inner .carousel-item {
  height: 100%;
  position: relative;
}

.carousel-home .carousel-inner .carousel-item .overlay {
  position: absolute;
  background-color: #000;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.5;
  z-index: 1;
}

.carousel-home .carousel-inner .carousel-caption {
  position: absolute;
  right: 15%;
  top: 0;
  bottom: 0;
  left: 15%;
  display: flex;
  flex-direction: column;
  padding-top: 1.25rem;
  justify-content: center;
  text-align: center;
  padding-bottom: 1.25rem;
  color: #fff;
  z-index: 2;
}

.carousel-home .carousel-inner .carousel-caption .caption-content {
  /*background: rgba(0, 0, 0, 0.5);*/
  /*padding: 20px 40px;*/
  border-radius: 1rem;
  text-align: center;
}

.carousel-home
.carousel-inner
.carousel-item
.carousel-caption
.carousel-caption-title {
  position: relative;
  width: fit-content;
}

.carousel-home .carousel-inner .carousel-item .carousel-caption h3 {
  color: #fff;
  font-size: 40px;
  /*width: fit-content;*/
  margin: 0;
  position: relative;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 768px) {
  .carousel-home .carousel-inner .carousel-item .carousel-caption h3 {
      font-size: 35px;
      text-align: center;
  }
}
.carousel-home .carousel-control-next {
  background-color: var(--primary);
  height: 100px;
  width: 50px;
  top: calc(50% - 50px);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.carousel-home .carousel-control-prev {
  background-color: var(--primary);
  height: 100px;
  width: 50px;
  top: calc(50% - 50px);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.carousel-home .carousel-control-next-icon,
.carousel-home .carousel-control-prev-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.bg-zoom-anim img {
  animation: scale 30s linear infinite;
}

@keyframes scale {
  50% {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      -o-transform: scale(1.2);
      transform: scale(1.2);
  }
}

.page-header {
  background: url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
  color: var(--primary);
}

/*** Facts ***/
@media (min-width: 992px) {
  .container.facts {
    max-width: 100% !important;
  }

  .container.facts .facts-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

.container.facts .facts-text {
  background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)),
    url(../img/carousel-1.jpg) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-counter {
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url(../img/carousel-2.jpg) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*** Service ***/
.service-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item .service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .service-icon img {
  max-width: 60px;
  max-height: 60px;
}

.service-item a.btn {
  color: var(--primary);
}

.service-item a.btn:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

/*** Appointment ***/
.appointment {
  background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

/*** Team ***/
.team-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  bottom: 0;
  opacity: 1;
}

.team-item a.btn {
  color: var(--primary);
}

.team-item a.btn:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

/*** Testimonial ***/
.animated.pulse {
  animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
  position: relative;
}

.testimonial-left img,
.testimonial-right img {
  position: absolute;
  padding: 5px;
  border: 1px dashed var(--primary);
  border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 10px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

/*** Footer ***/
.footer {
  color: #a7a8b4;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #a7a8b4;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: #fff;
  border: 1px solid #fff;
}

.footer .btn.btn-square:hover {
  color: var(--primary);
  border-color: #fff;
  background: #fff;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--secondary);
}

.footer .copyright a:hover {
  color: #ffffff;
}

.img-zoom {
    transition: all ease-in-out .3s;
}

.pengumuman-item:hover .img-zoom {
    transform: scale(1.2);
}

.artikel-item:hover .img-zoom {
    transform: scale(1.2);
}

.owl-carousel .owl-stage {
  display: flex;
}
.artikel-item {
  display: flex;
  flex: 1 0 auto;
  height: 100%;
}
.artikel-box {
  position: relative;
  overflow: hidden;
  /* margin-bottom: 80px; */ /*This is optional*/
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.artikel-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.artikel-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--dark);
  /* border-radius: 10px; */
  transition: 0.5s;
}

.artikel-carousel .owl-dot.active {
  background: var(--dark);
  border-color: var(--dark);
  transform: scale(1.2);
}

.gallery-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.gallery-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--dark);
  /* border-radius: 10px; */
  transition: 0.5s;
}

.gallery-carousel .owl-dot.active {
  background: var(--dark);
  border-color: var(--dark);
  transform: scale(1.2);
}

.gallery-overlay {
  opacity: 0;
  transition: ease-in-out 0.2s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.btn-square-contact {
  width: 75px;
  height: 75px;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-size: 20px;
}

.btn-square-contact {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-square-contact:hover {
  color: var(--primary);
  background: transparent;
}

.keunggulan-container {
    transition: all ease-in-out .3s;
}

.keunggulan-container:hover {
    background-color: var(--primary) !important;
}

.contact-btn {
  position: fixed;
  /* display: none; */
  left: 30px;
  bottom: 30px;
  z-index: 99;
}

/*--------------------------------------------------------------
  # Video Slider
  --------------------------------------------------------------*/
  @media only screen and (max-width: 767px){
      .video-wrapper{
          height: 90vh;
      }
  }
  
  @media only screen and (min-width: 992px){
      .video-wrapper{
          height: 110vh;
      }
  }
  
  .video-wrapper{
    width: 100%;
    overflow: hidden;
  }
  .video-wrapper .wrapper__video, .video-wrapper iframe {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .ytp-watermark,:not(.ytp-mweb-player) .ytp-watermark:not(.ytp-no-hover):hover {
    opacity: 0 !important;
  }
  
  .position-relative{
    position:relative;
  }
  .position-absolute{
    position:absolute;
  }
  .text-center{
    text-align:center;
  }
  .top-20{
    top:20%;
  }
  .top-25{
    top:25%;
  }
  .text-white{
    color:#fff;
  }
  .text-black{
    color:#000;
  }
  .overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    top: 0;
  }
  .banner-search {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    width: 600px;
    height: 56px;
    padding: 0 3px 0 16px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    z-index: 5;
    border: 1px solid transparent;
    color: #212121;
    margin: 0 auto;
  }
  .banner-search-input {
    line-height: 1.44;
    font-weight: 400;
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: transparent;
    position: relative;
    z-index: 400;
    font-size: 14px;
    color: #212121;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 54px;
    caret-color: #ff5722;
  }
  .home-page-search-button {
    font-size: 16px;
    line-height: 1.44;
    font-weight: 500;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    flex: none;
    padding: 0 40px;
    height: 48px;
    border-radius: 6px;
    margin-left: 16px;
    background: #61af4c;
    color: #fff;
    border: #61af4c;
    cursor: pointer;
  }
  .search-box_popover {
    position: absolute;
    top: 68px;
    left: 0;
    width: 800px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 8%);
    overflow: hidden;
  }
  input:focus,textarea:focus {
    outline-color:transparent;
  }
  .fs-46{
    font-size:46px;
  }
  .fs-28{
    font-size:28px;
  }
  .revo-button {
    color: #fff !important;
    font-size: 14px !important;
    line-height: 35px !important;
    display: inline-block;
    vertical-align: middle;
    background-color: rgba(71,160,255,1) !important;
    letter-spacing: 2px;
    font-weight: 700;
    padding-left: 20px;
    border-radius: 3px;
    padding-right: 20px;
    border:none;
  }
  .revo-button:hover{
    cursor:pointer;
  }

/*================================================
Zig - zag Halaman Perpustakaan
=================================================*/
.event-area {
  background-color: #fafafa;
}

.single-event-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #ffffff;
}

.single-event-box .event-image {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
}

.single-event-box .event-image .image {
  width: 100%;
  height: 100%;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-event-box .event-image .image img {
  display: none;
}

.single-event-box .event-image .image.bg1 {
  background-image: url(../../assets/img/blog-image/1.jpg);
}

.single-event-box .event-image .image.bg2 {
  background-image: url(../../assets/img/blog-image/2.jpg);
}

.single-event-box .event-image .image.bg3 {
  background-image: url(../../assets/img/blog-image/3.jpg);
}

.single-event-box .event-image .image.bg4 {
  background-image: url(../../assets/img/blog-image/4.jpg);
}

.single-event-box .event-content {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
}

.single-event-box .event-content .content {
  padding: 40px 30px;
}

.single-event-box .event-content .content .date {
  color: #2fba1b;
  margin-top: -5px;
  font-size: 50px;
  font-weight: 300;
}

.single-event-box .event-content .content .date sup {
  text-transform: uppercase;
  color: #524552;
  top: -22px;
  left: -6px;
  font-size: 18px;
  font-weight: 500;
}

.single-event-box .event-content .content .date sub {
  font-size: 15px;
  left: -53px;
  top: -1px;
  color: #818181;
}

.single-event-box .event-content .content h3 {
  margin-bottom: 11px;
  font-size: 24px;
  font-weight: 600;
}

.single-event-box .event-content .content h3 a {
  display: inline-block;
}

.single-event-box .event-content .content ul {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 10px;
}

.single-event-box .event-content .content ul li {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
  color: #554955;
  padding-left: 15px;
  padding-right: 15px;
}

.single-event-box .event-content .content ul li span {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  /* font-weight: 600; */
}

.single-event-box .event-content .content .default-btn {
  margin-top: 25px;
}

.single-event-box .imegg{
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 30%;
  max-width: 30%;
}
.single-event-box .konten{
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 70%;
  max-width: 70%;
}
.loc h3{
  text-transform: uppercase;
  color: #217911;
  font-weight: 900;
}
.avail{
  padding: 50px 0;
}
.avail .hae{
  display: inline-block;
  position: relative;
  text-transform: uppercase !important;
  font-weight: 900 !important;
}
.avail .hae:before{
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #34b045;
  top: 0;
  left: -67px;
  top: 50%;
  transform: translateY(-50%);
}
.avail .hae:after{
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #34b045;
  top: 0;
  right: -67px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px){
  .single-event-box .konten {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 100%;
  max-width: 100%;
  }
  .single-event-box {
  margin-bottom: 30px;
  }
  .single-event-box .event-image {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  }
  .single-event-box .event-image .image {
  background-image: unset;
  height: auto;
  }
  .single-event-box .event-image .image img {
  display: inline-block;
  }
  .single-event-box .event-content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
  }
  .single-event-box .event-content .content {
  padding: 30px 25px;
  }
  .single-event-box .event-content .content h3 {
  font-size: 20px;
  }
  .single-event-box .event-content .content ul li {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 15px;
  }
  .single-event-box .event-content .content ul li:last-child {
  margin-bottom: 0;
  }
  .single-event-box:last-child {
  margin-bottom: 0;
  }
}

/*================================
Youtube Embed
===================================*/

.gallery-carousel .owl-dots,
.gallery-video-carousel .owl-dots,
.home-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.gallery-carousel .owl-dot,
.gallery-video-carousel .owl-dot,
.home-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    border: 1px solid var(--primary);
    border-radius: 10px;
    transition: .5s
}

.gallery-carousel .owl-dot.active,
.gallery-video-carousel .owl-dot.active,
.home-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary)
}

.boxed-btn3-blue-product {
    display: inline-block;
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    border: 1px solid transparent;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    color: #fff !important;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    cursor: pointer;
    background: #0071bd
}

.gallery-overlay {
    opacity: 0;
    transition: .2s ease-in-out
}

.yt-button {
    background: red;
    border-radius: 50%/10%;
    color: #fff;
    font-size: 18px;
    height: 2.7em;
    margin: 20px auto;
    padding: 0;
    position: relative;
    text-align: center;
    text-indent: .1em;
    transition: 150ms ease-out;
    width: 3.6em
    
    /* background-image:url(https://user-images.githubusercontent.com/943942/103335891-609fd680-4ac6-11eb-85e5-c31dab43b710.png);
    background-repeat: no-repeat;
    background-size: 80px;
    background-position: center; */
}

.yt-button:hover {
   background: maroon
}

.yt-button::before {
    background: inherit;
    border-radius: 5%/50%;
    bottom: 9%;
    content: "";
    left: -5%;
    position: absolute;
    right: -5%;
    top: 9%
}

.yt-button::after {
    border-style: solid;
    border-width: 1em 0 1em 1.732em;
    border-color: transparent transparent transparent rgba(255, 255, 255, .75);
    content: ' ';
    font-size: 12px;
    height: 0;
    margin: -1em 0 0 -.75em;
    top: 50%;
    position: absolute;
    width: 0
}

/*** Youtube Video start ***/
@media only screen and (max-width: 767px){
    .video {
        /*padding-right: 25px; */
        padding-bottom: 25px;
    }
    
    .img-welcome-kcl{
        width: 150px; 
        height:auto;
    }
    
    .btn-play {
        transform: translate(355%, 50%);
    }
    
    .btn-play span {
        top: 120%;
        left: 240%;
    }
}

@media (min-width: 780px) and (max-width: 1280px){
    .video {
        padding-right: 30px; 
        padding-bottom: 30px;
    }
    
    .img-welcome-kcl{
        width: 250px; 
        height:auto;
    }
    
    .btn-play {
        transform: translate(230%, 100%);
    }
    
    .btn-play span {
        top: 120%;
        left: 255%;
    }
}

@media only screen and (min-width: 1290px){
    .video {
        padding-right: 30px; 
        padding-bottom: 30px;
    }
    
    .img-welcome-kcl{
        width: 250px; 
        height:auto;
    }
    
    .btn-play {
        transform: translate(290%, 135%);
    }
    
    .btn-play span {
        top: 120%;
        left: 255%;
    }
}

.video {
    position: relative;
    border-radius: 10px;
}

.btn-play {
    position: absolute;
    z-index: 3;
    margin-left: -35px;
    box-sizing: content-box;
    display: flex;
    width: 30px;
    height: 40px;
    border-radius: 50%;

}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 270%;
    top: 150%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 270%;
    top: 150%;
    transform: translate(-50%, -50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #145573bf;
    border-radius: 50%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: absolute;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.contact-info::before {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  background: rgb(243, 184, 21);
  background: linear-gradient(to left, rgb(169 208 94) 0%, rgb(255, 255, 255, 0) 100%);
}
.contact-info::after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  bottom: 0px;
  border-top: 25px solid transparent;
  border-right: 25px solid rgb(29,142,90);
  border-bottom: 25px solid transparent;
}
.contact-info{
  position:relative;
  padding: 14px 0px;
  padding-right:80px;
}
/*--------------------------------------------------------------
  # Welcome Text
  --------------------------------------------------------------*/

.welcome .heading {
  text-align: center;
  width: 60%;
  margin: auto;
  padding-bottom: 50px;
}
.welcome .heading p {
  color: #444;
  padding-top: 24px;
  font-family: var(--common-font);
  text-transform: uppercase;
}
.welcome .heading h2 {
  font-family: var(--common-font);
}
.welcome .islamic-history p {
  padding-bottom: 10px;
  font-size: 18px;
}
.welcome .btn {
  text-transform: capitalize;
  border-radius: 50px;
  color: #000 !important;
  line-height: 16px;
  overflow: hidden;
  padding: 20px 50px;
  position: relative;
  font-weight: 700;
  text-align: center;
  white-space: pre;
  z-index: 1;
  border: 0;
  background-color: var(--theme-colour);
  padding: 20px 43px;
  border-radius: 55px;
  color: #000;
  font-weight: bold;
}
.islamic-history a.btn {
  background-color: transparent;
  border: 3px solid var(--theme-colour);
  margin-top: 30px;
}
.islamic-history a.btn::after {
  background-color: var(--theme-colour);
}
.islamic-history .btn:after {
  background-color: #1c1e211f;
  border-radius: 50%;
  content: '';
  height: 167px;
  min-width: 167px;
  position: absolute;
  top: 100%;
  transition: transform .7s cubic-bezier(.66, .00, .34, 1.00);
  width: 100%;
  z-index: -1;
  left: 0;
}
.real-history-book.two {
  margin-top: 0px;
  position: relative;
}
.real-history-book.two:before {
  z-index: -1;
  left: -77%;
  content: "";
  position: absolute;
  background-image: url(../img/background-history.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  mix-blend-mode: difference;
  bottom: 11%;
}
.hoverimg figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.real-history-book.two img {
  border-radius: 0;
  border-top-left-radius: 250px;
  border-top-right-radius: 250px;
}
.hoverimg:hover figure::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}
.islamic-history .btn:hover:after {
  transform: scale(2.47) translateY(0);
  top: 100%;
}
.islamic-history .btn:hover {
  color:#fff !important;
}
@-webkit-keyframes shine {
  100% {
      left: 125%;
  }
}
@keyframes shine {
  100% {
      left: 125%;
  }
}
/*--------------------------------------------------------------
  # Keunggulan
  --------------------------------------------------------------*/

.pillars-section, .pillars-section-s2 {
    background: url(../img/bg.png);
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-bottom: 90px;
}

.pillars-section::before, .pillars-section-s2::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #F6F6F6;
  z-index: -11;
  opacity: 0.7;
}

.service-card {
  margin: 0 5px;
  margin-bottom: 40px;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 12, 55, 0.1);
  padding: 40px;
  padding-bottom: 35px;
  position: relative;
  z-index: 1;
}
.service-card .top-number {
  position: absolute;
  right: 30px;
  top: 25px;
}
.service-card .top-number span {
  font-size: 60px;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #E8E8E8;
  color: transparent;
}
.service-card .icon {
  width: 90px;
  height: 90px;
  background: #f0f7e3;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-card .text h2 {
  color: #1A1729;
  font-size: 25px;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 2px;
}
.service-card .text p {
  color: #625F71;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
.service-card .text a {
  color: #DB9E30;
  font-size: 18px;
  font-weight: 700;
  line-height: 35px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1399px){
  .service-card {
    margin: 0;
    margin-bottom: 30px;
    padding: 25px 20px;
  }
  .service-card .text h2 {
    font-size: 24px;
  }
  .service-card .text p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
  # Galeri
  --------------------------------------------------------------*/
  .border-primary {
    border-color: #068a50 !important;
}
/*--------------------------------------------------------------
  # Testimoni
  --------------------------------------------------------------*/
  .section-heading-four {
    display: block;
    position: relative;
    z-index: 999;
    padding: 0;
    margin: 0 0 56px;
    text-align: center;
  }
  .section-heading-four h2 {
    position: relative;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    padding: 0 0 28px;
    display: block;
  }
  .section-heading-four h2:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: url(../../../images/dot.png) no-repeat;
    background-position: center;
  }

.section-heading-four p{
 color:#fff;
}
.section-heading-four p {
  margin: 0 auto;
  padding: 0;
  display: block;
  width: 70%;
}
.testimonial-area {
  position: relative;
  background: url(../img/bg2.jpg);
  padding: 100px 0;
}
.bg-img {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.testimonial-area:after {
  background: rgba(0, 0, 0, 0.8);
}

.af:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.testimonial-area:after {
  background: rgba(0, 0, 0, 0.8);
}
.testimonial-area .testimonial-slider {
  z-index: 999;
}
.testimonial-area .testimonial-list {
  position: relative;
  z-index: 999;
  display: block;
  width: 100%;
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  text-align: center;
  padding: 100px;
  padding-bottom: 25px;
}
.testimonial-area .testimonial-list:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  width: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.testimonial-area .testimonial-list:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 8px;
  width: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.testimonial-area .testimonial-list blockquote {
  font-size: 24px;
  font-style: italic;
  color: #fff;
  margin: 0 0 0;
  line-height: 35px;
}
.testimonial-area .testimonial-list blockquote:after {
  content: "\f10e";
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  color: #a6ce59;
  font-size: 50px;
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.testimonial-area .testimonial-list a {
  color: #ABCD07;
}
.testimonial-area .testimonial-list a:hover {
  color: #009146;
}

/*--------------------------------------------------------------
  # Divisi
  --------------------------------------------------------------*/
.logos {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style:none;
  gap: 15px;
  flex-wrap: wrap;
}
.logos-heading {
  margin-top: 120px;
  text-align: center;
}
.logos-heading h3 {
  font-size: 40px;
  padding-bottom: 50px;
  font-family: var(--common-font);
}
.logos-heading h3 span {
  display: inline-block;
  border-bottom: 5px solid var(--theme-colour);
}
.logos-heading .logos li a{
  font-weight: 600;
  text-transform: uppercase;
  transition: .4s ease-in-out;
  border: 1px solid #ddd;
  padding: 15px 30px;
  background-color: #fff;
  border-radius: 51px;
  margin-right: 20px;
  color:#068A50;
  display: block;
  min-width: 280px;
}
.logos li a:hover {
  box-shadow: 9px 10px 35px 0px rgba(0,0,0,0.14);
  -webkit-box-shadow: 9px 10px 35px 0px rgba(0,0,0,0.14);
  -moz-box-shadow: 9px 10px 35px 0px rgba(0, 0, 0, 0.14);
}

/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
  .page-title {
    position: relative;
    text-align: center;
    background-size: cover;
    padding: 150px 0px 150px;
  }
  .auto-container {
    position: static;
    max-width: 1260px;
    padding: 0px 15px;
    margin: 0 auto;
  }
  .page-title h2 {
    color: #fff;
    text-transform: capitalize;
  }
  .page-title .bread-crumb {
    list-style: none;
    padding: 0px;
    margin: 0px;
    position: relative;
    display: inline-block;
    margin-top: 15px;
  }
  .page-title .bread-crumb li {
    position: relative;
    font-weight: 400;
    display: inline-block;
    font-size: 16px;
    text-transform: capitalize;
    margin-right: 20px;
    color: rgba(#fff, 1);
  }
  .page-title .bread-crumb li:before {
    position: absolute;
    right: -15px;
    top: 2px;
    content: "-";
    line-height: 1em;
    color: #fff;
  }
  .page-title .bread-crumb li a {
    color: rgba(#fff, 1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 70%);
    content: "";
    z-index: 2;
  }
  .z-index-3{
    z-index:3;
  }

.page-title .bread-crumb li:last-child {
    padding-right: 0;
    margin-right: 0;
    color:#ABCD07;
}
.page-title .bread-crumb li:last-child:before{
	display: none;
}
/*--------------------------------------------------------------
  # Profil
  --------------------------------------------------------------*/
.gray-bg2 {
    background-color: #f6f6f6;
}
.gap {
    float: left;
    padding: 100px 0;
    position: relative;
    width: 100%;
}
.msn-wrap {
  float: left;
  width: 100%;
}
.msn-thmb-wrap {
  float: left;
  width: 100%;
  /* min-height: 455px;
  position: relative; */
}
.msn-thmb-wrap > .wrap-image {
  -webkit-box-shadow: 0 0 20px rgba(0,0,0,.15);
  -ms-box-shadow: 0 0 20px rgba(0, 0, 0, .15);
  -o-box-shadow: 0 0 20px rgba(0, 0, 0, .15);
  box-shadow: 0 0 20px rgba(0,0,0,.15);
  /* position: absolute; */
  border: 10px solid #fff;
  background: #e4e4e4;
  padding: 5px 10px;
  transition: all .25s linear;
}
.msn-wrap img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
.msn-desc {
  float: left;
  width: 100%;
}
.msn-desc > h3 {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 12px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
}
.msn-desc > h3:before {
  height: 3px;
  width: 150px;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  transition: all .25s linear;
}
.sec-title-inner:before, .event-desc > h4:before, .msn-desc > h3:before {
  background-image: linear-gradient(91deg, rgb(6 138 80) 0%, rgba(80, 125, 179, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2a486c', endColorstr='#507db3',GradientType=1 );
}
.msn-desc > h3 + p {
  margin-top: 25px;
}
.msn-desc > p {
  margin-bottom: 0;
  line-height: 24px;
}

@media (max-width: 770px){
  .msn-thmb-wrap {
    margin-bottom: 50px;
  }

}

/*--------------------------------------------------------------
  # Responsive
  --------------------------------------------------------------*/
.navbar .dropdown .dropdown ul a {
    padding: 5px 20px;
    font-weight: 400;
    font-size:14px;
}
.section-padding {
    padding: 120px 0;
}
.shareku{
  overflow: hidden;
  background-color: rgba(82, 86, 94, 0.06);
  padding: 20px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.shareku p {
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.shareku:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--primary);
  margin-top: 20px;
  margin-bottom: 20px;
}
.ratio-1x1 {
  --bs-aspect-ratio: 47%;
}
.ratio-90 {
  --bs-aspect-ratio: 90%;
}
.text-primary {
  color: #049452 !important;
}
.line-clamp-1, .line-clamp-2, .line-clamp-3, .line-clamp-4 {
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
}
.line-clamp-1 {
  -webkit-line-clamp: 1;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
}
.line-clamp-4 {
  -webkit-line-clamp: 4;
}
.bg-dark {
  background-color: #222 !important;
}
.wdgt-box > h4:before {
  content: "";
  position: absolute;
  left: 0;
  width: 150px;
  height: 3px;
  bottom: 0;
  transition: all .25s linear;
}
.wdgt-box > h4:before {
  background-image: linear-gradient(90deg, rgb(7 138 79) 0%, rgba(208, 210, 216, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d1ad3c', endColorstr='#d0d2d8',GradientType=1 );
}
.wdgt-box > h4 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  color:#fff;
}

.logos {
    padding: 0;
}

.section-padding {
    padding: 60px 0;
}
/*** 
====================================================================
    News Section
====================================================================
***/
.news-section {
  overflow: hidden;
  position: relative;
}

.news-block {
  margin-bottom: 30px;
  position: relative;
}
.news-block .inner-box {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.news-block .inner-box:hover .image-box .image a:after {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.news-block .inner-box:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.news-block .inner-box:hover .read-more {
  width: 100%;
  left: 0%;
  opacity: 1;
}
.news-block .image-box {
  position: relative;
}
.news-block .image-box .image {
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  height: 196px;
}
.news-block .image-box .image img {
  border-radius: 10px 10px 0 0;
  display: block;
  width: 100%;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  background:#fff;
}
.news-block .image-box .image a:after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  right: 51%;
  top: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.wp-pagenavi {
    width: 100%;
    /* clear: both; */
    font-size: initial;
    padding: 5px 0;
    text-align: center;
    margin: 5px auto 80px auto;
    line-height: 45px;
    float:  left;
}
.pages {
    color: #000;
    width: auto;
    height: auto;
    margin: 0 3px;
    border: 1px solid #e9e9e9;
    padding: 8px;
    background-color: #FFF;
}
.current-pag {
    color: #333;
    width: auto;
    height: auto;
    margin: 0;
    border: 1px solid #e9e9e9;
    padding: 8px;
    margin-right: 3px;
}
.current-pag {
    color: #FFFFFF;
    background-color: #000000;
}
.wp-pagenavi a:hover {
    border: 1px solid #e9e9e9;
    color: #FFF;
    background-color: #000000;
}
.wp-pagenavi a {
    color: #000;
    text-decoration: none;
    border: 1px solid #e9e9e9;
    padding: 8px;
    background-color: #FFF;
    margin: 5px 0;
}
.news-block .image-box .date {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--main-color);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 700;
  height: 60px;
  letter-spacing: 0.1em;
  line-height: 16px;
  position: absolute;
  right: 20px;
  top: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 60px;
  z-index: 1;
}
.news-block .image-box .date span.month {
  font-size: 12px;
  font-weight: 400;
}
.news-block .image-box .date b {
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.news-block .image-box .date:before {
  border-top: 10px solid transparent;
  border-right: 10px solid var(--second-color);
  content: "";
  left: -10px;
  position: absolute;
  top: 0;
}
.news-block .image-box .date:after {
  border-top: 10px solid transparent;
  border-left: 10px solid var(--second-color);
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
}
.news-block .lower-content {
  border-radius: 0 0 10px 10px;
  padding: 25px 40px 35px;
  position: relative;
  background-color:#fff;
}
.news-block .post-info {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  margin-bottom:10px;
}
.news-block h4 {
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.5px;
    font-size: 16px;
}
.news-block .post-info li {
  color: #767676;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  margin-right: 14px;
  position: relative;
}
.news-block .post-info li i {
  color: var(--main-color);
  font-size: 14px;
  margin-right: 5px;
}
.news-block .title {
  margin-bottom: 0;
  display: block;
  position: relative;
}
.news-block .title a {
  display: inline-block;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: var(--text-color);
}
.news-block .title a:hover {
  color: var(--main-color);
}
.news-block .read-more {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--second-color);
  border-radius: 0 0 10px 10px;
  bottom: -20px;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  left: 50%;
  line-height: 20px;
  opacity: 0;
  padding: 10px 40px;
  position: absolute;
  width: 0%;
  white-space: nowrap;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
  color:#fff;
}
.testimonialku blockquote {
    background: #CCC;
    border-radius: 5px;
    border: 0;
    color: #fff;
    margin: 0;
    padding: 40px 64px 40px 72px;
    padding: 2.5rem 4rem 2.5rem 4.5rem;
    position: relative;
    text-align:center;
}
.testimonial.testimonial-style-2 blockquote {
    background: transparent !important;
    border-radius: 0;
    padding: 22px 20px;
}

.testimonialku  blockquote p{
    font-family: 'Playfair Display', serif;
}
.testimonial.testimonial-with-quotes blockquote p {
    padding: 0 40px;
    word-break: break-word;
}
.section-heading-four p {
    width: 100%;
}


.testimonialku .testimonial.testimonial-with-quotes blockquote:before {
    color: #01A257;
    display: block !important;
    left: 10px;
    top: 0;
    content: "“";
    font-size: 80px;
    font-family: 'Playfair Display', serif;
    font-style: normal;
    line-height: 1;
    position: absolute;
}
.testimonial .testimonial-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 12px 0 0 0;
    
}
.testimonial.testimonial-style-2 .testimonial-author {
    padding: 0;
    margin: 6px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.testimonial .testimonial-author p {
    color: #999;
    text-align: left;
    line-height: 1.2;
    margin-left: 9.6px;
    margin-left: 0.6rem;
    font-family: 'Playfair Display', serif;
}
.testimonial.testimonial-style-2 .testimonial-author p {
    text-align: center;
    padding: 0;
    margin: 0;
}
.testimonial .testimonial-author strong {
    color: #fff;
    display: block;
    margin-bottom: 2px;
    font-size: 16px;
    font-size: 1rem;
}
.testimonial .testimonial-author span {
    color: #666;
    display: block;
    font-size: 12.8px;
    font-size: 0.8rem;
    font-weight: 600;
}
@media(max-width:768px){
  .carousel-home {
    height: 87vh;
    overflow: hidden;
  }
  .blog-two img, .blog-two figure, .real-history-book img, .real-history-book figure {
    width: 100%;
}
.blog-two img, .blog-two figure, .real-history-book img, .real-history-book figure {
    width: 100%;
}

.blog-two img, .blog-two figure, .real-history-book img, .real-history-book figure {
    width: 100%;
}
.testimonial-area .testimonial-list blockquote {
    font-size: 14px;
    font-style: italic;
    color: #fff;
    margin: 0 0 0;
    line-height: 35px;
}
.testimonial-area .testimonial-list {
    padding: 30px 20px 20px 20px;
}
.testimonial-area .testimonial-list blockquote:after {
    top: 5px;
    font-size: 24px;
}

.section-heading-four p {
    margin: 0 auto;
    padding: 0;
    display: block;
    width: 90%;
}

.logos-heading h3 {
    font-size: 30px;
}
.logos-heading .logos li a {
    padding: 7px 15px;
    margin-right: 0;

    min-width: 165px;
}
.page-title {
    position: relative;
    text-align: center;
    background-size: cover;
    padding: 60px 0px 60px;
}
.page-title h2 {
    color: #fff;
    text-transform: capitalize;
    font-size: 18px;
}


.contact-info {
    padding: 7px 0px;
}
.contact-info::before {
    background: transparent;
}


.contact-info::after {
display:none;
}
.real-history-book img  {
    width: 85%;
    margin: 0 auto;
    display: block;
}
}
.welcome .heading {
    width: 100%;
}

}
