@keyframes slide {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-100%, 0, 0); /* The image width */
    }
}
@keyframes slideRight {
    0% {
      transform: translate3d(0, 0, 0); /* The image width */

    }
    100% {
        transform: translate3d(100%, 0, 0);
    }
}


body {
    background-color: black;
    color: #fff;
    font-family: 'Poppins';
}

.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    background: black;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 90px;
    right: 0px;
    z-index: 1000;
}
.menu div {
    position: absolute;
    height: calc(100vh - 400px);
    width: 100vw;
    left: 0px;
    background: rgba(0,0,0,0.35);
    top: 100%;
}
.menu a {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    font-size: 64px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.margin-minus {
    margin-right: -100%;
    transition: all 0.5s ease-out;
}
.animate {
    transition: all 0.5s ease-out;
}
.margin-0 {
    margin-left: 0px;
    transition: all 0.5s ease-out;
}
.menu li {
    color: #fff;
    font-size: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-left: 30px;
}
.menu li:hover, .menu .active {
    background: #cbfc02;
    color: black;
}
.menu .active a {
    color: black;
}
.menu li:hover a {
    color: black;
}
.menu span {
    font-size: 10px;
    margin-right: 10px;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: black;
    margin-bottom: 60px;
}
#logo {
    cursor: pointer;
    height: 60px;
}
.burger-icon {
    cursor: pointer;
}
.burger-icon span {
    width: 25px;
    height: 3px;
    display: block;
    border-radius: 10px;
    margin-top: 8px;
    background: #cbfc02;
    transition: all 1s cubic-bezier(.77,0,.175,1);
}

.burger-icon span:nth-child(1) {
    margin-top: 0;
}

@media only screen and (max-width: 767px) {
    .header-menu {
        margin-bottom: 30px;
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100vw;
        background: black;
        z-index: 10000;
        padding: 20px 15px;
        padding-top: 5px;
        height: 65px;
    }
    .header-menu + * {
        margin-top: 80px;
    }
    .menu {
        height: 400px;
        margin-top: -20px;  
    }
    .menu a {
        font-size: 40px;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .our-works .menu {
        margin-top: -10px;
    }
    .contact-us .menu {
        right: 15px;
    }
    .menu li {
        border-bottom: 1px solid rgba(236, 236, 236, 0.3);
        padding-left: 15px;
    }
    #logo {
       margin-left: -15px;
    }
}


/* Footer Menu
------------------------*/
.footer-menu {
    border-top: 1px solid #cbfc02;
    border-bottom: 1px solid #cbfc02;
    align-items: center;
}
.footer-menu ul {
    display: block;
    text-align: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.footer-menu li {
    color: grey;
    font-size: 32px;
    padding: 4px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease-in-out 0.1s;
}
.footer-menu li:hover a {
    color: #fff;
    border-bottom: 2px solid #cbfc02;
    transition: all 0.3s ease-in-out 0.1s;
    font-size: 34px;
    display: block;
    margin-top: -2px;
}
.footer-menu .active a {
    color: #cbfc02;
}
.footer-menu img {
    width: 30px;
    margin: 0px 4px; 
}
.footer-menu a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}
.copyright {
    text-align: center;
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
    .social-media {
        text-align: center;
        padding: 10px 0px;
    }
    .footer-menu {
        padding-top: 26px;
        padding-bottom: 20px;
    }
    .copyright {
        padding: 20px 0px;
    }
}
@media only screen and (min-width: 768px) {
    .footer-menu {
        display: flex;
        justify-content: space-between;
    }
    .footer-menu ul {
        display: flex;
        text-align: left;
        height: 65px;
    }
    .footer-menu li {
        font-size: 30px;
        padding: 10px;
    }
    .copyright {
        text-align: left;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
/*Container
-------------------------*/
.own-container {
    padding-left: 15px;
    padding-right: 15px;
}

@media only screen and (min-width: 768px) {
    .own-container {
        padding-left: 30px;
        padding-right: 30px;
    }    
}
/*Button
-------------------------*/
.btn {
    border-radius: 50px;
    border: none;
}
.btn-primary {
    color: black;
    padding: 10px;
    background: #cbfc02;
    border: 1px solid #cbfc02;
    position: relative;
    padding-right: 30px;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: black;
    color: #cbfc02;
    border: 1px solid #cbfc02;
}

.btn-primary svg {
    position: absolute;
    right: 12px;
    top: 14px;
}
.btn-primary:hover svg {
    right: 5px;
}

.btn-submit, .btn-submit:hover, .btn-submit:focus, .btn-submit:active {
    background: transparent;
    color: #fff;
    padding: 0px;
    font-size: 24px;
    margin-top: -30px;
    border: none;
}


/*HOME
-------------------------*/
h1 {
    color: white
}
.see-more-home {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.see-more-home a{
    color:#ffffff;
    text-decoration:none;
}

.see-more-home a{
    color:#ffffff;
    text-decoration:none;
}

.see-more, .see-more-home .works {
    cursor: pointer;
}
.see-more:hover ~ .works .chevron-right, .works:hover .chevron-right {
    margin-left: 10px;
    animation: all 40s linear infinite;
}

.see-more-home .see-more{
    font-size: 48px;
    font-weight: 800;
}
.see-more-home .works {
    font-size: 40px;
    font-weight: 200;
}
.see-more-home .chevron-right {
    background: #cbfc02;
    width: 30px;
    height: 30px;
    line-height: 18px;
    padding-left: 3px;
    vertical-align: middle;
    color: black;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
}
.homepage .row img {
    margin-bottom: 30px;
    border-radius: 10px;
}
@media only screen and (max-width: 767px) {
    .homepage .col-6,  .homepage .col-4 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .homepage .row-2 {
        padding-left: 10px;
        padding-right: 10px;
        margin-top: -20px;
    }
    .homepage .row-3 {
        padding-left: 10px;
        padding-right: 10px;
    }
    .homepage .content {
        margin-bottom: 40px;
    }   
    .see-more-home .see-more{
        font-size: 30px;
    }
    .see-more-home .works {
        font-size: 30px;
        padding-left: 10px;
    }
    .see-more-home .chevron-right {
        line-height: 25px;
    }
    .see-more-home {
        display: flex;
        flex-direction: row;
        margin-bottom: 30px;
    }
}
@media only screen and (min-width: 768px) {
    .homepage .content {
        /* width: 50%; */
        padding-left: 60px;
        margin-bottom: 200px;
        margin-top: 80px;
    }    
    .content {
        padding-left: 60px;
    }
    .homepage h1 {
        font-size: 80px;
    }
}

/*ABOUT
--------------------------*/   
.title {
    font-weight: 500;
    font-size: 44px;
    color: white;
    margin-bottom: 40px;
}
.card {
    border: none;
    border-bottom: 1px solid white;
    background: transparent;
    border-radius: 0px;
}

.card button img {
    width: 50px;
}
.card:nth-child(1)  {
    border-top: 1px solid white;
}
.card-header {
    background: none;
    border-bottom: none;
    padding: 0;
}
.card-header h5, .card-header button {
    padding: 0;
    color: #cbfc02;
}
.card-header h5 {
    padding: 10px 0px;
}
.card-header button {
    font-size: 30px;
    font-weight: bold;
    text-decoration: none !important;
}
.card-body {
    padding: 0;
    padding-bottom: 20px;
    color: white;
}
.section-bottom {
    text-align: center;
    padding: 20px 0px;
}


.marquee{
    width:100vw;
    background-color: black;
    color:aqua;
    overflow: hidden;
}

.marquee-content{
    list-style: none;
    height:100%;
    display: flex;
}

.marquee-content.left{
    animation: scrollLeft 40s linear infinite;
}

.marquee-content.right{
    animation: scrollRight 40s linear infinite;
}

@keyframes scrollLeft {
    0% {transform: translateX(0vw);}
    100% {transform:translateX(-180vw);}
    
}
@keyframes scrollRight {
    0% {transform: translateX(-180vw);}
    100% {transform:translateX(0vw);}
}

.marquee-content li {
    display:flex;
    justify-content: center;
    align-items: center;
    width:20vw;
    flex-shrink: 0;
    font-size: 5rem;
    white-space: nowrap;
}
.marquee-content li img{
    width:20vw;
}
.transform-down {
    transform: rotate(180deg);
}
.about-img {
    max-width: 100%;
    width: 150px;
}
.about h1 {
    font-weight: 300;
}
@media only screen and (max-width: 767px) {
    .title {
        font-weight: 400;
        font-size: 36px;
        color: white;
        margin-bottom: 16px;
        margin-top: 30px;
    }
    .what-we-do-section .title {
        text-align: center;
    }
    .detail-content {
        margin-top: 30px;
        margin-bottom: 50px;
    }
    .section-bottom {
       padding-top: 40px;
       padding-bottom: 40px;
    }
    .section-bottom h3 {
        font-size: 34px;
    }
    .section-bottom button {
        margin-top: 20px;
    }
}
@media only screen and (min-width: 768px) {
    .about .content {
       padding-left: 60px;
       padding-right: 60px;
       margin-bottom: 100px;
    }
    .about .detail-content {
        font-size: 18px;
        width: 85%;
        margin-top: 60px;
    }
    .about h1 {
        font-size: 56px;
    }
    .what-we-do-section {
        margin-top: 50px;
    }
    .section-bottom {
        text-align: left;
        margin-top: 100px;
    }
    .section-bottom .row {
        display: flex;
        align-items: center;
    }
    .section-bottom .col-md-5 {
        text-align: right;
    }
    .section-bottom h3 {
        font-size: 80px;
        line-height: 1;
    }
    .about-img {
        width: 200px;
        margin: auto;
        display: block;
        margin-top: 140px;
    }
}

/*PEOPLE
--------------------------*/  
.running-text {
    font-size: 30px;
} 
.running-text-people {
    color: white
}
.dummy {
    margin-top: 100%;
}
#running-text-0 {
   /* display: flex; */
    width: 100%;
    margin: 0 auto;
    white-space: nowrap;
    /* animation: scrollRight 30s linear infinite; */
}
#running-text-1 {
    /* display: flex; */
    width: 100%;    
    margin: 0 auto;
    /* margin-right: -100%; */
    white-space: nowrap;
    /* animation: scrollLeft 30s linear infinite; */
}
#running-text-2 {
    /* display: flex; */
    width: 100%;
    margin: 0 auto;
    white-space: nowrap;
    /* animation: scrollRight 30s linear infinite; */
}
.image-profile {
    border-radius: 10px;
    position: relative;
    background-image: url("/assets/img/Peoples/Bimo.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%; 
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out 0.5s;
    -moz-transition: all 0.3s ease-in-out 0.5s;
    -o-transition: all 0.3s ease-in-out 0.5s;
    -ms-transition: all 0.3s ease-in-out 0.5s;
    transition: all 0.3s ease-in-out 0.5s;
}
.image-profile:hover .person {
    display: flex;
}
.person {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding-top: 10%;
    background: rgba(0,0,0,0.3);
    -webkit-transition: all 0.3s ease-in-out 0.5s;
    -moz-transition: all 0.3s ease-in-out 0.5s;
    -o-transition: all 0.3s ease-in-out 0.5s;
    -ms-transition: all 0.3s ease-in-out 0.5s;
    transition: all 0.3s ease-in-out 0.5s;
}
.hover-shading {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;  
}
.person h4 {
    font-size: 16px;
}
.person h5 {
    font-size: 12px;
}
.people-container .col-6 {
    padding: 10px;
}
@media only screen and (max-width: 767px) {
    .person h4 {
        margin-bottom: 4px;
    }
}
@media only screen and (min-width: 768px) {
    .people-container .col-6 {
        padding: 15px;
    }
    .running-text {
        font-size: 100px;
    }
    .running-text-people {
        margin-top: -40px;
        margin-bottom: 120px;
        line-height: 1;
    }
    .person h4 {
        font-size: 30px;
    }
    .person h5 {
        font-size: 18px;
    }
    .running-text-people #running-text-2 {
        height: 120px;
    }
}


/* Our Works
--------------------------*/  
.our-works-img {
    position: relative;
    border-radius: 10px;
    margin-bottom: 15px;
}
.our-works-img .hover {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.3);
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
}
.our-works-img:hover .hover {
    display: flex;
}
.our-works-img h4 {
    font-size: 48px;
}
.our-works-img img {
    border-radius: 10px;
}
.our-works-img.double {
    height: 800px;
}

@media only screen and (max-width: 767px) {
    .our-works .content {
        margin-top: -15px;
        margin-bottom: 20px;
    }
    .our-works .col-6 {
        padding-left: 8px;
        padding-right: 8px;
    }
    .our-works .row-2 {
        padding-left: 8px;
        padding-right: 8px;
    }
    .our-works .col-4 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .our-works .row-3 {
        padding-left: 10px;
        padding-right: 10px;
    }
}



@media only screen and (min-width: 768px) {
    .our-works-img {
        margin-bottom: 30px;
    }
    .our-works .row-3 {
        padding-left: 40px;
        padding-right: 40px;
    }
    .our-works .content {
        margin-bottom: 40px;
        margin-top: -40px;
    }
}



/* Detail works
--------------------------*/  
iframe {
    height: 300px;
    margin-top: 20px;
}
.detail-works .blue {
    color: #cbfc02;
}
@media only screen and (min-width: 768px) {
    .detail-works .running-text-people {
        margin-bottom: 40px;
    }
    iframe {
        height: 800px;
        margin-top: 50px;
    }
    .detail-works .content {
        width: 70%;
        margin-bottom: 50px;
        font-size: 20px;
    }
}



/*Contact Us
--------------------------*/  
.alert {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
}
.form-container {
   padding-left: 15px;
}
.form-group input, .form-group input:active, .form-group input:focus, .form-group textarea, .form-group textarea:active, .form-group textarea:focus  {
    border: none;
    border-bottom: 1px solid #cbfc02;
    box-shadow: none;
    border-radius: 0px;
    background: transparent;
}
.form-group {
	position: relative;
	margin-top: 15px;
	margin-bottom: 45px;
}
.form-control {
    padding-left: 0px;
}
.form-group .floating-label {
    font-size: 16px;
    color: #cccccc;
    position: absolute;
    pointer-events: none;
    top: 0px;
    transition: all 0.1s ease;
}

.form-group input:not(:placeholder-shown) ~ .floating-label, .form-group textarea:not(:placeholder-shown) ~ .floating-label {
    top: -15px;
    bottom: 0px;
    left: 0px;
    font-size: 12px;
    opacity: 1;
    color: #404040;
}
.form-group input:focus ~ .floating-label, .form-group textarea:focus ~ .floating-label {
    top: -15px;
    bottom: 0px;
    left: 0px;
    font-size: 12px;
    opacity: 1;
    color: #404040;
}

@media only screen and (max-width: 767px) {
    .submit-container {
        text-align: center;
    }
    .contact-us .section-bottom {
        margin-top: 40px;
    }
}
@media only screen and (min-width: 768px) {
    .form-container {
        width: 58.3%;
    }
}


/*Loading   
--------------------------*/  

.loading {
    height: 100vh;
    width: 100vw;
    background: black;
    z-index: 1035;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}
.loading img {
    position: absolute;
    top: 50%; right: 50%;
    transform: translate(50%,-50%);
    width: 250px;
}


@media only screen and (max-width: 767px) {
    .loading img {
        width: 200px;
    }
}


/*Helper
--------------------------*/   
img {
    max-width: 100%;
}
.scroll-to-see-more {
    position: fixed;
    right: 60px;
    top: 20%;
    z-index: 1000;
    display: none;
}
.homepage .scroll-to-see-more {
    display: block;
}
.scroll-to-see-more .label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-left: 4px;
}
.scroll-to-see-more .chevron-down {
    background: #cbfc02;
    width: 30px;
    height: 30px;
    line-height: 35px;
    vertical-align: middle;
    color: black;
    text-align: center;
    border-radius: 50px;
    z-index: 10;
    margin-top: 10px;
}

.scroll-to-see-more .chevron-up {
    background: #cbfc02;
    width: 30px;
    height: 40px;
    z-index: 10;
    line-height: 30px;
    vertical-align: middle;
    color: black;
    text-align: center;
    border-radius: 50px 50px 0px 0px;
    margin-top: 10px;
    display: none;
}


.d-none {
    display: none;
}
.d-block {
    display: block;
}
.hidden {
    opacity: 0;
}
.visible {
    opacity: 1;
}
.transform-0 {
    transform: rotate(0deg);
}
.top-bar {
    transform: rotate(45deg);
    margin-bottom: -90%;
}
.bottom-bar {
    transform: rotate(-45deg);
}
.transform-75 {
    transform: rotate(75deg);
}
.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}
.delay-4 {
    animation-delay: 0.4s;
}
.delay-5 {
    animation-delay: 0.5s;
}
.delay-6 {
    animation-delay: 0.6s;
}
.delay-7 {
    animation-delay: 0.7s;
}
.delay-8 {
    animation-delay: 0.8s;
}
.delay-9 {
    animation-delay: 0.9s;
}
.delay-10 {
    animation-delay: 1s;
}

@media only screen and (max-width: 767px) {
    .scroll-to-see-more {
        display: none !important;
    }
}
/* override 
----------------------------------*/
.btn-link:hover {
    text-decoration: none;
    color: #cbfc02;
}
h1, h2, h3, h4 {
    font-weight: 400;
}

@media only screen and (min-width: 768px) {
    body {
        padding-top: 138px;
    }
}

/*======================================
Coming Soon Articulate
========================================*/
.coming_soon {
    position: relative;
    max-height: 100vh;
    height: 100vh;
    overflow: hidden;
    margin-top: -138px;
}

#background {
    background-image: url("/assets/img/underconstruction.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

#logo_articulate_underconstruction {
    width: 200px;
    position: absolute;
    bottom: 10%;
    left: calc(50% - 100px);
}
.bg_underconstruction_mobile {
    display: none;
}

@media only screen and (max-width: 768px) {
    .coming_soon {
        margin-top: 0px;
    }
    #logo_articulate_underconstruction {
        width: 160px;
        position: absolute;
        bottom: 20%;
        left: calc(50% - 80px);
    }
    #background {
        display: none;
    }
    .bg_underconstruction_mobile {
        display: block;
        background-image: url("/assets/img/underconstruction.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 33%;
    }
    #bg1 {
        margin-top: -12%;
    }
    #bg2 {
        margin-top: 12%;
    }
    #bg3 {
        margin-top: 24%;
    }
}