@import url('../../public/saira/Saira/static/Saira-Regular.ttf');
body {
    font-family: 'Saira', sans-serif;
}
/* buat variabel warna */
:root {
    --warna-utama: #286F6C;
    --warna-kedua: rgb(249,252,253);
    --warna-hitam: #23262F;
}
/* navbar */
.navbar-green {
    background-color: var(--warna-utama);
    /* min-height: 124px; */
    z-index: 1000;
}

.navbar-green.active{
    -webkit-box-shadow: -1px 18px 44px -15px rgba(0,0,0,0.83);
    -moz-box-shadow: -1px 18px 44px -15px rgba(0,0,0,0.83);
    box-shadow: -1px 18px 44px -15px rgba(0,0,0,0.83);
}

.nav-link.active {
    font-weight: bold;
}

input[type="search"] {
    padding-left: 20px;
}

/* ============================= hero ============================= */
.container-fluid .hero{
    height: 120vh;
    padding-top: 18%;
}

.container-fluid .hero::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.container-fluid .hero .company-name, .container-fluid .hero .btn-group{
    z-index: 2;
}

.container-fluid .hero .btn-group .btn1{
    width: 160px;
    height: 68px;
    border-radius: 16px;
    margin-right: 8px;
}

.container-fluid .hero .btn-group .btn2{
    border-radius: 16px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tipe-media{
    z-index: 999;
    background-color: var(--warna-utama);
    padding: 24px 98px;
    position: absolute;
    bottom: -10px;
    transform: translateY(150px);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.tipe-media.active{
    opacity: 1;
    transform: translateY(0);
}

.tipe-media .media i{
    font-size: 124px;
    color: var(--warna-kedua);
}

.tipe-media .media span{
    font-size: 20px;
    color: var(--warna-kedua);
}

.tipe-media .media{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    float: left;
}

.tipe-media .media:not(:first-child):not(:last-child) {
    padding: 0 52px;
    border-right: 1px solid var(--warna-kedua);
    border-left: 1px solid var(--warna-kedua);
}

.tipe-media .media:first-child{
    padding-right: 52px;
}

.tipe-media .media:last-child{
    padding-left: 52px;
}

/* ============================= client ============================= */
.client{
    background-color: var(--warna-utama);
    padding: 120px 0;
    height: 100vh;
}

.client .strip {
    top: -15vh;
}

.strip {
    top: -80px;
    z-index: 10;
}

.strip .rectangle-img {
    width: 100%;
    height: 25vh;
    background: var(--warna-kedua);
    background: linear-gradient(0deg, rgba(249,252,253,1) 0%, rgba(249,252,253,1) 25%, rgba(249, 252, 253, 0.917) 75%, rgba(9,9,121,0) 100%);
}
.client .strip img {
    width: 100%;
    margin-top: -10px;
}


.strip2 {
    bottom: 0px;
}

.strip2 .rectangle-img {
    width: 100%;
    height: 34px;
    margin-top: -1px;
    background: var(--warna-kedua);
}
.strip2 img {
    width: 100%;
    transform: rotateX(180deg);
    margin-top: 10px;
}

.client h1{
    margin-top: 60px;
}
/* ============================= About ============================= */
/* ============================= About ============================= */
.about-home{
    background-color: var(--warna-kedua);
    min-height: 50vh;
}

.about-home p {
    padding-right: 0px;
    padding-left: 18px;
    text-align: justify;
}

.about-home .row {
    min-height: 350px;
    padding-left: 24px; 
    padding-right: 24px;
}

.about-home .row .img-about{
    height: 100%;
}


/* ============================= promo ============================= */
.promo.d-none{
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.promo {
    background-color: var(--warna-utama);
    opacity: 1;
}

.promo .card{
    box-shadow: 0px 0px 16px 13px rgba(0,0,0,0.1);
    transform: translateY(200px);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.promo .card img{
    width: 150px;
    width: 100%;
}

.promo .card.active{
    opacity: 1;
    transform: translateY(0);
}

.promo .rectangel-promo{
    width: 100%;
    height: 90px;
    background: #23262F;
}

.promo .card-header {
    background-color: #58463E;
}

.promo .card-body {
    background-color: #AF946E;
    padding-bottom: 20px;
}

/* ============================= order ============================= */
.order {
    height: 600px;
    background-image: url('../images/order_now.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.order .box-order .isi {
    padding-top: 104px;
    padding-left: 3rem;
}

/* ============================= about ============================= */
.about.d-none{
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.about{
    opacity: 1;
}
section.about p{
    text-align: justify;
    font-size: 20px;
}

section.about .img-about{
    padding: 84px;
}

section.about .img-about .img-logo{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
/* ============================= question ============================= */
.question.d-none{
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.question {
    padding: 20px;
    margin-top: 20px;
    opacity: 1;
}

.question .heading {
    background-color: var(--warna-utama);
    padding: 20px;
    text-align: center;
    border-radius: 12px;
}

.question .heading h2 {
    margin: 0;
}

.question h3 {
    color: #333;
    font-size: 1.25rem;
}

.question p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.question h1 {
    font-size: 2.5rem;
    color: #333;
}

.question h4 {
    color: #666;
    font-size: 1.5rem;
}

.question ul {
    color: #333;
    font-size: 1rem;
}

/* .question ul li {
    list-style-type: disc;
    margin-bottom: 10px;
} */

.question .fw-light {
    font-weight: 300;
}

.question .rounded-4 {
    border-radius: 12px;
}

.question .mt-4 {
    margin-top: 1.5rem;
}

.question .mt-5 {
    margin-top: 3rem;
}

.question .list-unstyled {
    padding-left: 0;
    list-style: none;
}

.question .text-justify{
    text-align: justify;
}

/* ============================= order section ============================= */
.order-section.d-none{
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.order-section {
    opacity: 1;
}
.order-section .heading {
    background-color: var(--warna-utama);
}

/* ============================= footer ============================= */
.footer {
    min-height: 500px;
    background-color: var(--warna-hitam);
    padding: 0px 52px;
}

@media (min-width: 992px) {
    .w-lg-50{
        width: 50% !important;
    }
    .w-lg-75 {
        width: 75% !important;
    }

    .container-fluid .hero .btn-group .btn1{
        margin-right: 124px;
    }

    .client .strip img{
        margin-top: 0px;
    }

    .about-home p {
        padding-right: 86px;
    }

    .about-home .row {
        padding-left: 164px; 
        padding-right: 164px;
    }

    .px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .strip2 img {
        margin-top: 0;
    }

    .order .box-order .isi {
        padding-top: 204px;
        padding-left: 0;
    }

    .footer {
        padding: 0px 152px;
    }
}

@media (min-width: 1200px) {
    /* .about-home .row {
        margin: 0 298px;
    } */
}