:root {
    --color-white-100: #fff;
    --color-white-200: #e4e6e7;
    --color-white-300: #c9cccf;
    --color-white-400: #a1a6aa;
    --color-white-500: #798086;
    --color-black-100: #1f252e;
    --color-black-200: #181e26;
    --color-black-300: #12161c;
    --color-black-400: #0c0f13;
    --color-black-500: #060709;
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transition: transform 0.8s ease-in-out;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color:white;

    /*
    min-height: 100vh;
    display: grid;
    place-items: center; */
}
::-webkit-scrollbar{width:2px;height:5px;border-radius:6px}
::-webkit-scrollbar-track{background-color:#000;border-radius:8px;height:2px}
::-webkit-scrollbar-thumb{background:linear-gradient(145deg,#0c59ff,#0348c7);border-radius:8px}
::-webkit-scrollbar-thumb:hover{background-color:#555}

.stretch-img {
    width: 50%;
    height: 50%;
}


.section {
    margin-inline: auto;
    padding-block: 4rem 2rem;
}
.containeri {
    max-width: 75rem;
    height: auto;
    margin-inline: auto;
    padding-inline: 1.25rem;
}
.btn {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    user-select: none;
    padding-block: 0.5rem;
    padding-inline: 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}
.btn-default {
    color: var(--color-black-500);
    background-color: var(--color-white-100);
    box-shadow: var(--shadow-medium);
}
.btn-darker {
    color: var(--color-white-100);
    background-color: var(--color-black-300);
    box-shadow: var(--shadow-medium);
}
.header1 {
    width: 100%;
    height: auto;
    background-color: var(--color-black-300);
    box-shadow: var(--shadow-medium);
    z-index: 999;
    position: relative;
}
.navbar1 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-inline: auto;
    padding: 25px;
}

.content-services {
    padding-top: 2%;
    padding-bottom: 2%;
}
.content-title {
    color: orange;
    font-size: large;
    padding-bottom: 2%;
}

.content-left p {
    color: white;
    font-size: 38px;
    font-family: inherit;
}


.slider {
    height: 300px;
    margin: auto;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: calc(300px * 18);
    animation: scroll 60s linear infinite;
}

.slide-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 9));
    }
}

.slide {
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
    perspective: 100px;
}

.cont {
    width: 100%;
    transition: transform 1s;
}

.cont:hover {
    transform: translateZ(20px);
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, rgb(14, 13, 13) 0%, rgba(14,13,13,0) 100%);
    content: '';
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
}

.slider::before {
    left: 0;
    top: 0;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}


@media screen and (min-width: 48rem) {
    .navbar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 10px;
   }
}
#main-slider{
    box-shadow: 0px 0px 10px black;
    border-radius: 16px;
}
.brand {
    width: 50%;
}
.wrapper1 {
    display: flex;
    justify-self: end;
    align-items: center;
    column-gap: 1.5rem;
    padding-block: 1rem;
}
@media screen and (min-width: 48rem) {
    .wrapper1 {
        order: 1;
   }
}
.menu1 {
    display: flex;
    max-width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.2s linear;
}
.menu1.is-visible {
    height: 13rem;
    margin-top: 1rem;
}
.menu1-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.menu1-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--color-white-100);
    transition: all 0.25s ease;
}
@media screen and (min-width: 48rem) {
    .menu1 {
        height: auto;
        align-items: center;
        justify-content: center;
        overflow: inherit;
   }
    .menu1-inner {
        flex-direction: row;
        gap: 1.5rem;
   }
   .brand{
    width: 30%;
   }
}
.burger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 1.6rem;
    height: 1rem;
    visibility: visible;
}
@media screen and (min-width: 48rem) {
    .burger {
        display: none;
        visibility: hidden;
   }
}
.burger-line {
    position: absolute;
    right: 0;
    width: 100%;
    height: 2.1px;
    transform: rotate(0deg);
    background-color: var(--color-white-100);
    transition: all 0.2s ease;
}
.burger-line:nth-child(1) {
    top: 0px;
}
.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}
.burger-line:nth-child(3) {
    top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
}
.burger.is-active .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
}



.relative{
    position: relative;
    width:100%;
}
.banner-title {
    text-align: center;
    position: absolute;
    left: 22%;
    top: -40%;
    font-size: 32px;
}
.swiper-onbanner {
    position: absolute;
    top: 5%;
    left: 15%;
    right: 0;
    margin: 0 auto;
    width: 50%;
    height: 200px;
}
.unwrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60vw;
    box-sizing: border-box;
    background: var(--bg);
    user-select: none;
    margin: 0 auto;
}

.cta-banner-post {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 10px;
}
.cta-banner-post a {
    color: white;
    font-size: 12px;
}
.titler{
    font-size: 24px;
    font-weight: bold;
}
.deskripsi-post-banner{
    font-size: 14px !important;
}
a.vIG {
    padding: 10px 30px;
    background: #272727;
    border-radius: 6px;
    letter-spacing: 1px;
    font-size: 14px;
}
a.bReadmore {
    padding: 10px 30px;
    background: #F44336;
    border-radius: 6px;
    font-size: 14px;
}





.footer-content {
    display: flex;
    justify-content: space-around;
    background-color: #222;
    padding:2px;
    flex-wrap: wrap;
}
.footer-content p,.footer-content li {
    font-size: 14px;
}
.footer-section {
color: #fff;
margin: 0px;
}

.footer-section h3 {
margin-bottom: 10px;
color:#ef500e;
}

.footer-section ul {
list-style-type: none;
padding: 0;
}

.footer-section ul li {
margin-bottom: 5px;
}

.footer-section ul li a {
color: #ccc;
text-decoration: none;
}

.footer-section ul li a:hover {
color: #fff;
}

.footer-copyright {
    padding: 10px;
    text-align: center;
    width: 100%;
    display: flex;
    margin: 0 20px;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}
.footer-copyright .copyright{
    font-size:12px;
}
ul.socmed {
    display: flex;
    
    padding-left: 75px;
}
ul.socmed a{
    color:grey;
}
ul.socmed li {
    padding-right: 25px;
}
ul.socmed li i {
    font-size: 20px;
}
.foot-brand img {
    width: 46%;
}









#banner1 {
    background-image: url(banner1.png);
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    margin: 0 auto;
    background-size: cover;
}
#banner2 {
    background-image: url(banner2.png);
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    margin: 0 auto;
    background-size: cover;
}

.wrapper-contentx {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-top: 40px;
}
.content-x-header {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}
.content-x-header span{
    color: #ef500e;
    font-size: 14px;
    font-weight: 700;
}
.pillar span{
    color: #ef500e;
    font-size: 18px;
}
.pilars-content {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 700px;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.pillar {
	flex-basis: calc(45% - 20px);
	border-radius: 5px;
	padding: 20px;
	margin-bottom: 20px;
}

.pillar h2 {
	margin: 0 0 10px;
	font-size: 1.5em;
	color: #333;
}

.pillar p {
	margin: 0;
	font-size: 0.9em;
	color: #666;
    font-size: 12px;
}
section.above-header {
    padding: 20px;
    margin: 0 auto;
    text-align: center;
}
.above-desc {
    height: 80px;
    position: relative;
    width: 100%;
    margin-top: 20px;
}
q {
    width: 60vw;
    padding: 20px 32px;
    position: relative;
    font-style: italic;
    font-size: 14px;
}
q::before {
    position: absolute;
    content: '“';
    font-size: 60px;
    color: gray;
    top: -20px;
    left: 0;
}
.tagline {
    position: relative;
    width: 100%;
    text-align: center;
}
.tagline-text label{
    font-size: 12px;
    font-weight: bold;
    color: #ef500e;
}
.tagline-text {
    width: 100%;
    margin: 0 auto !important;
    position: relative;
    padding: 40px;
}
.tagline-text h2{
    font-weight: 900;
    width: 320px;
    margin-bottom: 20px;
}
.tagline-text h2{
    text-align: left;
    margin: 20px auto;
}
.tag-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.tag-item {
    background: #fff;
    width: 22%;
    padding: 15px;
}
.tag-item h3 {
    color: black;
    letter-spacing: 1px;
    font-size: 16px;
}
.tag-item p {
    color: grey;
    padding: 20px;
    font-size: 12px;
}
.grad{
    
    background: rgb(131,58,180);
    background: linear-gradient(315deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
}

.grad h3{
    color:white;
}
.grad p{
    color:white;
}
.tag-box {
    height: 50px;
    width: 50px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.orangeB {
   background-color: #ff5100;
}
.vip {
    background-color: #fff;
}
.our-team-wrapper {
    width: 100%;
    margin: 0 auto !important;
    position: relative;
    padding: 40px;
    text-align: center;
}
.our-team-wrapper label {
    font-size: 12px;
    font-weight: bold;
    color: #ef500e;
}
.team-wrapper {
    padding: 20px;
}
.team {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    align-items: center;
}

.member {
    text-align: center;
    margin: 15px;
    position: relative;
    width: 22%;
    height: 300px;
    background: #12161c;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0px 0px 2px #ffffff73;
    border-radius: 8px;
}
.member img {
    height: 100%;
    aspect-ratio: 9/16;
    position: absolute;
    right: 0;
}
.member .name-title {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%) rotate(-90deg);
    white-space: nowrap;
}

.member .name-title h3 {
    font-size: 20px;
    margin-bottom: 5px;
}
.member .name-title p {
    font-size: 12px;
    font-weight: bold;
    color: #da3218;
    letter-spacing: 2px;
}
.wwa-wrapper {
    position: relative;
    width: 100%;
}
.wwa-item {
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    padding-left: 5%;
}
.wwa-box {
    height: 150px;
    width: 150px;
    background: rgb(131,58,180);
    background: linear-gradient(315deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    margin: 10px;
    border-radius: 8px;
}
.wwa-img {
    width: 20%;
    padding: 10px;
}
.wwa-img img {
    border-radius: 6px;
    width: 200px !important;
    height: 250px;
}
.wwa-quote {
    max-width: 30%;
}
.wwa-quote h3 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}
.wwa-quote label {
    font-size: 12px;
    font-weight: bold;
    color: #da3218;
    letter-spacing: 2px;
}
.wwa-quote p {
    font-size: 14px;
    margin-top: 35px;
    color: grey;
}

section.lets-work {
    padding: 40px;
    text-align: center;
}
.lets-work .title {
    text-align: center;
}
.lets-work .title h2 {
    font-size: 32px !important;
}
.text {
    margin-top: 30px;
}
.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    align-items: center;
}
form.form-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    width: 60%;
}
button.btn.formpost {
    width: 50%;
    color: white;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    border: none !important;
    outline: none !important;
    border-radius: 8px;
    background: linear-gradient(315deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
}
.contact-info {
    width: 35%;
    text-align: left;
    padding-left: 20px;
}
.form-control {
    margin: 20px 0 40px;
    position: relative;
    width: 45%;
}
  
  .form-control input {
    background-color: transparent;
    border: 0;
    border-bottom: 1px #4b4377 solid;
    color: #fff;
    display: block;
    font-size: 1.2rem;
    padding: 15px 0;
    width: 100%;
  }
  
  .form-control input::placeholder {
    color: transparent;
  }
  
  .form-control input:focus,
  .form-control input:valid {
    border-bottom-color: violet;
    outline: 0;
  }
  
  .form-control label {
    left: 0;
    position: absolute;
    top: 15px;
  }
  
  .form-control label span {
    display: inline-block;
    font-size: 1.2rem;
    min-width: 5px;
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .form-control input:focus + label span,
  .form-control input:valid + label span {
    color: orangered;
    transform: translateY(-30px);
  }

.form-box{
    background: rgb(131,58,180);
    background: linear-gradient(315deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
}
.contact-info p {
    font-size: 14px;
}
.head-news h1 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 20px;
}
.mg-10 {
    margin-top: 10px;
    margin-bottom: 15px;
}
@media screen and (max-width: 576px) {
    .full-image{
        width: 100%;
    }
    .imgR{
        width: 100%;
    }
    .swiper-onbanner {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        padding:10px;
        height: 100% !important;
    }
    #banner1, #banner2{
        height: 100%;
    }
    .footer-section {
        color: #fff;
        margin: 20px 0;
        width: 100%;
    }
    .wwa-box {
        display: none;
    }
    .wwa-img {
        width: 50%;
        padding: 10px;
    }
    .wwa-quote {
        max-width: 50%;
    }
    .tag-item {
        width: 33%;
    }
    .team,.team-wrapper {
        padding: 0;
        gap: 10px;
    }
    .member {
        width: 45%;
        display: inline-flex;
        margin: 0px;
        align-items: flex-end;
        transition: transform 0.8s ease-in-out;
    }
    .member img {
        right: unset;
    }
    .member .name-title {
        transform: none;
        position: relative !important;
        top: unset !important;
        bottom: 10px;
        left: 0;
        transition: transform 0.8s ease-in-out;
    }
    .member .name-title h3, .member .name-title p {
        font-size: 10px;
        text-align: center;
    }
    .our-team-wrapper {
        padding: 20px;
    }
    .team-text {
        padding-bottom: 20px;
        transition: transform 0.8s ease-in-out;
    }
}






