@import url('https://fonts.googleapis.com/css2?family=Siemreap&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Siemreap", sans-serif;

}

/* .row{
    width: 100%;
    display: flex;
}
.col-6{
    width: 50%;
}
.col-12{
    width: 100%;
} */
.mb1 {
    margin-bottom: 10px;
}

.mb-3 {
    margin-bottom: 20px;
}

.container {
    width: 1200px;
    margin: auto;
}

.hero-section {
    width: 100%;
    height: 550px;
    /* border : 15px solid #ff8e14; */
    background-color: #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.hero-section .banner-content h1 {
    font-size: 30px;
    color: #ff8e14;
}

.hero-section .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-text .text-question {
    font-size: 25px;
    font-weight: 600;
    width: 490px;
    color: #000000b6;
}

.banner-text .text-question span {
    color: #ff8e14;
}

.banner-text .text-description {
    font-size: 20px;
    font-weight: 400;
    color: black;
    width: 460px;
    margin-bottom: 20px;
}

.hero-section .banner-content .banner-img img {
    width: 400px;
}

.btn-payment {
    display: flex;
    gap: 30px;
}

.btn-payment a {
    text-decoration: none;
    color: white;
}

.btn-payment button {
    font-family: "Siemreap", sans-serif;
    padding: 7px 18px;
    border: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    transition: 0.5s;
}

.btn-payment .read-more,
.home-page {
    background-color: #ff8e14;
    color: #333 !important;
}

.btn-payment .read-more:hover,
.home-page:hover {
    background-color: #cd700c;
    color: #ff8e14;
    cursor: pointer;

}

.question-part {
    margin-top: 40px;
}

.question-content .question-title {
    text-align: center;
    font-weight: bold;

}

.question-content .question-description {
    text-align: center;
    font-size: 17px;
    margin: auto;
    width: 800px;
    color: #333;
}

.question-content img {
    width: 300px;
    margin: auto;
    display: flex;
    justify-content: center;
}

.telling-section {
    display: flex;
    justify-content: space-between;

}

/* faq */

.accordion .contentBx {
    position: relative;

}

.accordion .contentBx .label {
    margin-bottom: 15px;
    position: relative;
    padding: 10px;
    padding-left: 15px;
    width: 500px;
    background-color: #ff8e14;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
}

.accordion .contentBx .label::before {
    content: '+';
    position: absolute;
    top: 5%;
    right: 20px;
    transform: translateX(-50%);
    font-size: 24px;
}

.accordion .contentBx.active .label::before {
    content: '-';
}

.accordion .contentBx .content {
    position: relative;
    background-color: #fff;
    height: 0;
    overflow: hidden !important;
    transition: 0.5s;
    overflow: auto;
    max-width: 500px;
}

.accordion .contentBx.active .content {
    height: 150px;
    width: 500px;

}

.left-side-question .content-img {
    padding-left: 10px;
    padding-right: 10px;
    width: 500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-side-question .content img {
    width: 50px;
}

.btn-submit{
    font-family: "Siemreap", sans-serif;
}