/*------------------------------------------
Project Name : Travel In
Desgined By  : sharjeelanjum.com
Developed By : sharjeel;
Date        :  01/February/2024;

Table Of Index
------------------
1. Base css
2. Typography css
3. Header css
4. Banner css
5. Booking Form css
6. About Us css
7. Counter css
8. Services css
9. Support Team css
10. Testimonials css
11. Blog css
12. contact form css
13. Footer css
14. Media Quries css
------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-one: #ed2759;
    --secondary-color: #ed2759;
    --primary-text-color: #2d2e2f;
    --primary-five-light: #ffeddf;    
    --success-color: #0ac51a;
    --white: #ffffff;
    --black: #000000;
    --dark-bg: #282626;
    --light-bg:#fff1db;
    --soft-bg:#F6F6F6;
    --primary-size:16px;
    --heading-size:48px;
    --sub-size:24px;
    --heading-3:18px;
    --heading-4:36px;
    --heading-5:30px;
    --font-bold:700;
    --font-med:500;
    --font-semi:600;
    --font-reg:400;
    --font-heading: 'Montserrat', sans-serif;
    --font-open: "Open Sans", sans-serif;
  }




html, body {
	min-height: 100%;
}
body {
	background: #ffffff;
	font-family: var(--font-open);
}
/*---------------------------------------
   Typorgraphy              
-----------------------------------------*/

h1, h2, h3, h4, h5, h6{font-family: var(--font-heading);}
h1, h2, h4 {
	font-weight: 500;
}
h1 {
	font-size: 50px;
}
h2 {
	color: #272727;
	font-size: 36px;
	line-height: 52px;
	margin: 0px;
}
h3 {
	font-size: 16px;
	line-height: 32px;
}
h4 {
	color: #454545;
	font-size: 18px;
	line-height: 26px;
}
h5 {
	letter-spacing: 0.5px;
}
p {
	color: #555;
	font-size: 16px;
	line-height: 24px;
}
ul, ol {
	list-style: none;
	padding: 0;
	margin: 0;
}
img {
	max-width: 100%;
}
/*---------------------------------------
   Buttons               
-----------------------------------------*/

.btn-success:focus {
	background-color: #000;
	color: #ffffff;
}
.section-btn {
	background:var(--primary-one);
	border-radius: 0;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	padding: 12px 30px;
	margin-top: 22px;
	text-transform: uppercase;
	border: none;
}
.section-btn:focus, .section-btn:hover {
	background: #fff;
	color: #333;
}

.bg-grey{background: #f2f2f5;}

/*---------------------------------------
   General               
-----------------------------------------*/

html {
	-webkit-font-smoothing: antialiased;
}
a {
	transition: ease-in-out 0.3s;
	-webkit-transition: ease-in-out 0.3s;
	-moz-transition: ease-in-out 0.3s;
	-ms-transition: ease-in-out 0.3s;
	color:var(--primary-one);
	text-decoration: none !important;
}
a:hover, a:active, a:focus {
	color:var(--primary-one);
	outline: none;
}
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
*:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	border-radius: 50px !important;
  }
  
  ::-webkit-scrollbar-track {
	background: #F1F4F7;
  }
  
  ::-webkit-scrollbar-thumb {
	background: #AFB2B8;
  }
  
  ::-webkit-scrollbar-thumb:hover {
	background: #AFB2B8;
  }


.parallax-section {
	background-attachment: fixed !important;
	background-size: cover !important;
}
.section-title {
	margin: 0;
	padding-bottom: 50px;
	text-align: center;
}
.section-title h3 {
	position: relative;
	font-size: 40px;
	margin-bottom: 20px;
	font-weight: var(--font-bold);
	line-height: 42px;
}
.section-title h3 span {
	color:var(--primary-one);
	font-weight: 400;
}
.section-title p {
	max-width: 800px;
	margin: auto;
}
.parallax-section {
	padding: 16px 0;
	position: relative;
}
#counter, #service, #contact, #address {
	text-align: center;
}



.btn-primary{background-color: var(--primary-one); color: var(--white); border: none; padding:12px 25px; border-radius: 5px; font-weight: var(--font-bold); position: relative; overflow: hidden; -webkit-transition: all ease 0.3s; -moz-transition: all ease 0.3s; transition: all ease 0.3s;}


.btn-primary:before, .btn-dark:before, .connectbtn:before, .btn-sec:before{
    position: absolute;
    right: -15px;
    top: 0;
    width: 33px;
    height: 100%;
    background: var(--light-bg);
    opacity: 0.2;
    z-index: 0;
    -webkit-transform: skewX(-22deg);
    transform: skewX(-22deg);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    content: '';
}
.btn-primary:hover:before, .btn-dark:hover:before, .btn-sec:hover:before, .connectbtn:hover:before{
    right: 0;
    width: 100%;
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
}

.btn-primary:hover{background-color: #2d2e2f; color: var(--white);}


.btn-sec{background-color: #ed2759; color: var(--white); border: none; padding:12px 25px; border-radius: 5px; font-weight: var(--font-bold); position: relative; overflow: hidden; -webkit-transition: all ease 0.3s; -moz-transition: all ease 0.3s; transition: all ease 0.3s;}
.btn-sec:hover{background-color: #2d2e2f; color: var(--white);}


.btn-dark{background-color:var(--dark-bg); border: none; color: var(--white); padding:12px 30px; border-radius:7px; display: inline-block; font-weight: var(--font-bold); text-decoration: none; position: relative; overflow: hidden; -webkit-transition: all ease 0.3s; -moz-transition: all ease 0.3s; transition: all ease 0.3s;}
.btn-dark:hover{background-color: var(--primary-one); color: var(--white);}

.btn-white{background-color:#ed2759; border: 1px solid #ed2759; color: white; padding:11px 30px; border-radius:7px; display: inline-block; font-weight: var(--font-bold); text-decoration: none; position: relative; overflow: hidden; -webkit-transition: all ease 0.3s; -moz-transition: all ease 0.3s; transition: all ease 0.3s;}
.btn-white:before{
    position: absolute;
    right: -15px;
    top: 0;
    width: 33px;
    height: 100%;
    background: var(--primary-one);
    opacity: 0.2;
    z-index: 0;
    -webkit-transform: skewX(-22deg);
    transform: skewX(-22deg);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    content: '';
}
.btn-white:hover:before{
    right: 0;
    width: 100%;
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
    background: var(--light-bg);
}
.btn-white i{margin-right: 5px; color: #9ea4ab;}
.btn-white:hover{background-color: var(--dark-bg); color: var(--white);}



.btn-grey{background-color:#eee; border: 1px solid #ddd; color: var(--black); padding:11px 30px; border-radius:7px; display: inline-block; font-weight: var(--font-bold); text-decoration: none; position: relative; overflow: hidden; -webkit-transition: all ease 0.3s; -moz-transition: all ease 0.3s; transition: all ease 0.3s;}
.btn-grey:before{
    position: absolute;
    right: -15px;
    top: 0;
    width: 33px;
    height: 100%;
    background: var(--black);
    opacity: 0.1;
    z-index: 0;
    -webkit-transform: skewX(-22deg);
    transform: skewX(-22deg);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    content: '';
}
.btn-grey:hover:before{
    right: 0;
    width: 100%;
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
    background: var(--light-bg);
}
.btn-grey i{margin-right: 5px; color: #9ea4ab;}
.btn-grey:hover{background-color: var(--dark-bg); color: var(--white);}




/*---------------------------------------
     Navigation section              
-----------------------------------------*/
.header-wrap{padding:0px; border-bottom: 1px solid #eee;}
.logo{margin-top: 5px;}
.header-wrap .navbar{padding: 0; margin-top:0;}
.navbar-nav li{padding: 0px 20px 0px 20px;} 
.navbar-expand-lg .navbar-nav .nav-link{padding:10px 0; font-size: 16px; font-weight: var(--font-med); font-family: var(--font-heading); position: relative;}
.navbar-light .navbar-nav .nav-link:after{width: 0; height: 3px; background-color:var(--primary-one); content:''; position: absolute; bottom: 0; left: 0; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; transition: all .3s ease;}
.navbar-light .navbar-nav > .nav-link.active:after, .navbar-nav li:hover > .nav-link:after{width:100%;}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link{color: var(--primary-one);}
.navbar-expand-lg .navbar-nav .nav-link{color:var(--primary-text-color);}
.navbar-expand-lg .navbar-nav > .nav-link:hover{color:var(--primary-one);} 
.navbar-light .navbar-toggler{display: none;}
.close-toggler{display: none;}

.navbar-nav li.dropdown img{width: 40px; height: 40px; border-radius: 50%;}

.header-wrap .navbar .dropdown-menu {
	padding: 10px 5px;
	min-width: 300px;
	top: 100% !important;
	left: auto !important;
	right: 0;
	box-shadow: 0 4px 13px -5px rgba(0, 0, 0, 0.5);
	border-color: #ddd;
  }


.sticky-wrapper {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000
}
.navbar {
	border-radius: 0;
}
.custom-navbar {
	border: none;
	margin-bottom: 0;
	padding: 6px 0;
	width: 100%;
}
.is-sticky .custom-navbar {
	background: #fff;
	-moz-box-shadow: 0 10px 33px rgba(0,0,0,.1);
	-webkit-box-shadow: 0 10px 33px rgba(0,0,0,.1);
	box-shadow: 0 10px 33px rgba(0,0,0,.1);
}
.custom-navbar .navbar-brand {
	color: #fff;
	font-weight: bold;
	font-size: 32px;
	line-height: 35px;
}
.custom-navbar .navbar-brand span {
	color:var(--primary-one);
}
.custom-navbar .nav li a {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	line-height: 40px;
	letter-spacing: 0.3px;
	padding-right: 20px;
	padding-left: 20px;
	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.4s;
}
.custom-navbar .nav li a:hover {
	background: transparent;
	color: #ffffff;
}
.custom-navbar .nav li .calltxt {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	display: block;
	margin-top: 15px;
	border: 1px dashed #fff;
	padding: 7px 20px;
	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.4s;
}
.is-sticky .custom-navbar .nav li a {
	color: #999;
}
.is-sticky .custom-navbar .nav li a:hover {
	color: #333;
}
.is-sticky .custom-navbar .navbar-brand {
	color:var(--primary-one);
	line-height: 20px;
}
.is-sticky .custom-navbar .navbar-brand span {
	color: #333;
}
.is-sticky .custom-navbar .nav li .calltxt {
	background:var(--primary-one);
	border-color:var(--primary-one);
	margin-top: 10px;
	color: #fff;
}
.custom-navbar .navbar-nav > li > a:hover, .custom-navbar .navbar-nav > li > a:focus {
	background-color: transparent;
}
.custom-navbar .nav li.active > a {
	background-color: transparent;
	color:var(--primary-one);
}
.custom-navbar .navbar-toggle {
	border: none;
	padding-top: 10px;
}
.custom-navbar .navbar-toggle {
	background-color: transparent;
}
.custom-navbar .navbar-toggle .icon-bar {
	background:var(--primary-one);
	border-color: transparent;
}
.navbar-collapse.in {
	overflow: visible;
	max-height: none;
	background:var(--primary-one);
	padding: 0 30px;
}
.navbar-collapse.in .nav li.active a {
	color: #000;
}
.is-sticky .custom-navbar .nav li a {
	line-height: 24px;
}
 @media(min-width:768px) {
.custom-navbar {
	border-bottom: 0;
}
.custom-navbar.top-nav-collapse {
	background: rgba(0,0,0,0.7);
	padding: 6px 0;
}
}
/*---------------------------------------
    Home section              
-----------------------------------------*/

#home {
	background: url(../images/home-bg.jpg) no-repeat bottom;
	background-size: cover;
	color: #ffffff;
	position: relative;
	min-height: 750px;
}
#home h3 {
	color: #f0f0f0;
}
#home .overlay {
	background: rgba(0,0,0,0.3);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.slide-text {
	margin-top: 70px;
	text-align: center;
	margin-bottom: 40px;
}
.slide-text h1 {
	margin-top: 0;
	font-weight: var(--font-bold);
}
.slide-text h3 {
	font-size: 30px;
}
.slide-text p {
	color: #fff;
	line-height: 24px;
	max-width: 770px;
	margin: 0 auto;
	font-size: 24px;
}
.slide-text h3 a span.wrap {
	background: #fff;
	padding: 7px 20px;
}
#js-rotating {
	border: 1px solid #fff;
	padding: 10px 20px;
	display: inline-block;
}
.fade-text{margin-top: 30px; text-align: center;}
.fade-text h3 a span.wrap {
	color: #ed2759;
}
.fade-text h3 {
	font-size: 30px;
}

/*Banner Form*/

.nav-tabs{margin-bottom: 0; border-bottom: none;}
.nav-tabs .nav-link{background: #ed2759; color: var(--white); border: none; margin-right: 5px; margin-bottom: 0; padding: 10px 25px;}
.nav-tabs .nav-link.active{color: var(--primary-one);}



.searchintbox{background: #fff; padding: 20px;}
.searchintbox label{color: #333; text-align: left; display: block; font-size: 16px; font-weight: 700; margin-bottom: 5px;}

.form-control {
    width: 100%;
    height: 50px;
    line-height: 50px;
    border: 1px solid rgba(4, 0, 23, 0.1);
    border-radius: 6px;
    padding: 0 20px;
    font-size: 14px;
    color: rgba(4, 0, 23, 0.6);
    appearance: revert;
}

.bformBox {
	background:var(--primary-one);
	padding: 40px;
	position: relative;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}
.bformBox.nomr {
	margin-top: 0;
}
.bformBox h3 {
	color: #fff;
	margin: 0 0 30px 0;
	text-align: center;
	font-size: 36px;
	font-weight: 700;
}
.bformBox .formrow {
	margin-bottom: 20px;
}
.bformBox .formrow .form-control {
	height: auto;
	border-radius: 0;
	padding: 10px 15px;
	font-size: 22px;
	border-color: #ddd;
	box-shadow: none;
	color: #999;
	border: none;
	background: #fff;
}
.bformBox .formrow textarea.form-control {
	height: 100px;
}
.bformBox .formrow .bootstrap-select {
	padding: 0;
	background: none;
}
.bformBox .formrow .dropdown-toggle {
	padding: 10px 15px;
	border-radius: 0;
	font-size: 22px;
	color: #999;
	border: none;
	z-index: 1;
}
.bformBox .formrow .dropdown-toggle:hover, .bformBox .formrow .dropdown-toggle:active, .bformBox .formrow .dropdown-toggle:focus {
	background: #fff;
}
.bformBox .input-group-addon {
	background: #eee;
	color: #444;
	font-size: 16px;
	border-color: #eee;
	padding: 6px 20px;
}
.formrow .dropdown-menu .form-control {
	border: 1px solid #ddd;
	font-size: 16px;
	margin-bottom: 10px;
}
.formbtn {
	text-align: center;
	margin-top: 10px;
}
.formbtn .btn {
	background: #333;
	font-size: 18px;
	color: #fff;
	padding: 12px 30px;
	text-transform: uppercase;
	border-radius: 0;
	font-weight: 700;
}
.formbtn .btn:hover {
	background: rgba(0,0,0,0.5);
}
/*---------------------------------------
   Cars List section              
-----------------------------------------*/
.destinationList ul li h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-one);
	margin: 0;
	padding: 15px 0 0px 0;
}
.destinationList ul li .subtitle {
	color: #888;
	text-transform: uppercase;
	font-size: 14px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 20px;
}
.destinationList ul li .subtitle:after {
	position: absolute;
	width: 40px;
	height: 5px;
	background: var(--primary-one);
	content: '';
	left: 0;
	bottom: 0;
}

.destinationList ul li{margin-bottom: 30px;}
.locwrap {
	font-size: 14px;
}
.destinationList ul li .imgbox {
	overflow: hidden;
	border-radius: 10px;
}
.destinationList ul li .imgbox img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	width: 100%;
}
.destinationList ul li:hover .imgbox img {
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.comprating i{color: #ed2759;}
.comprating{font-size: 14px; margin-bottom:7px;}
.location {
	padding: 0 0 10px 0;
	color: #999;
}
.locwrap .meta {
	padding:0 0 10px 0;
}
.locwrap .meta span {
	display: inline-block;
	margin-bottom: 10px;
	margin-right: 4px;
	padding: 10px;
	border: 1px solid #eee;
	color: #777;
	border-radius: 5px;
}
.locwrap .meta span i {
	color: #888;
}
.locwrap .prices {
	padding:0 0 15px 0;
	font-size: 30px;
	line-height: 30px;
	font-weight: 700;
	color: #ed2759;
}
.locwrap .prices span{font-size: 16px; font-weight: 400; color: #555;}
.locwrap .buttons {
	padding:0;
}
.locwrap .buttons a {
	display: inline-block;
	background: #555;
	color: #fff;
	padding: 10px 20px;
	border-radius: 40px;
	font-size: 16px;
}
.locwrap .buttons a:hover {
	background:var(--primary-one);
}

.owl-nav{text-align: center; margin-top: 20px;}
.owl-nav button.owl-prev, .owl-nav button.owl-next{width:36px; height:36px; border: 1px solid #eee !important; border-radius: 50%;  margin: 0 5px; background: #fff !important;}
.owl-nav button span{line-height: 30px; display: block; color: #000;}
.owl-nav button:hover{border-color: var(--primary-one) !important;}

/* Flights */
.flightbox{background: #fff; border-radius: 10px; margin-bottom: 30px; transition: all 0.5s ease; overflow: hidden; border: 1px solid #eee;}
.flightimg{position: relative;}
.flightint{padding: 20px;}
.flightbox:hover{box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;}
.flightcom{margin:15px; width: 50px; height: 50px; border: 1px solid #eee; border-radius: 50%; background: #fff; overflow: hidden;}

.flightcom img{width: 50px; height: 50px; object-fit: contain;}
.flightcom a{font-weight: var(--font-bold); color: var(--primary-one);}
.flightbox h3{line-height: 24px; margin-bottom: 10px;}
.flightbox h3 a{font-size: 20px; color: #000;}
.flightbox h3 a:hover{color: var(--secondary-color);}
.flightbox p{margin-bottom:5px; color: #666;}
.flightbox p i, .cabine i{color: #999;}
.cabine{color:#ed2759; margin-bottom: 5px;}
.flightbox .price{font-size: 16px; margin-bottom: 10px;}
.flightbox .price strong{font-size: 20px; color: var(--primary-one);}
.flightbox .btn-primary{padding: 10px 20px; font-size: 14px;}


/* Destinations */
.destibox{text-align: center; margin-bottom: 30px;}
.destimg{width: 180px; height: 180px; border-radius: 50%; overflow: hidden; margin: 0 auto;}
.destimg img{transition: .6s;     object-fit: cover;}
.destibox:hover .destimg img {
    transform: scale(1.15);
}
.destibox h4{font-size: 18px; font-weight: var(--font-bold); margin-top: 10px;}



/* Widgets */
.hotelwidget{background: url(../images/book-hotels.jpg) no-repeat; background-size: cover; padding: 60px; border-radius: 15px; height:500px;}
.hotelwidget h2, .fligtwidget h2{font-weight: var(--font-bold); font-size: 60px; color: var(--white); margin-bottom: 10px;}
.hotelwidget h3, .fligtwidget h3{font-size:36px; color: var(--white); margin-bottom: 30px; line-height: 40px;}



.fligtwidget{background: url(../images/book-flight.jpg) no-repeat; background-size: cover; padding: 60px; border-radius: 15px; height:500px;}

.topaircompany a{display: block; border: 1px solid #eee; text-align: center; padding: 10px; border-radius: 5px;}
.topaircompany a img{display: inline-block; height: 64px;}


.searchfilter h4{font-weight: 700; font-size: 20px; margin-bottom: 15px;}
.txtfilter li{margin-bottom: 10px;}
.txtfilter li a{font-size: 14px; color: #333;}

ul.hotelslist li{margin-bottom: 0;}


/*---------------------------------------
   Counter section              
-----------------------------------------*/

#counter {
	background: #f2f2f5;
	background-size: cover;
	background-attachment: fixed;
	padding: 40px 0
}
.animatebg {
	background: #0562da;
	-webkit-animation: bannerbg 5s linear 2s infinite alternate; /* Safari 4.0 - 8.0 */
	animation: bannerbg 5s linear 2s infinite alternate;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes bannerbg {
 0% {
background-color:#0562da;
}
 25% {
background-color:#fec107;
}
 50% {
background-color:#c90157;
}
 75% {
background-color:#00bef9;
}
 100% {
background-color:#00bef9;
}
}

/* Standard syntax */
@keyframes bannerbg {
 0% {
background-color:#0562da;
}
 25% {
background-color:#fec107;
}
 50% {
background-color:#c90157;
}
 75% {
background-color:#00bef9;
}
 100% {
background-color:#00bef9;
}
}
#counter .counter-number {
	display: block;
	color: #181717;
	font-size: 60px;
	line-height: 60px;
	font-weight: var(--font-bold);
}
#counter span {
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
}
.counter-icon {
	font-size: 60px;
	margin-bottom: 5px;
	color: #ed2759;
}
/*********************************************
		Revolution slider options
**********************************************/
.tp-banner-container {
	position: relative;
z-index:;
	padding: 0;
	width: 100%;
}
.tp-banner {
	position: relative;
	width: 100%;
}
.tp-banner ul {
	padding: 0;
	margin: 0;
}
.tp-caption {
	line-height: normal !important
}
.tp-caption a {
	color: inherit !important;
}
.tp-bullets.simplebullets.round .bullet {
	border: 3px #fff solid;
	border-radius: 50%;
	background-image: none !important;
}
.tparrows {
	width: auto !important;
	height: auto !important;
	background-image: none !important;
}
.tp-arr-allwrapper {
	margin: 0 10px;
	width: 50px;
	height: 60px;
}
.tp-arr-allwrapper:hover .tp-arr-iwrapper {
	color: #fff;
}
.tp-arr-iwrapper {
	color: #fff;
	text-align: center;
	font-size: 30px;
	font-family: 'FontAwesome';
	line-height: 60px;
}

.tp-leftarrow .tp-arr-iwrapper:before {
	content: "\f104";
}
.tp-rightarrow .tp-arr-iwrapper:before {
	content: "\f105";
}

.slide-h1 {
	margin: 5px 0 !important;
	padding: 0 0 10px !important;
	padding-bottom: 5px !important;
	color: #444;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 57px;
}
.slide-h2 {
	margin: 5px 0 !important;
	padding: 0 0 10px !important;
	padding-bottom: 5px !important;
	color: #555;
	font-weight: bold;
	font-size: 55px;
	line-height: 100%;
}
.big-font {
	text-transform: uppercase;
	font-weight: 800;
	font-size: 60px;
}
.large-desc {
	font-size: 16px;
}
.slide-h3 {
	color: #fff;
	font-size: 31px;
	line-height: 100%;
}
.slide-h3 span {
	text-transform: uppercase;
	font-weight: bold;
}
.slide-head {
	text-transform: uppercase;
	font-weight: 900;
	font-size: 30px;
}
.slide-desc {
	font-size: 22px;
	line-height: 150%;
}
.main-title {
	text-transform: uppercase;
	font-weight: 800;
	font-size: 70px;
}
.icon-cont {
	padding: 15px 40px;
	border-radius: 10px;
	text-align: center;
}
.icon-cont:after {
	position: absolute;
	bottom: -10px;
	left: 40%;
	z-index: 5;
	display: inline-block;
	width: 0;
	height: 0;
	border-width: 10px 10px 0 10px;
	border-style: solid;
	content: "";
}
.icon-cont i {
	margin-bottom: 10px;
	color: #fff;
	font-size: 50px;
}
.icon-cont span {
	display: block;
	padding: 0 0 5px;
	color: #fff;
	text-align: center;
	font-size: 18px;
}
a.wit-btn {
	background: #fff;
	color: #333 !important;
	text-transform: uppercase;
}
.wit-line {
	width: 5%;
	height: 1px;
	background: #fff;
}
.vert-line {
	min-height: 270px;
	width: 1px;
	background: #fff;
}
.subTxt {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 17px;
	color: #333;
}
.large-title {
	color: #222;
	font-size: 60px;
	font-weight: 800;
	text-transform: uppercase !important;
}
.large-light-title {
	color: #787878 !important;
	font-size: 70px;
	font-weight: lighter;
	text-transform: uppercase;
	letter-spacing: 2px
}
.large-text {
	font-size: 20px;
	color: #000;
	font-weight: lighter;
}
.larger-text {
	font-size: 24px;
	font-weight: lighter;
	text-transform: uppercase;
}
.witTxt {
	color: #fff !important;
}
.light-font {
	font-weight: lighter !important;
	font-size: 50px;
}
.black-bg {
	background: rgba(0,0,0,.63);
	color: #a8a8a8;
	text-transform: none;
}
.lft-list {
	padding: 10px;
	font-size: 18px;
	color: #fff;
}
.wit-border {
	border: 1px #fff solid;
	padding: 15px 60px;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
}
.rounded-bord {
	margin-right: 15px;
	border: 1px #fff solid;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-size: 13px;
	border-radius: 50%;
}
#vertical-ticker {
	height: 120px;
	overflow: hidden;
}
#vertical-ticker li {
	padding: 15px 20px;
	display: block;
	text-align: center;
}
.to-bottom i.fa {
	font-size: 30px;
	border: 2px #a8a8a8 solid;
	padding: 20px 22px;
	border-radius: 50%;
	-webkit-animation: bounce 2s infinite linear;
	animation: bounce 2s infinite linear;
}
.slidertext1 {
	color: #fff;
	font-size: 50px;
	font-weight: 700;
	padding: 15px 0;
	text-transform: none !important;
	font-family: 'Roboto', sans-serif;
}
.slidertext1 span {
	color:var(--primary-one);
}
.slidertext2 {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	padding: 15px 0;
	text-transform: none;
	font-family: 'Roboto', sans-serif;
}
.sliderpara {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	padding: 15px 0;
	text-transform: none !important;
}
.sliderbtn a {
	color: #fff !important;
}
.sliderbtn a:hover {
	color: #000 !important;
}
.tp-bannertimer {
	display: none;
}
 @-webkit-keyframes bounce {
 0% {
 transform:translateY(0%);
}
 50% {
 transform:translateY(-30%);
}
 100% {
 transform:translateY(0);
}
}

/* Mozilla Firefox 15 below */
@-moz-keyframes bounce {
 0% {
 transform:translateY(0%);
}
 50% {
 transform:translateY(-30%);
}
 100% {
 transform:translateY(0);
}
}

/* Opera 12.0 */
@-o-keyframes bounce {
 0% {
 transform:translateY(0%);
}
 50% {
 transform:translateY(-30%);
}
 100% {
 transform:translateY(0);
}
}

/* W3, Opera 12+, Firefox 16+ */
@keyframes bounce {
 0% {
 transform:translateY(0%);
}
 50% {
 transform:translateY(-30%);
}
 100% {
 transform:translateY(0);
}
}
/*---------------------------------------
    About section              
-----------------------------------------*/

#about {
	padding: 70px 0;
}
.about-desc .section-title{text-align: left; padding-bottom: 0px;}

.about-desc h2 {
	font-size: 36px;
	text-align: center;
	color: #272727;
	font-weight: 500;
	margin-bottom: 30px;
}
#about .about-desc h4 {
	margin-top: 0px;
	padding-bottom: 8px;
}

#about .about-desc a {
	color: #565656;
}
#about .about-desc a:hover {
	color:var(--primary-one);
}
.postimg2 {
	margin-top: 40px;
}
.circleList {
	list-style: none;
}
.circleList li {
	text-align: center;
	margin-bottom: 0;
}
.circleList li .cricle {
	color: #fff;
	font-size: 36px;
	text-align: center;
	margin: 0 auto;
	background:#ed2759;
	padding: 15px 25px;
	display: inline-block;
	border-radius: 5px;
}
.circleList li .title {
	font-size: 18px;
	margin-top: 15px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #000;
}
.circleList li p {
	font-size: 16px;
}
#about .team-wrapper {
	position: relative;
	margin: 0;
	padding: 0;
}
#about .team-wrapper h2 {
	color: #353535;
	font-size: 26px;
	line-height: 32px;
}
#about .team-wrapper strong {
	color:var(--primary-one);
	font-weight: 600;
}
#about .team-wrapper img {
	border-radius: 2px;
	width: 100%;
}
#about .team-wrapper .team-desc {
	background: rgba(250,250,250,0.5);
	position: absolute;
	cursor: crosshair;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	padding: 20em 4em 0 0;
	transition: all 0.4s ease-in-out;
	text-align: right;
}
#about .team-wrapper:hover .team-desc {
	opacity: 1;
	transform: scale(1.1);
}
ul.orderlist {
	list-style: none;
	margin: 20px 0 0 0;
	padding: 0
}
ul.orderlist li {
	color: #333;
	font-size: 16px;
	position: relative;
	padding: 10px 0;
	padding-left: 45px;
	line-height: 30px;
	font-weight: 700;
}
ul.orderlist li:before {
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	font-weight: 900;
	left: 0;
	vertical-align: middle;
	color: #fff;
	background: #ed2759;
	padding: 4px 8px;
	border-radius: 5px;
	line-height: 24px;
}

ul.orderlist li:nth-child(2):before{background: #ed2759;}
ul.orderlist li:nth-child(3):before{background: var(--black);}
ul.orderlist li:nth-child(4):before{background: var(--success-color);}




/*********************************************
			Services Start
**********************************************/
.servicesbox {
	padding: 100px 0;
}
.servicesbox h3 {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 30px 0;
	position: relative;
}
.servicesbox p {
	color: #fff;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	line-height: 26px;
	font-weight: 300;
	margin-top: 10px;
}
.servicesbox .readmore {
	display: inline-block;
	padding: 15px 30px;
	color: #fff;
	margin-top: 30px;
	text-transform: uppercase;
	font-weight: 600;
	background:var(--secondary-color);
	border-radius:10px;
}
.servicesbox .readmore i {
	font-weight: 400;
	margin-left: 10px;
}
.servicesbox .readmore:hover {
	background: #fff;
	color: #333;
	text-decoration: none;
}
.dark h3 {
	color: #000;
}
.dark p {
	color: #000;
}
.bg1 {
	background: url(../images/service-bg-1.jpg) no-repeat left;
	background-size: cover;
	background-attachment: fixed;
}

.videobox{background: #fff; padding: 20px; border-radius: 10px;}


/*---------------------------------------
   			How it works         
-----------------------------------------*/
.howitwrap {
	position: relative;
}
.howitwrap .section-title {
	text-align: left;
	padding-bottom: 15px;
}
.howitwrap .section-title h3:after {
	left: 0;
	margin-left: 0
}
.howitwrap .section-title h3:before {
	left: 26px;
	margin-left: 0
}
.howlist {
	list-style: none;
	margin-bottom: 20px;
}
.howlist li {
	margin-top: 30px;
}
.howlist li .howbox:after {
	display: table;
	clear: both;
	content: '';
}
.howlist li .iconcircle {
	margin-bottom: 15px;
	float: left;
	margin-right: 30px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background:var(--primary-one);
	text-align: center;
	line-height: 50px;
}
.howlist li .iconcircle i {
	font-size: 24px;
	color: #fff;
	margin-top: 22px;
	display: block;
}
.howlist li h4 {
	font-size: 18px;
	font-weight: 700;
	color: #444;
	margin-bottom: 5px;
}
.howlist li p {
	font-size: 16px;
	line-height: 24px;
	color: #555;
}
.fullimg {
	height: 650px;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
	width: 50%;
	float: left;
}
.stcontent {
	float: left;
	padding: 50px;
	width: 50%;
}
/*---------------------------------------
   Service section              
-----------------------------------------*/

#service .service-thumb {
	margin-bottom: 30px;
	background:#f2f2f5;
	padding: 30px;
	transition: ease-in-out 0.3s;
	-webkit-transition: ease-in-out 0.3s;
	-moz-transition: ease-in-out 0.3s;
	-ms-transition: ease-in-out 0.3s;
	border-radius: 10px;
}
#service .service-thumb:hover {
	background: ##f2f2f5;
}
#service .service-thumb h4 {
	color: black;
	font-size: 24px;
	margin-bottom: 10px;
}
#service .thumb-icon {
	background: #ed2759;
	width: 70px;
	height: 70px;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 15px;
	margin-top: 10px;
	transition: ease-in-out 0.3s;
	-webkit-transition: ease-in-out 0.3s;
	-moz-transition: ease-in-out 0.3s;
	-ms-transition: ease-in-out 0.3s;
	border-radius: 5px;
}
#service .service-thumb:hover .thumb-icon {
	background:#ed2759;
}
#service .service-thumb p {
	color: black;
	margin-bottom: 0;
}
#service .fas {
	font-size: 24px;
	margin-top: 22px;
	color: #fff;
}
/*---------------------------------------
    Team section              
-----------------------------------------*/
#team {
	background: #fff;
}

.team-thumb{padding: 25px; box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px; border-radius: 10px;}

#team .thumb-image {
	margin-bottom: 15px;
	overflow: hidden;
	transition: ease-in-out 0.3s;
	-webkit-transition: ease-in-out 0.3s;
	-moz-transition: ease-in-out 0.3s;
	-ms-transition: ease-in-out 0.3s;
}

#team .team-thumb h4 {
	margin: 0 0 5px 0;
	color: #000;
	font-size: 24px;
	font-weight: var(--font-bold);
}
#team .team-thumb p {
	padding: 0 15px;
}
#team .team-thumb h5 {
	color: #777;
	margin: 0 0 10px 0;
	font-weight: 400;
	font-size: 16px;
}
#team .team-thumb img {
	width: 100%;
}
#team .contct {
	color: #666;
	padding: 6px 0;
}
#team .contct i {
	color:#ed2759;
	margin-right: 7px;
}
/* Social */
.social {
	margin-top: 15px;
	margin-bottom: 0;
}
.social li{display: inline-block;}
.social li a {
	display: block;
	height: 36px;
	width: 36px;
	border-radius: 5px;;
	color: #fff !important;
	line-height: 36px;
	text-align: center;
	text-decoration: none !important;
	background:#ed2759;
}
.social li a:hover {
	background: #333;
}
/*---------------------------------------
    Testimonials section              
-----------------------------------------*/
#testimonials {
	/* color: #fff; */
    padding: 50px 0;
    /* background: #555 url(../images/testimonial-bg.jpg) no-repeat center; */
    /* background-size: cover; */
    background-attachment: fixed;
}
.testibox{-webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    background: hsla(0,0%,100%,.11);
    border-radius: 20px;
	padding: 50px;
}
#testimonials h2 {
	color: #555;
}
#testimonials .section-title {
	padding-bottom: 30px;
}
.testimonialsList {
	list-style: none;
}
.testimonialsList li {
	text-align: center;
	margin: 0 0 15px 0;
}
.testimonialsList li .clientname {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin-top: 10px;
}
.testimonialsList li p {
	font-style: italic;
	line-height: 26px;
	color: #fff;
	max-width: 770px;
	margin: 0 auto;
	font-size: 18px;
}
.testimonialsList li .clientinfo {
	font-weight: 400;
	color: #ed2759;
}
#testimonials .section-title p {
	font-size: 18px;
	color: #fff;
}
.testimonialsList li .rating {
	color: #ed2759;
	font-size: 24px;
	margin-bottom: 10px;
}
/*---------------------------------------
    Taglinewrap section              
-----------------------------------------*/
.taglinewrap {
	background: #222 url(../images/tagline-bg.jpg) no-repeat;
	background-size: cover;
	background-attachment: fixed;
	text-align: center;
	padding: 60px 0;
}
.taglinewrap h4 {
	color: #fff;
	margin-bottom: 0;
	font-size: 18px;
	letter-spacing: 5px;
}
.taglinewrap h2 {
	color: #fff;
	margin-bottom: 15px;
	font-size: 48px;
	font-weight: 400;
}
.taglinewrap p {
	color: #ccc;
	max-width: 800px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 26px;
}
.taglinewrap a {
	display: inline-block;
	background:#ed2759;
	padding: 15px 35px;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 25px;
}
.taglinewrap a:hover {
	background: #fff;
	color: #000;
}


.homevideobox{position: relative; overflow: hidden; height: 600px;}
.homevideocontent{position: absolute; left: 0; right: 0; top: 0; bottom: 0; background: rgba(0,0,0,0.4); text-align: center;}
.homevideocontent h3{font-size: 36px; color: #ed2759; margin-top: 160px; font-weight: 700; margin-bottom: 20px;}
.homevideocontent p{color: #fff; font-size: 16px; max-width: 800px; margin: 0 auto;}


/************************************************
           == Home Blog css ==
*************************************************/
.hmblog .seprator {
	text-align: center;
}
.hmblog .mainblogpost {
	position: relative;
}
.hmblog .postimg:before {
	left: 20px;
	right: 20px;
	bottom: 20px;
	top: 20px;
	content: '';
	border: 1px solid rgba(255,255,255,0.3);
	z-index: 10;
	position: absolute;
}
.hmblog .postimg {
	overflow: hidden;
}
.hmblog .postimg img {
	display: block;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	width: 100%;
}
.subposts:hover img, .mainblogpost:hover img {
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.hmblog .postinfo {
	position: absolute;
	z-index: 20;
	left: 60px;
	bottom: 50px;
	right: 60px;
}
.hmblog .postinfo h3 a {
	display: block;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.hmblog .date {
	background:#ed2759;
	padding: 15px 20px;
	width: 80px;
	text-align: center;
	color: #fff;
	position: absolute;
	bottom: -17px;
    left: 36px;
	z-index: 10;
}
.hmblog .date strong {
	display: block;
	font-size: 30px;
}
.hmblog .date span {
	display: block;
	font-size: 18px;
	text-transform: uppercase;
}
.subposts {
	position: relative;
	margin-bottom: 30px;
}
.hmblog .subposts .postinfo h3 {
	line-height: 24px;
}
.hmblog .subposts .postinfo h3 a {
	font-size: 18px;
	text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.hmblog .subposts .date {
	width: auto;
	padding: 7px 15px;
	text-align: left;
	margin: 10px 0 0 0;
	display: inline-block;
	text-transform: uppercase;
	font-weight: bold;
}
.hmblog .subposts .postinfo {
	left: 40px;
	right: 40px;
	bottom: 35px;
}
/* =======================
		Blog Grid
======================= */
#blog {
	padding: 60px 0 50px 0;
}
.blogGrid {
	list-style: none;
}
.blogGrid li {
	margin-bottom: 30px;
}
.blogGrid li .postimg {
	position: relative;
	display: block;
	margin: 0;
	overflow: hidden;
}
.blogGrid li .postimg img {
	width: 100%;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.blogGrid li:hover .postimg img {
	-ms-transform: scale(1.2) rotate(5deg);
	-moz-transform: scale(1.2) rotate(5deg);
	-webkit-transform: scale(1.2) rotate(5deg);
	-o-transform: scale(1.2) rotate(5deg);
	transform: scale(1.2) rotate(5deg);
}
.postimg .date {
	font-weight: bold;
	font-size: 15px;
	color: #999;
	line-height: 20px;
}
.blogGrid li .post-header {
	margin-bottom: 15px;
	background: #333;
	padding: 25px;
}
.blogGrid li .post-header .date {
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.15);
	padding-bottom: 10px;
}
.blogGrid li .post-header .date i {
	margin-right: 5px;
}
.blogGrid li .post-header h4 a {
	color:var(--primary-one);
}
.blogGrid li .post-header h4 a:hover {
	text-decoration: underline;
	color: #fff;
}
.blogGrid li p {
	font-size: 14px;
}
.blogGrid .readmore {
	display: inline-block;
	margin-top: 25px;
	color: #fff;
	font-weight: 600;
	padding: 10px 20px;
	background:var(--primary-one);
}
.blogGrid .readmore i {
	margin-left: 7px;
}
.blogGrid .readmore:hover {
	text-decoration: none;
	background: #000
}
.postmeta {
	margin: 10px 0 0 0;
	line-height: 24px;
	color: #999;
}
.postmeta span, .postmeta a {
	color: #fff;
	display: inline-block;
	margin-right: 10px;
}
/*---------------------------------------
    Contact section              
-----------------------------------------*/
#contact {
	padding: 50px 0;
}
.contact {
	margin-bottom: 30px;
	border: 1px solid #eee;
	padding: 20px;
	text-align: left;
	background: #f9f9f9;
}
.contact > span {
	color:var(--primary-one);
	float: left;
	font-size: 30px;
	line-height: 55px;
	text-align: center;
	width: 60px;
	height: 60px;
	border: 1px solidvar(--primary-one);
	background: #fff;
}
.inner-page .fa-home:before {
	content: "\f015";
}
.information {
	margin-top: 5px;
	padding-left: 80px;
}
.information > strong {
	color: #000;
	display: table;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.information > p {
	line-height: 22px;
	margin: 0;
}
.contact-form {
	position: relative;
}
.contact-form h4 {
	text-align: left;
	color: #333;
	font-size: 36px;
	margin: 0 0 30px 0;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
}
.contact-form h4 span {
	color:var(--primary-one);
	font-weight: 400;
}
#contact .form-control {
	border-color: transparent;
	border-radius: 0;
	box-shadow: none;
	font-size: 18px;
	margin-bottom: 30px;
	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.4s;
}
#contact input {
	border: 2px solid #f0f0f0 !important;
	height: 55px;
}
#contact input:focus, #contact textarea:focus {
	border-color:var(--primary-one) !important;
}
#contact textarea {
	background: #fff;
	border: 2px solid #f0f0f0 !important;
}
#contact button#submit {
	background-color:var(--primary-one);
	border: none;
	color: #ffffff;
	padding: 10px 30px;
	border-radius: 0;
	height: auto;
	width: 100%;
	font-weight: 700;
	text-transform: uppercase;
}
#contact button#submit:hover {
	background: #555;
	color: #ffffff;
}
#map {
	width: 100%;
	height: 400px;
	border: none;
	display: block;
	pointer-events: none;
}
.frmap {
	margin-top: 10px;
}
/*---------------------------------------
    Address section              
-----------------------------------------*/

#address {
	color: #333;
	text-align: left;
	margin-top: 10px;
}
#address .fa {
	font-size: 42px;
	color:var(--primary-one);
	float: left;
	width: 50px;
	height: 70px;
	margin-right: 15px;
}
#address h4 {
	color: #444;
	margin: 0;
}
#address p {
	color: #888;
	margin-bottom: 0
}
.address-office, .address-phone, .address-email {
	margin-bottom: 30px;
	clear: both;
	border: 1px solid #ddd;
	background: #fff;
	padding: 20px;
	min-height: 120px;
}
/*---------------------------------------
   Newsletter
-----------------------------------------*/
.newsletter {
	background:var(--primary-one);
	padding: 50px 0;
}
.newsletter h3 {
	margin: 0;
	font-size: 30px;
	font-weight: var(--font-bold);
}
.newsletter h3, .newsletter p {
	color: #fff;
	margin: 0;
}
.newsletter .input-group {
	max-width: 675px;
	margin: 0 auto;
}
.newsletter .input-group:before {
	content: '\f0e0';
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	left: 20px;
	top: 12px;
	color: #999;
	font-size: 24px;
	z-index: 100;
	font-weight: 900;
}
.newsletter .form-control {
	height: auto;
	padding: 10px 15px 10px 60px;
	font-size: 16px;
	border-radius: 0;
	line-height: normal;
	border: none;
}
.newsletter .btn {
	background: var(--secondary-color);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	padding:15px 30px;
	cursor: pointer;
	border: none;
	color: #fff;
	border-radius: 0;
}
/*---------------------------------------
   Clients
-----------------------------------------*/
.our-clients {
	padding: 50px 0;
	background: #f7f7f7;
}
.our-clients .owl-controls {
	display: none !important;
}

.partnerint{background: #fff; border-radius: 10px; padding: 10px;}

/*---------------------------------------
   Footer section              
-----------------------------------------*/

footer {
	background:var(--primary-one) url(../images/footer-bg.jpg) no-repeat bottom;
	background-size: cover;
	padding: 0px 0;
	text-align: center;
}
.footerlogo{text-align: center; margin-bottom: 20px;}
.quicklinks{text-align: center; margin-bottom: 20px;}
.quicklinks li{display: inline-block; margin: 0 5px;}
.quicklinks li a{color: #ccc;}
.quicklinks li a:hover{color: var(--secondary-color);}


.socialLinks {
	margin-top: -109px;
	margin-bottom: 20px;
}
.socialLinks a {
	font-size: 18px;
	color: #fff;
	display: inline-block;
	margin: 0 5px;
	width: 36px;
	height: 36px;
	background:#ed2759;
	border-radius: 5px;
}
.socialLinks a:hover {
	color:var(--primary-one);
	background: #fff;
}
.socialLinks a i {
	display: block;
	margin-top: 9px;
}
footer .footer-copyright p {
	color: #999;
	margin-bottom: 0;
}
.scrollup {
	width: 40px;
	height: 40px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	background-color: #000;
	padding: 5px;
	opacity: 0.5;
	border-radius: 50%;
}
.scrollup i {
	color: #fff;
	display: block;
	line-height: 30px;
	text-align: center;
}
.scrollup:hover {
	opacity: 1;
	text-decoration: none;
}
.successpage {
	width: 100%;
	text-align: center;
}

.successpage h1 {
	color: #56b50f;
	font-size: 48px;
}
.successpage h2 {
	font-weight: 300;
	color: #444;
}
.successpage p {
	max-width: 770px;
	margin: 10px auto;
}

/********* Inner Page Common *********/
.pageheader{position: relative; padding:30px 0; background: #f5f5f5;}
.pageheader h1{text-align: center; font-size: 30px; color:var(--primary-one); margin-bottom: 0; font-weight: var(--font-bold);}
.pageheader p{text-align: center; margin-bottom: 0;}

.innerpagewrap {
    padding: 50px 0;
    min-height: 400px;
}

.account-main {
    padding: 50px;
    background: #fff;
    -webkit-box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
    box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
    border-radius:15px;
    border-bottom: 3px solid var(--primary-one);
}
.account-title h3{font-size: 30px;}
.account-title h3 span{color: var(--primary-one); font-size: 30px;}
.postimg img{border-radius: 10px;}

.leadpostimg img{border-radius: 10px;}
.estprice{text-align: right;}
.estprice strong{display: block; font-size: 34px; line-height: 36px;}

.checklist{list-style: none;}  
  .checklist li {
    position: relative;  
    padding-left: 25px;  
    font-size: 16px;
    margin-bottom: 15px;
  }  
  .checklist li:before {
    font-family: "Font Awesome 5 Free";  
    font-weight: bold;  
    content: "\f00c";  
    position: absolute;  
    top: 2px;  
    left: 0;  
    color: var(--primary-one);
  }  
  .checklist li strong {
    font-weight: 700;
  }
  

.form-outline h5{font-size: 14px; color: #666;}
.form-outline ul{list-style: disc; margin-left: 20px;}
.form-outline ul li{font-size: 13px; color: #666;}
.form-outline p{font-size: 14px;}


.form-control {
    width: 100%;
    height: 50px;
    line-height: 50px;
    border: 1px solid rgba(4, 0, 23, 0.1);
    border-radius: 6px;
    padding: 0 20px;
    font-size: 14px;
    color: rgba(4, 0, 23, 0.6);
    appearance: revert;
    
}
.form-outline input:focus{outline: none; box-shadow:none}
.account-form-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.account-form-label label {
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-body-heading);
    margin-bottom: 5px;
}
.account-form-label a {
    font-size: 14px;
    color: rgba(4, 0, 23, 0.6);
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
    text-decoration: none;
}
.account-bottom-text{text-align: center;}
.account-bottom-text a{color: var(--primary-one); text-decoration: none;}
.account-bottom-text p{margin-bottom: 0;}

.requiredField {
    color: red;
}




.topsort{padding:20px; background: #eee; margin-bottom: 30px; border-radius: 5px;}


.filtersidebar{box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px; padding:30px; background: #fff; margin-bottom: 30px; border-radius: 10px;}
.filterbox{margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid #eee;}
.filterbox h5{font-weight: var(--font-bold); font-size: 18px;}

.filterbox .form-check{margin-top: 15px;}
.filterbox .form-check label{display: flex; justify-content: space-between; align-items: center;}

.filterbox .price-input {
	width: 100%;
	display: flex;
	margin: 0 0 35px;
  }
.filterbox .price-input .field {
	width: 100%;
  }
.filterbox .field input {
	width: 100%;
	outline: none;
	font-size: 19px;
	padding: 10px;
	border-radius: 5px;
	text-align: center;
	border: 1px solid #ddd;
	-moz-appearance: textfield;
  }
  .filterbox input[type="number"]::-webkit-outer-spin-button,
  .filterbox input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
  }
  .filterbox .price-input .separator {
	width: 130px;
	display: flex;
	font-size: 19px;
	align-items: center;
	justify-content: center;
  }
  .filterbox .slider {
	height: 5px;
	position: relative;
	background: #ddd;
	border-radius: 5px;
  }
  .filterbox .slider .progress {
	height: 100%;
	left: 25%;
	right: 25%;
	position: absolute;
	border-radius: 5px;
	background: var(--secondary-color);
  }
  .filterbox .range-input {
	position: relative;
  }
  .filterbox  .range-input input {
	position: absolute;
	width: 100%;
	height: 5px;
	top: -5px;
	background: none;
	pointer-events: none;
	-webkit-appearance: none;
	-moz-appearance: none;
  }
  .filterbox  input[type="range"]::-webkit-slider-thumb {
	height: 17px;
	width: 17px;
	border-radius: 50%;
	background: var(--secondary-color);
	pointer-events: auto;
	-webkit-appearance: none;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  }
  .filterbox input[type="range"]::-moz-range-thumb {
	height: 17px;
	width: 17px;
	border: none;
	border-radius: 50%;
	background: #17a2b8;
	pointer-events: auto;
	-moz-appearance: none;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  }


/* =======================
		Blog Listing
======================= */
.blogWraper {
	margin-bottom: 40px;
}
.blogList {
	list-style: none;
}
.blogList li {
	background: #fff;
	padding: 20px;
	margin-bottom: 30px;
	border: 1px solid #e4e4e4;
	border-radius: 10px;
}
.blogList li:hover {
	box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
	border-color:var(--primary-one);
}
.blogList li .postimg {
	position: relative;
}
.blogList li .postimg .date {
	width: 60px;
	height: 60px;
	font-weight: bold;
	font-size: 15px;
	color: #fff;
	padding: 7px 10px 0 10px;
	text-align: center;
	line-height: 20px;
	background:var(--primary-one);
	letter-spacing: 0.4px;
	outline: 3px solidvar(--primary-one);
	border: 1px solid #fff;
	position: absolute;
	left: 14px;
	top: 14px;
	z-index: 12;
}
.post-header {
	margin-bottom: 15px;
}
.post-header h4 a {
	font-size: 24px;
	color: #333;
	font-weight: 600;
}
.post-header h4 a:hover {
	color:var(--primary-one);
}
.postmeta {
	margin: 10px 0;
	font-size: 14px;
}
.postmeta span, .postmeta a {
	color:var(--primary-one);
}
.blogList li p {
	font-size: 14px;
	line-height: 24px;
	color: #777;
}
.blogList li .readmore {
	background:var(--primary-one);
	display: inline-block;
	margin-top: 5px;
	color: #fff;
	font-weight: 600;
	font-size: 13px;
	padding: 10px 25px;
}
.blogList li .readmore i {
	margin-left: 5px;
}
.blogList li .readmore:hover {
	text-decoration: none;
	background: #333;
}
/*Pagination*/
.pagiWrap .showreslt {
	font-size: 14px;
	font-weight: 600;
	margin-top: 10px;
}
.pagiWrap .pagination {
	text-align: right;
	margin: 0;
}
.pagination>li:first-child>a, .pagination>li:first-child>span, .pagination>li:last-child>a, .pagination>li:last-child>span {
	border-radius: 0;
}


.pageheader {
    position: relative;
    padding: 80px 0;
	background: url(../images/innerpage-title.jpg) no-repeat center;
    background-size: cover;
}
.pageheader h1 {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 48px;
    color: #fff;
    font-weight: 700;
}

.pageheader p {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-align: center;
	max-width: 800px;
	margin: 0 auto;
}



/********* Services Page *********/
.serviceslisting li{margin-bottom:50px; flex-direction: row-reverse!important;}
.serviceslisting li:nth-child(2n){flex-direction:row  !important;}
.servtext{padding-right:60px; padding-top: 20px;}
.servtext h4{display: flex; font-size: 40px; font-weight: 700; align-items: center; margin-bottom: 15px;    color: #0b568e;}
.servtext h4 i{margin-right: 20px; color: #f8b93a;}
.servpostimg img{border-radius: 15px;}

.serviceslisting li:nth-child(2n) .servtext{padding-left: 30px; padding-right: 0;}
.serviceslisting li:last-child{margin-bottom: 0;}
.serviceslisting li .readmore{margin-top: 30px;}


.txtdata h2{display: flex; font-size: 40px; font-weight: 700; align-items: center; margin-bottom: 15px;    color: #0b568e;}
.txtdata h2 i{margin-right: 20px; color: #f8b93a;}
.secimg img{border-radius: 15px;}


.innerPages{padding: 60px 0;}
.about_img img{border-radius: 15px;}

.cmspagecontent h5{font-size: 24px; font-weight: 700; margin-bottom: 10px; color: #0b568e;}
.cmspagecontent h4{font-size: 18px; font-weight: 700;}
.cmspagecontent p{font-size: 16px; line-height: 24px; margin-bottom: 30px;}

.cmspagecontent ul{margin-bottom: 30px;}
.cmspagecontent ul li {
	margin: 10px 0;
	padding-left: 20px;
	position: relative;
}
.cmspagecontent ul li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: #f8b93a;
	font-weight: bold;
}


.callWrp{
	padding: 40px;
    background: url(../images/cta-bg.jpg) no-repeat;
	background-size: cover;
    text-align: center;
    width: 100%;
    margin-top: 40px;
	border-radius: 15px;
}
.callWrp .icon {
    width: 88px;
    height: 88px;
    line-height: 88px;
    border-radius: 50%;
    background: #fff;
    color: #f8b93a;
    font-size: 35px;
    display: inline-block;
    margin-bottom: 30px;
}
.callWrp p{font-size: 24px; color: #fff; line-height: 30px;}


/*Side bar*/
.sidebar {
	box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    padding: 30px;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
}
.sidebar .widget {
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}
.sidebar .widget-title {
	font-size: 18px;
	font-weight: 600;
	color: #666;
	margin-bottom: 20px;
}
/*Sidebar Search*/
.search {
	position: relative;
	margin-bottom: 15px;
}

.search .btn {
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 0;
	background: none;
	font-size: 20px;
}
/*categories*/
.categories li {
	margin-bottom: 15px;
	position: relative;
	padding-left: 17px;
}
.categories li a {
	margin-top: 0;
	color: #888;
	font-size: 14px;
	font-weight: 600;
}
.categories li a:hover {
	color: #000;
}
.categories li:before {
	content: "\f0da ";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 0px;
	top: 3px;
	color:var(--primary-one);
	font-size: 12px;
}
/*Archives*/
.archive li {
	line-height: 45px;
}
.archive li a {
	margin-top: 0;
	color: #888;
	font-size: 14px;
	font-weight: 600;
}
.archive li span {
	float: left;
	height: 30px;
	width: 30px;
	text-align: center;
	background: #f5f5f5;
	border: 1px solid #fff;
	outline: 3px solid #f5f5f5;
	margin-right: 20px;
	line-height: 26px;
	font-size: 12px;
	color: #777777;
	margin-top: 10px;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.archive li a:hover span {
	background:var(--primary-one);
	color: #fff;
}
/*Popular Posts*/
.papu-post {
}
.papu-post .media-left {
	margin-right: 0px;
}
.papu-post .media-left img {
	width: 100%;
}
.papu-post .media-left a {
	width: 80px;
	margin-top: 0;
	margin-right: 5px;
	display: inline-block;
}
.papu-post span {
	color:var(--primary-one);
	letter-spacing: 0px;
	font-size: 11px;
}
.papu-post li {
	border-bottom: 1px solid #ececec;
	padding: 20px 0;
	margin: 0px;
}
.papu-post .media-heading {
	display: inline-block;
	width: 100%;
	color: #777777;
	margin-top: 0px;
	font-size: 14px;
	line-height: 20px;
}
.papu-post li:last-child {
	border-bottom: 0;
}
/*Tags*/
.tags:after {
	display: table;
	clear: both;
	content: '';
}
.tags li {
	display: inline-block;
	float: left;
}
.tags a {
	font-size: 13px;
	color: #969595;
	border: 1px solid #dadada;
	padding: 7px 10px;
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 5px;
	text-transform: uppercase;
	background: #fff;
}
.tags a:hover {
	border: 1px solidvar(--primary-one);
	background:var(--primary-one);
	color: #fff;
	text-decoration: none;
}
/*Photo Streen*/
.photo-steam {
	margin: 0 -5px;
}
.photo-steam:after {
	display: table;
	clear: both;
	content: '';
}
.photo-steam li {
	float: left;
	width: 25%;
	padding: 0 5px;
	margin-bottom: 10px;
}
.blogdetailbox .date {
	margin-top: 15px;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
}
.blogdetailbox p {
	font-size: 14px;
}
/*Comments*/
blockquote {
	display: block;
	font-size: 16px;
	line-height: 24px;
	margin: 20px 0;
	padding: 20px 20px 20px 60px;
	position: relative;
	border: 3px solidvar(--primary-one);
	box-shadow: 0 0 12px rgba(0,0,0,0.2);
}
blockquote p {
	font-style: italic;
	display: inline-block;
	color: #000;
}
blockquote:before {
	color: #ddd;
	content: "\f10d";
	font-family: 'FontAwesome';
	font-size: 22px;
	font-style: normal;
	left: 24px;
	position: absolute;
	top: 20px;
	transform: scale(-1);
}
blockquote:after {
	color: #ddd;
	content: "\f10e";
	display: inline-block;
	font-family: 'FontAwesome';
	font-size: 22px;
	font-style: normal;
	margin: 0 0 0 8px;
	position: relative;
	top: 3px;
}
.comments h4 {
	color: #222222;
	font-size: 24px;
	font-weight: 600;
}
.comments .media-body h4 span {
	font-size: 12px;
	color: #777777;
	margin-left: 20px;
	display: inline-block;
	width: 100%;
}
.comments {
	margin-top: 30px;
}
.comments .media-list {
	margin-bottom: 30px;
}
.comments .media-list li {
	padding: 20px;
	border: 1px solid #e9e9e9;
	position: relative;
	background: #fff;
}
.comments .media-left {
	margin-right: 20px;
}
.comments .media-left a {
	width: 100px;
	display: inline-block;
}
.comments .media p {
	margin-top: 5px;
	color: #333;
	line-height: 20px;
	font-size: 14px;
}
.comments .media h6 span {
	font-size: 13px;
	color: #999;
	margin: 0;
	margin-top: 10px;
	text-transform: none;
	display: inline-block;
	width: 100%;
}
.comments .media {
	margin-top: 30px;
}
.comments .media h6 {
	font-weight: 600;
	color: #00b1f1;
	font-size: 16px;
	text-transform: none;
}
.margin-left80 {
	margin-left: 80px;
}
.comments .btn.raply {
	padding: 10px 12px;
	font-size: 12px;
	color: #333;
	background: #f5f5f5;
	border: none;
	border-radius: 0;
	position: absolute;
	top: 15px;
	right: 0;
}
.comments .btn.raply:hover {
	background: #00b1f1;
	color: #fff;
}
.comments .media a img {
	margin-bottom: 10px;
}
.commnetsfrm {
	background: #fff;
	padding: 25px;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.comments form label {
	text-transform: uppercase;
	font-weight: normal;
	margin-top: 20px;
	display: inline-block;
	width: 100%;
	font-size: 12px;
}
.comments form .form-control {
	display: inline-block;
	width: 100%;
	height: 40px;
	margin-top: 5px;
	border-radius: 0px;
	box-shadow: none;
	background: none;
	border: 1px solid #e8e8e8;
}
.comments form textarea.form-control {
	display: inline-block;
	width: 100%;
	height: 150px;
}
.commnetsfrm .btn {
	background:var(--primary-one);
	color: #fff;
	font-weight: 700;
	margin-top: 20px;
	font-size: 18px;
	padding: 10px 25px;
	cursor: pointer;
	border-radius: 0px;
}
.innercms {
	padding: 50px 0;
}
.pageTitle {
	background: url(../images/home-bg.jpg) no-repeat top;
	background-size: cover;
	text-align: center;
	padding: 120px 0 50px 0;
}
.pageTitle h1 {
	color: #fff;
	margin: 0;
}
.pagiWrap {
	margin-top: 40px;
	text-align: right;
}
.pagiwrap .page-link {
	margin: 0 5px;
	border-radius: 0px !important;
	color: #000;
}
.pagiwrap .active .page-link{color: var(--white);}
.page-item.active .page-link {
	background:var(--primary-one);
	border-color:var(--primary-one);
}

.pagiwrap{background: #fff; padding: 30px; box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px; border-radius: 10px;}
.pagiwrap .pagination{justify-content: center;}


/* Dashboard */
.twm-right-section-panel .panel.panel-default {
	border-radius: 10px;
	background: #fff;
  }
  .dashboard-card-2 {
	position: relative;
	overflow: hidden;
	z-index: 1;
	padding: 30px;
	background-color: #fff;
	border-radius: 10px;
  }
  .block-gradient {
	background: #7596fc;
	background: -moz-linear-gradient(-45deg, #7596fc 0%, #b479ff 100%);
	background: -webkit-linear-gradient(-45deg, #7596fc 0%, #b479ff 100%);
	background: linear-gradient(135deg, #7596fc 0%, #b479ff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#7596fc", endColorstr="#b479ff",GradientType=1 );
  }
  .block-gradient-2{
	  background: #1aa8ed; /* Old browsers */
	  background: -moz-linear-gradient(-45deg,  #1aa8ed 0%, #07f4ac 100%); /* FF3.6-15 */
	  background: -webkit-linear-gradient(-45deg,  #1aa8ed 0%,#07f4ac 100%); /* Chrome10-25,Safari5.1-6 */
	  background: linear-gradient(135deg,  #1aa8ed 0%,#07f4ac 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1aa8ed', endColorstr='#07f4ac',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  
  }
  .block-gradient-3{
	  background:var(--secondary-color);
  }
  .block-gradient-4{
	  background:var(--primary-one);
  }
  
  .dashboard-card-2 .wt-card-wrap-2 {
	color: #fff;
  }
  .dashboard-card-2 .wt-card-icon-2 {
	font-size: 40px;
	line-height: 0px;
	z-index: -1;
	position: absolute;
	left: 30px;
	top: 30px;
  }
  .wt-card-right {
	text-align: right;
	font-size: 50px;
	line-height: 50px;
	font-weight: 300;
	margin-bottom: 10px;
  }
  .dashboard-card-2 .wt-card-bottom-2 h4 {
	font-weight: 400;
	color: #fff;
	font-size: 18px;
	margin-bottom: 0;
  }
  
  .myjobtable tr td{font-size: 14px;} 
  .myjobtable tr td a{text-decoration: none;}
  
  .btbtns a{    padding: 6px 15px;
	font-size: 14px;
	line-height: 18px;
	font-weight: 500;}
  
  .sortby h3{font-size: 24px;}
  
  
  .instoretxt {
	  background: #fcfdff;
	  border: 1px solid #eee;
	  padding: 30px;
	  margin-bottom: 30px;
	margin-top: 30px;
	  border-radius: 15px;
	  box-shadow: 0px 18px 40px rgb(25 15 9 / 10%);
  }
  .instoretxt h3{font-size: 24px;}
  .instoretxt .table {
	margin-bottom: 0;
	margin-top: 30px;
  }
  .instoretxt .currency {
	  font-size: 16px;
	  font-weight: 700;
  }
  .instoretxt .currency strong {
	  color: #056cb8;
  }
  .instoretxt strong {
	  font-weight: 700;
	  color: #056cb8;
  }
  
  .profileDetails {
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
	border-radius: 15px;
	padding:30px;
	margin-bottom: 30px;
  }
  .profileDetails h3{color: #333; font-size: 18px; font-weight: var(--font-bold);}
  .profileDetails .profile-picture {
	width: 100%;
  }
  .profileDetails .profile-radius {
	border:10px solid rgb(6 113 198 / 5%);
	width: 170px;
	border-radius: 50%;
	margin-top: 15px;
  }
  .profileDetails .profile_img {
	height: 150px;
	width: 150px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50%;
	overflow: hidden;
  }
  .profileDetails .profile_img img {
	height: auto;
	width: 100%;
  }
  .userdetailbox {
	background: #222;
	padding: 25px;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  }
  .userdetailbox h3 {
	color: #fff;
	font-size: 24px;
  }


  .usertabls {
	margin-bottom: 40px;
	background: #333;
	padding: 15px;
  }
  .usertabls ul {
	margin-bottom: 0;
  }
  .usertabls ul li {
	display: inline-block;
  }
  .usertabls ul li a {
	color: #fff;
	transition: all ease .5s;
	text-align: left;
	font-size: 14px;
	display: block;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	padding: 10px 20px;
  }
  .usertabls ul li a:hover {
	text-decoration: none;
	background: #f81473;
  }
  .usertabls ul li.views {
	float: right;
	color: #fff;
	margin-top: 10px;
  }
  .usertabls ul:after {
	clear: both;
	display: table;
	content: '';
  }
  .profile-Wrap h3 {
	margin-top: 0;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	color: #000;
  }
  .authorDetail {
	text-align: center;
	padding-top: 15px;
  }
  .authorDetail h2 {
	font-weight: 600;
	font-size: 20px;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	color: #000;
  }
  .authorDetail P {
	font-size: 16px;
	color: #000;
	margin-bottom: 5px;
  }
  .authorDetail P i{color: var(--secondary-color);}
  .editDetails{border-top: 1px solid #eee; margin-top: 20px; padding-top: 20px;}
  .editDetails ul {
	list-style: none;
	margin: 0;
  }
  .editDetails ul li {
	margin-bottom: 5px;
  }
  .editDetails ul li a {
	color: #000;
	transition: all ease .5s;
	text-align: left;
	font-size: 14px;
	display: block;
	padding:7px 10px;
	text-decoration: none;
	border-radius: 5px;
  }
  .editDetails ul li a i {
	margin-right: 7px;
	color:#888;
  }
  .editDetails ul li a:hover {
	background: #fff;
	color: var(--secondary-color);
	text-decoration: none;
  }
  .editDetails ul li a .badge {
	background: #f81473;
  }


/* Hitel detail */
.hotelmaininfo{margin-bottom: 30px;}
.hotelmaininfo h1{font-size: 24px; margin-bottom:10px; font-weight: var(--font-bold); display: flex; align-items: center;}
.hotelmaininfo h1 .badge{font-size: 10px; font-weight: 600; padding: 5px 10px;}
.hotelmaininfo .location{padding-bottom: 0;}
.hotelmaininfo .prices{font-size: 36px; color:var(--primary-one); text-align: right; font-weight: 700; margin-top: 20px;}
.hotelmaininfo .prices span{font-size: 18px; color: #555; font-weight:400;}

.hoteldtlts{display: flex; align-items: center;}
.ins34{border-right: 1px solid #eee; padding-right: 20px; margin-right: 20px; font-size: 14px; color: #4E5561;}
.ins34 i{color: #999; margin-right: 10px;}
.tprating{display: flex; align-items: center; font-size: 14px;}
.tprating .comprating{margin-bottom: 0; margin-right: 10px;}
.badge.badge-warning {
    background: #FFCA18;
    color: #000;
	padding:8px 10px;
	font-size: 14px;
}


.gallery-container{margin-bottom: 30px;}

.gallery-thumbnails .item {
    cursor: pointer;
    opacity: 0.7;
}

.gallery-thumbnails .item img {
    width: 100%;
}

.gallery-container .owl-nav{
	margin: 0;
}
.gallery-container .owl-nav button{
	position: absolute;
    top: 50%;
	margin-top: -18px;
	font-size: 16px;
}
.gallery-container .owl-nav button i{font-size: 16px;}
.gallery-container .owl-nav .owl-prev{left: 15px;}
.gallery-container .owl-nav .owl-next{right: 15px;}

.gallery-container img{border-radius: 10px;}


.facilitieslist li{text-align: center; margin-bottom: 20px;}
.facilitieslist i{display: block; font-size: 16px; color: var(--primary-one);}
.facilitieslist .text-fst{background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 0 20px rgba(30, 30, 30, 0.1);
    display: block;
    border-bottom: 2px solid var(--primary-one);
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 10px;}

.detcontent{border-bottom: 1px solid #ddd; padding-bottom: 30px; margin-bottom: 30px;}
.detcontent h3{font-size: 18px; font-weight: 700; margin-bottom: 10px;}
.detcontent p{font-size: 16px; line-height: 26px;}

.contentbullets ul li {
    position: relative;  
    padding-left: 25px;  
    font-size: 16px;
    margin-bottom: 15px;
  }  
  .contentbullets ul li:before {
    font-family: "Font Awesome 5 Free";  
    font-weight: bold;  
    content: "\f00c";  
    position: absolute;  
    top: 2px;  
    left: 0;  
    color: var(--primary-one);
  }

  .hotelserv li{margin-bottom: 10px;}
  .hotelserv li i{color: #f8b93a; margin-right:5px;} 

.bookingsidebar{background: #f8b93a; box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px; padding: 30px; border-radius: 10px; margin-bottom: 30px;}
.bookingsidebar h4{font-weight: var(--font-bold); font-size: 24px; color: var(--black);}
.bookingsidebar p{font-size: 14px;}

.number span {cursor:pointer; }
.number{display: flex; gap: 5px;}
.number .minus, .number .plus{
background:#f2f2f2;
border-radius:4px;
padding:5px 15px;
border:1px solid rgba(4, 0, 23, 0.1);
display: inline-block;
vertical-align: middle;
text-align: center;
font-size: 24px;
}
.number input{
width: 100px;
text-align: center;
font-size: 20px;
border:1px solid rgba(4, 0, 23, 0.1);
border-radius:4px;
vertical-align: middle;
}

.totalpay{font-size:16px; border-top: 1px solid #fff; padding-top: 15px;}
.totalpay strong{font-size: 30px; color: var(--black); display: block;}



.helpbox{background: #f5f5f5; border-radius: 5px; padding: 30px;}
.helpbox p{font-size: 14px;}
.helpbox .phone{margin-top: 10px; color: #555;}
.helpbox .phone i{color:var(--secondary-color); margin-right: 7px;}



.revtop{display: flex; justify-content: space-between; margin-bottom: 15px; align-items: center;}
.revtop h3{margin-bottom: 0; font-size: 18px; font-weight: 700;}
.revtop .btn-primary{font-size: 14px; padding: 10px 15px;}
.overallrate strong{font-weight: 700; color: #f8b93a;}
.overallrate span{color: #777; font-size: 14px;}

.reviewslist li{border: 1px solid #eee; padding: 20px; border-radius: 8px; margin-bottom: 20px;}
.reviewslist li:last-child{margin-bottom: 0;}
.reviewslist li .reviewhead{display: flex; gap: 15px; align-items: center; margin-bottom: 15px;}
.reviewslist li h4{font-size:18px; margin-bottom:0;}
.reviewslist li h5{font-size: var(--primary-size); font-weight:var(--font-bold); color: #888;}
.reviewslist li h4 img{width: 20px;}
.reviewslist li p{font-size:14px; line-height: 22px; margin-bottom: 0;}
.reviewslist li .dateposted{font-size: 14px; margin-top: 10px;}
.userrateinfo{display: flex; align-items: center;}
.userrateinfo span{color: #999; font-size: 14px;}
.reviewslist li .comprating{margin-bottom: 0; margin-left: 15px; margin-right: 5px; border-left: 1px solid #eee; padding-left: 15px;}
.replymsg{background: #f5f5f5; padding:25px 25px 25px 50px; margin-left: -20px; margin-right: -20px; margin-bottom: -20px; border-radius:0 0 8px 8px; margin-top: 15px; display: flex;}
.replymsg .uavatar{width: 80px; height: 80px; margin-top: 0; flex: 0 0 80px; margin-right: 20px; border: 1px solid #ddd;}
.reviewslist li .replymsg h5{margin-bottom: 5px; color: #000;}
.reviewslist li .replymsg .dateposted{margin-bottom: 10px; margin-top: 0;}
.reviewslist li .replybtn{padding: 6px 12px; font-size: 14px; margin-left: auto; line-height: 20px; border: 1px solid #eee; border-radius:25px;}
.avatar.avatar-lg { 
    width: 2.813rem;
    height: 2.813rem;
    line-height: 2.813rem;
    font-size: 1rem;
}
.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.modal-body textarea {
    height: 250px;
}


.rating-selction {
    direction: rtl !important;
}
.rating-selction input {
    display: none;
}
.rating-selction label {
    display: inline-block;
    color: #E4EBF1;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s;
}
.rating-selction input:checked ~ label {
    color: #ffae00;
}


.flightinfowrap{box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px; padding: 30px; border-radius: 10px; margin-bottom: 30px; background-color: #fff;}
.flightinfowrap h1{font-size: 36px;}
.dflightcom{display: flex; gap: 15px; align-items: center;}
.dflightcom img{width:50px; border: 1px solid #ddd;  border-radius: 50%;}
.dflightcom p{margin-bottom: 0; font-size: 14px;}

.flightmoveinfo{border-top: 1px solid #eee; padding-top: 30px; margin-top: 30px;}

.ftakeinfo{display: flex; align-items: center; gap: 30px;}
.takeicon{width: 60px; height: 60px; background: #eee; border-radius: 50%; border: 2px solid #fff; box-shadow:0 0 15px rgba(0, 0, 0, 0.1); text-align: center; font-size: 24px; color: #777; line-height: 55px;}
.ftakeinfo h5{font-weight: var(--font-bold); color: var(--primary-one); margin-bottom: 0;}
.ftakeinfo strong{color: var(--secondary-color);}
.ftakeinfo p{margin-bottom: 0;}
.fdate{font-weight: var(--font-bold); color: var(--primary-one); margin-top: 10px;}


.economytxt{background: #eee; padding: 10px; text-align: center; border-radius: 5px; margin: 30px;}
.flightincl li{margin-bottom: 10px;}
.flightincl li i{width: 24px; color: var(--secondary-color);}

.flightprices{font-size: 36px; font-weight: var(--font-bold); margin-bottom: 20px;}
.flightprices span{display: block; font-size: 18px; font-weight: var(--font-reg);}




/********* Contact Page *********/
.contactform{padding: 50px 0; background: #f3f4f8;}
.contactform .container {
    max-width: 1170px;
}
.submitquery {
    background: #212121;
    padding: 45px;
    border-radius: 0 15px 15px 0;
}
.contactform > .row{margin: 0;}
.contactform .col-lg-6{padding: 0; display: flex;}

.submitquery label{font-size: 16; font-weight: bold; display: block; margin-bottom: 5px;}
.submitquery label i{font-size: 14px;}
.submitquery h3{font-size: 24px; margin-bottom: 30px; font-weight:bold; color: #fff;}


.submitquery .form-control {
    border: none;
    border-radius: 7px;
    height: auto;
    padding: 12px 15px;
    appearance: auto;
    background: #3e4045;
    color: #fff;
	line-height: normal;
	font-size: 16px;
}
.submitquery .form-control::placeholder {color: #8b8b8b; opacity: 1;}
.submitquery .form-control::-ms-input-placeholder {color: #8b8b8b;}

.submitquery textarea{height: 200px;}

.submitquery .btn-primary:hover{background: #fff; color: #000;}

.mapbox{padding: 20px;box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px; border-radius: 10px;}
.mapbox iframe{display: block;}

.gmaps h5{font-weight: 700; font-size: 24px; color: var(--primary-one); margin-top: 10px; margin-bottom: 30px;}

.companycontact{background: var(--white); padding: 45px; border-radius: 15px 0 0 15px;}
.companycontact h3{font-size: 36px; color: var(--black); font-weight: bold; margin-bottom: 30px;}
.companycontact h4{font-size: 24px; color: var(--primary-one); font-weight:700; margin-bottom: 0;}


.ctinfobox{display: flex; border-bottom: 1px solid #eee; padding: 15px 0; gap: 20px;}
.ctinfobox.ctlast{border-bottom: none; padding-bottom: 0;}

.tptitle{display: flex; margin-bottom: 15px;}
.ctinfobox h6{font-size: var(--heading-3); color: var(--primary-one); font-weight: var(--font-bold); margin-bottom: 0;}
.tptitle h6 span{display: block; font-size: 14px; color: var(--primary-text-color);}
.tptitle i{font-size: var(--heading-5); margin-right: 15px;}
.ctinfobox p{margin-bottom: 0;}
.ctlast p{font-weight: var(--font-bold);}


.submitquery.radiusbx{border-radius: 15px;}
.applyform .form-control::placeholder {color: #fff; opacity: 1;}
.applyform .form-control::-ms-input-placeholder {color: #fff;}
.applyform textarea{height: 150px;}
.applycontent h3{font-size: 36px; font-weight: 700;}
.applycontent .benefitbx{margin-top: 20px;}



.accordion-button:focus{box-shadow: none;}
.accordion-button{font-weight: var(--font-bold);}
.accordion-button:not(.collapsed){background-color: var(--primary-one); color: var(--white);}
.accordion-button:not(.collapsed)::after{background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-position: center;}


  .thankyourmsgwrap {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    
}

@keyframes zoomOut {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

  .thankyoumsg{max-width:500px; margin: 0 auto; border-radius: 20px; box-shadow: 0 1px 5px 0 #c3cdd7; padding: 40px; text-align: center; background: #fff; animation: zoomOut 0.5s ease-in-out forwards;}

  .thankyoumsg h3{font-size: 1.75rem; margin-bottom: 20px; font-weight: 600;}
  .thankyoumsg p{font-size: 18px;}

  .checkmark {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: block;
	stroke-width: 2;
	stroke: #4bb71b;
	stroke-miterlimit: 10;
	box-shadow: inset 0px 0px 0px #4bb71b;
	animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
	position:relative;
	top: 5px;
	right: 5px;
   margin: 0 auto;
  }
  .checkmark__circle {
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	stroke-width: 2;
	stroke-miterlimit: 10;
	stroke: #4bb71b;
	fill: #fff;
	animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  
  }
  
  .checkmark__check {
	transform-origin: 50% 50%;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  }
  
  
  @keyframes stroke {
	100% {
		stroke-dashoffset: 0;
	}
  }
  
  @keyframes scale {
	0%, 100% {
		transform: none;
	}
  
	50% {
		transform: scale3d(1.1, 1.1, 1);
	}
  }
  
  @keyframes fill {
	100% {
		box-shadow: inset 0px 0px 0px 30px #4bb71b;
	}
  }


  /* Blog */
  .postimage {
    margin-bottom: 40px;
}
.post-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0;
}
 .postcontent p, .postcontent{
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.50;
}
.blogdetail .date{margin-bottom: 30px;}
.postcontent p a{color: var(--primary-one); font-weight: 600;}
.postcontent p a:hover{text-decoration: underline;}

.postcontent ul{list-style: disc; margin-left: 50px; margin-bottom: 30px;}
.postcontent ul li{margin-top: 10px; font-size: 20px;}
.postcontent ol{list-style:decimal; margin-left: 50px; margin-bottom: 30px;}
.postcontent ol li{margin-top: 10px; font-size: 20px;}
.blogsidebar .widget{margin-bottom: 30px;}
.blogsidebar .widget .widget_title{font-size: 22px; font-weight: 700; color: #383838;}
.blogsidebar .widget .wdgtnav li{padding: 4px 0;}
.blogsidebar .widget .wdgtnav li a{color: #000; text-decoration: none;}
.blogsidebar .widget .wdgtnav li a:hover{color:var(--primary-one);}
.sidebar-search-form {
    position: relative;
}
.sidebar-search-form input[type="search"] {
    border-radius: 4px;
    border: 1px solid #ebedf5;
    background: #f9fafc;
    font-size: 16px;
    padding: 10px 70px 10px 16px;
    height: 60px;
    width: 100%;
}
.sidebar-search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 0px;
    cursor: pointer;
    border-radius: 4px;
    background:var(--primary-one);
    color: #ffffff;
    border: 0;
    font-size: 14px;
    line-height: 50px;
    height: 50px;
    width: 52px;
}


/************************************************
           == FAQs css==
*************************************************/
#faqs {
	background: #f7f7f7;
}
.faqs .panel-default>.panel-heading {
	background: none;
	border: none;
	padding: 0;
}
.faqs h4 a {
	padding: 10px 55px 10px 15px;
	display: block;
	background:var(--primary-one);
	color: #fff;
	font-size: 16px;
	position: relative;
}
.panel-group .panel {
	border-radius: 0;
	margin-bottom: 20px;
}
.panel-group .panel-body {
	line-height: 24px;
	color: #555;
}
.faqs h4 .collapsed:hover, .faqs h4 a:hover, .faqs h4 a:active {
	text-decoration: none;
	background:var(--primary-one);
	color: #fff;
}
.faqs h4 a:before {
	content: "\f068";
	background: #fff;
	font-family: 'FontAwesome';
	width: 30px;
	padding: 6px 0;
	color:var(--primary-one);
	position: absolute;
	right: 15px;
	top: 8px;
	font-size: 16px;
	display: inline-block;
	text-align: center;
	transition: 0.3s ease-in;
	-moz-transition: 0.3s ease-in;
	-webkit-transition: 0.3s ease-in;
	-ms-transition: 0.3s ease-in;
	line-height: 18px;
}
.faqs h4 .collapsed:before {
	content: "\f067";
	font-family: 'FontAwesome';
	background: #666;
	width: 30px;
	padding: 6px 0;
	color: #fff;
	position: absolute;
	right: 15px;
	top: 8px;
	font-size: 16px;
	display: inline-block;
	text-align: center;
	transition: 0.3s ease-in;
	-moz-transition: 0.3s ease-in;
	-webkit-transition: 0.3s ease-in;
	-ms-transition: 0.3s ease-in;
	text-decoration: none;
}
.faqs h4 a.collapsed {
	background: #fff;
	color: #666;
	text-decoration: none;
}




/*---------------------------------------
   Mobile Responsive styles              
-----------------------------------------*/
@media (max-width: 1024px) {
.custom-navbar .nav li a {
	padding: 10px 15px;
}
.custom-navbar .navbar-brand {
	font-size: 24px;
	line-height: 24px;
}
.navbar-right {
	margin-top: 10px;
}
.stcontent, .fullimg {
	float: none;
	width: auto;
}
.fullimg {
	height: 350px;
	margin: 30px 30px 0 30px;
}
}
@media (max-width: 990px) {
h1 {
	font-size: 52px;
}
.is-sticky .navbar-brand {
	display: none;
}
.custom-navbar .nav li a {
	padding: 0px 15px;
}
.custom-navbar .nav li .calltxt {
	margin-top: 0;
	padding: 7px 15px
}
.is-sticky .custom-navbar .nav li .calltxt {
	margin-top: 0;
}
.header-wrap{padding:10px;}
.navbar-header {
	float: none;
	text-align: center;
}
.navbar-brand {
	float: none;
	display: inline-block;
}
.navbar-light .navbar-toggler{        display: block;
        position: absolute;
        right: 15px;
        top: 35px;
        border: 1px solid #ddd;
        padding: 10px 15px;
        border-radius: 5px;}
.custom-navbar {
	border-bottom: 1px solid rgba(255,255,255,0.3);
	padding-bottom: 30px;
}
.is-sticky .custom-navbar {
	padding-bottom: 10px;
}
.is-sticky .custom-navbar .nav li a {
	padding: 10px 15px;
}
.pageTitle {
	padding-top: 170px;
}
.image-popup {
	display: block;
	margin: 30px 0;
}
.servicesbox {
	padding: 60px 30px;
}
.servicesbox h3 {
	font-size: 30px;
}
#counter .counter-number {
	font-size: 48px;
}
#service .service-thumb-first, #service .service-thumb-second {
	margin-bottom: 32px;
}
ul.orderlist li {
	float: none;
	width: auto;
}
#team .team-thumb {
	margin-bottom: 30px;
}
.postimg {
	margin-top: 30px;
	margin-bottom: 30px
}
.newsletter, #blog, #work {
	padding: 50px 15px;
}
.taglinewrap {
	padding: 50px 15px;
}
}
 @media (max-width: 880px) {
.portfolio-grid li .itemtitle p {
	font-size: 14px;
	line-height: 22px;
}
.portfolio-grid li .itemtitle {
	padding: 10px;
}
}
 @media (max-width: 768px) {
h1 {
	font-size: 48px;
}
#counter .counter-item {
	margin-top: 28px;
	margin-bottom: 28px;
}
}
 @media (max-width: 767px) {
.navbar-header {
	text-align: left;
}
.custom-navbar {
	border-bottom: 0;
	padding-bottom: 0;
}
.sticky-wrapper, .navbar-collapse.in {
	z-index: 100000;
}
.is-sticky .navbar-collapse.in {
	background: #eee;
}
.is-sticky .navbar-brand {
	display: block;
}
.custom-navbar .navbar-brand {
	line-height: 15px;
}
.custom-navbar .nav li .calltxt {
	border-left: 0;
}
.slide-text {
	margin-top: 80px;
}
#home {
	min-height: 500px;
}
.bformBox {
	margin-top: 15px;
}
.videobox {
	margin-top: 40px;
}
.circleList li {
	margin-top: 30px;
}
.vehiclesList ul li h3, .vehiclesList ul li .subtitle, .vehiclesList ul li .carPrice {
	text-align: center;
}
.vehiclesList ul li .subtitle:after {
	left: 50%;
	margin-left: -20px;
}
.pageTitle {
	padding-top: 90px;
}
.margin-left80 {
	margin-left: 0;
}
#about .about-desc {
	margin-bottom: 32px;
}
#address .address-phone {
	margin-top: 22px;
	margin-bottom: 22px;
}
#team .team-thumb {
	margin-bottom: 30px;
}
.is-sticky .custom-navbar .nav li a {
	line-height: 30px;
}
#service .service-thumb {
}
#counter .counter-number {
	font-size: 48px;
}
.parallax-section, #about, #packages {
	padding: 80px 15px;
}
.videowraper, .howitwrap {
	padding: 50px 15px;
}
.howlist li .iconcircle {
	margin-bottom: 50px;
}
}
 @media (max-width: 580px) {
h1 {
	font-size: 29px
}
h2 {
	font-size: 24px;
	line-height: 42px;
}
h3 {
	font-size: 12px;
	letter-spacing: 2px;
}
}
 @media (max-width: 350px) {
#about .team-wrapper .team-desc {
	padding-top: 14em;
}
}
