/*========== Common css ========*/
@font-face {
	font-family: myFirstFont;
	src: url(../font/Roboto-Black.ttf);
	font-weight: bolder;
 }
 @font-face {
	font-family: myFirstFont;
	src: url(../font/Roboto-Bold.ttf);
	font-weight: bold;
 }
 @font-face {
	font-family: myFirstFont;
	src: url(../font/Roboto-Light.ttf);
	font-weight: lighter;
 }
 @font-face {
	font-family: myFirstFont;
	src: url(../font/Roboto-Medium.ttf);
	font-weight: medium;
 }
 @font-face {
	font-family: myFirstFont;
	src: url(../font/Roboto-Regular.ttf);
	font-weight: normal;
 }
 
 @font-face {
	font-family: Cookie-Regular;
	src: url(../font/Cookie-Regular.ttf);
	font-weight: bold;
 }

:root {
  --first-color: #8E1616;
  --second-color: #D84040;
  --main-font: "Roboto", sans-serif;
  --title-font: "Cookie", serif;
}

body {
	font-size: 14px;
	font-family: var(--main-font);
	font-weight: 400;
	color: #2b2b2b;
	/* background-image: linear-gradient(to top, #5ee7df 0%, #b490ca 100%); */
	background: hsla(52, 43%, 55%, 1);
	background: linear-gradient(90deg, hsl(51.6, 76.9%, 74.5%) 0%, hsla(51, 33%, 75%, 1) 100%);
}

img{
	width: 100%;
}

.container {
	max-width: 1230px;
}

h1 {
	font-family: var(--title-font);
	font-size: 60px;
	color: var(--second-color);
	line-height: 50px;
}

.theme-padding{
	padding: 80px 0 0;
	position: relative;
}

a{
	color: #2b2b2b;
	transition: all 0.5s ease;
	cursor: pointer;
	text-decoration: none;
}

a:hover{
	color: var(--first-color);
	text-decoration: none;
}

.form-control {
	border-radius: 0;
	border: none;
	min-height: 50px;
}

.margin--30{
	margin-bottom: -30px;
}

.margin-top-30{
	margin-top: 30px;
}

.margin-bottom-30{
	margin-bottom: 30px;
}

ul {
	padding: 0;
	list-style: none;
	margin-bottom: 0;
}

/*========== Button ========*/

.theme-btn {
	position: relative;
	padding: 10px 15px;
	border: none;
	background: var(--first-color);
	color: #ffffff;
	cursor: pointer;
	transition: all 0.5s ease;
}

.theme-btn:hover{
	background: var(--second-color);
}

.theme-btn::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 5px;
	top: 5px;
	border: 2px solid var(--second-color);
	z-index: -1;
	transition: all 0.5s ease;
}

.theme-btn:hover::after{
	left: -5px;
	top: -5px;
	border-color: var(--first-color);
}

.theme-btn.same-bg::after {
	border-color: var(--first-color);
	z-index: 0;
}

.theme-btn.same-bg:hover {
	background: var(--first-color);
}

/*========== Header ========*/

.logo img {
	width: 150px;
}

header {
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	top: 30px;
	z-index: 1;
}

header.fixed{
	position: fixed;
    top:0; 
	left:0;
    width: 100%;
	transition: all 0.4s ease;
	background: var(--second-color);
	background: linear-gradient(90deg, hsl(51.9, 53.1%, 59%) 0%, hsl(51.4, 32.8%, 74.9%) 100%);
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	z-index: 99;
}

header.fixed .header-inner{
	background: transparent;
}

.header-inner {
	background: rgba(255,255,255,0.2);
	padding: 0 15px;
}

.main-logo {
	padding: 15px 0;
}

.main-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-menu {
	padding-right: 30px;
}

.main-menu ul li {
	padding: 15px 15px;
	position: relative;
	cursor: pointer;
}

.main-menu ul li a {
	color: #fff;
	transition: all 0.5s ease;
	position: relative;
}

.main-menu ul li:hover > a{
	text-decoration: none;
	color: var(--first-color);
}

.main-menu ul li a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--first-color);
	right: 0;
	bottom: -2px;
	transition: all 0.5s ease;
}

.main-menu ul li:hover > a::after{
	width: 80%;
}

.main-menu ul .submenu {
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 15rem;
	padding: 15px 0 0;
	background: #fff;
	transition: all 0.3s ease-in-out 0s;
	transform: translateY(4rem);
	visibility: hidden;
	opacity: 0;
}

.para-menu-toggle {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1;
	display: none;
}

@media (min-width: 992px) {
	.main-menu ul .submenu{
		display: block !important;
	}
}

@media (max-width: 992px) {
	.para-menu-toggle{
		display: block;
	}

	.main-menu ul li a{
		display: block;
	}
}

.main-menu ul li:hover >.submenu{
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.main-menu .submenu a {
	color: #000;
}

.main-menu ul li .submenu li {
	padding: 0 15px 15px;
}

.box-btn {
	width: 40px;
	height: 40px;
	border: none;
	min-width: 40px;
	padding: 0;
}

/* sidebar box */

.sidebar-open,
.sidebar-close{
	display: none;
}

/* menu responsive */
@media (max-width: 991px) {
	 .sidebar-open{
		display: block;
		margin-right: 30px;
	}

	#mySidebar {
		width: 100%;
		position: absolute;
		left: 0;
		top: 100%;
		padding: 0;
		background: var(--second-color);
		max-height: 80vh;
  		overflow-y: auto;
	}

	.main-menu ul .submenu {
		position: relative;
		display: none;
		top: 0;
		opacity: 1;
		visibility: visible;
		min-width: 100%;
		transform: none;
		margin-top: 15px;
		transition: none;
	}

	.main-menu ul .submenu.active{
		display: block;
		transform: translateY(0);
		visibility: visible;
    	opacity: 1;
	}

	.service-box {
		margin-bottom: 30px;
	}

	.service-box:last-child {
		margin: 0;
	}

	.gallery a {
		width: 50%;
	}

	.service-box:last-child {
		margin-bottom: 0;
		margin-top: 20px;
	}
}

/*========== Slick arrow and dots ========*/
.arrow-btn {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	left: 30px;
	transition: all 0.5s ease;
	padding: 0;
	text-align: center;
	line-height: 42px;
	font-size: 25px;
}

.arrow-btn.next-slide {
	left: auto;
	right: 30px;
}

.slick-arrow-btn {
	width: 100%;
	position: absolute;
	bottom: 50%;
	right: 0;
	z-index: 1;
	left: 0;
	margin: 0 auto;
}


.slick-dots {
	list-style: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 0;
	margin: 0;
}

.slick-dots li button {
	padding: 0;
	width: 100%;
	height: 100%;
	background: var(--first-color);
	border: none;
	color: #fff;
	font-size: 0;
	cursor: pointer;
	transition: all 0.5s ease;
}

.slick-dots li button:hover{
	background: var(--second-color);
}

.slick-dots li {
	width: 15px;
	height: 15px;
	margin: 0 5px;
}

.slick-dots li.slick-active button {
	background: var(--second-color);
}

.slick-slide {
	position: relative;
}

.slick-arrow-btn.main-arrow {
	top: 20px;
	bottom: auto;
}

.main-arrow .arrow-btn {
	left: 0;
}

.main-arrow .arrow-btn.prev {
	left: auto;
	right: 0;
}

/*========== Main Slider ========*/

.slide-detail {
	position: absolute;
	top: 40%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 50%;
	text-align: center;
	color: #fff;
}

.button-form{
	z-index: 0;
}

.main-slider{
	position: relative;
}

/*========== Service ========*/

.service-icon {
	width: 80px;
	height: 80px;
	min-width: 80px;
	background: var(--second-color);
	text-align: center;
	line-height: 80px;
	margin-right: 25px;
	position: relative;
	margin-bottom: 10px;
	transition: all 0.5s ease;
}

.service-inner:hover .service-icon{
	background: var(--first-color);
}

.service-icon::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 10px;
	bottom: -10px;
	border: 2px solid var(--first-color);
	z-index: -1;
}

@keyframes linearGradientMove {
    100% {
        background-position: 4px 0, -4px 100%, 0 -4px, 100% 4px;
    }
}

.service-inner:hover .service-icon::after{
	background:linear-gradient(90deg, var(--first-color) 50%, transparent 0) repeat-x,
	linear-gradient(90deg, var(--first-color) 50%, transparent 0) repeat-x,
	linear-gradient(0deg, var(--first-color) 50%, transparent 0) repeat-y,
	linear-gradient(0deg, var(--first-color) 50%, transparent 0) repeat-y;
	background-size: 4px 2px, 4px 2px, 2px 4px, 2px 4px;
	background-position: 0 0, 0 100%, 0 0, 100% 0;
	border: none;
	animation: linearGradientMove .5s infinite linear;

}

.service-inner {
	display: flex;
	align-items: center;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	padding: 15px;
}

.service-icon img {
	width: 50px;
}

.service-detail h4 {
	font-size: 20px;
}

.service .main-title {
	margin-bottom: 30px;
}

.main-title {
	color: var(--second-color);
	margin-bottom: 50px;
}

.main-title span{
	position: relative;
	display: inline-block;
	vertical-align: top;
}

.main-title span::after {
	content: "";
	width: 30%;
	height: 2px;
	position: absolute;
	left: auto;
	right: 0;
	bottom: 0;
	background: var(--second-color);
}

.main-title span::before {
	content: "";
	position: absolute;
	left: auto;
	right: 32%;
	width: 10px;
	height: 2px;
	background: var(--second-color);
	bottom: 0;
}

.section-border {
	border-bottom: 5px solid var(--first-color);
	position: relative;
	overflow: hidden;
	padding-top: 36px;
}

.service-box {
	margin-top: 50px;
	position: relative;
}

.service-box::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 50px;
	background: var(--first-color);
	left: 0;
	right: 0;
	margin: 0 auto;
	top: -50px;
}

.service-box::before {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	background: var(--first-color);
	left: 0;
	right: 0;
	margin: 0 auto;
	border-radius: 50%;
}

.run-car img{
	width: 7%;
}

.run-car {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	right: auto;
	animation: runcar 20s infinite;
}

@keyframes runcar {
	from {left: 0px;}
	to {left: 1200px;}
  }

/*========== Tour search ========*/

.search-inner-box {
	padding: 15px;
	background: var(--first-color);
}

.search-inner-box .form-group {
	margin-bottom: 0;
}

.search-inner-box {
	padding: 30px 45px 30px 30px;
	background: var(--second-color);
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.tour-search {
	position: relative;
	margin: -50px 0 0 0;
}

.search-inner-box .custom-select {
	border: none;
}

/*========== Gallery ========*/

.gallery {
    display: flex;
    flex-wrap: wrap;
}

.gallery a {
    display: block;
    text-decoration: none;
    width: 25%;
    overflow: hidden;
    outline: none;
}

.gallery a img {
    height: 100%;
    transform: scale(1,1);
    transition: all 300ms ease;
}

.gallery a img:hover {
    transform: scale(1.1,1.1);
}


.bg {
    width: 100%;
    height: 200px;
    background-size: cover;
    transition: all 0.5s ease;
	position: relative;
}

.place-name {
	display: block;
	position: absolute;
	left: 0;
	top: 40%;
	text-align: center;
	width: auto;
	color: #fff;
	margin: 0 auto;
	right: 0;
	padding: 10px 15px;
	opacity: 0;
	transition: all 0.5s ease;
	transform: scale(80%);
	z-index: 1;
}

.bg:hover .place-name{
    opacity: 1;
	transform: scale(100%);
}

.place-name::after,
.place-name::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 2px;
	background: var(--first-color);
	transition: all 0.5s ease;
}

.place-name::before{
	left: auto;
	right: 0;
	top: auto;
	bottom: 0;
}

.bg:hover .place-name::after,
.bg:hover .place-name::before{
	width: 100%;
}

.bg::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	top: 0;
	background: rgba(0,0,0,0.5);
	transition: all .5s ease;
	opacity: 0;
}

.bg:hover::after {
	opacity: 1;
}

.our-gallery::after {
	content: "";
	position: absolute;
	width: 690px;
	height: 165px;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 50px;
	background: url("../image/bg1.png") no-repeat;
	text-align: center;
	z-index: -1;
}

/*========== Tour Package ========*/

.package-box-inner {
	background: #fff;
	padding: 10px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.package-location {
	display: block;
	margin-bottom: 5px;
}

.package-rating {
	color: var(--first-color);
}

.package-location svg {
	margin-right: 7px;
}

.package-box-inner .package-detail {
	margin: 15px 0 0;
}

.package-detail .p-detail {
	border-top: 1px solid #2b2b2b;
	margin-top: 15px;
	padding-top: 15px;
	padding-bottom: 5px;
}

.button-box {
	width: 40px;
	height: 40px;
	background: var(--first-color);
	text-align: center;
	line-height: 40px;
	transition: all 0.5s ease;
	display: inline-block;
  	vertical-align: top;
}

.button-box:hover{
	background-color: var(--second-color);
}

.button-box svg {
	color: #fff;
}

.package-detail .price{
	line-height: 40px;
	font-weight: bold;
	font-size: 16px;
}

.package-detail .p-detail {
	border: 1px solid #cabbbb;
	margin-top: 15px;
	padding: 5px;
}

.explore-btn {
	padding-top: 30px;
	padding-bottom: 5px;
	text-align: center;
}

/*========== parallax image ========*/

.para-img-bg {
	background-image: url(../image/para-bg.jpg);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 30px 0;
	color: #fff;
}


/*========== Testimonial ========*/

.person-img {
	width: 70px;
	height: 70px;
	min-width: 70px;
	position: relative;
	border: 2px solid var(--first-color);
}

.testi-slide-inner {
	display: flex;
	align-content: start;
	background-color: #fff;
	padding: 15px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.testi-slide {
	padding: 15px 0;
}

.testi-desc {
	padding-left: 15px;
}

.test-sub-desc span {
	display: inline-block;
	vertical-align: top;
}

.test-sub-desc span svg {
	margin-right: 5px;
}

.test-sub-desc .description {
	margin-left: 15px;
}

.testi-desc p {
	position: relative;
}

.testimonial-slider {
	margin: 30px 0 0;
}

.prev-slide-testi, .next-slide-testi {
	width: 25px;
	height: 25px;
	left: auto;
	right: 20px;
	line-height: 26px;
  	font-size: 20px;
}

.prev-slide-testi {
	right: 60px;
}

/*========== Offer banner ========*/

.offer-banner {
	min-height: 453px;
	align-content: center;
	padding: 15px;
	background: url(../image/offer-bg.jpg) no-repeat center center;
	color: #fff;
	position: relative;
	z-index: 0;	
	background-size: cover;
}

.discount-price{
	text-decoration: line-through;
}

.discount-box span {
	font-size: 14px;
	font-weight: 400;
	display: inline-block;
	vertical-align: top;
}

.discount-box {
	width: 100px;
	height: 100px;
	border-radius: 100%;
	background: var(--second-color);
	text-align: center;
	line-height: 100px;
	position: absolute;
	right: 30px;
	bottom: 30px;
	font-size: 30px;
	font-weight: bold;
	animation: bounce 2s infinite;
}

.offer-banner .price {
	background: url(../image/red-strip.png) no-repeat center center;
	padding: 10px 15px;
}

/*========== Blog ========*/

.blog-post {
	padding: 0 15px;
	margin-bottom: 30px;
}

.blog-slider {
	margin-bottom: -30px;
}

.blog-detail {
	background: #fff;
	padding: 15px;
}

.author-desc .image {
	width: 30px;
	height: 30px;
	margin-right: 10px;
}

.blog-detail .theme-btn {
	width: 40px;
	height: 40px;
}

.blog-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 0;
  	position: relative;
}

.blog-img {
	overflow: hidden;
	position: relative;
}

.blog-img img {
	transition: all 0.5s ease;
}

.blog-post:hover .blog-img img {
	transform: scale(1.3);
}

.blog-img .social-media {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.social-media .social-icon {
    width: 30px;
    height: 30px;
    background: var(--first-color);
    color: #fff;
    margin: 0 5px;
    line-height: 30px;
    display: inline-block;
    vertical-align: top;
	text-align: center;
}

.social-media .social-icon:hover {
    background: var(--second-color);
}

footer .social-media .social-icon {
	margin-top: 5px;
}

.blog-img .social-media .social-icon {
    position: absolute;
    left: 10px;
    bottom: -5px;
	top: auto;
	opacity: 0;
	transition: all 0.3s ease;
}

.blog-post:hover .blog-img .social-media .social-icon{
	bottom: 0;
	opacity: 1;
}

.blog-img .social-media .social-icon:nth-child(2) {
    left: 50px;
}

.blog-post:hover .blog-img .social-media .social-icon:nth-child(2) {
	transition-delay: 0.3s;
}

.blog-img .social-media .social-icon:nth-child(3) {
    left: 90px;
}

.blog-post:hover .blog-img .social-media .social-icon:nth-child(3) {
	transition-delay: 0.4s;
}

.blog-img .social-media .social-icon:nth-child(4) {
    left: 130px;
}

.blog-post:hover .blog-img .social-media .social-icon:nth-child(4) {
	transition-delay: 0.5s;
}

.blog-img .social-media .social-icon:nth-child(5) {
    left: 170px;
}

.blog-post:hover .blog-img .social-media .social-icon:nth-child(5) {
	transition-delay: 0.6s;
}

/*========== Newsletter ========*/

.newsletter img {
	width: auto;
}

.newsletter-btn {
	padding: 0 15px;
}

/*========== footer ========*/

footer {
	background: url(../image/footer.jpg) no-repeat center center;
	background-size: cover;
	color: #fff;
	margin: 80px 0 0;
}

footer.theme-padding{
	padding: 50px 0;
}

.footer-inner {
	background: rgba(255,255,255,0.2);
	padding: 30px;
}

.footer-logo img {
	max-width: 170px;
}

footer a {
    color: #fff;
}

.footer-link ul,
.footer-contact ul {
	padding: 0;
	list-style: none;
	margin: 0;
}

.footer-link ul li a {
	padding: 0 0 10px;
	display: block;
	position: relative;
}

.footer-link ul li:last-child a {
	padding: 0;
}

.footer-title {
	margin-bottom: 15px;
}

.footer-contact li {
	display: flex;
	align-content: center;
	margin-bottom: 10px;
}

.footer-contact li .icon {
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	background: var(--first-color);
	margin-right: 15px;
}

.footer-bottom {
	padding: 30px 0 0;
	border-top: 1px solid #FFF;
	margin-top: 30px;
}

/*========== back to top ========*/

.back-top-btn {
	width: 40px;
	height: 40px;
	position: fixed;
	right: 15px;
	bottom: 15px;
	opacity: 0;
	z-index: 999;
}

.back-top-btn.show{
	opacity: 1;
}

.back-top-btn::after{
	display: none;
}

/*========== loader ========*/

#loading {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: 99;
  }
  
  #loading-image {
	z-index: 100;
	width: 64px;
	height: 64px;
  }

/*========== breadcrumb ========*/

.main-breadcrumb {
	padding: 250px 0 30px;
	background: url("../image/breadcrumb.jpg") no-repeat center center;
	background-size: cover;
}

.breadcrumb {
	background: transparent;
	padding: 0;
	margin: 0;
}

.breadcrumb-item.active {
	color: var(--second-color);
}

.breadcrumb-item a,
.breadcrumb-item + .breadcrumb-item::before {
	color: #fff;
}

/*========== left column ========*/

.filter-section {
	background: #fff;
	padding: 15px;
	margin-bottom: 30px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.form-check {
	margin-bottom: 5px;
}

.filter-section .main-title {
	font-family: var(--title-font);
	margin-bottom: 15px;
}

.form-check-input:checked {
	background-color: var(--first-color);
	border-color: var(--first-color);
}

.form-check-input:focus {
	border-color: var(--first-color);
	box-shadow: 0 0 0 .25rem rgb(244, 218, 218);
}

.form-control:focus {
	box-shadow: none;
}

.left-column .form-control {
	border: 1px solid #6c757d;
}

/* rabge slider start */
.price-input {
	width: 100%;
	display: flex;
	margin: 30px 0 35px;
  }
  .price-input .field {
	display: flex;
	width: 100%;
	height: 30px;
	align-items: center;
  }
  .field input {
	width: 100%;
	height: 100%;
	outline: none;
	margin-left: 12px;
	border-radius: 5px;
	text-align: center;
	border: 1px solid #999;
	appearance: textfield;
}
.price-input .separator {
	width: 130px;
	display: flex;
	font-size: 19px;
	align-items: center;
	justify-content: center;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.range-slider {
	height: 5px;
	position: relative;
	background: #ddd;
	border-radius: 5px;
}

.range-slider .progress {
	height: 100%;
	left: 25%;
	right: 25%;
	position: absolute;
	border-radius: 5px;
	background: var(--first-color);
}

.range-input {
	position: relative;
}

.range-input input {
	position: absolute;
	width: 100%;
	height: 5px;
	top: -5px;
	background: none;
	pointer-events: none;
}

input[type="range"]::-webkit-slider-thumb {
	height: 17px;
	width: 17px;
	border-radius: 50%;
	background: var(--first-color);
	pointer-events: auto;
	-webkit-appearance: none;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
	height: 17px;
	width: 17px;
	border: none;
	border-radius: 50%;
	background: var(--first-color);
	pointer-events: auto;
	-moz-appearance: none;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
} 
/* rabge slider end */

/*========== right column ========*/

.right-column .package-box {
	margin-bottom: 30px;
}

.t-icon-box .icon {
	width: 50px;
	min-width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-size: 20px;
	background: var(--first-color);
	color: #fff;
	margin-right: 15px;
}

.t-icon-box {
	padding: 10px;
	border: 1px solid var(--second-color);
	height: 100%;
}

#accordion .card:last-child {
	margin-bottom: 0;
}

#accordion .card {
	margin-bottom: 15px;
	border-color: var(--second-color);
	background: var(--second-color);

	color: #fff;
}

.progress-section {
	margin-top: 15px;
}

.progress-bar {
	background-color: var(--second-color);
}

/*========== pagination ========*/

.page-link{
	color: var(--first-color);
}

.page-link:hover {
	color: var(--second-color);
}

.active > .page-link, .page-link.active,
.page-link.active:hover {
	background: var(--first-color);
	border-color: var(--first-color);
	color: #fff;
}

.pagination {
	margin-bottom: 30px;
}

/*========== customer review ========*/

.comment-box,
.box-shadow {
	background: #fff;
	padding: 15px;
	margin-bottom: 30px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.box-shadow{
	padding: 30px;
	position: relative;
  	z-index: 1;
}

.box-shadow .form-control {
	border: 1px solid var(--second-color);
}


/* plus minus range textbox */
.gj-datepicker .btn {
	border-radius: 0;
	transition: all 0.5s all;
}

.gj-datepicker .btn:hover,
.gj-datepicker .btn:focus,
.gj-datepicker .btn:active {
	background: var(--second-color);
	border-color: var(--second-color);
}

.number-of-person .minus, 
.number-of-person .plus {
	width: 35px;
	border: 1px solid #6c757d;
	align-content: center;
	text-align: center;
	height: 35px;
	min-width: 35px;
}

.number-of-person .form-control {
	border: 1px solid #6c757d;
	min-height: 35px;
	padding: 3px 10px;
}

/* left banner */
.left-banner-detail {
	position: absolute;
	top: 15px;
	left: 15px;
	color: #fff;
	font-family: var(--title-font);
	padding: 15px;
}

 /* left column blog */

 .left-blog-service li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 15px;
}

.left-blog-service li:last-child {
	padding-bottom: 0;
}

.left-blog-service li .service-count {
	width: 25px;
	height: 25px;
	background: var(--second-color);
	color: #fff;
	text-align: center;
	border-radius: 50%;
	line-height: 25px;
}

.related-blog-box img {
	width: 70px;
	height: 70px;
}

.related-blog-box {
	margin-bottom: 15px;
}

.related-blog-box:last-child {
	margin-bottom: 0;
}

.left-blog-tags li {
	display: inline-block;
	vertical-align: top;
}

.left-blog-tags li a {
	padding: 5px 15px;
	display: block;
	border: 1px solid var(--second-color);
	margin-bottom: 10px;
	margin-right: 10px;
}

.left-blog-tags {
	margin-bottom: -10px;
}

.left-blog-tags li a:hover {
	background-color: var(--first-color);
	border-color: var(--first-color);
	color: #fff;
}

/* Blockquote */

blockquote {
	font-size: 26px;
	text-align: center;
	padding: 30px;
	border: 2px solid var(--second-color);
	font-family: var(--title-font);
}

/* about us */

.about-img {
	position: relative;
	padding-bottom: 60px;
}

.about-img .second {
	position: absolute;
	bottom: 0;
	right: 30%;
	border-left: 5px solid var(--second-color);
	border-top: 5px solid var(--second-color);
}

.about-img img {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.about-img::after {
	content: "";
	width: 100%;
	height: 100%;
	background: url('../image/about-bg.png') no-repeat 30% 70%;
	position: absolute;
	right: 0;
	bottom: -40px;
	z-index: -1;
}

.project-counter .project-counter-inner {
	background: url(../image/counter-bg.jpg) no-repeat fixed;
	background-size: cover;
	padding: 100px 0;
}

.project-counter .service-box::after, 
.project-counter .service-box::before {
	display: none;
}

.project-counter .service-box{
	margin-top: 0;
}

.project-counter .service-inner {
	background: #fff;
	position: relative;
  	z-index: 0;
}

.project-counter .service-inner .service-icon {
	font-size: 26px;
	color: #fff;
}

.our-gallery.gallery-page::after {
	display: none;
}


/* second gallery */

.second .bg{
	height: 400px;
}

.second .gallery a {
	width: 33.33%;
}

/* contact page */

.t-icon-box.without-box {
	padding: 0 0 15px;
	border: none;
	border-bottom: 1px solid var(--second-color);
	margin-bottom: 15px;
}

.t-icon-box.without-box:last-child {
	border: none;
	margin: 0;
	padding: 0;
}
/* youtube */

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16/9;
  background-color: #000;
  cursor: pointer;
}

.video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-wrapper::after {
  content: '▶';
  font-size: 64px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/*========== Responsive ========*/

@media (max-width: 1230px) {
	
}

@media (max-width: 1199px) {
	.slide-detail {
		width: 80%;
	}
	
}

@media (max-width: 991px) {
	.main-menu ul li a::after{
		display: none;
	}
	
	.main-breadcrumb {
		padding: 30px 0;
	}

	.header-right{
		position: static;
	}

	.slide-detail {
		width: 100%;
		padding: 0 15px;
		top: 25%;
	}

	header {
		position: relative;
		top: 0;
		background: linear-gradient(90deg, hsl(51.9, 53.1%, 59%) 0%, hsl(51.4, 32.8%, 74.9%) 100%);
	}

	.header-inner {
		background: transparent;
		padding: 0;
	}

	h1 {
		font-size: 50px;
	}

	.tour-search{
		margin: 50px 0 0 0;
	}

	.our-gallery::after{
		width: 100%;
	}

	.about-img .second{
		right: 10%;
	}
	
}

@media (max-width: 767px) {

	.theme-btn.newsletter-header-btn {
		font-size: 0;
		width: 40px;
		height: 40px;
	}

	.newsletter-header-icon {
		font-size: 14px;
	}

	.theme-padding {
		padding: 50px 0 0;
	}

	.service-box {
		margin-bottom: 0px;
	}

	.run-car img {
		width: 12%;
	}

	.service-box:last-child {
		margin-top: 50px;
	}

	.slide-detail .banner-desc{
		display: none;
	}

	h1 {
		font-size: 35px;
	}

	.service-detail h4 {
		font-size: 16px;
	}

	.search-inner-box .custom-select {
		margin-bottom: 15px;
	}
	
	.search-inner-box .theme-btn {
		margin: 0 0 0 14px;
	}

	.search-inner-box {
		padding: 30px;
	}

	.gallery a {
		width: 50%;
	}

	.bg {
		height: 200px;
	}

	.offer-banner{
		min-height: auto;
	}

	.discount-box {
		width: 50px;
		height: 50px;
		font-size: 14px;
		line-height: 50px;
	}

	.project-counter .service-box {
		margin-top: 15px;
	}

	.project-counter .service-box {
		margin-top: 15px;
	}
	
	.project-counter .project-counter-inner{
		padding: 30px 0;
	}

	.second .bg {
		height: 200px;
	}

}

@media (max-width: 479px) {

	.logo img {
		width: 100px;
	}

	.slide-detail .button-form {
		display: none;
	}

	.run-car img {
		width: 20%;
	}

	.newsletter img{
		width: 100%;
	}
	
}



