@import url('https://fonts.googleapis.com/css2?family=Koulen&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanuman:wght@100;300;400;700;900&display=swap');

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

body {
    margin: 0;
    background-color: #dedddd;
    background-image:url(../image/background\ edit.png);
}

.koulen-regular {
    font-family: "Koulen", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.hanuman-thin {
    font-family: "Hanuman", serif;
    font-weight: 100;
    font-style: normal;
  }
html {
    scroll-behavior: smooth;
}

a {
    font-family: "Koulen", sans-serif;
    text-decoration: none;
    color: #e9e9e9;
}

ul {
    list-style-type: none;
}
h1,
h2,
h3,
h4 {
    font-family: "Koulen", sans-serif;
}
h1{
    color: #000000;
}

p {
    font-family: "Hanuman", serif;
    font-size: 18px;
}

header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;

}

#navbar {
    width: 100%;
    height: 80px;
    /* background-color: cyan; */
    position: fixed;
    z-index: 99;
    display: flex;
    align-items: center;
}

#navbar .con {
    min-width: 1200px;
    margin: auto;
}

#navbar .nav-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#navbar .nav-con .logo{
    width: 200px;
    height: 70px;
    /* background-color: cyan; */
}
#navbar .nav-con .logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#navbar.scrolled {
    background-color:#173540;
    /* background-color: #173540; */
}

#navbar .navbar-nav {
    display: flex;
}

#navbar .navbar-nav .nav-item .nav-link {
    display: block;
    font-size: 16px;
    padding: 10px 20px;
    position: relative;
    color:#F7941F;
}

#navbar .navbar-nav .nav-item .nav-link:hover {
    color: lime;
}

#navbar .navbar-nav .nav-item .drop-down {
    width: 100%;
    height: auto;
    /* background-color: cyan; */
    display: flex;
    justify-content: center;
    position: absolute;
    visibility: hidden;
    top: 100%;
    left: 0;
}

.hover-box {
    width: 100px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 50px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row {
    width: 1200px;
    height: 100%;
    background-color: white;
    display: flex;
    gap: 10px;
    border-radius: 10px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row .navbar-navdrop-col-2_4 {
    width: calc(1200px/5);
    height: 100%;
    /* background-color: teal; */
    margin: 10px 0px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row .navbar-navdrop-col-2_4 .nav-item-drop .nav-link-drop {
    /* background-color: chartreuse; */
    display: block;
    padding: 10px 20px;
    color: black;
    border-radius: 10px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row .navbar-navdrop-col-2_4 .nav-item-drop .nav-link-drop:hover {
    color: lime;
    /* background-color: #f2f1f1; */
}

#navbar .navbar-nav .nav-item:hover .drop-down {
    visibility: visible;
}

#navbar .nav-button {
    display: flex;
    list-style-type: none;
    align-items: center;
    gap: 15px;
    font-size: 20px;
}

#navbar .nav-button button {
    border-radius: 5px;
    border: none;
    background-color: transparent;
    border: 2px solid #F7941F;
    border-radius: 10px;
}

#navbar .nav-button button>a {
    display: block;
    font-family: "Koulen", sans-serif;
    padding: 10px 20px;
    font-size: 15px;
    /* color: #F7941F; */
}
.nav-button .icon-button a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    border: 1px solid #F7941F;
}
.profile-button .link-profile{
    display: block;
    width: 40px;
    height: 40px;
    /* line-height: 50px; */
    border-radius: 100%;
    /* overflow: hidden; */
    text-align: center;
    position: relative;
}
.profile-button .link-profile .img{
    position: relative;
}
.bookmark{
    width: 12px;
    height:12px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    position: absolute;
    top: -4px;
    right: 5px;
    z-index: 99;
}
.profile-button .link-profile .img{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
}
.profile-button .link-profile .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-button{
    position: relative;
}
.profile-button .dropdown-profile{ 
    width: 280px;
    height: auto;
    background-color:#fff;
    position: absolute;
    border-radius: 10px;
    padding: 15px;
    visibility: hidden;
    right: 0;
    top: 60px;
    /* box-shadow: 1px 1px 15px rgb(209, 207, 207); */
}
.hold{
    width: 40px;
    height: 20px;
    background-color: rgba(255, 0, 0, 0);
    z-index: 99;
    position: absolute;
    right: 0;
    top: 100%;
}
.profile-button .dropdown-profile .droplist-profile a:hover .icon-click{
    color: lime;
}
.profile-button:hover .dropdown-profile{
    visibility: visible;
}
.profile-button .dropdown-profile .droplist-profile a .fa-chevron-right{
    float: right;
}
.profile-button .dropdown-profile .droplist-profile a .icon-click{
    color: black;
    font-size: 16px;
    padding: 5px;
}
.profile-button .dropdown-profile .droplist-profile .body-profile{
    width: 100%;
    /* background-color: red; */
    border-bottom: 1px solid black ;
    display: flex;
    transition: none;
    padding-bottom: 8px;
    margin-bottom: 15px;
    gap: 20px;
    align-items: center;
}
.profile-button .dropdown-profile .droplist-profile .body-profile .img{
    display: block;
    width: 40px;
    height: 40px;
    transition: none;
    border-radius: 100%;
    overflow: hidden;
}
.profile-button .dropdown-profile .droplist-profile .body-profile .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-button .dropdown-profile .droplist-profile .body-profile .name{
    /* width:200px ; */
    height: 60px;
    color: black;
    /* background-color:teal; */
}
.profile-button .dropdown-profile .droplist-profile .body-profile .name h4{
    color: black;
}

/* carousel */
.carousel {
    height: 780px;
    /* margin-top: -50px; */
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel .list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}

.carousel .list .item img {
    width: 100%;
    height: 100%;
    filter: brightness(50%);
    object-fit: cover;
}

.carousel .list .item .content {
    position: absolute;
    top: 20%;
    width: 1200px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    /* background-color: #000; */
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}

.carousel .list .item .author {
    font-weight: bold;
    padding-bottom: 10px;
}

.carousel .list .item .title,
.carousel .list .item .topic {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.3em;
}
.carousel .list .item .content .title>h3{
    font-size: 25px;
}
.carousel .list .item .content .des p span{
    display: block;
}

.carousel .list .item .topic>h1{
    color: #f1683a;
    padding: 35px 0px;
}
.carousel .list .item .buttons {
    /* display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px; */
    display: flex;
    gap: 5px;
    margin-top: 20px;
}

.carousel .list .item .buttons .read a{
    border: none;
    color:black;
    display: block;
    padding: 5px 20px;
    font-family: "Koulen", sans-serif;
    /* background-color: white; */
    font-size: 18px;
    font-weight: 500;
}

.carousel .list .item .buttons .sub a{
    border: none;
    color:#ffffff;
    display: block;
    padding: 5px 20px;
    font-family: "Koulen", sans-serif;
    /* background-color: white; */
    font-size: 18px;
    font-weight: 500;
}


.carousel .list .item .buttons  button:nth-child(2) {
    background-color: transparent;
    border: 2px solid #fff;
}

/* thumbail */
.thumbnail {
    position: absolute;
    bottom: 50px;
    left: 39.3%;
    width: max-content;
    z-index: 60;
    display: flex;
    gap: 20px;
}

.thumbnail .item {
    width: 180px;
    height: 150px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    filter: brightness(80%);
    object-fit: cover;
    border-radius: 20px;
}

.thumbnail .item .content {
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.thumbnail .item .content .title h4{
    font-weight: 100;
    font-size: 20px;
    letter-spacing: 2px;
}

.thumbnail .item .content .description {
    font-weight: 300;
}

/* arrows */
.arrows {
    position: absolute;
    top: 80%;
    right: 55%;
    z-index: 60;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}

.arrows button:hover {
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1) {
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}

@keyframes showContent {
    to {
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.carousel .list .item:nth-child(1) .content .title {
    animation-delay: 1.2s !important;
}

.carousel .list .item:nth-child(1) .content .topic {
    animation-delay: 1.4s !important;
}

.carousel .list .item:nth-child(1) .content .des {
    animation-delay: 1.6s !important;
}

.carousel .list .item:nth-child(1) .content .buttons {
    animation-delay: 1.8s !important;
}

/* create animation when next click */
.carousel.next .list .item:nth-child(1) img {
    width: 180px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
    to {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.prev .list .item img {
    z-index: 100;
}

@keyframes showThumbnail {
    from {
        width: 0;
        opacity: 0;
    }
}

.carousel.next .thumbnail {
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext {
    from {
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #f1683a;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time {
    animation: runningTime 3s linear 1 forwards;
}

@keyframes runningTime {
    from {
        width: 100%
    }

    to {
        width: 0
    }
}


/* prev click */

.carousel.prev .list .item:nth-child(2) {
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes outFrame {
    to {
        width: 180px;
        height: 150px;
        bottom: 50px;
        left: 39.3%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1) {
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.next .arrows button,
.carousel.prev .arrows button {
    pointer-events: none;
}

.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons {
    animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

@media screen and (max-width: 678px) {
    .carousel .list .item .content {
        padding-right: 0;
    }

    .carousel .list .item .content .title {
        font-size: 30px;
    }
}

/*container  */
section .container {
    width: 100%;
    height: auto;
    margin: auto;
}
.container> h1{
    color: #071516;
}
/* why vist cambodia */
.container .row {
    width: 100%;
    height: 500px;
    margin: auto;
    /* background-color: #000; */
    background-image: url('../image/kbach\ khmer.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.container .row .blur{
    width: 100%;
    height: 100%;
    position: absolute;
    
}

.container .row .col-12 {
    width: 1200px;
    height: auto;
    /* background-color: cyan; */
    position: relative;
}

.container .row .col-12>h2 {
    color: #071516;
    font-size: 35px;
    padding: 10px;
}

.container .row .col-12>p {
    /* font-family: "Freehand", cursive; */
    font-family: "Hanuman", serif;
    color:#292831;
    font-size: 21px;
    padding: 10px;
}

/* popular   */
.container .row-1 {
    width: 100%;
    height: 700px;
    margin:auto;
    /* background-color: #fff; */
    display: flex;
    /* padding: 15px 0px; */
    flex-wrap: wrap;
    gap: 20px;
}

.row-1 .tittle {
    width: 100%;
    text-align: center;
}

.row-1 .tittle>h1 {
    font-size: 30px;
    width: 100%;
    color: #071516;
    margin: 60px auto;
}
/* discount */
.container .row-6{
    width: 1200px;
    height: auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: auto;
}

.container .row-6 .col-2 {
    width: calc(1160px/3);
    /* height: 380px; */
    background-color: #fff;
    position: relative; 
    padding: 20px;
    border-radius: 10px;
}
.row-6 .col-2 .img{
    width: 	100%;
    height: 250px;
    background-color: cyan;
    border-radius: 10px;
    overflow: hidden;
}
.row-6 .col-2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.row-6 .col-2 .dis{
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 5px;
    background-color:  #f4f5f6f9;
    color: #292831;
    position: absolute;
    top: 30px;
    left: 30px;
}
.row-6 .col-2 .save{
    text-align: center;
    position: absolute;
    top: 30px;
    right: 30px;
}
.row-6 .col-2 .save a{
    color: #000;
    display: block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #ffffff;
}
.row-6 .col-2 .body-txt{
    width: 100%;
    text-align: center;
    /* background-color: teal; */
    padding: 10px 0px;
}
.row-6 .col-2 .body-txt .tittle{
    width: 100%;
    display: flex;
    color:#071516;
    align-items: center;
    justify-content: space-between;
    /* background-color: red; */
} 
.row-6 .col-2 .body-txt .rating{
    display: flex;
    align-items: center;
}
.row-6 .col-2 .body-txt .rating span{
    font-size: 25px;
}
.row-6 .col-2 .body-txt .rating .fa-star{
    color: #EBCA0F;
    font-size: 18px;
    margin-right: 5px;
}
.row-6 .col-2 .body-txt .body{
  padding: 15px 0px;
}
.row-6 .col-2 .body-txt .body>p{
    padding: 15px 0px;
    text-align: start;
    color: #292831;
}
.row-6 .col-2 .body-txt .address{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.row-6 .col-2 .body-txt .address p{
    color: #292831;
}
.row-6 .col-2 .body-txt .address .arrow-right{
    display: block;
    padding: 5px 20px;
    font-size: 16px;
    background-color: #183540;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
}
.row-6 .col-2 .icon{
    width: 100%;
    color: #ffd700;
    /* background-color: gold; */
    margin: 10px auto;
    font-size: 20px;
}
.row-6 .col-2 .body-txt .view-more{
    background-color: transparent;
    border: 1px solid black;
    border-radius: 10px;
    margin-top: 20px;
}
.row-6 .col-2 .body-txt .view-more a{
    color: #000;
    display: block;
    font-size: 18px;
    padding: 8px 10px;
}





/* wrapper */
.wrapper {
    width: 1200px;
    display: flex;
    justify-content: center;
    gap: 25px;
    /* background-color: cyan; */
    margin: auto;
    margin-top: 100px;
    /* position: absolute;
    width: auto;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: space-around;
    gap: 10px; */
}

.card {
    width: 280px;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1em 0;
    position: relative;
    font-size: 16px;
    border-radius: 0.5em;
    background-color: #ffffff;
    border-bottom: 10px solid #F7941F;
}

.wrapper .card i {
    color: #F7941F;
    font-size: 2.5em;
    text-align: center;
}

.wrapper .card span.num {
    color: #071516;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 3em;
}

span.text {
    color:#292831;
    font-family: "Koulen", sans-serif;
    font-size: 18px;
    text-align: center;
    pad: 0.7em 0;
    font-weight: 400;
    line-height: 0;
}
/* what people say */
.container .row-2 {
    width: 100%;
    height: 350px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 10px;
    overflow: hidden;
}

.container>h1 {
    text-align: center;
    font-size: 35px;
    margin: 60px auto;
}

.row-2 .col-4 {
    width: calc(1200px/3);
    /* background-color: #ffffff; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.row-2 .col-4 .img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    /* background-color: teal; */
    overflow: hidden;
    margin: 5px 0px;
}

.row-2 .col-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row-2 .col-4 .body-txt {
    width: 100%;
    /* background-color: teal; */
    text-align: center;
    padding: 10px;
}
.row-2 .col-4 .body-txt>h3{
    color:#000000 ;
}
.row-2 .col-4 .body-txt>p{
    color:#3f3f3f ;
}
.row-2 .col-4 .body-icon {
    padding: 10px 0px;
    color: #EBCA0F; 
}

/* FAQ */
.accordion {
    width: 1000px;
    max-width: 1200px;
    margin: 2rem auto;
    /* background-color: cyan; */
}
.accordion>h1{
    text-align: center;
    font-size: 35px;
    color: #071516;
    margin: 60px auto
}

.accordion-item {
    background-color: #ffffff;
    margin: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.accordion-item-header {
    padding: 20px;
    min-height: 3.5rem;
    line-height: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.accordion-item-header>h4{
    font-size: 20px;
    color: #071516;
}

.accordion-item-header::after {
    content: "+";
    font-size: 2rem;
    position: absolute;
    right: 1rem;
}

.accordion-item-header.active::after {
    content: "-";
}

.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
    padding: 1rem;
    line-height: 1.5rem;
    border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}
.accordion-item-body-content>p{
    font-size: 18px;
    color: #292831;
    padding: 10px;
}
.accordion-item-body-content ul li p{
    color: #292831;
}
/* place need to vist */
.container .place-NTV{
    width: 100%;
    height: auto;
    /* background-color: cyan; */
}
.container .place-NTV .row-3{
    width: 1200px;
    height: auto;
    margin: auto;
    /* background-color: #fff; */
    display: flex;
    gap: 20px;
    position: relative;
}
.row-3,
.col-4,
.col-3,
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.row-3 .col-4{
    width: calc(1200px/3);
    height: 300px;
    /* background-color: cyan; */
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.row-3 .col-4 .img{
    width: 100%;
    height: 100%;
    filter: brightness(80%);
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}
.row-3 .col-4 .img:hover{
    transform: scale(1.1);
    filter: brightness(100%);
}
/* .row-3 .col-4:hover img{
    transform: scale(1.1);
} */

.row-3 .col-4 .body-txt{
    width: 140px;
    height: 100px;
    /* background-color:red; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:20px;
    position: absolute;
    /* z-index: 9; */
    bottom: 0;
}
.row-3 .col-4 .rating .fa-star{
    color: #EBCA0F;
}
.row-3 .col-4 .rating{
    width: 80px;
    height: 40px;
    display: flex;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    left: 20px;
    top: 20px;
    position: absolute;
    z-index: 2;
}
.row-3 .col-4 .save a{
    background-color: rgb(255, 255, 255);
    color: #000;
    right: 20px;
    font-size: 20px;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 20;
    top: 20px;
}
.row-3 .col-4 .rating>p{
    font-weight: bold;
    z-index: 2;
}
.row-3 .col-4 .body-txt .address h3{
    color:#F4F5F6;
    font-size: 18px;
    font-weight: 100;
}
.row-3 .col-4 .body-txt .address p{
    color:  #F4F5F6;
}
.row-3 .col-4 .view-more a{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background-color: #fff;
    border-radius: 100%;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.row-3 .col-3{
    width: calc(1200px/4);
    height: 300px;
    margin-top: 20px;
    background-color: teal;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.row-3 .col-3 .img{
    width: 100%;
    height: 100%;
    filter: brightness(60%);
    overflow: hidden;
    transition: 0.5s;
}
.row-3 .col-3 .img:hover{
    filter: brightness(80%);
    transform: scale(1.1);
}
/* .row-3 .col-3 .img:hover img{
    transform: scale(1.1);
} */
.row-3 .col-3 .body-txt{
    width: 1៣0px;
    height: 100px;
    /* background-color:red; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:20px;
    position: absolute;
    /* z-index: 9; */
    bottom: 0;
}
.row-3 .col-3 .rating .fa-star{
    color: #EBCA0F;
}
.row-3 .col-3 .save a{
    background-color: rgb(255, 255, 255);
    color: #000;
    right: 20px;
    font-size: 20px;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 20;
    top: 20px;
}
.row-3 .col-3 .rating{
    width: 80px;
    height: 40px;
    display: flex;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    left: 20px;
    top: 20px;
    position: absolute;
    z-index: 2;
}
.row-3 .col-3 .rating>p{
    font-weight: bold;
    z-index: 2;
}
.row-3 .col-3 .body-txt .address h3{
    color:#F4F5F6;
    font-size: 18px;
    font-weight: 100;
}
.row-3 .col-3 .body-txt .address p{
    color:  #F4F5F6;
}
.row-3 .col-3 .view-more a{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background-color: #fff;
    border-radius: 100%;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
/* our partner */
.container .row-4{
    width: 100%;
    height: auto;
    background-color:#ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px 0px;
}
.row-4 .col-2{
    width: calc(1200px/6);
    height: 100px;
    /* line-height: 100px; */
    text-align: center;
    /* font-size: 25px; */
    /* background-color: red; */
    overflow: hidden;
    transition: 0.5s;
}
.row-4 .col-2 img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.row-4 .col-2:hover{
    transform: scale(1.2);
}
/* plan */ 
.container .row-5{
    width: 1200px;
    height: auto;
    margin: auto;
    margin-bottom: 20px;
    /* background-color: cyan; */
    display: flex;
    gap: 20px;
}
.row-5 .col-4{
    width: calc(1200px/4);
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 5px;
    /* box-shadow: 1px 0px 10px rgb(19, 14, 14); */
}
.row-5 .col-4 .icon{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.row-5 .col-4 .icon .fa-medal,
.fa-book-open-reader,
.fa-calendar-days,
.fa-cc-visa,
.fa-truck-plane,
.fa-wallet,
.fa-children,
.fa-bed{
    font-size: 35px;
    margin-right: 10px;
}
.row-5 .col-4 .icon a{
    color:#F7941F ;
}
.row-5 .col-4 .icon h2{
    color: #071516;
}
.row-5 .col-4 .body-txt p{
    color: #292831;
    padding: 15px 0px;
}
.row-5 .col-4 .body-txt .btn-atircle{
    margin-top: 15px;
    border: none;
    background-color:transparent;
}
.row-5 .col-4 .body-txt .btn-atircle a{
    display: block;
    color: #071516;
    font-size: 18px;
}

/* footer */
.footer{
    width: 100%;
    margin-top: 100px;
    height: auto;
}
.footer .row-foot{
    width: 100%;
    height:400px;
    color: white;
    background-color: #183540;
    border-radius: 200px 0px 0px 0px;
    padding: 20px 0px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer .row-foot .col-3{
    width: calc(1200px/4);
    height: 100%;
    /* background-color: red; */
    padding: 20px;
}
.footer .row-foot .col-3>h2{
    font-size: 27px;
    margin-top: 20px;
    color:#F7941F;
    font-weight:100;
}
.footer .row-foot .col-3 .logo{
    width: 200px;
    height: 70px;
}
.footer .row-foot .col-3 .logo img{
    width:100%;
    height: 100%;
    object-fit: cover;
}
.footer .row-foot .col-3 .body-txt{
    margin-top: 10px;
}
.footer .row-foot .col-3 .body-txt p{
    padding: 5px 0px;
    font-size: 17px;
    font-family: "Koulen", sans-serif;
    color: #F4F5F6;
}
.footer .row-foot .col-3 .body-txt .link{
    display: block;
    font-size: 20px;
    letter-spacing: 1px;
    /* background-color: cadetblue; */
    margin-top: 20px;
}
.footer .row-foot .col-3 .body-txt .icon{
    width: 100%;
    height: auto;
    /* background-color: cyan; */
    display: flex;
    align-items: center;
    font-size: 25px;
    gap: 15px;
}
/* slider */
.splide{
    width: 1200px;
    margin: 0 auto;
    /* background-color: cyan; */
    position: relative;
}
.splide .view-more a{
    text-decoration: none;
    display: block;
    /* background-color: #DDD8D8; */
    border-radius: 10px;
    padding: 7px 30px;
    position: absolute;
    font-size: 18px;
    border: 1px solid;
    color: #071516;
    bottom:-57px;
    right: 170px;
}
.splide .view-more a:hover{
    background-color: #DDD8D8;
    border: none;
}   
.img_box{
    width: 380px;
    height: 400px;
    border-radius: 10px;
    margin-left: 5px;
    /* background-color: cyan; */
    overflow: hidden;
} 
.img_box img{
    width: 100%;
    height: 100%;
    filter: brightness(90%);
    object-fit: cover;
}
.slider_wrapper{
    max-width: 1200px;
    margin: 0 auto;
}
.splide__slide .body-txt>h2{
    color: #071516;
    font-size: 25px;
}
.splide__slide .body-txt>h3{
    font-weight: 100;
    padding: 8px 0px 15px 0px;
    color: #071516;
    font-size: 20px;
}
.splide__slide .body-txt>p{
    color: #292831;
}
.splide__arrow{
    width: 60px !important;
    height: 60px !important;
    background-color: rgb(208, 208, 205) !important;
    top: 105% !important;
}
.splide__arrow:hover{
    background-color: #DDD8D8 !important;
    color: #F7941F !important;
}
.splide__arrow--prev {
    left: 66rem !important;
}
.splide__slide .body-txt{
    /* background-color: cyan; */
    padding: 20px;
}



