/*!
Theme Name: sustainable
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sustainable
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

sustainable is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
 * General
 *--------------------------------------------------------------
 */
 body {
	font-family: "Space Grotesk", sans-serif;
	color: #242424;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
  }
  
  a {
	color: #f05253;
	text-decoration: none;
  }
  
  a:hover {
	color: #ff724a;
	text-decoration: none;
  }
  
  a[disabled] {
	background: #555 !important;
	border-color: #555 !important;
  }
  
  a[disabled]:hover {
	background: #888 !important;
	border-color: #fff !important;
  }
  
  h1, h2, h3, h4, h5, h6 {
	font-family: "Space Grotesk", sans-serif;
  }
  section {
	padding: 0px;
  }
  
  /*--------------------------------------------------------------
   * Back to top button
   *--------------------------------------------------------------
   */
  .back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #00abbc;
	width: 40px;
	height: 40px;
	transition: all 0.4s;
  }
  
  .back-to-top i {
	font-size: 24px;
	color: #fff;
	line-height: 0;
  }
  
  .back-to-top:hover {
	background: #00abbc;
	color: #fff;
  }
  
  .back-to-top.active {
	visibility: visible;
	opacity: 1;
  }
  
  /*--------------------------------------------------------------
   * Preloader
   *--------------------------------------------------------------
   */
  #preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
  }
  
  #preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #ff8600;
	border-top-color: #f0c808;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s linear infinite;
  }
  
  @keyframes animate-preloader {
	0% {
	  transform: rotate(0deg);
	}
  
	100% {
	  transform: rotate(360deg);
	}
  }
  
  /*--------------------------------------------------------------
   * Disable aos animation delay on mobile devices
   *--------------------------------------------------------------
   */
  @media screen and (max-width: 768px) {
	[data-aos-delay] {
	  transition-delay: 0 !important;
	}
  }
  
  /*--------------------------------------------------------------
   * HEADER
   *--------------------------------------------------------------
   */
  #header {
	transition: all 0.5s;
	z-index: 997;
	padding: 10px 0;
	border-bottom: 1px solid #e8e8e8;
  }
  
  #header.header-scrolled,
  #header.header-inner-pages {
	background: rgba(255, 255, 255, 1);
	padding: 10px 0;
  }
  
  #header .logo {
	font-size: 32px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 2px;
  }
  
  #header .logo a {
	color: #8EB05C;
	overflow: hidden;
	width: 0px;
	height: 0px;
	display: block;
	opacity: 0;
	transition: all 0.5s;
  }
  
  
  #header .logo img {
	max-height: 60px;
	transition: all 0.5s;
  }
  
  #header.header-scrolled .logo img {
	overflow: hidden;
	width: auto;
	height: auto;
	display: block;
	opacity: 1;
  }
  
  #header.header-scrolled .logo a {
	width: 0;
	height: 0;
	opacity: 1;
  }
  
  /**
   * 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: 8px 12px;
  }
  
  .navbar a,
  .navbar a:focus {
	display: block;
	align-items: center;
	position: relative;
	justify-content: space-between;
	padding: 0 3px;
	font-size: 14px;
	font-weight: 400 !important;
	font-weight: 400;
	color: #242424;
	white-space: nowrap;
	transition: 0.3s;
   
  }
  
  .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: #f0c808;
	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: #ff8600;
  }
  
  .navbar li.registration {
	overflow: hidden;
	transition: all 0.3s ease-in-out 0s;
	opacity: 1;
	width: auto;
	border: 0 !important;
  }
  
  .navbar.menu-registration li.registration {
	opacity: 1;
	width: auto;
	padding: 8px 12px;
  }
  
  .navbar li.registration > a {
	text-shadow: none;
  }
  
  .navbar li.registration > a,
  .navbar li.registration > a:focus {
	padding: 10px 14px;
	margin-left: 15px;
	border-radius: 6px;
	color: #fff;
	background: #FF8601;
	border: 2px solid #FF8601;
  }
  
  
  .navbar li.registration > a:hover,
  .navbar li.registration > a:focus:hover {
	color: #fff;
	background: #FF8601;
	border: 2px solid #FF8601;
	
  }
  
  .navbar>ul>li.registration > a:before {
	visibility: hidden;
  }
  
  /**
   * Mobile Navigation 
   */
  .mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
	color: #242424;
  }
  
  .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(4, 7, 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: 18px;
	color:#242424;
	text-shadow: none;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover > a {
	color: #ff8600;
  }
  
  .navbar-mobile li.registration {
	opacity: 1;
	width: auto;
	padding: 8px 12px;
  }
  
  .navbar-mobile li.registration > a {
	color: #000;
  }
  
  .navbar-mobile li.registration > a,
  .navbar-mobile li.registration > a:focus,
  .navbar-mobile li.registration > a:hover {
	padding: 12px 25px;
	margin: 15px;
	border: 0px solid #ff4a17;
	color: #fff;
  }
  
  .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: #242424;
  }
  
  .navbar-mobile .dropdown > .dropdown-active {
	display: block;
  }
  
  /*--------------------------------------------------------------
   * HOME SECTION
   *--------------------------------------------------------------
   */
  #home {
	width: 100%;
	position: relative;
  }
  
  #home .contentwrapper {
	position: relative;
  }
  
  .hero-top {
	padding-top: 100px;
	background:  url(assets/img/logo-SDO2024-main-outline.png), url(assets/img/logo-SDO2024-main.png), #fff;
	background-position: top 50% left -100px, top 30% right -66px;
	background-repeat: no-repeat, no-repeat;
	background-size: 220px, 220px;
  }
  .hero-copy {
	padding: 100px 20px 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
  }
  
  .hero-img-desktop {
	height: 380px;
	background-size: cover!important;
	background-position: center!important;
	display: block;
  }
  
  .hero-img-mobile {
	width: 100%;
	height: auto;
	display: none; 
  }
  
  
  #home h2 {
	margin: 0 0 10px 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	text-transform: uppercase;
	color: #0E3B43;
  }
  
  #home h3 {
	color: #0E3B43;
	margin-bottom: 10px;
	font-size: 56px;
	line-height: 70px;
	text-transform: uppercase;
  }
  
  .stagehero {
	width: 100%;
	background: url(assets/img/ornament-a.png);
	background-size: 109px;
	background-repeat: no-repeat;
	background-position: top right 16%;
  }
  .slogan {
	display: inline-block;
	background: #00ABBC;
	color: #fff;
	font-size: 20px;
	line-height: 24px;
	padding: 10px 20px;
	text-transform: uppercase;
	margin-bottom: 0px;
  }
  
  .metaevent {
	display: flex;
	padding: 20px 0;
	justify-content: center;
  }
  .metaevent-n {
	font-size: 14px;
	line-height: 18px;
	margin: 10px;
  }
  .icon-metaevent {
	width: 24px;
	vertical-align: -7px;
  }
  
  .btn-register,
  .btn-register:visited {
	font-weight: 500;
	font-size: 14px;
	display: inline-block;
	padding: 14px 20px;
	transition: 0.5s;
	border-radius: 4px;
	color: #fff;
	background: #FF8601;
	border: 0px solid #FF8601;
	text-shadow: none;
  }
  
  #home .btn-register:hover,
  #home .btn-register:focus {
	
	color: #fff;
	background-color: #ed6a00;
	/*
	background: rgba(255, 255, 255, 0.1);*/
  }
  
  .iconarrowbtn {
	width: 10px;
	height: 10px;
	display: inline-block;
	vertical-align: 0px;
	margin-left: 6px;
  }
  
  .iconarrowup {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(assets/img/arrow-up-right.png);
	background-size: 100%;
	background-repeat: no-repeat;
	vertical-align: -6px;
  
  }
  
  @media screen and (min-width: 992px) and (max-width: 1279px) {
	.hero-top {
	 
	  background-position: top 60% left -100px, top 18% right -66px;
	  background-repeat: no-repeat, no-repeat;
	  background-size: 200px, 140px;
	}
	#home h3 {
	  font-size: 50px;
	  line-height: 66px;
	}
	.stagehero {
	  background-size: 90px;
	}
  }
  
  @media (min-width: 1024px) {
	#home {
	  background-attachment: fixed;
	}
  }
  
  @media screen and (max-width: 768px) {
	#header .logo img {
	  height: 50px;
	}
	#header.header-scrolled .logo img {
	  height: 50px;
	}
  
	.hero-copy {
	  padding-top: 60px;
	}
	.hero-top {
	  background-position: top 16% left -50px, top 95% right -64px;
	  background-repeat: no-repeat, no-repeat;
	  background-size: 120px, 140px;
	}
  
	.hero-img-mobile { 
	  display: block;
	  width: 100%;
	}
	.hero-img-desktop { 
	  display: none;
	}
  
	#home h2 {
	  font-size: 14px;
	  line-height: 18px;
	}
  
	#home h3 {
	  font-size: 28px;
	  line-height: 34px;
	  margin-bottom: 16px;
	}
	#home h3 span {
	  display: inline-block;
	}
	.stagehero {
	  background-size: 60px;
	  background-position: top 16% right 1%;
	}
	.slogan {
	  font-size: 14px;
	}
	.e
	.metaevent-n {
	  text-align: center;
	}
	.icon-metaevent {
	  display: block;
	  margin: 0 auto;
	}
  }
  
  /*
  @media (max-width: 480px) {
	#home .contentwrapper {
	  position: inherit;
	  padding-top: 0px;
	  padding-bottom: 20px;
	}
  }
  
  @media (max-height: 500px) and (min-width: 480px) {
	#home .contentwrapper {
	  position: inherit;
	  padding-top: 60px;
	  padding-bottom: 20px;
	}
  }
  */
  
  
  /*--------------------------------------------------------------
   * Sections General
   *--------------------------------------------------------------
   */
  section .container {
	padding-top: 120px;
	padding-bottom: 60px;
  }
  
  .titlesection {}
  
  .titlesection-wline {
	padding-bottom: 30px;
	position: relative;
	display: inline-block;
  }
  .titlesection-wline:after {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0px;
	background-image: url(assets/img/line-title.png);
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 100%;
	width: 100%;
	height: 40px;
	
  }
  
  
  @media screen and (max-width: 768px) {
	section .container {
	  padding-top: 100px;
	  padding-bottom: 40px;
	}
	.row>* {
	  padding-left: 26px;
	  padding-right: 26px;
	}
	.wrap-title-section {
	  text-align: center;
	}
  
  }
  
  
  
  /*--------------------------------------------------------------
   * EVENT OVERVIEW 
   *--------------------------------------------------------------
   */
  
  #eventoverview {
	background:  url(assets/img/logo-SDO2024-main-outline.png);
	background-position: top 40% left -100px;
	background-repeat: no-repeat;
	background-size: 220px;
  }
  #eventoverview .container {
	padding-bottom: 20px;
  }
  .img-intro {
	width: 100%;
  }
  
  .tema {}
  .col-bgimg {
	background-size: cover!important;
	background-position: top center!important;
	filter: grayscale(100%)
  }
  .col-tema-inner {
	padding: 46px 26px;
  }
  .col-tema-inner p {
	font-size: 18px;
	line-height: 23px;
  }
  .col-tema-inner strong {
	font-weight: 600;
  }
  .text-white {
	color: #fff;
  }
  .text-white-b {
	color: #BDC8CA
  }
  .text-green-a {
	color: #0E3B43;
  }
  
  
  @media screen and (max-width: 768px) {
	#eventoverview {
	  background-position: top 34% left -100px;
	  background-repeat: no-repeat;
	  background-size: 180px;
	}
   
	.col-tema-inner {
	  padding:46px 16px;
	}
  }
  @media screen and (max-width: 767px) {
   .col-bgimg { 
	  height: 260px;
	}
  
  }
  
  
  /*--------------------------------------------------------------
   * PROFIL
   *--------------------------------------------------------------
   */
  
  #profil {}
  #profil .container {}
  .owl-stage {
	overflow-x: hidden!important;
  }
  .owl-carousel .owl-stage { 
	display: flex; 
  }
  .item {
	height: 100%;
	background: #F1F2F6;
	color: #0E3B43;
	padding: 30px 20px 20px;
  }
  .img-kab {
	width: 50px!important;
	height: auto!important;
	margin-bottom: 10px;
  }
  .title-kab {
	font-size: 18px;
	line-height: 23px;
	margin-bottom: 20px;
  }
  .item p {
	font-size: 14px;
  }
  
  .owl-theme .owl-dots .owl-dot span {
	color: #F1F2F6;
  }
  .owl-theme .owl-dots .owl-dot.active span, 
  .owl-theme .owl-dots .owl-dot:hover span {
	background: #FF8601!important;
  }
  
  .owl-theme .owl-dots .owl-dot.active span {
	width: 36px;
  }
  
  
  /*--------------------------------------------------------------
   * SPEAKER 
   *--------------------------------------------------------------
   */
  
  #speaker {
	background:  url(assets/img/logo-SDO2024-main.png), url(assets/img/ornament-a.png), #fff;
	background-position: top 2% left -120px, top 2% right 10px;
	background-repeat: no-repeat, no-repeat;
	background-size: 190px, 109px;
  
  }
  #speaker .container {
	padding-bottom: 10px;
  }
  #speaker .titlesection {
	margin-bottom: 40px;
  }
  
  .item-speaker {
	margin-bottom: 60px;
   }
  .foto-speaker {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
  }
  .nama {
	font-size: 18px;
	line-height: 23px;
	color: #0E3B43;
  }
  .nama-desc {
	font-size: 14px;
	line-height: 18px;
	color: #0E3B43;
  }
  .kabs {
	color: #fff;
	background: #00ABBC;
	display: inline-block;
	padding: 8px 12px;
	font-size: 14px;
	line-height: 18px;
	margin-top: -20px;
  }
  
  @media screen and (max-width: 768px) {
	#speaker .titlesection {
	  text-align: center;
	  margin-bottom: 40px;
	}
	#speaker {
	  background-position: top 2% left -70px, top 2% right 10px;
	background-repeat: no-repeat, no-repeat;
	background-size: 140px, 79px;
	}
	.row-listspeaker>*{
	  padding-left: 14px;
	  padding-right: 14px;
	}
	.row-listspeaker .col-md-4 {
	  width: 50%;
	}
  }
  /*--------------------------------------------------------------
   * AGENDA
   *--------------------------------------------------------------
   */
  
  #agenda {
	background: url(assets/img/logo-SDO2024-main.png);
	background-position:  bottom 10% right -100px;
	background-repeat:no-repeat;
	background-size: 200px;
  }
  
  #agenda .container {}
  
  .moreaction {
	text-align: right;
  }
  
  .agenda-item {
	margin-bottom: 60px;
  }
  
  .titlesection-agenda {
	font-size: 32px;
	line-height: 40px;
  }
  .titlesection-agenda-desc {
	font-size: 16px;
	line-height: 21px;
	margin-bottom: 50px;
  }
  .agenda-title {
	font-size: 14px;
	line-height: 18px;
	color: #00ABBC;
	text-transform: uppercase;
  }
  .agenda-subtitle {
	color: #0E3B43;
	font-size: 18px;
	line-height: 23px;
  }
  .agenda-list-kab {
	color: #0E3B43;
	font-size: 14px;
	line-height: 18px;
	margin: 0px;
	padding: 0px 0 0 17px;
  }
  
  .notes {
	color: #FF8601;
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	text-align: center;
	margin: 30px 0;
  }
  
  
  @media screen and (max-width: 768px) {
	.titlesection-agenda-desc {
	  margin-bottom: 30px;
	}
	.moreaction {
	  text-align: left;
	  margin-bottom: 50px;
	}
  }
  
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  #footer {
	background: #0E3B43;
	padding: 60px 0 20px;
	color: #F1F2F6;
  }
  #footer a {
	color: #F1F2F6;
  }
  #footer a:hover {
	color: #fff;
  }
  
  .footer-section {
	margin-bottom: 50px
  }
  
  .logo-footer {
	width: 190px;
	height: auto;
	margin: 0 0 20px;
  }
  
  .titlecol-footer {
	font-size: 18px;
	height: 24px;
  }
  
  .kontak-column {
	display: flex;
	flex-direction: column;
  }
  .icon-sm {
	width: auto;
	height:24px;
	width:auto;
	margin:5px 5px 5px 0;
  }
  .icon-sm:hover {
	opacity: 0.7;
  }
  .kontakitem {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: left;
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 20px;
  }
  .iconkontak {
	height: 24px;
	margin-right: 16px;
  }
  .kontakitem p {
	margin: 0px;
  }
  
  .titlecol-footer {
	font-size: 18px;
	line-height: 23px;
	margin-bottom: 20px;
  }
  
  .menufooter {}
  .menufooter ul {
	margin:0;
	padding: 0px;
  }
  .menufooter li {
	list-style: none;
	margin: 0px 0 20px;
	padding: 0px;
	font-size: 14px;
	line-height: 18px;
  }
  .menufooter a {
	color: #F1F2F6;
  }
  .menufooter a:hover {
	color: #fff;
  }
  
  .agenda-content p{
	font-size: 16px;
	line-height: 21px;
	margin-bottom: 50px;
  }