/* hero image */
.hero__tour-bg{
    height: 90vh;
    margin-top: 0;
}
.hero__tour-bg figure{
    height: 100%;
    width: 100%;
    position: relative;
}
.hero__tour-bg figure::before{
    padding-top: unset;
}
.hero__tour-bg figure > img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* tour overview */
.tour-overview__outer .tour-overview__inner{
    display: flex;
    border-radius: 10px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.4)
}
.tour-overview__outer .tour-overview__image{
    flex: 0 0 46%;
}
.tour-overview__outer .tour-overview__image figure{
    border-radius: 10px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.tour-overview__outer .tour-overview__image figure::before{
    padding-top: 81%;
}
.tour-overview__outer .tour-overview__image figure img{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    -o-object-fit: cover;
}
.tour-overview__outer .tour-overview__info-outer{
    flex: 1;
    padding: 20px 30px 25px 50px;
}
.tour-overview__outer .tour-overview__info-outer .tour-overview__title h1{
    font-size: 22px;
    font-weight: 600;
    color: var(--theme-color-one);
    margin-bottom: 5px;
}
.tour-overview__outer .tour-overview__info-outer .tour-overview__title h1 span{
    text-transform: capitalize;
}
.tour-overview__outer .tour-overview__info-outer .tour-overview__rating .rating{
    line-height: 10px;
    padding: 0;
    margin-bottom: 5px;
}
.tour-overview__outer .tour-overview__info-outer .tour-overview__info{
    line-height: 25px;
}
.tour-overview__outer .tour-overview__info .tour-overview__info-label{
    color: var(--theme-color-two);
}
.tour-overview__outer .tour-overview__info .tour-overview__info-value{
    position: relative;
}
.tour-overview__outer .tour-overview__info .tour-overview__info-value svg{
    height: 18px;
    width: 17px;
    fill: var(--theme-color-two);
    vertical-align: text-top;
}
.tour-overview__outer .tour-overview__info .tour-overview__info-service{
    display: flex;
}
.tour-overview__outer .tour-overview__info .tour-overview__info-service .tour-overview__service{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    margin: 0 10px 5px 0;
    border-radius: 50%;
    border: 1px solid #a5a5a5;
    color: #a5a5a5;
    overflow: hidden;
}
.tour-overview__outer .tour-overview__info .tour-overview__info-service .tour-overview__service svg{
    flex: 1;
    fill: #a5a5a5;
}
.tour-overview__outer .tour-overview__info .tour-overview__info-service .tour-overview__service span{
    text-align: center;
    font-size: 10px;
    font-weight: 300;
    text-transform: capitalize;
    line-height: 10px;
}
.tour-overview__outer .tour-overview__service svg.ticket,
.tour-overview__outer .tour-overview__service svg.hotel,
.tour-overview__outer .tour-overview__service svg.visa,
.tour-overview__outer .tour-overview__service svg.bus{
    max-height: 20px;
    max-width: 26px;
}
.tour-overview__outer .tour-overview__info .tour-overview__info-service a.tour-overview__service.active{
    background-color: var(--theme-color-two);
    border: 1px solid transparent;
}
.tour-overview__outer .tour-overview__info .tour-overview__info-service a.tour-overview__service.active svg{
    fill: #fff;
}
.tour-overview__outer .tour-overview__info .tour-overview__info-service a.tour-overview__service.active span{
    color: #fff;
}
.tour-overview__outer .tour-overview__info .tour-overview__info-service a.tour-overview__service:hover{
    background-color: #fff;
    border: 1px solid var(--theme-color-two);
}
.tour-overview__outer .tour-overview__info .tour-overview__info-service a.tour-overview__service:hover svg{
    fill: var(--theme-color-two);
}
.tour-overview__outer .tour-overview__info .tour-overview__info-service a.tour-overview__service:hover span{
    color: var(--theme-color-two);
}
.tour-overview__outer .tour-overview__price .tour-overview__price-list{
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
    color: #2c2d3f;
}
.tour-overview__outer .tour-overview__price .tour-overview__price-promotion{
    font-size: 22px;
    font-weight: 700;
    color: var(--theme-color-two);
    margin-bottom: 5px;
}
.tour-overview__outer .tour-overview__book{
    display: flex;
}
.tour-overview__outer .tour-overview__book .tour-overview__book-btn button{
    height: 46px;
    width: 200px;
    background-color: var(--theme-color-one);
    border-color: var(--theme-color-one);
    text-transform: uppercase;
}
.tour-overview__outer .tour-overview__book .tour-overview__book-solicitation{
    flex: 1;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    margin-left: 20px;
    color: #898989;
}
/* content nav*/
.content-nav{
    margin-bottom: 50px;
}
.tour-detail__inner .content-nav > ul{
    display: flex;
    list-style: none;
    padding-inline-start: 0;
    justify-content: space-between;
    padding: 0 15px;
    border-bottom: 1px solid #ddd;
}
.tour-detail__inner .content-nav > ul > li > a{
    text-shadow: 0 0 0 #2c2d3f;
    color: rgba(255, 169, 19, 0);
    position: relative;
    display: block;

    transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
}
.tour-detail__inner .content-nav > ul > li > a.active{
    color: rgba(255, 169, 19, 1);
}
@media (hover: hover){
    .tour-detail__inner .content-nav > ul > li > a:hover{
        color: rgba(255, 169, 19, 1);
    }
}
.tour-detail__inner .content-nav > ul > li > a::after{
    content: '';
    display: block;
    height: 2px;
    width: 0%;
    bottom: -1px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--theme-color-two);
    position: absolute;

    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
}
.tour-detail__inner .content-nav > ul > li > a.active::after{
    width: 100%;
}
@media (hover: hover){
    .tour-detail__inner .content-nav > ul > li > a:hover::after{
        width: 100%;
    }
}
/* tour detail content */
.tour-detail__content .tour-detail__content-title h3{
    color: var(--theme-color-one);
    font-size: 24px;
    font-weight: 300;
    margin-top: 50px;
}
.tour-detail__content > [class^='tour-detail__']:not(:first-child) h3{
    margin-top: 40px;
}
.tour-detail__content [class^='tour-detail__'][class$='content']{
    color: #2c2d3f;
    font-size: 14px;
    font-weight: 300;
}
.tour-detail__content [class^='tour-detail__'][class$='content'] *:not(:last-child){
    padding-bottom: 10px;
}
.tour-detail__content [class^='tour-detail__'][class$='content'] strong{
    font-weight: 600;
}
.tour-detail__content [class^='tour-detail__'][class$='content'] h4{
    font-weight: 600;
    font-size: 16px;
}
.tour-detail__content [class^='tour-detail__'][class$='content'] .tour-detail__price{
    color: var(--theme-color-two);
    font-weight: 600;
}
.tour-detail__content #scheduler h4::before{
    content: '';
    display: block;
    height: 12px;
    width: 12px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid var(--theme-color-one);
    position: absolute;
    left: 7px;
    transform: translateX(-50%) translateX(-0.5px) translateY(2px);
}
.tour-detail__content #scheduler h5{
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
    padding-bottom: 0;
}
.tour-detail__content #scheduler h5::before{
    content: '';
    display: block;
    height: 7px;
    width: 7px;
    background-color: var(--theme-color-one);
    border-radius: 50%;
    border: 1px solid var(--theme-color-one);
    position: absolute;
    left: 7px;
    transform: translateX(-50%) translateX(-0.5px) translateY(4px);
}
.tour-detail__content #scheduler .tour-detail__scheduler-content{
    -moz-padding-start: 25px;
    -webkit-padding-start: 25px; /* padding inline webkit browser */
    padding-inline-start: 25px;
    position: relative;
    overflow-x: hidden;
}
.tour-detail__content #scheduler .tour-detail__scheduler-content :first-child{
    padding-top: 0px;
}
.tour-detail__content #scheduler .tour-detail__scheduler-content::before{
    content: '';
    display: block;
    height: 100%;
    width: 1px;
    background-color: var(--theme-color-one);
    position: absolute;
    left: 6px;
}
.tour-detail__content #additionalInfo-policy [class^='tour-detail__'][class$='content']{
    font-size: 16px;
}
.tour-detail__content #additionalInfo-policy button{
    width: 100%;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 45px;
    background-color: var(--theme-color-one);
    border-color: var(--theme-color-one);
}
.tour-detail__content #additionalInfo-policy button svg{
    height: 11px;
    width: 16px;
    fill: #fff;
    vertical-align: baseline;
    margin-left: 10px;
    margin-bottom: 3px;
}
.tour-detail__content .section__title h3{
    background-color: #f6f6f6;
    font-size: 20px;
    font-weight: 300;
    text-transform: capitalize;
    color: var(--theme-color-one);
    padding: 14px 20px;
    border-radius: 5px;
    margin-bottom: 0;
}
.tour-detail__review .section__title{
    margin-bottom: 20px;
}
/* tour related list */
.tour-related-list{
    margin-top: 30px;
}
.tour-related-list .section__title h2{
    text-align: left;
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-color-one);
    text-transform: capitalize;
    margin-bottom: 30px;
}
.tour-related-list .section__title h2 span::before,
.tour-related-list .section__title h2 span::after{
    content: unset;
}
.tour-related-list .tour-related-list__inner .row-item{
    margin: 0 -7px;
}
.tour-related-list .tour-related-list__inner .col-item{
    padding: 0 8px;
}
.tour-related-list .tour-item{
    margin-top: unset;
}
.tour-related-list .tour-item figure{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.4);
}
.tour-related-list .tour-item figure::before{
    padding-top: 125%;
}
.tour-related-list .tour-item figure img{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    -o-object-fit: cover;

    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
}
.tour-related-list .tour-item:hover figure img{
    filter: blur(3px);
}
.tour-related-list .tour-item figure > .tour-item__info{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8));
}
.tour-related-list .tour-item__info > a:first-child{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.tour-related-list .tour-item__info > :not(:first-child){
    z-index: 1;
}
.tour-related-list .tour-item__info{
    color: #fff;
    padding: 20px 20px 80px 20px;
}
.tour-related-list .tour-item__info .tour__price .price__list{
    font-size: 14px;
}
.tour-related-list .tour-item__info .btn-theme{
    font-size: 14px;
    margin-bottom: 18px;
}

.tour-related-list .tour-item__info .tour__title a{
    color: #fff;
}
.tour-related-list .tour-item__info .tour__title h3{
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}
.tour-related-list .tour-item__info .tour__title h3 span{
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.tour-related-list .tour-item__info .tour__title h3 span::after{
    content: '';
    height: 2px;
    width: 70px;
    display: block;
    position: relative;
    bottom: -11px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #fff;
}
.tour-related-list .tour-item__info .tour__price .price__list{
    text-decoration: line-through;
    text-align: center;
    font-size: 14px;
}
.tour-related-list .tour-item__info .tour__price .price__promotion{
    text-align: center;
    font-size: 18px;
    color: var(--theme-price-color);
    font-weight: 700;
}
.tour-related-list .tour-item__info .btn-theme{
    margin-bottom: 30px;
    position: absolute;
    bottom: 0;
}
.tour-detail__booking-inner{
    padding: 40px 160px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.4);
}
.tour-detail__booking-inner input[type="date"]::-webkit-inner-spin-button{
    display: none;
}
.tour-detail__booking-inner input[type="date"]::-webkit-calendar-picker-indicator{
    opacity: 0;
    position: relative;
    z-index: 1;
    pointer-events: all;
    height: 26px;
    right: -6px;
    width: 24px;
    padding: 0;
}
.tour-detail__booking-inner input[type="date"] + svg{
    position: absolute;
    bottom: 0;
    height: 26px;
    width: 24px;
    right: 0;
    transform: translate(-50%, -25%);
    fill: var(--theme-color-two);
}
.tour-detail__booking-inner form ::-webkit-input-placeholder {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
}
.tour-detail__booking-inner form ::-moz-placeholder {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
}
.tour-detail__booking-inner form :-ms-input-placeholder {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
}
.tour-detail__booking-inner form :-moz-placeholder {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
}
.tour-detail__booking-inner form fieldset legend {
    font-size: 16px;
    font-weight: 600;
}
.tour-detail__booking-inner form fieldset input[type="radio"]{
    -webkit-appearance: none;
    block-size: 1em;
    width: 2em;
    height: 1em;
    position: relative;
    vertical-align: middle;
    margin-right: 50px;
}
.tour-detail__booking-inner form fieldset input[type="radio"]::before{
    content: '';
    display: block;
    height: 17px;
    width: 17px;
    border: 1px solid #c9c9c9;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.tour-detail__booking-inner form fieldset input[type="radio"]::after{
    content: '';
    display: block;
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background-color: var(--theme-color-two);
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.tour-detail__booking-inner form fieldset input[type="radio"]:checked::before{
    border-color: var(--theme-color-two);
}
.tour-detail__booking-inner form fieldset input[type="radio"]:checked::after{
    opacity: 1;
}
.tour-detail__booking-inner form fieldset textarea {
    resize: none;
}
.tour-detail__booking-inner form button[type="submit"]{
    height: 68px;
    width: 215px;
    font-size: 20.7px;
    font-weight: 400;
    text-transform: uppercase;
    background-color: var(--theme-color-one);
    border-color: var(--theme-color-one);
}
/* payment info */
.tour-detail__booking-inner .payment__info h3{
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
}
.tour-detail__booking-inner .payment__info h3::after{
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--theme-color-two);
    position: relative;
    bottom: -9px;
    margin: auto;
}
.tour-detail__booking-inner .payment__info .payment__type{
    display: flex;
}
.tour-detail__booking-inner .payment__info .payment__type figure:first-child{
    border: 1px solid #f3f3f3;
}
.tour-detail__booking-inner .payment__info .payment__type figure{
    max-height: 32px;
    height: auto;
    width: auto;
    border: 1px solid #ccc;
    margin-right: 7px;
}
.tour-detail__booking-inner .payment__info .payment__type figure::before{
    content: unset;
}
.tour-detail__booking-inner .payment__info .payment-info__office h4,
.tour-detail__booking-inner .payment__info .payment-info__transfer h4{
    font-size: 16px;
    font-weight: 400;
}
.tour-detail__booking-inner .payment__info .payment-info__office p{
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0.5rem;
}
.tour-detail__booking-inner .payment__info .payment-info__office p .payment-info___desc{
    font-style: italic;
}
.tour-detail__booking-inner .payment__info .payment-info__office p .payment-info__label{
    color: var(--theme-color-two);
}
.tour-detail__booking-inner .payment__info .payment-info__transfer a{
    display: inline-block;
    margin-right: 6px;
}
.tour-detail__booking-inner .payment__info .payment-info__transfer a figure{
    max-height: 40px;
    height: auto;
    width: auto;
    border: 1px solid #ddd;
}
.tour-detail__booking-inner .payment__info .payment-info__transfer a figure::before{
    content: unset;
}

.content-nav.fixed{
    position: fixed;
    top: 75px;
    background: white;
    padding: 20px 0px 5px 0px;
    display: flex;
    width: 1110px;
    z-index: 2;
}
.content-nav.fixed > ul{
    width: 100%;
}