* {
    margin: 0;
    padding: 0;
    font-family: "Be Vietnam", sans-serif;
    box-sizing: border-box;
    text-decoration: none;
    /* transition: all 0.2s linear; */
}

/* Hide scrollbar for Chrome, Safari and Opera */
/* .example::-webkit-scrollbar {
    display: none;
} */

/* Hide scrollbar for IE, Edge and Firefox */
/* .example {
    -ms-overflow-style: none;
    scrollbar-width: none;
} */

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    padding: 10px 5%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.section-question {
    padding: 50px 0;
    width: 100%;
    background-color: #f1f5f9;
}

.section-question .border {
    padding: 100px 0;
    border-radius: 40px;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
}

.section-question .image {
    position: fixed;
    top: 80vh;
}

.section-question img {
    max-width: 220px;
}

.section-question .wrapper {
    width: 65%;
    padding-right: 70px;
}

.section-question .text {
    color: #fff;
}

.section-question .text h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-question .text p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 50px;
}

.section-question .text .btn-konsul {
    padding: 15px 60px;
    background-color: #1bad4b;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    font-size: 20px;
    text-align: center;
}

.section-question .btn-konsul:hover {
    background-color: #09331b;
}

/* Animation */
.scroll-section {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.scroll-section.animated {
    opacity: 1;
    transform: translateX(0);
}
/* End Animation */

/* Media Queries */
@media screen and (max-width: 1500px) {
}

@media screen and (max-width: 1350px) {
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 1080px) {
    .section-question .image {
        position: absolute;
        top: 9%;
        left: 5%;
    }
}

@media screen and (max-width: 991px) {
}

@media screen and (max-width: 950px) {
}

@media screen and (max-width: 720px) {
    .section-question .image {
        position: absolute;
        top: 7%;
        left: 5%;
    }

    .section-question img {
        max-width: 200px;
    }

    .section-question .border {
        padding: 80px;
    }

    .section-question .wrapper {
        width: 100%;
        padding-right: 0;
    }
}

@media screen and (max-width: 680px) {
}

@media screen and (max-width: 580px) {
    .section-question .image {
        position: absolute;
        top: 8%;
        left: 5%;
    }

    .section-question img {
        max-width: 180px;
    }

    .section-question .text h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .section-question .text p {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .section-question .text .btn-konsul {
        padding: 10px 30px;
        background-color: #1bad4b;
        color: #fff;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease 0s;
        font-size: 16px;
        text-align: center;
    }

    .section-question .btn-konsul:hover {
        background-color: #09331b;
    }
}

@media screen and (max-width: 380px) {
    .section-question .text h1 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .section-question .text p {
        font-size: 12px;
        margin-bottom: 50px;
    }

    .section-question .text .btn-konsul {
        padding: 5px 20px;
        background-color: #1bad4b;
        color: #fff;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease 0s;
        font-size: 12px;
        text-align: center;
    }

    .section-question .btn-konsul:hover {
        background-color: #09331b;
    }
}
