/*------------------------------------------------------------------
Common section
-------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-family: "DM Sans", sans-serif;
    color: #2D2330;
    font-weight: 700;
}

html {
    scroll-behavior: smooth;
}

/* width and height */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ffeae8;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ff827f;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ff3533;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

p {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: #736D75;
    font-weight: 500;
}

/*===================================================================
LISTING-IMAGE-CARD
====================================================================*/
.listing-images {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.listing-images img {
    width: 100%;
    transition: all .6s;
}

.listing-images img:hover {
    transform: scale(1.1);
}

.tour-listing-card-overlay {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 0;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: rgba(45, 35, 48, 0.85);
    transition: all 0.5s ease;
}

.listing-images:hover .tour-listing-card-overlay {
    height: 100%;
}

.plus-icon {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    align-items: center;
    text-align: center;
    background-color: #FF5956;
    transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
    opacity: 0;
}

.listing-images a {
    color: white;
    text-decoration: none !important;
}

.plus-icon:hover {
    background-color: white;
    color: #FF5956;

}

/*==================================================================
LISTING-details
====================================================================*/

.listing-details-full {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    background-color: #FAF5EE;
}

.info {
    display: flex;
    flex-direction: row;
    align-items: center;

}

.city-name h1 {
    font-size: 40px;
    line-height: 1.4;
    font-weight: 700;
}

.city-name .price {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.city-name span:nth-child(2) {
    font-size: 18px;
    color: #736D75;
    margin-left: 4px;
}

.all-listing-info {
    display: flex;
    align-items: center;
}

.all-icon-box {
    display: flex;
    justify-content: space-between;
}

.all-listing-info span {
    margin-right: 10px;
    font-size: 30px;
    color: #FF5956;
}

.all-listing-info h4:nth-child(1) {
    font-size: 14px;
    color: #736D75;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
}

.all-listing-info h4:nth-child(2) {
    font-size: 16px;
    color: #2D2330;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}

/*==================================================================
                    overview-section
====================================================================*/
.overview-full {
    display: flex;
    align-items: center;
}

.overview-details h2 {
    font-size: 30px;
}

.overview-details p {
    font-size: 16px;
    color: #736D75;
    line-height: 1.875;
    font-weight: 500;
}

.includ-exclude h2 {
    font-size: 30px;
}

.includ-list ul {
    list-style-type: none;
    padding-left: 15px;

}

.includ-list li {
    color: #736D75;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 2;
    display: flex;
    align-items: center;
}

.includ-list span,
.exclud-list span {
    margin-right: 5px;
    width: 15px;
    height: 15px;
    font-size: 20px;
    color: white;
    background-color: #FF5956;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.exclud-list ul {
    list-style-type: none;
    padding-left: 15px;
}

.exclud-list li {
    color: #736D75;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 2;
    display: flex;
    align-items: center;
}

.note-section {
    background-color: #FAF5EE;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.note-section li {
    margin: 0;
    font-weight: 500;
    list-style-type: none;

}

.add-on-desc {
    padding-left: 0;
}

.add-on-desc li {
color: #736D75;
}

.note-section i {
    font-size: 20px;
    color: #FF5956;
}

.call-now-b {
    margin-top: 25px;
    width: max-content;
}

.call-now-b a {
    padding: 20px 30px;
    background-color: #FF5956;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    border-radius: 8px;
    transition: all .3s;
}

.call-now-b a:hover {
    color: #2D2330;
}

.overview-right-book-now-form h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.overview-right-book-now-form {
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 22px 30px 30px;
}

.overview-right-book-now-form input {
    outline: none;
    background-color: transparent;
    width: 100%;
    height: 56px;
    padding: 0 30px;
    border-radius: 8px;
    border: 1px solid #EBE6DE;
    font-weight: 500;
    color: #736D75;
    margin-bottom: 20px;
}

.overview-right-book-now-form input::placeholder {
    color: #736D75;
}

.form-group select {
    outline: none;
    background-color: transparent;
    width: 100%;
    height: 56px;
    padding: 0 30px;
    border-radius: 8px;
    border: 1px solid #EBE6DE;
    font-weight: 500;
    color: #736D75;
    margin-bottom: 20px;
}

.form-group select:focus {
    box-shadow: none !important;
    outline: none;
    border: 1px solid #EBE6DE !important;
}

.form-group option {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 30px;
    color: #736D75;
    background-color: #FAF5EE;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.book-button {
    background-color: #FF5956 !important;
    color: white !important;
}

/*------------------------------------------------------------------
Favorite Tour Place-section
-------------------------------------------------------------------*/

.fev-place-title {
    font-size: 30px ;
    line-height: 1.4;
    margin-bottom: 30px;
}

.fev-title p {
    font-size: 0.875em;
    color: #FF5956;
    line-height: 0.9;
    letter-spacing: 1.4px;
}

.fev-title h2 {
    font-size: 2.5em;
}

.item {
    width: 100%;
}

.full-card {
    position: relative;
    overflow: hidden;
    background-color: #676069;
    border-radius: 20px;
}

.card-image {
    overflow: hidden;
}

.card-image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s;
}

/*.full-card:hover a img {
    transform: scale(1.1);
}*/

.card-inner-feature-boxes {
    position: absolute;
    top: 20px;
    left: 20px;
}

.card-inner-feature-boxes span:nth-child(1) a {
    background-color: #FF5956;
    display: block;
    min-width: 66px;
    padding: 3px 7px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
    border-radius: 5px;
    margin-top: 5px;
}

.card-inner-feature-boxes span:nth-child(2) a {
    min-width: 66px;
    margin-top: 5px;
    display: block;
    padding: 3px 7px;
    background-color: #ffffff;
    font-size: 12px;
    color: #FF5956;
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
    border-radius: 5px;
}

.shadow-box {
    padding: 133px 30px 25px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    border-radius: 0 0 20px 20px;
    background: linear-gradient(0deg, #2D2330 0%, rgba(0, 0, 0, 0) 98.58%);
    transition-property: all;
    transition-duration: .5s;
    transform-origin: bottom;
    transform-style: preserve-3d;
}

.full-card:hover .shadow-box {
    transform: scaleY(0);
}

.place-name {
    width: 68%;
}

.place-name a {
    color: white;
    font-size: 1.5em;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    line-height: 30px;
}

.shadow-inner-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.shadow-inner-top i {
    color: #FF5956;
    background-color: white;
    padding: 6px;
    margin-left: 10px;
    border-radius: 50%;
    font-size: 12px;
}

.shadow-inner-hr {
    margin-top: 15px;
    margin-bottom: 6px;
    height: 1px;
    background-color: RGBA(255, 255, 255, 0.1);
}

.shadow-inner-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shadow-inner-bottom i {
    color: #FF5956;
    padding: 6px;
    border-radius: 50%;
    font-size: 13px;
}

.shadow-inner-bottom span {
    color: white;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
}

.shadow-bottom-price {
    color: white;
    margin-left: auto;
    font-size: 1.5em;
    font-weight: 700;
}

/*=======================================================
 best place card section hover
 =======================================================*/

.hover-back-shadow {
    width: 100%;
    background-color: RGBA(45, 35, 48, 0.7);
    border-radius: inherit;
    transition-property: all;
    transition-duration: .5s;
    height: 0;
    position: absolute;
}

.full-card:hover .hover-back-shadow {
    height: 100%;
}

.best-place-hover-box {
    background-color: white;
    border-radius: 20px;
    padding: 23px 30px 25px;
    position: absolute;
    width: calc(100% - 30px);
    left: 0;
    right: 0;
    margin: auto;
    bottom: 15px;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 2;
}

.full-card:hover .best-place-hover-box {
    transform: scaleY(1);
}

.best-place-heading h3 {
    font-weight: 700;
    font-size: 1.5em;
    margin-bottom: 1px;
}

.best-place-heading a {
    text-decoration: none;
}

.best-place-heading h3 a {
    color: black;
    transition-property: all;
    transition-duration: .5s;
    transition: all 500ms ease;
}

.best-place-heading hr {
    background-color: #FF5956;
    margin-top: 0;
    width: 0;
    margin-left: 0;
    transition-property: all;
    transition-duration: .5s;
}

.best-place-heading:hover a {
    color: #FF5956;
}

.best-place-heading:hover hr {
    width: 100%;
}

.best-place-hover-box p {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
}

.hover-box-middle {
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hover-box-location-review i {
    color: #FF5956;
    margin-left: 10px;
    border-radius: 50%;
    font-size: 14px;
}

.hover-box-location-review p {
    color: black;
    margin: 0 0 0 5px;
    font-weight: 700;
    font-size: 14px;
}

.hover-box-location-review div {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.camera-video-icon-hoverbox i {
    color: #FF5956;
    margin-left: 10px;
    border-radius: 50%;
    font-size: 8px;
    text-align: center;
    padding: 8px;
    border: 1px solid #ebe6de;
    transition-property: all;
    transition-duration: .5s;
}

.camera-video-icon-hoverbox i:hover {
    color: #ffffff;
    background-color: #FF5956;
    border: 1px solid #FF5956;
}

.hover-box-hr {
    height: 2px;
    background-color: RGBA(45, 35, 48, 0.1);
    margin: 7px 0 13px 0;
}

.hover-box-bottom div {
    display: flex;
    align-items: center;
}

.hover-box-bottom {
    display: flex;
    justify-content: space-between;
}

.hover-box-bottom-left span {
    font-size: 14px;
    font-weight: 700;
    margin-left: 5px;
    color: black;
}

.hover-box-bottom-left i {
    color: #FF5956;
    margin-left: 10px;
    border-radius: 50%;
    font-size: 14px;
}

.hover-box-bottom-price {
    font-weight: 700;
    font-size: 1.5em;
    color: black;
}

/*=====================================================================
Tour-Amenities
=====================================================================*/
.tour-amenities h2 {
    font-size: 30px;
    line-height: 1.4;

}

.tour-amenities h4 {
    margin: 0;
    font-size: 18px;
    color: #736D75;
    font-weight: 500;
}

.tour-amenities .row div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.tour-amenities span {
    margin-right: 10px;
    color: #FF5956;
    font-size: 24px;
}

/*=====================================================================
Tour-PLaces
=====================================================================*/
.tour-places h2 {
    font-size: 30px;
    line-height: 1.4;
}

.tour-places-img {
    overflow: hidden;
    width: 100%;
    background-color: black;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.tour-places-img img {
    width: 100%;
}

.tour-places h3 {
    font-size: 24px;
    line-height: 1.4;
}

/*=====================================================================
                          g-map
 =====================================================================*/
.place-location iframe {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.g-map {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.g-map h2 {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 30px;
}
/*=====================================================================
                          Review-section
 =====================================================================*/

.review-title h2 {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.review-dp {
    width: 100%;

}

.review-dp img {
    width: 100%;
    border-radius: 50%;
}

.reviewer-title {
    /*display: flex;*/
    /*justify-content: space-between;*/
    margin-bottom: 15px;
}

.reviewer-title div:nth-child(1) {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer-title div:nth-child(2) {
    display: flex;
    align-items: center;
}

.reviewer-title h3, .reviewer-title p, .reviewer-title h2, .reviewer-title h5 {
    margin: 0;
    padding-right: 10px;
}

.reviewer-title h3 {
    font-size: 24px;
    line-height: 1.083;
}

.reviewer-title p {
    font-size: 14px;
    color: #FF5956;
}

.reviewer-title h5 {
    font-size: 16px;
    color: #736D75;
    top: 1px;
    line-height: 1;
}

.reviewer-title span {
    color: #FF5956;
}

.review-description p {
    font-size: 16px;
    color: #736D75;
    line-height: 1.875;
    font-weight: 500;
    margin-bottom: 15px;
}

.review-description input {
    background-color: #FAF5EE;
    padding: 10px 30px;
    border: none;
    outline: none;
    border-radius: 10px;
}