@font-face {
    font-family: "playfair-display";
    src: url('./fonts/ttf/playfair-display.ttf') format("truetype");     
}
@font-face {
    font-family: 'icomoon';
    src:  url('./fonts/eot/icomoon.eot?q600zz');
    src:  url('./fonts/eot/icomoon.eot?q600zz#iefix') format('embedded-opentype'),
      url('./fonts/ttf/icomoon.ttf?q600zz') format('truetype'),
      url('./fonts/woff/icomoon.woff?q600zz') format('woff'),
      url('./fonts/svg/icomoon.svg?q600zz#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    box-shadow: none;
    outline: 0;
    text-decoration: none;
    border: none;
}
p, h1, h2, h3, h4, h5, h6{
    margin-bottom: 15px;
}
body {
    font-family: "playfair-display";
}
button{
    font-family: inherit;
    cursor: pointer;
}

.stars{
    position: relative;
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    justify-content: center;
    align-items: center;
}
.stars span{
    display: inline-flex;
    align-items: center;
    position: relative;
}
.stars span::before{
    position: absolute;
    content: '\e9d7 \e9d7 \e9d7 \e9d7 \e9d7';
    width: 100%;
    top: -5px;
    left: 0;
}
.stars span::after{
    position: absolute;
    content: '';
    top: -5px;
    left: 0;
    color: #E2A747;
    border-color: #E2A747;
}
.stars span[data-star="0.5"]::after{
    content: '\e9d8';
}
.stars span[data-star="1"]::after{
    content: '\e9d9';
}
.stars span[data-star="1.5"]::after{
    content: '\e9d9 \e9d8';
}
.stars span[data-star="2"]::after{
    content: '\e9d9 \e9d9';
}
.stars span[data-star="2.5"]::after{
    content: '\e9d9 \e9d9 \e9d8';
}
.stars span[data-star="3"]::after{
    content: '\e9d9 \e9d9 \e9d9';
}
.stars span[data-star="3.5"]::after{
    content: '\e9d9 \e9d9 \e9d9 \e9d8';
}
.stars span[data-star="4"]::after{
    content: '\e9d9 \e9d9 \e9d9 \e9d9';
}
.stars span[data-star="4.5"]::after{
    content: '\e9d9 \e9d9 \e9d9 \e9d9 \e9d8';
}
.stars span[data-star="5"]::after{
    content: '\e9d9 \e9d9 \e9d9 \e9d9 \e9d9';
}
header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px 0;
    right: 0;
}
header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 100%;
}
header .logo img{
    height: 164px;
    object-fit: contain;
}
header nav ul{
    list-style: none;
}
header nav ul li{
    display: inline-flex;
}
header nav ul li a{
    padding: 15px 0;
    margin: 0 15px;
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
header nav ul li a::after{
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    background-color: #FFFFFF;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}
header nav ul li a:hover:after{
    width: 100%;
}
header .cta button{
    background-color: #E2A747;
    color: #FFFFFF;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 22px;
    position: relative;
}
header .cta button::after{
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    background-color: #FFFFFF;
    bottom: 7px;
    left: 25px;
    transition: width 0.3s;
}
header .cta button:hover::after{
    width: 70%;
}
main .breadcrumb{
    background-image: url('./media/bg-breadcrumb.jpg');
    min-height: 300px;
    width: 100%;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: end;
}
main .breadcrumb .title{
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 60px;
}
main .tour{
    display: flex;
    margin-top: 50px;
}
main .tour .slider-mobile{
    display: none;
}
main .tour .content{
    width: 70%;
    padding: 10px;
}
main .tour .content .title{
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
main .tour .content .description{
    line-height: 25px;
}
main .tour .content .details{
    background-color: #EDEDED;
    padding: 15px;
    border-radius: 3px;
    box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
}
main .tour .content .details .title{
    color: #000000;
    font-size: 24px;
    border-bottom: 1px solid #E2A747;
    padding-bottom: 10px;
}
main .tour .content .details .detail{
    display: flex;
    align-items: center;
    color: #000000;
    font-size: 18px;
    gap: 15px;
    padding-left: 15px;
    padding-bottom: 5px;
    position: relative;
}
main .tour .content .details .detail::before{
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    background-color: #E2A747;
    top: 10px;
    left: 0;
    border-radius: 1px;
}
main .tour .content .details .detail .title{
    color: #E2A747;
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    padding: 0;
    border-bottom: none;
}
main .tour .slider-desktop{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 100%;
    padding: 10px;
}
main .comments{
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 0 15px;
}
main .comments .title{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
main .comments .title::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #E2A747;
    bottom: 0;
    left: 0;
}
main .comments .owl-theme .owl-dots .owl-dot.active span, 
main .comments .owl-theme .owl-dots .owl-dot:hover span{
    background: #E2A747;
}
main .comments .comment{
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
main .comments .comment .info{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
main .comments .comment .info .customer{
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}
main .comments .comment .info .customer img{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: contain;
    margin-right: 10px;
}
main .comments .comment .info .customer .name{
    font-size: 16px;
    font-weight: bold;
}
main .comments .comment .info .rate{
    font-size: 20px;
    width: 100px;
}
main .comments .comment .review{
    margin: 10px 15px 0 15px;
}
main .comments .comment .review .date{
    font-size: 15px;
    margin-bottom: 15px;
}
@media screen and (min-width: 1000px){
    .container{
        width: 100%;
        padding: 0 90px;
    }
}
@media (min-width: 768px) and (max-width: 999.98px){
    .container{
        width: 100%;
        padding: 0 40px;
    }
}
@media screen and (max-width: 991px){
    header nav, header .cta{
        display: none;
    }
    main .breadcrumb .title{
        margin-bottom: 20px;
    }
    main .tour{
        flex-direction: column;
    }
    main .tour .slider-desktop{
        display: none;
    }
    main .tour .content{
        width: 100%;
    }
    main .tour .slider-mobile{
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 10px;
    }
}
@media (max-width: 767.98px){
    .container{
        width: 100%;
        padding: 0 20px;
    }
}