@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Open-sans', sans-serif;
    overflow-x: hidden;
}

@media screen and (min-width:526px) {
    .link {
        width: 50%;
        display: block;
        margin: auto;
    }
}

.text-white {
    color: white !important;
}

.text-bold {
    font-weight: bold;
    color: white;
}

.text-bolder {
    font-weight: bolder;
    color: white;
}

@media screen and (min-width:1px) and (max-width:525px) {
    .link {
        background-image: url('img/_tanahabang/opacity.png');
        background-size: cover;
        background-position: center center;
    }
}

@media screen and (min-width:526px) and (max-width:5000px) {
    .link {
        background-image: url('img/_tanahabang/opacity.png');
        background-size: cover;
        background-position: center;
    }
}

.img_logo {
    width: 200px;
    display: block;
    margin: auto;
    padding-top: 2rem;
}

.wrap {
    height: 60px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.box {
    height: 60px;
    text-align: center;
}

button {
    width: 160px;
    height: 60px;
    background: linear-gradient(90deg, #5CB986 3%, #54B859 31%, #3EB451 74%, #2EB24B 100%);
    ;
    cursor: pointer;
    position: relative;
    border-radius: 6px;
    border: none;
}

button a {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}


button span span {
    content: "";
    position: absolute;
    margin: auto;
    height: 8px;
    width: 2px;
    background: #E6203B;
    opacity: 0;
}

button span span:nth-of-type(1) {
    top: -20px;
    left: 0;
    right: 0;
}

button span span:nth-of-type(2) {
    bottom: -20px;
    left: 0;
    right: 0;
}

button span span:nth-of-type(3) {
    top: 0;
    bottom: 0;
    left: -10px;
}

button span span:nth-of-type(4) {
    top: 0;
    bottom: 0;
    right: -10px;
}

button span span:nth-of-type(5) {
    top: -20px;
    left: -70%;
    right: 0;
    transform: rotate(-30deg);
}

button span span:nth-of-type(6) {
    top: -20px;
    left: 0;
    right: -70%;
    transform: rotate(30deg);
}

button span span:nth-of-type(7) {
    bottom: -20px;
    right: 0;
    left: -70%;
    transform: rotate(30deg);
}

button span span:nth-of-type(8) {
    bottom: -20px;
    left: 0;
    right: -70%;
    transform: rotate(-30deg);
}



/* let's animate this */

@keyframes bounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

button.active {
    animation: bounce 0.3s ease-out 1;
}

button.active span span:nth-of-type(1) {
    animation: anim1 0.4s ease-out 1;
}

button.active span span:nth-of-type(2) {
    animation: anim2 0.4s ease-out 1;
}

button.active span span:nth-of-type(3) {
    animation: anim3 0.4s ease-out 1;
}

button.active span span:nth-of-type(4) {
    animation: anim4 0.4s ease-out 1;
}

button.active span span:nth-of-type(5) {
    animation: anim5 0.4s ease-out 1;
}

button.active span span:nth-of-type(6) {
    animation: anim6 0.4s ease-out 1;
}

button.active span span:nth-of-type(7) {
    animation: anim7 0.4s ease-out 1;
}

button.active span span:nth-of-type(8) {
    animation: anim8 0.4s ease-out 1;
}


@keyframes anim1 {
    0% {
        transform: scaleY(0.5);
        opacity: 0;
    }

    50% {
        transform: translateY(-10px) scaleY(1.4);
        opacity: 1;
    }

    100% {
        transform: translateY(-20px) scaleY(0.5);
        opacity: 0;
    }
}

@keyframes anim2 {
    0% {
        transform: scaleY(1);
        opacity: 0;
    }

    50% {
        transform: translateY(10px) scaleY(1.4);
        opacity: 1;
    }

    100% {
        transform: translateY(20px) scaleY(0.5);
        opacity: 0;
    }
}

@keyframes anim3 {
    0% {
        transform: rotate(90deg) scaleX(0.5);
        opacity: 0;
    }

    50% {
        transform: rotate(90deg) translateY(10px) scaleX(1.4);
        opacity: 1;
    }

    100% {
        transform: rotate(90deg) translateY(20px) scaleX(0.5);
        opacity: 0;
    }
}

@keyframes anim4 {
    0% {
        transform: rotate(90deg) scaleX(0.5);
        opacity: 0;
    }

    50% {
        transform: rotate(90deg) translateY(-10px) scaleX(1.4);
        opacity: 1;
    }

    100% {
        transform: rotate(90deg) translateY(-20px) scaleX(0.5);
        opacity: 0;
    }
}

@keyframes anim5 {
    0% {
        transform: rotate(-30deg) scaleY(0.5);
        opacity: 0;
    }

    50% {
        transform: rotate(-30deg) translateY(-8px) scaleY(1.4);
        opacity: 1;
    }

    100% {
        transform: rotate(-30deg) translateY(-16px) scaleY(0.5);
        opacity: 0;
    }
}

@keyframes anim6 {
    0% {
        transform: rotate(30deg) scaleY(0.5);
        opacity: 0;
    }

    50% {
        transform: rotate(30deg) translateY(-8px) scaleY(1.4);
        opacity: 1;
    }

    100% {
        transform: rotate(30deg) translateY(-16px) scaleY(0.5);
        opacity: 0;
    }
}

@keyframes anim7 {
    0% {
        transform: rotate(30deg) scaleY(0.5);
        opacity: 0;
    }

    50% {
        transform: rotate(30deg) translateY(8px) scaleY(1.4);
        opacity: 1;
    }

    100% {
        transform: rotate(30deg) translateY(16px) scaleY(0.5);
        opacity: 0;
    }
}

@keyframes anim8 {
    0% {
        transform: rotate(-30deg) scaleY(0.5);
        opacity: 0;
    }

    50% {
        transform: rotate(-30deg) translateY(8px) scaleY(1.4);
        opacity: 1;
    }

    100% {
        transform: rotate(-30deg) translateY(16px) scaleY(0.5);
        opacity: 0;
    }
}

hr {
    background-color: #fff;
    padding: 0;
}

.hr-1 {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.btn_link {
    background-color: linear-gradient(90deg, #5CB986 3%, #54B859 31%, #3EB451 74%, #2EB24B 100%);
    font-weight: bold;
    border: none;
}


.bounce {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
    }
}

@-o-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -o-transform: translateY(0);
    }

    40% {
        -o-transform: translateY(-30px);
    }

    60% {
        -o-transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    margin: 1rem auto;
    box-shadow: 0 3px 7px -1px rgba(0, 0, 0, .1);
    margin-bottom: 1.6%;
    background: #fff;
    line-height: 1.4;
    border-radius: 5px;
    overflow: hidden;
    z-index: 0;
}

.blog-card a {
    color: inherit;
}

.blog-card a:hover {
    color: #5ad67d;
}

.blog-card:hover .photo {
    transform: scale(1.3) rotate(3deg);
}

.blog-card .meta {
    position: relative;
    z-index: 0;
    height: 200px;
}

.blog-card .photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.2s;
}

.blog-card .details,
.blog-card .details ul {
    margin: auto;
    padding: 0;
    list-style: none;
}

.blog-card .details {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    margin: auto;
    transition: left 0.2s;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    padding: 10px;
    width: 100%;
    font-size: 0.9rem;
}

.blog-card .details a {
    text-decoration: dotted underline;
}

.blog-card .details ul li {
    display: inline-block;
}

.blog-card .details .author:before {
    font-family: FontAwesome;
    margin-right: 10px;
    content: "\f007";
}

.blog-card .details .date:before {
    font-family: FontAwesome;
    margin-right: 10px;
    content: "\f133";
}

.blog-card .details .tags ul:before {
    font-family: FontAwesome;
    content: "\f02b";
    margin-right: 10px;
}

.blog-card .details .tags li {
    margin-right: 2px;
}

.blog-card .details .tags li:first-child {
    margin-left: -4px;
}

.blog-card .description {
    padding: 1rem;
    background: #fff;
    position: relative;
    z-index: 1;
}

.blog-card .description h1,
.blog-card .description h2 {
    font-family: Poppins, sans-serif;
}

.blog-card .description h1 {
    line-height: 1;
    margin: 0;
    font-size: 1.3rem;
}

.blog-card .description h2 {
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #a2a2a2;
    margin-top: 5px;
}

.blog-card .description .read-more {
    text-align: right;
}

.blog-card .description .read-more a {
    color: #5ad67d;
    display: inline-block;
    position: relative;
}

.blog-card .description .read-more a:after {
    content: "\f061";
    font-family: FontAwesome;
    margin-left: -10px;
    opacity: 0;
    vertical-align: middle;
    transition: margin 0.3s, opacity 0.3s;
}

.blog-card .description .read-more a:hover:after {
    margin-left: 5px;
    opacity: 1;
}

.blog-card p {
    position: relative;
    margin: 1rem 0 0;
}

.blog-card p:first-of-type {
    margin-top: 1.25rem;
}

.blog-card p:first-of-type:before {
    content: "";
    position: absolute;
    height: 5px;
    background: #5ad67d;
    width: 35px;
    top: -0.75rem;
    border-radius: 3px;
}

.blog-card:hover .details {
    left: 0%;
}

@media (min-width: 640px) {
    .blog-card {
        flex-direction: row;
        max-width: 700px;
    }

    .blog-card .meta {
        flex-basis: 40%;
        height: auto;
    }

    .blog-card .description {
        flex-basis: 60%;
    }

    .blog-card .description:before {
        transform: skewX(-3deg);
        content: "";
        background: #fff;
        width: 30px;
        position: absolute;
        left: -10px;
        top: 0;
        bottom: 0;
        z-index: -1;
    }

    .blog-card.alt {
        flex-direction: row-reverse;
    }

    .blog-card.alt .description:before {
        left: inherit;
        right: -10px;
        transform: skew(3deg);
    }

    .blog-card.alt .details {
        padding-left: 25px;
    }
}

.social-menu ul {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0;
    margin: 0;
    transform: translate(-50%, -50%);
    display: flex;
}

.social-menu ul li {
    list-style: none;
    margin: 0 15px;
}

.social-menu ul li .fab {
    font-size: 30px;
    line-height: 60px;
    transition: .3s;
    color: #2EB24B;

}

.social-menu ul li .fab:hover {
    color: #fff;
}

.social-menu ul li a {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    transition: .6s;
    box-shadow: 0 5px 4px rgba(0, 0, 0, .5);
}

.social-menu ul li a:hover {
    transform: translate(0, -10%);
}

.social-menu ul li:nth-child(1) a:hover {
    background-color: rgba(0, 0, 0, 0.829);
}

.social-menu ul li:nth-child(2) a:hover {
    background-color: #E4405F;
}

.social-menu ul li:nth-child(3) a:hover {
    background-color: #0077b5;
}

.social-menu ul li:nth-child(4) a:hover {
    background-color: #000;
}

.powered_by {
    font-size: 12px;
    color: #000;
}

.powered_by strong {
    color: #000;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.shake_img:hover {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}

.center-button-new {
    display: flex;
    justify-content: space-around;
}

.slide {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 13px 30px 13px;
    outline: 0;
    border: 1px solid black;
    cursor: pointer;
    position: relative;
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
}

.slide:hover {
    text-decoration: none;
    color: #fff;
}

.slide i {
    opacity: 0;
    font-size: 13px;
    transition: 0.2s;
    position: absolute;
    right: 10px;
    top: 21px;
    transition: transform 1;
}

.slide div {
    transition: transform 0.8s;
}

.slide:hover div {
    transform: translateX(-6px);
}

.slide::after {
    content: "";
    background: linear-gradient(90deg, #5CB986 3%, #54B859 31%, #3EB451 74%, #2EB24B 100%);

    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 7px;
    left: 7px;
}

.slide:hover i {
    opacity: 1;
    transform: translateX(-6px);
}