@charset "UTF-8";

/*------------------------------------------------------------------------------
	Template Name: Trandi
    Description: Trandi - Travel & Tourism HTML Template
    Author: codezion 
    Author URI: https://www.templatemonster.com/authors/codezion/
    Version: 1.0

		-------------------------------------------------------------------------

		>>> TABLE OF CONTENTS:
		======================

		01. Common/Reusable CSS
			1.1 - Animations
			1.2 - General
			1.3 - Section Title
			1.4 - Video Button
			1.5 - Slick Arrow
			1.6 - Slick Dots
			1.7 - Typography
			1.8 - Tables
			1.9 - Forms
			1.10 - Buttons
			1.11 - Paginations
			1.12 - Colors
			1.13 - Accordion
			1.14 - Tab
		02. Homepage
			2.1 - Header
			2.2 - Banner
			2.3 - About Us
			2.4 - Services
			2.5 - Our Team
			2.6 - Testimonial
			2.7 - Blog
			2.8 - Footer
			2.9 - Copyright
		03. About Us
		04. Services
		04. Destination
		05. Gellery
		06. Team
		07. Blog Grid
		08. Blog Details
		09. Blog Left
		10. Blog Right
		11. Contact Us

	-----------------------------------------------------------------*/

	/*------google fonts------*/

	@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');
	@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');



	:root {
		--thm-font: 'Mulish' sans-serif;
		/*	Hedding*/
		--thm-b-font: 'Merriweather', serif;
		/*	Body-font*/
		--thm-icon-font: "Font Awesome 5 Pro";
		/*icon-font*/
		--thm-color-one: #ff6819;
		--thm-color-two: #1f1f1f;
		--thm-color-three: #1f1f1f;
    --thm-color-four: #000000;
    /*Light Color*/
    --thm-color-light: #f7f7f7;
    /*RGB Colors*/
    --thm-color-one-rgb: 14, 223, 126;
    --thm-color-two-rgb: 0, 0, 0;
    --thm-color-three-rgb: 237, 241, 245;
    --thm-color-four-rgb: 0, 0, 0;
    /*Light Color*/
    --thm-color-light-rgb: 247, 247, 247;
    /*Theme Colors*/
    --thm-body-color: #636060;
    /*Body Colors*/
    --thm-white: #ffffff;
    /*White Color*/
    --thm-border: #d1d1d1;
    /*Border Color*/

	}

/*Animations*/

@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*General*/
::selection {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--thm-b-font);
    color: var(--thm-body-color);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    font-family: sans-serif;
    overflow-x: hidden;
    counter-reset: sectionCounter;
}

.relative {
    position: relative;
}

.thm-font {
    font-family: var(--thm-font);
}


.section-padding {
    position: relative;
    padding: 80px 0;
}

.section-padding.section {
    padding-bottom: 50px;
}

.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-fit-contain {
    width: 70%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

ul li {
    margin-bottom: 0;
    position: relative;
}
li a {
    text-decoration: none;
}

button:focus,
*:focus {
    outline: none;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

label {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
}

label>a {
    font-size: 14px;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    transition: 0.5s;
}

select {
    appearance: auto;
    border: none;
    color: #b7b7b7;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.container-wide .row {
    flex-wrap: unset;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.z-2 {
    position: relative;
    z-index: 2;
}


.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.section-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

/*section-title*/

/*
.header.can-sticky {
    border-bottom: 2px solid #2656DB;
}*/
.section-header {
    max-width: 550px;
    padding-bottom: 30px;
    margin: 0 auto 0 0;
    text-align: left;
    position: relative;
}

.section-header .section_count {
    margin-bottom: 0;
    font-size: 50px;
    font-weight: 600;
    color: var(--thm-color-one);
    line-height: 1.5;
}

.section-header .section_count:before {
    counter-increment: sectionCounter;
    content: "0"counter(sectionCounter);
}

.section-header .title {
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    font-size: 36px;
    margin-bottom: 0px;
}

.section-header .text {
    margin-bottom: 0;
}

.section-header.text-center {
    margin: 0 auto;
}

.section-header.text-center .title {
    justify-content: center;
}

.lh-normal {
    line-height: normal;
}

hr {
    margin: 30px 0;
    border-color: var(--thm-border);
}

blockquote {
    background-color: #fff;
    position: relative;
    padding: 20px 40px;
    border-left: 4px solid var(--thm-color-one);
    border-radius: 10px;
    border-bottom: 2px solid #e2dcdc;
    margin: 30px 0;
    border-top: 2px solid #e2dcdc;
    border-right: 2px solid #e2dcdc;
}

blockquote .quote_icon {
    width: 50px;
    height: 50px;
    background: var(--thm-color-one);
    color: var(--thm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-size: 35px;
    margin-right: 0;
    position: absolute;
    left: 0;
    top: 0px;
}

blockquote .quote_title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--thm-color-two);
    font-style: italic;
    padding-left: 35px;
}

blockquote .quote_author {
    font-size: 18px;
    color: var(--thm-color-one);
    display: flex;
    align-items: center;
}

blockquote .quote_author:before {
    content: '';
    width: 40px;
    height: 3px;
    background-color: var(--thm-color-two);
    margin-right: 20px;
    display: inline-flex;
}

/*Slick Arrows*/


.slick-slide {
    padding:10px;
    text-align:center;
    margin-right:3px;
    margin-left:3px;
}

.slick-arrow:hover {
    color: var(--thm-white) !important;
    background-color: var(--thm-color-one);
    border-color: inherit !important;
}

.slick-arrow:before {
    content: "\f053";
    font-family: var(--thm-icon-font);
    font-weight: 500;
    font-size: 20px;
}

.slick-arrow.slick-next:before {
    content: "\f054";
}
.slick-arrow.slick-prev:before {
    content: "\f053";
}

.slick-prev.slick-arrow {
    position: absolute;
    top: 45%;
    left: 4%;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-next.slick-arrow {
    position: absolute;
    top: 45%;
    right: 4%;
/*    left: 0;*/
    bottom: 0;
    z-index: 1;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid;
    display: flex;
    justify-content: center;
    align-items: center;
}



.slick-arrow.slick-prev:hover {
    border: 2px solid #ff6819;
    background-color:transparent;
    color: #ff6819 !important;
}
.slick-arrow.slick-prev:hover:before {
    color: #ff6819;
}
.slick-arrow.slick-prev:focus {
    border: 2px solid #ff6819;
    background-color: #fff;
    color: #ff6819;
}
.slick-arrow.slick-prev:focus:before {
    color: #ff6819;
}

.slick-arrow.slick-next:hover {
    border: 2px solid #ff6819;
    background-color: transparent;
    color: #ff6819 !important;
}
.slick-arrow.slick-next:hover:before {
    color: #ff6819;
}
.slick-arrow.slick-next:focus {
    border: 2px solid #ff6819;
    background-color: #fff;
    color: #ff6819;
}
.slick-arrow.slick-next:focus:before {
    color: #ff6819;
}

.testimonial-sliderc .slick-prev.slick-arrow {
    border: none;
    font-size: 0;
    display: none;
}
.testimonial-sliderc .slick-next.slick-arrow {
    border: none;
    font-size: 0;
    display: none;
}

/*Slick Dots*/

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 60px;
    margin-bottom: 20px;
}

.slick-dots li {
    padding: 0;
    line-height: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #c9c9c9;
    margin: 0 8px;
    transition: 0.6s all;
    border: 0px solid #c9c9c9;
}

.slick-dots li.slick-active button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--thm-color-one);
    border: 0px solid var(--thm-color-one);
    position: relative;
}

.slick-dots li.slick-active button::before {
    content: '';
    width: 22px;
    height: 21.8px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--thm-color-one);
    position: absolute;
    top: -4px;
    left: -4px;
}

/*pagination*/
.pagination {
    justify-content: center;
    margin-top: 20px;
    /* margin-bottom: 15px; */
    border-radius: 0;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0px 7px 15px;
}

.post_details .post_navigation .nav_item, .pagination .page-item .page-link {
    border: 2px solid #c9c9c9;
    border-radius: 50%;
    /* background-color: var(--thm-color-two); */
    /* color: var(--thm-white); */
    width: 15px;
    height: 15px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    /* font-size: 18px; */
    background: #c9c9c9;
    padding: 0;
    position: relative;
    font-size: 0;
}
.pagination .page-item .page-link::before {
    content: '';
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: transparent;
/*    border: 2px solid var(--thm-color-one);*/
    position: absolute;
    top: -4.8px;
    left: -4px;
}
.pagination .page-item .active::before {
    content: '';
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--thm-color-one);
    position: absolute;
    top: -4px;
    left: -3.9px;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
}

.post_details .post_navigation .nav_item:hover,
.pagination .page-item .page-link.active,
.pagination .page-item.active .page-link,
.pagination .page-item:focus .page-link,
.pagination .page-item:hover .page-link {
    background-color: var(--thm-color-one);
    border: 1px solid var(--thm-color-one);
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font);
    font-weight: bold;
    color: var(--thm-color-two);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--thm-color-two);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 25px;
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 48px;
    line-height: 1.2;
}

h4 {
    font-size: 36px;
    line-height: 1.4;
    font-weight: 700;
}

h5 {
    font-size: 24px;
    line-height: 1.3;
}

h6 {
    font-size: 20px;
    line-height: 1.7;
}

p {
    margin-bottom: 25px;
    color: #838383;
    font-family: 'Roboto', serif;
}

a {
    color: var(--thm-color-three);
    transition: .3s all;
    display: inline-block;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover,
a:focus {
    color: var(--thm-color-one);
    text-decoration: none;
}

/*Tables*/
table {
    margin-bottom: 30px;
}

table th,
table td {
    padding: 15px;
    vertical-align: middle;
    background-color: var(--thm-white);
}

table th {
    font-weight: 500;
    color: var(--thm-color-two);
    font-size: 16px;
    border: 1px solid var(--thm-border);
}

table {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

table td {
    border: 1px solid var(--thm-border);
}

table img {
    width: 40px;
    border-radius: 0;
}

.mb-xl-20 {
    margin-bottom: 20px;
}

.mb-xl-30 {
    margin-bottom: 30px;
}

.mb-xl-60 {
    margin-bottom: 60px;
}

/*Forms*/
.form-control:focus {
    box-shadow: none;
}

.form_style label {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--thm-white);
}

.form_style .form-control {
    background-color: transparent;
    border: none;
    padding: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--thm-color-one);
    border-radius: 0;
}

.form_style .form-control:focus {
    box-shadow: none;
    border: none;
    border-bottom: 2px solid var(--thm-color-one);
}

.form_style .form-control,
.form_style .form-control::placeholder {
    color: var(--thm-white);
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1;
    height: auto;
    font-weight: 500;
}

.form_style.style_two .form-control,
.form_style.style_two .form-control::placeholder {
    color: var(--thm-body-color);
    text-transform: none;
    font-size: 16px;
    font-weight: 500;
}
.text-custom-black {
    color: #000;
}

/*Buttons*/

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    border:  transparent;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn:focus {
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--thm-body-color);
}
/*.btn:hover{
    background-color: #d11930;
}*/

.btn:hover {
    background-color: transparent;
}

.thm-btn {
    font-size: 16px;
    color: var(--thm-white);
    display: inline-flex;
    align-items: center;
    border: 1px solid ;
    padding: 10px 30px;
    transition: 0.5s all;
    font-weight: 500;
    background-color: transparent;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.thm-btn .button_title {
    display: inline-block;
    overflow: hidden;
}

.thm-btn .btn_letters {
    display: inline-block;
    line-height: 1em;
}

.thm-btn.btn-border {
    background-color: var(--thm-white);
}

.thm-btn:hover,
.thm-btn:focus {
    color: var(--thm-white);
    background-color: var(--thm-color-one);
    border-color: transparent;
}

.thm-btn i {
    font-size: 14px;
    line-height: normal;
    margin-left: 10px;
}

.thm-btn.btn-rounded {
    border-radius: 50px;
}

.thm-btn.btn-rectangle {
    border-radius: 8px;
}

.thm-btn.btn-small {
    padding: 6px 42px;
}

/*Colors*/
.thm-color-one {
    color: var(--thm-color-one);
}

.thm-color-two {
    color: var(--thm-color-two);
}

.thm-color-three {
    color: var(--thm-color-three);
}

.thm-color-four {
    color: var(--thm-color-four);
}

.thm-bg-color-one {
    background-color: var(--thm-color-one);
}

.thm-bg-color-two {
    background-color: var(--thm-color-two);
}

.thm-bg-color-three {
    background-color: var(--thm-color-three);
}

.thm-bg-light {
    background-color: var(--thm-color-light);
}

.thm-bg-color-four {
    background-color: var(--thm-color-four);
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/*Preloader*/
.preloader {
    background-color: var(--thm-color-one);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}


/*---------------------------------------*/


/*--top-bar start---*/

.top-bar {
	background-color: #282828;
	padding: 10px 0;
}
.top-bar-contact {
    display: flex;
}
.call-top-bar {
    padding-right: 30px;
    color: #fff;
    font-size: 18px;
}
.topbar-two {
    display: flex;
    justify-content: end;
}
.call-top-bar i {
    padding: 0 5px;
    transition: 0.5s all;
    cursor: pointer;
}
.call-top-bar i:hover {
	color: #ff6819;
}
.login {
    color: #fff;
    transition: 0.5s all;
}
.login:hover {
    color: #ff6819;
}



/*--top-bar end---*/

/*------header start------*/


.navigation-warpper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navigation {
    display: flex;
    align-items: center;
    z-index: 100;
}
.main-menu {
    display: flex;
}

.header .navigation .main-menu .menu-item {
    border-right: 1px solid #d4d0d0;
}

.header .navigation .menu-item a {
    font-weight: 600;
    padding: 25px 18px;
    font-size: 20px;
    position: relative;
    
}

.active {
	color: #ff6819;
}

.header .navigation .menu-item-has-children {
    position: relative;
}

.header .navigation .menu-item-has-children>a:after {
    content: "\f078";
    margin-left: 10px;
    font-family: var(--thm-icon-font);
}

/*.header .navigation .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.1s all;
    width: 215px;
    overflow: hidden;
    opacity: 0;
    background-color: var(--thm-color-one);
    display: block;
}
.header .navigation .menu-item-has-children:hover .sub-menu{
    opacity: 1;
    visibility: visible;
    z-index: 99999;
}*/

.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu {
    left: 100%;
    top: 52px;
}
.header .navigation .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.header .navigation .menu-item-has-children {
    position: relative;
}
.header .navigation .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0s all;
    width: 215px;
    visibility: hidden;
    opacity: 0;
    background-color: var(--thm-color-one);
}

.sub-menu {
    position: absolute;
    top: 87px;
    left: 0;
    width: 215px;
    opacity: 0;
    visibility: hidden;
    transition: 0s all;
}
li:hover .sub-menu{
    visibility: visible;
    opacity: 1;
}

.header .navigation .menu-item-has-children .sub-menu .menu-item {
    padding: 10px 10px;
    width: 100%;
    border-bottom: 1px solid #fff !important;
    transition: 0.5s all;
    background-color: var(--thm-color-one);
    margin: 0;
}

.header .navigation .menu-item-has-children .sub-menu .menu-item>a {
    color: var(--thm-white);
    display: flex;
    font-size: 18px;
    padding: 0px 10px;
    font-weight: 500;
}

.header .navigation .menu-item-has-children .sub-menu .menu-item:hover {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>a:after {
    position: absolute;
    right: 15px;
    transform: rotate(-90deg);
}

.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 0px;
}

.header .navigation .main-menu .sub-menu .menu-item a:hover:before {
    opacity: 0;
}

/*.menu-item-has-megamenu .megamenu .megamenu-nav ul>.menu-item>a, .menu-item-has-children .sub-menu>.menu-item>a {
    display: block;
    white-space: nowrap;
    padding: 12px 20px 12px 18px;
    position: relative;
    background-color: #fe6700;
    font-size: 15px;
}*/

.menu-icon {
    margin-left: 15px;
}
.menu-icon i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon i:hover{
    color: var(--thm-color-one);
}

.logo {
    padding: 10px 0px;
}

.header .navigation .main-menu .menu-item a:before {
    transition: 0.5s all;
    width: 0;
    height: 2px;
    opacity: 0;
    position: absolute;
    content: '';
    bottom: 25px;
    left: 32px;
    background: #ff6819;
}
.header .navigation .main-menu .menu-item a:hover:before {
    width: 30px;
    height: 2px;
     transition: 0.5s all;
     opacity: 1;
}

/*----hamburger btn start----*/


.hamburger {
    width: 0;
    height: 40px;
    /* border: 2px solid #ff6819; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.hamburger-btn span {
    display: flex;
    margin-bottom: 5px;
    background: #ff6819;
    width: 30px;
    height: 3px;
    position: relative;
    transition: 0.5s all;
}

.hamburger {
    display: none;
}
.header .navigation-warpper .hamburger-btn.active span:nth-child(2) {
    display: none;
}

.header .navigation-warpper .hamburger-btn.active span:first-child {
    top: 4px;
    transform: rotate(45deg);
}

.header .navigation-warpper .hamburger-btn.active span:last-child {
    top: -3px;
    transform: rotate(-45deg);
}

.header .navigation-warpper .hamburger-btn span:last-child {
    margin-bottom: 0;
}

.menu-icon-responsive {
    display: none;
}

/*----hamburger btn end----*/

.header.sticky {
    animation-name: fadeHeaderInDown;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 22;
    background: #fff;
    animation-duration: 1s;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    animation-fill-mode: both;
}

/*--------banner start------*/

.banner-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    display: flex !important;
    align-items: center;
    position: relative;
    text-align: left;
}

.banner-section:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.banner-title-color {
    color: #ff6819;
}

.banner-details h6 {
    color: #fff;
    margin-bottom: 0;
}
.banner-details h2 {
    color: #fff;
    font-size: 72px;
}
.banner-details p {
    color: #fff;
    font-size: 24px;
}

.banner-video {
    display: flex;
    align-items: center;
}
.banner-video h6 {
    margin-left: 30px;
}

.banner-btn {
    border: 1px solid #ff6819;
    color: #fff;
    padding: 10px 30px;
    background-color: #ff6819;
    transition: 0.5s all;
    font-weight: 600;
}
.banner-btn:hover {
    border: 1px solid #ff6819;
    color: #ff6819;
    background-color: #fff;
}
.banner-btn:focus {
    color: #fff;
}
.banner-btn:hover:focus {
    color: #ff6819;
}
/*---play btn --*/


.play-btn:hover {
    background: #ff6819;
}
.play-btn:hover::after {
    border-left: 25px solid #fff;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: #fff;
/*    background: radial-gradient( rgb(255 165 0 / 80%) 60%, rgba(255, 255, 255, 1) 62%);*/
    border-radius: 50%;
    position: relative;
    display: block;
    box-shadow: 0px 0px 25px 3px rgb(255 177 0 / 80%);
    transition: 0.5s all;
}

/* triangle */
.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #ff6819;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, .75);
    top: -20%;
    left: -20%;
    background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

/*---play btn-----*/

.banner-slider .slick-dots li.slick-active button::before {
    content: '';
    width: 21.8px;
    height: 21.8px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--thm-color-one);
    position: absolute;
    top: -4px;
    left: -4px;
}
.banner-slider .slick-dots li.slick-active button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--thm-color-one);
    border: 0px solid var(--thm-color-one);
    position: relative;
}

/*--------banner end------*/


/*------subheader start---------*/

.subheader-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.subheader-section:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}
.subheader-hedding h2 {
    color: #fff;
    margin-bottom: 0;
    font-size: 44px;
}





/*------subheader end---------*/


/*--------search-bar start------*/

.search-var-box {
    display: flex;
    justify-content: space-around;
    align-items: end;
    padding: 30px 5px;
    border-right: 1px solid #979595;
    transition: 0.5s all;
    position: relative;
    z-index: 0;
}
.search-var-box i {
    margin-bottom: 10px;
}
.where h6 {
    margin-bottom: 0;
    font-size: 24px;
    transition: 0.5s all;
}
.where p {
    margin-bottom: 0;
    font-size: 18px;
    transition: 0.5s all;
}
.search-bar {
    position: relative;
    bottom: 50px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.search-var-box:hover {
	background-color: ;
	color: #fff;
	border-right: 2px solid #ff6819;
}
.search-var-box:hover h6{
	color: #fff;
}
.search-var-box:hover p{
	color: #fff;
}
.search-var-box:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: rgb(246 136 2 / 99%);
    opacity: 0;
    transition: 0.8s all;
    z-index: -1;
}
.search-var-box:hover:before {
    width: 100%;
    height: 100%;
    opacity: 1;
}


/*--------search-bar end------*/


/*---------home two css offer----------*/

/*.tooltip{ 
  position:relative;
  float:right;
}*/
.tooltip > .tooltip-inner {
    background-color: #000; 
    padding:5px 15px; 
    color:#fff; 
    font-weight:bold; 
    font-size:13px;
}
.popOver + .tooltip > .tooltip-arrow {  
    border-left: 5px solid transparent; 
    border-right: 5px solid transparent; 
    border-top: 5px solid #eebf3f;
}

.progress{
  border-radius:0;
  overflow:visible;
}
.progress-bar{
   background:#ff6819; 
  transition: width 1.5s ease-in-out;
}

.progress {
    display: flex;
    height: 10px;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem;
}
.barWrapper{
    padding: 15px;
}


.offer-image img {
    width: 100%;
}

.offer-image{
    position: relative;
}

.offer-small-imgae {
    position: relative;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: absolute;
    right: 0;
    bottom: -56px;
    background-color: #fff;
    width: 218px;
    height: 90px;
}

.offer-image-top-thumb i {
    width: 40px;
    height: 40px;
    background: #ff6819;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: -17px;
    top: -14px;
}

.offer-small-none-image i {
    width: 44px;
    height: 45px;
    background: #f0a5a5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    right: 18%;
    top: 30px;
    font-size: 25px;
}

.main-small-imag {
    display: flex;
    width: 220px;
    position: relative;
    top: 15px;
}
.sm-image-offer {
    position: relative;
}
.offer-image-top-thumb {
    position: absolute;
    top: 0;
    left: 0;
}

.sm-image-offer img {
    width: 85%;
}
img.bbbbb {
    position: relative;
    right: 26px;
}
img.cccc {
    position: relative;
    right: 50px;
}
img.ddddd {
    position: relative;
    right: 78px;
}

.offer-details {
    max-width: 580px;
}





.achievement-area {
    background: linear-gradient(rgba(245,245,245,0.2) 100%,rgba(245,245,245,0.2) 100%),url(../images/offer/map.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.section-head {
    text-align: center;
    max-width: 516px;
    margin: 0 auto;
}
.section-head h5 {
    margin-bottom: 15px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #ff6801;
}
.section-head h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 46px;
    text-transform: capitalize;
}
.achievement-card {
    padding: 20px;
    text-align: center;
    background: #ff6801;
    color: #fff;
    box-shadow: 0 0 64px rgba(17,17,17,.1);
    border-radius: 5px;
    margin-top: 30px;
}
.achievement-card .achievement-icon {
    margin-bottom: 20px;
}
.achievement-card h5 {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    color: #fff;
}
.achievement-icon i{
    font-size: 80px;
}



/*--------Destination start------*/

.place-image {
    position: relative;
}
.place-image img {
    width: 100%;
}
.section-hedding h3 {
    color: #111111;
}
.section-hedding h5 {
    margin: 0;
    color: #ff6819;
    font-family: 'Mulish';
    font-style: italic;
}

.rating-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 0px;
    background-color: #fff;
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 87%;
}
.place-cart {
    position: relative;
    margin-bottom: 25px;
}

.rating-detail i {
    color: #ff6819;
}
.rating-detail h5 {
    font-size: 24px;
    color: #000;
    margin: 0;
}
.place-price {
    border: 1px solid;
    padding: 2px 15px;
    color: #ff6819;
}
.rating-detail {
    padding-right: 55px;
}
.place-image::before {
    position: absolute;
    content: '';
    top: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.8s all;
    left: 0;
    right: 0;
    bottom: 0;
}
.place-image:hover:before {
    width: 100%;
    height: 100%;
    opacity: 1;
}


/*--------Destination end------*/


/*-----services start---------*/

.service-back {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}
.service-back:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/*--page-two-*/

.service-two {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    margin: 0 20px;
    position: absolute !important;
    bottom: -100px !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 6;
}

.palace-image-two {
    margin-bottom: 100px;
}


/*-----services end---------*/

/*-------gallery start--------*/

.gallery-image img {
    width: 100%;
}
.gallery-image{
    position: relative;
}

.gallery-image:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.8s all;
}
.gallery-image:hover:before {
    width: 100%;
    height: 100%;
    opacity: 1;
}


/*-------gallery end--------*/

.color-white {
    color: #fff !important;
}

.services-detail {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    margin: 0 20px;
    position: relative;
    bottom: 80px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.services-detail h5 {
    margin-bottom: 10px;
}

.services-detail i {
    color: #ff6819;
}
.services-detail span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6819;
    font-weight: 600;
}

/*.mt-3 {
    padding-top: 0.3rem !important;
}*/


/*-----------*/

/*----------contact start-------*/


.contact-sec:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
.contact-sec {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.contact-btn {
    float: right;
    color: #fff;
    background: #ff6819;
    padding: 5px 30px;
    transition: 0.5s all;
}
.contact-btn h4 a {
    color: #fff;
    margin-bottom: 0;
    font-size: 30px;
}
.contact-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-btn:hover {
    background: #000;
}



/*----------contact end-------*/


/*----------testimonial start-------*/

.testi-image img {
    width: 25%;
}
.testi-box {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 30px;
    margin-bottom: 25px;
    position: relative;
    margin: 25px 7px;
    text-align: left;
}
.testi-qute-icon {
    font-size: 55px;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 25px;
}
.testi-qute-icon i {
    color: #444444 !important;
}
.testi-box i {
    color: #ff6819;
}
.test-perra {
    font-weight: 600;
}
.testi-image img {
    position: absolute;
    bottom: -33px;
    right: 40px;
}
.testi-box p {
    font-weight: 500;
    line-height: 2;
    font-size: 24px;
}

.testi-two-perra {
    font-size: 18px !important;
    font-weight: 400 !important;
}
.testi-box.testi-box-two {
    text-align: center;
    margin-top: 75px;
    padding-top: 70px;
}
.testi-image.testi-two img {
    top: -53px;
    left: 42%;
    z-index: 1;
}
.testi-box.testi-box-two i {
    padding-bottom: 20px;
    color: #ffc107;
}
.testi-image.testi-two img {
    width: 16%;
}



/*----------testimonial end-------*/


/*------------blog start-------*/

.blog-image img {
    width: 100%;
}

.blog-box {
    position: relative;
    margin-bottom: 25px;
}
.blog-image {
    position: relative;
    transition: 0.5s all;
}
.blog-image span {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 2px 15px;
    font-size: 18px;
    color: #ff6819;
    font-weight: 600;
}

.read-btn {
    font-weight: 600;
    
}
.read-btn i {
    padding-left: 10px;
}

.blog-image:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.8s all;
}
.blog-image:hover:before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.blog-detail-two {
    padding: 20px 30px;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.blog-detail-two p {
    border-bottom: 2px solid #f3eeee;
}
.blog-detail-two span {
    color: #ff6819;
    padding-right: 20px;
}



/*------------blog news end-------*/


/*------blog-grid-start-----*/

.blog-grid-box {
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.search-name {
    border: 2px solid;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    background: #ff6819;
    font-size: 16px;
}
.blog-search-box {
    position: relative;
}
.blog-search-box input {
    width: 100%;
    padding: 7px 15px;
    border: 2px solid #eaeaea;
    background-color: #eaeaea;
}
.blog-search-box i {
    position: absolute;
    right: 0px;
    top: 0px;
}
.blog-ser-icon {
    width: 55px;
    height: 46px;
    background-color: #ff6819;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.blog-category {
    justify-content: space-between;
    display: flex;
}
.popular-post {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
}
.popular-post span {
    padding-left: 15px;
}
.tags-line p {
    margin: 0;
    border: 2px solid;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 3px 10px;
    transition: 0.5s all;
    cursor: pointer;
}
.tags-line p:hover {
    color: #ff6819;
}
.popular-post img {
    transition: 0.5s all;
}
.popular-post img:hover {
    transform: scale(1.1);
}

.blog-left-titile {
    font-size: 16px;
}

.blog-search-box input::placeholder {
    color: #000;
}


/*------blog-grid-end-----*/



/*-----newsletter start----*/

.news-letter-search-box input {
    width: 100%;
    padding: 10px 15px;
    background-color: #f1f1f1;
    border: 1px solid #f1f1f1;
    position: relative;
}
.news-letter-search-box {
    position: relative;
}
.submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    background: #ff6819;
    padding: 3px 40px;
    border: 1px solid #ff6819;
    color: #fff;
    font-size: 24px;
    transition: 0.5s all;
}
.submit-btn:hover {
    background-color: #fff;
    color: #ff6819;
}



/*-----newsletter end----*/


/*-----footer  start----*/

.ft-title h4 {
    font-size: 30px;
    color: #fff;
}
.ft-title p {
    color: #fff;
}

.ft-icon {
    color: #fff;
}
.ft-icon i {
    padding: 0 7px;
    transition: 0.5s all;
}

.ft-icon i:hover {
    color: #ff6819;
}

.ft-list-item li i {
/*    color: #fff;*/
    padding-right: 6px;
}
.ft-list-item li a {
    color: #fff;
    transition: 0.5s all;
}
.ft-list-item li a:hover {
    color: #ff6819;
}



.copyright {
    padding: 10px 0;
    text-align: center;
    background-color: #ff6819;
    color: #fff;
}

/*-----footer end----*/

/*-------back-top btn start------*/

#back-top {
    position: fixed;
    bottom: 50px;
    right: 25px;
    background-color: #ff6819;
    border: 1px solid #ff6819;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
    color: #fff;
    border-radius: 50%;
    transition: 0.5s all;
    line-height: 0px;
    transition-duration: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 10px;
    z-index: 100;
    display: non;
}

#back-top:hover {
    transform: translateY(-10px);
    cursor: pointer;
}

#back-top:hover {
    background-color: #000;
    border: 1px solid #000;
}

.back-top i {
    color: #fff;
    font-size: 22px;
}


/*-------back-top btn end------*/


/*---modal start---*/

.modal-backdrop.show {
    opacity: 0.5 !important;
    z-index: 101;
}
.offcanvas-backdrop.show {
     opacity: 0.5 !important;
    z-index: 101;
}

.modal-dialog {
    max-width: 665px;
    margin: 11.75rem auto;
}
.modal-content {
    background-color: transparent;
    border: 0;
   
}
.modal-header {
    border: 0;
}
.modal-search input {
    width: 100%;
    padding: 10px 20px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    border-radius: 30px;
}
.modal-search input::placeholder {
    color: #fff;
}

.modal-header .btn-close {
    padding: .5rem .5rem;
    margin: -.5rem -.5rem -.5rem auto;
    border: 2px solid #fff;
    opacity: 1;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5;
    transition: 0.5s all;
}

.btn-close:hover {
    background-color: #ff6819;
    color: #fff;
}


/*------------offcanwas start----------*/

.offcanvas-header {
    background-color: #ff6819;
}
.offcanvas-header h5 {
    color: #fff;
}

.offcanvas-header .btn-close:hover {
    background-color: #fff;
}
.cart-shopping-image {
    text-align: center;
    padding: 35px 0;
}
.cart-shopping-image i {
    font-size: 46px;
}
.cart-shopping-image h5 {
    margin: 30px 0;
}
.cart-btn-offcanwas {
    border: 1px solid;
    padding: 10px 35px;
    border-radius: 5px;
}

.offer-details h5 {
    margin-bottom: 10px;
}



/*-----------contact-us start-------------------*/

.contact-icon i {
    width: 100px;
    height: 100px;
    background: #ff6819;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #fff;
}
.contact-box {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 40px 50px;
    text-align: center;
    margin-bottom: 25px;
    background-color: #fff;
}
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
}
.contact-form-text input {
    width: 100%;
    padding: 7px 15px;
    margin-bottom: 15px;
    border: 2px solid #f4f4f4;
    transition: 0.3s all;
    background-color: #f4f4f4;
}
.contact-form-text input:focus {
    border: 2px solid #ff6819;
}

.form-textaree textarea {
    width: 100%;
    height: 200px;
    padding: 5px 15px;
    border: 2px solid #f4f4f4;
    background-color: #f4f4f4;
    transition: 0.3s all;
}
.form-textaree textarea:focus {
    border: 2px solid #ff6819;
}

.btn.thm-btn.contact-button {
    border: 2px solid;
    color: #ff6819;
    margin-top: 15px;
}
.contact-button:hover {
    color: #fff !important;
    border: 2px solid #ff6819;
    
}
.contact-button:focus {
    color: #fff !important;
    border: 2px solid #ff6819;
}

/*--------------*/

/*---error start---*/


.error-hedding h3 {
    padding-top: 50px;
}   
.error-search input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e0dcdc;
}

.error-search input:focus {
    border: 2px solid #ff6819;
}
.error-search i {
    position: absolute;
    top: 5px;
    right: 0px;
    transition: 0.5s all;
    width: 40px;
    height: 40px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.error-search {
    position: relative;
}
.error-search i:hover {
    color: #d11930;
}
.back-home-btn {
    width: 235px;
    height: 50px;
    color: #fff;
    background: #ff6819;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    border: 2px solid #ff6819;
    transition: 0.5s all;
}
.back-home-btn:hover {
    background-color: #fff;
    border: 2px solid;
}

/*---------------*/

/*-----t & c----*/

.perra-cheched i {
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 35px;
    display: flex;
    background: #ff6819;
    color: #fff;
    margin-right: 15px;
    margin-top: 8px;
}
.thm-btn.term-btn-one {
    border: 2px solid;
    color: #ff6819;
    transition: 0.5s  all;
}   
.thm-btn.term-btn-two {
    border: 2px solid #ff6819;
    background: #ff6819;
    margin-left: 20px;
}
.thm-btn.term-btn-one:hover {
    background: #ff6819;
    color: #fff;
    border: 2px solid #ff6819;
}
.thm-btn.term-btn-one:focus {
    background: #ff6819;
    color: #fff;
    border: 2px solid #ff6819;
}
/*-----------------*/

/*======================
10. Coming Soon
========================*/
.coming-soon {
    background-image: url(../images/404.jpg);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}
/*.coming-soon .coming-soon-img {
    min-height: 450px;
}*/
.coming-soon .coming-soon-text {
    padding: 80px 40px;
    background-color: #fe6700;
    text-align: center;
    background: #fc4a1a;
    background: -webkit-linear-gradient(to right, #fe6700, #fe6700);
    background: linear-gradient(to top, #fe6700, #fc4a1a);
}
.coming-soon .coming-soon-text h1 {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 10.5px;
}
.coming-soon .coming-soon-text .counter {
    display: flex;
    justify-content: center;
    margin: 0px 0px 30px;
}
.coming-soon .coming-soon-text .counter .counter-box {
    text-align: center;
    width: 25%;
    padding: 0 15px;
    margin: 0 15px;
    position: relative;
    background-color: #fe6700;
    border: 2px solid #fe6700;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.coming-soon .coming-soon-text .counter .counter-box .inner-box {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 0px;
    margin-bottom: 10px;
    font-size: 50px;
    line-height: 1;
    margin-top: 20px;
    font-weight: 600;
}
.coming-soon .newsletter-form .group-form .input-group-append {
    pointer-events: all;
    width: 80px;
}
.coming-soon .coming-soon-contact ul li {
    text-align: center;
    width: 33.33%;
    margin-bottom: 20px;
}
.coming-soon .social-media ul {
    justify-content: center;
    display: flex;
}
.coming-soon .social-media ul li {
    margin: 0 10px;
    font-size: 22px;
}
.custom-flex {
    display: flex;
}
.text-custom-white {
    color: #fff;
}

.form-control.form-control-custom {
    width: 100%;
}
.input-group-append {
    position: absolute;
    right: 0;
    top: 5px;
}
.form-control.form-control-custom {
    border: 2px solid #eeebeb;
}
.custom-flex a:hover {
    color: #fff;
}




/*------------------*/

/*------blog-detail-start----------*/

.list-disc li {
    list-style-type: disc;
}
.blog-detail-share {
    display: flex;
    justify-content: space-between;
    align-content: center;
    border-bottom: 2px solid #ddd8d8;
    padding-bottom: 40px;
}
.blog-share-icon {
    justify-content: center;
    align-content: center;
}
.blog-share-icon h6 {
    margin-bottom: 0;
    padding-right: 25px;
}
.blog-share-icon i {
    padding-right: 15px;
    line-height: 2;
}
.blog-share-tag a {
    background: #fff;
    border: 2px solid #ff6819;
    color: #ff6819;
    border-radius: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: ;
    margin-left: 15px;
    padding: 4px 30px;
    transition: 0.5s all;
}
.blog-share-tag a:hover {
    background-color: #ff6819;
    color: #fff;
}
.list-disc {
    padding-left: 15px;
}
.blog-sec-meddil p {
    padding-top: 10px;
}
.medile {
    padding-left: 120px;
}
.bt-hedding {
    border-bottom: 2px solid #000;
    display: inline-block;
}



/*------blog-detail-end----------*/


/*-------login account start---------*/

.login-main {
/*     background: #f1dcdc; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.tab-content > .active {
    display: block;
    padding: 30px;
    background: #fff;
}
.login-group input {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px 15px;
    border: 1px solid #d4d1d1;
    border-radius: 5px;
}
.remender span {
    padding-left: 10px;
}
.remender input {
    /* padding-left: 10px; */
    width: 15px;
    height: 15px;
}
.btn-login {
    background: #ff6819;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    border: 2px solid #ff6819;
    transition: 0.5s all;
}
.btn-login:hover {
    border: 2px solid;
    background: #fff;
}
.btn-login:focus {
    border: 2px solid;
    background: #fff;
}
.nav-link-1 {
    padding: 10px 25px;
}
.show-btn {
    position: absolute;
    right: 10px;
    top: 15px;
}
.login-group {
    position: relative;
}

.vis {
  display: none !important;
}

.active {
  display: block !important;
}


.account-main {
    background: #f1dcdc;
    padding: 30px !important;
}
.click-box {
    display: flex;
    justify-content: space-between;
}
.login-tab-btn {
    display: flex;
    justify-content: center;
}
.login-button.active {
    background: #fff;
     border: 2px solid transparent; 
}
.login-button {
    transition: 0.5s all;
    background: #f1dcdc;
    width: 207px;
    border: 2px solid transparent;
}
.down-line {
    color: #000;
    font-weight: 300;
}
.down-line span {
    padding: 0 10px;
    font-weight: 500;
    cursor: pointer;
}
.or {
    margin-top: 43px;
    border-top: 2px solid #f3e9e9;
    text-align: center;
}
.or span {
    display: inline-block;
    position: relative;
    top: -18px;
    padding: 0px 10px !important;
    text-align: center;
    color: #ff6819;
}
.login-icon i {
    width: 35px;
    height: 35px;
    background: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid;
    margin-right: 8px;
    transition: 0.5s all;
}
.login-icon i:hover {
    background: #ff6819;
    color: #fff;
    border: 2px solid #ff6819;
}

.login-icon {
    text-align: center;
    margin-bottom: 20px;
}
.create-account {
    font-weight: 400;
}
.create-account span {
    font-weight: 600;
    padding-left: 10px;
    color: #ff6819;
    cursor: pointer;
    transition: 0.5s all;
}
.create-account span:hover {
    color: #000;
}


/*-------login account end---------*/

/*------cursor start-------------*/

.df-cursor, .df-cursor2 {
    position: absolute;
    transition: none;
    pointer-events: none;
    z-index: 99999;
    display: inline-block;
    transform: skewX(-10deg);
}
.df-cursor {
    width: 7px;
    height: 7px;
    background-color: var(--thm-color-five);
    top: 0;
    left: 0;
}
.df-cursor2 {
    width: 30px;
    height: 30px;
    border: 1px solid var(--thm-color-five);
    top: 9px;
    left: 9px;
}



/*------cursor end-------------*/


/*--------booking start---------*/
.header .navigation .menu-item > a::after:hover {
    transform: rotate(90deg);
}
/* MAKE IT CUTE ----- */
.tabs {
  position: relative;
  display: flex;
  min-height: 1000px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  justify-content: center;
}

.tabby-tab {
  flex: 0;
}
.form-textaree label:hover {
    background: #fff !important;
    color: #000 !important;
}
.tabby-tab label {
    display: flex;
    box-sizing: border-box;
    /* height: 70px; */
    padding: 0px;
    text-align: center;
    cursor: pointer;
    transition: background 0.5s ease;
    background-color: #fff;
    color: #000;
    font-size: 0;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    /* width: 207px; */
}

.tabby-tab label:hover {
    background: #ff6819;
    color: #fff;
}

.tabby-content {
  position: absolute;
  left: 0; bottom: 0; right: 0;
  top: 70px; 
  padding: 20px;
  border-radius: 0 0 8px 8px;
  transition: 
    opacity 0.8s ease,
    transform 0.8s ease   ;
    opacity: 0;
    transform: scale(0.1);
    transform-origin: top left;
    background-color: #fff;
}

.tabby-content img {
  float: left;
  margin-right: 20px;
  border-radius: 8px;
}


/* MAKE IT WORK ----- */

.tabby-tab [type=radio] { display: none; }
[type=radio]:checked ~ label {
  background: #ff6819;
  z-index: 2;
  color: #fff;
}

[type=radio]:checked ~ label ~ .tabby-content {
  z-index: 1;
  
  /* show/hide */
    opacity: 1;
    transform: scale(1);
}

/* BREAKPOINTS ----- */
@media screen and (max-width: 767px) {
  .tabs { min-height: 400px;}
}

@media screen and (max-width: 480px) {
  .tabs { min-height: 580px; }
  .tabby-tab label { 
    height: 60px;
  }
  .tabby-content { top: 60px; }
  .tabby-content img {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.tabby-tab label:focus {
    color: #fff;
}

.form-textaree input {
    width: 100%;
    padding: 5px 10px;
    border: 2px solid #efefef;
    background: #efefef;
}
.form-textaree label {
    justify-content: left;
    display: block !important;
    padding: 0;
    margin: 0;
    text-align: start;
    /* line-height: 6; */
    font-size: 16px;
    height: 25px;
}
.form-textaree {
    margin-bottom: 25px;
}
.form-textaree select {
    width: 100%;
    padding: 12px 13px;
    color: #000;
}
.button-check {
    border-bottom: 2px solid #bcb7b7;
    padding-bottom: 25px;
}
.button-booking button {
    display: flex;
    border: 1px solid;
    border-radius: 30px;
    padding: 6px 26px;
    margin-top: 20px;
    color: #ff6819;
    position: relative;
    transition: 0.5s all;
}

.button-booking button::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #ff6819;
    color: #fff;
    opacity: 0;
    transition: 0.5s all;
    border-radius: 30px;
    z-index: -1;

}
.button-booking button:hover::before {
    opacity: 1;
    width: 100%;
    height: 100%;

}
.button-booking button:hover {
    color: #fff;
}
.tab-hedding {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}
.tab-image-detal {
    padding: 0 15px;
}
.tab-image-miltan h6 {
    margin-bottom: 0;
}
.tab-image-miltan p {
    margin-bottom: 0;
}
.tab-image-price h6 {
    margin-bottom: 0;
    color: #fdb714;
}
.star-tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 7px 0;
    margin: 15px 0;
}
.text-star i {
    color: #fdb714;
}
.tab-btn-view {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}
.tab-btn-view a {
    border: 1px solid;
    padding: 2px 20px;
    border-radius: 30px;
    color: #ff6819;
    transition: 0.5s all;
}
.tab-btn-view a:hover {
    background-color: #ff6819;
    color: #fff;
    border: 1px solid;
}
.need-box {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px 25px;
    margin-top: 35px;
}
.tab-massege i {
    color: #ff6819;
}
.tab-massege {
    display: block;
}
.tab-contact {
    font-size: 22px;
}
.form-textaree option {
    background: #fff;
    color: #000;
}


/*--------booking end---------*/

/*-----hotal start----*/

.hotal-perra {
    padding: 0px 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding-bottom: 20px;
}
.hotal-detail {
    margin-bottom: 25px;
}
.hotal-left i {
    top: 33px;
}
.tab-image-price span {
    font-size: 14px;
}
.hotal-left-search input {
    width: 100%;
    background: #eaeaea;
    border: 2px solid #eaeaea;
    padding: 7px 6px;
}
.hotal-left-search {
    padding: 10px 0px;
}
.button-booking.hotal-left-btn button {
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.hotal-left-checkbox input {
    padding: 8px 6px;
    width: 36px;
    height: 21px;
}
.hotal-image img {
    width: 100%;
}

.hotal-left-checkbox {
    background: #eaeaea;
    margin-bottom: 2px;
    padding: 12px 10px;
    display: flex;
}
.tab-image-price {
    line-height: 1;
}
/*------- slider hotal-detail-page start -----*/

.slider.slider-single img {
    width: 100%;
    height: 100%;
}
.flight-detail-image img {
    width: 100%;
    height: 415px;
}
.hotal-left-search label {
    color: #000;
}
/*------- slider hotal-detail-page start -----*/

/*----tab-section-hotal-details start----*/




/*====================*/


.tabbedb {
    width: 100%;
}

.tabbedb > input {
  display: none;
}

.tabbedb > label {
  display: block;
  float: left;
  padding: 12px 20px;
  margin-right: 5px;
  cursor: pointer;
  transition: background-color .3s;
}

.tabbedb > label:hover,
.tabbedb > input:checked + label {
  background: #ff6819;
}

.tabsa {
  clear: both;
  perspective: 600px;
}

.tabsa > div {
    width: 100%;
    position: absolute;
    padding: 10px 15px 0px;
    line-height: 1.4em;
    opacity: 0;
/*    transform: rotateX(-20deg);*/
    transform-origin: top center;
    transition: opacity .3s, transform 1s;
    z-index: 0;
}

#tab-nav-1:checked ~ .tabsa > div:nth-of-type(1),
#tab-nav-2:checked ~ .tabsa > div:nth-of-type(2),
#tab-nav-3:checked ~ .tabsa > div:nth-of-type(3),
#tab-nav-4:checked ~ .tabsa > div:nth-of-type(4){
  transform: rotateX(0);
  opacity: 1;
  z-index: 1;
}

@media screen and (max-width: 992px) {
  .tabbedb {
    width: 100%;
}
  .tabbedb > label { display: none }
  .tabsa > div {
    width: 100%;
    border: none;
    padding: 0;
    opacity: 1;
    position: relative;
    transform: none;
    margin-bottom: 60px;
  }
  .tabs > div h2 {
    border-bottom: 2px solid #4EC6DE;
    padding-bottom: .5em;
  }
   
}

.overview-list {
    display: flex;
    justify-content: space-between;
}
.overview-list {
    display: flex;
    justify-content: space-between;
    background: #f4f4f4;
    padding: 15px 10px;
}
.over-list-one {
    color: #ff6819;
    font-size: 14px;
}
.over-list-two {
    font-size: 14px;
    text-align: end;
}
.over-slider-image {
    display: flex;
    align-items: center;
}
.over-slider-image-name {
    padding-left: 20px;
}
.over-slider-image img {
    width: 20%;
}
.over-slider-image-name span {
    color: #000;
}
.over-slider-image-name p {
    margin-bottom: 0;
}
.overview {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 40px 10px;
}
.over-perra h6 {
    padding-top: 15px;
}
[type="radio"]:checked ~ .blog-detail-tab {
    background: #000;
    z-index: 2;
    color: #fff;
}

.amenities-title {
    width: 35%;
    display: flex;
    align-items: center;
    background: #e4e4e499;
}
.amenities {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1px;
}
.amenities-title i {
    width: 55px;
    height: 60px;
    background: #ff6819;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin-right: 10px;
}

.over-slider p {
    text-align: left;
}
.amenities-title-two {
    width: 50%;
    display: flex;
    align-items: center;
    background: #e4e4e499;
}
.amenities-title-two i {
    width: 55px;
    height: 47px;
    background: #ff6819;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin-right: 10px;
}
.flight-majar-airline {
    background: #e4e4e499;
    padding: 15px 20px;
    margin-bottom: 2px;
    width: 100%;
    margin-right: 2px;
}
.take-off {
    align-items: center;
}
.take-off i {
    margin-right: 10px;
    color: #ff6819;
    font-size: 25px;
}
.flight-majar-airline h6 {
    font-weight: normal;
    font-size: 16px;
}

.flight-majar-airline span {
    font-size: 14px;
}
.tab-image img {
    width: 100%;
}
.tab-image-miltan {
    line-height: 1;
}
.tab-image-price {
    line-height: 1;
    padding-top: 17px;
}
.blog-date-year h6 {
    color: #ff6819;
    font-size: 14px;
}
.blog-date-year span {
    font-size: 14px;
}
.blog-date {
    display: flex;
    align-items: start;
}
.dpartment {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.blog-date i {
    padding-top: 3px;
    padding-left: ;
    padding-right: 6px;
}

/*--blog-detail-faqs start--*/



.accordion-container {
    position: relative;
    width: 100%;
    border-top: none;
    outline: 0;
    cursor: pointer
}

.accordion-container .article-title {
    display: block;
    position: relative;
    margin: 0;
    padding: 0.625em 0.625em 0.625em 2em;
    border-top: 1px solid #fff;
    font-size: 18px;
    font-weight: normal;
    color: #000;
    cursor: pointer;
    background: #ededed;
}

.accordion-container .article-title:hover,
.accordion-container .article-title:active,
.accordion-container .content-entry.open .article-title {
    background-color: #ff6819;
    color: white;
}

.accordion-container .article-title:hover i:before,
.accordion-container .article-title:hover i:active,
.accordion-container .content-entry.open i {
    color: white;
}

.accordion-container .content-entry i {
    position: absolute;
    top: 3px;
    left: 12px;
    font-style: normal;
    font-size: 1.625em;
    color: #000;
    
}

.accordion-container .content-entry i:before {
    content: "+ ";
}

.accordion-container .content-entry.open i:before {
    content: "- ";
}

.accordion-content {
    display: none;
    padding-left: 2.3125em;
    padding-top: 10px;
}
/* This stuff is just for the Codepen demo */

#content {
    width: 100%;
}

#description p {
    line-height: 1.5;
}

#description h2 {
    text-align: center;
}

/*========================================*/


.Itinerary-table {
    background: #f5f5f5;
    padding: 20px;
}
.Itinerary-table table {
    text-align: start;
}
.star-blog {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 5px 0;
    margin: 10px 0;
}
.star-review i {
    color: #fdb714;
}
.hotal-left-rang input {
    width: 100%;
}

.car-detail-amenities {
    display: flex;
    justify-content: space-between;
}


.cart-icon {
    color: var(--thm-color-one);
}
iframe{
    width: 100%;
}