@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&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');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
	width: 0.25em;
	height: 0.25em;
}
  /* Track */
::-webkit-scrollbar-track {
	border-radius: 0.313em;
}

  /* Handle */
::-webkit-scrollbar-thumb {
	background: #3a57e8;
	border-radius: 0.313em;
}

/* header & navbar css start */

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'poppins';
    background: rgba(217, 217, 217, 0.50);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    height: auto !important;
}

.nav-header {
    display: flex;
    align-items: center;
    margin: 10px 0px;
    font-family: 'poppins';
    padding: 10px 0px;
    width: 90%;
    justify-content: space-between;
}

.nav-header .nav-link {
    display: flex;
    align-items: center;
    gap: 35px;
    font-size: 14px;
    text-decoration: none;
}

.nav-header .nav-link a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.nav-header .nav-link a:hover {
    text-decoration: underline solid black 2.5px;
    text-underline-offset: 8px;
    color: #2758A7;
}

.dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 20px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown button img {
    transition: transform 0.3s ease;
}

.dropdown button.expanded img.down {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: max-content;
    left: -30px;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.nav-link button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.button-call-us {
    display: flex;
    width: 150px;
    padding: 5px;
    background-color: #EB4526;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.button-call-us a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #fff;
}

.checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

.button-menu-wrapper-mobile {
    display: none;
}

.nav-link-mobile {
    display: none;
}

#mobile-menu {
    display: none;
}

#close-menu {
    display: none;
}

/* @media (max-width: 600px) {
    .header-img {
        width: 30px;
        height: auto;
        padding-left: 50px;
    }

    .nav-header .nav-link a {
        font-size: 16px;
    }
} */

@media (max-width: 600px) {
    .header {
        width: 100%;
        height: auto !important;
        position: static !important;
    }

    .header-img {
        width: 30px;
        height: auto;
        padding-left: 50px;
    }

    .nav-header .nav-link a {
        font-size: 16px;
    }

    .nav-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-header .header-img {
        width: auto;
        height: auto;
        padding-left: 0;
    }

    .nav-header .header-img {
        order: -1;
    }

    .nav-header .header-img img {
        width: 150px;
    }

    .nav-header .nav-link {
        display: none;
    }

    .nav-header .nav-link-mobile {
        display: none;
    }

    .nav-header .nav-link-mobile a,
    .dropbtn {
        display: flex;
        flex-direction: column;
        gap: 10px;
        /* background-color: #A0A0A0; */
        width: 100%;
        padding: 20px;
        align-items: center;
        text-decoration: none;
        color: #000;
    }

    .nav-header .nav-link-mobile .dropbtn {
        display: block;
    }

    .nav-header .nav-link-mobile.show {
        display: block;
        width: 100%;
        padding-top: 10px;
    }

    .logo-menu-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .button-menu-wrapper-mobile {
        display: flex;
        gap: 15px;
    }

    #mobile-menu {
        display: block;
        border: 0;
    }

    #mobile-menu svg {
        width: 40px !important;
        height: 40px !important;
        padding-right: 0;
    }

    #close-menu {
        display: none;
        border: 0;
    }

    #close-menu svg {
        width: 40px !important;
        height: 40px !important;
        /* padding-right: 0; */
    }

    .button-call-us-mobile {
        display: flex;
        background-color: #EB4526;
        border-radius: 5px;
        align-items: center;
        justify-content: center;
        padding: 0px 12px;
    }

    .button-call-us-mobile svg {
        width: 20px !important;
        height: 20px !important;
    }

    .dropdown-content {
        width: 100%;
    }

}

@media screen and (max-width: 900px) and (min-width: 601px) {
    .header {
        width: 100%;
        height: auto !important;
        position: static !important;
    }

    .header-img {
        width: 30px;
        height: auto;
        padding-left: 50px;
    }

    .nav-header .nav-link a {
        font-size: 16px;
    }

    .nav-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-header .header-img {
        width: auto;
        height: auto;
        padding-left: 0;
    }

    .nav-header .header-img {
        order: -1;
    }

    .nav-header .header-img img {
        width: 150px;
    }

    .nav-header .nav-link {
        display: none;
    }

    .nav-header .nav-link-mobile {
        display: none;
    }

    .nav-header .nav-link-mobile a,
    .dropbtn {
        display: flex;
        flex-direction: column;
        gap: 10px;
        /* background-color: #A0A0A0; */
        width: 100%;
        padding: 20px;
        align-items: center;
        text-decoration: none;
        color: #000;
    }

    .nav-header .nav-link-mobile .dropbtn {
        display: block;
    }

    .nav-header .nav-link-mobile.show {
        display: block;
        width: 100%;
        padding-top: 10px;
    }

    .logo-menu-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .button-menu-wrapper-mobile {
        display: flex;
        gap: 15px;
    }

    #mobile-menu {
        display: block;
        border: 0;
    }

    #mobile-menu svg {
        width: 40px !important;
        height: 40px !important;
        padding-right: 0;
    }

    #close-menu {
        display: none;
        border: 0;
    }

    #close-menu svg {
        width: 40px !important;
        height: 40px !important;
        /* padding-right: 0; */
    }

    .button-call-us-mobile {
        display: flex;
        background-color: #EB4526;
        border-radius: 5px;
        align-items: center;
        justify-content: center;
        padding: 0px 12px;
    }

    .button-call-us-mobile svg {
        width: 20px !important;
        height: 20px !important;
    }

    .dropdown-content {
        width: 100%;
    }
}

/* header & navbar css end */


/* pembatas css start */

.pembatas img {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 24px;
}

/* pembatas css end */

/* banner robot css start */


.banner-citiasia {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'poppins';
}

.banner-citiasia img {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    width: 100%;
}

.banner-container {
    position: absolute;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.banner-container img {
    width: 501.75px;
    height: 622.13px;
}

.banner-word {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    gap: 30px;
    margin-left: 4rem;
}

.banner-word h3 {
    color: #FFF;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 54px;
}

.banner-word p {
    width: 700px;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

@media (max-width: 600px) {
    .banner-citiasia {
        width: 100%;
        height: 100%;
        display: flex;
    }

    .banner-citiasia img {
        background-repeat: no-repeat !important;
        background-size: cover !important;
        height: 500px;
    }

    .banner-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .banner-word {
        width: 350px;
        margin-left: 0;
        text-align: center;
    }

    .banner-container .banner-word h3 {
        font-size: 28px;
        word-wrap: break-word;
        text-align: center;
        white-space: normal;
        line-height: normal;
    }

    .banner-container .banner-word p {
        width: 350px;
        line-height: normal;
        font-size: 14px;
    }

    .banner-container img {
        display: none;
    }
}

@media screen and (max-width: 900px) and (min-width: 601px) {
    .banner-citiasia {
        width: 100%;
        height: 100%;
    }

    .banner-citiasia img {
        background-repeat: no-repeat !important;
        background-size: cover !important;
        height: 500px;
    }

    .banner-container .banner-word h3 {
        font-size: 28px;
        line-height: normal;
    }

    .banner-container .banner-word p {
        width: auto;
        line-height: normal;
        font-size: 16px;
    }
}

/* banner robot css end */

/* citiasia inc */

.citiasiainc-gif {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 2rem;
}

.citiasiainc-gif .citiasiainc-word {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 700px;
    /* padding: 26px; */
    height: 278px;
    background-color: #0072BC;
}

.citiasiainc-gif .citiasiainc-word h3 {
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px
}

.citiasiainc-gif .citiasiainc-word2 {
    margin: 0px 50px 0px 50px;
}

.citiasiainc-gif .citiasiainc-word p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.citiasiainc-gif .citiasiainc-word button {
    width: 100px;
    padding: 5px 0px;
    color: white;
    background-color: #F5B203;
    border-radius: 15px;
    margin: 10px 0px;
    cursor: pointer;
    border: 0;
    text-decoration: none;
}

.citiasiainc-gif .citiasiainc-word button:hover {
    background-color: #d79a00 !important;
}


.citiasiainc-gif .citiasiainc-word img {
    width: 100% !important;
    height: 20px !important;
}

.citiasiainc-gif .citiasiainc-img img {
    display: flex !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

@media (max-width: 600px) {

    .citiasiainc-gif {
        width: 100%;
        height: 100%;
    }

    .citiasiainc-gif .citiasiainc-word {
        width: 350px;
        height: 380px;
    }

    .citiasiainc-word .citiasiainc-word2 {
        align-items: center;
        text-align: center;
    }

    .citiasiainc-word .citiasiainc-word2 h3 {
        font-size: 34px;
        padding-top: 2rem;
    }

    .citiasiainc-word .citiasiainc-word2 p {
        font-size: 14px !important;
        margin: 0px -45px;
    }

    .citiasiainc-gif .citiasiainc-word button {
        width: auto;
        display: inline-flex;
        padding: 12px 23.72px 12px 24px;
        justify-content: center;
        align-items: center;
        border-radius: 15px !important;
        margin-bottom: 20px;

        color: #FFF;
        font-size: 15px;
        font-weight: 600;
        line-height: 15px;
    }

    .citiasiainc-gif .citiasiainc-word img {
        width: 100%;
    }

    .citiasiainc-gif .citiasiainc-img {
        display: none;
    }
}

@media screen and (max-width: 900px) and (min-width: 601px) {
    .citiasiainc-word .citiasiainc-word2 p {
        line-height: normal;
    }

    .citiasiainc-word .citiasiainc-word2 p {
        font-size: 14px !important;
    }
}

/* Citiasiainc Gif Css End */

/* portofolio word css start */

.porto-word {
    display: flex;
    justify-content: center;
    flex-direction: column !important;
    text-align: left;
    align-items: center;
    font-family: 'Poppins';
    margin-top: 6rem;
    margin-bottom: 1rem;
}

.porto-desc {
    width: 1100px;
    align-items: center;
}

.porto-desc h3 {
    color: #2758A7;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}

.porto-desc p {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

@media (max-width: 600px) {
    .porto-word {
        width: 100%;
        height: 100%;
        text-align: left;
        align-items: center;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .porto-desc {
        width: auto;
        padding: 15px;
        /* height: 350px; */
    }

    .porto-desc h3 {
        color: #2758A7;
        font-size: 34px;
        font-style: normal;
        font-weight: 700;
        line-height: 60px;
    }

    .porto-desc p {
        color: #333;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
    }
}

@media screen and (max-width: 900px) and (min-width: 601px) {
    .porto-desc {
        width: auto;
        padding: 0px 20px;
    }
}

/* portofolio word css end */

/* peta css start */

.peta {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'poppins';
}

.peta-count {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 100;
    /* bottom: -1320px; */
    align-items: center;
    right: 150px;
}

.peta img {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.peta-count h2 {
    color: #267BB1;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;

}

.peta-count h4 {
    color: #000;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;

}

@media (max-width: 600px) {
    .peta {
        width: 100%;
        height: 100%;
        margin-bottom: 1rem;
    }

    .peta-count {
        display: none;
    }

    .peta img {
        width: 100%;

    }
}

@media screen and (max-width: 900px) and (min-width: 601px) {
    .peta-count {
        display: none;
    }
}

/* peta css end */

/* mitra css start */

.mitra-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-family: 'poppins';
}

.mitra-count .mitra-portfolio img {
    width: 100px;
}

.mitra-count .mitra-portfolio h3 {
    margin-top: 1rem;
    color: #2679FF;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
}

.mitra-count .mitra-portfolio span {
    color: #9B9B9B;
    font-size: 27.259px;
    font-style: normal;
    font-weight: 400;
}

.mitra-portfolio {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 0px 0px 0.5px #9B9B9B;
    padding: 0px 70px;
    height: 280px;
    justify-content: center;
}

@media (max-width: 600px) {
    .mitra-count {
        display: grid;
        width: 100%;
        height: auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .mitra-count .mitra-portfolio {
        padding: 0;
    }
}

@media screen and (max-width: 900px) and (min-width: 601px) {
    .mitra-count {
        display: grid;
        width: 100%;
        height: auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        margin-top: 2rem;
    }

    .mitra-count .mitra-portfolio {
        padding: 0;
    }
}

/* mitra css end */

/* layanan kami css start */

.layanan-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'poppins';
    margin-top: 1rem;
}

.layanan-banner img {
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
}

.layanan-banner h1 {
    position: absolute;
    color: #F9F9F9;
    text-align: center;
    text-shadow: 0px 0px 60px #000;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}

@media (max-width: 600px) {

    .layanan {
        width: 100%;
    }

    .layanan-banner img {
        width: 100%;
        height: 200px;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .layanan-banner h1 {
        font-size: 38px;
    }
}

@media screen and (max-width: 900px) and (min-width: 601px) {
    .layanan-banner img {
        height: auto;
    }

    .layanan-banner h1 {
        font-size: 50px;
    }
}

/* mitra css start */

.product-tab {
    flex-direction: column !important;
    font-family: 'poppins';
    align-items: center;
}

.product-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #2758A7;
    width: 100%;
    gap: 10px;
}

.product-tabs div {
    margin: 10px 0px;
    color: white;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    width: auto;
    padding: 10px;
    background: #D9D9D9;
    border-radius: 10px;
}

.product-tabs-mobile {
    display: none;
}

.product-tabs h5 {
    color: #2758A7;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin-top: 5px;
    margin-bottom: 5px !important;
}

.product-tabs div:hover {
    background: #FFFFFF;
    text-decoration: none;
    /* border-radius: 10px 10px 0px 0px;
    padding-bottom: 20px;
    margin-bottom: 0px; */
    transition: all 0.3s ease;
}

.product-tabs div.active {
    background: #FFFFFF;
    border-radius: 10px 10px 0px 0px;
    padding-bottom: 20px;
    margin-bottom: 0px;
}

@media (max-width: 600px) {

    .product {
        width: 100%;
        margin-top: 0;
    }

    .product-tabs {
        display: none;
    }

    .product-tabs-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: #2758A7;
        width: 100%;
        gap: 10px;
    }

    .product-tabs-mobile div {
        margin: 10px 0px;
        color: white;
        text-align: center;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        cursor: pointer;
        width: auto;
        padding: 10px;
        background: #D9D9D9;
        border-radius: 10px;
    }

    .product-tabs-mobile h5 {
        color: #2758A7;
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        margin-top: 5px;
        margin-bottom: 5px !important;
    }

    .product-tabs-mobile div:hover {
        background: #FFFFFF;
        text-decoration: none;
        /* border-radius: 10px 10px 0px 0px;
        padding-bottom: 20px;
        margin-bottom: 0px; */
        transition: all 0.3s ease;
    }

    .product-tabs-mobile div.active {
        background: #FFFFFF;
        border-radius: 10px 10px 0px 0px;
        padding-bottom: 20px;
        margin-bottom: 0px;
    }
}

/* mitra css end */

/* Product Smart City Css End */

/* Slider */

/* .wrapper{
    justify-content: center;
  }
  .wrapper i{
    top: 50%;
    height: 44px;
    width: 44px;
    color: #343F4F;
    cursor: pointer;
    font-size: 1.15rem;
    position: absolute;
    text-align: center;
    line-height: 44px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.1s linear;
  }
  .wrapper i:active{
    transform: translateY(-50%) scale(0.9);
  }
  .wrapper i:hover{
    background: #f2f2f2;
  }
  .wrapper i:first-child{
    left: 5px;
    z-index: 10;
    display: none;
  }
  .wrapper i:last-child{
    right: 5px;
    z-index: 10;
  }
  .wrapper .carousel{
    font-size: 0px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    display: flex;
    justify-content: center;
  }
  .carousel.dragging{
    cursor: grab;
    scroll-behavior: auto;
  }

  @media (max-width: 600px) {
    .wrapper {
        max-width: 1200px;
        position: relative;
    }
  } */

.wrapper {
    justify-content: center;
}

.wrapper i {
    display: none;
    /* top: 50%; */
    height: 44px;
    width: 44px;
    color: #343F4F;
    cursor: pointer;
    font-size: 1.15rem;
    position: absolute;
    text-align: center;
    line-height: 44px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.1s linear;
}

.wrapper i:active {
    transform: translateY(-50%) scale(0.9);
}

.wrapper i:hover {
    background: #f2f2f2;
}

.wrapper i:first-child {
    left: 5px;
    z-index: 10;
    display: none;
    bottom: 200px;
}

.wrapper i:last-child {
    right: 5px;
    z-index: 10;
    top: 200px;
}

.wrapper .carousel {
    font-size: 0px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    display: flex;
    justify-content: center;
}

.carousel.dragging {
    cursor: grab;
    scroll-behavior: auto;
}

@media (max-width: 600px) {
    .wrapper {
        max-width: 1200px;
        position: relative;
    }

    .wrapper i {
        display: block;
    }
}

.wrapper-news i {
    display: none;
}

.carousel-news {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}

/* Slider End */

.product-sc {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

.product-sc-product {
    display: flex;
    justify-content: center;
    /* flex-wrap: wrap; */
}

.smartcity-product {
    font-family: 'roboto';
    align-items: center;
    justify-content: center;
}

.smartcity-product .smartcity-product-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3rem;
}

.smartcity-product-card .card-product {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    background-color: white;
    border: 1px solid white;
    border-radius: 15px;
}

.smartcity-product-card .card-product img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.smartcity-product .smartcity-product-card div {
    width: 200px;
    height: fit-content;
    min-height: 80px;
}

.smartcity-product .smartcity-product-card .product-desc {
    background-color: #2758A7;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    width: 200px;
    border-radius: 0px 0px 15px 15px;
}

.smartcity-product .smartcity-product-card .product-desc:hover {
    z-index: 5;
}

.smartcity-product-card .product-word {
    color: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -80px !important;
    transition: 0.23s ease-in-out;
    z-index: -1;
    white-space: normal;
}

.smartcity-product-card .product-desc:hover .product-word {
    z-index: 1;
}

.smartcity-product-card .product-desc a {
    text-decoration: none;
}

.smartcity-product-card .product-desc h3 {
    color: #FFF;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 300;
    padding-top: inherit;
}

.smartcity-product-card .product-desc .visit-product {
    display: flex;
    justify-content: center;
    text-align: justify;
    align-items: center;
    transition: 0.23s ease-in-out;
    margin-top: -50px !important;
    z-index: -1;
    padding: 5px 20px;
    text-decoration: none;
    background-color: #F5B203;
    color: white;
    border-radius: 100px;
    font-size: 14px;
}

.smartcity-product-card .product-desc:hover .visit-product {
    margin-top: unset !important;
    z-index: 1;
}

.smartcity-product .smartcity-product-card .product-desc .product-name {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-decoration: none;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
}

#product-sc-mobile {
    display: none;
}

@media (max-width: 600px) {
    .product-sc {
        /* flex-direction: row;
        margin-left: 15px; */
        /* display: none; */
    }

    #product-sc-mobile {
        display: block;
    }

    .smartcity-product .smartcity-product-card {
        max-width: 250px;
    }
}

@media screen and (max-width: 900px) and (min-width: 601px) {
    .smartcity-product .smartcity-product-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 3rem;
    }
}

/* Product Smart City Css End */

/* Product Smart Enterprise Css Start */

#product-se {
    /* display: flex;
    flex-direction: column;
    margin-bottom: 3rem; */
    display: none;
}

.product-se {
    flex-direction: column;
    margin-bottom: 3rem;
}

.product-se-product {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.smartenterprise-product {
    font-family: 'roboto';
    align-items: center;
    justify-content: center;
}

.smartenterprise-product .smartenterprise-product-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3rem;
}

.smartenterprise-product-card .card-product {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    background-color: white;
    border: 1px solid white;
    border-radius: 15px;
}

.smartenterprise-product-card .card-product img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.smartenterprise-product .smartenterprise-product-card div {
    width: 200px;
    height: fit-content;
    min-height: 100px;
}

.smartenterprise-product .smartenterprise-product-card .product-desc {
    background-color: #2758A7;
    display: flex;
    border: 1px solid white;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    width: 200px;
    border-radius: 0px 0px 15px 15px;
}

.smartenterprise-product .smartenterprise-product-card .product-desc:hover {
    /* padding-bottom: 200px; */
    z-index: 5;
}

.smartenterprise-product-card .product-word {
    color: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -80px !important;
    transition: 0.23s ease-in-out;
    /* transition-delay: .2s; */
    z-index: -1;
    white-space: normal;
}

.smartenterprise-product-card .product-desc:hover .product-word {
    /* margin-top: unset !important; */
    z-index: 1;
}

.smartenterprise-product-card .product-desc a {
    text-decoration: none;
}

.smartenterprise-product-card .product-desc h3 {
    color: #FFF;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 300;
}

.smartenterprise-product-card .product-desc .visit-product {
    display: flex;
    justify-content: center;
    text-align: justify;
    align-items: center;
    transition: 0.23s ease-in-out;
    transition-delay: .2s;
    margin-top: -50px !important;
    z-index: -1;
    padding: 5px 20px;
    text-decoration: none;
    background-color: #F5B203;
    color: white;
    border-radius: 100px;
    font-size: 14px;
}

.smartenterprise-product-card .product-desc:hover .visit-product {
    margin-top: unset !important;
    z-index: 1;
}

.smartenterprise-product .smartenterprise-product-card .product-desc .product-name {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-decoration: none;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
}

@media (max-width: 600px) {
    .smartenterprise-product .smartenterprise-product-card {
        max-width: 250px;
    }
}

@media screen and (max-width: 900px) and (min-width: 601px) {
    .smartenterprise-product .smartenterprise-product-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 3rem;
    }
}

/* Product Smart Enterprise Css End */

/* News Div Css Start */

#news-div {
    display: flex;
    /* flex-direction: column; */
    margin-bottom: 3rem;
    display: none;
}

@media (max-width: 600px) {
    #news-div .row>* {
        /* width: 0px;
        max-width: 0px; */
    }

    .inner-card-box .row {
        /* flex-wrap: nowrap !important; */
    }
}

@media screen and (max-width: 900px) and (min-width: 601px) {
    #news-div .row .card-body img {
        width: fit-content;
    }

    #news-div .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1rem;
    }

    #news-div .row .col-md-6 {
        width: min-content;
    }

    #news-div .row .card-body .smartcitybranding {
        text-align: center;
    }

    #news-div .row .card-body .bacaselengkapnya {
        text-align: center;
    }
}

/* News Div Css End */

/* FAQ Program Prakerja css start */

.faq-program {
    flex-direction: column;
    font-family: 'poppins';
    align-items: center;
    background-color: #2758A7;
    width: 100%;
    /* height: 550px; */
    padding-bottom: 2rem;
    /* margin-top: 7rem; */
}

.faq-word {
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.faq-word h3 {
    color: #FFF;
    font-size: 70.5px;
    font-style: normal;
    font-weight: 800;
    line-height: 67.941px;
    font-family: 'Inter';
}

.faq-answer {
    display: none;
    background-color: #fff;
    margin: 0;
    padding: 10px;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-box {
    display: flex;
    margin-top: 3rem;
    justify-content: center;
    border-radius: 20px 20px 20px 20px;
    background-color: #E7E7E7;
}

.faq-banner {
    display: flex;
    flex-basis: 50%;
    justify-content: center;
    align-items: center;
    background-color: #F5B203;
    border-radius: 20px 0px 0px 20px;
}

.faq-banner h3 {
    color: #2758A7;
    /* background-color: #F5B203; */
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    /* padding: 7rem; */
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px 0px 0px 20px;
}

.faq-answer p {
    display: block;
    width: 470px;
    text-align: justify;
    margin-left: 10px;
    margin-bottom: 10px;
}

.faq-list {
    /* height: 200px; */
    align-content: center;
    align-items: center;
    justify-items: center;
    flex-basis: 50%;
    gap: 10px;
}

.faq-item {
    gap: 10px;
}

.faq-list button {
    width: 500px;
    text-align: left;
    padding: 10px 25px 10px 25px;
    border-radius: 20px;
    background-color: #EFEFEF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.faq-list button img {
    transition: transform 0.3s ease;
}

.faq-list button.expanded img.down {
    transform: rotate(180deg);
}

@media (max-width: 600px) {
    .faq-program {
        margin-top: 0px;
    }

    .faq-banner {
        display: none;
    }

    .faq-banner h3 {
        display: none;
    }

    .faq-box {
        display: block;
        margin-top: 0;
    }

    .faq-list button {
        width: 100%;
    }

    .faq-answer p {
        width: 100%;
        margin-left: 0px;
    }

    .faq-word h3 {
        text-align: center;
        font-size: 38px;
    }
}

@media screen and (max-width: 900px) and (min-width: 601px) {
    .faq-word h3 {
        font-size: 50px;
    }
}

/* FAQ Program Prakerja css end */

/* footer css start */
.footer-bg {
    padding: 30px 0px 0px 0px;
    background-color: #2758A7;
}

.footer-bg .container .footer-citiasia {
    display: flex !important;
    flex-direction: column !important;
    justify-content: left !important;
    align-items: start !important;
    flex-basis: 50%;
}

.footer-bg .container .footer-citiasia h3 {
    color: white;
    font-size: 20px;
    font-family: 'poppins';
    justify-content: center;
    align-items: center;
    font-weight: 400;
}

.footer-bg .container .footer-citiasia-2 {
    /* flex-direction: column; */
    flex-basis: 50%;
    font-family: 'poppins';
    flex-direction: column;
}

.footer-bg .footer-citiasia .copyright {
    margin-top: 3rem;
}

.footer-citiasia-2 .about-layanan {
    display: flex;
}

.footer-citiasia-2 .about {
    width: 200px;
}

.footer-citiasia-2 .layanan {
    width: 200px;
}

.footer-citiasia-2 .about ul,
li {
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 14px;
}

.footer-citiasia-2 .layanan ul,
li {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 14px;
}

.footer-citiasia-2 .layanan a {
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 14px;
    text-decoration: none;
    color: white;
}

.footer-bg .footer-citiasia .alamat {
    flex-direction: column !important;
    text-align: justify;
    color: white;
    width: 50%;
}

.footer-bg .footer-citiasia .alamat p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

.footer-bg .container .footer-citiasia-2 .social-media {
    width: 50%;
    padding-top: 50px;
}

.footer-bg .container .footer-citiasia-2 .social-media .list-sosmed {
    display: flex;
    justify-content: space-around;
}

.footer-bg .container .footer-citiasia-2 .form-subs {
    width: 75%;
    border: 1px solid;
    border-color: white;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.footer-bg .container .footer-citiasia-2 .form-subs input {
    height: 50px;
    padding: 10.2px 0px 10.2px 16px;
    width: 300px;

    border-radius: 5px;
}

.footer-bg .container .footer-citiasia-2 .form-subs button {
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #EB4526
}

.footer-bg .container .footer-citiasia-2 .policy {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 13px;
    color: white;
}

.footer-citiasia .reserved {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    color: white;
}

@media (max-width: 600px) {
    .footer-bg .container .footer-citiasia {
        justify-content: center !important;
        align-items: center !important;
        flex-basis: auto;
    }

    .footer-bg .footer-citiasia .alamat {
        width: auto;
        flex-wrap: wrap;
    }

    .footer-citiasia .copyright {
        margin-top: 1rem !important;
    }

    .footer-citiasia-2 .about-layanan {
        text-align: center;
    }

    .footer-bg .container .footer-citiasia-2 .social-media {
        text-align: center;
        width: auto;
        padding-top: 0;
        align-items: normal;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .footer-bg .container .footer-citiasia-2 .form-subs {
        width: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        border: 1px solid;
        border-color: white;
        border-bottom: none;
        border-left: none;
        border-right: none;
    }

    .footer-bg .container .footer-citiasia-2 .form-subs input {
        max-width: max-content;
    }

    .form-email form {
        width: max-content;
    }

    .footer-citiasia-2 .about {
        width: auto !important;
    }

    .footer-citiasia-2 .layanan {
        width: auto !important;
    }
}

@media screen and (max-width: 900px) and (min-width: 601px) {
    .footer-bg .footer-citiasia .copyright {
        margin-top: 1rem;
    }

    .footer-bg .container .row {
        flex-wrap: nowrap;
    }

    .footer-bg .container {
        --bs-gutter-x: 0 !important;
        --bs-gutter-y: 0 !important;
    }

    .footer-bg .container .row hr {
        display: none;
    }

    .footer-bg .container .footer-citiasia-2 .form-subs {
        width: auto;
    }

    .footer-bg .container .footer-citiasia-2 .form-subs input {
        width: auto;
    }

    .footer-citiasia-2 .about {
        width: auto !important;
    }

    .footer-citiasia-2 .layanan {
        width: auto !important;
    }
}

/* footer css end */

.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #2758A7;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
