@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*, body, div {
    /* font-family: "din-2014", sans-serif; */
    font-family: "Poppins", sans-serif;
}




@media (min-width: 1399px) {
    .container {
        /* max-width: 1299px; */
        width: 1299px;
    }
}
@media (min-width: 1600px) {
    .container {
        /* max-width: 1320px; */
        width: 1320px;
    }
}



img {
  max-width: 100%;
  height: auto;
  transition: all .25s;
}



.common-padding {
    padding: 70px 0;
}

p {
    /* font-family: "din-2014", sans-serif; */
    font-family: "Poppins", sans-serif;
    line-height: 1.4;
    font-weight: 400;
}

a {
    /* font-family: "din-2014", sans-serif; */
    font-family: "Poppins", sans-serif;
    transition: all .25s;
}

h1, h2, h3, h4, h5, h6 {
    /* font-family: "din-2014", sans-serif; */
    font-family: "Poppins", sans-serif;
    /* line-height: 1.5; */
}
.section_heading {
    margin-bottom: 25px;
}
.heading-type-1 {
    font-size: 40px;
    font-weight: 600;
}

.heading-type-2 {
    font-size: 26px;
    font-weight: 600;
}

.sub-heading {
    font-size: 24px;
    font-weight: 500;
}

.bg-1 {
    background-color: #f5f5f5;
}
.flex-row-reverse {
    flex-direction: row-reverse!important;
    display: flex;
    flex-wrap: wrap;
}


.btn.btn-secondary {
    background: #313040;
    color: #fff;
    border-color: #313040 !important;
}
.btn.btn-secondary:hover {
    background-color: #ed843e;
    border-color: #ed843e !important;
}
.btn-type-2 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.btn-type-2 img {
    width: 8px !important;
    filter: brightness(0);
}

.btn-type-2:hover {
    color: #ed843e;
}
.btn-type-2:hover img {
    transform: translateX(5px);
    filter: initial;
}

.btn-type-3 {
    font-size: 16px;
    color: #000;
    border: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
}
.btn-type-3:hover {
    color: #ed843e;
}


.row [class*="col-"] {
    padding: 0 12px;
}







/* ==================== Header ==================== */
figure{ margin-bottom:0px;}
/* p a, li a {color: #ed843e;} */

body.menu-active {
    overflow: hidden;
}



@-webkit-keyframes navbarFixed {
    0% {
        opacity          : 0;
        -webkit-transform: translateY(-100%);
        transform        : translateY(-100%);
    }

    100% {
        opacity          : 1;
        -webkit-transform: translateY(0);
        transform        : translateY(0);
    }
}

@keyframes navbarFixed {
    0% {
        opacity          : 0;
        -webkit-transform: translateY(-100%);
        transform        : translateY(-100%);
    }

    100% {
        opacity          : 1;
        -webkit-transform: translateY(0);
        transform        : translateY(0);
    }
}








.header {
    padding: 12px 0;
}
.header-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-nav > ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.header-nav > ul > li {
    list-style: none;
    margin-right: 25px;
}
.header-nav > ul > li:last-child {
    margin-right: 0;
}
.header-nav > ul > li a {
    color: #000;
    padding: 10px 2px;
}
.header-nav > ul > li a:hover {
    color: #ed843e;
}

.header-logo {
    margin-right: 25px;
}
.navbar-fostrap {
    display: none;
}

header.sticky {
    position: sticky;
    top: 0;
    background: #fff;
    width: 100%;
    animation: navbarFixed .5s alternate linear;
    box-shadow: 0 0 20px 2px rgba(0 0 0 / 0.05);
    z-index: 111;
}


/* sub-menu */
li.menu-item-has-children {
    position: relative;
}
.sub-menu {
    position: absolute;
    min-width: 200px;
    padding-left: 0; 
    box-shadow: 0 0 5px #e0e0e0; 
    opacity: 0; 
    visibility: hidden; 
    transition: .4s; 
    transform: scaleY(0); 
    transform-origin: 0 0;
    z-index: 11;
    top: calc(100% + 8px);
}
.sub-menu li a {
    background: #fff; 
    padding: 10px 20px !important; 
    display: block; 
    width: 100%; 
    border-bottom: 1px solid #ccc;
}
.sub-menu > li:last-child > a{
    border-bottom: 0;
}
.sub-menu li {
    display: block; 
    width: 100%;
}
li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;  
    transform: scaleY(1);
}
span.dropdown-caret:before {
    margin-left: 8px; 
    vertical-align: 3px; 
    content: ""; 
    border-top: 5px solid; 
    border-right: 5px solid transparent; 
    border-bottom: 0;    
    border-left: 5px solid transparent;
    display: inline-block;
}


/* sub-sub-menu */
.sub-menu .sub-menu {
    left: 100%; 
    top: 0;
}
.sub-menu li.menu-item-has-children > a + span.dropdown-caret {
    margin-left: auto; 
    display: block; 
    position: absolute; 
    top: 10px;
    right: 15px;
}




@media(max-width:1399px){
	.header-nav ul li {
        margin-right: 30px;
    }
}

@media(max-width:1199px){

    span.dropdown-caret {
        width: 20px;
        height: 20px;
        display: inline-block;
    }
    .header-nav > ul > li a {
        display: inline-block;
    }
.navbar-fostrap span {
    width: 25px; 
    height: 4px; 
    background: #000;
    display: block;
    border-radius: 20px;
    margin: 4px 0; 
    transition: .3s; 
    transition-delay: .4s
}

.navbar-fostrap {
    display: block; 
    position: relative;
    z-index: 11;
}
.navbar-fostrap.open {
    z-index: 11;
}

.navbar-fostrap.open span:nth-child(2) {
    opacity: 0;
}
.navbar-fostrap.open span:nth-child(1) {
    transform: rotate(45deg); 
    margin-top: 12px;
}
.navbar-fostrap.open span:nth-child(3) {
    transform: rotate(-45deg); 
    margin-top: -16px;
}

.header-rgt {
    margin-left: auto; 
    margin-right: 20px;
}

.header-nav {
    position: fixed; 
    top: 0; 
    right: -100%; 
    height: 100vh;
    width: 100%; 
    overflow: auto; 
    /*background: #ccc;*/ 
    transition: .5s;
    z-index: 11;
}
.header-nav > ul {
    display: block; 
    text-align: center; 
    padding: 60px 0;
}
.header-nav > ul > li { 
    /* margin: 20px 0; */
    margin: 0 0;
}
.header-nav.visible {
    right: 0
}


/* animation */
.header-nav:before, .header-nav:after {
    content: ""; 
    position: fixed; 
    top: 0px; 
    right: 0px; 
    width: 0; 
    height: 0; 
    background-color: rgba(20, 21, 26,0.6);
    border-bottom-left-radius: 200%; 
    z-index: -1; 
    transition: border-radius linear 0.8s, width cubic-bezier(0.77, 0, 0.175, 1) 0.6s, height cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
}
.header-nav:after {
    background-color: #5d95b8;
    background-color: #f5f5f5;
    box-shadow: 6px 7px 28px 0 rgba(16, 16, 16, 0.3);
}

.header-nav.visible:before, .header-nav.visible:after {
    width: 100%; 
    height: 100vh; 
    border-radius: 0px;
}
.header-nav.visible:after {
    -webkit-transition-delay: .2s; 
    transition-delay: .2s;
} 

.header-nav > ul > li{ 
    position: relative; 
    display: block; 
    -webkit-transition-delay: 0.8s; 
    transition-delay: 0.8s; 
    opacity: 0; 
    overflow: hidden; 
    -webkit-transform: translate(30px, 0%); 
    transform: translate(30px, 0%); 
    transition: .2s
}
.header-nav.visible > ul > li{
    opacity: 1; 
    -webkit-transform: translateX(0%); 
    transform: translateX(0%);
}

.header-nav.visible > ul > li:nth-child(1) {
    -webkit-transition-delay: 0.6s; 
    transition-delay: 0.6s;
}
.header-nav.visible > ul > li:nth-child(2) {
    -webkit-transition-delay: 0.7s; 
    transition-delay: 0.7s;
}
.header-nav.visible > ul > li:nth-child(3) {
    -webkit-transition-delay: 0.8s; 
    transition-delay: 0.8s;
}
.header-nav.visible > ul > li:nth-child(4) {
    -webkit-transition-delay: 0.9s; 
    transition-delay: 0.9s;
}
.header-nav.visible > ul > li:nth-child(5) {
    -webkit-transition-delay:   1s; 
    transition-delay:   1s;
}
.header-nav.visible > ul > li:nth-child(6) {
    -webkit-transition-delay: 1.1s; 
    transition-delay: 1.1s;
}
.header-nav.visible > ul > li:nth-child(7) {
    -webkit-transition-delay: 1.2s; 
    transition-delay: 1.2s;
}
.header-nav.visible > ul > li:nth-child(8) {
    -webkit-transition-delay: 1.3s; 
    transition-delay: 1.3s;
}
.header-nav.visible > ul > li:nth-child(9) {
    -webkit-transition-delay: 1.4s; transition-delay: 1.4s;
}

/* sub-menu */
.sub-menu {
    position: static; 
    display: none; 
    transition: unset !important; 
    transform: unset; 
    opacity: 1; 
    visibility: visible;
}

}
@media(max-width: 575px) {
    .header-rgt .btn.btn-primary {
        padding: 5px 10px;
    }
}

@media(max-width: 350px) {
    .icon img {
        width: 15px;
        min-width: 15px;
    }
    .contact-item {
        display: flex;
        align-items: center;
    }
}
/* ==================== Header ==================== */














header ul.navbar-nav li.dropdown .dropdown-toggle span.dropdown-caret {
    display: none;
}
.header-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.header-logo {
    max-width: 140px;
}
.nav>li>a {
    padding: 10px 15px;
}
.navbar-inverse .navbar-nav>li>a {
    color: #000;
}
.navbar-collapse {
  padding-right: 0;
  width: 100%;
  padding-left: 80px;
}
.navbar-inverse {
    background: transparent;
}
header ul.navbar-nav>li:last-child a {
    color: #fff;
}

header.main-header {
    padding: 7px 0 !important;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 111;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.top-header-items-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.top-header {
    background: #313040;
    padding: 3px 0;
}
.top-header-items .row {
    display: flex;
    align-items: center;
}


.item-img {
    position: relative;
}
.item-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background: linear-gradient(180deg, rgba(25, 31, 35, 0) 0%, rgba(25, 31, 35, 0.85) 85.37%, #191f23 100%); */
    background: linear-gradient(rgba(0 0 0 / 25%)0%, rgba(0 0 0 / 65%)50%, rgba(0 0 0 / 80%)100%);
}
ul.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}
ul.rating-stars li img {
    width: 25px !important;
}
.certifications-ratings {
    margin-top: 30px;
}
.certifications-ratings>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.live-search input {
    height: auto;
    padding: 15px 15px 15px 50px;
    border-radius: 2px;
    font-size: 20px;
    border: 0;
    background-image: url(../images/live-search-icon.png);
    background-position: center left 15px;
    background-repeat: no-repeat;
    background-size: 20px;
}
.banner_content_description {
    margin: 5px 0 15px;
}
.banner_content_description p {
    font-size: 16px;
}
.banner_content_description p:last-child {
    margin-bottom: 0;
}



.st-2-itm {
    position: relative;
    overflow: hidden;
}
.st-2-itm-cnt-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.st-2-itm-cnt {
    position: absolute;
    padding: 10px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0 0 0 / 50%);
    transform: scale(2);
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}

.st-2-itm:hover .st-2-itm-cnt {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
.st-2-items {
    margin-top: 30px;
}

.owl-style-1 .owl-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.owl-style-1 .owl-nav button {
  color: transparent !important;
  width: 30px;
  height: 16px;
  position: relative;
}
.owl-style-1 .owl-nav .owl-prev {
  background: url(../images/left-slide-arrow-black.png) no-repeat !important;
  left: -20px;
}
.owl-style-1 .owl-nav .owl-next {
  background: url(../images/right-slide-arrow-black.png) no-repeat !important;
  right: -20px;
}
.owl-style-1 .owl-nav .owl-prev, .owl-style-1 .owl-nav .owl-next {
  background-position: center !important;
  background-size: 100% !important;
}
@media(min-width: 992px) {
  .owl-style-1 {
    padding: 0 50px;
  }
}





.st-3-itm {
    text-align: center;
}
.st-3-itm-icon img {
    width: 70px;
    margin: auto;
}
.st-3-itm-cnt-title {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0 10px;
}
.st-3-itm-cnt-description p:last-child {
    margin-bottom: 0;
}
.st-3-items .row {
    gap: 25px 0;
}




.st-4-itm-cnt-tile {
    display: flex;
    gap: 0 10px;
    border-bottom: 1px dashed #000;
    padding-bottom: 20px;
}

.st-4-itm-cnt-tile-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    padding: 8px;
}
.st-4-itm-cnt-tile-cnt-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 15px;
}

.st-4-itm-cnt-tiles .row {
    /* display: flex; */
    /* flex-wrap: wrap; */
    gap: 20px 0;
}

.st-4-itm-top-cnt-description {
    margin-bottom: 20px;
}

.st-4-itm-top-cnt-description p {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}
.st-4-itm-top-cnt-description p:last-child, .st-4-itm-cnt-tile-cnt-description p:last-child {
    margin-bottom: 0;
}
.st-4-itm-cnt-tile-cnt-description p {
    color: #606060;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400 !important;
}
.st-4-itm-top-cnt {
    margin-bottom: 25px;
}
.st-4-itm-cnt .sub-heading {
    margin-bottom: 20px;
}
.st-4-itm-cnt-tiles {
    margin-top: 15px;
}
.st-5-slide {
    padding: 10px;
}
.st-5-itm {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}
.st-4-itm-img {
    position: relative;
}
.st-4-itm-img-cnt {
    width: calc(100% - 40px);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(255 255 255 / 85%);
    padding: 20px;
}
.st-4-itm-img-cnt-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}
.st-4-itm-img-cnt-description {
    margin: 12px 0 15px;
}
.st-4-itm-img-cnt-description p:last-child {
    margin-bottom: 0;
}

.st-5-itm-cnt {
    background: #fff;
    padding: 10px 15px;
}









.st-6-itm {
    position: relative;
    display: block;
    overflow: hidden;
}
.st-6-itm-cnt {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0 0 0 / 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
}
.st-6-itm-cnt-title {
    font-size: 20px;
    color: #fff;
}
.st-6-itm:hover .st-6-itm-cnt {
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    opacity: 1;
    visibility: visible;
}

.st-6-items .row {
    /* display: flex; */
    /* flex-wrap: wrap; */
    gap: 25px 0;
}
.st-6-cta {
    margin-top: 20px;
}
.st-6-itm-img img {
    width: 100%;
}













.st-7-itm-cnt-rating {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0;
}
.st-7-itm-cnt-rating img {
    width: 15px;
}
.st-7-itm-cnt-rating li span {
    font-weight: 500;
    font-size: 14px;
}

.tour-details {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.tour-details li {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
    white-space: nowrap;
}
.tour-details li img {
    width: 16px;
}
.st-7-itm-cnt-ctas .btn {
    padding: 6px 15px;
    font-size: 14px;
}
.st-7-itm-cnt-ctas {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price-details {
    font-size: 14px;
    margin: 8px 0;
}
.price-details span {
    color: #ed843e;
    font-size: 16px;
    font-weight: 600;
}
.st-7-itm-cnt-title {
    font-size: 18px;
    font-weight: 600;
    margin: 12px 0;
    min-height: 44px;
}
.st-7-itm-cnt-title a {
    display: block;
}
.st-7-itm-img img {
    width: 100%;
}
.st-7-itm-cnt {
    background: #fff;
    padding: 10px;
}
.st-7-itm {
    box-shadow: 0 0 10px rgba(0 0 0 / 0.25);
    border-radius: 6px;
    overflow: hidden;
}
.st-7-items .row {
    /* display: flex; */
    /* flex-wrap: wrap; */
    gap: 25px 0;
}
.st-7-items .pagination-wrapper button {
    padding: 5px;
    width: 40px;
    height: 40px;
    color: transparent !important;
    outline: 0 !important;
    /* display: flex; */
}
.st-7-items .pagination-wrapper button#prevPage {
    background: #ed843e url(../images/left.png) !important;
}

.st-7-items .pagination-wrapper button#nextPage {
    background: #ed843e url(../images/right.png) !important;
}
.st-7-items .pagination-wrapper button#prevPage, .st-7-items .pagination-wrapper button#nextPage {
    background-repeat: no-repeat !important;
    background-position: center !important;
}


/* Sidebar */
.st-7-sidebar-filter {
    position: sticky;
    top: 100px;
    
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.st-7-sidebar-filter-itm-title {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    outline: 0;
    padding: 20px;
}
.st-7-sidebar-filter-itm-title:not(.closed) img {
    transform: rotate(180deg);
}

.st-7-sidebar-filter-itm-in {
    padding: 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.st-7-sidebar-filter-itm-in-form {
    width: 100%;
}
.st-7-sidebar-filter-itm-in-form form .form-group label {
    margin-bottom: 5px;
    font-size: 14px;
}
.st-7-sidebar-filter-itm-in-form form .form-group {
    margin-bottom: 0;
    position: relative;
}
.st-7-sidebar-filter-itm-in-form form .form-group .form-select,
.st-7-sidebar-filter-itm-in-form form .form-group .form-control {
    padding: 10px 25px 10px 10px;
    box-shadow: none !important;
    font-size: 18px;
    background-size: 20px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.st-7-sidebar-filter-itm-in-form form .form-group .form-control {
    padding: 10px 10px 10px 25px;
}
.st-7-sidebar-filter-itm-in-form-static-text {
    font-size: 18px;
    position: absolute;
    bottom: 15px;
    left: 10px;
}
.form-select:focus {
    border-color: #ffb584;
}
.st-7-sidebar-filter-itm {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0 0 0 / 0.25);
}
.st-7-sidebar-filter-itm:last-child {
    margin-bottom: 0;
}
.st-7-sidebar-filter-itm-in-form-mediator {
    font-size: 18px;
    font-weight: 600;
    padding-top: 22px;
}
.st-7-sidebar-filter-itm-in-form form .form-group .form-check .form-check-label {
    margin: 0;
    padding: 8px 0 2px;
    font-size: 16px;
}
.st-7-sidebar-filter-itm-in-form form .form-group .form-check {
    margin-bottom: 20px;
    padding-left: 35px;
}
.st-7-sidebar-filter-itm-in-form form .form-group .form-check:last-child {
    margin-bottom: 0;
}
.st-7-sidebar-filter-itm-in-form form .form-group .form-check-input {
    width: 25px;
    height: 25px;
    margin-left: -35px;
    border: 2px solid #ed843e;
}
.form-check-secondary-title {
    font-size: 12px;
    color: #757575;
    display: block;
}
/* Sidebar */

















.st-8 .section_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.st-8-itm {
    position: relative;
}
.st-8-itm-cnt {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0 0 0 / 0.25);
}










.st-9-items .row {
    /* display: flex; */
    /* flex-wrap: wrap; */
    gap: 25px 0;
}
.st-9-itm-rating-stars {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-self: end;
}
.st-9-itm-rating-stars li img {
    width: 15px;
}

.st-9-itm-description p:last-child {
    margin-bottom: 0;
}
.st-9-itm-description {
    margin: 10px 0;
}
.st-9-itm-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}
.st-9-itm-icon {
    margin-bottom: 10px;
}
.st-9-itm {
    position: relative;
    padding: 25px;
    background: #fff;
    border: 1px solid #ddd;
}
.st-9-itm::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 80px;
    top: -10px;
    left: -15px;
    background: url(../images/st-9-itm-bg-shape.png) no-repeat;
}
.st-9-rating-certification table td ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.st-9-rating-certification table td ul li img {
    width: 20px;
}
.st-9-rating-certification table td {
    vertical-align: middle;
    padding: 5px;
}
.st-9-rating-certification table td p {
    margin: 0;
    line-height: 1.1;
}
.st-9-rating-certification-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
}
.st-9-rating-certification table {
    margin: auto;
    border-collapse: separate;
    border-spacing: 5px 0px;
}
.st-9-rating-certification {
    max-width: 320px;
    background: #fff;
    margin: 20px auto;
    padding: 10px;
    border: 1px solid #ddd;
}

.st-9-itm-cnt-form form .form-group .form-control {
    background: #f5f5f5;
}
.form-control, .form-select {
    border-radius: 0;

    font-size: 14px;
    box-shadow: none;
    padding: 16px 15px;
    height: auto;
}
.form-select {
    padding-right: 25px;
}
.form-control::placeholder {
    color: #757575;
}
.form-group label {
    margin-bottom: 15px;
    font-size: 15px;
    color: #383838;
    font-weight: 500;
}
.st-9-itm-cnt-form form .form-group  .form-check {
    /* display: inline; */
}
.st-9-itm-cnt-form form .form-group  .form-check .form-check-label {
    padding-top: 3px;
}
.form-group .form-check label.form-check-label {
    padding-top: 3px;
    margin-bottom: 10px;
}
.st-9-itm-cnt-form form .form-group  .form-check .form-check-input {
    box-shadow: none;
    outline: 0;
}
.form-check-input:checked {
    background-color: #ed843e;
    border-color: #ed843e;
}
.form-check-input:focus {
    border-color: #ffc097;
    outline-offset: 0 !important;
    outline: 0 !important;
    box-shadow: none;
}
.st-9-itm-cnt-form form .form-group  .form-check .form-check-label {
    margin: 0;
}
.st-9-itm-cnt-form .row {
    gap: 25px 0;
    /* display: flex; */
    /* flex-wrap: wrap; */
}
.st-9-itm-cnt-form .form-group {
    margin-bottom: 0;
}










.st-10-items .row {
    /* display: flex; */
    /* flex-wrap: wrap; */
    gap: 14px 0;
}
.st-10-items .row [class*="col-"] {
    padding: 0 8px;
}
.st-10-itm {
    position: relative;
}
.st-10-itm-img video {
    display: block;
}
.st-10-itm-cnt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    align-items: end;
    background: rgba(0 0 0 / 0.25);
    border-radius: 10px;
}
.st-10-itm-cnt-instagram-icon img {
    width: 20px;
}
.st-10-cta {
    margin-top: 20px;
}







.st-11 {
    padding: 15px 0;
    background: #f5f5f5;
}
.st-11-items .breadcrumb a {
    color: #000;
}
.st-11-items .breadcrumb a:hover {
    color: #ed843e;
}
.st-11-items .breadcrumb {
    margin: 0;
}




.st-12-itm-cnt-description-more-cnt {
    display: none;
}
.st-12-itm-cnt button.btn-type-2 {
    border: 0;
    background: transparent;
    padding: 0;
    margin-top: 20px;
}
.st-12-itm-cnt-description p:last-child {
    /* margin-bottom: 0; */
}
.st-12-itm-cnt-description p {
    line-height: 1.6;
    text-align: justify;
}
.st-12-sidebar-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.st-12-sidebar-highlights::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    border-right: 1px dashed #a7a7a7;
    left: 20px;
}
.st-12-sidebar-highlights li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 0 10px;
    position: relative;
}
.st-12-sidebar-highlights li:last-child {
    margin-bottom: 0;
}
.st-12-sidebar-cnt {
    padding: 40px;
    background: #f5f5f5;
}
.st-12-sidebar-cnt-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.st-12-sidebar-contact-detail {
    text-align: center;
}
.st-12-sidebar-contact-detail .btn-type-2 {
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    margin: 10px 0 20px;
}
.st-12-sidebar-contact-detail-title {
    font-size: 14px;
    color: #7c7c7c;
}
.st-12-sidebar-contact-detail {
    text-align: center;
    border-top: 1px solid #a7a7a7;
    padding-top: 40px;
    margin-top: 40px;
}
.st-12-sidebar-contact-detail .btn.btn-primary {
    width: 100%;
}












.st-13 {
    position: relative;
    padding-top: 50px;
}
.st-13:not(.st-13_2) {
    margin-top: 50px;
}
.st-13::after {
    position: absolute;
    content: "";
    width: calc(100% - 100px);
    height: 50%;
    background: #ed843e;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}
.st-13::before {
    position: absolute;
    content: "";
    width: calc(100% - 100px);
    height: 60%;
    background: #ffc097;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}
.st-13.st-13_2::after {
    background: #313040;
}
.st-13.st-13_2::before {
    background: #6a697e;
}
.st-13 .section_heading {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: auto auto 20px;
}
.st-13-slide {
    padding: 15px;
}
.st-13-itm {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0 0 0 / 0.25);
    padding: 20px;
}
.st-13-itm-description p:last-child {
    margin-bottom: 0;
}
.st-13-itm-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}


.owl-style-1.owl-top-right {
    padding: 0;
}
.owl-style-1.owl-top-right .owl-nav {
    position: absolute;
    transform: initial !important;
    top: -50px;
    justify-content: end;
    gap: 20px;
}
.owl-style-1.owl-top-right .owl-nav button {
    left: initial;
    right: initial;
    filter: invert(1);
}

.owl-style-1 .owl-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
}
.owl-style-1 .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
}
.owl-style-1 .owl-dots .owl-dot.active {
    width: 15px;
    height: 15px;
    background: #ed843e;
}





.accordian-type-1 .accordion-button {
    font-size: 18px;
    color: #000;
    background: transparent;
    box-shadow: none;
    padding: 20px 25px;
}
.accordian-type-1 .accordion-button::after {
    width: 25px;
    height: 25px;
    background-image: url(../images/plus-icon.png);
    /* background-size: 100%; */
    background-position: center;
    border: 1px solid #ed843e;
    border-radius: 5px;
}
.accordian-type-1 .accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus-icon.png);
}
.accordian-type-1 .accordion-item {
    border: 1px solid #ddd !important;
    border-radius: 15px;
    margin-bottom: 15px;
}
.accordian-type-1 .accordion-item:last-child {
    margin-bottom: 0;
}
.accordian-type-1 .accordion-body {
    padding: 0 25px 20px;
}
.accordion-description p {
    line-height: 1.5;
    text-align: justify;
}
.accordion-description p:last-child {
    margin-bottom: 0;
}













.st-15-itm {
    display: flex;
    gap: 20px;
    background-color: #ffc097;
    padding: 25px;
    border-radius: 10px;
}
.st-15-itm-img {
    max-width: 250px;
}
.st-15-itm-img img {
    border-radius: 8px;
}
.st-15-items .row [class*="col-"]:nth-child(even) .st-15-itm {
    background-color: #6a697e;
}
.st-15-items .row [class*="col-"]:nth-child(odd) .st-15-itm {

}
.st-15-itm-cnt-title {
    font-size: 24px;
    font-weight: 600;
}
.st-15-items .row [class*="col-"]:nth-child(even) .st-15-itm .st-15-itm-cnt-title {
    color: #fff;
}
.st-15-itm-cnt-description {
    margin: 15px 0 20px;
}
.st-15-items .row [class*="col-"]:nth-child(even) .st-15-itm .st-15-itm-cnt-description p {
    color: #fff;
}
.st-15-itm-cnt-description p:last-child {
    margin-bottom: 0;
}
.st-15-items .row {
    gap: 20px 0;
}


/* Tour detail page */
.tour-detls {
    display: flex;
    gap: 10px 20px;
    margin: 10px 0;
}
.tour-detl {
    display: flex;
    align-items: center;
    gap: 10px 8px;
    background: #f5f5f5;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
.tour-detl-cnt p {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}
.tour-detl-cnt span {
    display: block;
    font-size: 14px;
}
.tour-detail-cnt-tabs {
    background-color: #fff;
    position: sticky;
    top: 80px;
    z-index: 11;
    padding-top: 20px;
}
.tour-detail-cnt-tab {
    list-style: none;
    background: #313040;
    display: flex;
    padding: 15px 20px;
    border-radius: 5px;
    gap: 0 20px;
    overflow-x: auto;
}

.tour-detail-cnt-tab li button {
    border: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
    padding: 2px;
    color: #fff;
    font-size: 18px;
    white-space: nowrap;
}
.tour-detail-cnt-tab li button.active {
    color: #ed843e;
}




.tour-detail-cnt-tab-data-in {
    padding: 70px 0 0;
}
.tour-detail-cnt-tab-data .tour-detail-cnt-tab-data-in:last-child {
    padding-bottom: 0;
}
.tour-detail-cnt-tab-data-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.tour-detail-cnt-tab-1-highlighted p {
    font-size: 16px;
    font-weight: 600;
}
.tour-detail-cnt-tab-1-highlighted p:last-child {
    margin-bottom: 0;
}
.tour-detail-cnt-tab-1-highlighted {
    background-color: #ffc097;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #ed843e;
    margin: 15px 0;
}
.tour-detail-cnt-tab-1 {
    background-color: #6a697e;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
}
.tour-detail-cnt-tab-1 p {
    line-height: 1.6;
}
.tour-detail-cnt-tab-1 div {
    line-height: 1.6;
}
.tour-detail-cnt-tab-data-read-more-description {
    display: none;
}
.tour-detail-cnt-tab-hotel {
    position: relative;
    overflow: hidden;
}
.tour-detail-cnt-tab-hotel-cnt-in p {
    color: #fff;
}
.tour-detail-cnt-tab-hotel-cnt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0 0 0 / 50%);
    transform: scale(2);
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}
.tour-detail-cnt-tab-hotel:hover .tour-detail-cnt-tab-hotel-cnt {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
.tour-detail-cnt-tab-hotel-cnt-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}
.tour-detail-cnt-tab-price-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.tour-detail-cnt-tab-price-in ul li {
    line-height: 1.3;
    margin-bottom: 6px;
}
.tour-detail-cnt-tab-price-in ul li:last-child {
    margin-bottom: 0;
}

.tour-detail-cnt-tab-bucket-list-items .row,
.tour-detail-cnt-tab-hotels .row {
    gap: 20px 0;
}

.list-style-price-include,
.list-style-price-exclude {
    list-style: none;
    padding: 0;
}
.list-style-price-include li,
.list-style-price-exclude li {
    position: relative;
    padding-left: 28px;
}
.list-style-price-include li::before,
.list-style-price-exclude li::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    top: 2px;
    left: 0;
    background-size: cover !important;
}
.list-style-price-include li::before {
    background-image: url(../images/list-style-price-include.png);
}
.list-style-price-exclude li::before {
    background-image: url(../images/list-style-price-exclude.png);
}
.tour-detail-cnt-tab-price .row {
    gap: 20px 0;
}
.tour-detail-cnt-tab-4 {
    background-color: #6a697e;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
}

.tour-detail-cnt-tab-bucket-list-itm {
    position: relative;
    overflow: hidden;
}
.tour-detail-cnt-tab-bucket-list-itm-cnt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(255, 255, 255, 0) 40%);
    transform: scale(2);
    opacity: 0;
    visibility: hidden;
    transition: .2s;
    padding: 10px;
}
.tour-detail-cnt-tab-bucket-list-itm:hover .tour-detail-cnt-tab-bucket-list-itm-cnt {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
.tour-detail-cnt-tab-bucket-list-itm-cnt-title {
    font-size: 16px;
    color: #fff;
}

.tour-detail-cnt-tab-6 {
    background: #f5f5f5;
    padding: 20px;
}
.accordian-type-2 .accordion-button {
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 18px;
    color: #000;
    padding: 10px 0;
}

.accordian-type-2 .accordion-button::after {
    width: 16px !important;
    height: 16px !important;
    background-size: 100%;
}
.accordian-type-2 .accordion-item {
    border: 0;
    background: transparent;
}
.accordian-type-2 .accordion-body {
    padding: 0 0 10px;
}
.tab-content>.tab-pane {
    height: 0;
    visibility: hidden;
    opacity: 0;
    display: block !important;
    overflow: hidden;
}
.tab-content>.active {
    height: auto;
    visibility: visible;
    opacity: 1;
}
.quote_form_wrapper_area .form-group .form-control {
    border: 1px solid #ddd;
}
.quote_form_wrapper_area .form-group .control-label {
    margin-bottom: 6px;
}
.quote_form_wrapper_area .form-control {
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
}
.quote_form_wrapper_area .form-group {
    margin-bottom: 15px;
}
.tour-detail-sidebar {
    position: sticky;
    top: 100px;
}
.tour-detail-sidebar-price span {
    font-size: 14px;
}
.tour-detail-sidebar-price h3 {
    font-size: 26px;
    font-weight: 600;
    color: #ed843e;
    margin: 10px 0;
}
.tour-detail-sidebar-price h3 span {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}
.tour-detail-sidebar-price {
    padding: 20px;
    box-shadow: 0 0 10px rgba(0 0 0 / 0.25);
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}
.tour-detail-sidebar-price .btn.btn-primary {
    border-radius: 5px;
}
.tour-detail-sidebar-connect {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0 0 0 / 0.25);
    text-align: center;
}
.tour-detail-sidebar-connect p {
    margin: 0;
}
.tour-detail-sidebar-connect .btn.btn-primary {
    margin-bottom: 10px;
    border-radius: 5px;
}
.tour-detail-sidebar-connect p a {
    font-weight: 600;
    color: #ed843e;
}
.tour-detail-sidebar-connect p a:hover {
    text-decoration: underline;
}
.tour-detail-sidebar .price-area {
    font-size: 20px;
}
/* Tour detail page */




.modal-open .modal.show {
    opacity: 1;
}
.when-to-go-block__details p {
    line-height: 1.6;
}
.when-to-go-block__details .summary-body ul li {
    line-height: 1.6;
}


.footer-items .useful-links ul li {

}

.footer-items * {
    line-height: 1.5;
}






.st-16-itm-cnt ul li {
    padding: 2px 0;
}
.review-stars {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.review-stars li {
    background: #00b67a;
    padding: 5px;
    justify-content: center;
}
.review-stars li img {
    width: 20px;
}

.st-16-items .row {
    gap: 20px 0;
}
.st-16-itm-contact-detail-title {
    font-size: 24px;
    text-align: center;
}
.st-16-itm-contact-details {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #ed843e;
    border-top-width: 5px;
}
.st-16-itm-contact-details-in .btn-type-2 {
    justify-content: center;
    margin: 10px 0;
}
.st-16-itm-contact-description p {
    margin-bottom: 5px;
}
.st-16-itm-contact-description p:last-child {
    margin-bottom: 0;
}
.st-16-itm-contact-details-in {
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #ddd;
    padding: 20px 0;
    margin: 20px 0;
}
.review-count {
    display: inline-block;
    margin: 10px 0;
}
.trustpilot-logo img {
    width: 100px;
}

.st-17-items .row {
    gap: 24px 0;
}
.st-17-itm-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ed843e;
}

.st-17-itm {
    background: #313040;
    color: #fff;
    padding: 30px 20px;
}
.st-17-itm-description p:last-child {
    margin-bottom: 0;
}
.st-18-itm-description {
    margin: 20px 0;
    text-align: center;
}
.st-18-itm-description p {
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.7;
}
.st-18-itm-description p:last-child {
    margin-bottom: 0;
}


.st-19-items .row {
    gap: 30px 0;
}
.st-19-itm {
    max-width: 350px;
}
.st-19-itm-img {
    text-align: center;
    margin-bottom: 10px;
    background: #f5f5f5;
}
.st-19-itm-cnt-title {
    font-size: 20px;
    margin: 0;
    text-align: center;
    font-weight: 600;
}
.st-17 .section_heading, .st-19 .section_heading {
    max-width: 800px;
    margin: auto auto 25px;
}













































































































































@media(max-width: 1399px) {

}

@media(max-width: 1199px) {
.nav>li>a {
    padding: 10px 10px;
    font-size: 15px;
}
.navbar-collapse {
    padding-left: 50px;
}
.st-13-slider {
    max-width: calc(100% - 100px);
    margin: auto;
}
.owl-style-1.owl-top-right .owl-nav {
    top: -30px;
}


}

@media(max-width: 991px) {
/*  */
.owl-style-1 .owl-nav {
    position: relative;
    transform: none;
    justify-content: center;
    gap: 0 20px;
    margin-top: 20px;
}
.owl-style-1 .owl-nav .owl-prev {
    left: initial;
}
.owl-style-1 .owl-nav .owl-next {
    right: initial;
}
/*  */


.st-4-itm-img {
    margin-bottom: 20px;
}
.banner_mAin .item-img img {
    height: 80vh;
}
.live-search input {
    padding: 10px 10px 10px 35px;
    font-size: 16px;
    background-position: center left 12px;
    background-size: 15px;
}
div#homepage-banner h1 {
    font-weight: bold;
    font-size: 50px;
    margin: 0 0 4px 0;
    text-transform: capitalize;
    color: #fff;
    line-height: normal;
}
ul.rating-stars li img {
    width: 20px !important;
}
ul.rating-stars {
    gap: 6px;
}
.certifications-ratings>ul {
    gap: 30px;
}
.certifications-ratings {
    margin-top: 25px;
}
.heading-type-1 {
    font-size: 36px;
}
.heading-type-2 {
    font-size: 22px;
}
.sub-heading {
    font-size: 20px;
}
.btn {
    padding: 8px 20px;
}
.st-9-rating-certification-title {
    font-size: 18px;
}
.st-9-rating-certification table td ul li img {
    width: 18px;
}

.st-12-items .row {
    flex-direction: column-reverse;
}
.st-12-sidebar-cnt {
    margin-bottom: 20px;
}
.owl-style-1.owl-top-right .owl-nav {
    position: initial;
    transform: initial !important;
    top: initial;
    justify-content: center;
    gap: 20px;
}
.owl-style-1.owl-top-right .owl-nav button {
    filter: none;
}
.st-13-slider .owl-style-1.owl-top-right .owl-nav {
    margin: 0px 0 15px;
}

.st-13::before, .st-13::after {
    width: calc(100% - 60px);
}
.st-13 .section_heading {
    width: calc(100% - 60px);
}

 .st-13-slider {
    max-width: calc(100% - 60px);
}
.st-13-itm-title {
    font-size: 20px;
}
.accordian-type-1 .accordion-button {
    font-size: 16px;
    padding: 15px 20px;
}
.accordian-type-1 .accordion-body {
    padding: 0 20px 15px;
}
.accordian-type-1 .accordion-button::after {
    width: 20px;
    height: 20px;
}
.accordian-type-1 .accordion-item {
    border-radius: 10px;
    margin-bottom: 10px;
}
.tour-detail-sidebar {
    margin-top: 25px;
}



}

@media(max-width: 767px) {
div#homepage-banner h1 {
    font-size: 40px;
}
.banner_content_description {
    margin: 5px 0 10px;
}
.live-search input {
    font-size: 14px;
    background-position: center left 10px;
    background-size: 12px;
    padding: 8px 8px 8px 30px;
}
.live-search {
    max-width: 80%;
}
.certifications-ratings {
    margin-top: 15px;
}
ul.rating-stars li img {
    width: 15px !important;
}
ul.rating-stars {
    gap: 2px;
}
.certifications-ratings>ul {
    gap: 20px;
}
.certifications-ratings>ul li {
    font-size: 14px;
}
.heading-type-1 {
    font-size: 32px;
}
.heading-type-2 {
    font-size: 18px;
}
.st-2-itm-cnt-title {
    font-size: 16px;
}
.st-3-itm-cnt-title {
    font-size: 18px;
    margin: 10px 0 8px;
}
p {
    font-size: 14px;
}
.st-4-itm-img-cnt-title {
    font-size: 20px;
}
.st-4-itm-top-cnt-description p {
    font-size: 14px;
}
.sub-heading {
    font-size: 16px;
}
.st-4-itm-cnt-tile-cnt-title {
    font-size: 14px;
    margin-bottom: 10px;
}
.st-4-itm-cnt-tile-icon {
    width: 35px;
    min-width: 35px;
    height: 35px;
}
.st-4-itm-cnt-tile {
    padding-bottom: 10px;
}
.st-4-itm-cnt-tiles .row {
    gap: 15px 0;
}
.st-4-itm-cnt-tile-cnt-description p {
    font-size: 12px;
    line-height: 1.4;
}
.st-4-itm-img-cnt {
    width: calc(100% - 20px);
    bottom: 10px;
    padding: 15px;
}
.st-4-itm-top-cnt-description, .st-4-itm-top-cnt {
    margin-bottom: 10px;
}
.btn {
    font-size: 14px;
    padding: 5px 15px;
}
.st-6-items .row, .st-7-items .row, .st-9-items .row {
    gap: 20px 0;
}
.st-7-itm-cnt-title {
    font-size: 16px;
}
.st-9-rating-certification-title {
    font-size: 14px;
}
.certificate-logo {
    width: 80px;
}
.st-9-rating-certification table td ul li img {
    width: 15px;
}
.st-9-rating-certification {
    max-width: 250px;
    padding: 5px;
}
.st-9-itm-title {
    font-size: 18px;
}
.st-9-items {
    padding-left: 5px;
}
.st-9-itm {
    padding: 20px;
}
.st-9-itm::before {
    width: 20px;
    height: 53px;
    top: -8px;
    left: -10px;
    background-size: 20px;
}
.st-9-itm-icon img {
    width: 20px;
}
.form-control {
    font-size: 14px;
    padding: 10px 10px;
}
.form-group label {
    margin-bottom: 6px;
    font-size: 14px;
}
.st-9-itm-cnt-form .row {
    gap: 15px 0;
}
.carousel-caption {
    right: 10%;
    left: 10%;
}

.tour-share {
    float: initial;
}
.thumbs-col .owl-stage, .thumbs-col .owl-stage-outer {
    height: auto !important;
}
.tour-detail-cnt-tab {
    gap: 0 10px;
}
.tour-detail-cnt-tab li button {
    font-size: 16px;
}
.tour-detail-cnt-tab-hotel-cnt-title {
    font-size: 16px;
}

.tour-detail-cnt-tab-price-in ul li {
    font-size: 14px;
}
.tour-detail-cnt-tab-1-highlighted p {
    font-size: 14px;
}
.tour-detail-sidebar-price h3 {
    font-size: 20px;
    margin: 6px 0;
}
.cta-user {
    margin-top: 20px;
}
.tour-detl-cnt p {
    font-size: 14px;
}
.tour-header {
    margin-bottom: 20px;
}
.st-17-itm-title {
    font-size: 20px;
}
.st-16-itm-contact-detail-title {
    font-size: 20px;
}
.st-17-items .row {
    gap: 20px 0;
}
.st-19-items .row {
    gap: 25px 0;
}
.st-19-itm-cnt-title {
    font-size: 18px;
}
.st-11-items .breadcrumb .breadcrumb-item {
    font-size: 14px;
}


}

@media(max-width: 575px) {
.certifications-ratings>ul>li img {
    width: 80px !important;
}
.st-3-itm-icon img {
    width: 50px;
}
.st-3-itm-cnt-title {
    font-size: 16px;
}
.st-6-itm-cnt-title {
    font-size: 16px;
}
.carousel-caption {
    right: 4%;
    left: 4%;
}
.certifications-ratings>ul {
    gap: 10px;
}
.st-13::before, .st-13::after {
    width: calc(100% - 30px);
}
.st-13-slider {
    max-width: calc(100% - 25px);
}
.st-13-itm-title {
    font-size: 18px;
}
.st-12-sidebar-cnt-title {
    font-size: 20px;
}
.st-12-sidebar-highlights li {
    margin-bottom: 10px;
    font-size: 14px;
}
.st-12-sidebar-highlights li img {
    width: 26px;
}
.st-12-sidebar-highlights::before {
    left: 13px;
}
.st-12-sidebar-contact-detail {
    padding-top: 20px;
    margin-top: 20px;
}
.st-12-sidebar-contact-detail .btn-type-2 {
    font-size: 16px;
    margin: 5px 0 10px;
}
.st-15-itm-cnt-title {
    font-size: 20px;
}
.st-15-itm {
    flex-direction: column-reverse;
}
.st-7-sidebar-filter-itm-in-form form .form-group .form-check .form-check-label {
    font-size: 14px;
    padding: 5px 0 2px;
}
.st-7-sidebar-filter-itm-in-form form .form-group .form-check-input {
    width: 20px;
    height: 20px;
    margin-left: -30px;
}
.st-7-sidebar-filter-itm-in-form form .form-group .form-check {
    margin-bottom: 10px;
    padding-left: 30px;
}

.accordian-type-1 .accordion-button {
    font-size: 14px;
}
.st-15-itm {
    gap: 10px;
}
.st-15-itm-cnt-description {
    margin: 10px 0 20px;
}
.tour-detls {
    gap: 10px 10px;
    flex-wrap: wrap;
    width: 100%;
}
.tour-detl {
    width: 100%;
}
.tour-detl-icon {
    min-width: 20px;
}
.tour-detl-icon img {
    width: 20px;
}
.st-17-itm-title {
    font-size: 18px;
}





}