@font-face {
    font-family: Museo300;
    src: url(../Asset/Font/Museo300-Regular.otf);
    font-display: swap
}

@font-face {
    font-family: Museo700;
    src: url(../Asset/Font/Museo700-Regular.otf);
    font-display: swap
}

@font-face {
    font-family: Delicious;
    src: url(../Asset/Font/Delicious-Roman.otf);
    font-display: swap
}

@font-face {
    font-family: Gautami;
    src: url(../Asset/Font/gautami.ttf);
    font-display: swap
}

@font-face {
    font-family: GautamiBold;
    src: url(../Asset/Font/gautamib.ttf);
    font-display: swap
}

* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    scroll-behavior: smooth;
}

.skip-content {
    position: absolute;
    left: 20px;
    top: -150px;
    z-index: 100;
    padding: 16px 32px;
    border-radius: 20px;
    background-color: #ff8e2b;
    color: white;
}

.skip-content:focus {
    top: 20px;
}

.footer-list {
    padding-inline-start: 10px;
}

.footer-list li {
    list-style-type: none;
}

.footer-container {
    width: 80%;
    margin-left: 10%;
}

/* Ripple effect */
.ripple {
    background-position: center;
    transition: background 0.8s;
}

.ripple:hover {
    background: #20E2B5 radial-gradient(circle, transparent 1%, #22B197 1%) center/15000%;
}

.ripple:active {
    background-color: #20E2B5;
    background-size: 100%;
    transition: background 0s;
}

#myBtn {
    display: none;
    width: 32px;
    height: 32px;
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    /* background-color: orange; */
    filter: invert(67%) sepia(45%) saturate(2240%) hue-rotate(333deg) brightness(96%) contrast(99%);
    cursor: pointer;
    /* padding: 10px 20px; */
    border-radius: 10px;
    font-size: 18px;
}

/* Nav Style + Animation */
.logo img {
    height: 60px;
    /* margin-left: -30px; */
}

.dartmedia_underline {
    border-bottom: 4px solid #ff8e2b;
    /* text-decoration-color: orange;
    text-decoration-thickness: 4px; 
    Only Support Firefox Only*/
}

.nav-links {
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: space-around;
    width: 55%;
    align-items: center;
    height: 10vh;
}

.nav-links a:hover,
.nav-links .button-hover:hover {
    transition: 0.4s;
    color: #eb9447;
}

nav {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 10vh;
    z-index: 10;
    background-color: transparent;
    transition: 0.5s;
}

.nav-links li {
    list-style: none;
}

.nav-links button:focus {
    outline: none;
}

.nav-links a,
.nav-links button {
    color: rgb(240, 240, 240);
    text-decoration: none;
    font-weight: bold;
    font-family: Museo300;
    font-size: 1.5rem;
}

.nav-links button {
    padding: 0;
}

.svg {
    width: 12px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(170deg) brightness(102%) contrast(101%);
}

.burger {
    display: none;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: rgb(240, 240, 240);
    margin: 5px;
    transition: all 0.3s ease;
}

@keyframes dim {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.3;
    }
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .nav-links {
        position: fixed;
        right: 0px;
        height: 30vh;
        top: 10vh;
        /* Ada Revisi */
        background: #f3fdff;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .dimmed {
        position: absolute;
    }

    .dimmed-on {
        width: 100%;
        height: 100rem;
        z-index: 0;
        background-color: black;
        opacity: 0.3;
        animation: dim 0.3s;
    }

    .nav-links .menu {
        opacity: 0;
    }

    .burger {
        display: block;
        cursor: pointer;
    }
}

.nav-active {
    transform: translateX(0%);
    z-index: 1;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translate(50px);
    }

    to {
        opacity: 1;
        transform: translate(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.value-1 {
    font-family: Museo700;
    font-size: 31pt;
}

.value-2 {
    font-family: Delicious;
    font-size: 25pt;
}

.value-3 {
    font-family: Delicious;
    font-size: 22pt;
    line-height: 1.2;
}

.solutions ul {
    position: absolute;
    background: white;
    margin-left: -25px;
    margin-top: 10px;
    padding-left: 10px;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    list-style: none;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    /* pointer-events: none; */
    transform: translateY(-10px);
    transition: all 0.4s ease;
    z-index: 2;
    /* Animasi untuk semua element sekaligus*/
}

.solutions ul a {
    font-size: 12pt;
    padding-top: 15px;
    padding-bottom: 15px;
}

.solutions a {
    color: black;
    text-decoration: none;
}

.nav-links button,
.home {
    background: none;
    border: none;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.nav-links button:hover,
.home:hover {
    color: rgb(240, 240, 240)
}

.solutions button:focus+ul, .solutions button:hover+ul, .solutions ul:hover {
    opacity: 1;
    visibility: visible;
    /* pointer-events: all; */
    transform: translateY(0px);
}

#navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #555555;
    opacity: 0.99;
    z-index: 99;
}

/* End Header Section */

/* Main Background + Text Section */
.space {
    margin-bottom: 9vh;
}

body {
    /* font-family: Delicious; */
    overflow-x: hidden !important;
}

/* Unused. Replaced by animation */
/* .main-background{
    width: 100%;
    transform: translate(0, -95px);
    z-index: 2;
} */

/* Background Animation */
.slider {
    min-height: 800px;
}

.slide1,
.slide2,
.slide3 {
    position: absolute;
    width: 100%;
    height: 800px;
}

.slide1 {
    transform: translate(0, -105px);
    background-image: url(../Asset/Background1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    animation: fade1 20s infinite;
}

.slide2 {
    transform: translate(0, -105px);
    background-image: url(../Asset/Background2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    animation: fade2 20s infinite;
}

.slide3 {
    transform: translate(0, -105px);
    background-image: url(../Asset/Background3.webp);
    background-repeat: no-repeat;
    background-size: cover;
    animation: fade3 20s infinite;
}

@keyframes fade1 {
    0% {
        opacity: 1;
    }

    28% {
        opacity: 1;
    }

    33% {
        opacity: 0;
    }

    66% {
        opacity: 0;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade2 {
    0% {
        opacity: 0;
    }

    28% {
        opacity: 0;
    }

    33% {
        opacity: 1;
    }

    61% {
        opacity: 1;
    }

    66% {
        opacity: 0;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade3 {
    0% {
        opacity: 0;
    }

    33% {
        opacity: 0;
    }

    61% {
        opacity: 0;
    }

    66% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* End Background Animation */

.background-text {
    position: absolute;
    top: 250px;
    /* 1200 * 800*/
    text-align: center;
    width: 100%;
}

.background-text2 {
    position: absolute;
    top: 230px;
    /* 1200 * 800*/
    text-align: center;
    width: 100%;
}

.background-text h1,
.background-text2 h1 {
    width: 80%;
    margin: auto;
    font-size: 70pt;
    color: white;
}

.background-text p {
    font-family: Museo300;
    color: white;
    margin-top: 40px;
    font-size: 29pt;
}

.home-experience {
    transform: translate(0, -280px);
    z-index: 1;
    width: 70%;
    overflow: hidden;
}

.home-container {
    max-height: 270px;
}

h1 {
    color: #1e70ac;
    font-size: 50pt;
    font-family: Museo700;
}

/* End Main Background + Text */

/* Section About us */
.orange-square {
    height: 30px;
    width: 25px;
    background-color: #ff8e2b;
    position: absolute;
    left: 0px;
    top: 25px;
}

.orange-square-bottom {
    height: 60px;
    width: 60px;
    position: absolute;
    right: -25px;
    bottom: -10px;
}

.orange-square-bottom img {
    max-width: 130px;
}

.about-us {
    margin-left: 25px;
    padding-bottom: 10px;
    padding-right: 25px;
}

.about-us-h1 {
    margin-top: 10px;
    margin-left: 25px;
}

.center-image-about-us {
    max-height: 40px;
}

.about-us p {
    font-size: 21pt;
    line-height: 1.2;
}

.about-us-right-side {
    margin-top: 50px;
    margin-left: 40px;
    padding-right: 70px;
}

.about-us-right-side .center-image {
    height: 70px;
    width: 70px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 50px;
}

.about-us-right-side img {
    max-height: 65px;
    max-width: 75px;
}

.about-us-right-side p {
    font-size: 19pt;
}

.about-us-right-side .underline {
    box-shadow: 0 2px 2px -2px #5a7577;
}

/* End About Us*/

.engage-customer {
    padding-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 1. Unified Messaging Solution */
.excellence {
    max-height: 300px;
}

.excellence .huge-num {
    color: #1e70ac;
    font-family: Gautami;
    font-size: 220pt;
}

.excellence .subtitle {
    transform: translate(-58px);
    z-index: 2;
}

.excellence .subtitle p {
    line-height: 1.2;
}

.excellence .subtitle3 {
    transform: translate(-75px);
    z-index: 2;
    width: 100%;
}

.excellence .subtitle3 p {
    font-size: 27pt;
    line-height: 1.2;
}

.excellence p {
    color: #d67612;
    font-family: Museo700;
    font-size: 33pt;
    z-index: 1;
}

.excellence-picture {
    position: absolute;
    left: -75px;
    border-radius: 0% 10% 10% 10%;
    width: 800px;
    transform: rotate(10deg);
    z-index: 2;
}

.excellence-background-text {
    position: absolute;
    left: 12%;
    top: 55%;
    z-index: 2;
}

.excellence3-background-text {
    position: absolute;
    left: 12%;
    top: 50%;
    z-index: 2;
}

.excellence-background-text span {
    color: #eb9447;
}

.excellence3-background-text span {
    color: #eb9447;
}

.excellence-background-text p {
    font-family: Museo700;
    font-size: 28pt;
    width: 120%;
    color: white;
    text-shadow: 3px 3px #2e5493;
}

.excellence3-background-text p {
    font-family: Museo700;
    font-size: 28pt;
    width: 70%;
    color: white;
    text-shadow: 3px 3px #2e5493;
}

.excellence-detail {
    background-color: #ecf6f8;
    border-radius: 30px 0px 0px 30px;
    padding-left: 150px;
    padding-bottom: 50px;
}

.excellence3-detail {
    transform: translate(0px, 150px);
}

.excellence-detail .center-image {
    min-height: 80px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 20px;
}

.excellence-detail img {
    max-height: 70px;
    max-width: 70px;
}

.excellence-detail .description {
    font-size: 19pt;
    margin-bottom: 0px;
}

/* End Unified Messaging Solution */

.Value-SMS-Broadcast {
    font-family: Museo700;
    font-size: 26pt;
    line-height: 1.2;
    padding: 10px;
}

.Value-SMS-Broadcast-Description p {
    font-size: 17pt;
    line-height: 1.2;
}

.Value-SMS-text p {
    font-size: 17pt;
    line-height: 1.2;
}

.Value-SMS-center-image {
    min-height: 80px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Value-SMS-center-image img {
    max-height: 70px;
    width: 100%;
}

/* SMART MOBILE SOLUTION */
.excellence2 {
    max-height: 100px;
}

.excellence2-container {
    min-height: 900px;
    padding: 0;
    margin-top: 120px;
}

.excellence2-left-side {
    float: left;
    width: 66.66%;
    z-index: 2;
}

.excellence2-right-side {
    float: right;
    width: 33.33%;
    z-index: 1;
}

.excellence2 .huge-num {
    color: #1e70ac;
    font-family: Gautami;
    font-size: 220pt;
    transform: translate(-220px, -50px);
}

.excellence2 .subtitle {
    transform: translate(-280px, -95px);
    z-index: 2;
}

.excellence2 .sub1 {
    color: #d67612;
    font-family: Museo700;
    line-height: 1.2;
    font-size: 33pt;
    width: 500px;
    margin-bottom: 0;
}

.excellence2 .sub2 {
    color: #345b9e;
    font-family: Museo700;
    font-size: 25pt;
    width: 500px;
    margin-bottom: 0;
}

.excellence2-picture-container {
    position: relative;
    min-height: 600px;
}

.excellence2-picture {
    position: absolute;
    left: -199px;
    top: 0px;
    border-radius: 10% 0% 0% 10%;
    filter: brightness(90%);
    z-index: 2;
    width: 833px;
}

.excellence2-background-text {
    position: absolute;
    left: 5%;
    top: 50%;
    z-index: 2;
}

.excellence2-background-text span {
    color: #eb9447;
}

.excellence2-background-text p {
    font-family: Museo700;
    font-size: 27pt;
    line-height: 1.2;
    width: 500px;
    color: white;
    text-shadow: 3px 3px #2e5493;
}

.excellence2-detail {
    background-color: #fae2c0;
    border-radius: 0px 30px 30px 0px;
    padding-left: 50px;
    padding-bottom: 50px;
    padding-top: 25px;
}

.excellence-detail .detail,
.excellence2-detail .detail {
    font-family: Museo700;
    font-size: 32pt;
    line-height: 1.2;
    padding: 10px;
}

.excellence2-detail .detail {
    width: 70%;
}

.excellence2-detail .quote {
    padding: 15px;
    text-align: center;
    width: 70%;
    margin-left: 3%;
    margin-right: 22%;
    font-family: Delicious;
    font-size: 17pt;
    line-height: 1.2;
}

.excellence3 {
    margin-top: 50px;
}

.excellence2-detail .quote span {
    font-family: Delicious;
    font-size: 13pt;
    line-height: 1.2;
}

.excellence2-detail .fields {
    width: 78%;
    padding: 10px;
    font-size: 18pt;
    line-height: normal;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

/* END SMART MOBILE SOLUTION */

/* Untuk section 3, mostly parameter section 3 sama seperti section 1*/
.excellence-1-container {
    margin-top: 60px;
}

.excellence-2-container {
    min-height: 750px;
    padding: 0;
    margin-top: 130px;
}

.excellence-3-container {
    margin-top: 100px;
}

.excellence-picture-3 {
    position: absolute;
    left: -75px;
    border-radius: 0% 10% 10% 10%;
    width: 750px;
    object-fit: cover;
    height: 400px;
    transform: rotate(10deg);
    z-index: 2;
}

.explore-more {
    margin-top: 15px;
    background-color: #2f60a2;
    padding: 5px 25px;
    font-size: 19pt;
    color: white;
    border-radius: 10px;
    border: 0;
}

/* a:active,
a:focus,
a:visited {
    outline: none;
    text-decoration: none;
    box-shadow: none;
} */
/* ^ Seems Doesn't worked */

.sosmed {
    margin-left: 68%;
    width: 20%;
}

/* End Section 3 */

/* Partnership*/
.partner-image {
    min-height: 100px;
    min-width: 150px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.partner-image img {
    max-height: 100px;
    max-width: 70%;
    object-fit: contain;
}

.brand-partner h1 {
    color: #1e70ac;
    font-family: Museo700;
    font-size: 24pt;
}

.contact-us-home {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
}

.qr-code-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.qr-code-header p, .qr-code-footer, .our-location {
    font-size: 24pt;
    font-family: 'Museo700';
    color: #1e70ac;
    display: flex;
    justify-content: center;
}

.gmap_canvas {
    width: 100%;
}

.qr-code-header i {
    filter: invert(60%) sepia(100%) saturate(352%) hue-rotate(89deg) brightness(90%) contrast(96%);
}

@media only screen and (min-width: 2400px) {

    .slide1,
    .slide2,
    .slide3 {
        height: 1050px;
        transform: translate(0, -195px);
    }

    .slide3 .background-text {
        top: 275px;
    }

    .background-text h1 {
        font-size: 95pt;
    }

    .background-text p {
        font-size: 40pt;
    }

    .background-text2 {
        top: 295px;
    }

    .background-text2 h1 {
        font-size: 90pt;
    }

    .nav-links a,
    .nav-links button {
        font-size: 2.5rem;
    }

    .home-container img {
        width: 250px;
    }

    .value-1 {
        font-size: 38pt;
    }

    .value-2 {
        font-size: 30pt;
    }

    .value-3 {
        font-size: 26pt;
        line-height: 1.3;
    }

    .solutions ul {
        width: 270px;
        height: 270px;
    }

    .solutions ul a {
        font-size: 1.5rem;
    }

    .home-experience {
        transform: translate(0, -290px);
    }

    .home-container {
        max-height: 350px;
    }

    .about-us p {
        font-size: 26pt;
        line-height: 1.3;
    }

    h1 {
        font-size: 65pt;
    }

    .orange-square {
        height: 40px;
        width: 30px;
        top: 30px;
    }

    .center-image-about-us {
        max-height: 50px;
    }

    .about-us-right-side p {
        font-size: 26pt;
    }

    .about-us-right-side .center-image {
        height: 85px;
        width: 85px;
    }

    .explore-more {
        font-size: 26pt;
    }

    .orange-square-bottom img {
        max-width: 115px;
    }

    .excellence-detail {
        padding-left: 200px;
    }

    .excellence-detail .detail,
    .excellence2-detail .detail {
        font-size: 40pt;
        line-height: 1.3;
        padding-right: 50px;
    }

    .excellence-detail img {
        max-height: 80px;
        max-width: 80px;
    }

    .excellence-detail .center-image {
        min-height: 85px;
        min-width: 85px;
    }

    .excellence-detail .description {
        font-size: 25pt;
    }

    .excellence .huge-num {
        font-size: 270pt;
    }

    .excellence p {
        font-size: 42pt;
    }

    .excellence .subtitle {
        transform: translate(-71px);
    }

    .excellence-picture {
        width: 925px;
        bottom: 70px;
    }

    .excellence-background-text p {
        font-size: 35pt;
    }

    .Value-SMS-Broadcast {
        font-size: 35pt;
    }

    .Value-SMS-text p {
        font-size: 23pt;
    }

    .Value-SMS-center-image {
        min-height: 110px;
        min-width: 110px;
    }

    .excellence2-detail .quote {
        font-size: 23pt;
    }

    .excellence2-detail .quote span {
        font-size: 16pt;
    }

    .excellence2 .huge-num {
        font-size: 270pt;
    }

    .excellence2 .subtitle {
        transform: translate(-290px, -95px);
    }

    .excellence2 .sub1 {
        font-size: 38pt;
    }

    .excellence2 .sub2 {
        font-size: 29pt;
        width: 600px;
    }

    .excellence2-detail {
        padding-left: 75px;
        padding-bottom: 75px;
        padding-top: 25px;
    }

    .excellence-2-container {
        min-height: 1150px;
        margin-top: 150px;
    }

    .excellence2-detail .fields {
        font-size: 24pt;
    }

    .excellence2-picture {
        position: absolute;
        left: -240px;
        top: 0px;
        border-radius: 10% 0% 0% 10%;
        filter: brightness(90%);
        z-index: 2;
        width: 1088px;
    }

    .excellence2-background-text {
        top: 65%;
    }

    .excellence2-background-text p {
        line-height: 1.3;
        font-size: 35pt;
        width: 650px;
    }

    .excellence-3-container {
        min-height: 1100px;
    }

    .excellence .subtitle3 p {
        font-size: 42pt;
        line-height: 1.3;
    }

    .excellence-picture-3 {
        width: 1050px;
        height: 550px;
        bottom: 50px;
    }

    .excellence3-background-text {
        top: 60%;
    }

    .excellence3-background-text p {
        font-size: 35pt;
        width: 86%;
    }

    .partner-image img {
        max-height: 150px;
    }
}

@media only screen and (max-width: 1680px) {
    .home-container {
        max-height: 170px;
    }
    
    .excellence-3-container {
        margin-top: 180px;
    }

    .slide1,
    .slide2,
    .slide3 {
        height: 675px;
        background-position: 0px;
    }

    .excellence-picture {
        width: 700px;
    }

    .excellence2-picture {
        width: 759px;
    }

    .excellence-picture-3 {
        width: 710px;
    }

    .excellence3-background-text p {
        width: 75%;
    }

    .home-experience {
        transform: translate(0, -375px);
    }

    .excellence2-detail .fields {
        width: 83%;
    }

    .value-2 {
        font-family: Delicious;
        font-size: 23pt;
    }

    .value-3 {
        font-family: Delicious;
        font-size: 18pt;
        line-height: 1.2;
    }

    .background-text{
        top: 190px;
    }

    .background-text h1, .background-text2 h1, .background-text3 {
        width: 80%;
        margin: auto;
        font-size: 60pt;
        color: white;
    }

    .excellence-2-container {
        min-height: 700px;
    }
}

@media only screen and (max-width:1600px) {
    .value-2 {
        font-family: Delicious;
        font-size: 20pt;
    }

    .excellence2-detail .fields {
        width: 80%;
    }

    .excellence-background-text {
        top: 45%;
    }

    .excellence-3-container {
        margin-top: 190px;
    }

    .excellence-picture {
        left: -200px;
    }

    .excellence2-picture {
        width: 700px;
        left: -172px;
    }

    .excellence .subtitle3 p {
        font-size: 25pt;
        transform: translate(20px);
    }

    .excellence2-background-text {
        left: 0%;
    }

    .excellence3-background-text p {
        width: 80%;
    }

    .excellence-picture-3 {
        width: 670px;
    }

    .excellence-detail {
        margin-bottom: 50px;
    }

    .orange-square-bottom img {
        max-width: 120px;
    }

    .slide1,
    .slide2,
    .slide3 {
        height: 675px;
        background-position: -35px;
    }

    .background-text {
        position: absolute;
        top: 180px;
        text-align: center;
        width: 100%;
    }

    .home-experience {
        transform: translate(0, -350px);
    }
}

/* Scaling 125% Problem */
@media only screen and (max-width: 1550px) {
    .slider {
        min-height: 700px;
    }

    .slide1,
    .slide2,
    .slide3 {
        height: 700px;
        background-position: -70px;
    }

    h1 {
        font-size: 40pt;
    }

    .value-1 {
        font-family: Museo700;
        font-size: 25pt;
    }

    .value-2 {
        font-family: Delicious;
        font-size: 20pt;
    }

    .value-3 {
        font-family: Delicious;
        font-size: 18pt;
        line-height: normal;
    }

    .nav-links button {
        font-size: 1.5rem;
    }

    .background-text {
        position: absolute;
        top: 150px;
        /* 1200 * 800*/
        text-align: center;
        width: 100%;
    }

    .home-container {
        max-height: 140px;
    }

    .background-text h1,
    .background-text2 h1 {
        width: 80%;
        margin: auto;
        font-size: 60pt;
        color: white;
    }

    .background-text p {
        font-family: Museo300;
        color: white;
        margin-top: 40px;
        font-size: 25pt;
    }

    .about-us p {
        font-size: 19pt;
    }

    .excellence-picture {
        position: absolute;
        left: -75px;
        border-radius: 0% 10% 10% 10%;
        transform: rotate(10deg);
        z-index: 2;
        width: 650px;
    }

    .excellence-picture-3 {
        position: absolute;
        left: -75px;
        border-radius: 0% 10% 10% 10%;
        transform: rotate(10deg);
        z-index: 2;
        width: 670px;
        object-fit: cover;
        height: 400px;
    }

    .excellence-1-container {
        margin-top: 50px;
    }

    .excellence-2-container {
        min-height: 650px;
        padding: 0;
        margin-top: 130px;
    }

    .excellence2-picture {
        position: absolute;
        left: -199px;
        top: 0px;
        border-radius: 10% 0% 0% 10%;
        filter: brightness(90%);
        width: 705px;
        z-index: 2;
    }

    .excellence-background-text {
        position: absolute;
        left: 15%;
        top: 55%;
        z-index: 2;
    }

    .excellence2-background-text {
        position: absolute;
        left: -8%;
        top: 52%;
        z-index: 2;
    }

    .excellence3-background-text p {
        width: 80%;
    }

    .excellence-background-text p {
        font-size: 27pt;
        width: 130%;
    }

    .excellence .subtitle3 {
        transform: translate(-60px);
    }

    .excellence .subtitle3 p {
        font-size: 33pt;
        width: 400px;
        transform: translate(5px);
    }

    .excellence-detail .detail,
    .excellence2-detail .detail {
        font-size: 26pt;
    }

    .excellence-3-container {
        margin-top: 75px;
    }
}

/* Macbook Air 1440 x 900 */
@media only screen and (min-width:1440px) and (max-height: 700px) {

    .slide1,
    .slide2,
    .slide3 {
        background-position: 0px !important;
    }

    .excellence2-picture {
        left: -125px !important;
        width: 605px;
    }

    .excellence2-background-text {
        left: -10% !important;
    }
}

@media only screen and (max-width:1440px) {
    .logo img {
        padding: 5px;
    }
    .excellence3-background-text {
        position: absolute;
        left: 12%;
        top: 45%;
        z-index: 2;
    }

    .home-experience {
        transform: translate(0, -250px);
    }

    .background-text2 {
        position: absolute;
        top: 170px;
        text-align: center;
        width: 100%;
    }

    .slider {
        min-height: 500px;
    }

    .slide1,
    .slide2,
    .slide3 {
        height: 620px;
        background-position: -35px;
    }

    .home-container {
        max-height: 190px;
    }

    .background-text {
        position: absolute;
        top: 130px;
        text-align: center;
        width: 100%;
    }

    .background-text h1,
    .background-text2 h1 {
        font-size: 40pt;
        width: 70%;
        color: white;
    }

    .excellence-3-container {
        margin-top: 150px;
    }

    .background-text p {
        font-family: Museo300;
        color: white;
        margin-top: 15px;
        font-size: 20pt;
    }

    .value-1 {
        font-family: Museo700;
        font-size: 20pt;
    }

    .value-2 {
        font-family: Delicious;
        font-size: 17pt;
    }

    .value-3 {
        font-family: Delicious;
        font-size: 15pt;
        line-height: 1.2;
    }

    h1 {
        font-size: 26pt;
    }

    .about-us p {
        font-size: 18pt;
        line-height: 1.2;
    }

    .excellence-picture {
        left: -75px;
        width: 550px;
    }

    .excellence-background-text p {
        font-size: 23pt;
        width: 400px;
    }

    .excellence2-background-text p {
        font-size: 23pt;
    }

    .excellence2-container {
        min-height: 925px;
        padding: 0;
        margin-top: 100px;
    }

    .excellence-detail {
        padding-left: 100px;
    }

    .excellence2-detail {
        margin-top: 50px;
    }

    .excellence-detail .detail,
    .excellence2-detail .detail {
        font-size: 23pt;
    }

    .excellence2 .sub1,
    .excellence2 .sub2 {
        width: 410px;
    }

    .excellence2 .sub1 {
        font-size: 28pt;
    }

    .excellence2 .sub2 {
        font-size: 21pt;
    }

    .excellence2 .subtitle {
        transform: translate(-280px, -65px);
        z-index: 2;
    }

    .excellence2-picture {
        left: -120px;
        width: 600px;
    }

    .excellence2-background-text {
        left: -5%;
        top: 43%;
    }

    .excellence .subtitle3 p {
        font-size: 28pt;
        width: 320px;
        line-height: 1.2;
    }

    .excellence .subtitle3 {
        transform: translate(-75px);
    }

    .excellence-picture-3 {
        width: 550px;
    }

    .Value-SMS-Broadcast {
        font-size: 23pt;
    }

    .orange-square{
        top: 15px;
    }

    .orange-square-bottom img {
        max-width: 85px;
    }

    .excellence-2-container {
        margin-top: 95px;
    }

    .excellence2-detail .fields {
        width: 82%;
    }
    .partner-image img {
        max-height: 100px;
        max-width: 80%;
        object-fit: contain;
    }
}

@media only screen and (max-width:1366px) {
    .slide1,
    .slide2,
    .slide3 {
        height: 550px;
        background-position: 0px;
    }

    .excellence2-picture {
        left: -184px;
        width: 634px;
    }

    .excellence2-background-text p {
        width: 460px;
    }

    .home-experience {
        transform: translate(0, -250px);
    }

    .excellence2-detail .fields {
        width: 80%;
    }

    .excellence2-detail {
        margin-top: 30px;
    }

    .orange-square{
        top: 15px;
    }
}

@media only screen and (max-width: 1280px) {
    .nav-links{
        width: 58%;
    }

    .nav-links a, .nav-links button {
        font-size: 1.1rem;
    }

    .logo img{
        margin-left: 20px;
    }
    .value-2 {
        font-family: Delicious;
        font-size: 16pt;
    }

    .excellence2-picture {
        left: -184px;
        width: 605px;
    }

    .slide1,
    .slide2,
    .slide3 {
        height: 550px;
        background-position: -35px;
    }

    .excellence2-background-text {
        left: -15%;
        top: 43%;
    }

    .excellence2-detail .fields {
        width: 85%;
    }

    .excellence-2-container {
        min-height: 650px;
    }
}

@media only screen and (max-width:1280px) and (min-height: 700px) {
    .excellence2-picture {
        left: -184px;
        width: 611px;
    }

}

@media only screen and (max-width:1200px) {
    .home-container {
        max-height: 350px;
    }

    .background-text {
        position: absolute;
        top: 150px;
        text-align: center;
        width: 100%;
    }

    .background-text h1,
    .background-text2 h1 {
        font-size: 35pt;
    }
}

@media only screen and (max-width:1024px) {
    .space {
        margin-bottom: 5vh;
    }

    .logo img {
        height: 50px;
        margin-left: 0px;
    }

    .nav-links {
        width: 60%;
    }

    .nav-links {
        min-height: 7vh;
        height: 7vh;
    }

    .home-container {
        max-height: 165px;
    }

    .excellence-background-text p {
        font-size: 19pt;
        width: 300px;
    }

    .excellence-background-text {
        position: absolute;
        left: 10%;
        top: 25%;
        z-index: 2;
    }

    .slide1,
    .slide2,
    .slide3 {
        transform: translate(0, -150px);
        background-position: -140px;
    }

    .home-experience {
        transform: translate(0, -250px);
        width: 90%;
    }

    nav {
        min-height: 8vh;
    }

    .excellence-3-container {
        margin-top: 10px;
    }

    .excellence2-picture {
        left: -125px;
        width: 466px;
    }

    .excellence2-background-text p {
        width: 280px;
        font-size: 16pt;
    }

    .excellence2-background-text {
        left: -10%;
        top: 30%;
    }

    .excellence .huge-num,
    .excellence2 .huge-num {
        font-size: 100pt;
    }

    .excellence-picture {
        left: -45px;
        width: 425px;
    }

    .excellence p {
        font-size: 18pt;
        z-index: 1;
        width: 260px;
    }

    .excellence .subtitle {
        transform: translate(-28px);
    }

    .excellence2 .sub1 {
        font-size: 16pt;
        width: 300px;
    }

    .excellence2 .sub2 {
        font-size: 12pt;
        width: 270px;
    }

    .excellence2 .subtitle {
        transform: translate(-143px, -65px);
        z-index: 2;
    }

    .excellence2 .huge-num {
        transform: translate(-115px, -50px);
    }

    .short-link {
        overflow: hidden;
        display: inline-block;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 80%;
    }

    .excellence2-detail .quote {
        font-size: 14pt;
    }

    .about-us p {
        font-size: 14pt;
    }

    .excellence-detail .detail,
    .excellence2-detail .detail {
        font-size: 18pt;
    }

    .excellence-detail .description {
        font-size: 14pt;
    }

    .explore-more {
        font-size: 14pt;
    }

    .Value-SMS-Broadcast {
        font-size: 18pt;
    }

    .Value-SMS-text p {
        font-size: 13pt;
    }

    .excellence2-detail .fields {
        font-size: 14pt;
    }

    .excellence .subtitle3 p {
        font-size: 23pt;
    }

    .excellence .subtitle3 {
        transform: translate(-35px);
    }

    .excellence-picture-3 {
        width: 450px;
    }

    .excellence3-background-text p {
        font-size: 18pt;
    }

    .excellence3-background-text {
        top: 40%;
    }
    .nav-links a, .nav-links button {
        font-size: 1.2rem;
    }
}

@media only screen and (max-width:980px) and (min-height: 1800px) {
    .excellence-3-container {
        margin-top: 100px;
    }

    .slide1,
    .slide2,
    .slide3 {
        height: 550px;
        background-position: -190px;
        transform: translate(0, -125px);
    }

    .home-container {
        max-height: 250px;
    }

    nav {
        height: 6vh;
        min-height: 6vh;
    }

    .excellence-picture {
        left: -75px;
        width: 450px;
    }

    .excellence-background-text {
        position: absolute;
        left: 10%;
        top: 35%;
        z-index: 2;
    }

    .excellence-background-text p {
        font-size: 16pt;
        width: 300px;
    }

    .short-link {
        overflow: hidden;
        display: inline-block;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 80%;
    }

    .excellence2-picture {
        left: -125px;
        width: 452px;
    }

    .excellence2-background-text p {
        width: 280px;
        font-size: 16pt;
    }

    .excellence2-background-text {
        left: -10%;
        top: 30%;
    }

    .excellence .huge-num,
    .excellence2 .huge-num {
        font-size: 100pt;
    }

    .excellence p {
        font-size: 18pt;
        z-index: 1;
        width: 260px;
    }

    .excellence .subtitle {
        transform: translate(-28px);
    }

    .excellence2 .sub1 {
        font-size: 16pt;
        width: 300px;
    }

    .excellence2 .sub2 {
        font-size: 12pt;
        width: 270px;
    }

    .excellence2 .subtitle {
        transform: translate(-143px, -65px);
        z-index: 2;
    }

    .excellence2 .huge-num {
        transform: translate(-115px, -50px);
    }

    .excellence2-detail .quote {
        font-size: 14pt;
    }

    .about-us p {
        font-size: 14pt;
    }

    .excellence-detail .detail,
    .excellence2-detail .detail {
        font-size: 18pt;
    }

    .excellence-detail .description {
        font-size: 14pt;
    }

    .explore-more {
        font-size: 14pt;
    }

    .Value-SMS-Broadcast {
        font-size: 18pt;
    }

    .Value-SMS-text p {
        font-size: 13pt;
    }

    .excellence2-detail .fields {
        font-size: 14pt;
    }

    .excellence .subtitle3 p {
        font-size: 23pt;
    }

    .excellence .subtitle3 {
        transform: translate(-35px);
    }

    .excellence-picture-3 {
        width: 375px;
    }

    .excellence3-background-text p {
        font-size: 18pt;
    }

    .excellence3-background-text {
        top: 40%;
    }
}

@media only screen and (max-width:768px) {
    #tab-blog, #tab-developer, #tab-news{
        z-index: -1;
    }
    .svg {
        filter: none;
    }

    .footer-list {
        padding-inline-start: 6px;
    }

    .nav-links {
        min-height: 18vh;
        height: 18vh;
        top: 7vh;
        width: 35%;
    }

    .logo img {
        height: 50px;
        margin-left: -100px;
    }

    .nav-links a,
    .nav-links button {
        color: black;
    }

    .home-container {
        max-height: 250px;
    }

    .excellence-background-text p {
        font-size: 19pt;
        width: 300px;
    }

    .excellence-background-text {
        position: absolute;
        left: 10%;
        top: 25%;
        z-index: 2;
    }

    .slide1,
    .slide2,
    .slide3 {
        transform: translate(0, -150px);
        background-position: -280px;
    }

    .home-experience {
        transform: translate(0, -250px);
        width: 90%;
    }

    nav {
        min-height: 7vh;
    }

    .excellence-3-container {
        margin-top: 210px;
    }

    .excellence2-picture {
        left: -125px;
        width: 381px;
    }

    .excellence2-background-text p {
        width: 280px;
        font-size: 16pt;
    }

    .excellence2-background-text {
        left: -24%;
        top: 19%;
    }

    .excellence .huge-num,
    .excellence2 .huge-num {
        font-size: 100pt;
    }

    .excellence-picture {
        left: -45px;
        width: 375px;
    }

    .excellence p {
        font-size: 18pt;
        z-index: 1;
        width: 260px;
    }

    .excellence .subtitle {
        transform: translate(-28px);
    }

    .excellence2 .sub1 {
        font-size: 16pt;
        width: 300px;
    }

    .excellence2 .sub2 {
        font-size: 12pt;
        width: 270px;
    }

    .excellence2 .subtitle {
        transform: translate(-143px, -65px);
        z-index: 2;
    }

    .excellence2 .huge-num {
        transform: translate(-115px, -50px);
    }

    .short-link {
        overflow: hidden;
        display: inline-block;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 80%;
    }

    .excellence2-detail .quote {
        font-size: 14pt;
    }

    .about-us p {
        font-size: 14pt;
    }

    .excellence-detail .detail,
    .excellence2-detail .detail {
        font-size: 18pt;
    }

    .excellence-detail .description {
        font-size: 14pt;
    }

    .explore-more {
        font-size: 14pt;
    }

    .Value-SMS-Broadcast {
        font-size: 18pt;
    }

    .Value-SMS-text p {
        font-size: 13pt;
    }

    .excellence2-detail .fields {
        font-size: 14pt;
    }

    .excellence .subtitle3 p {
        font-size: 23pt;
    }

    .excellence .subtitle3 {
        transform: translate(-35px);
    }

    .excellence-picture-3 {
        width: 375px;
    }

    .excellence3-background-text p {
        font-size: 18pt;
    }

    .excellence3-background-text {
        top: 40%;
    }

    .end-nav {
        z-index: -1;
    }
    .nav-links a, .nav-links button {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width:480px) {
    nav {
        min-height: 10vh;
    }

    .footer-list {
        padding-inline-start: 0px;
    }

    .nav-links {
        min-height: 25vh;
        height: 40vh;
        width: 50%;
        top: 10vh;
        padding: 0px 10px;
    }

    .logo img {
        height: 50px;
        margin-left: -30px;
    }

    .svg {
        width: 12px;
        filter: none;
    }

    /* Revisi 1 */
    .nav-links a,
    .nav-links button {
        color: black;
    }

    .solutions ul {
        margin-left: -45px;
        margin-top: 10px;
        width: 180px;
        height: 180px;
    }

    .end-nav {
        z-index: -1;
    }

    .main-background {
        height: 600px;
        object-fit: cover;
        object-position: 10% 0%;
        filter: brightness(70%);
    }

    .slider {
        min-height: 600px;
    }

    .slide1,
    .slide2,
    .slide3 {
        height: 600px;
    }

    .slide1 {
        background-position: 30% 0%;
    }

    .slide2 {
        background-position: 30% 0%;
    }

    .slide3 {
        background-position: 40% 0%;
    }

    .home-experience {
        transform: translate(0, -260px);
        width: 100%;
        z-index: 1;
    }

    .home-container {
        max-height: 800px;
    }

    .background-text {
        position: absolute;
        top: 160px;
        text-align: center;
        width: 100%;
    }

    .background-text h1,
    .background-text2 h1 {
        font-size: 28pt;
    }

    .background-text p {
        font-size: 20pt;
    }

    .excellence {
        max-height: 200px;
    }

    .excellence .huge-num {
        color: #1e70ac;
        font-family: Gautami;
        font-size: 180pt;
    }

    .excellence .subtitle {
        transform: translate(-45px);
        font-size: 20pt;
        z-index: 2;
    }

    .excellence p {
        color: #d67612;
        width: 200px;
        font-family: Museo700;
        font-size: 20pt;
        z-index: 1;
    }

    .excellence-picture {
        position: relative;
        left: -75px;
        border-radius: 0% 10% 10% 10%;
        transform: rotate(10deg);
        z-index: 2;
        width: 100%;
    }

    .excellence-picture-3 {
        position: relative;
        left: -75px;
        border-radius: 0% 10% 10% 10%;
        transform: rotate(10deg);
        z-index: 2;
        width: 100%;
    }

    .excellence-detail {
        background-color: #ecf6f8;
        border-radius: 30px 0px 0px 30px;
        margin-top: 50px;
        padding-left: 20px;
        padding-bottom: 20px;
    }

    .excellence-background-text {
        left: 10%;
        top: 60%;
        z-index: 2;
    }

    .excellence-background-text p {
        font-size: 15pt;
        width: 60%;
        text-shadow: 1.5px 1.5px #2e5493;
    }

    .excellence-detail .detail,
    .excellence2-detail .detail {
        font-family: Museo700;
        font-size: 20pt;
        padding: 10px;
    }

    .orange-square-bottom {
        display: none;
    }

    .excellence2-detail {
        padding-left: 10px;
    }

    .excellence2-detail .detail {
        width: 100%;
    }

    .excellence2-detail .quote {
        padding: 10px;
        margin-left: 0px;
        text-align: center;
        width: 100%;
        font-family: Delicious;
        font-size: 15pt;
    }

    .excellence2-detail .quote span {
        font-family: Delicious;
        font-size: 10pt;
    }

    .excellence2-detail .fields {
        width: 100%;
        padding: 10px;
        font-size: 13pt;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }

    .excellence2-detail .fields2 {
        width: 100%;
        padding: 10px;
        padding-top: 0px;
        font-size: 13pt;
    }

    .excellence2 {
        margin-top: 20px;
    }

    .excellence2-left-side {
        float: none;
        width: 100%;
    }

    .excellence2-right-side {
        float: none;
        width: 100%;
    }

    .excellence2 .huge-num {
        color: #1e70ac;
        font-family: Gautami;
        font-size: 180pt;
        transform: translate(0);
        max-height: 150px;
    }

    .excellence2 .subtitle {
        transform: translate(-46px);
        z-index: 2;
    }

    .excellence2 .sub1 {
        color: #d67612;
        font-family: Museo700;
        font-size: 20pt;
        width: 200px;
        margin-bottom: 0;
    }

    .excellence2 .sub2 {
        color: #345b9e;
        font-family: Museo700;
        font-size: 11pt;
        width: 220px;
        margin-bottom: 0;
    }

    .excellence2-picture-container {
        min-height: 0;
        margin-bottom: 20px;
    }

    .excellence2-picture {
        position: static;
        border-radius: 10% 0% 0% 10%;
        filter: brightness(90%);
        transform: translate(30px, 0px);
        z-index: 2;
        width: 100%;
    }

    .excellence2-picture img {
        overflow: hidden;
    }

    .excellence2-background-text {
        position: absolute;
        top: 135px;
        z-index: 2;
    }

    .excellence2-background-text p {
        width: 60%;
        margin-left: 35%;
        font-size: 15pt;
        margin-top: 10%;
        text-shadow: 1.5px 1.5px #2e5493;
    }

    .excellence3-background-text p {
        font-size: 15pt;
        text-shadow: 1.5px 1.5px #2e5493;
    }

    .excellence3-background-text {
        position: absolute;
        left: 5%;
        top: 75%;
        width: 80%;
    }

    .mobile_overflow {
        overflow: hidden;
    }

    .mobile-padding-0 {
        padding: 0;
    }

    .excellence .subtitle3 p {
        width: 110%;
        font-size: 20pt;
    }

    .excellence .subtitle3 {
        transform: translate(-50px);
    }

    .excellence3-div {
        min-height: 0px;
    }

    .excellence3-detail {
        transform: translate(0px);
    }

    .space {
        margin-bottom: 0.5vh;
    }

    .sosmed {
        margin: auto;
        width: 50%;
        display: flex;
        justify-content: space-around;
    }

    .footer-about-2 {
        margin-bottom: 0px;
    }

    .Value-SMS-Broadcast-Description p {
        font-size: 10pt;
    }

    .brand-partner h1 {
        color: #1e70ac;
        font-family: Museo700;
        font-size: 18pt;
    }

    .partner-image {
        flex-direction: row;
    }

    .partner-image img {
        max-height: 100px;
        max-width: 120px;
    }

    .partner {
        display: flex;
        justify-content: center;
    }

    .Value-SMS-Broadcast {
        text-align: center;
    }

    .center-button {
        display: flex;
        justify-content: center;
    }

    .excellence-1-container {
        margin-top: 30px;
    }

    .excellence-2-container {
        min-height: 0;
        padding: 0;
        margin-top: 30px;
    }

    .excellence-3-container {
        margin-top: 30px;
    }

    .short-link {
        overflow: hidden;
        display: inline-block;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 80%;
    }

    .orange-square {
        top: 5px;
    }
}

@media only screen and (max-width:400px) {
    .excellence2 .sub2 {
        width: 180px;
    }

    .home-container {
        max-height: 830px;
    }

    .excellence2-background-text p {
        margin-top: 0%;
    }

    .excellence2-picture {
        transform: translate(30px, 9px);
    }

    .logo img {
        height: 45px;
    }
    
    .nav-links {
        height: 40vh;
    }
}

@media only screen and (max-width: 350px) {

    .excellence .huge-num,
    .excellence2 .huge-num {
        font-size: 150pt;
        transform: translate(0);
        max-height: 150px;
    }

    .background-text h1,
    .background-text2 h1 {
        font-size: 20pt;
    }

    .background-text p {
        font-size: 16pt;
    }

    .slider {
        min-height: 500px;
    }

    .home-container {
        max-height: 930px;
    }

    .excellence .subtitle3 {
        transform: translate(-65px);
    }

    .excellence p {
        width: 150px;
    }

    .excellence-detail .description {
        font-size: 15pt;
    }

    .excellence2 .sub1 {
        width: 160px;
        font-size: 16pt;
    }

    .excellence2 .sub2 {
        width: 160px;
        font-size: 10pt;
    }

    .excellence2 .subtitle {
        transform: translate(-40px);
    }

    .nav-links a,
    .nav-links button {
        font-size: 12pt;
    }

    .solutions ul {
        margin-left: -75px;
        margin-top: 10px;
        width: 230px;
        height: 180px;
    }

}

@media only screen and (max-width: 300px) {
    .excellence2 .sub1 {
        width: 150px;
        font-size: 15pt;
    }

    .excellence2 .sub2 {
        width: 150px;
        font-size: 10pt;
    }

    .excellence2-background-text p {
        font-size: 11pt;
    }

    .excellence-picture-3 {
        left: -57px;
    }

    .excellence3-background-text {
        top: 70%;
    }

    .logo img {
        height: 40px;
    }

    .nav-links a,
    .nav-links button {
        font-size: 10pt;
    }

    .solutions ul a {
        font-size: 10pt;
    }

    .solutions ul {
        margin-left: -75px;
        margin-top: 10px;
        width: 230px;
        height: 180px;
    }
}