@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400&display=swap');

/* font style Montserrat */

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


/* Font Style Sans-Serif */


/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

a {
    text-decoration: none !important;
}

#pre-loader {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    background: white;
    overflow: hidden;
}

#pre-loader .pulse {
    height: 150px;
    width: 150px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 50px;
    color: #ffffff;
}

#pre-loader .pulse:before,
#pre-loader .pulse:after {
    content: "";
    position: absolute;
    height: 50%;
    width: 50%;
    background-color: gray;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
}

#pre-loader .pulse:before {
    animation: pulse 2s ease-out infinite;
}

#pre-loader .pulse:after {
    animation: pulse 2s 1s ease-out infinite;
}

@keyframes pulse {
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

#pre-loader .pulse img {
    width: 75px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

#header .logo a span {
    color: #1bbd36;
}

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


/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/

@media (max-width: 992px) {
    .header-social-links {
        margin-top: 40px;
    }
}

.header-social-links a {
    color: #a0a0a0;
    display: inline-block;
    line-height: 0px;
    transition: 0.3s;
    padding-left: 20px;
}

.header-social-links a i {
    line-height: 0;
}

.header-social-links a:hover {
    color: #8fc544;
}

@media (max-width: 768px) {
    .header-social-links {
        padding: 0 15px 0 0;
        border-left: 0;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

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

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #8fc544;
}

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

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

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #111;
}

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

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

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

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

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

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


/**
* Mobile Navigation 
*/

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

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

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

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 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 {
    padding: 10px 20px;
    font-size: 15px;
    color: #111;
}

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

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

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

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

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

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

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

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


/* Home page */

.cd-container {
    /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
}

@media screen and (width: 1024px) {}


/* @media screen and (min-width: 1368) {
    .klien {
        margin-top: 20%;
    }
} */

@media screen and (width: 768px) {}


/* .cd-container::after {
    clearfix content: '';
    display: table;
    clear: both;
} */

.cd-main-content {
    /* you need to assign a min-height to the main content so that the children can inherit it*/
    position: relative;
    z-index: 0;
}

.cd-fixed-bg {
    position: relative;
    min-height: 45%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 0;
}


/* .cd-fixed-bg h1,
.cd-fixed-bg h2 {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 90%;
    max-width: 1170px;
    text-align: center;
    font-size: 30px;
    font-size: 1.875rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    color: white;
} */

.cd-fixed-bg.cd-bg-1 {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/181085/track_riders_bg01.jpg");
}

.cd-fixed-bg.cd-bg-2 {
    background-image: linear-gradient(to left, rgba(255, 251, 251, 0), rgb(255, 255, 255)), url(../image/banner.jpg);
    background-size: cover;
}

.cd-fixed-bg.cd-bg-3 {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/181085/track_riders_bg03.jpg");
}

.cd-fixed-bg.cd-bg-4 {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/181085/track_riders_bg04.jpg");
}


/* @media only screen and (min-width: 320px) {
    .cd-fixed-bg h1,
    .cd-fixed-bg h2 {
        font-size: 36px;
    }
} */

@media only screen and (min-width: 480px) {
    .cd-fixed-bg {
        background-attachment: fixed;
    }
    /* .cd-fixed-bg h1,
    .cd-fixed-bg h2 {
        font-size: 48px;
        font-weight: 300;
    } */
}

.cd-scrolling-bg {
    position: relative;
    min-height: 50%;
    padding: 4em 0;
    line-height: 1.6;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cd-scrolling-bg.cd-color-1 {
    background-color: #3d3536;
    color: #a6989a;
}

.cd-scrolling-bg.cd-color-2 {
    background-color: #3d3536;
    color: #a6989a;
}

.cd-scrolling-bg.cd-color-3 {
    background-color: #ffffff;
    color: #000000;
}


/* @media only screen and (min-width: 480px) {
    .cd-scrolling-bg {
        padding: 8em 0;
        font-size: 20px;
        font-size: 1.25rem;
        line-height: 2;
        font-weight: 300;
    }
} */

.product {
    background-color: #b4dd7b;
    padding-top: 35px;
}

.kanan p {
    text-align: justify;
    padding-right: 20px;
    padding-left: 15px;
}

.limit-cr {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    -webkit-box-orient: vertical;
}

.get-started-btn {
    background: #8fc544;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.get-started-btn:hover {
    background: #6d9633;
    color: #fff;
}


/* Footer */

#footer {
    color: #37423b;
    font-size: 14px;
    background: rgb(219, 219, 219);
}

.footer-logo {
    max-height: 200px;
    max-width: 200px;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    margin-top: 30px;
    /* background: #7a4c1d; */
    background: rgb(219, 219, 219);
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: #777777;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
    margin-top: 20px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #8fc544;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #8fc544;
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #e0e5e2;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px 2px 20px;
    background: #8fc544;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: #3ac162;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
}

#footer .credits a {
    color: #3ac162;
    transition: 0.3s;
}

#footer .credits a:hover {
    color: #8fc544;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #8fc544;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #3ac162;
    color: #fff;
    text-decoration: none;
}


/* End footer */

.gambar-client {
    max-width: 100%;
    height: 30px;
    /* padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 15px; */
    margin-left: auto;
    margin-right: auto;
    display: block;
    /* margin-bottom: 25px;
    border: 2px solid rgb(230, 230, 230); */
}

@media screen and (min-width: 1025px) {
    .box-icon img {
        max-height: 100%;
        max-width: 100%;
        height: 300px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .carousel-inner img {
        width: auto;
        max-height: 780px;
        height: 100%;
    }
    .kotak {
        background-color: rgba(223, 223, 223, 0.623);
        border-radius: 8px;
    }
    .kanan {
        display: block;
        padding-left: 15px;
        margin-bottom: 25px;
    }
    .tetep {
        position: relative;
    }
}

@media screen and (width: 768px) {
    .box-icon img {
        max-height: 100%;
        max-width: 100%;
        height: 150px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .home {
        padding-top: 17%;
    }
    .kotak {
        background-color: rgba(223, 223, 223, 0.623);
        padding-right: 15px;
        padding-left: 15px;
        border-radius: 8px;
    }
    .kanan {
        display: block;
        text-align: center !important;
        color: rgb(100, 0, 0);
    }
    .tetep {
        position: relative;
    }
}

@media screen and (max-width: 650px) {
    .box-icon img {
        max-height: 100%;
        max-width: 100%;
        height: 150px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .kotak {
        background-color: rgba(223, 223, 223, 0.623);
        /* padding-bottom: 15px;
        padding-top: 15px; */
        border-radius: 8px;
    }
    .kanan {
        display: block;
        text-align: justify !important;
        color: rgb(100, 0, 0);
    }
    .tetep {
        position: relative;
    }
    .home {
        padding-top: 25%;
    }
}

@media screen and (max-width: 300px) {
    .box-icon img {
        max-height: 100%;
        max-width: 100%;
        height: 150px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .kotak {
        background-color: rgba(223, 223, 223, 0.623);
        /* padding-bottom: 15px;
        padding-top: 15px; */
        border-radius: 8px;
    }
    .kanan {
        display: block;
        text-align: justify !important;
        color: rgb(100, 0, 0);
    }
    .tetep {
        position: relative;
    }
    .home {
        padding-top: 35%;
    }
}

.carousel-inner img {
    width: 200px;
    max-width: 100%;
    max-height: 100%;
}

.box-item {
    border-radius: 8px;
    margin: 50px auto;
}

.box-info {
    padding: 66px 20px;
    position: relative;
    z-index: 0;
    background-color: #f4f4f4;
    border-radius: 10px;
    margin: 10px;
    text-align: center;
}

.box-info h6 {
    margin-top: 22px;
    line-height: 24px;
    letter-spacing: .1em;
    font-size: .875rem;
    font-weight: bold;
    text-transform: uppercase;
}

.box-info p {
    color: #555555;
    margin-top: 15px;
    font-size: .875rem;
}

.info-box__shadow:hover {
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, .4);
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

[class*=info-box__shadow] {
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}


/* News Page */

@media screen and (min-width: 1366px) {
    .news {
        padding-top: 5%;
        margin-bottom: 50px;
    }
    .welcome-news {
        margin-top: 20px;
    }
    .news-pic {
        max-width: 1000px;
        height: 320px;
        object-fit: cover;
    }
    .news-coba {
        margin-top: 200px;
    }
}

@media screen and (width: 1024px) {
    .news {
        padding-top: 7%;
        margin-bottom: 50px;
    }
    .tetep {
        position: relative;
    }
}

@media screen and (max-width: 768px) {
    .news {
        padding-top: 5%;
        margin-bottom: 50px;
    }
}


/* @media screen and (width: 320px) {
    .news {
        padding-top: 10%;
        margin-bottom: 50px;
    }
    .parent {
        width: 100%;
        margin: auto;
        padding: 10px;
    }
    .news-pic {
        max-width: 290px;
        max-height: 320px;
        object-fit: cover;
        display: block;
    }
} */

@media screen and (max-width: 650px) {
    .news {
        padding-top: 10%;
        margin-bottom: 50px;
    }
    .parent {
        width: 100%;
        margin: auto;
        padding: 10px;
        padding-top: 30px;
    }
    .news-pic {
        max-width: 100%;
        max-height: 320px;
        display: block;
    }
}


/* @media screen and (min-width: 1366px) {
    .news {
        padding-top: 7%;
        margin-bottom: 50px;
    }
    .tetep {
        position: relative;
    }
    .parent {
        width: 400px;
        margin: auto;
        padding: 10px;
    }
} */

.sticky {
    position: sticky;
}

.parent>div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* width: 100%;
    height: 100%; */
}

.parent .main div {
    width: 100%;
    height: 90%;
    position: relative;
}

.parent .main div:nth-child(2) {
    margin: 10px 0;
}


/* h2 {
    margin-left: 20px;
} */


/* h3::after {
    content: "";
    position: absolute;
    top: 25px;
    width: 50px;
    height: 2px;
    background-color: #6696EE;
} */

ul {
    /* margin-left: -17px; */
    /* list-style-type: none; */
}

.list ul li {
    margin: 7px 0;
    color: #6E6B66;
    position: relative;
    height: 65px;
    padding-top: 7%;
    border-radius: 8px;
}

.list a {
    color: #6E6B66;
}

.list li:hover {
    background-color: #8fc544;
    height: 70px;
    padding-top: 7%;
    padding-left: 7%;
    border-radius: 8px;
    transition: 0.5s;
}

.list a {
    text-decoration: none;
}

.list h3 {
    margin-top: 10px;
    margin-left: 10%;
}


/* .list h3::after {
    left: 200px;
} */


/* .list ul li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 25px;
    width: 320px;
    height: 2px;
    background-color: #DDD;
} */


/* .archives h3::after {
    top: 7%;
    margin-left: 5%;
    margin-right: auto;
} */

.archives ul li {
    margin: 30px 20px;
    color: #6E6B66;
    position: relative;
}

.archives li:hover {
    background-color: #dcf9ee;
    height: 30px;
    padding-left: 30px;
    padding-top: 2%;
    border-radius: 8px;
    transition: 0.5s;
}

.archives h3 {
    margin-left: 7%;
}

.fa-folder {
    margin-right: 10px;
}

.height {
    height: 100vh
}

.news-acc {
    background: linear-gradient(to bottom, #b2d67e, white);
}

.fixed {
    position: fixed;
}

.btn-green {
    border-radius: 8px;
    list-style: none;
    text-decoration: none;
    color: brown;
}

.btn-green:hover {
    color: #8fc544;
}


/* share button */

#floating-share-buttons {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 0;
}

.fa-address-book{
    margin-bottom: 20px;
}

#floating-share-buttons li {}

#floating-share-buttons a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

#floating-share-buttons a.share-facebook {
    background-color: #395793;
}

#floating-share-buttons a.share-pinterest {
    background-color: #b8171c;
}

#floating-share-buttons a.share-twitter {
    background-color: #1c9deb;
}

#floating-share-buttons a.share-linkedin {
    background-color: #21577e;
}

#floating-share-buttons a.share-whatsapp {
    background-color: #48a91f;
}

#floating-share-buttons a.share-mail {
    background-color: #333;
}


/*
  Breakpoint is 1024px. You change this value to adapt it to your design
*/


/* Desktop */

@media (min-width: 1023px) {
    ul#floating-share-buttons {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        min-height: 100px;
        padding: 0px;
    }
    ul#floating-share-buttons a {
        width: 3rem;
        height: 3rem;
        align-items: center;
        display: inline-flex;
        justify-content: center;
        transition: width 0.5s;
    }
    ul#floating-share-buttons a:hover {
        width: 4.5rem;
    }
    #floating-share-buttons a.share-whatsapp {
        display: none;
    }
}


/* Mobile */

@media (max-width: 1024px) {
    footer {
        padding-bottom: 4rem;
    }
    #floating-share-buttons {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
    }
    #floating-share-buttons li {
        display: inline-block;
        width: calc(100% / 6);
        padding: 0;
        margin: 0;
    }
    #floating-share-buttons li a {
        align-items: center;
        display: inline-flex;
        justify-content: center;
        height: 3rem;
        width: 100%;
    }
}


/* Product page */
.produk {
    margin-top: 150px;
}

@media screen and (max-width: 1366px) {
    .produk {
        margin-top: 125px;
    }
}

@media screen and (max-width: 920px) {
    .produk {
        margin-top: 125px;
    }
}

@media screen and (max-width: 768px) {
    .produk {
        margin-top: 150px;
    }
}

.carousel-produk {
    background-color: #8fc544;
}

.bungkus-produk {
    border-radius: 5px;
}

.bungkus-produk img {
    max-height: 80% !important;
    max-width: 100% !important;
    height: 350px !important;
    width: 350px !important;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.img-product {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: 700px;
}

.carousel-wrap {
    margin: 90px auto;
    padding: 0 5%;
    width: 80%;
    position: relative;
}

.product-gambar {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    max-height: 50%;
    height: 150px;
    width: 150px;
}

.produk-c {
    background-color: #8fc544;
}

.category-font{
    font-size: 25px;
}


/* Owl Carousel */

.owl-carousel .owl-wrapper:after {
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    content: ".";
    line-height: 0;
}


/* display none until init */

.owl-carousel {
    position: relative;
    display: none;
    width: 100%;
    -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
    position: relative;
    display: none;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
    float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
    cursor: pointer;
}

.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/* mouse grab icon */

.grabbing {
    cursor: url(../images/grabbing.png) 8 8, move;
}


/* fix */

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
}

.owl-theme .owl-controls {
    margin-top: 10px;
    text-align: center;
}


/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
    -webkit-perspective: 1200px;
    -webkit-perspective-origin-x: 50%;
    -webkit-perspective-origin-y: 50%;
    -moz-perspective: 1200px;
    -moz-perspective-origin-x: 50%;
    -moz-perspective-origin-y: 50%;
    perspective: 1200px;
}


/* fade */

.owl-fade-out {
    z-index: 0;
    -webkit-animation: fadeOut .7s both ease;
    -moz-animation: fadeOut .7s both ease;
    animation: fadeOut .7s both ease;
}

.owl-fade-in {
    -webkit-animation: fadeIn .7s both ease;
    -moz-animation: fadeIn .7s both ease;
    animation: fadeIn .7s both ease;
}


/* backSlide */

.owl-backSlide-out {
    -webkit-animation: backSlideOut 1s both ease;
    -moz-animation: backSlideOut 1s both ease;
    animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
    -webkit-animation: backSlideIn 1s both ease;
    -moz-animation: backSlideIn 1s both ease;
    animation: backSlideIn 1s both ease;
}


/* goDown */

.owl-goDown-out {
    -webkit-animation: scaleToFade .7s ease both;
    -moz-animation: scaleToFade .7s ease both;
    animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
    -webkit-animation: goDown .6s ease both;
    -moz-animation: goDown .6s ease both;
    animation: goDown .6s ease both;
}


/* scaleUp */

.owl-fadeUp-in {
    -webkit-animation: scaleUpFrom .5s ease both;
    -moz-animation: scaleUpFrom .5s ease both;
    animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
    -webkit-animation: scaleUpTo .5s ease both;
    -moz-animation: scaleUpTo .5s ease both;
    animation: scaleUpTo .5s ease both;
}

Keyframes */
/*empty*/


/* @-webkit-keyframes empty {
    0% {
        opacity: 1
    }
}

@-moz-keyframes empty {
    0% {
        opacity: 1
    }
}

@keyframes empty {
    0% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes backSlideOut {
    25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px);
    }
    75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(-200%);
    }
    100% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(-200%);
    }
}

@-moz-keyframes backSlideOut {
    25% {
        opacity: .5;
        -moz-transform: translateZ(-500px);
    }
    75% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(-200%);
    }
    100% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(-200%);
    }
}

@keyframes backSlideOut {
    25% {
        opacity: .5;
        transform: translateZ(-500px);
    }
    75% {
        opacity: .5;
        transform: translateZ(-500px) translateX(-200%);
    }
    100% {
        opacity: .5;
        transform: translateZ(-500px) translateX(-200%);
    }
}

@-webkit-keyframes backSlideIn {
    0%,
    25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(200%);
    }
    75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0) translateX(0);
    }
}

@-moz-keyframes backSlideIn {
    0%,
    25% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(200%);
    }
    75% {
        opacity: .5;
        -moz-transform: translateZ(-500px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateZ(0) translateX(0);
    }
}

@keyframes backSlideIn {
    0%,
    25% {
        opacity: .5;
        transform: translateZ(-500px) translateX(200%);
    }
    75% {
        opacity: .5;
        transform: translateZ(-500px);
    }
    100% {
        opacity: 1;
        transform: translateZ(0) translateX(0);
    }
}

@-webkit-keyframes scaleToFade {
    to {
        opacity: 0;
        -webkit-transform: scale(.8);
    }
}

@-moz-keyframes scaleToFade {
    to {
        opacity: 0;
        -moz-transform: scale(.8);
    }
}

@keyframes scaleToFade {
    to {
        opacity: 0;
        transform: scale(.8);
    }
}

@-webkit-keyframes goDown {
    from {
        -webkit-transform: translateY(-100%);
    }
}

@-moz-keyframes goDown {
    from {
        -moz-transform: translateY(-100%);
    }
}

@keyframes goDown {
    from {
        transform: translateY(-100%);
    }
}

@-webkit-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}

@-moz-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -moz-transform: scale(1.5);
    }
}

@keyframes scaleUpFrom {
    from {
        opacity: 0;
        transform: scale(1.5);
    }
}

@-webkit-keyframes scaleUpTo {
    to {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}

@-moz-keyframes scaleUpTo {
    to {
        opacity: 0;
        -moz-transform: scale(1.5);
    }
}

@keyframes scaleUpTo {
    to {
        opacity: 0;
        transform: scale(1.5);
    }
}


/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div {
    display: inline-block;
    margin: 5px;
    padding: 3px 10px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: #869791;
    color: #FFF;
    font-size: 12px;
    opacity: 0.5;
    filter: Alpha(Opacity=50);
    /*IE7 fix*/
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
}


/* Clickable class fix problem with hover on touch devices */


/* Use it for non-touch hover action */

.owl-theme .owl-controls.clickable .owl-buttons div:hover {
    text-decoration: none;
    opacity: 1;
    filter: Alpha(Opacity=100);
    /*IE7 fix*/
}


/* Styling Pagination*/

.owl-theme .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
}

.owl-theme .owl-controls .owl-page span {
    display: block;
    margin: 5px 7px;
    width: 12px;
    height: 12px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #869791;
    opacity: 0.5;
    filter: Alpha(Opacity=50);
    /*IE7 fix*/
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    opacity: 1;
    filter: Alpha(Opacity=100);
    /*IE7 fix*/
}


/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers {
    padding: 2px 10px;
    width: auto;
    height: auto;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    color: #FFF;
    font-size: 12px;
}


/* preloading images */

.owl-item.loading {
    min-height: 150px;
    background: url(../images/AjaxLoader.gif) no-repeat center center
}


/* CUSTOM USER OPTIONS */

.carousel-container {
    width: 100%;
}

.item {
    margin: 0 10px;
    background: #fff;
    color: #333;
}

.item img {
    width: 100%;
    display: inline !important;
}

.item h4 {
    margin-top: 10px;
    color: #333;
    padding: 10px;
}

.item p {
    color: #333;
    padding: 0 10px 30px;    
}

.customNavigation {
    margin-top: 5px;
    margin-right: 11px;
    text-align: right;
}

.customNavigation .btn {
    position: relative;
    display: inline-block;
    overflow: visible;
    margin: -1.9px;
    padding: 0.8em 1.1em;
    border: 0;
    box-shadow: none;
    color: #fff;
    text-transform: uppercase;
    text-shadow: none;
    font-size: 20px;
    cursor: crosshair;
    -webkit-transition: all .1s ease-in 0s;
    -moz-transition: all .1s ease-in 0s;
    -o-transition: all .1s ease-in 0s;
    transition-property: all .1s ease-in 0s;
    -webkit-font-smoothing: antialiased;
    background: #333;
}

.customNavigation .btn:hover {
    background: #222;
}

.hoverfx {
    position: relative;
    display: block;
    overflow: hidden;
    text-align: center;
    padding-left: 5%;
}

.hoverfx img {
    position: absolute;
    left: 0;
    width: 100%;
}

.hoverfx:before {
    display: inline-block;
    padding-top: 60%;
    content: '';
    vertical-align: middle;
}

.hoverfx .figure {
    position: relative;
    z-index: 0;
    display: inline-block;
    padding: 10px 15px;
    max-width: 60%;
    border: 3px solid #e9e9e9;
    color: #ecf0f1;
    vertical-align: middle;
    text-transform: uppercase;
    font-size: 1.2rem;
    opacity: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition-property: all .3s ease;
}

.hoverfx .figure:hover {
    background: #e9e9e9;
    color: #333;
}

.hoverfx .overlay {
    position: absolute;
    top: 0;
    z-index: 1;
    padding: 50%;
    /*background: rgba(0, 0, 0, .7);*/
    opacity: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition-property: all .3s ease;
}


@media screen and (max-width: 400px) {
   .item img {
    padding-left: 4%;
    padding-right: 4%;
    width: 100%;
    display: inline !important;
   }
}


@media screen and (max-width: 300px) {
   .item img {
    padding-left: 15%;
    padding-right: 15%;
    width: 100%;
    display: inline !important;
}
}


.item:hover .figure,
.item:hover .overlay {
    opacity: 1;
}

.item:hover {
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, .4);
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.owl-item>div {
    cursor: pointer;
    margin: 6% 8%;
    transition: margin 0.4s ease;
}

.owl-item.center>div {
    cursor: auto;
    margin: 0;
}

.owl-item:not(.center)>div:hover {
    opacity: .75;
}


@media screen and (max-width: 330px) {
    
}

@media screen and (max-width: 1024px) {
    
}


@media screen and (max-width: 768px) {
    
}

@media screen and (max-width: 650px) {
      .item h4 {
    margin-top: 10px;
    color: #333;
    padding-left: 10%;
    padding-right: 10%;
}

.item p {
    color: #333;
    padding-left: 10%;
    padding-right: 10%;
}
}

@media screen and (max-width: 350px) {
     .item h4 {
    margin-top: 10px;
    color: #333;
    padding-left: 23%;
    padding-right: 23%;
}

.item p {
    color: #333;
    padding-left: 23%;
    padding-right: 23%;
}
}

@media screen and (max-width: 280px) {
    .item h4 {
    margin-top: 10px;
    color: #333;
    padding-left: 23%;
    padding-right: 23%;
}

.item p {
    color: #333;
    padding-left: 23%;
    padding-right: 23%;
}
}


/* Project Page */

.project {
    margin-top: 150px;
}

@media screen and (max-width: 1366px) {
    .project {
        margin-top: 125px;
    }
}

@media screen and (max-width: 920px) {
    .project {
        margin-top: 125px;
    }
}

@media screen and (max-width: 768px) {
    .project {
        margin-top: 150px;
    }
}

/* project detail page */

@media screen and (max-width: 650px) {
    .project-detail {
        margin-top: 150px;
    }
}

@media screen and (width: 768px) {
    .project-detail {
        margin-top: 150px;
    }
}

@media screen and (width: 1024px) {
    .project-detail {
        margin-top: 150px;
    }
}

@media screen and (min-width: 1366px) {
    .project-detail {
        margin-top: 150px;
    }
}


/* end project detail */

:root {
    /* --color-theme: #8ec64149; */
    --color-theme: rgba(161, 78, 78, 0.719);
    --color-gray: #f0f0f0;
    --grid-row-size: minmax(5rem, 1fr);
    --transition: 0.4s ease-in-out;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 640px));
    grid-auto-rows: var(--grid-row-size);
    grid-gap: 0.5rem;
    justify-content: center;
}

.galleryItem {
    grid-row: span 5;
}

.galleryItem:nth-child(3n-1) {
    grid-row: span 7;
}

.galleryItem:nth-child(3n) {
    grid-row: span 5;
}

.galleryItem {
    background: var(--color-gray);
    display: block;
    position: relative;
    text-decoration: none;
}

.galleryItem .galleryItem__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.galleryItem .galleryItem__img img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galleryItem .galleryItem__text {
    background: var(--color-theme);
    color: rgb(255, 255, 255);
    height: 100%;
    opacity: 0;
    padding: 1.5rem;
    pointer-events: none;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.galleryItem .galleryItem__text p {
    font-weight: light;
    line-height: 1.4;
    margin: 0 0 0.5em 0;
}

.galleryItem:hover .galleryItem__text {
    opacity: 1;
}

@media (max-width: 1023.98px) {
    .gallery {
        --grid-row-size: minmax(3.5rem, 1fr);
    }
    .galleryItem:first-child {
        grid-row: span 5;
    }
    .galleryItem,
    .galleryItem:nth-child(3n-1),
    .galleryItem:nth-child(3n) {
        grid-row: span 6;
    }
}

@media (max-width: 767.98px) {
    .gallery {
        --grid-row-size: minmax(2.5rem, 1fr);
    }
}

@media (max-width: 679.98px) {
    .gallery {
        --grid-row-size: minmax(calc(100vw / 5 * 2), auto);
        grid-template-columns: 1fr;
    }
    .galleryItem,
    .galleryItem:first-child,
    .galleryItem:nth-child(3n-1),
    .galleryItem:nth-child(3n) {
        grid-row: span 1;
    }
}


/* Halaman General */
.general {
    margin-top: 150px;
}

@media screen and (max-width: 1366px) {
    .general {
        margin-top: 125px;
    }
}

@media screen and (max-width: 920px) {
    .general {
        margin-top: 125px;
    }
}

@media screen and (max-width: 768px) {
    .general {
        margin-top: 150px;
    }
}

.general-img {
    max-width: 100%;
    max-height: 80%;
    object-fit: cover;
    height: 250px;
    opacity: 0.45;
}

.btn-kategori {
    color: rgb(112, 0, 0);
}

.btn-kategori:hover {
    color: #8fc544;
}

.tab-kategori a {
    color: #8fc544;
}

.tab-kategori a:hover {
    color: brown;
}


/* slick-slide */

.slick-slide {
    margin: 0px 20px;
}

@media screen and (max-width: 650px) {
    .slick-slide img {
        max-width: 100px;
        max-height: 150px;
        height: 50px;
        /* padding-left: 10px;
    padding-right: 10px; */
        padding-top: 10px;
        padding-bottom: 10px;
        /* margin-top: 15px; */
        margin-left: auto;
        margin-right: auto;
        display: block;
        /* margin-bottom: 25px;
    border: 2px solid rgb(230, 230, 230); */
    }
}

@media screen and (min-width: 1024px) {
    .slick-slide img {
        max-width: 200px;
        max-height: 150px;
        height: 70px;
        /* padding-left: 10px;
    padding-right: 10px; */
        padding-top: 10px;
        padding-bottom: 10px;
        /* margin-top: 15px; */
        margin-left: auto;
        margin-right: auto;
        display: block;
        /* margin-bottom: 25px;
    border: 2px solid rgb(230, 230, 230); */
    }
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


/* News Detail */
.berita {
    margin-top: 150px;
}

@media screen and (max-width: 1366px) {
    .berita {
        margin-top: 125px;
    }
}

@media screen and (max-width: 920px) {
    .berita {
        margin-top: 125px;
    }
}

@media screen and (max-width: 768px) {
    .berita {
        margin-top: 150px;
    }
}

.konten-berita {
    text-align: justify;
}

.detail {
    margin-top: 150px;
}

@media screen and (max-width: 1366px) {
    .detail {
        margin-top: 125px;
    }
}

@media screen and (max-width: 920px) {
    .detail {
        margin-top: 125px;
    }
}

@media screen and (max-width: 768px) {
    .detail {
        margin-top: 150px;
    }
}

@media screen and (width: 1024px) {
    .img-detail {
        max-height: 720px;
        max-width: 1280px;
        height: 500px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .img-release {
        max-width: 225px;
        max-height: 200px;
        margin-bottom: auto;
        margin-top: 32px;
        padding-left: 15px;
        display: block;
    }
}

@media screen and (min-width: 1366px) {
    .img-detail {
        max-height: 500px;
        max-width: 1800px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .img-release {
        max-width: 180px;
        max-height: 200px;
        margin-bottom: 25px;
        margin-top: 15px;
        padding-left: 15px;
        display: block;
    }
}

@media screen and (width: 768px) {
    .img-detail {
        max-height: 720px;
        max-width: 1280px;
        height: 450px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .img-release {
        max-width: 170px;
        max-height: 200px;
        margin-bottom: auto;
        margin-top: 32px;
        padding-left: 15px;
        display: block;
    }
    .body-release .card-title {
        font-size: 20px !important;
    }
    .body-release .card-text {
        font-size: 10px !important;
    }
}

@media screen and (max-width: 650px) {
    .img-detail {
        max-height: 250px;
        max-width: 300px;
        height: 220px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .img-release {
        max-width: 300px;
        max-height: 400px;
        margin-bottom: 25px;
        margin-top: 15px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

.btn-release {
    text-decoration: none;
    background-color: #8fc544;
    border: 1px solid gray;
    margin-bottom: 25px;
    margin-right: 5%;
}

.btn-release:hover {
    background-color: #668b31;
}


/* test */

:root {
    --space: 2rem;
    --space-xs: calc(var(--space) / 3);
    --space-sm: calc(var(--space) / 2);
    --space-md: calc(var(--space) * 2);
    --color-primary: lightgray;
    --color-accent: whitesmoke;
    --color-dark: black;
    --color-mid: gray;
    --color-light: white;
    --color-highlight: dodgerblue;
    --radius: 0.125rem;
}

@media screen and (max-width: 650px) {
    main {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .sidebar {
        --offset: var(--space);
        flex-grow: 1;
        flex-basis: 300px;
        align-self: start;
        /* position: sticky; */
        margin-top: 100px;
        margin-bottom: 25px;
        width: 80%;
    }
    #desktop {
        display: none !important;
    }
    #mobile {
        display: block !important;
        justify-content: center !important;
    }
}

@media screen and (width: 1024px) {
    .article {
        flex-basis: 0;
        flex-grow: 999;
        min-width: 40%;
        margin-top: 15%;
    }
    main {
        display: flex;
        flex-wrap: wrap;
    }
    .sidebar {
        --offset: var(--space);
        flex-grow: 1;
        flex-basis: 300px;
        align-self: start;
        position: sticky;
        top: 20%;
    }
    #mobile {
        display: none !important;
        justify-content: center !important;
    }
}

@media screen and (width: 768px) {
    .article {
        flex-basis: 0;
        flex-grow: 999;
        min-width: 40%;
    }
    main {
        display: flex;
        flex-wrap: wrap;
    }
    .sidebar {
        --offset: var(--space);
        flex-grow: 1;
        flex-basis: 300px;
        align-self: start;
        position: sticky;
        top: 25%;
    }
    #mobile {
        display: none !important;
        justify-content: center !important;
    }
}

@media screen and (min-width: 1366px) {
    .article {
        flex-basis: 0;
        flex-grow: 999;
        min-width: 40%;
    }
    main {
        display: flex;
        flex-wrap: wrap;
    }
    .sidebar {
        --offset: var(--space);
        flex-grow: 1;
        flex-basis: 300px;
        align-self: start;
        position: sticky;
        top: 25%;
    }
    #desktop {
        display: block !important;
    }
    #mobile {
        display: none !important;
        justify-content: center !important;
    }
}

.component {
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.component .content {
    max-height: 500px;
    overflow-y: auto;
}

.sidebar .component {
    max-height: calc(100vh - var(--offset) * 2);
}


/*
 * Other styles
**/

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


/* Until flexbox gap is supported in all modern browsers, we use the negative margin trick to create space between the children elements */

main {
    margin-bottom: calc(var(--space-md) * -1);
    margin-left: calc(var(--space-md) * -1);
}

main>* {
    margin-bottom: var(--space-md);
    margin-left: var(--space-md);
}

article>*+* {
    margin-top: var(--space);
}

.component {
    position: relative;
    border: 1px solid var(--color-primary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.03), 0 8px 16px rgba(0, 0, 0, 0.03), 0 16px 32px rgba(0, 0, 0, 0.02), 0 32px 64px rgba(0, 0, 0, 0.02);
}

.component .header,
.component .footer {
    padding: var(--space-sm);
    text-align: center;
}

.component .header {
    border-bottom: inherit;
}

.component .footer {
    display: flex;
    justify-content: space-between;
    border-top: inherit;
}

.component .content {
    padding: var(--space-sm);
    max-height: 500px;
    overflow-y: auto;
    color: var(--color-dark);
}

.item:active {
    transform: translateY(1px);
}

.item:focus {
    outline: 2px solid var(--color-highlight);
}

.empty-text {
    padding: var(--space);
    text-align: center;
    color: var(--color-primary);
}

.button {
    appearance: none;
    padding: var(--space-xs) var(--space-sm);
    font-size: 1rem;
    color: white;
    background-color: var(--color-dark);
    border: 1px solid var(--color-dark);
    cursor: pointer;
    border-radius: var(--radius);
    box-shadow: rgba(black, 0.1) 4px 4px;
}

.button:active {
    transform: translateY(1px);
    box-shadow: none;
}

.empty-cart {
    color: var(--color-mid);
    border-color: var(--color-mid);
    background-color: var(--color-light);
}


/* --------- */

body {
    margin: 0;
}


/* test news */

.section {
    height: 250px;
    background: rgb(255, 255, 255);
    text-align: center;
    padding: 20px 0;
}

.main-section {
    width: 1100px;
    margin: 50px auto;
    clear: both;
}

.main-section:before,
.main-section:after {
    content: '';
    display: table;
    clear: both;
}

.right-side {
    width: 750px;
    display: inline-block;
    vertical-align: top;
    float: right;
}


/* .right-side div {
    background: #999;
    height: 250px;
} */

.right-side div+div {
    margin-top: 50px;
}

.box {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.box span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.box span:nth-child(2) {
    animation-delay: -0.2s;
}

.box span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}


/* about us Pages */

.about-us {
    margin-top: 90px;
}

.about-panel {
    background-color: #a3e448;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

@media screen and (max-width: 650px) {
    .img-about {
        max-width: 300px;
        max-height: 300px;
        border-radius: 8px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

@media screen and (min-width: 1366px) {
    .img-about {
        max-width: 650px;
        max-height: 600px;
        border-radius: 8px;
        margin-bottom: 25px;
        display: block;
        margin: 0;
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .about-isi {
        text-align: justify;
        padding-top: 25px;
    }
    /* .about-reverse {
        display: contents;
        flex-direction: row-reverse;
    } */
}

@media screen and (width: 1024px) {
    .img-about {
        max-width: 950px;
        max-height: 720px;
        border-radius: 8px;
        margin-right: auto;
        margin-left: auto;
        display: block;
    }
    .about-isi {
        text-align: justify;
        display: contents;
    }
}

@media screen and (width: 768px) {
    .img-about {
        max-width: 700px;
        max-height: 720px;
        border-radius: 8px;
        margin-right: auto;
        margin-left: auto;
        display: block;
    }
    .about-isi {
        text-align: justify;
        display: contents;
    }
}

.about-vision {
    background-color: #a3e448;
    padding-top: 30px;
    padding-bottom: 30px;
}

.events {
    margin-top: 25px;
    padding-top: 15px;
    background: linear-gradient(to bottom, #a3e448, white);
}

.events .card {
    border: 0;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative;
}

.events .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 0;
}

.events .card-img img {
    max-width: auto;
    max-height: 360px;
    transition: all 0.3s ease-in-out;
}

.events .card-body {
    z-index: 10;
    background: #fff;
    border-top: 4px solid #fff;
    padding: 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: -35px;
    transition: 0.3s;
}

.events .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.events .card-title a {
    color: #37423b;
    transition: 0.3s;
}

.events .card-text {
    color: #5e5e5e;
}

.events .read-more a {
    color: #777777;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: 0.3s;
}

.events .read-more a:hover {
    color: #a3e448;
}

.events .card:hover img {
    transform: scale(1.1);
}

.events .card:hover .card-body {
    border-color: #a3e448;
}

.events .card:hover .card-body .card-title a {
    color: #a3e448;
}

.clients .clients-wrap {
    border-top: 1px solid #ececec;
    border-left: 1px solid #ececec;
}

.clients .client-logo {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    overflow: hidden;
    background: #fff;
    height: 100px;
}

.clients .client-logo img {
    transition: all 0.3s ease-in-out;
    height: 36px;
    filter: grayscale(100%);
}

.clients .client-logo:hover img {
    filter: none;
    transform: scale(1.1);
}


/* float Button */

.tile,
.tile1 {
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 10;
}

.float {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 70px;
    background-color: #39cece;
    color: #FFF;
    cursor: pointer;
    border-radius: 50px;
    text-align: center;
    z-index: 1000;
    animation: bot-to-top 2s ease-out;
}

.tile .float {
    box-shadow: 0px 0px 8px 2px rgba(57, 206, 206, 0.3);
}

.tile1 .float {
    background-color: #9cd848;
    box-shadow: 0px 0px 8px 2px rgba(231, 91, 91, 0.3);
    /*padding-top: 20px;*/
}

.soc a {
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 53px;
    padding: 0px;
    font-size: 20px;
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 6px;
    transition: all .5s;
}

.soc a:hover {
    box-shadow: 2px 2px 3px #999;
}

a.facebook-b {
    background-color: #b6ff50;
    animation-delay: .5s;
   /* padding-top: 15px;*/
}

a.google-plus-b {
    animation-delay: .7s;
    background-color: #5d3915;
    /*padding-top: 15px;*/
}

a.twitter-b {
    animation-delay: .15s;
    background-color: #1CB7EB;
    padding-top: 15px;
}

.pad .facebook-b {
    left: 80px;
}

.pad .google-plus-b {
    left: 140px;
}

.pad .twitter-b {
    left: 200px;
}

.my-float {
    font-size: 24px;
    margin-top: 18px;
}

.tile1 .float {
    font-size: 24px;
}

.menu-share i {
    animation: rotate-in 0.5s;
}


/* .tile .menu-share:hover > i{
			animation: rotate-out 0.5s;
		} */

@keyframes rotate-in {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-out {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}


/* 2nd button */

.tile1 .circ {
    width: 90px;
    height: 124px;
    background-color: transparent;
    border-bottom-left-radius: 90px;
    border-top-left-radius: 90px;
    position: absolute;
    top: -30px;
    left: -50px;
}

.tile1 .circ a.facebook-b {
    top: -20px;
    left: 20px;
}

.tile1 .circ a.google-plus-b {
    top: 35px;
    left: -10px;
}

.tile1 .circ a.twitter-b {
    top: 90px;
    left: 20px;
}

.tile1 .pad1 a.facebook-b,
.tile1 .pad1 a.google-plus-b,
.tile1 .pad1 a.twitter-b {
    top: 35px;
    left: 55px;
}

.tile2 .float {
    display: block;
    background-color: #33bcf1;
    margin: 0 auto;
    box-shadow: 0px 0px 8px 2px rgba(95, 160, 185, 0.3);
}

.tile2 .soc {
    position: relative;
    height: 60px;
    width: 60px;
    background-color: #33bcf1;
    border-radius: 60px;
    padding: 0px 5px;
    transform: translateY(-60px);
    display: flex;
    transition: all .4s;
    overflow: hidden;
    margin: 0 auto
}

.tile2 .soc a {
    position: relative;
    color: #FFF;
    text-align: center;
    height: 60px;
    line-height: 60px;
    padding: 0px;
    font-size: 20px;
    display: block;
    flex: 1;
    -webkit-flex: 1;
    top: 0;
    left: 0;
    transition: all .3s;
}

.tile2 .soc a:hover {
    box-shadow: none;
    transform: translateY(-5px);
}

.tile2 .soc.active {
    width: 100%;
}


/* career area */


/* .career-panel {
    background-color: #a3e448;
    padding-top: 30px;
    padding-left: 10%;
    padding-bottom: 30px;
    margin-top: 5%;
    margin-bottom: 25px;
} */

.career-button {
    text-decoration: none;
    color: black;
}


/* end career area */


/* download area */

.download {
    margin-top: 100px;
}

.center {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.product .item {
    height: 450px;
    width: 400px;
}

#client {
    height: 200px;
}
/* end of download area */
#sertificates .item{
    height: 400px;
}

@media screen and (max-width: 1366px) {
    #sertificates .item {
        height: 300px;
    }
}

@media screen and (max-width: 920px) {
    #sertificates .item {
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    #sertificates .item {
        height: 200px;
    }
}

.isi {
    padding-top: 10px;
    min-height: calc(50% - 50px);
    display: flex;
}

.rounded {
    border-radius: 20px !important;
}