@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Battambang:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Siemreap&display=swap');

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

body {
    font-family: "Siemreap", system-ui;
}

.herobaner {
    width: 100%;
    height: 500px;
    box-shadow: 2px 2px 10px 2px #ddd;
    margin-bottom: 30px;
}

.herobaner .details {
    width: 50%;
    height: 100%;
    color: #ffff;
    font-size: 18px;
    text-align: center;
    padding: 100px 20px;
    color: #000000b6;

}

.herobaner .card-details {
    width: 50%;
    height: 100%;
    padding: 60px;
}

.herobaner .details .fontsize {
    font-size: 50px;
    font-weight: bold;
    color: #ff8e14;
}

.herobaner .details .fontsizes {
    font-size: 30px;
    font-weight: bold;
    color: #000000b6;
}

.btn-readmore {
    margin: auto;
    width: 100px;
    height: 40px;
    line-height: 40px;
    margin-top: 20px;
    background-color: #ff8e14;
    border-radius: 10px;
    color: #fff;
}

.btn-readmore a {
    color: #fff;
}

.btn-readmore:hover {
    background-color: #cd700c;
    color: #fff;
}

.animate__animated.animate__slideInLeft {
    --animate-duration: 2s;
}

.animate__animated.animate__slideInRight {
    --animate-duration: 2s;
}

/* FAQs */
textarea {
    width: 100%;
    height: 200px;
    background-color: #ddd;
    border-radius: 5px;
    border: 0;
    padding: 20px;
    font-family: "Siemreap", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #414141;
    resize: vertical;
}

textarea:focus {
    outline: 0;
}

.form-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit {
    padding: 10px 50px;
    border-radius: 5px;
    color: #ff8e14;
    background-color: #080000;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

/* FAQs */
.question {
    width: 100%;
    height: 80px;
    background-color: #F4F4F4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    cursor: pointer;
}

.question:active {
    background-color: #ff8e14;
}

.question h3 {
    font-size: 20px;
    color: #181E76;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .6s ease-in-out;
    padding: 0 20px;
}


.answer p {
    padding-top: 1rem;
    line-height: 1.6;
    font-size: 16px;
    color: #535353;
}

.faq.active .answer {
    max-height: 300px;
    transition: max-height .5s ease-in-out;
}

.faq.active .fa-angle-down {
    transform: rotate(180deg);
}

.fa-angle-down {
    transition: transform .5s ease-in;
}

@keyframes max-height {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.faq:not(.active) .answer {
    transition: .5s ease;
}

.card-map {
    box-shadow: 2px 2px 10px 2px #ddd;
}

.sub-heading-title {
    padding: 20px 30px;
}

.card-information {
    margin-top: 30px;
    height: 500px;
}

.card-information img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.right-side-question {
    margin-top: 30px;
}

.mb-3 {
    margin-bottom: 1rem;
}

label {
    width: 20%;
    font-size: 16px;
    font-weight: bold;
    display: block;
}

.color-text {
    color: #333;
}

.form-control {
    width: 570px;
    height: 36px;
    padding-left: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #ddd;
}

.form-control:focus,
textarea:focus {
    outline: 2px solid #ff8e14;
}

textarea {
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-button {
    margin-bottom: 50px;

}

.btn-submit {
    cursor: pointer;
    font-family: "Siemreap", system-ui;
    padding: 5px 25px;
    border-radius: 10px;
    background: transparent;
    box-shadow: 2px 3px 5px 2px #ddd;
    border: 1px solid #ff8e14;
    background-color: #ff8e14;
    color: #fff;
}

.btn-submit:hover {
    background-color: #cd700c;
}