/*
 * Wunik
 * This is public page on JogjaCamp Content Management System
 * PT JC INDONESIA - https://jogjacamp.com
 * Copyright (c) 2020
 *
 */

@font-face {
  font-family: "Plain";
  src: url("../fonts/Plain-Regular.woff2") format("woff2"),
    url("../fonts/Plain-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Plain";
  src: url("../fonts/Plain-Light.woff2") format("woff2"),
    url("../fonts/Plain-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Plain";
  src: url("../fonts/Plain-Bold.woff2") format("woff2"),
    url("../fonts/Plain-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

:root {
  --primary-color: #f13a11;
  --white-color: #ffffff;
  --dark-color: #171819;
  --about-bg-color: #f9f9f9;
  --gray-color: #f1f0f0;
  --dark-gray-color: #dcdcdc;
  --link-color: #404040;
  --p-color: #666262;
  --base-font-family: "Plain", sans-serif;
  --font-weight-bold: bold;
  --font-weight-normal: normal;
  --font-weight-light: 300;
  --font-weight-thin: 100;
  --h1-font-size: 48px;
  --h2-font-size: 36px;
  --h3-font-size: 28px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --base-font-size: 16px;
  --menu-font-size: 14px;
  --border-radius-large: 100%;
  --border-radius-small: 2px;
}

body {
  background: var(--white-color);
  font-family: var(--base-font-family);
}

/*---------------------------------------
     TYPOGRAPHY
  -----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-thin);
  line-height: normal;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 20px 0;
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  margin: 0;
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--gray-color);
  font-size: var(--h6-font-size);
  line-height: inherit;
  margin: 0;
}

p {
  color: var(--p-color);
  /*  font-size: var(--p-font-size);*/
  font-weight: var(--font-weight-light);
  line-height: 1.5em;
}

b,
strong {
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
}

.section {
  padding: 7rem 0;
}

.title {
  font-size: 30px;
  line-height: 40px;
}

.img-news-detail {
  width: 100%;
  height: auto;
}

.lh-25 {
  line-height: 25px;
}

/* BUTTON */

.custom-btn {
  background: transparent;
  border-radius: var(--border-radius-small);
  padding: 14px 24px;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.custom-btn:focus {
  box-shadow: none;
}

.custom-btn.bordered:hover,
.custom-btn.bordered:focus,
.custom-btn.bg-color:hover,
.custom-btn.bg-color:focus {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

.bordered {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.bordered:hover,
.bordered:focus {
  border: 1px solid var(--primary-color);
  color: var(--white-color);
  background: var(--primary-color);
}

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

.custom-btn-rev {
  background: transparent;
  border-radius: var(--border-radius-small);
  padding: 14px 24px;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.custom-btn-rev :hover {
  color: var(--primary-color);
}

.custom-btn-rev :focus {
  box-shadow: none;
}

.custom-btn-rev.bordered:hover,
.custom-btn.bordered:focus {
}

.custom-btn-rev.bg-color:hover,
.custom-btn-rev.bg-color:focus {
  background: var(--white-color);
  border-color: transparent;
  color: var(--primary-color);
}

.bordered {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

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

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

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  opacity: 0.9;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white-color);
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(0 123 254 / 0%) !important;
}

/*---------------------------------------
     GENERAL
  -----------------------------------------*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: var(--link-color);
  font-weight: normal;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover,
a:active,
a:focus {
  color: var(--primary-color);
  outline: none;
  text-decoration: none;
}

/* BG OVERLAY */

.bg-overlay {
  background: var(--dark-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.bg-agenda {
  background: var(--gray-color);
}

.bg-inside-agenda {
  background: var(--dark-gray-color);
}

.bg-inside-agenda p {
  font-size: 1.05rem;
  color: inherit;
}

.other-page {
  background: var(--white-color);
}

/*---------------------------------------
     MODAL              
  -----------------------------------------*/

.modal-content {
  padding: 2rem 3rem;
}

.modal-header,
.modal-body,
.modal-footer {
  border: 0;
  padding: 0;
}

.membership-form a {
  color: var(--primary-color);
}

/*---------------------------------------
    FEATURE          
  -----------------------------------------*/

.feature {
  background: var(--dark-color);
  padding: 5rem 0;
}

/*---------------------------------------
     MENU             
  -----------------------------------------*/

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

.dropdown-toggle::after {
  display: none;
}

.text-decoration-none {
  text-decoration: none !important;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--primary-color);
}

/* Font Awesome Icons have variable width. Added fixed width to fix that*/
/*---------------------------------------
     NAV    
  -----------------------------------------*/

.icon-width {
  width: 2rem;
}

.mobile-flex-nav {
  display: flex;
  justify-content: end;
  flex-grow: 1;
}

.toggle-button-nav {
  display: flex;
}

.toggle-button-nav-mobile {
  display: none;
}

@media (max-width: 992px) {
  .toggle-button-nav {
    display: none;
  }

  .toggle-button-nav-mobile {
    display: flex;
  }
}

@media (min-width: 992px) {
  #logo_navbar {
    background-color: var(--primary-color);
    padding: 5px 30px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
    top: -14px;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
  }
}

#toggle-search {
}

#search-form {
  -moz-transition: max-height, 0.5s;
  -o-transition: max-height, 0.5s;
  -webkit-transition: max-height, 0.5s;
  transition: max-height, 0.5s;
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background-color: #e1e4e7;
}

#search-form.open {
  max-height: 60px;
}

#search-form fieldset {
  position: relative;
  margin: 0 60px 0 0;
  padding: 0;
  border: none;
}

#search-form input {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  height: 60px;
}

#search-form input[type="search"] {
  width: 100%;
  padding: 0 5px 0 22px;
  background-color:#e9ecef;
  border: none;
}

#search-form input[type="submit"] {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white-color);
  background: var(--primary-color);
  border: none;
  cursor: pointer;
}

#lang {
  -moz-transition: max-height, 0.5s;
  -o-transition: max-height, 0.5s;
  -webkit-transition: max-height, 0.5s;
  transition: max-height, 0.5s;
  position: absolute;
  top: 60px;
  right: 0px;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0;
}

#lang .list-group-item.active {
  z-index: 2;
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 0;
}

#lang .list-group-item.active a {
  color: var(--white-color);
}

#lang .list-group-item.active a:hover,
a:focus {
  color: var(--white-color);
}

#lang .list-group-item a:hover,
a:focus {
  color: var(--primary-color);
}

#lang.open {
  max-height: 200px;
}

#lang fieldset {
  position: relative;
  margin: 0 60px 0 0;
  padding: 0;
  border: none;
}

#lang .list-group-item.active fieldset a:hover,
a:active,
a:focus {
  color: var(--white-color);
  outline: none;
  text-decoration: none;
}

@media (min-width: 992px) {
  #lang {
    top: 72px;
    right: 15px;
    width: 200px;
    border-radius: 5px;
  }
}

/*---- Lang & Search Mobile ---*/

#search-form-mobile {
  -moz-transition: max-height, 0.5s;
  -o-transition: max-height, 0.5s;
  -webkit-transition: max-height, 0.5s;
  transition: max-height, 0.5s;
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background-color: #e1e4e7;
}

#search-form-mobile.open {
  max-height: 60px;
}

#search-form-mobile fieldset {
  position: relative;
  margin: 0 60px 0 0;
  padding: 0;
  border: none;
}

#search-form-mobile input {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  height: 60px;
}

#search-form-mobile input[type="search"] {
  width: 100%;
  padding: 0 5px 0 22px;
  background-color:#e9ecef;
  border: none;
}

#search-form-mobile input[type="submit"] {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white-color);
  background: var(--primary-color);
  border: none;
  cursor: pointer;
}

#toggle-lang-mobile {
}

#lang-mobile {
  -moz-transition: max-height, 0.5s;
  -o-transition: max-height, 0.5s;
  -webkit-transition: max-height, 0.5s;
  transition: max-height, 0.5s;
  position: absolute;
  top: 85px;
  right: 0px;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0;
}

#lang-mobile .list-group-item.active {
  z-index: 2;
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 0;
}

#lang-mobile .list-group-item.active a {
  color: var(--white-color);
}

#lang-mobile .list-group-item.active a:hover,
a:focus {
  color: var(--white-color);
}

#lang-mobile .list-group-item a:hover,
a:focus {
  color: var(--primary-color);
}

#lang-mobile.open {
  max-height: 200px;
}

#lang-mobile fieldset {
  position: relative;
  margin: 0 60px 0 0;
  padding: 0;
  border: none;
}

#lang-mobile .list-group-item.active fieldset a:hover,
a:active,
a:focus {
  color: var(--white-color);
  outline: none;
  text-decoration: none;
}

/*@media (min-width: 992px) {
    #lang-mobile  {
        top: 66px;
        right: 15px;
        width: 200px;
        border-radius: 5px;
    }
    #toggle-lang-mobile  {
        top: 10px;
    }
    #toggle-search-mobile {
        top: 10px;
    }
}
*/

.dropdown-item {
  white-space: normal !important;
}

@media (min-width: 992px) {
  .dropdown-menu .dropdown-toggle:after {
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
  }
  .dropdown-menu .dropdown-menu {
    margin-left: 0;
    margin-right: 0;
  }
  .dropdown-menu li {
    position: relative;
  }
  .nav-item .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
  }
  .nav-item .submenu-left {
    right: 100%;
    left: auto;
  }
  .dropdown-menu > li:hover {
    background-color: #f1f1f1;
  }
  .dropdown-menu > li:hover > .submenu {
    display: block;
  }
}

@media (max-width: 768px) {
  .dropdown-item.active,
  .dropdown-item:active {
    color: var(--primary-color);
    text-decoration: none;
    background-color: transparent;
  }

  .dropdown-item:focus,
  .dropdown-item:hover {
    color: var(--primary-color);
    text-decoration: none;
    background-color: transparent;
  }

  ul.submenu.dropdown-menu {
    border: 0;
    padding-left: 15px;
  }
}

/*---------------------------------------
     HERO
  -----------------------------------------*/

.hero {
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  vertical-align: middle;
  min-height: 100vh;
  position: relative;
}

/*---------------------------------------
     CLASS
  -----------------------------------------*/

.class-info {
  background: var(--white-color);
  box-shadow: 6px 0 38px rgba(20, 20, 20, 0.1);
  border-radius: 0 0 2px 2px;
  padding: 1rem 2rem;
  position: relative;
}

.class-info img {
  border-radius: 2px 2px 0 0;
}

.class-info strong {
  color: var(--gray-color);
  color: inherit;
}

.class-category {
  background: var(--primary-color);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  display: block;
  position: absolute;
  top: -3rem;
  right: 0rem;
  width: auto;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  font-size: 16px;
  padding: 0px 10px 0px 10px;
  text-transform: uppercase;
}

.class-category:hover,
.class-category:active,
.class-category:focus {
  background: var(--link-color);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
}

.class-title-news {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  margin: 0;
  display: block;
}

.class-title-news:hover,
.class-title-news:active,
.class-title-news:focus {
  color: var(--primary-color);
  letter-spacing: -1px;
  margin: 0;
}

.class-date {
  font-size: 13px;
  padding-top: 10px;
  color: #949494;
}

.class-link {
  color: var(--primary-color);
  outline: none;
  font-weight: var(--font-weight-bold);
  font-size: 15px;
  text-decoration: none;
}

.class-link:hover,
.class-link:active,
.class-link:focus {
  color: var(--link-color);
  outline: none;
  text-decoration: underline;
}

.img-news {
  width: 100%;
  height: auto;
  height: 200px;
  object-fit: cover;
}

/*---------------------------------------
    GALLERY
  -----------------------------------------*/

#gallery {
  background: var(--dark-color);
}

.gallery .img {
  padding: 0.25rem;
  background-color: #252525;
  border: 1px solid #252525;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

/*image Gallery*/

carousel .silent {
  user-select: none;
}

.carousel-image {
  width: 100%;
  object-fit: cover;
}

.modal-body .carousel-control-prev.hide,
.modal-body .carousel-control-next.hide,
.modal-body .carousel-indicators > li:only-child {
  display: none;
}

.modal-body .carousel-control-next,
.modal-body .carousel-control-prev {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  top: calc(50% - 17.5px);
  bottom: auto;
  line-height: 1;
  margin: 0 1.5rem;
}

.modal-body .carousel-control-next-icon,
.modal-body .carousel-control-prev-icon {
  width: 15px;
  height: 15px;
}

.modal-body .carousel-control-next-icon:focus,
.modal-body .carousel-control-prev-icon:focus {
  outline: none;
}

.modal-body .carousel-control-next-icon:after,
.modal-body .carousel-control-prev-icon:after {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  margin-top: -10px;
  z-index: -1;
}

.modal-body .carousel-control-next-icon:after {
  margin-left: -19px;
}

.modal-body .carousel-control-prev-icon:after {
  margin-left: -17px;
}

@media (min-width: 992px) {
  .modal-body .carousel-control-next,
  .modal-body .carousel-control-prev {
    opacity: 0;
  }
  .modal-body .carousel:hover .carousel-control-next,
  .modal-body .carousel:hover .carousel-control-prev {
    opacity: 0;
  }
}

.carousel-multi {
  margin-left: -1rem;
  margin-right: -1rem;
}

.carousel-multi:before,
.carousel-multi:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15px;
  background-color: #fff;
  z-index: 2;
}

.carousel-multi:before {
  left: 0;
}

.carousel-multi:after {
  right: 0;
}

.carousel-multi .carousel-control-next {
  right: -2px;
}

.carousel-multi .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23444' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-multi .carousel-control-prev {
  left: -2px;
}

.carousel-multi .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23444' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-multi .carousel-control-next,
.carousel-multi .carousel-control-prev {
  margin: 0;
  opacity: 1;
  z-index: 3;
}

.carousel-multi .carousel-control-next-icon:after,
.carousel-multi .carousel-control-prev-icon:after {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.07), 2px 2px 3px 0 rgba(0, 0, 0, 0.07);
}

.carousel-multi .carousel-item.active,
.carousel-multi .carousel-item-next,
.carousel-multi .carousel-item-prev {
  display: flex;
}

@media (max-width: 767px) {
  .carousel-multi .carousel-item > div {
    display: none;
  }
  .carousel-multi .carousel-item > div:first-child {
    display: block;
  }
}

@media (min-width: 768px) {
  .carousel-multi .carousel-item-right.active,
  .carousel-multi .carousel-item-next {
    transform: translateX(50%);
  }
  .carousel-multi .carousel-item-left.active,
  .carousel-multi .carousel-item-prev {
    transform: translateX(-50%);
  }
}

@media (min-width: 1200px) {
  .carousel-multi .carousel-item-right.active,
  .carousel-multi .carousel-item-next {
    transform: translateX(33.333%);
  }
  .carousel-multi .carousel-item-left.active,
  .carousel-multi .carousel-item-prev {
    transform: translateX(-33.333%);
  }
}

@media (min-width: 1400px) {
  .carousel-multi .carousel-item-right.active,
  .carousel-multi .carousel-item-next {
    transform: translateX(25%);
  }
  .carousel-multi .carousel-item-left.active,
  .carousel-multi .carousel-item-prev {
    transform: translateX(-25%);
  }
}

@media (min-width: 768px) {
  .carousel-multi .carousel-item-right,
  .carousel-multi .carousel-item-left {
    transform: translateX(0);
  }
}

.carousel-multi.silent .carousel-item {
  display: block;
  margin-right: 0;
}

.carousel-multi.silent .carousel-item > div {
  max-width: 100% !important;
  padding: 0;
  margin-left: 15px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .carousel-multi.silent {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

.carousel-item {
  text-align: center;
}

.carousel-item-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 80px);
}

.carousel-item-container img {
  height: 100vh;
  margin-top: 6px;
  object-fit: contain;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.carousel-item-container video {
  max-width: 100%;
}

video:focus,
button:focus {
  outline: none;
}

.modal-open {
  padding-right: 0 !important;
}

.modal.and.carousel {
  position: fixed;
  user-select: none;
  padding-right: 0 !important;
}

.modal.and.carousel .modal-content {
  border: none;
  background-color: transparent;
}

.modal.and.carousel .modal-title,
.modal.and.carousel .modal-caption {
  color: #fff;
  text-align: center;
  left: 0;
  right: 0;
  position: absolute;
  padding-right: 20px;
  padding-left: 20px;
  z-index: 1;
  -webkit-transition: none;
  transition: none;
}

.modal.and.carousel .modal-title {
  font-size: 17px;
  font-weight: 700;
  top: 35px;
}

.modal.and.carousel .modal-caption {
  bottom: 35px;
}

.modal-backdrop.show {
  opacity: 0.8;
}

.modal .carousel-control-next,
.modal .carousel-control-prev {
  position: fixed;
  width: 34px;
  top: calc(50% - 2rem);
  bottom: auto;
  line-height: 1;
}

.modal .carousel-control-next:focus,
.modal .carousel-control-prev:focus {
  opacity: 0.5;
}

.modal .carousel-control-next:focus:hover,
.modal .carousel-control-next:focus:hover,
.modal .carousel-control-prev:focus:hover,
.modal .carousel-control-prev:focus:hover {
  opacity: 0.9;
}

.modal .carousel-control-next-icon:after,
.modal .carousel-control-prev-icon:after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  background-color: #fff;
  border-radius: 50%;
  margin-top: -9px;
  z-index: -1;
}

.modal .carousel-control-next {
  right: 1%;
}

.modal .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.modal .carousel-control-next-icon:after {
  margin-left: -18px;
}

.modal .carousel-control-prev {
  left: 1%;
}

.modal .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.modal .carousel-control-prev-icon:after {
  margin-left: -16px;
}

.modal .carousel-indicators {
  position: fixed;
}

.modal button.close {
  position: fixed;
  width: 30px;
  height: 30px;
  top: 21px;
  right: 21px;
  font-size: 18px;
  z-index: 1;
  color: #fff;
  text-shadow: none;
  z-index: 2;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.modal button.close .fa-times:after {
  content: "";
  width: 34px;
  height: 34px;
  margin-top: -8px;
  margin-left: -23px;
  border-radius: 50%;
  position: absolute;
  background-color: #fff;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.modal button.close:hover {
  color: #444;
  opacity: 0.9;
}

.modal button.close:hover .fa-times:after {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.modal .close:not(:disabled):not(.disabled):focus,
.modal .close:not(:disabled):not(.disabled):hover {
  opacity: 0.9;
  -webkit-transition: all 0s ease;
  transition: all 0s ease;
}

@media (min-width: 992px) {
  .modal.and.carousel .carousel-control-next,
  .modal.and.carousel .carousel-control-prev {
    opacity: 0.5;
  }
  .modal.and.carousel .carousel-control-next:hover,
  .modal.and.carousel .carousel-control-prev:hover {
    opacity: 0.9;
  }
}

.media-thumbnail {
  cursor: pointer;
}

.media-thumbnail > * {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.25rem;
  user-select: none;
  margin-bottom: 2rem;
}

#category-media .icon {
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}

#category-media > select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
}

#category-media > p {
  margin-bottom: 0;
  margin-left: 0.25rem;
  color: #b3b3b3;
  font-size: 16px;
}

#category-media > div {
  border: 1px solid #ddd;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 13px;
  color: #b3b3b3;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

#category-media .btn {
  margin-left: 0.5rem;
  white-space: nowrap;
  min-width: initial;
  opacity: 0.5;
}

#category-media.carousel.silent {
  margin-bottom: 1.1rem !important;
}

#category-media .carousel-item a {
  color: inherit !important;
  text-align: left;
  text-decoration: none;
}

#category-media .carousel-item a.card:hover {
  border-color: #0fb4e8;
}

#category-media .carousel-item a:hover h6 {
  color: #0fb4e8;
}

#category-media .carousel-item a:hover img {
  filter: sepia(100%) hue-rotate(160deg) saturate(2500%);
}

#category-media .carousel-item h6 {
  height: 22px;
}

#category-media .carousel-item h6,
#category-media .carousel-item h6 + p {
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#category-media .carousel-item p {
  font-size: 14px;
  opacity: 0.7;
}

#category-media .carousel-item .active .card {
  border-color: #0fb4e8;
  background-color: #0fb4e8;
}

#category-media .carousel-item .active p {
  opacity: 1;
}

#category-media .carousel-item .active h6,
#category-media .carousel-item .active span,
#category-media .carousel-item .active p,
#category-media .carousel-item .active img {
  filter: brightness(0) invert(1);
}

#category-media .carousel-item .d-flex > div {
  width: calc(100% - 48px);
}

#category-media .carousel-control-next,
#category-media .carousel-control-prev {
  top: calc(50% - 18px);
}

@media (min-width: 1400px) {
  .media-home img {
    height: 300px;
  }
}

@media (max-width: 1399px) {
  .media-home img {
    height: 250px;
  }
}

@media (max-width: 1199px) {
  .media-home img {
    height: 200px;
  }
}

@media (max-width: 991px) {
  .media-home img {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .media-home img {
    height: auto;
  }
}

/*---------------------------------------
      ABOUT & TEAM
  -----------------------------------------*/

.welcome {
  background: var(--about-bg-color);
}

.welcome-working-hours {
  border-left: 2px solid;
  padding-left: 3.5rem;
}

.welcome-working-hours strong {
  color: var(--white-color);
  opacity: 0.85;
}

.team-thumb {
  position: relative;
  background: var(--white-color);
  box-shadow: 6px 0 38px rgba(20, 20, 20, 0.1);
  padding: 15px;
}

.team-info {
  background: var(--white-color);
  border-radius: 0 0 2px 2px;
  box-shadow: 6px 0 38px rgba(20, 20, 20, 0.1);
  padding: 20px;
  position: relative;
}

.team-info span {
  font-weight: var(--font-weight-light);
  opacity: 0.85;
}

.team-info .social-icon {
  position: absolute;
  top: 10px;
  right: 20px;
}

.team-info .social-icon li {
  display: block;
}

.agenda {
  background: var(--about-bg-color);
}

.agenda .btn {
  line-height: 0 !important;
}

/*---------------------------------------
     CONTACT
  -----------------------------------------*/

#contact {
  background: var(--dark-color);
}

.webform input,
button#submit-button {
  height: calc(2rem + 11px);
}

.form-control {
  border-radius: var(--border-radius-small);
  margin: 0.5rem 0;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--dark-color);
}

.contact h2 + p {
  max-width: 90%;
}

.google-map {
  border-top: 1px solid #efebeb;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}

.google-map iframe {
  width: 100%;
}

/*---------------------------------------
     FOOTER
  -----------------------------------------*/

.site-footer {
  border-top: 1px solid #efebeb;
  padding: 3rem 0;
}

.site-footer a {
  color: var(--p-color);
  font-weight: var(--font-weight-light);
}

.site-footer p {
  font-size: var(--base-font-size);
}

.contact .fa,
.site-footer .fa {
  color: var(--primary-color);
}

/*---------------------------------------
     SOCIAL ICON
  -----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0;
  margin: 5px 0 0 0;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  text-decoration: none;
  display: inline-block;
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  margin: 5px 10px;
  text-align: center;
}

.social-icon li a:hover {
  color: var(--primary-color);
}

/*---------------------------------------
     RESPONSIVE STYLES
  -----------------------------------------*/

@media screen and (max-width: 992px) {
  .section {
    padding: 5rem 0;
  }
  .nav-item .nav-link {
    padding: 6px;
  }
  .navbar .social-icon {
    margin-top: 22px;
  }
  .navbar-collapse,
  .site-footer {
    text-align: center;
  }
  .gallery-table {
    display: block;
  }
  .modal-content {
    padding: 2rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 38px;
  }
  .welcome-working-hours {
    border-left: 0;
    padding: 22px 0 0 0;
  }
  .contact h2 span {
    display: block;
  }
}

/*add-on*/

.carousel-caption {
  bottom: 30%;
}

.f10 {
  font-size: 10px;
}

.f11 {
  font-size: 11px;
}

.f12 {
  font-size: 12px;
}

.f13 {
  font-size: 13px;
}

.f14 {
  font-size: 14px;
}

.f15 {
  font-size: 15px;
}

.f16 {
  font-size: 16px;
}

.f17 {
  font-size: 17px;
}

.f18 {
  font-size: 18px;
}

.f19 {
  font-size: 19px;
}

.f20 {
  font-size: 20px;
}

.f30 {
  font-size: 30px;
}

.opacity-6 {
  opacity: 0.6;
}

.opacity-7 {
  opacity: 0.7;
}

.opacity-8 {
  opacity: 0.8;
}

.opacity-9 {
  opacity: 0.9;
}

.ls-1 {
  letter-spacing: 1 !important;
}

.ls-2 {
  letter-spacing: 2 !important;
}

.ls-3 {
  letter-spacing: 3 !important;
}

.ls-4 {
  letter-spacing: 4 !important;
}

.ls-5 {
  letter-spacing: 5 !important;
}

.bg-light {
  background-color: #f1f1f1;
}

.gallery-container {
  position: relative;
  width: 100%;
  border-width: 7px;
  border-color: #27292b;
  border-style: solid;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #27292bd6;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.3s ease;
}

.gallery-container:hover .overlay {
  height: 50px;
}

.text {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 14px;
  line-height: 1.3em;
  color: #ffffff;
  font-weight: bold;
}

.text .small {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 13px;
  line-height: 1.3em;
  color: #999999;
}

.text .view-btn {
  right: 10px;
  top: 12px;
  position: absolute;
  color: var(--primary-color);
  font-weight: 500;
  border-width: 1px;
  border-color: var(--primary-color);
  border-style: solid;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 13px;
}

.text .view-btn:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: var(--white-color);
}

/*.carousel-control-next, .carousel-control-prev {
  width: auto;
}
*/

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: 1rem -1rem 0rem auto;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0rem;
}

.modal-thumbs {
  min-height: 150px;
}

.modal-thumbs label {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 14px;
  line-height: 1.3em;
  font-weight: 700;
  color: #ffffff;
  padding-left: 5px;
}

.modal-thumbs ul {
  padding: 0;
}

.modal-thumbs ul li {
  list-style: none;
  width: 25%;
  float: left;
}

@media (max-width: 768px) {
  .modal-thumbs ul li {
    width: 50%;
  }
}

.modal-thumbs ul li .border {
  display: inline-block;
  position: relative;
}

.modal-thumbs ul li .border::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.5);
  transition: box-shadow 0.1s ease;
  cursor: pointer;
}

.modal-thumbs ul li .border:hover::after {
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.5);
}

.modal-thumbs ul li img {
  display: block;
  position: relative;
}

.arrow-left {
  float: left;
  left: 0px;
  padding: 50px;
  position: fixed;
  height: 100%;
}

@media (max-width: 768px) {
  .arrow-left {
    display: none !important;
  }
}

.arrow-left:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.modal .carousel-inner {
  float: left;
}

.modal .arrow-right {
  float: left;
  right: 0px;
  padding: 50px;
  position: fixed;
  height: 100%;
}

@media (max-width: 768px) {
  .modal .arrow-right {
    display: none !important;
  }
}

.modal .arrow-right:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.modal .close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.modal .close:hover,
.modal .close:active,
.modal .close:focus {
  color: #fff;
  opacity: 1;
}

.modal-content {
  background-color: transparent;
}

Kalender .ui-widget {
  font-family: inherit;
}

.ui-widget.ui-widget-content {
  border: solid 1px var(--primary-color);
}

.ui-widget-header {
  border: none;
  color: #fff;
  background: var(--primary-color);
  border-radius: 0;
}

.ui-widget-header .ui-icon {
  background-image: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: none;
  background: transparent;
  border-radius: 0.25rem;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
.ui a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: none;
  color: #444;
  background: #d8f8ff;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: none;
  background: var(--primary-color);
  color: #fff;
  font-weight: bold;
}

.ui-state-highlight.ui-state-active,
.ui-widget-content .ui-state-highlight.ui-state-active,
.ui-widget-header .ui-state-highlight.ui-state-active {
  background: var(--primary-color);
  color: #fff;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: none;
}

.ui-datepicker {
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  padding: 0;
  border-radius: 0.25rem;
}

.ui-datepicker .ui-datepicker-title {
  font-size: 17px;
}

.ui-datepicker .ui-datepicker-header {
  padding: 0.5rem 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  top: 0.5rem;
  width: auto;
  height: calc(100% - 1rem);
  padding: 4px 0.5rem 0;
}

.ui-datepicker .ui-datepicker-prev:before,
.ui-datepicker .ui-datepicker-prev:before,
.ui-datepicker .ui-datepicker-next:before,
.ui-datepicker .ui-datepicker-next:before {
  color: #fff;
  font-size: 1.25rem;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 0.25rem;
}

.ui-datepicker .ui-datepicker-prev {
  left: 0.5rem;
}

.ui-datepicker .ui-datepicker-prev:before {
  content: "⇠";
}

.ui-datepicker .ui-datepicker-next {
  right: 0.5rem;
}

.ui-datepicker .ui-datepicker-next:before {
  content: "⇢";
}

.ui-datepicker table {
  font-size: inherit;
}

.ui-datepicker table thead tr:first-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}

.ui-datepicker th {
  font-weight: normal;
  padding: 0.75rem 0.3rem;
}

.ui-datepicker td {
  padding: 0.35rem;
}

.ui-datepicker td span,
.ui-datepicker td a {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ui-datepicker-calendar td.highlight > a:after {
  content: "•";
  font-size: 2rem;
  position: absolute;
  top: -0.5rem;
  right: 0.15rem;
  color: red;
  line-height: 1;
}

.ui-datepicker-calendar td.highlight.ui-datepicker-today > a:after {
  color: yellow;
}

.badge-primary {
  color: #fff;
  background-color: var(--primary-color);
  padding: 6px 5px;
  font-size: 10px;
}

a.badge-primary:focus,
a.badge-primary:hover {
  color: #fff;
  background-color: #f74b25;
}

table.ui-datepicker-calendar {
  font-size: 13px;
  opacity: 0.8;
}

.border-bawah-tebal {
  border-bottom: solid 4px #f13a11;
  background-color: #ececec;
}

/*---------------------------------------
     POLLING
  -----------------------------------------*/

.polling {
  background: var(--white-color);
}

.polling .form-control {
  font-size: 15px;
}

.polling .form-control:focus {
  box-shadow: none;
  border-color: #0fb4e8;
}

.polling .form-control::-webkit-input-placeholder {
  opacity: 0.6;
}

.polling .form-control::-moz-placeholder {
  opacity: 0.6;
}

.polling .form-control:-ms-input-placeholder {
  opacity: 0.6;
}

.polling .form-control:-moz-placeholder {
  opacity: 0.6;
}

.polling .form-check {
  margin-top: 1.3rem;
  margin-bottom: 1.3rem;
  padding-left: 0;
}

.polling .form-inline {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  margin-right: 1.5rem;
}

.polling .form-inline + .form-inline:last-child {
  margin-right: 0;
}

.polling .form-check input[type="checkbox"],
.polling .form-check input[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.polling .form-check label {
  position: relative;
  display: inline-block;
  padding: 0 0 0 2.3em;
  line-height: 1.5;
  cursor: pointer;
}

.polling .form-check label:before,
.polling .form-check label:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1.6em;
  height: 1.6em;
}

.polling .form-check label:before {
  content: "";
  border: 2px solid #bdc3c7;
  border-radius: 20%;
}

.polling .form-check input[type="checkbox"] + label::after {
  content: "✔";
  color: #fff;
  line-height: 1.5;
  text-align: center;
}

.polling .form-check input[type="radio"] + label::before {
  border-radius: 50%;
}

.polling .form-check input[type="radio"] + label::after {
  content: "";
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  /*   border: .2em solid #fff;*/
  border-radius: 50%;
  line-height: 0px;
}

.polling .form-check input[type="checkbox"]:checked + label::before,
.polling .form-check input[type="radio"]:checked + label::before {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.polling .form-check input[type="checkbox"] + label::after,
.polling .form-check input[type="radio"] + label::after {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.polling .form-check input[type="checkbox"]:checked + label::after,
.polling .form-check input[type="radio"]:checked + label::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.polling .form-check label::before,
.polling .form-check label::after {
  -webkit-transition: 0.25s all ease;
  -o-transition: 0.25s all ease;
  transition: 0.25s all ease;
}

/*---------------------------------------
   TESTIMONIAL
  -----------------------------------------*/

.card {
  margin: 0 auto;
  border: none;
  background-color: transparent;
}

.card .carousel-item {
  min-height: 190px;
}

.card .carousel-caption {
  padding: 0;
  right: 15px;
  left: 15px;
  top: 15px;
  color: #3d3d3d;
  border: 1px solid #dcdcdc;
  min-height: 175px;
  padding: 15px;
  border-radius: 10px;
  background-color: var(--white-color);
}

.card .carousel-caption .col-sm-3 {
  display: flex;
  align-items: center;
}

.card .carousel-caption .col-sm-9 {
  text-align: left;
}

.card .carousel-control-prev,
.card .carousel-control-next {
  color: var(--primary-color) !important;
  opacity: 1 !important;
  font-size: 25px;
}

/*.card .carousel-control-prev-icon, .carousel-control-next-icon {
  background-image: none;
  color: #fff;
  font-size: 14px;
  background-color: #cd3a54;
  height: 32px;
  line-height: 32px;
  width: 32px;
}*/

/*.card .carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    opacity: 0.85;
}
*/
.card .carousel-control-prev {
  left: 40%;
  top: 110%;
}

.card .carousel-control-next {
  right: 40%;
  top: 110%;
}

.midline {
  width: 60px;
  border-top: 1px solid #d43025;
}

.card .carousel-caption h3 {
  font-size: 14px;
  letter-spacing: 0px;
  font-weight: 700;
  line-height: 30px;
}

.card .carousel-caption h3 span {
  color: var(--primary-color);
}

@media (min-width: 320px) and (max-width: 575px) {
  .card .carousel-caption {
    position: relative;
  }
  .card .carousel-caption {
    left: 0;
    top: 0;
    margin-bottom: 15px;
  }
  .card .carousel-caption img {
    margin: 0 auto;
  }
  .card .carousel-control-prev {
    left: 35%;
    top: 105%;
  }
  .card .carousel-control-next {
    right: 35%;
    top: 105%;
  }
  .card .carousel-caption h3 {
    margin-top: 0;
    font-size: 16px;
    font-weight: 700;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .card .carousel-caption {
    position: relative;
  }
  .card .carousel-caption {
    left: 0;
    top: 0;
    margin-bottom: 15px;
  }
  .card .carousel-caption img {
    margin: 0 auto;
  }
  .card .carousel-caption h3,
  .card .carousel-caption small {
    text-align: center;
  }
  .card .carousel-control-prev {
    left: 35%;
    top: 105%;
  }
  .card .carousel-control-next {
    right: 35%;
    top: 105%;
  }
}

@media (min-width: 767px) and (max-width: 991px) {
  .card .carousel-caption h3 {
    margin-top: 0;
    font-size: 16px;
    font-weight: 700;
  }
}

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

.testimonial .btn-primary:hover,
.testimonial .btn-primary:active,
.testimonial .btn-primary:focus {
  opacity: 0.9;
}

.testimonial .btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.testimonial .btn-outline-primary:hover,
.testimonial .btn-outline-primary:active,
.testimonial .btn-outline-primary:focus {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white-color);
}

.testimonial .btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(0 123 254 / 0%) !important;
}

/*---------------------------------------
  FOOTER
  -----------------------------------------*/

.footer_area {
  position: relative;
  z-index: 1;
}

.foo_top_header_one {
  background-color: #15151e;
  color: #fff;
}

.section_padding_100_70 {
  padding-top: 100px;
  padding-bottom: 70px;
}

.foo_top_header_one {
  color: #fff;
}

.footer_part {
  margin-bottom: 30px;
}

.footer_part .logo {
  width: auto;
  max-height: 60px;
  margin-bottom: 10px;
}

.foo_top_header_one .footer_part > h5 {
  color: #fff;
}

.footer_part h4,
.footer_part h5 {
  margin-bottom: 30px;
}

.footer_single_contact_info > p,
.footer_single_contact_info > h5,
.footer_blog_area > a,
.foo_top_header_one .footer_part > p {
  color: rgba(255, 255, 255, 0.5);
}

.footer_newsletter .form-control {
  /*  color: rgba(255, 255, 255, .5);*/
  margin: 0;
}

p,
ul li,
ol li {
  font-weight: 300;
}

ul {
  margin: 0;
  padding: 0;
}

.footer_bottom_header_one {
  background-color: #111;
}

.section_padding_50 {
  padding: 50px 0;
}

.footer_bottom_header_one p {
  color: #fff;
  margin: 0;
}

p,
ul li,
ol li {
  font-weight: 300;
}

.footer_bottom_header_one a {
  color: inherit;
  font-size: 14px;
}

a,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

.m-top-15 {
  margin-top: 15px;
}

ul {
  margin: 0;
  padding: 0;
}

.footer_widget > li {
  display: inline-block;
}

p,
ul li,
ol li {
  font-weight: 300;
}

ol li,
ul li {
  list-style: outside none none;
}

.footer_widget a {
  border: 1px solid #333;
  border-radius: 6px;
  color: #888;
  display: inline-block;
  font-size: 13px;
  margin-bottom: 4px;
  padding: 7px 12px;
}

ul {
  margin: 0;
  padding: 0;
}

.footer_links a {
  border-bottom: 1px solid #333;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  padding-bottom: 10px;
}

.footer_links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

top-15 {
  margin-top: 15px;
}

.foo_top_header_one .footer_part > h5 {
  color: #fff;
}

.footer_part h4,
.footer_part h5 {
  margin-bottom: 30px;
}

.footer_social_links > li {
  display: inline-block;
}

p,
ul li,
ol li {
  font-weight: 300;
}

.footer_social_links a {
  border: 1px solid #333;
  border-radius: 6px;
  color: #888;
  display: inline-block;
  font-size: 13px;
  margin-bottom: 3px;
  padding: 7px 12px;
}

.footer_blog_area .footer_date {
  color: #27ae60;
  font-size: 13px;
  margin-bottom: 5px;
}

.footer_blog_area > p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
  margin-bottom: 0;
}

.footer_works > a {
  display: inline-block;
  float: left;
  position: relative;
  width: 33.33333333%;
  z-index: 1;
}

.footer_thumb {
  left: 0;
  position: absolute;
  top: 0;
  width: 75px;
}

.footer_links a i {
  padding-right: 10px;
}

/* :: 18.0 Footer Area CSS */

.footer_area {
  position: relative;
  z-index: 1;
}

.footer_bottom p > i,
.footer_bottom p > a:hover {
  color: #27ae60;
}

.social_links_area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px 0 30px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.social_links_area > a:hover {
  color: #27ae60;
}

.inline-style .social_links_area > a:hover {
  background-color: transparent;
  color: #27ae60;
  border: 0px solid transparent;
}

.single_feature:hover .feature_text h4 {
  color: #27ae60;
}

.footer_blog_area {
  border-bottom: 1px solid #333;
  margin-bottom: 15px;
  padding: 0 0 15px 90px;
  position: relative;
  z-index: 1;
}

.footer_links a {
  border-bottom: 1px solid #333;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  padding-bottom: 15px;
}

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

/*Pagin*/

.page-item {
  position: relative;
  display: inline-block;
}

.page-item.active .page-link {
  color: #444;
  background-color: transparent;
  border-color: transparent;
  opacity: 1;
}

.page-item.active:after {
  content: "";
  width: 100%;
  height: 0.25rem;
  border-radius: 0.25rem;
  background-color: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.page-link {
  color: #444;
  background-color: transparent;
  border: none;
  opacity: 0.5;
}

.page-link:hover {
  color: #444;
  background-color: transparent;
  border-color: transparent;
  opacity: 1;
}

/* Contact - Footer*/

.contact-us {
  position: relative;
  z-index: 2;
  margin-top: 65px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-icon {
  position: absolute;
}

.contact-icon i {
  font-size: 36px;
  top: -5px;
  position: relative;
  color: #007bff;
}

.contact-info {
  margin-left: 75px;
  color: #fff;
}

.contact-info h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 0;
}

/* Copyright - Footer*/

.copyright {
  padding: 20px 0;
}

.copyright span,
.copyright a {
  color: #878787;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 14px;
}

.copyright a:hover {
  color: #007bff;
}

.copyright-menu ul {
  text-align: right;
  margin: 0;
}

.copyright-menu li {
  display: inline-block;
  padding-left: 20px;
}

.back-to-top {
  position: relative;
  z-index: 2;
}

.back-to-top .btn-dark {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  padding: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2e2e2e;
  border-color: #2e2e2e;
  display: none;
  z-index: 999;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.back-to-top .btn-dark:hover {
  cursor: pointer;
  background: #fa6742;
  border-color: #fa6742;
}

/* Social - Footer*/

.footer-social {
  list-style: none;
  padding-left: 0px;
  margin: 1rem -0.25rem;
}

.footer-social li {
  display: inline-block;
}

.footer-social a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 10%;
  color: #ffffff;
  margin: 0rem 0.2rem;
  opacity: 1;
}

.footer-social a:hover {
  opacity: 1;
  color: red;
}

.footer-social .facebook:hover,
.footer-social .facebook_page:hover {
  background-color: rgb(66, 103, 178);
  border-color: rgb(66, 103, 178);
}

.footer-social .twitter:hover {
  background-color: rgb(29, 161, 242);
  border-color: rgb(29, 161, 242);
}

.footer-social .instagram i {
  transform: scale(1.2);
}

.footer-social .instagram:hover {
  background: radial-gradient(
    circle at 30% 107%,
    rgb(253, 244, 151) 0%,
    rgb(253, 244, 151) 5%,
    rgb(253, 89, 73) 45%,
    rgb(214, 36, 159) 60%,
    rgb(40, 90, 235) 90%
  );
  border: none;
}

.footer-social .youtube:hover {
  background-color: rgb(240, 15, 0);
  border-color: rgb(240, 15, 0);
}

.footer-social .linkedin:hover {
  background-color: rgb(0, 115, 177);
  border-color: rgb(0, 115, 177);
}

.footer-social .wa:hover {
  background-color: rgb(63, 230, 117);
  border-color: rgb(63, 230, 117);
}

.footer-social .line:hover {
  background-color: rgb(50, 185, 0);
  border-color: rgb(50, 185, 0);
}

.footer-social .telegram:hover {
  background-color: rgb(39, 166, 231);
  border-color: rgb(39, 166, 231);
}

.footer-social .pinterest:hover {
  background-color: rgb(230, 0, 35);
  border-color: rgb(230, 0, 35);
}

.footer-social .tokopedia:hover {
  background-color: rgb(3, 172, 14);
  border-color: rgb(3, 172, 14);
}

.footer-social .shopee:hover {
  background-color: rgb(249, 96, 50);
  border-color: rgb(249, 96, 50);
}

.footer-social .lazada:hover {
  background-color: rgb(0, 0, 131);
  border-color: rgb(0, 0, 131);
}

.footer-social .bukalapak:hover {
  background-color: rgb(227, 30, 82);
  border-color: rgb(227, 30, 82);
}

.footer-social .jejualan:hover {
  background-color: rgb(176, 210, 72);
  border-color: rgb(176, 210, 72);
}

[data-toggle="collapse"] {
  cursor: pointer;
}

/*#collapseStatistic {
  color: rgb(68, 68, 68);
  height: 0px;
  padding: 0.5rem 1.25rem;
  position: absolute;
  background-color: rgb(255, 255, 255);
  border-radius: 0.25rem 0.25rem 0px 0px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 8px 0px, rgba(0, 0, 0, 0.05) 0px 3px 10px 0px;
  inset: auto auto calc(2rem + 3px);
  z-index: 1;
}

#collapseStatistic.show {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#collapseStatistic ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

#collapseStatistic li:last-child {
  border-bottom: none;
}

#collapseStatistic li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgb(230, 230, 230);
  padding: 0.5rem 0px;
}

a[data-target="#collapseStatistic"] .feather {
  width: 12px;
  height: 12px;
}

.fade.collapsing,
.fade.collapse.show {
  transition: all 0.2s ease 0s;
}

@media (min-width: 768px) {
  #collapseStatistic {
    bottom: calc(1.25rem + 3px);
    left: 0.5rem;
  }
}
*/

/* Statistic - Footer*/

#statistic {
  position: absolute;
  right: 0;
  left: 50%;
  bottom: 2rem;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ececec;
  height: auto !important;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.05), 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  font-size: 13px;
}
@media (min-width: 425px) {
  #statistic {
    right: 0;
    left: 0;
  }
}

#statistic.show {
  opacity: 1;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 2000;
}

#statistic ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

#statistic li {
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d0d0d0;
  padding: 0.5rem 0;
}

#statistic li:last-child {
  border-bottom: none;
}

a[data-target="#statistic"]:hover,
a[data-target="#statistic"][aria-expanded="true"] {
  opacity: 1;
}

.share {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.comment-faq {
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-top: 1rem;
  margin-bottom: 1rem;
  -webkit-transition: none;
  transition: none;
}

.comment-faq h6 {
  color: inherit;
  font-size: var(--h6-font-size);
  line-height: inherit;
  margin: 0;
}

.comment-item {
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: none;
  -webkit-transition: none;
  transition: none;
}

.comment-item h6 {
  color: inherit;
  font-size: var(--h6-font-size);
  line-height: inherit;
  margin: 0;
}

.post-comment > div > button:before {
  content: "";
  font-weight: 900;
}

.post-share > button:before,
.post-share > a:before,
.post-comment > div > button:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  margin-right: 0.5rem;
}

/*search result*/

.list-item {
  display: -ms-flex;
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
}

.list-item h5 a {
  font-size: 1.2rem;
  color: inherit;
}

.list-item h5 a:hover {
  color: var(--primary-color);
}

.list-item p {
  font-size: 1rem;
  font-weight: normal;
  text-decoration: none;
}

.list-item img {
  min-width: 175px;
  width: 175px;
  height: 175px;
  object-fit: cover;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--primary-color);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: var(--primary-color);
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.faq h6 {
  font-size: 1.2rem;
  color: inherit;
}

.btn-plus:before {
  content: "";
  font-weight: 400;
}

.btn-icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "FontAwesome";
  margin-right: 0.5rem;
}

.testimoni-prof {
  background-color: var(--primary-color);
  color: #fff;
}

.link-item {
  display: flex;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
  width: calc(33% - 2rem);
}

.link-item img {
  margin-right: 0.75rem;
  object-fit: cover;
}

.link-item span {
  display: block;
  max-width: calc(100% - 44px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.link-item .badge {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 44px);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .link-item {
    width: calc(100% - 2rem);
  }
}

#menu-vertical {
  padding: 0;
}

#menu-vertical:hover {
  /* border-radius: .25rem;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, .05), 0 3px 10px 0 rgba(0, 0, 0, .05)*/
}

#menu-vertical * {
  -webkit-transition: none;
  transition: none;
}

#menu-vertical ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#menu-vertical > ul {
  background-color: #fff;
  /* border: 1px solid #ddd*/
  /* border-radius: .25rem*/
}

#menu-vertical a {
  display: block;
  position: relative;
  padding: 0.7rem 1.75rem 0.7rem 0.8rem;
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#menu-vertical a:hover {
  background: var(--primary-color);
  color: #fff;
}

#menu-vertical > li > .menu-item,
#menu-vertical > li > div > .menu-item {
  opacity: 0;
  margin-left: -20px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#menu-vertical > li > div > i.menu-item {
  -webkit-transition: none;
  transition: none;
}

#menu-vertical li {
  color: #fff;
  border-bottom: dotted 1px #ddd;
}

#menu-vertical > ul > li:first-child > * {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

#menu-vertical > ul > li:last-child > * {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

#menu-vertical li.sub-menu div {
  position: relative;
  color: #fff;
}

#menu-vertical li.sub-menu .fas {
  position: absolute;
  top: 0;
  right: 0;
  height: 44px;
  width: 28px;
  padding-left: 3px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #333;
}

#menu-vertical li.sub-menu .fas:hover:before {
  color: #fff;
  z-index: 1;
}

#menu-vertical li.sub-menu .fas:hover:after {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  background-color: var(--primary-color);
  border-radius: 50%;
  right: 10px;
  top: 11.5px;
  color: #fff;
}

#menu-vertical li.sub-menu.active .fas:hover:after {
  background-color: #0000001f;
}

#menu-vertical li.sub-menu .fa-sort-down {
  padding-bottom: 6px;
}

#menu-vertical li.sub-menu .fa-sort-up {
  padding-top: 6px;
}

#menu-vertical li.active > a,
#menu-vertical li.sub-menu.open > div,
#menu-vertical li.sub-menu.open > div > *,
#menu-vertical li.sub-menu.active > div,
#menu-vertical li.sub-menu.active > div > *:hover {
  color: #fff;
  background-color: var(--primary-color);
}

#menu-vertical li.sub-menu.active > div > * {
  color: #fff;
}

#menu-vertical ul li a {
  padding-left: 1.5rem;
}

#menu-vertical ul ul li a {
  padding-left: 2rem;
}

#menu-vertical ul ul ul li a {
  padding-left: 2.5rem;
}

#menu-vertical ul ul ul ul li a {
  padding-left: 3rem;
}

#menu-vertical ul ul ul ul ul li a {
  padding-left: 3.5rem;
}

#menu-vertical ul ul ul ul ul ul li a {
  padding-left: 4rem;
}

#menu-vertical ul ul ul ul ul ul ul li a {
  padding-left: 4.5rem;
}

#side-content > * {
  margin-bottom: 2rem;
}

.ui-datepicker .ui-datepicker-prev:before,
.ui-datepicker .ui-datepicker-next:before {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 700 !important;
}

.footer_links a:hover {
  color: red !important;
}

.fa-chart-area:hover {
  color: red !important;
}

/*carousel*/

.class-thumb img {
  max-width: 100% !important;
}
