@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;700;800;900&display=swap');

html {
    overflow: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    font-size: 10px;
}

body {
    font-family: 'Blinker', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #191925;
    position: relative;
}

body::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../../imgs/noise.gif);
    z-index: -1;
    background-color: rebeccapurple;
    opacity: 0.05;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

.join-button {
    display: inline-block;
    color: #fff;
    vertical-align: super;
    border-radius: 1.5px;
    border: solid 1px #0074cf;
    background-color: #0074cf;
    padding: 9px 20px 9px 47px;
    position: relative;
    font-size: 15px;
}

.join-button:before {
    box-shadow: 0 0 0 rgb(255 255 255 / 40%);
    animation: pulso 2s infinite;
    transition: .5s;
    content: "";
    width: 15px;
    height: 15px;
    border: 3px solid #eeb92b;
    position: absolute;
    left: 15px;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
}

.join-button:hover {
    color: #ffffff;
}

@keyframes pulso {
    0% {
        -moz-box-shadow: 0 0 0 0 rgb(237 185 43 / 80%);
        box-shadow: 0 0 0 0 rgb(237 185 43 / 860%)
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgb(237 185 43 / 0%);
        box-shadow: 0 0 0 20px rgb(237 185 43 / 0%)
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgb(237 185 43 / 0%);
        box-shadow: 0 0 0 0 rgb(237 185 43 / 0%)
    }
}

a.join-button.clickcustomform.desktop-btn {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

/*particle js*/
#particles-js {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
    top: 0;
    left: 0;
    z-index: -1;
}

.with-particles {
    position: relative;
    z-index: 1;
}

/*header*/
.header--sticky {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    background: rgb(0 0 0 / 70%);
}

.sticky {
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: hsl(0deg 0% 0% / 30%);
}

.brand {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: inherit;
    border: none;
    outline: none;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
}

.brand img {
    width: 200px;
	height:auto;
}

.navbar {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    border: none;
    outline: none;
    color: #ffffff;
    background: transparent;
}

.navbar .wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.navbar .burger {
    position: relative;
    display: none;
    cursor: pointer;
    width: 2rem;
    height: 1rem;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: none;
    transform: rotate(0deg);
    transition: 0.35s ease-in-out;
}

.navbar .burger-line {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: #ffffff;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.navbar .burger-line:nth-child(1) {
    top: 0;
}

.navbar .burger-line:nth-child(2),
.navbar .burger-line:nth-child(3) {
    top: 0.5rem;
}

.navbar .burger-line:nth-child(4) {
    top: 1rem;
}

.navbar .burger.is-active .burger-line:nth-child(1),
.navbar .burger.is-active .burger-line:nth-child(4) {
    top: 1.25rem;
    width: 0%;
    left: 50%;
}

.navbar .burger.is-active .burger-line:nth-child(2) {
    transform: rotate(45deg);
}

.navbar .burger.is-active .burger-line:nth-child(3) {
    transform: rotate(-45deg);
}

.navbar .menu-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar .menu-link {
    font-size: 17px;
    font-weight: 500;
    line-height: inherit;
    border: none;
    color: #cecece;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    transition: all 0.35s ease-in-out;
    position: relative;
}

.navbar .menu-link:after {
    position: absolute;
    content: "";
    width: 0px;
    height: 2px;
    background: #eeb92b;
    border-radius: 10px;
    bottom: -10px;
    left: 0;
    transition: all .3s;
}

.navbar .menu-link:hover:after {
    width: 50px;
}

.navbar .menu-link:hover {
    color: #ffffff;
}

/*banner**/
.banner-sec {
    background-position: center;
    position: relative;
    padding: 50px 0px;
    margin-top: 75px;
    background: #212121 url(https://farm9.staticflickr.com/8007/29367662245_13b560c2c6_h.jpg) top left;
    background-repeat: repeat-x;
    height: 100%;
    left: 0;
    opacity: 1;
    top: 0;
    width: 100%;
}

.banner-text h2 {
    font-size: 39px;
    color: #ffffff;
    margin-bottom: 20px;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.32;
    letter-spacing: normal;
    text-align: left;
    margin-top: 0;
}

.typed {
    display: inline-block;
    color: #0074cf !important;
}

span.typed-cursor {
    font-size: 50px;
    color: #0074cf;
}

.type-wrap {
    height: 90px;
}

.banner-sec h3 {
    color: #ffffff;
    font-size: 20px;
}

.banner-text a {
    margin-top: 30px;
}

section.home-about-area {
    position: relative;
    padding: 50px 0px;
}

.col-lg-5.col-md-6.home-about-right h6 {
    font-size: 25px;
    color: #ffffff;
    margin-bottom: 0px;
}

.col-lg-5.col-md-6.home-about-right h1 {
    color: #ffffff;
    font-size: 50px;
    margin-bottom: 20px;
}

.col-lg-5.col-md-6.home-about-right p {
    color: #ffffff;
    font-size: 18px;
    text-align: justify;
}

.col-lg-5.col-md-6.home-about-right {
    padding-left: 30px;
}

.service-sec {
    position: relative;
    padding: 15px 0px;
}

.sec-title {
    margin-bottom: 50px;
}

.sec-title h3 {
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: #0074cf;
    margin: 0;
    text-transform: uppercase;
}

.sec-title h3 span {
    display: inline-block;
    margin-right: 5px;
}

.sec-title h2 {
    font-size: 30px;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
    margin: 20px 0;
    margin-bottom: 0px;
}

.sec-title p {
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.44;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
}

.mobile-service {
    margin-bottom: 35px;
}

.service-box-img img {
    width: 60%;
    display: block;
	height:auto;
    margin-left: auto;
}

.service-box {
    position: relative;
}

.ser-list-blue {
    background-image: linear-gradient(to bottom, #0767b1, #0042bf);
}

.ser-list-golden {
    background-image: linear-gradient(to bottom, #eeb92b, #eeb92b);
}

.ser-list {
    max-width: 275px;
    top: 25px;
    width: 50%;
    position: absolute;
    left: 15px;
    padding: 10px 0;
    border-radius: 5px;
}

.ser-header h2 {
    font-size: 24px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
    padding: 15px;
    position: relative;
    margin: 0px;
    display: inline-block;
    width: calc(100% - 60px);
}

.ser-header a {
    display: inline-block;
    position: relative;
    opacity: 0;
    line-height: 0;
    font-size: 0;
    color: transparent;
    margin-left: auto;
    margin-right: auto;
    width: 50px;
    height: 50px;
    overflow: hidden;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
    -webkit-animation: pulse 1.5s 0s infinite normal ease forwards;
    -moz-animation: pulse 1.5s 0s infinite normal ease forwards;
    -o-animation: pulse 1.5s 0s infinite normal ease forwards;
    animation: pulse 1.5s 0s infinite normal ease forwards;
    background-image: url(../../imgs/arrow-down.svg);
    background-repeat: no-repeat;
}

.ser-header span {
    display: inline-block;
    border: 1px solid #ffffff;
    width: 50px;
    height: 50px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    transform: rotate(-90deg);
}

.ser-header a:before {
    -webkit-animation: pulse 1.5s 0.25s infinite normal ease forwards;
    -moz-animation: pulse 1.5s 0.25s infinite normal ease forwards;
    -o-animation: pulse 1.5s 0.25s infinite normal ease forwards;
    animation: pulse 1.5s 0.25s infinite normal ease forwards;
}

.ser-header a:before,
.ser-header a:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url('../../imgs/arrow-down.svg') no-repeat center top;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
}

.ser-header a:after {
    -webkit-animation: pulse 1.5s 0.5s infinite normal ease forwards;
    -moz-animation: pulse 1.5s 0.5s infinite normal ease forwards;
    -o-animation: pulse 1.5s 0.5s infinite normal ease forwards;
    animation: pulse 1.5s 0.5s infinite normal ease forwards;
}

@-webkit-keyframes pulse {
    0% {
        opacity: 0;
        background-position: center top;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto;
    }

    10% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        -moz-background-size: 75% auto;
        -o-background-size: 75% auto;
        -webkit-background-size: 75% auto;
        background-size: 75% auto;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        background-position: center bottom;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto;
    }
}

@-moz-keyframes pulse {
    0% {
        opacity: 0;
        background-position: center top;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto;
    }

    10% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        -moz-background-size: 75% auto;
        -o-background-size: 75% auto;
        -webkit-background-size: 75% auto;
        background-size: 75% auto;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        background-position: center bottom;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto;
    }
}

@-ms-keyframes pulse {
    0% {
        opacity: 0;
        background-position: center top;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto
    }

    10% {
        opacity: 0
    }

    50% {
        opacity: 1;
        -moz-background-size: 75% auto;
        -o-background-size: 75% auto;
        -webkit-background-size: 75% auto;
        background-size: 75% auto
    }

    90% {
        opacity: 0
    }

    100% {
        opacity: 0;
        background-position: center bottom;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto
    }
}

@keyframes pulse {
    0% {
        opacity: 0;
        background-position: center top;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto
    }

    10% {
        opacity: 0
    }

    50% {
        opacity: 1;
        -moz-background-size: 75% auto;
        -o-background-size: 75% auto;
        -webkit-background-size: 75% auto;
        background-size: 75% auto
    }

    90% {
        opacity: 0
    }

    100% {
        opacity: 0;
        background-position: center bottom;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto
    }
}

.ser-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ser-list li {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    position: relative;
    padding: 14px 15px;
    border-bottom: 0.5px solid rgba(255, 255, 255, .2);
    margin: 0px;
}

.ser-list li img {
    margin-right: 10px;
	height:auto;
}

.ser-list li:last-child {
    border-bottom: none;
}

.mobile-slide {
    max-width: 165px;
    width: 100%;
    position: absolute;
    overflow: hidden;
    padding: 7px;
    z-index: 3;
    bottom: 30px;
}

div#mobile-slider {
    background: url(../../imgs/mobile.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px 10px;
    height: 300px;
}

/*ser*/
.service-sec-2 {
    position: relative;
    padding: 15px 0px;
}

.service-sec-2 .ser-col:nth-child(1) .ser-box {
    background-image: linear-gradient(41deg, #12aaef, #0084ff);
}

/*.service-sec-2 .ser-col:nth-child(2) .ser-box {background-color: #004c77;}
*/
.service-sec-2 .ser-col:nth-child(2) .ser-box {
    background-image: linear-gradient(54deg, #8529bc, #ff7c00);
}

/*.service-sec-2 .ser-col:nth-child(4) .ser-box {background-color: #def0ff;}
*/
.service-sec-2 .ser-col:nth-child(3) .ser-box {
    background-image: linear-gradient(54deg, #8529bc, #ff7c00);
}

.service-sec-2 .ser-col:nth-child(4) .ser-box {
    background-image: linear-gradient(207deg, #6f86d3, #1b298f), linear-gradient(to bottom, #1b298f, #6f86d3);
}


.ser-box img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

.service-sec-2 .ser-col:nth-child(1) .ser-box img,
.service-sec-2 .ser-col:nth-child(4) .ser-box img {
    top: 0;
    width: 270px;
}

.service-sec-2 .ser-col:nth-child(1) .ser-box,
.service-sec-2 .ser-col:nth-child(4) .ser-box {
    padding-right: 270px;
}

.ser-box {
    padding: 12px;
    padding-top: 140px;
    padding-bottom: 20px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    margin-bottom: 30px;
    cursor: pointer;
}

.ser-box img {
    object-fit: cover;
    width: auto;
    border-radius: 0;
    position: absolute;
    top: 15px;
    right: 10px;
    height: auto;
    transition: .5s;
    transform-origin: bottom center;
}

.service-sec-2 .ser-col:nth-child(4) .ser-box h3,
.service-sec-2 .ser-col:nth-child(4) .ser-box p {
    color: #ffffff;
}

.ser-box h3 {
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    margin: 0;
    margin-bottom: 20px;
}

.ser-box p {
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
}

.ser-box:hover img {
    transform: scale(1.2);
}

.empower {
    position: relative;
    padding: 15px 0px;
}

.empower .container {
    background-image: url(../../imgs/partnership.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 300px;
    padding: 100px 50px;
}

.empower-box h2 {
    font-size: 32px;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.44;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    margin-bottom: 30px;
}

.choose-sec {
    position: relative;
    padding: 15px 0px;
}

.choose-box {
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    background-color: rgb(255 255 255 / 21%);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 34px 0 rgb(255 255 255 / 30%);
    border: 1px solid #4a4a53;
}

.choose-content {
    display: inline-block;
    width: calc(100% - 150px);
    vertical-align: text-bottom;
    padding-left: 15px;
}

.choose-box span.choose-icon {
    display: inline-block;
    width: 135px;
    height: 135px;
    vertical-align: text-bottom;
}

.choose-content h3 {
    font-size: 22px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.36;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
    margin-bottom: 20px;
}

.choose-content p {
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.44;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
    margin-bottom: 20px;
}

.choose-icon img {
    -webkit-transition: transform 2s ease-in-out;
    -moz-transition: transform 2s ease-in-out;
    -o-transition: transform 2s ease-in-out;
    transition: transform 2s ease-in-out;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.choose-box:hover .choose-icon img {
    -moz-transform: rotate3d(0, 1, 0, 360deg);
    -webkit-transform: rotate3d(0, 1, 0, 360deg);
    -ms-transform: rotate3d(0, 1, 0, 360deg);
    transform: rotate3d(0, 1, 0, 360deg);
}

.choose-sec .row .col-md-6:nth-child(2) .choose-box {
    background-position: right top;
}

.empower2 {
    position: relative;
    padding: 15px 0px;
}

.empower2 .container {
    background-image: url(../../imgs/layer2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 300px;
    padding: 100px 50px;
}

.empower-box2 h2 {
    font-size: 32px;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.44;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    margin-bottom: 30px;
}

.empower-box2 {
    background: #eeb92b;
    padding: 60px;
}

.counter-sec {
    position: relative;
    padding: 35px 0px 15px 0px;
}

.counter-text {
    color: #ffffff;
    font-size: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 25px 15px;
    border-radius: 2.5px;
    border: solid 0.5px #2c346d !important;
    background-color: rgb(15 37 81 / 32%);
    margin-bottom: 30px;
    min-height: 135px;
}

.counting {
    line-height: 15px;
    margin-left: 20px;
}

.counting span {
    font-size: 38px;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.26;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
}

.counting font {
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.63;
    letter-spacing: normal;
    text-align: left;
    color: #a6acd5;
}

.count-img {
    width: 65px;
	height:auto;
}

.count-heading-btn {
    text-align: right
}

.count-heading h2 {
    color: #ffffff;
    font-size: 35px;
}

.testimonial {
    position: relative;
    padding: 0px 0px 15px 0px;
}

#testimonial-slider .item {
    opacity: 0.4;
    transition: 0.4s ease all;
    margin: 0 20px;
    transform: scale(0.8);
    position: relative;
}

@media (max-width: 1000px) {
    #testimonial-slider .item {
        margin: 0;
        transform: scale(0.9);
    }
}

#testimonial-slider .active .item {
    opacity: 1;
    transform: scale(1);
}

#testimonial-slider .inner {
    background: rgb(66 66 66 / 53%);
    padding: 30px;
    border-radius: 15px;
}

#testimonial-slider .inner p {
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.44;
    letter-spacing: normal;
    text-align: justify;
    color: #ffffff;
    margin-bottom: 20px;
}

.name-wrap span {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    overflow: hidden;
}

.name-box h3 {
    font-size: 18px;
    color: #ffffff;
}

.name-box h5 {
    color: #ffffff;
    font-size: 14px;
}

.name-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.name-box {
    margin-left: 20px;
}

.inner hr {
    background-color: #ffffff;
    margin: 45px 0;
}

/*team*/
.team-sec {
    position: relative;
    padding: 15px 0px;
}

/* style member component */
.list-members {
    background: #eeb92b;
    margin: 4% auto;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}

.member {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.member-image {
    width: 50%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    transition: 1s;
}

.member-image:hover img {
    transform: scale(1.1);
}

.member-info {
    width: 50%;
    text-align: center;
    color: #fff;
}

.member-info p {
    margin: 5px 0 20px 0px;
    font-size: 15px;
}

.member-info h3 {
    font-size: 22px;
}

/* style social link */
.social-link .fa {
    width: 35px;
    color: #ffffff;
    height: 35px;
    line-height: 35px;
    border: 1px solid #fff;
    margin: 0 7px;
    cursor: pointer;
    transition: transform 0.5s;
    font-size: 15px;
}

.social-link .fa:hover {
    background: #fff;
    color: #eeb92b;
    transform: translateY(-7px);
}

/* Membuat segitiga */
.member-image::after {
    content: "";
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 15px solid #eeb92b;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

/* Merubah posisi member-image dengan member-info */
@media screen and (min-width: 771px) {

    .member:nth-child(4n + 3) .member-info,
    .member:nth-child(4n + 4) .member-info {
        order: 1;
    }

    .member:nth-child(4n + 3) .member-image,
    .member:nth-child(4n + 4) .member-image {
        order: 2;
    }

    /* Merubah posisi sigitiga pada baris genap */
    .member:nth-child(4n + 3) .member-image::after,
    .member:nth-child(4n + 4) .member-image::after {
        left: 0;
        right: auto;
        transform: translateY(-50%) rotateZ(180deg);
    }
}

/* Mobile Styles */
@media screen and (max-width: 770px) {
    .list-members {
        width: 95%;
    }

    .member {
        flex-basis: 100%;
        font-size: 14px;
    }

    .social-link .fa {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .member:nth-child(even) .member-info {
        order: 1;
    }

    .member:nth-child(even) .member-image {
        order: 2;
    }

    /* Merubah posisi sigitiga elemen genap */
    .member:nth-child(even) .member-image::after {
        left: 0;
        right: auto;
        transform: translateY(-50%) rotateZ(180deg);
    }
}

.sec-title h3 img {
    margin-right: 10px;
}

/*footer*/




.footer-sec {
    background: rgb(0 0 0 / 30%);
    padding-top: 45px;
}

.social-area ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-area ul li {
    display: inline-block;
    margin-right: 10px;
}

.social-area ul li a {
    display: block;
    color: #ffffff;
    font-size: 15px;
    height: 30px;
    width: 30px;
    border: 1px solid #ffffff;
    line-height: 30px;
    text-align: center;
    border-radius: 100%;
    transition: all .3s;
}

.social-area ul li a:hover {
    border-radius: 0;
    transform: rotate(360deg);
}

.footer-box {
    padding: 0px 15px;
}

.footer-box h3 {
    font-size: 25px;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.footer-box p {
    font-size: 18px;
    text-align: justify;
    color: #909090;
}

.footer-box h4 {
    font-size: 20px;
    margin: 0 0 5px 0;
    color: #ffffff;
}

.footer-phone a,
.footer-mail a,
.footer-address span {
    display: block;
    color: #909090;
    font-size: 18px;
}

.footer-phone,
.footer-mail,
.footer-address {
    margin: 0 0 25px 0;
}

.copy-right-box {
    padding: 20px 15px;
    margin-top: 15px;
    border-top: 1px solid #494951;
}

.copy-right-box p {
    margin: 0;
    font-size: 13px;
    color: #909090;
}






/*popup form*/
.pop-close {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.pop-close span {
    line-height: .8;
    margin: 0px;
    padding: 0px;
    width: 30px;
    height: 30px;
    display: block;
    vertical-align: 0px;
    position: static;
    font-weight: 100;
}

.intl-tel-input.iti-container {
    z-index: 99999999999 !important;
}

#myModalForm .modal-dialog {
    width: 100%;
    max-width: 775px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0px auto;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #0074cf;
    outline: 0;
    box-shadow: none !important;
}

#myModalForm .modal-content,
.contact-wrap .modal-content {
    padding-left: 350px;
    background-image: url('../../imgs/pop-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.tea-cup-pop {
    position: absolute;
    width: 300px;
    left: -30px;
    bottom: 0;
    margin: auto;
	height:auto;
}

.form-cover h4 {
    font-size: 24px;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
    margin: 0px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.form-cover h4 b {
    display: block;
    font-size: 26px;
    font-weight: 900;
}

.register-form input {
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: 1px solid #e7b42a;
    margin-bottom: 35px;
    padding: 0;
    color: #ffffff;
    font-size: 16px;
    outline: none !important;
    background: #1f1f1f;
    padding-left: 5px;
}

.col-md-12.col-sm-12.col-xs-12.input-wrap {
    position: relative;
}

.register-form textarea {
    width: 100%;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #e7b42a;
    color: #ffffff;
    outline: none !important;
    font-size: 16px;
    background: #1f1f1f;
}

.intl-tel-input {
    width: 100%;
    margin-bottom: 20px;
}

.register-form {
    margin-top: 0px;
    float: left;
    width: 100%;
    margin-bottom: 25px;
}

.old-feilds span {
    position: absolute;
    bottom: -17px !important;
    color: red;
    font-size: 10px;
}

.old-feilds span,
.old-feilds-2 span {
    position: absolute;
    bottom: 0px;
    top: 46px;
    color: red;
    font-size: 16px;
    left: 0px;
    display: none;
}

span#errorProjectMain {
    top: 100px;
}

span#errorProject{
    top: 100px;
}
.new-fields p {
    margin: 0px;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #616971;
    margin-bottom: 10px;
    margin-top: 15px;
}

.new-fields-2 p {
    margin: 0px;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #616971;
    margin-bottom: 10px;
    margin-top: 15px;
}

.offering {
    width: 100%;
    height: 40px;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #657683;
    margin-bottom: 20px;
    outline: none !important;
}

.form-cover {
    padding: 40px;
}

div#myModalForm {
    padding: 15px !important;
}

.pop-close {
    border: none;
    opacity: 1;
    position: absolute;
    right: 0px;
    width: 30px;
    height: 30px;
    font-size: 30px;
    background-color: #0074cf !important;
    color: #fff;
    border-radius: 50%;
    top: -10px;
    right: -10px;
}

.contact-wrap .modal-content {
    background-color: rgb(0 0 0 / 42%);
}

section.contact.us {
    position: relative;
    padding: 15px 0px 50px 0px;
}

div#myModalForm .modal-content {
    background-color: #171717;
}

.contact-wrap .register-form input,
.contact-wrap .register-form textarea {
    background: rgb(56 56 56 / 55%);
    border-bottom: 1px solid rgb(56 56 56 / 55%);
    padding: 10px 15px;
    margin-bottom: 35px;
    border-bottom: 1px solid #e7b42a;
    color: #ffffff;
}

/*back to top*/
.progress-wrap {
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgb(0 116 207);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap .fa {
    position: absolute;
    font-size: 20px;
    color: #0074cf;
}

.progress-wrap:hover::after {
    opacity: 0;
}

/* .progress-wrap::before {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
} */

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #eeb92b;
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

body.light .progress-wrap {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 1);
}

body.light .progress-wrap::after {
    color: blue;
}

body.light .progress-wrap svg.progress-circle path {
    stroke: green;
}

.switch,
.circle {
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.switch {
    width: 80px;
    height: 4px;
    border-radius: 27px;
    background-image: linear-gradient(298deg, var(--red), var(--yellow));
    position: fixed;
    right: 50px;
    top: 75px;
    display: block;
    margin: 0 auto;
    text-align: center;
    opacity: 1;
    z-index: 33333;
    transition: all 300ms linear;
}

.circle {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: green;
    box-shadow: 0 4px 4px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);
    animation: border-transform 10s linear infinite alternate forwards;
}

.circle:hover {
    box-shadow: 0 8px 8px rgba(26, 53, 71, 1), 0 0 0 1px rgba(26, 53, 71, 1);
}

.circle:before {
    position: absolute;
    font-family: 'unicons';
    content: '\eac1';
    top: 0;
    left: 0;
    z-index: 2;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    width: 100%;
    height: 40px;
    opacity: 1;
    color: red;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.circle:after {
    position: absolute;
    font-family: 'unicons';
    content: '\eb8f';
    top: 0;
    left: 0;
    z-index: 2;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    width: 100%;
    height: 40px;
    color: red;
    opacity: 0;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.switched .circle {
    left: 45px;
    box-shadow: 0 4px 4px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);
    background: var(--black-blue);
}

.switched .circle:hover {
    box-shadow: 0 8px 8px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);
}

.switched .circle:before {
    opacity: 0;
}

.switched .circle:after {
    opacity: 1;
}

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../../imgs/logo.png') 50% 50% no-repeat #000000;
    background-size: 300px;
}

div.loading-bar {
    width: 235px;
    height: 2px;
    background-color: #d6cec2;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    margin: auto;
}

div.loading-bar::after {
    content: '';
    width: 85px;
    height: 2px;
    position: absolute;
    background-color: #0074b4;
    transform: translateX(-20px);
    animation: loop 2s ease infinite;
}

@keyframes loop {

    0%,
    100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(150px)
    }
}





@media all and (max-width:991px) {
    nav#sideNav {
        background: red;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        margin: auto;
    }


    .service-sec-2 .ser-col:nth-child(1) .ser-box,
    .service-sec-2 .ser-col:nth-child(4) .ser-box {
        padding-right: 12px;
    }

    footer p {
        text-align: left;
    }

    .footer-box {
        margin-bottom: 40px;
    }

    .mobile-nav ul li:last-child {
        background: #2f2f2f;
        padding: 10px 15px;
    }

    #myModalForm .modal-content,
    .contact-wrap .modal-content {
        padding-left: 0;
        background-image: none;
    }

    .tea-cup-pop {
        position: inherit;
        width: 130px;
        left: auto;
        bottom: auto;
        margin: auto;
        margin-top: 15px;
    }

    .service-sec-2 .ser-col:nth-child(1) .ser-box img,
    .service-sec-2 .ser-col:nth-child(4) .ser-box img {
        top: 5px;
        width: 130px;
    }

    .footer-box p {
        font-size: 16px;
    }


}






@media all and (max-width: 767px) {
	#particles-js, body::before {
		display:none;
	}
	
    .banner-sec {
        height: auto;
    }

    .mobile-slide {
        position: inherit;
        margin-top: 30px;
    }

    .menu-btn{
        border: none !important;
    }

    .col-lg-5.col-md-6.home-about-right {
        padding-left: 15px;
    }

    .col-lg-6.col-md-6.home-about-left {
        margin-bottom: 30px;
    }

    .header-wrapper .header-right i {
        left: auto;
        right: 20px;
    }

    .navbar .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .navbar .menu {
        width: 100%;
        max-height: 0rem;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transition: all 0.35s ease;
    }

    .navbar .menu.is-active {
        opacity: 1;
        visibility: visible;
    }

    .navbar .menu-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem 0;
        text-align: center;
    }

    li.menu-item {
        display: block;
        width: 100%;
        border-bottom: #ffffff14 2px solid;
        margin-bottom: 10px;
    }

    .navbar .menu-link {
        display: block;
        padding: 10px 5px;
    }

    .header--sticky {
        background: #000000;
    }
    
    .navbar .menu-link::after {
        left: 146px;
      }


}




@media all and (max-width: 575px) {
    .ser-list {
        max-width: 100%;
        top: auto;
        width: 100%;
        position: inherit;
        left: auto;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .service-box-img img {
        width: 100%;
		height:auto;
    }

    section.home-about-area,
    .service-sec,
    .service-sec-2,
    .empower,
    .choose-sec,
    .empower2,
    .counter-sec,
    .testimonial {
        padding: 30px 0px;
    }

    .sec-title {
        margin-bottom: 25px;
    }

    .banner-text h2,
    .col-lg-5.col-md-6.home-about-right h1 {
        font-size: 25px;
    }

    .col-lg-5.col-md-6.home-about-right h6,
    .col-lg-5.col-md-6.home-about-right p {
        font-size: 16px;
        text-align: center
    }

    .sec-title h3 {
        font-size: 18px;
        text-align: center
    }

    .container {
        padding: 0px 15px !important;
    }

    .sec-title h3 img {
        width: 28px;
        margin-right: 5px;
    }

    .banner-sec h3 {
        font-size: 24px
    }

    .sec-title h2 {
        font-size: 20px;
        margin: 10px 0;
    }

    .ser-header h2 {
        font-size: 19px;
        font-weight: 400;
        padding: 0;
    }

    .ser-header a {
        width: 30px;
        height: 30px;
    }

    .ser-header span {
        width: 35px;
        height: 35px;
    }

    .ser-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 10px;
    }

    .ser-list li,
    .sec-title p,
    #testimonial-slider .inner p {
        font-size: 15px;
    }

    .ser-list li img {
        width: 18px;
    }

    .empower-box h2 {
        font-size: 24px;
        font-weight: 400;
    }

    .empower-box h2 br {
        display: none;
    }

    .empower-box {
        padding-top: 50px;
    }

    .choose-box span.choose-icon {
        display: block;
        margin: 0 auto;
    }

    .choose-content {
        display: block;
        width: 100%;
        padding-left: 0;
    }

    .choose-box {
        padding: 15px;
    }

    x .empower-box2 {
        padding: 15px;
    }

    .empower-box2 h2 {
        font-size: 20px;
        font-weight: 400;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .count-img {
        width: 50px;
    }

    .count-heading h2 {
        font-size: 20px;
    }

    .count-heading-btn {
        text-align: left;
        margin-top: 15px;
    }

    .empower-box2 {
        padding: 15px;
        margin-top: 50px;
    }

    .form-cover {
        padding: 15px;
    }

    .banner-text h2 {
        font-weight: 600;
    }

    span.typed-cursor {
        font-size: 20px;
    }

    .banner-text,
    .banner-text h2,
    .sec-title h2,
    .sec-title p,
    .choose-content h3,
    .choose-content p,
    .choose-content,
    .ser-box h3,
    .ser-box p,
    .empower-box,
    .empower-box h2,
    .count-heading,
    .count-heading h2,
    .count-heading-btn,
    .empower-box2,
    .empower-box2 h2,
    #testimonial-slider .inner p {
        text-align: center;
    }

    .counter-text {
        justify-content: center;
    }

    .pop-close {
        top: 0px;
        right: 0px;
    }

    .service-sec-2 .ser-col:nth-child(1) .ser-box img,
    .service-sec-2 .ser-col:nth-child(4) .ser-box img {
        top: 5px;
        width: 130px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .service-sec-2 .ser-col:nth-child(2) .ser-box img,
    .service-sec-2 .ser-col:nth-child(3) .ser-box img {
        top: 5px;
        width: 200px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .member-info h3 {
        font-size: 18px;
        font-weight: bold;
    }

    .member-info p {
        margin: 5px 0 20px 0px;
        font-size: 13px;
    }

    .col-lg-5.col-md-6.home-about-right h6, .col-lg-5.col-md-6.home-about-right p, .sec-title h3 {
        font-size: 18px;
        text-align: center;
    }
    .ser-list li, .sec-title p, #testimonial-slider .inner p {
        font-size: 18px;
    }
    .footer-box p {font-size: 18px !important;}
    .choose-content p, .ser-box p {font-size: 18px;}
    .sec-title h3 {
        font-size: 22px}

}


@media all and (max-width: 991px) and (min-width:767px) {
    header .container {
        max-width: 935px;
    }

    .navbar .menu-inner {
        gap: 15px;
    }

    .brand img {
        width: 170px;
    }




}

/* hide arrows
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.spinner-border{
    margin: 10px;
    width: 1.5rem !important;
    height: 1.5rem !important;
    color: #e8b42a !important;
}

.loader-process{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 50px;
}

.success-msg{
    margin-top: 15px;
}

.success-msg p {
    color: #198754;
    font-size: 16px;
}
.success-msg{
    display: none;
}

.spinner-border{
    display: none;
}
/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;
  background-color: #000000;
  transition: background-color 5000s ease-in-out 0s;
}

.register-form textarea:focus {
    border-bottom: 1px solid #0074cf;
    background: #1f1f1f;
    color: #ffffff;
}

.register-form input:focus {
    border-bottom: 1px solid #0074cf;
    background: #1f1f1f;
    color: #ffffff;
}