/* Importing Google Font - Open Sans */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", Noto Sans Japanese, sans-serif;
}

/* Color variables for light theme */
:root {
  --white-color: #fff;
  --black-color: #000;
  --light-white-color: #f0f0f0;
  --light-gray-color: #e5e5e5;
  --border-color: #ccc;
  --primary-color: #3b82f6;
  --secondary-color: #404040;
  --overlay-dark-color: rgba(0, 0, 0, 0.6);
  --light-box-color: #eee;
  --logo-color: #f68f80;
}

/* Color variables for dark theme */
.dark-mode {
  --white-color: #171717;
  --black-color: #d4d4d4;
  --light-white-color: #333;
  --light-gray-color: #404040;
  --border-color: #808080;
  --secondary-color: #d4d4d4;
  --light-box-color: #272525;
  --logo-color: #f4131e;
}

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

.container {
  display: flex;
  overflow: hidden;
  max-height: 100vh;
  flex-direction: column;
}

header,
.sidebar .nav-left,
.category-list {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white-color);
}

.navbar {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 8px 16px;
  justify-content: space-between;
}

:where(.navbar, .sidebar) .nav-section {
  gap: 16px;
}

:where(.navbar, .sidebar) :where(.nav-section, .nav-logo, .search-form) {
  display: flex;
  align-items: center;
}

:where(.navbar, .sidebar) :where(.logo-image, .user-image) {
  width: 32px;
  cursor: pointer;
  border-radius: 50%;
}

:where(.navbar, .sidebar) .nav-section .nav-button {
  border: none;
  height: 40px;
  width: 40px;
  cursor: pointer;
  background: none;
  border-radius: 50%;
}

:where(.navbar, .sidebar) .nav-section .nav-button:hover {
  background: var(--light-gray-color) !important;
}

:where(.navbar, .sidebar) .nav-button i {
  font-size: 1.5rem;
  display: flex;
  color: var(--black-color);
  align-items: center;
  justify-content: center;
}

:where(.navbar, .sidebar) .nav-logo {
  display: flex;
  gap: 8px;
  text-decoration: none;
}

:where(.navbar, .sidebar) .nav-logo .logo-text {
  color: var(--black-color);
  font-size: 1.25rem;
  font-weight: 700;
}

.navbar .search-back-button {
  display: none;
}

.navbar .nav-center {
  gap: 8px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.navbar .search-form {
  flex: 1;
  height: 40px;
  max-width: 550px;
}

.navbar .search-form .search-input {
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: 300;
  padding: 0 16px;
  outline: none;
  color: var(--black-color);
  background: var(--white-color);
  border-radius: 49px 0 0 49px;
  border: 1px solid var(--border-color);
}

.navbar .search-form .search-input:focus {
  border-color: var(--primary-color);
}

.navbar .search-form .search-button {
  height: 40px;
  width: auto;
  padding: 0 20px;
  border-radius: 0 49px 49px 0;
  border: 1px solid var(--border-color);
  border-left: 0;
}

.navbar .nav-center .mic-button {
  background: var(--light-white-color);
}

.navbar .nav-right .search-button {
  display: none;
}

.main-layout {
  display: flex;
  overflow-y: auto;
  scrollbar-color: #a6a6a6 transparent;
}

.main-layout .sidebar {
  width: 280px;
  overflow: hidden;
  padding: 0 11px 0;
  background: var(--white-color);
}

.main-layout .sidebar .nav-left {
  display: none;
  padding: 8px 5px;
}

body.sidebar-hidden .main-layout .sidebar {
  width: 0;
  padding: 0;
}

.sidebar .links-container {
  padding: 16px 0 32px;
  overflow-y: auto;
  height: calc(100vh - 60px);
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.sidebar .links-container:hover {
  scrollbar-color: #a6a6a6 transparent;
}

.sidebar .link-section {
  list-style: none;
}

.sidebar .link-section .link-item {
  display: flex;
  cursor: pointer;
  color: var(--black-color);
  white-space: nowrap;
  align-items: center;
  font-size: 0.938rem;
  padding: 5px 12px;
  margin-bottom: 4px;
  border-radius: 8px;
  text-decoration: none;
}

.sidebar .link-section .link-item:hover {
  background: var(--light-gray-color);
}

.sidebar .link-section .link-item i {
  font-size: 1.4rem;
  margin-right: 10px;
}

.sidebar .link-section .section-title {
  color: var(--black-color);
  font-weight: 600;
  font-size: 0.938rem;
  margin: 16px 0 8px 8px;
}

.sidebar .section-separator {
  height: 1px;
  margin: 10px 0;
  background: var(--light-gray-color);
}

.main-layout .content-wrapper {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

.content-wrapper .category-list {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 12px 0 11px;
  scrollbar-width: none;
}

.category-list .category-button {
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.94rem;
  border-radius: 8px;
  white-space: nowrap;
  color: var(--black-color);
  padding: 6px 12px;
  background: var(--light-gray-color);
}

.category-list .category-button.active {
  color: var(--white-color);
  background: var(--black-color);
  pointer-events: none;
}

.dark-mode .category-list .category-button.active {
  filter: brightness(120%);
}

.dark-mode iframe {
    filter: invert(100%) brightness(300%);
  }

.category-list .category-button:not(.active):hover {
  background: var(--border-color);
}

.content-wrapper .separator {
  height: 40px;
  margin: 0;
  background: transparent;
}

p {
    color: var(--black-color);  
    text-align: justify;    
}

h1 {
  color: var(--black-color);
}

h2 {
  color: var(--black-color);
}

h3 {
  color: var(--black-color);
}

h4 {
  color: var(--black-color);
}


/* Slider */

.content-wrapper .slider-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;  
  background: var(--light-box-color);
}

.slider-container .slider-wrapper .slider-item {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

.slider-container .slider-wrapper .slider-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(20%);
  background-image: url("https://www.yokatta.web.id/assets/img/slider/yokoso.webp");
  background-size: cover;
  background-position: center;
}

.slider-wrapper .slider-item:nth-child(2):before {
  background-image: url("https://www.yokatta.web.id/assets/img/slider/yokoso.webp");
}

.slider-wrapper .slider-item:nth-child(3):before {
  background-image: url("https://www.yokatta.web.id/assets/img/slider/yokoso.webp");
}

.slider-wrapper .slider-item:nth-child(4):before {
  filter: grayscale(25%) brightness(80%);
  background-image: url("https://www.yokatta.web.id/assets/img/slider/yokoso.webp");
}

.slider-wrapper .slider-item:nth-child(5):before {
  background-image: url("https://www.yokatta.web.id/assets/img/slider/yokoso.webp");
}

.slider-wrapper .slider-item .slide-content {
  position: relative;
  z-index: 10;
  color: #fff;
  width: 100%;
  opacity: 0;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 20px 10px;  
}

.slider-item.swiper-slide-active .slide-content {
  animation: animate_opacity 0.8s 0.6s linear forwards;
}

@keyframes animate_opacity {
  100% {
    opacity: 1;
  }
}

.slider-wrapper .slider-item .slide-content > * {
  max-width: 35%;
}

.slider-item .slide-content .slide-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 5px;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(60%);
}

.slider-item .slide-content .slide-subtitle {
  font-size: 1rem;
  font-weight: normal;
  opacity: 0;
  transform: translateY(60%);
}

.slider-item.swiper-slide-active :where(.slide-title, .slide-subtitle) {
  animation: animate_text 0.6s 0.6s linear forwards;
}

@keyframes animate_text {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-item .slide-content .slide-description {
  margin-top: 25px;
  line-height: 25px;
  opacity: 0;
  transform: translateY(60%);
}

.slider-item.swiper-slide-active .slide-description {
  animation: animate_text 0.6s 1s linear forwards;
}

.slider-item .slide-content .slide-button {
  display: block;
  margin-top: 45px;
  color: var(--black-color);
  width: 0;
  padding: 13px 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: 2px solid var(--black-color);
  transition: 0.5s ease;
  opacity: 0;
  white-space: nowrap;
}

.slider-item.swiper-slide-active .slide-button {
  animation: animate_button 0.5s 1.3s linear forwards;
}

@keyframes animate_button {
  100% {
    width: 250px;
    opacity: 1;
  }
}

.slider-item .slide-content .slide-button span {
  opacity: 0;
}

.slider-item.swiper-slide-active .slide-button span {
  animation: animate_opacity 0.5s 1.5s linear forwards;
}

.slider-item .slide-content .slide-button:hover {
  color: var(--white-color);
  background: var(--black-color);
}

.slider-container .slider-controls {
  position: absolute;
  bottom: 45px;
  z-index: 30;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.slider-controls .slider-pagination {
  display: flex;
  list-style: none;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 20px;
  position: relative;
  justify-content: space-between;
}

.slider-pagination .slider-indicator {
  position: absolute;
  bottom: 0;
  border-bottom: 2px solid var(--black-color);
  transition: 0.4s ease-in-out;
}

.slider-pagination .slider-tab {
  color: #DBDADA;
  padding: 20px 30px;
  cursor: pointer;
  text-align: center;
  font-size: 0.85rem;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.slider-controls .slider-tab.current {
  color: var(--black-color);
}

.slider-navigations button {
  position: absolute;
  top: 50%;
  color: var(--white-color);
  z-index: 20;
  border: none;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-color);
  transform: translateY(-50%);
  transition: 0.4s ease;
}

.slider-navigations button:hover {
  background: #323235;
}

.slider-navigations button.swiper-button-disabled {
  display: none;
}

.slider-navigations button#slide-prev {
  left: 20px;
}

.slider-navigations button#slide-next {
  right: 20px;
}

/* artikel */

#article-wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}

section {
  width: 100%; 

}

section article h1 {
  font-size: 2.1em;
  padding: 0;
  margin:0;  
  text-align: center;
  line-height: 1em;
  padding-top:50px;
  padding-bottom:30px;
}

section article h1:after {
    content: '';
    display: block;
    position: relative;
    width: 15%;
    border: 2px solid #f68f80;
    margin-top: 8px; 
	left: 42%;
}

section article h2 {
  font-size: 1.5em;
  padding: 6px;
  margin:0;  
  text-align: left;
  line-height: 1.4em;
  padding-top: 20px;
}

section article h3 {
  font-size: 1.3em;
  padding: 6px;
  margin:0;  
  text-align: left;
  line-height: 1.4em;
  padding-top: 20px;
}

section article h4 {
  font-size: 1.1em;
  padding: 6px;
  margin:0;  
  text-align: left;
  line-height: 1.4em;
  padding-top: 20px;
}

section article p {
  padding: 15px 20px 15px 15px;
  font-size: 1.1em;
  line-height: 1.6em;
}

section article ul {
    list-style: none;
	padding: 6px;
}

section article li {
    position: relative;
	padding: 6px;
	color: var(--black-color);
}

section article li:before {
    content: "•";
    position: absolute;
    left: -1em;
    color: var(--black-color);
}

/* artikel gambar */

.wrap{margin: 0 10px;}

.textbox-1 {
  font-size: 1.1em;
  text-align: justify;
  min-height:100px;
  display:flex;
}
.inner{margin:auto;}
.inner h2{padding: 6px 0;text-align: left;}
.inner li {color: var(--black-color);}
.row {
	display: flex;
	justify-content:space-around;
	padding:25px 0 ;
	max-width:1280px;
	margin:10px auto;
}
.w60 {
	flex: 1 0 60%;
	background:var(--white-color);
    padding:10px 20px;
}
.w30{background:#000;flex:0 0 30%;}
.object-fit{
	overflow:hidden;
	position:relative;
}
.object-fit img{
	position: absolute;
	top:50%;
	left:50%;
	height:auto;
	width:auto;
	min-width:100%;
	min-height:100%;
	transform:translate(-50%, -50%);
}
@supports (object-fit: cover) {
  .object-fit img  {
    position: absolute;
    left:0;
    top:0;
    height: 100%;
    width: 100%;
    transform: none;
    object-fit: cover;
  }
}

/* Layanan Kami */
      .container4 {
        margin: 30px auto;
        padding: 40px 10px;
        max-width: 100%;
        min-width: 200px;
        background-color: var(--light-box-color);
        display: flex;
        flex-flow: wrap;
        justify-content: center;
        align-items: center;
        gap: 30px;
      }

      .container4 > div {
        max-width: calc(100% / 3);
        min-width: 300px;
        height: 380px;
        background-color: var(--white-color);
        text-align: center;
      }

      .container4  h3 {
        margin: 40px 0 10px;
		color: var(--black-color);
      }

      .container4 h5 {
        color: #f78787;
        margin-bottom: 20px;
      }

      .container4 h5 > span {
        font-size: 30px;
        color: #f78787;
        &::before {
          content: "";
          font-size: smaller;
          vertical-align: top;
        }
      }

      .container4 p {
        color: var(--black-color);
        margin-bottom: 15px;
		text-align: center;
      }
	  
	   .container4 a {
        color: var(--white-color);
        text-decoration:none;
      }

      buttons {
        all: initial;
        background-color: #f78787;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 20px;
        color: white;
      }

      buttons:hover {
        background-color: #0084ff;
        transform: scale(1.05);
        transition: all 0.3s ease;
      }

      /* the sticky header */

      div:nth-child(2) {
        position: relative;
        & .head {
          position: absolute;
          background-color: #fa5656;
          color: white;
          width: 80%;
          height: 30px;
          padding: 5px;
          font-size: 0.8em;
          top: -15px;
          left: 50%;
          transform: translateX(-50%);
          &::before,
          &::after {
            content: "";
            position: absolute;
            transform: rotate(45deg);
            border: 10px solid #fa5656;
          }
          &::before {
            border-top-color: transparent;
            border-right-color: transparent;
            border-bottom-color: transparent;
            left: -10px;
          }
          &::after {
            border-left-color: transparent;
            border-bottom-color: transparent;
            border-right-color: transparent;
            right: -10px;
          }
        }
      }
	  
/** global element styling **/

.container222 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.grid {
  display: flex;
}

#features {
  margin-top: 30px;
}

#features .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 125px;
  width: 20vw;
  color: red;
}

@media (max-width: 550px) {
  #features .icon {
    display: none;
  }
}

#features .desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 125px;
  width: 80vw;
  padding: 5px;
}

@media (max-width: 550px) {
  #features .desc {
    width: 100%;
    text-align: center;
    padding: 0;
    height: 150px;
  }
}

@media (max-width: 650px) {
  #features {
    margin-top: 0;
  }
}

/* Mengapa memilih layanan kami */
.container3 {
  width: 100%;
  padding: 0 8%;
}
.container3 h2 {
  text-align: center;
  padding-top: 6%;
  margin-bottom: 60px;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
}
.container3 h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: var(--main-color);
  border-radius: 20px;
}


.box {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.our-services {
    margin-top: 75px;
    padding-bottom: 30px;
    padding: 0 60px;
    min-height: 198px;
    text-align: center;
    border-radius: 10px;
    background-color: var(--light-box-color);
    transition: all .4s ease-in-out;
    box-shadow: 0 0 25px 0 rgba(20, 27, 202, .17)
}

.our-services .icon {
    margin-bottom: -21px;
    transform: translateY(-50%);
    text-align: center
}

.our-services:hover h4,
.our-services:hover p {
    color: #fff;
}

.speedup:hover {
    box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
    cursor: pointer;
    background-image: linear-gradient(-45deg, #fb0054 0%, #f55b2a 100%)
}

.settings:hover {
    box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
    cursor: pointer;
    background-image: linear-gradient(-45deg, #34b5bf 0%, #210c59 100%)
}

.privacy:hover {
    box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
    cursor: pointer;
    background-image: linear-gradient(-45deg, #3615e7 0%, #44a2f6 100%)
}

.backups:hover {
    box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
    cursor: pointer;
    background-image: linear-gradient(-45deg, #fc6a0e 0%, #fdb642 100%)
}

.ssl:hover {
    box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
    cursor: pointer;
    background-image: linear-gradient(-45deg, #8d40fb 0%, #5a57fb 100%)
}

.database:hover {
    box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
    cursor: pointer;
    background-image: linear-gradient(-45deg, #27b88d 0%, #22dd73 100%)
}


/* Kategori Layanan */

:root {
  --main-color: #f68f80;
}

.container2 {
  width: 100%;
  padding: 0 8%;
}
.container2 h2 {
  text-align: center;
  padding-top: 6%;
  margin-bottom: 60px;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
}
.container2 h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: var(--main-color);
  border-radius: 20px;
}
.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.row .service {
  padding: 25px 15px;
  background: var(--light-box-color);
  font-size: 15px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: 0.5s;
}

.row .service i {
  color: var(--main-color);
  margin-bottom: 20px;
  font-size: 40px;
  transition: 0.5s;
}
.row .service:hover i {
  color: #1e84c5;
}

.row .service:hover h3 {
  color: #1e84c5;
}

.row .service h2 {
  font-weight: 600;
  margin-bottom: 20px;
}

/* Pemesanan Layanan */

.steps {
  position: relative;
}
.steps:before {
  top: 125px;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 2px;
  background-color: #f36e5c;
  left: 50%;
  margin-left: -1px;
}

.timeline {
  margin: 0px auto;
  overflow: hidden;
  position: relative;
  padding: 0px;
  list-style-type: none;
}
.timeline .timeline-box {
  position: relative;
  float: left;
  clear: left;
  width: 45%;
  margin: 1em 2.5%;
  list-style-type: none;
  display: block;
  padding: 25px;
  background: var(--light-box-color);
  z-index: 15;
}

.timeline .timeline-box .timeline-title {
  color: var(--black-color);;
  font-weight: 700;
  font-size: 1em;
  float: left;
  padding-left: 25px;
  padding-top: 8px;
}
.timeline .timeline-box .timeline-details {
  clear: both;
  padding-top: 5px;
}
.timeline .timeline-box span {
  position: absolute;
  top: -15px;
  right: 24px;
  font-size: 8em;
  font-weight: 700;
  color: #ff4769;
  opacity: 0.1;
  z-index: -1;
}
@media all and (max-width: 600px) {
  .timeline .timeline-box {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.timeline .timeline-box:hover:after {
  background: #ff4769;
}
@media all and (min-width: 650px) {
  .timeline .timeline-box:after {
    display: block;
    content: ' ';
    height: 9px;
    width: 9px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    right: -6.55%;
    top: 1.5em;
    border: 2px solid #ff4769;
  }
}
.timeline .timeline-box:first-child {
  margin-bottom: 2.5em;
}
.timeline .timeline-box:nth-of-type(1n):before {
  position: absolute;
  top: 15px;
  right: -10px;
  display: inline-block;
  border-top: 10px solid transparent;
  border-left: 10px solid var(--light-box-color);
  border-right: 0 solid #f8f8f8;
  border-bottom: 10px solid transparent;
  content: " ";
}
.timeline .timeline-box:nth-of-type(2n) {
  float: right;
  clear: right;
}
.timeline .timeline-box:nth-of-type(2n):before {
  right: auto;
  left: -10px;
  position: absolute;
  top: 15px;
  display: inline-block;
  border-top: 10px solid transparent;
  border-right: 10px solid var(--light-box-color);
  border-left: 0 solid #f8f8f8;
  border-bottom: 10px solid transparent;
  content: " ";
}
@media all and (min-width: 600px) {
  .timeline .timeline-box:nth-of-type(2n) {
    margin-top: 3em;
  }
}
.timeline .timeline-box:nth-child(2n):after {
  left: -6.5%;
  right: auto;
}

.timeline-box:hover, .timeline-box:focus {
  transform: translate(0, -5px);
  -webkit-transform: translate(0, -5px);
  -ms-transform: translate(0, -5px);
}

.timeline-box:hover, .timeline-box:focus {
  -webkit-box-shadow: 0px 3px 0px 0px #ff4769;
  -moz-box-shadow: 0px 3px 0px 0px #ff4769;
  box-shadow: 0px 3px 0px 0px #ff4769;
}

.timeline-box {
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.steps-area {
  padding: 0;
}


/* Responsive media code for small devices */
@media (max-width: 768px) {

  .navbar {
    gap: 1rem;
  }

  .navbar .nav-center,
  body.show-mobile-search .navbar .nav-left,
  body.show-mobile-search .navbar .nav-right {
    display: none;
  }

  .navbar .nav-right .search-button,
  body.show-mobile-search .navbar .search-back-button,
  body.show-mobile-search .navbar .nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-layout .screen-overlay {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 15;
    width: 100%;
    height: 100vh;
    background: var(--overlay-dark-color);
    transition: 0.2s ease;
  }

  body.sidebar-hidden .main-layout .screen-overlay {
    opacity: 0;
    pointer-events: none;
  }

  .main-layout .sidebar {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 20;
    height: 100vh;
    transition: 0.2s ease;
  }

  body.sidebar-hidden .main-layout .sidebar {
    left: -280px;
  }

  .main-layout .sidebar .nav-left {
    display: flex;
  }
  
   .slider-wrapper .slider-item .slide-content > * {
    max-width: 100%;
  }
  
  .container4 > div {
          min-width: 80%;
  }
}


@media (max-width: 1536px) {
  .slider-wrapper .slider-item .slide-content,
  .slider-controls .slider-pagination {
    width: 85%;
  }
}

@media (max-width: 1024px) {
  .slider-wrapper .slider-item .slide-content,
  .slider-controls .slider-pagination {
    width: 100%;
  }

  .slider-wrapper .slider-item .slide-content > * {
    max-width: 66%;
  }

  .slider-container .slider-controls {
    bottom: 50px;
  }

  @keyframes animate_button {
    100% {
      width: 100%;
      opacity: 1;
    }
  }

  .slider-navigations button {
    top: unset;
    bottom: -15px;
    background: none;
  }

  .slider-navigations button:hover {
    background: none;
  }
}

/* Kontak */

:root{
  --header-height: 3rem;

  /*===== Font and typography =====*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*===== Font weight =====*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*===== Margins =====*/
  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;

  /*===== z index =====*/
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
}
  
@media screen and (min-width: 768px){
  :root{
    --biggest-font-size: 4.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

.section {
  padding: 4rem 0 2rem;
}

.section-titles, .section-subtitle {
  text-align: center;
}

.section-titles {
  font-size: var(--h1-font-size);
  color: var(--black-color);
  margin-bottom: var(--mb-3);
}

.section-subtitle {
  display: block;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--black-color);
}

/*===== LAYOUT =====*/
.bd-container {
  max-width: 1024px;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}

.bd-grid {
  display: grid;
  gap: 1.5rem;
}


/*===== CONTACT ME =====*/
.contact__container {
  row-gap: 2.5rem;
}

.contact__content {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact__box {
  background-color: var(--light-box-color);
  border-radius: .5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(174, 190, 205, .3);
}

.contact__icon, .contact__title {
  color: var(--black-color);
}

.contact__icon, .contact__description {
  color: var(--black-color);
}

.contact__icon {
  font-size: 2rem;
}

.contact__title {
  font-size: var(--h3-font-size);
  margin: var(--mb-1) 0;
}

.contact__box:hover {
  box-shadow: 0 6px 8px rgba(174, 190, 205, .4);
}


/*===== MEDIA QUERIES =====*/
@media screen and (min-width: 576px) {
  .contact__form {
    width: 450px;
    justify-self: center;
  }
}

@media screen and (min-width: 1024px) {
  .bd-container {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Map */
.responsive-map-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.responsive-map-container iframe,   
.responsive-map-container object,  
.responsive-map-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Tentang */

.about {
    padding: 13px 0;
	background-color: var(--light-box-color);
}

.about .heading h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    padding: 0;
	text-align: center;
}

.about .heading h1:after {
    content: '';
    display: block;
    position: relative;
    width: 15%;
    border: 2px solid #f68f80;
    margin-top: 8px; 
	left: 42%;
}

.about .heading h1 span {
    color: #F24259;
}

.about .heading p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--black-color);
    padding: 0;
    margin: 20px 0 60px;
	text-align: center;
}

.about h2 {
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    padding: 15px;
}

.about p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--black-color);
    margin: 20px 0 15px;
    padding: 15px;
	text-align: justify;
}

.about h3 {
    font-size: 15px;
    font-weight: 500;
    margin: 8px 0;
}

.about h3 i {
    color: #F24259;
    margin-left: 15px;
}

.about a {
    text-decoration: none;
	color: var(--black-color);
}

/*--- faq ---*/

faq-wrap {
  background-color: var(--light-box-color);
  color: var(--white-color);
}

.accordion {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
}
.accordion-item {
  background-color: var(--light-box-color);
  color: var(--black-color);
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}
.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}
.accordion-item-header.active::after {
  content: "\2212";
}
.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

/*--- whatsapp ---*/

.chat-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-header,
.chat-content,
.message-input {
  position: fixed;
  right: 20px;
  width: 300px;
  background-color: #e5ddd5;
  z-index: 10002;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.chat-header {
  top: calc(100% - 420px);
  height: 60px;
  background-color: #075e54;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  border-radius: 12px 12px 0 0;
}
.avatar-container {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.chat-header img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.online-dot {
  position: absolute;
  bottom: 12px;
  right: 0;
  left: 28px;
  width: 12px;
  height: 12px;
  background-color: #25d366;
  border-radius: 50%;
  border: 2px solid #075e54;
}
.chat-header-info {
  flex-grow: 1;
}
.chat-header h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
}
.online-status {
  font-size: 12px;
}
.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}
.close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.chat-content {
  top: calc(100% - 360px);
  height: 300px;
  padding: 20px;
  overflow-y: auto;
}
.message {
  max-width: 80%;
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 7.5px;
  position: relative;
  word-wrap: break-word;
}
.message.received {
  background-color: #ffffff;
  align-self: flex-start;
}
.message.sent {
  background-color: #dcf8c6;
  align-self: flex-end;
  margin-left: auto;
}
.message-input {
  bottom: 20px;
  height: 60px;
  display: flex;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 0 0 12px 12px;
}
.whatsapp-btn {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 12px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-btn:hover {
  background-color: #128c7e;
}
.typing-indicator {
  background-color: #e5ddd5;
  padding: 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
.typing-indicator span {
  height: 10px;
  width: 10px;
  float: left;
  margin: 0 1px;
  background-color: #9e9ea1;
  display: block;
  border-radius: 50%;
  opacity: 0.4;
}
.typing-indicator span:nth-of-type(1) {
  animation: 1s blink infinite 0.3333s;
}
.typing-indicator span:nth-of-type(2) {
  animation: 1s blink infinite 0.6666s;
}
.typing-indicator span:nth-of-type(3) {
  animation: 1s blink infinite 0.9999s;
}
@keyframes blink {
  50% {
    opacity: 1;
  }
}
.chat-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10001;
  animation: wave 2s infinite;
}
.chat-icon img {
  width: 35px;
  height: 35px;
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/*--- popup ---*/

.popup {
  display: none;
  position: fixed;
  padding: 20px;
  width: 300px;
  left: 50%;
  margin-left: -200px;
  height: 600px;
  top: 50%;
  margin-top: -250px;
  background: transparent;
  border: none;
  z-index: 20;
  text-align: center;
}

#popup:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -2;
}

#popup:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -1;
}

/* Styling buttons & webpage */

.popup button {
  background: black;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.popup button:hover {
    background-color: #F04A49;
    color: #FFF;
    border: 3px solid #F04A49;
    transition: all 0.3s ease 0s;
}

.popup p {
	margin: 1em 0;
  font-size: 16px;
}

.popupl {
  display: none;
  width: 90%;
  max-width: 600px;
  position: fixed;
  padding: 20px;
  left: 50%;
  margin-left: -200px;
  height: 600px;
  top: 50%;
  margin-top: -250px;
  background: transparent;
  border: none;
  z-index: 20;
  text-align: center;
  
}

#popupl:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -2;
}

#popupl:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -1;
}

/* Styling buttons & webpage */

.popupl button {
  background: black;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
  display: flex;
  flex-direction: column;
}

.popupl button:hover {
    background-color: #F04A49;
    color: #FFF;
    border: 3px solid #F04A49;
    transition: all 0.3s ease 0s;
}

.popupl p {
  margin: 1em 0;
  font-size: 16px;
  text-align: center;
  background: transparent;
  color: white;
}

.popupm {
  display: none;
  width: 90%;
  max-width: 600px;
  position: fixed;
  padding: 20px;
  left: 50%;
  margin-left: -200px;
  height: 600px;
  top: 50%;
  margin-top: -250px;
  background: transparent;
  border: none;
  z-index: 20;
  text-align: center;
  
}

#popupm:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -2;
}

#popupm:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -1;
}

/* Styling buttons & webpage */

.popupm button {
  background: black;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
  display: flex;
  flex-direction: column;
}

.popupm button:hover {
    background-color: #F04A49;
    color: #FFF;
    border: 3px solid #F04A49;
    transition: all 0.3s ease 0s;
}

.popupm p {
  margin: 1em 0;
  font-size: 16px;
  text-align: center;
  background: transparent;
  color: white;
}


.popupn {
  display: none;
  width: 90%;
  max-width: 600px;
  position: fixed;
  padding: 20px;
  left: 50%;
  margin-left: -200px;
  height: 600px;
  top: 50%;
  margin-top: -250px;
  background: transparent;
  border: none;
  z-index: 20;
  text-align: center;
  
}

#popupn:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -2;
}

#popupn:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -1;
}

/* Styling buttons & webpage */

.popupn button {
  background: black;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
  display: flex;
  flex-direction: column;
}

.popupn button:hover {
    background-color: #F04A49;
    color: #FFF;
    border: 3px solid #F04A49;
    transition: all 0.3s ease 0s;
}

.popupn p {
  margin: 1em 0;
  font-size: 16px;
  text-align: center;
  background: transparent;
  color: white;
}

.popupp {
  display: none;
  width: 90%;
  max-width: 600px;
  position: fixed;
  padding: 20px;
  left: 50%;
  margin-left: -200px;
  height: 600px;
  top: 50%;
  margin-top: -250px;
  background: transparent;
  border: none;
  z-index: 20;
  text-align: center;
  
}

#popupp:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -2;
}

#popupp:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -1;
}

/* Styling buttons & webpage */

.popupp button {
  background: black;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
  display: flex;
  flex-direction: column;
}

.popupp button:hover {
    background-color: #F04A49;
    color: #FFF;
    border: 3px solid #F04A49;
    transition: all 0.3s ease 0s;
}

.popupp p {
  margin: 1em 0;
  font-size: 16px;
  text-align: center;
  background: transparent;
  color: white;
}

/*--- calculator ---*/

input{
  font-size: 18px;
  font-weight: 900;
  outline: none;
}

.calculator {
  width: 300px;
  padding: 20px;
  background-color: #262626;
  border-radius: 10px;
  box-shadow: 0 2px 9px rgba(0,0,0,.3);
  position: relative;
}
#screen {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
}
#screen > input {
  width: 100%;
  height: 100%;
  background-color: #50755a;
  border: none;
  border-radius: 5px;
  text-align: right;
  font-size: 18px;
  padding: 0 10px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.8);
  color: #111;
}
#buttons-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 13px 0;
}
#buttons-inner > input {
  flex-basis: 23%;
  height: 40px;
  border: none;
  border-radius: 6px;
  background-color: #e8e8e8;
  color: #333;
  box-shadow: 0 2px 4px rgba(0,0,0,.3);

}
#equal {
  background-color: orangered !important;
  color: #fff !important;
}

#button-l {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#button-l input {
  height: 40px;
  border-radius: 6px;
  border: none;
  box-shadow: 0 2px 4px rgba(0,0,0,.3);

}
#button-l #clear {
  width:37%;
  color: #333;
}
#button-l #theme {
  width: 57%;
  background-color: #777;
  color: #fff;
}
.display .theme, .display .overlay {
  opacity: 1;
  visibility: visible;
}
.dark-theme {
  background-color: #363636;
}
.light-theme {
  background-color: #e8e8e8;
}
.light-theme #buttons-inner > input {
  background-color: #555;
  color: #e8e8e8
}

.light-theme #button-l #theme {
  background-color: #262626;
}

/*--- video ---*/

container77 {
  padding:0;
  margin:10px;
  position: relative;
  border: 2px var(--border-color); 
  display: block; 
  overflow: hidden; 
  background: url(https://steamuserimages-a.akamaihd.net/ugc/400086242642081746/F4586E52EC8F72B1C6B3506480D5D992C7D9D61B/) center center;
  background-size: 100%;
  }

video {
  max-width:1400px; 
  display: block;
  position: relative;
  border: 0; 
  padding: 0; 
}

@media (width: 768px) {
container77 {
   flex-direction: column;
   height:100vh; /* for mobile sur codepen */
   padding-bottom:70px;;/* for mobile sur codepen */
 }  
}	


/* checkbox hide */
#volume-switcher {
  display: none; 
}

/* volume on : container */
#switcher-container {
  display:block;
  position: absolute;
  top:0; left:0; bottom:0; right:0;  
  cursor: pointer;
  opacity: 0.8;
  filter: invert(1); /* changer couleur icon */
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in 0s;
}

/* volume on : button */ 
#switcher-container:after {
  content: "";
  border: 0px solid black;
  background: url(https://res.cloudinary.com/quentindigital/image/upload/v1598656567/icons/sound-off_rhwz0o.svg) center center;
  background-size: 100%;
  bottom: 10px;
  right: 10px;
  position: absolute;
  width: 40px;
  height: 40px;
}

#switcher-container:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in 0s;}

/* volume off : container */
#volume-switcher:checked + #switcher-container {
  background-color: rgba(255, 255, 255, 0);
  opacity: 0.1;
  -webkit-transition: all 0.7s ease-in 1s;
  -moz-transition: all 0.7s ease-in 1s;
  transition: all 0.7s ease-out 1s;   
}

/* volume off : hover */
#volume-switcher:checked + 
#switcher-container:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: opacity 0.3s ease-out 0s;}

/* volume off : button */
#volume-switcher:checked + #switcher-container:after {
  right: 10px;
  content: "";
  background: url(https://res.cloudinary.com/quentindigital/image/upload/v1598656567/icons/sound-on_vztd3h.svg) center center;
  background-size: 100%;
}


/* dictionary */
.dictwrap {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e9f2ff;
}
.container33{
    width: 90%;
    max-width: 600px;
    padding: 2.5rem 2rem 3rem;
    background-color: #0F2C59;
    color: #fff;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 20px #5691e9;
    margin: 2rem 0;
}
.container33 h5{
    text-align: center;
    font-size: 25px;
	color: white;
}
.container33 input{
    padding: 1rem;
    outline: none;
    border: none;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 16px;
    width: 70%;
}
.container33 .meaning-conteiner{
    margin-top: 1rem;
    display: none;
    width: 100%;
}
.container33 audio{
    margin-top: 1rem;
    width: 100%;
}
.container33 .meaning-conteiner > p{
    color: #4e83ff;
    font-size: 18px;
}
.container33 span{
    color: #f1f1f1;
    font-size: 17px;
    margin-left: 5px;
}

/* blogpost */

article111 {
  --img-scale: 1.001;
  --link-icon-translate: -20px;
  --link-icon-opacity: 0;
  position: relative;
  border-radius: 16px;
  box-shadow: none;
  background: var(--light-gray-color);
  transform-origin: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

article111 a::after {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  cursor: pointer;
  content: "";
}

article111 h2 {
  margin: 0 0 18px 0;
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  color: var(--black-color);
  transition: color 0.3s ease-out;
}

figure111 {
  margin: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

article111 img {
  max-width: 100%;
  transform-origin: center;
  transform: scale(var(--img-scale));
  transition: transform 0.4s ease-in-out;
}

.article-body111 {
  padding: 24px;
}

article111 a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--black-color);
}

article111 a:focus {
  outline: 1px dotted #28666e;
}

article111 a .icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  transform: translateX(var(--link-icon-translate));
  opacity: var(--link-icon-opacity);
  transition: all 0.3s;
}

/* using the has() relational pseudo selector to update our custom properties */
article111:has(:hover, :focus) {
  --img-scale: 1.1;
  --link-icon-translate: 0;
  --link-icon-opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}


.articles111 {
  display: grid;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

@media screen and (max-width: 960px) {
  article111 {
    container111: card/inline-size;
  }
  .article-body111 p {
    display: none;
  }
}

@container card (min-width: 380px) {
  .article-wrapper111 {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }
  .article-body111 {
    padding-left: 0;
  }
  figure111 {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  figure111 img {
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0); 
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; 
  width: 1px;
}

/* layanan kami juga */

.section222{
	background:var(--white-color);
    width:100%;
    margin-top:10px;
    padding-top:10px;
    display:flex;
    justify-content: center;
    align-items:center;
    flex-direction:row;
}

.sec2img{
    width:30%;
    margin-left:0px;
    margin-right:30px;
}

.text2{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    width:60%;
    font-family: 'Raleway', sans-serif;
    margin-top:-30px;
    margin-left:30px;
    color:var(--black-color);
}

.text2 h2{
    font-size:1.6em;
    line-height:70px;

}

.text2 p{
	font-size:1.2em;
    margin-right:70px;
	line-height:25px;
}

.background-color{
    background-color:hvar(--white-color);
    width:100%;
    margin-top:-30px;
    left:0;
    display:flex;
    justify-content: center;
    align-items:center;
    flex-direction:row;
    padding-top:30px;
    padding-bottom:40px;
}


/* Blogcard */

.snip1493 {
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 250px;
  max-width: 310px;
  width: 100%;
  background-color:var(--white-color);
  color:var(--black-color);
  text-align: left;
  font-size: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.snip1493 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.snip1493:after {
  position: absolute;
  top: 12px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 25px;
  border-color: transparent transparent transparent #d2652d;
  content: '';
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.snip1493 img {
  max-width: 100%;
  vertical-align: top;
  position: relative;
}

.snip1493 figcaption {
  padding: 20px 20px 30px;
  background-color:var(--light-gray-color);
}

.snip1493 .date {
  background-color: #d2652d;
  top: 15px;
  color: #ffffff;
  right: 15px;
  min-height: 48px;
  min-width: 48px;
  position: absolute;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50%;
  padding: 10px 0;
}

.snip1493 .date span {
  display: block;
  line-height: 14px;
}

.snip1493 .date .month {
  font-size: 11px;
}

.snip1493 h3,
.snip1493 p {
  margin: 0;
  padding: 0;
}

.snip1493 h3 {
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 700;
}

.snip1493 p {
  font-size: 0.8em;
  margin-bottom: 20px;
  line-height: 1.6em;
}

.snip1493 footer {
  padding: 0 25px;
  color:var(--black-color);
  font-size: 0.8em;
  line-height: 50px;
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.snip1493 footer > div {
  display: inline-block;
  margin-right: 15px;
}

.snip1493 footer i {
  margin-right: 5px;
  font-size: 1.2em;
}

.snip1493 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.snip1493:hover:after,
.snip1493.hover:after {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

/* Bullet */

ul, 
ol {
  position: relative;
  list-style: none;
  padding: 0;
}

/* Add indentation of nested lists and remove bottom margin */
ul ul,
ol ol {
  margin: 0;
}

/* Add general display for bullets and numbers */
ul li,
ol li {
  padding-left: 1em;
  margin: .25em 0;
}

ul li:before,
ol li:before {
  position: absolute;
  left: 0;
}

/* Style for bullet lists */
ul li:before {
	content: '\2022';
	color: #333;
}

/* Reset counter for each list */
ol {
	counter-reset: listitem;
}

ol li {
  padding-left: 1.3em;
}

/* Style for numbered lists. Increment counter for each list item */
ol li:before {
  counter-increment: listitem;
  content: counters(listitem, '.') '.';
}

ol ol li {
  padding-left: 2.3em;
}

/* TODO list */
ul.no-bullets li {
  padding: 0; 
  margin: 0; 
}

ul.no-bullets li:before {
  list-style-type: none; 
}

ul.todo li {
  padding-left: 1.3em;
}

ul.todo li:before {
  content: '\2610';
  color: #333;
}

ul.todo li.good:before {
  content: '\2611';
  color: #156915;
}

ul.todo li.bad:before {
  content: '\2612';
  color: #971E1E;
}

/* Kalender */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;200;300;400;500;600;700&display=swap');

:root {
    --calendar-bg-color: #262829;
    --calendar-font-color: #FFF;
    --weekdays-border-bottom-color: #404040;
    --calendar-date-hover-color: #505050;
    --calendar-current-date-color: #1b1f21;
    --calendar-today-color: linear-gradient(to bottom, #03a9f4, #2196f3);
    --calendar-today-innerborder-color: transparent;
    --calendar-nextprev-bg-color: transparent;
    --next-prev-arrow-color : #FFF;
    --calendar-border-radius: 16px;
    --calendar-prevnext-date-color: #484848
}

* {
    padding: 0;
    margin: 0;
}

.calendar {
    font-family: 'IBM Plex Sans', sans-serif;
    position: relative;
    max-width: 400px; /*change as per your design need */
    min-width: 320px;
    color: var(--white-color);
    background: var(--black-color);
    margin: 20px auto;
    box-sizing: border-box;
    overflow: hidden;
    font-weight: normal;
    border-radius: var(--calendar-border-radius);
}

.calendar-inner {
    padding: 10px 10px;
}

.calendar .calendar-inner .calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.calendar .calendar-inner .calendar-body div {
    padding: 4px;
    min-height: 30px;
    line-height: 30px;
    border: 1px solid transparent;
    margin: 10px 2px 0px;
}

.calendar .calendar-inner .calendar-body div:nth-child(-n+7) {
    border: 1px solid transparent;
    border-bottom: 1px solid var(--weekdays-border-bottom-color);
}

.calendar .calendar-inner .calendar-body div:nth-child(-n+7):hover {
    border: 1px solid transparent;
    border-bottom: 1px solid var(--weekdays-border-bottom-color);
}

.calendar .calendar-inner .calendar-body div>a {
    color: var(--white-color);
    text-decoration: none;
    display: flex;
    justify-content: center;
}

.calendar .calendar-inner .calendar-body div:hover {
    border: 1px solid var(--calendar-date-hover-color);
    border-radius: 4px;
}

.calendar .calendar-inner .calendar-body div.empty-dates:hover {
    border: 1px solid transparent;
}

.calendar .calendar-inner .calendar-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.calendar .calendar-inner .calendar-today-date {
    display: grid;
    text-align: center;
    cursor: pointer;
    margin: 3px 0px;
    background: var(--black-color);
    padding: 8px 0px;
    border-radius: 10px;
    width: 80%;
    margin: auto;
}

.calendar .calendar-inner .calendar-controls .calendar-year-month {
    display: flex;
    min-width: 100px;
    justify-content: space-evenly;
    align-items: center;
}

.calendar .calendar-inner .calendar-controls .calendar-next {
    text-align: right;
}

.calendar .calendar-inner .calendar-controls .calendar-year-month .calendar-year-label,
.calendar .calendar-inner .calendar-controls .calendar-year-month .calendar-month-label {
    font-weight: 500;
    font-size: 20px;
}

.calendar .calendar-inner .calendar-body .calendar-today {
    background: var(--calendar-today-color);
    border-radius: 4px;
}

.calendar .calendar-inner .calendar-body .calendar-today:hover {
    border: 1px solid transparent;
}

.calendar .calendar-inner .calendar-body .calendar-today a {
    outline: 2px solid var(--calendar-today-innerborder-color);
}

.calendar .calendar-inner .calendar-controls .calendar-next a,
.calendar .calendar-inner .calendar-controls .calendar-prev a {
    color: var(--white-color);
    font-family: arial, consolas, sans-serif;
    font-size: 26px;
    text-decoration: none;
    padding: 4px 12px;
    display: inline-block;
    background: var(--black-color);
    margin: 10px 0 10px 0;
}

.calendar .calendar-inner .calendar-controls .calendar-next a svg,
.calendar .calendar-inner .calendar-controls .calendar-prev a svg {
    height: 20px;
    width: 20px;
}

.calendar .calendar-inner .calendar-controls .calendar-next a svg path,
.calendar .calendar-inner .calendar-controls .calendar-prev a svg path{
    fill: var(--white-color);
}

.calendar .calendar-inner .calendar-body .prev-dates,
.calendar .calendar-inner .calendar-body .next-dates {
    color: var(--white-color);
}

.calendar .calendar-inner .calendar-body .prev-dates:hover,
.calendar .calendar-inner .calendar-body .next-dates:hover {
  border: 1px solid transparent;
  pointer-events: none;
}

/* Delivery */
#motor{position: relative;
  animation-name: ex13;
  animation-duration:14s;
   animation-iteration-count: infinite;}
@keyframes ex13 {
  0%  {transform: translate(-1000px, 0px);}
  70%  {transform: translate(1300px, 0px);}
  100% {transform: translate(2500px, 0px);} }
  
  #airplan{position: relative;
  animation-name: ex12;
  animation-duration:34s;
   animation-iteration-count: infinite;}
@keyframes ex12 {
  0%  {transform: translate(-1500px, -300px);}

  100% {transform: translate(2500px, 0px);} }
  
  #truck{position: relative;
  animation-name: e13;
  animation-duration:17s;
   animation-iteration-count: infinite;}
@keyframes e13 {
  0%  {transform: translate(-2000px, 0px);}
  70%  {transform: translate(1000px, 0px);}
  100% {transform: translate(2000px, 0px);} }
  
  #baloon,#fast{position: relative;
  animation-name: ex;
  animation-duration:14s;
   animation-iteration-count: infinite;}
@keyframes ex {
  0%  {transform: translate(0px, -20px);}
  50%  {transform: translate(0px, 30px);}
  100% {transform: translate(0px, -20px);} }
  #cloud{position: relative;
  animation-name: ex3;
  animation-duration:14s;
   animation-iteration-count: infinite;}
@keyframes ex3 {
  0%  {transform: translate(-30px, 0px);}
  50%  {transform: translate(30px, 0px);}
  100% {transform: translate(-30px, 0px);} }
.cls-1{fill:url(#linear-gradient);}.cls-2{isolation:isolate;}.cls-3{fill:#bbd9ea;}.cls-4{opacity:0.47;}.cls-5{mix-blend-mode:lighten;}.cls-6{fill:#fff;}.cls-7{opacity:0.36;}.cls-8{fill:#1f60b0;}.cls-9{opacity:0.07;}.cls-10{fill:#e7eefe;}.cls-11{fill:#cbdbfd;}.cls-12{fill:url(#linear-gradient-2);}.cls-13{fill:url(#linear-gradient-3);}.cls-14{fill:url(#linear-gradient-4);}.cls-15{fill:#b1c9fd;}.cls-16{fill:none;}.cls-17{fill:#350fa2;}.cls-18{fill:url(#linear-gradient-5);}.cls-19{fill:url(#linear-gradient-6);}.cls-20{fill:url(#linear-gradient-7);}.cls-21{fill:url(#linear-gradient-8);}.cls-22{fill:url(#linear-gradient-9);}.cls-23{fill:url(#linear-gradient-10);}.cls-24{fill:url(#linear-gradient-11);}.cls-25{fill:url(#linear-gradient-12);}.cls-26{fill:url(#linear-gradient-13);}.cls-27{fill:#808285;}.cls-28{fill:#ff6f69;}.cls-29{fill:#c132ae;}.cls-30{fill:#6099dc;}.cls-31{fill:url(#linear-gradient-14);}.cls-32{fill:url(#linear-gradient-15);}.cls-33{fill:#753397;}.cls-34{fill:url(#linear-gradient-16);}.cls-35{fill:url(#linear-gradient-17);}.cls-36{fill:#782388;}.cls-37{fill:url(#linear-gradient-18);}.cls-38{fill:#5876d6;}.cls-39{fill:url(#linear-gradient-19);}.cls-40{fill:#414042;}.cls-41{fill:#f8a595;}.cls-42{fill:#f7a08c;}.cls-43{fill:url(#linear-gradient-20);}.cls-44{fill:url(#linear-gradient-21);}.cls-45{fill:url(#linear-gradient-22);}.cls-46{fill:url(#linear-gradient-23);}.cls-47{fill:#231f20;}.cls-48{fill:url(#linear-gradient-24);}.cls-49{fill:#dbe2f2;}.cls-50{fill:#d0efe2;}.cls-51{fill:#f8f5ff;}.cls-52{fill:#beedda;}.cls-53{fill:url(#linear-gradient-25);}.cls-54{fill:url(#linear-gradient-26);}.cls-55{fill:#dae3f2;}.cls-56{fill:url(#linear-gradient-27);}.cls-57{fill:url(#linear-gradient-28);}.cls-58{fill:url(#linear-gradient-29);}.cls-59{fill:url(#linear-gradient-30);}.cls-60{fill:url(#linear-gradient-31);}.cls-61{fill:url(#linear-gradient-32);}.cls-62{fill:url(#linear-gradient-33);}.cls-63{fill:url(#linear-gradient-34);}.cls-64{fill:url(#linear-gradient-35);}.cls-65{fill:url(#linear-gradient-36);}.cls-66{fill:url(#linear-gradient-37);}.cls-67{fill:url(#linear-gradient-38);}.cls-68{fill:url(#linear-gradient-40);}.cls-69{fill:url(#linear-gradient-42);}.cls-70{fill:url(#linear-gradient-43);}.cls-71{fill:url(#linear-gradient-44);}.cls-72{fill:#ffc572;}.cls-73{clip-path:url(#clip-path);}.cls-74{fill:url(#linear-gradient-46);}.cls-75{fill:url(#linear-gradient-47);}.cls-76{fill:url(#linear-gradient-48);}.cls-77{fill:url(#linear-gradient-49);}.cls-78{fill:url(#linear-gradient-50);}.cls-79{fill:#ff7e78;}.cls-80{fill:url(#linear-gradient-51);}.cls-81{fill:url(#linear-gradient-52);}.cls-82{fill:url(#linear-gradient-53);}

/* Kurir */

.kurirwrap {
	font-size: 42px;
	margin: 0;
	padding: 16px;
	background: var(--light-gray-color);
}
header11111 {
	padding: 32px;
	text-align: center;
	color: var(--black-color);
}
header11111 h3 {
	font-size: 1.4rem;
}
header11111 p {
	font-size: 1rem;
	text-align: center;
}

/*///////////// gallery CSS /////////////*/

.-fx-image-gal {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	margin: 0 auto;
	width: 100%;
	max-width: 960px;
	justify-content: center;
}
.-fx-gal-item {
	width: 100%;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}

.-fx-gal-item a {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	background-color: white;
}

.-fx-gal-image-thumb img {
	width: 100%;
	cursor: pointer;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	filter: grayscale(100%);
	transform: scale(1.1);
	transition: all 0.5s ease;
}

.-fx-gal-image-thumb:hover img {
	cursor: pointer;
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	filter: grayscale(0%);
	transform: scale(1.5);
	transition: all 0.5s ease;
}
@media (min-width: 420px) {
	.-fx-image-gal {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.-fx-gal-item {
		width: 50%;
	}
}
@media (min-width: 768px) {
	.-fx-gal-item {
		width: 33.33%;
	}
}

/* weather */

.container5555 {
	display: flex;
	justify-content: center;
	align-items: center;
}

.card5555 {
	display: flex;
	flex-direction: column;
	background: #26c2e1;

	overflow: hidden;

	height: 400px;
	width: 350px;
	box-shadow: 1rem 0 5rem #000;
	border-radius: 5%;

	transition: 0.2s;
}

.card5555:first-child {
	z-index: 1;
}

.card5555:nth-child(2) {
	height: 350px;
	width: 250px;
	margin-left: -150px;

	background: #595959;
}

.card5555:nth-child(2):hover {
	margin-left: -20px;
}

.card5555-body {
	padding: 2rem;
}

.card5555-back {
	display: flex;
	flex-direction: column;
	margin-left: 2rem;
	margin-right: 1rem;
}

.data-item {
	height: 30px;
	margin-top: 2rem;
	border-bottom: 2px solid white;
}
.data-item > h3 {
	margin: 0;
	float: left;
	color: #ffffff;
}
.data-item > span {
	float: right;
	color: #ffffff;
}

.card5555-text {
	padding-top: 1rem;
}

.card5555-title {
	color: #595959;
	font-size: 26px;
}

.bg-svg {
	margin-top: -2rem;
	stroke: #cfdbd5;
	fill: #cfdbd5;
}

/* pilihan bahasa */

 table {
	 width: 100%;
	 border-collapse: collapse;
	 margin: 0 auto;
	 text-align: left;
}
 caption {
	 font-weight: normal;
	 font-size: 0.875rem;
	 padding: 0.5rem 0;
	 caption-side: bottom;
	 color: rgba(128, 128, 128, 1);
	 text-align: left;
}
 caption a{
	 text-decoration: none;
	 color: var(--black-color);
}
 thead {
	 background: var(--light-gray-color);
}
 th, td {
	 border: 1px solid rgba(191, 191, 191, 1);
	 padding: 0.5rem;
	 color: var(--black-color);
}

/*--- Testimonial Section Start ---*/

@import url("https://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

img {
  max-width: 100%;
}

.mainz {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-gray-color);
}

.container333 {
  width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  margin: 40px 0px;
}

.title h2 {
  font-size: 50px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.title .underline {
  width: 100px;
  height: 4px;
  background-color: #177a29;
  margin: 0 auto;
}

.review {
  width: 100%;
  height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background-color: var(--white-color);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
  font-family: "Open Sans", sans-serif;
}

#person-img {
  width: 150px;
  height: 150px;
  background-size: cover;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.5);
}

#author {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 10px;
}

#rating {
  line-height: 150%;
  margin-bottom: 10px;
  text-shadow: 1px 1px #474747;
  font-size:25px;
  color:#efab1a;
}

#info {
  height: 100px;
  font-size: 18px;
  color: var(--black-color);
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}

.btn {
  text-decoration: none;
  border-style: none;
  background-color: transparent;
  font-size: 30px;
  padding-top: 60px;
  margin: 0 10px;
  color: var(--black-color);
  cursor: pointer;
}


/*--- google button ---*/


.google-button {
  display: block;
  margin: 15px auto;
  width: 70%;
  max-width: 270px;
  padding: 10px 10px 10px 50px;
  border: 2px solid var(--black-color);
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  color: var(--black-color);
  background: url(https://cdn2.hubspot.net/hubfs/1961464/Support%20images/new-google-favicon-512.png) no-repeat left 20px center / 40px 40px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
    -webkit-animation: wiggle 2s ease-in infinite;
    -moz-animation: wiggle 2s ease-in infinite;
    -o-animation: wiggle 2s ease-in infinite;
  animation: wiggle 2s ease-in infinite;
}

  .google-button:hover {
    color: #ffffff;
    background-color: #00a0dc;
    background-image: url(https://cdn2.hubspot.net/hubfs/1961464/Support%20images/new-google-favicon-512-white.png);
}

  .google-button strong {
    font-size: 18px;
    display: block;
  }


@-webkit-keyframes wiggle {
  0%, 20%, 100% { background-position: left 20px center; }
  5% { background-position: left 15px center; }
  10% { background-position: left 20px center; }
  15% { background-position: left 25px center; }
}

@-moz-keyframes wiggle {
  0%, 20%, 100% { background-position: left 20px center; }
  5% { background-position: left 15px center; }
  10% { background-position: left 20px center; }
  15% { background-position: left 25px center; }
}

@-o-keyframes wiggle {
  0%, 20%, 100% { background-position: left 20px center; }
  5% { background-position: left 15px center; }
  10% { background-position: left 20px center; }
  15% { background-position: left 25px center; }
}

@keyframes wiggle {
  0%, 20%, 100% { background-position: left 20px center; }
  5% { background-position: left 15px center; }
  10% { background-position: left 20px center; }
  15% { background-position: left 25px center; }
}