/* css lingkaran */
.lingkaran-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.lingkaran {
    width: 100%;
    height: 100%;
    border: 5px dashed #3498db;
    border-radius: 50%;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.teks-tengah {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #3498db;
    font-weight: bold;
    text-align: center;
}

.teks-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@keyframes muncul {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.teks {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #3498db;
    transform-origin: 50% 0;
}

.teks:nth-child(1) { transform: rotate(0deg) translateY(-140px) rotate(0deg); }
.teks:nth-child(2) { transform: rotate(51.43deg) translateY(-140px) rotate(-51.43deg); }
.teks:nth-child(3) { transform: rotate(102.86deg) translateY(-140px) rotate(-102.86deg); }
.teks:nth-child(4) { transform: rotate(154.29deg) translateY(-140px) rotate(-154.29deg); }
.teks:nth-child(5) { transform: rotate(205.71deg) translateY(-140px) rotate(-205.71deg); }
.teks:nth-child(6) { transform: rotate(257.14deg) translateY(-140px) rotate(-257.14deg); }
.teks:nth-child(7) { transform: rotate(308.57deg) translateY(-140px) rotate(-308.57deg); }
/********** Template CSS **********/
:root {
    --primary: #415ecc;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 120px;
    bottom: 50px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(#FF6922) !important;
}

.team-item:hover .bg-primary {
    background: var(#FF6922) !important;
}

.team-item:hover .bg-primary i {
    color: var(#FF6922) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.atas {
    /* background-image: url(../IMG/bg/gbs\ \(1\).jpg); */
    background-color: #0E2E50;
    opacity: 0.68;
  }

/* .detailbrt {
  background-image: url(../IMG/bg/gbs\ \(1\).jpg);
  background-color: #0e0e0e;
  opacity: 0.68;
} */

/* line 78, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
.event_details_area .single_event {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 90px;
  }
  
  @media (max-width: 767px) {
    /* line 78, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
    .event_details_area .single_event {
      display: block !important;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    /* line 78, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
    .event_details_area .single_event {
      display: block !important;
    }
  }
  
  /* line 88, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
  .event_details_area .single_event:last-child {
    margin-bottom: 0;
  }
  
  /* line 91, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
  .event_details_area .single_event .thumb {
    position: relative;
  }
  
  /* line 93, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
  .event_details_area .single_event .thumb img {
    width: 458px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }
  
  @media (max-width: 767px) {
    /* line 93, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
    .event_details_area .single_event .thumb img {
      width: 100%;
    }
  }
  
  /* line 100, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
  .event_details_area .single_event .thumb .date {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #317bd6;
    padding: 25px 35px;
  }
  
  /* line 106, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
  .event_details_area .single_event .thumb .date h4 {
    font-size: 40px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1;
    font-family: "Rockwell", cursive;
  }
  
  /* line 114, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
  .event_details_area .single_event .thumb .date span {
    display: inline-block;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
  }
  
  /* line 122, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
  .event_details_area .single_event .event_details_info {
    padding-left: 30px;
  }
  
  @media (max-width: 767px) {
    /* line 122, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
    .event_details_area .single_event .event_details_info {
      padding-left: 0;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    /* line 122, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
    .event_details_area .single_event .event_details_info {
      padding-left: 0;
    }
  }
  
  @media (max-width: 767px) {
    /* line 130, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
    .event_details_area .single_event .event_details_info .event_info {
      padding: 15px;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    /* line 130, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
    .event_details_area .single_event .event_details_info .event_info {
      padding: 25px 0 0 0;
    }
  }
  
  /* line 137, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
  .event_details_area .single_event .event_details_info .event_info h4 {
    font-size: 30px;
    font-family: "Rockwell", cursive;
    color: #234262;
    margin-bottom: 15px;
  }
  
  @media (max-width: 767px) {
    /* line 137, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
    .event_details_area .single_event .event_details_info .event_info h4 {
      font-size: 20px;
      margin-bottom: 20px;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    /* line 137, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
    .event_details_area .single_event .event_details_info .event_info h4 {
      font-size: 25px;
    }
  }
  
  /* line 150, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
  .event_details_area .single_event .event_details_info .event_info p {
    color: #7d84ab;
    font-size: 16px;
    border-bottom: 1px solid #eaeaea;
    /* margin-bottom: 52px; */
    padding-bottom: 31px;
  }
  
  @media (max-width: 767px) {
    /* line 150, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
    .event_details_area .single_event .event_details_info .event_info p {
      margin-bottom: 30px;
      padding-bottom: 20px;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    /* line 150, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
    .event_details_area .single_event .event_details_info .event_info p {
      margin-bottom: 30px;
      padding-bottom: 20px;
    }
  }
  
  /* line 164, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
  .event_details_area .single_event .event_details_info .event_info p span {
    margin-right: 44px;
  }
  
  @media (max-width: 767px) {
    /* line 164, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
    .event_details_area .single_event .event_details_info .event_info p span {
      margin-right: 20px;
    }
  }
  
  /* line 169, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
  .event_details_area .single_event .event_details_info .event_info p span i {
    margin-right: 4px;
  }
  
  /* line 175, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
  .event_details_area .single_event .event_details_info .event_info_text {
    margin-bottom: 54px;
  }
  
  @media (max-width: 767px) {
    /* line 175, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_event.scss */
    .event_details_area .single_event .event_details_info .event_info_text {
      margin-bottom: 20px;
    }
  }

  .date {
    background: #0b31db;
    padding: 45px;
  }
  
  .agenda {
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
  }
  
  .agenda .date {
    background: #0b31db;
    padding: 45px 70px;
  }
  
  .tanggal-agenda {
    font-size: 58px;
    font-family: "Rockwell", cursive;
    color: #fff;
    line-height: 1;
    margin-bottom: 7px;
    display: block;
  }
  
  .bulan-angenda {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1;
  }
  
  .agenda-info {
    padding-left: 60px;
  }
  
  .agenda-info h4 {
    font-size: 30px;
    font-family: "Rockwell", cursive;
    color: #234262;
    margin-bottom: 15px;
  }
  
  .agenda-info p {
    color: #7d84ab;
    font-size: 16px;
  }

  .gallery {
    max-width: 1200px;
    margin: 0 auto;
    column-count: 4;
    font-family: arial;
  }

  .galler {
    max-width: 1200px;
    margin: 0 auto;
    column-count: 3;
    font-family: arial;
  }

  .gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
  }
  .gallery-item figure {
    margin: 0;
    position: relative;
  }
  .gallery-item figcaption {
    font-style: italic;
    padding: 8px;
    position: absolute;
    background: #ee822c9e;
    width: 100%;
    box-sizing: border-box;
    bottom: 3px;
    color: #fff;
    height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 0 0 14px 14px;
  }
  .gallery-item img {
    width: 100%;
    border-radius: 14px;
  }
  .gallery-item p {
    margin: 0;
    padding: 8px;
  }
  
  @media screen and (max-width: 500px) {
    .gallery {
      column-count: 1;
    }
  }
  @media screen and (min-width: 501px) and (max-width: 700px) {
    .gallery {
      column-count: 2;
    }
  }
  @media screen and (min-width: 701px) and (max-width: 900px) {
    .gallery {
      column-count: 3;
    }
  }

  
.site-hero {
  background-size: cover;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  position: relative; }
  .site-hero .heading {
    font-family: "Playfair Display", times, serif;
    font-weight: bold; }
  .site-hero .scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #fff; }
  .site-hero.overlay:before {
    background: rgba(0, 0, 0, 0.45);
    content: "";
    position: absolute;
    height: 100vh;
    min-height: 700px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; }
  .site-hero.inner-page {
    height: 50vh;
    min-height: 700px; }
    .site-hero.inner-page.overlay:before {
      height: 50vh;
      min-height: 700px; }

.site-hero-inner {
  height: 100vh;
  min-height: 700px;
  background-color: #0e0e0e;
  opacity: 0.68;
}
  .site-hero-inner .heading {
    font-size: 80px;
    font-family: "Playfair Display", times, serif;
    color: #fff;
    line-height: 1;
    font-weight: bold; }
    @media (max-width: 991.98px) {
      .site-hero-inner .heading {
        font-size: 40px; } }
  .site-hero-inner .sub-heading {
    font-size: 30px;
    font-weight: 200;
    color: #fff;
    line-height: 1.5; }
    @media (max-width: 991.98px) {
      .site-hero-inner .sub-heading {
        font-size: 18px; } }

.inner-page .site-hero-inner {
  height: 50vh;
  min-height: 700px; }

.page-inside .site-hero-inner, .page-inside {
  height: 70vh;
  min-height: 500px; }

  
.custom-breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0; }
  .custom-breadcrumbs li {
    display: inline-block;
    color: #fff;
    margin: 0 4px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .1em;
    font-weight: bold; }
    .custom-breadcrumbs li a {
      font-weight: normal; }
      .custom-breadcrumbs li a:hover {
        color: #fff; }

.oya{
  background-repeat: no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* side berita */

.blog_part .blog_right_sidebar .widget_title {
  font-size: 20px;
  margin-bottom: 40px;
  font-style: inherit !important;
}

.blog_right_sidebar .single_sidebar_widget {
  background: rgba(224, 223, 223, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}

/* line 664, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .single_sidebar_widget .btn_1 {
  margin-top: 0px;
}

.blog_right_sidebar .search_widget .form-control {
  height: 50px;
  border-color: #f0e9ff;
  font-size: 13px;
  color: #999999;
  padding-left: 20px;
  border-radius: 0;
  border-right: 0;
}

/* line 681, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .search_widget .form-control::placeholder {
  color: #999999;
}

/* line 685, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .search_widget .form-control:focus {
  border-color: #f0e9ff;
  outline: 0;
  box-shadow: none;
}

/* line 694, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .search_widget .input-group button {
  background: #fff;
  border-left: 0;
  border: 1px solid #f0e9ff;
  padding: 4px 15px;
  border-left: 0;
}

/* line 701, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .search_widget .input-group button i,
.blog_right_sidebar .search_widget .input-group button span {
  font-size: 14px;
  color: #999999;
}

.blog_part .blog_right_sidebar .widget_title {
  font-size: 20px;
  margin-bottom: 40px;
  font-style: inherit !important;
}
.form-contact .form-group {
  margin-bottom: 30px;
}

.input-group-icon {
  position: relative;
}

/* line 530, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_elements.scss */
.input-group-icon .icon {
  position: absolute;
  left: 20px;
  top: 0;
  line-height: 40px;
  z-index: 3;
}

/* line 535, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_elements.scss */
.input-group-icon .icon i {
  color: #797979;
}

/* line 540, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_elements.scss */
.input-group-icon .single-input {
  padding-left: 45px;
}

.blog_right_sidebar .search_widget .form-control {
  height: 50px;
  border-color: #f0e9ff;
  font-size: 13px;
  color: #999999;
  padding-left: 20px;
  border-radius: 0;
  border-right: 0;
}

/* line 681, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .search_widget .form-control::placeholder {
  color: #999999;
}

/* line 685, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .search_widget .form-control:focus {
  border-color: #f0e9ff;
  outline: 0;
  box-shadow: none;
}

.blog_right_sidebar .post_category_widget .cat-list li {
  border-bottom: 1px solid #f0e9ff;
  transition: all 0.3s ease 0s;
  padding-bottom: 12px;
}

/* line 760, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .post_category_widget .cat-list li:last-child {
  border-bottom: 0;
}

/* line 764, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .post_category_widget .cat-list li a {
  font-size: 14px;
  line-height: 20px;
  color: #888888;
}

/* line 769, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .post_category_widget .cat-list li a p {
  margin-bottom: 0px;
}

/* line 774, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .post_category_widget .cat-list li + li {
  padding-top: 15px;
}

.blog_right_sidebar .post_category_widget .cat-list li {
  border-bottom: 1px solid #f0e9ff;
  transition: all 0.3s ease 0s;
  padding-bottom: 12px;
}

/* line 760, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .post_category_widget .cat-list li:last-child {
  border-bottom: 0;
}

/* line 764, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .post_category_widget .cat-list li a {
  font-size: 14px;
  line-height: 20px;
  color: #888888;
}

/* line 769, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .post_category_widget .cat-list li a p {
  margin-bottom: 0px;
}

/* line 774, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .post_category_widget .cat-list li + li {
  padding-top: 15px;
}

.blog_right_sidebar .popular_post_widget .post_item .media-body {
  justify-content: center;
  align-self: center;
  padding-left: 20px;
}

/* line 796, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .popular_post_widget .post_item .media-body h3 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 6px;
  transition: all 0.3s linear;
}

/* line 807, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .popular_post_widget .post_item .media-body a:hover {
  color: #fff;
}

/* line 813, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .popular_post_widget .post_item .media-body p {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 0px;
}

/* line 820, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .popular_post_widget .post_item + .post_item {
  margin-top: 20px;
}

.blog_right_sidebar .popular_post_widget .post_item .media-body {
  justify-content: center;
  align-self: center;
  padding-left: 20px;
}

/* line 796, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .popular_post_widget .post_item .media-body h3 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 6px;
  transition: all 0.3s linear;
}

/* line 807, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .popular_post_widget .post_item .media-body a:hover {
  color: #fff;
}

/* line 813, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .popular_post_widget .post_item .media-body p {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 0px;
}

/* line 820, ../../Arafath/CL/january 2020/243.Education/HTML/scss/_blog.scss */
.blog_right_sidebar .popular_post_widget .post_item + .post_item {
  margin-top: 20px;
}

.blog_right_sidebar .widget_title::after {
  content: "";
  display: block;
  padding-top: 15px;
  border-bottom: 1px solid #0e0e0e;
}

.blog_right_sidebar .popular_post_widget .post_item .media-body {
  justify-content: center;
  align-self: center;
  padding-left: 20px;
}
.media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.blog_right_sidebar .single_sidebar_widget {
  background: rgba(224, 223, 223, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 15px;
}

.blog_right_sidebar .popular_post_widget .post_item .media-body h3 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 6px;
  transition: all 0.3s linear;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body p {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 0px;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f0f4f8;
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}


