
.header-title{
    font-family:Arial, Helvetica, sans-serif;
    font-size: 38px;
    font-weight: 600;
}
.gs-top{
    display: flex;
    justify-content: space-between;
}

.logo{
    display: block;
    height: 20px;
    width: auto
}

.lang{
  	margin-top: 1.5rem;
}

.bg-light-grey{
    background-color: #fff;
    color: black;
}

.ck-editor__editable[role="textbox"] {
    /* editing area */
    min-height: 500px;
}

.ck-editor__editable ul{
    padding-left: 1rem;
}

.ck-editor__editable ol{
    padding-left: 1rem;
}

.col-8 ol li{
    list-style-type: decimal;
    margin-left: 2rem;
}

.inlineBtn{
    padding-left: 3rem;
    display: flex;
    gap: 5px;
}

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("background.jpg");
    height: 600px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.hero-text {
    font-family:Arial, Helvetica, sans-serif;
    font-size: 72px;
    font-weight:500;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.hero-title {
    font-family:Arial, Helvetica, sans-serif;
    font-size: 72px;
    font-weight:600;
    text-align: center;
    position: absolute;
    top: 80%;
    left: 20%;
    transform: translate(-50%, -50%);
    color: white;
}

.footer{
    background-color: white;
    height: auto;
}

.content-footer{
    background-color: white;
    padding-top: 80px;
    padding-bottom: 30px;
}

.readyText ol li{
    list-style-type: decimal;
    margin-left: 3rem;
}

.readyText h2{
    font-size: 20px;
}

.search{
    display: flex;
    gap: 1rem;
}

.priceList{
    display: flex;
    justify-content: space-between;
    color: #fff;
    padding-top: 1rem;
    font-size: 17px;
}

.about{
    background-color: #6a7b95;
    height: auto;
    padding-top: 50px;
    padding-bottom: 100px;
}

.small-text{
    font-size: 14px;
    color: #dc3545;
}

.khmer-bold{
    font-family: Moul;
    font-size: 18px;
}

.khmer-header{
    font-family: Moul;
    font-size: 24px;
}

.white{
    color: #fff;
}

.page-header{
    font-family: Moul;
    font-weight: 500;
    color: #fff;
    font-size: 48px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 260px;
    perspective: 1000px;
}
  
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
  
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}
  
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
  
.flip-card-front {
    background-color: #eee;
    color: black;
}
  
.flip-card-back {
    background-color: #6a7b95;
    color: white;
    transform: rotateY(180deg);
}

@media (max-width: 572px) {
    .hero-text {
        font-family:Arial, Helvetica, sans-serif;
        font-size: 48px;
        font-weight:500;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
    }
    .hero-title {
        font-family:Arial, Helvetica, sans-serif;
        font-size: 48px;
        font-weight:600;
        text-align: center;
        position: absolute;
        top: 80%;
        left: 30%;
        transform: translate(-50%, -50%);
        color: white;
    }
    .page-header{
        font-family: Moul;
        font-weight: 500;
        font-size: 34px;
        color: #fff;
    }
    .lang{
        margin-top: 0.5rem;
        margin-left: 10rem;
    }
    
}


