@font-face {
    font-family: "Calibri";
    src:
        url("./fonts/calibri-light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Calibri";
    src:
        url("./fonts/calibri-light-italic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: "Calibri";
    src:
        url("./fonts/calibri.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: "Calibri";
    src:
        url("./fonts/calibri-italic.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
    font-style: italic;
}



@font-face {
    font-family: "Calibri";
    src:
        url("./fonts/calibri-bold.ttf") format("truetype");
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}



@font-face {
    font-family: "Calibri";
    src:
        url("./fonts/calibriz.ttf") format("truetype");
    font-weight: 700;
    font-display: swap;
    font-style: italic;
}


/* Inside main-style.css */

:root {
    --button-primary-color: #000;
    --primary-color: #000;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: #fff;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #d1d1d1;
    border-radius: 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #cd1616;
    border-radius: 0;
}

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

::placeholder {
    color: #292929;
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #292929;
}

.p-1 { padding: 1rem; }
.p-2 {padding: 2rem;}
.p-3 {padding: 3rem;}
.p-4 {padding: 4rem;}
.p-5{padding: 3rem;}

.m-1 { margin: 1rem;}
.m-2 { margin: 2rem;}
.m-3 { margin: 3rem;}
.m-4 { margin: 4rem; }
.m-5 { margin: 5rem; }

.ml-1 { margin-left: 10px;}
.ml-2 { margin-left: 20px;}
.ml-3 { margin-left: 30px;}
.ml-4 { margin-left: 40px;}

.mr-1 { margin-right: 10px;}
.mr-2 { margin-right: 20px;}
.mr-3 { margin-right: 30px;}
.mr-4 { margin-right: 40px;}

.mt-1 { margin-top: 10px;}
.mt-2 { margin-top: 20px;}
.mt-3 { margin-top: 30px;}
.mt-4 { margin-top: 40px;}

.mb-1 {margin-bottom: 10px; }
.mb-2{ margin-bottom: 20px; }
.mb-3{ margin-bottom: 30px; }
.mb-4{ margin-bottom: 40px; }


.radius-10{
    border-radius: 10px;
    overflow: hidden;
}

.radius-15{
    border-radius: 15px;
    overflow: hidden;
}

h1,h2,h3,h4,h5,h6{
    font-weight: 700; 
}


.ph{
    vertical-align: middle;
}

.w-100 {
    width: 100%;
}

.color-primary {
    color: var(--primary-color);
}

.is-loading {
    color: hsla(0, 0%, 100%, .05);
    opacity: 1 !important;
    pointer-events: none !important;
    position: relative;
}

.is-loading::after {
    animation: spin .5s linear infinite;
    border: 2px solid #fff;
    border-radius: 32px;
    border-right-color: #26b34b !important;
    border-top-color: #28b151 !important;
    content: "";
    display: block;
    height: 16px;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}

.is-divider {
    background-color: rgba(0, 0, 0, .8);
}
/**
RESET
*/

html {
    font-size: 62.5%;
}

body {
    font-family: "Calibri", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: normal;
}


.text p{
    margin-bottom: 15px;
}

.bg-hoasen .section-bg.bg-loaded{
    background-size: contain !important;
}


/** BREADCRUMBS **/

.site-breadcrumb {
    background-color: #F8F8F8;
    color: #777777;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.05);
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
    padding: 10px 0;
    font-size: 14px;
    text-transform: capitalize
}

.site-breadcrumb p {
    margin: 0;
    font-size: 14px
}

.site-breadcrumb a {
    color: #666;
    font-size: 14px
}
/** CONTACT FORM 7 **/


.wpcf7 .form-input-group .wpcf7-not-valid-tip{
    position: absolute;
    top: calc(100% + 10px);
    font-size: 14px;
    opacity: 1;
}
/** flickity SLIDER **/

.flickity-prev-next-button svg{
    background: #EEEEEE;

}

.slider-nav-circle .flickity-prev-next-button .arrow, 
.slider-nav-circle .flickity-prev-next-button svg{
    border: 1px solid #e7e7e7;
}

/** SLICK SLIDER **/


/* the slides */
.slick-slide {
    margin: 0 10px;
}

/* the parent */
.slick-list {
    margin: 0 -10px;
}

.slick-dots{
    list-style: none;
    display: flex;
    margin-top: 10px;
}
.dots-center .slick-dots{
    justify-content: center;
}

.slick-dots li button{
    padding: 0;
    border-radius: 99px;
    background: #D9D9D9;
    width: 8px;
    height: 8px;
    margin: 0;
    overflow: hidden;
    text-indent: -100px;
}
.slick-dots li.slick-active button{
    background: #FFD004;
}
.slick-dots li{
    margin-right: 10px;
}

.slick-dots li:last-child{ margin-right: 0; }


/* CART PAGE */
.form-group-inline{
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;

}
.form-group-inline .button{
    width: 150px;
}

.form-group-inline .input-text{
    flex: 1;
}


.post-item .box.box-default {
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0px 1px 8px -2px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    overflow: hidden;
}

.post-item .box.box-default .box-text{
    padding: 10px;
}

.post-item .box.box-default .box-text .post-title{
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 44px;

}

.post-item .box.box-default .cat-label{
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 1;
    background: #FEEA93;
    color: #000;
    border-radius: 10px;
    padding: 7px 7px 3px;
    line-height: 1.2;
}


.post-item .post-item-meta{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-item .post-item-date{
    color: #777777;
}

@keyframes pulse {
    0% {
        transform: scale(1);
      
    }
    70% {
        transform: scale(1.2);
      
    }
    100% {
        transform: scale(1);
    
    }
}


.wpcf7-spinner{
    display: none;
}

.entry-html{
    line-height: 1.5;
}

.entry-html p{
    margin-bottom: 20px;
}

.entry-html ul,
entry-html ol
{
    margin-top: 20px;
    padding-left: 20px;
}

table{
    border-collapse: collapse;
}

table.table-primary{
    background: #fffae7;
    border-radius: 8px;
    overflow: hidden;
}
table.table-primary thead{
    background-color: var(--primary-color);
   
}
table.table-primary thead th{
    border: 1px solid #bdbdbd;
    text-align: center;
    padding: 20px;
}

table.table-primary tbody td{
    border: 1px solid #bdbdbd;
    padding: 10px;
    vertical-align: top;
}

.section-title{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}



.card .card-header{
    border-left: 2px solid var(--primary-color);
    padding-left: 10px;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 700;
}

.icon-box.align-center{
    align-items: center;
}

.ux-post-featured .main-post .post-item-title{
    font-size: 2.4rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.ux-post-featured .post-item{
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}
.ux-post-featured .post-item:last-child{
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ux-post-featured  .post-item-list .post-item-inner .post-item-thumb{
    width: 40%;
}


.post-item.border-bottom{
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.post-item.border-bottom:last-child{
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.post-item .post-item-title{
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.2;
    margin-top: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-item .post-item-excerpt{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1rem;
}


.post-item .post-item-content .post-item-title{
    margin-bottom: 0;
}

.post-item .post-item-content.has-excerpt .post-item-title{
    margin-bottom: 1.5rem;
}



.post-item-list {
    margin-bottom: 2rem;
}

.post-item-list:last-child{
    margin-bottom: 0;
}


.post-item-list .post-item-inner{
    display: flex;
    flex-wrap: nowrap;
  
}

.post-item-list .post-item-content .post-item-title{
    margin-top: 0;
}


.post-item-list .post-item-inner .post-item-thumb{
    width: 30%;
}


.post-item-list .post-item-inner .post-item-content{
    flex: 1;
    padding-left: 1.5rem;
}

.post-item-list.thumb-right .post-item-inner .post-item-thumb{ 
    order: 1; 
}
.post-item-list.thumb-right .post-item-inner .post-item-content{
    order: 0;
    padding-left: 0;
    padding-right: 1rem;
}

.block-box{
    border-radius: 10px;
    overflow: hidden;
}

.block-box .block-box-header{
    padding: 10px;
}

.block-box-header{
    display: flex;
    align-items: center;
    text-transform: uppercase;
    justify-content: space-between;
}

.block-box-header .box-more-link{
    text-transform: capitalize;
    font-size: 1.6rem;
    display: flex;
    align-items: center;

}

.block-box-header .title-inner{
    display: flex;
    align-items: center;
    margin-right: auto;
}

.block-box-header .title-inner *{
    margin-bottom: 0;
    margin-top: 0 !important;
    font-size: 16px;
}

.block-box-header.has-border-bottom{
    border-bottom: 1px solid #e5e5e5;
}

.box-term-links a{
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: capitalize;
    margin-left: 1rem;
    text-wrap: nowrap;
}

.block-box-header.title-center .title-inner{
    justify-content: center;
    margin: 0 auto;
}

.block-box .block-box-body{
    padding: 1.5rem;
}

.block-box .box-link-bottom a{
    background: #f7f7f7;
    border-radius: 4px;
    display: inline-flex;
    font-weight: 500;
    padding: 10px 15px;
    align-items: center;
}
.block-box .box-link-bottom a:hover{
    color: var(--fs-experimental-link-color-hover);
}


.country-requirement-select{
    position: relative;
    height: 100%;
}


.country-requirement-carousel a{
    display: block;
    text-transform: uppercase;
    font-size: 18px;
    padding: 8px 0;
}

.country-requirement-carousel .slick-current a{
    text-decoration: underline;
}

.country-requirement-carousel a:hover{
    text-decoration: underline;
}


.country-suggestions {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.country-item {
    padding: 8px;
    cursor: pointer;
}

.country-item:hover {
    background: #f0f0f0;
}


#block-select-country{
    position: absolute;
    bottom: 88px;
    left: 0;
    
}


#block-select-country input{
    width: 220px;
}


#block-select-country .form-inline *{
    height: 50px;
}

#btn-check-requirement{
  
    display: block;
    text-wrap: nowrap;
}


#block-select-country .form-inline{
    display: flex;
    
}


.ux-number .number-title{
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    color: #FFD004;
}


.ux-number .number-explain{
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #4F4F4F;
}

.ux-number .number-desc{
    
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #4F4F4F;

}

.ux-address{
    display: flex;
    align-items: start;
}
.ux-address span{
    flex: 1;
    margin-left: 8px;
}

.ux-phone-contact{
    
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
}
.ux-phone-contact .ux-phone-contact-info{
    display: flex;
    align-items: center;
}
.ux-phone-contact .ux-phone-contact-icon{
    text-align: center;
    background: var(--fs-color-primary);
    border-radius: 99px;
    width: 35px;
    height: 35px;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #FFF;
}

.ux-phone-contact-number{
    display: block;
    text-align: center;
    margin-top: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 25px;
    color: #000000;
    letter-spacing: 1px;
}

.ux-card{
    border: 1px solid #d8d8d8;
    border-radius: 8px;
   

}
.ux-card .ux-card-header{
    font-size: 22px;
    font-weight: 700;
}
.ux-card .ux-card-body,
.ux-card .ux-card-header{
   
    padding: 20px;
    border-bottom: 1px solid #d8d8d8;
}

.ux-visa-form{
    background: #FFF;
    border: 1px solid #757575;
    border-radius: 10px;
    padding: 20px;
    color: #000;
}
.ux-visa-form p, .ux-visa-form label, .ux-visa-form *{
    color: #000;
}

.ux-visa-form .form-calculate strong{

    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    color: #000000;


}


.ux-visa-form .form-fields{
    margin-top: 10px;
}
.ux-visa-form .form-fields label{
    display: flex;
    align-items: baseline;
}

.ux-help-center{
    position: relative;
}

.ux-help-center .ux-help-center-header{
    font-size: 16px;
    line-height: 35px;
}

.ux-help-center .ux-help-center-header img{
    margin-right: 10px;
    width: 32px;
}

.ux-help-center:hover{
    cursor: pointer;
}
.ux-help-center:hover .ux-help-center-body{
    display: block;
}
.ux-help-center .ux-help-center-body{
    display: none;
    position: absolute;
    top: 35px;
    left: -100%;
    background-color: #fff;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .1490196078);
    z-index: 99;
    padding: 20px;
    border-radius: 14px;
    width: 300px;
}


.ux-help-center .ux-help-center-body .help-center-item{
    font-size: 14px;
    margin-bottom: 10px;
}


.ux-help-center .ux-help-center-body .help-center-item img{
	width: 30px;
}

.ux-help-center .ux-help-center-body .help-center-item span{
    color: var(--fs-color-primary);
	 font-size: 14px;
}

.ux-help-center .ux-help-center-body .help-center-item:last-child{
    margin-bottom: 0;
}

.ux-help-center .ux-help-center-body .help-center-item img{
    margin-right: 10px;
}

.timzone-wrap{
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.timzone-wrap .timezone-select{
    height: 30px;
    width: 239px;
    margin-right: 10px;
    padding: 5px;
    border: 0;
    background: none;
    -webkit-appearance: auto;
}


.ux-menu.ux-menu--divider-solid .ux-menu-link:not(:last-of-type) .ux-menu-link__link{
    border: 0;
}
.ux-address{
    margin-bottom: 15px;
}

/** HEADER **/
header#header{
    box-shadow:  -1px 2px 6px -1px #d1d1d1
}

header#header .button.primary{
    padding: 10px 15px;
    color: #fff;

}

.page-template-page-transparent-header-light header#header,
.page-template-page-transparent-header header#header{
    box-shadow: none;
}

header#header .header-nav li a{
    font-size: 16px;
    padding: 7px 0px;
}

header#header .header-nav .sub-menu li a{
    padding: 12px;
    text-transform: uppercase;
    color: #cd0b2e;
    font-weight: bold;
}


header#header .header-nav .has-dropdown .icon-angle-down{
    font-size: 16px;
    margin-left: .2em;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23ffe7a0' viewBox='0 0 24 25' height='24' width='24' xmlns='http://www.w3.org/2000/svg' class='' alt='expand' data-v-1d958cf3=''%3E%3Cg xmlns='http://www.w3.org/2000/svg' id='EXpand'%3E%3Cpath id='arrow' d='M11.5 17.5L6 11.5L17 11.5L11.5 17.5Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    width: 22px;
    height: 27px;
    font-family: inherit !important;
    opacity: 1;
}
header#header .header-nav .has-dropdown .icon-angle-down::before{
    content: "";
}


body #header .gt_switcher{
    width: auto;
}
body #header .gt_switcher .gt_selected a{
    border: 0;
    background-color: #ba0b33;
    color: #FFF;
    border-radius: 7px;
    width: auto !important;
    padding: 7px;
    padding-right: 29px;
}
body #header .gt_switcher .gt_selected a::after{
    background-image: url("data:image/svg+xml,%3Csvg fill='%23ffe7a0' viewBox='0 0 24 25' height='24' width='24' xmlns='http://www.w3.org/2000/svg' class='' alt='expand' data-v-1d958cf3=''%3E%3Cg xmlns='http://www.w3.org/2000/svg' id='EXpand'%3E%3Cpath id='arrow' d='M11.5 17.5L6 11.5L17 11.5L11.5 17.5Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-size: 100%;
    width: 22px;
    height: 20px;
}


body #header .gt_switcher .gt_option{
    position: absolute;
    border: 0;
    background: #FFF;
    padding: 10px;
    min-width: 200px;
    height: auto !important;
    border-radius: 7px;
}
body #header .gt_switcher .gt_option a{
    padding: 7px;
}
body #header .gt_switcher .gt_option a img{
    margin-right: 7px;
}

body #header .gt_switcher .gt_option a:hover{
    background-color:  #ba0b33 ;
    color: #FFF;
    border-radius: 7px;
}




#top-page-ads{
    padding: 7px 0;
    text-align: center;
    font-size: 14px;
    z-index: 1;
    position: relative;
}

#header.has-sticky .stuck .header-bottom{
    background: #FFF;
    box-shadow: #00000014 0 1px 12px;
}


#header .header-block .icon-box{
    display: flex;
    align-items: center;
}


#header.has-sticky .stuck .header-bottom .header-nav li a{
    color: #333;
}

#header.has-sticky .stuck .header-bottom .header-nav li.current-menu-item a{
    color: #ba0b33 ;
}


.searchform{
    border:  1px solid #d1d1d1;
    border-radius: 3px;
}

.searchform input[type="search"]{
    border: 0 !important;

}

.searchform input[type="submit"]{
    border: 0;
}

.logo-slogan{
    text-align: left;
    color: #ba0b33;
}

.logo-slogan strong{
    display: block;
    font-size: 20px;
    color: #ba0b33;
    font-family: "Calistoga", serif;
    font-weight: 400;
    font-style: normal;
   
}

.logo-slogan span{
    font-family: "Calistoga", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
     display: inline-block;
     border-top: 2px solid #ba0b33;
}

.header-language-dropdown .image-icon{
    height: 17px;
    margin: 0 5px;
    width: 24px;
}
.header-language-dropdown ul li a{
    display: flex;
    align-items: center;
}


.header-language-dropdown .image-icon img{

}

.header-bottom-nav > li > a{
    text-transform: uppercase;
}


/* 
.header-main::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 200px;
    background-image: url(../img/header-main-left.png) ;
    background-repeat: no-repeat;
    background-size: 114px;
} */

.header-block-block-1{
   
    align-content: center;
}

.header-nav-main.nav-left{
	flex-direction: row;
    flex-wrap: nowrap;
}

/* .header-main::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 500px;
    background-image: url(../img/header-main-right.png);
    background-repeat: no-repeat;
    background-size: 320px;
    background-position: bottom right;
} */


#header .nav-dropdown{
    min-width: 300px
}

.home-banner-text h2{
    font-family: "Noto Sans", sans-serif;
    font-size: 46px;
}

.home-banner-text h3{
    font-family: "Noto Sans", sans-serif;
    font-size: 32px;
}

.home-banner-text p{
    font-family: "Sedgwick Ave", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 34px;
}

#masthead .header-inner{
    z-index: 1;
    position: relative;
}

@media(max-width: 575px){
    .header-main::before{
        width: 30px;
        background-size: 30px;
    }
    .header-main::after{
        width: 150px;
        background-size: 150px;
    }
    .home-banner-text h2{
       
    }
    .home-banner-text p{
        font-size: 25px;
    }
    .timzone-wrap .timezone-select{
        width: 150px;
    }
    #selected-tz{
        font-size: 12px;
    }
    .home-banner-text h2{
        font-family: "Noto Sans", sans-serif;
        font-size: 36px;
    }
    
    .home-banner-text h3{
        font-family: "Noto Sans", sans-serif;
        font-size: 24px;
    }
}

/** HOME **/
#content-inner{
    padding: 50px 0;
}

.tour-location-slide-item .card-shade .image-cover {
    padding-top: 80%;
}

.ux-tour-location-slider {}

.tour-location-slide-item {
    width: 25%;
}

.card-shade {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.card-shade .card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #FFF;
    background: rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 10px;
}


.nav.nav-pills li a {
    background: #EEEEEE;
    padding: 0 1.75em;
    color: #000;
    font-size: 18px;
}

.nav.nav-pills li {
    margin-right: 10px;
}

.nav.nav-pills li:last-child {
    margin-right: 0;
}

.nav.nav-pills li.active a {
    background: var(--fs-color-primary);
}




.tour-item .location-label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background: #FEEA93;
    color: #000;
    border-radius: 10px;
    padding: 7px 7px 3px;
    line-height: 1.2;
}


.tour-item .tour-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    color: #FFF;
    padding: 10px;
    font-size: 14px;

    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(254, 234, 147, 0.27) 100%);
    display: flex;
    justify-content: space-between;
}


.price-wrap span {
    display: block;
}

.price {

    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #4F4F4F;
}


.sale-price {

    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-decoration: line-through;
    color: #D9D9D9;
}




.heading-subscribe {

    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #FFFFFF;
    display: flex;
    align-items: center;

}

.heading-subscribe strong {


    font-style: normal;
    font-weight: 800;
    font-size: 89px;
    line-height: 116px;
    /* White */
    color: #FFFFFF;

}


.form-subsribe {
    display: flex;
}

.form-subsribe .wpcf7-form-control-wrap {
    margin-right: 10px;
}

.form-subsribe .wpcf7-text {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
    height: 40px;
}

.form-subsribe .wpcf7-tel {
    max-width: 200px;
    height: 40px;
}

.form-subsribe .wpcf7-submit {
    border-radius: 20px;
    height: 40px;
}

.form-subsribe .wpcf7-text::placeholder {
    color: #fff;
    opacity: 1;
    /* Firefox */
}

.form-subsribe .wpcf7-text::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #fff;
}


/**  SINGLE TOUR **/
.single-tour-meta {
    display: flex;
    align-items: center;
    color: #4F4F4F;
}

.tour-rating {
    display: flex;
    align-items: center;
}

.tour-single-booked,
.tour-single-location {
    margin-left: 20px;
}

.tour-galleries {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.tour-galleries .tour-gallery-item1 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}


.tour-galleries .tour-gallery-item2 {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
}

.tour-galleries .tour-gallery-item2 .image-cover {
    padding-top: 50%;
}

.tour-galleries img {
    border-radius: 5px;
}


.tour-content h2 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 30px;
}

/** CATEGORY **/

.tags-wrap {
    display: flex;
}

.post-tags a {
    background: #f7f7f8;
    border-radius: 5px;
    padding: 4px 12px 4px 12px;
    color: #272d37;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.1px;
    font-weight: 500;
    margin-left: 10px;
}

/** POST SINGLE **/

.single-post-meta {
    display: flex;
    margin-top: 10px;
}

.single-post-meta .post-author {
    font-weight: 500;
    font-size: 14px;
    color: #aaa;
}

.single-post-meta .post-meta-tags a {

    padding: 4px 12px;

    background: #f7f7f7;
    border-radius: 5px;

    font-size: 14px;
    line-height: 20px;
    /* identical to box height, or 143% */
    letter-spacing: -0.1px;

    color: #000;
    margin-left: 10px;

}

.single-post-title {

    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    text-transform: capitalize;
    color: #252A3F;

}

.single-exceprt {

    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #777;
    margin-top: 20px;
}

.single-thumbnail img {
    border-radius: 10px;
    margin-top: 3rem;
}

.single-main {
    margin-top: 2rem;
}

.entry-content {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #555;
}

.entry-content img {
    border-radius: 3px;
}

.entry-content p {
    margin-bottom: 18px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 24px;
    text-transform: capitalize;
    color: #333;
    margin-bottom: 18px;

}

.entry-content ul,
.entry-content ol {
    padding-left: 20px;
}

.recent-posts-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.recent-posts-head-title h2 {

    font-size: 2rem;
    line-height: 130%;
    text-transform: capitalize;
    color: #1B2124;
}

.recent-posts-head-title p {
    font-size: 17px;
    line-height: 26px;
    letter-spacing: -0.1px;
    color: #5F6D7E;

}

.recent-posts-head-more {}

.recent-posts-content {
    margin-top: 56px;
}



fieldset {
    border: 1px solid var(--fs-color-primary);
    /* Stylish border */
    border-radius: 8px;
    /* Rounded corners */
    padding: 20px;
    margin-bottom: 20px;
}

legend {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    padding: 0 10px;
    border-bottom: 0;
}


/** CF7 **/
form p{
    margin-bottom: 10px;
}

.wpcf7-form{
    background: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
}

.wpcf7-form .wpcf7-textarea{
    max-height: 120px;
}

.wpcf7 .form-fields label sup{
    color: red;
}


/** BLOG **/
.blog-archive .box-list-view .box .box-image, 
.blog-archive  .box-vertical .box-image{
    border-radius: 10px;
}


/** SIDEBAR **/
.widget.block_widget{
    margin-bottom: 20px;
}

.widget .box {
    margin-bottom: 30px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    padding: 20px;
}

.widget .box ul{
    margin-top: 20px;
}

.widget .box ul li{
    list-style: none;
    padding: 8px 0;
    padding-left: 0;
    position: relative;
}

.widget .box ul li:before{
    
    width: 20px;
    height: 20px;
    display: inline-block;
    content: "\e184";
    background-size: 100%;
    font-family: "Phosphor" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    color: #2cd1a0;

    
}


#ftwp-postcontent ul,
ftwp-postcontent ol{
    padding-left: 20px;
}



.apply-bars {
    text-align: center;
    margin: 60px auto;
    max-width: 800px;
}

.apply-bars li {
    list-style: none;
    display: inline-block;
    width: 30%;
    position: relative;
}

.apply-bars li:before {
    width: calc(50% - 35px);
    position: absolute;
    left: -2px;
    top: 29px;
    height: 2px;
    background: #c4c4c4;
    content: "";
}

.apply-bars li:after {
    width: calc(50% - 35px);
    position: absolute;
    right: -2px;
    top: 29px;
    height: 2px;
    background: #c4c4c4;
    content: "";
}

.apply-bars li span {
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    display: inline-block;
    border-radius: 50%;
    border: solid 1px #9b9b9b;
}

.apply-bars li span svg {
    margin-top: 9px;
    color: #9b9b9b;
    fill: #9b9b9b;
}

.apply-bars li.active span {
    background: #b10800;
    border: solid 1px #b10800;
}

.apply-bars li.active span svg {
    fill: #fff;
}

.apply-bars li.active:before,.apply-bars li.active:after {
    background: #b10800;
}

.apply-bars li strong {
    margin-top: 10px;
    font-size: 18px;
    display: block;
    font-weight: 700;
}


.country-requirement-featured{
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
}

.country-requirement-item-grid{
    width: 20%;
    padding-left: 10px;
    padding-right: 10px;
    
}

.country-requirement-item-content{
    background: #FFF;
    border-radius: 10px;
    overflow: hidden;
}

.country-requirement-item-title{
    text-align: center;
    padding: 7px;
}

.country-requirement-item-title *:last-child{
    margin-bottom: 0;
}


.country-requirement-lst{
    margin-top: 30px;
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
}

.country-requirement-item-list{
    width: 20%;
    padding-left: 10px;
    padding-right: 10px;

   
}

.country-requirement-item-content-thumb{
    position: relative;
}

.country-requirement-item-grid-flag{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    margin-left: -25px;
    margin-top: -25px;
    border-radius: 50%;
    border: 2px solid #FFF;
}

.country-requirement-lst .country-requirement-item-content{
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.country-requirement-lst .country-requirement-item-content a{
    display: flex;
    align-items: center;
}

.country-requirement-lst .country-requirement-item-content img{
    width: 35px;
}

.country-requirement-lst .country-requirement-item-content span{
   margin-left: 10px;
   font-weight: 700;
}

form .form-fields{
    margin-top: 10px;
}

.card{
    margin-bottom: 30px;
    border: 1px solid #e7e7e7;
}


.card .card-header{
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
}

.card .card-body{
    padding: 20px;
}

.cart-summary{

}

.cart-items{

}

.cart-item{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e7e7e7;
    padding: 10px;
}
.cart-item strong{
    flex: 1;
}

.cart-item span{
    width: 80px;
    text-align: right;
}

.cart-total{
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
.cart-total .price{
    color: #f18c29;
    font-size: 24px;
    font-weight: 700;
}



.upload-preview{
    position: relative;
    object-fit: contain;
    padding-top: 270px;
    border: 1px solid #e7e7e7;
    background: #f7f7f7;
    
}

.upload-preview img{
    bottom: 0;
    font-family: "object-fit: contain;";
    height: 100%;
    left: 0;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}


.review-passport-img{
    position: relative;
    object-fit: contain;
    padding-top: 120px;
    border: 1px solid #e7e7e7;
    background: #f7f7f7;
}

.img-cover-contain{
    bottom: 0;
    font-family: "object-fit: contain;";
    height: 100%;
    left: 0;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

form .col{
    padding-bottom: 10px;
}

form sup.required{
    color: red;
}

form .error{
    font-weight: 300;
    font-size: 14px;
    color: red;
}

form .has-error{
    border: 1px solid red;
}

.upload-wrap{
    cursor: pointer;
    border: dashed 2px #e7e7e7;
    padding: 20px 15px;
  
}
.upload-note{
    font-size: 12px;
}

.appliant-review-item{
    border: dashed 2px #e7e7e7;
    padding: 15px;
  
}

.html-scroll{
    height: 300px;
    overflow-y: scroll;
}

@media (max-width: 767.98px){
    .country-requirement-item-grid{
        width: 50%;
        margin-bottom: 20px;
    }
    .country-requirement-featured{
        flex-wrap: wrap;
        justify-content: center;
    }
}

/** FOOTER **/

.ux-menu.ux-menu--divider-solid .ux-menu-link:not(:last-of-type) .ux-menu-link__link{
    border: 0;
}
.ux-address{
    margin-bottom: 15px;
}






@media(max-width: 570px){
    .country-requirement-list{
        padding-left: 15px;
        padding-right: 15px;

    }

    .country-requirement-lst{
        flex-wrap: wrap;
    }

    .country-requirement-lst .country-requirement-item-content{
        padding: 0;
    }

    .country-requirement-item-list{
        width: 33%;
        margin-bottom: 10px;
    }

    #block-select-country input{
        width: 170px;
    }
    #block-select-country .form-inline #btn-check-requirement{
        padding: 10px;
    }
}