@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');

@font-face {
	font-family: 'Futura Std Book';
	font-style: normal;
	font-weight: normal;
	src: url('/templates/auto_main_red/fonts/futura/FuturaStdBook.woff') format('woff');
}

@font-face {
	font-family: 'Futura Std Light';
	font-style: normal;
	font-weight: normal;
	src: url('/templates/auto_main_red/fonts/futura/FuturaStdLight.woff') format('woff');
}

@font-face {
	font-family: 'Futura Std Medium';
	font-style: normal;
	font-weight: normal;
	src: url('/templates/auto_main_red/fonts/futura/FuturaStdMedium.woff') format('woff');
}

@font-face {
	font-family: 'Futura Std Heavy';
	font-style: normal;
	font-weight: normal;
	src: url('/templates/auto_main_red/fonts/futura/FuturaStdHeavy.woff') format('woff');
}

@font-face {
	font-family: 'Futura Std Bold';
	font-style: normal;
	font-weight: normal;
	src: url('/templates/auto_main_red/fonts/futura/FuturaStdBold.woff') format('woff');
}

:root {
	/* Background Color */
	--bg-white: #fff;
	--bg-primary: #004B87;

	/* Text Colors */
	--primary-text: #004B87;
	--secondary-color: #000000;
	--text-white: #fff;
	--paragraph-color: #2C2C2C;

	/* Border Colors */
	--border-color-light: #e2eefd;

	/* Font Family */
	--primary-font: 'Inter', sans-serif;
	--secondary-font: 'Futura Std Book';
	--futura--medium-font: 'Futura Std Medium';
	--futura--light-font: 'Futura Std Light';
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body,
html {
	color: var(--primary-text);
	font-size: 14px;
	font-weight: 400;
	font-family: var(--primary-font);
	scroll-behavior: smooth;
	line-height: 1.5;
}

a {
	color: #106eea;
	text-decoration: none;
}

a:hover {
	color: #3b8af2;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--futura--medium-font);
}


.paragraph-color,
p {
	color: var(--primary-text);
	font-weight: 400;
	font-family: var(--primary-font);
}

.btn_primary,
.btn-danger {
	background: var(--bg-primary) !important;
	border: 0;
	padding: 10px 30px !important;
	color: var(--text-white) !important;
	transition: 0.4s;
	border-radius: 50px;
	height: auto;
	font-family: var(--futura--medium-font);
	font-weight: 500;
	box-shadow: none;
	text-transform: uppercase;
	font-size: 15px;
}

a.btn_primary:before {
	display: none;
}

.btn_secondary {
	background: var(--bg-white) !important;
	border: 0;
	padding: 10px 30px !important;
	color: var(--primary-text) !important;
	transition: 0.4s;
	border-radius: 50px;
	box-shadow: none;
	font-family: var(--futura--medium-font);
	font-weight: 500;
}

/*Font Sizes*/

h2 {
	text-transform: uppercase;
	color: #000000;
	font-size: 35px;
}

p {
	color: #2C2C2C;
	font-size: 16px;
	line-height: 30px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: var(--bg-white);
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid var(--primary-text);
	border-top-color: #e2eefd;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: var(--bg-primary);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: var(--text-white);
	line-height: 0;
}

.back-to-top:hover {
	background: #3284f1;
	color: var(--text-white);
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
	background: var(--bg-primary);
	height: auto;
	font-size: 14px;
	transition: all 0.5s;
	color: var(--text-white);
	padding: 0;
}

#topbar .contact-info a {
	padding-left: 5px;
	color: var(--text-white);
}

#topbar .contact-info a {
	line-height: 0;
	transition: 0.3s;
	transition: 0.3s;
}

#topbar .contact-info i a:hover {
	color: var(--text-white);
	text-decoration: underline;
}

#topbar .social-links a {
	color: rgba(255, 255, 255, 0.7);
	line-height: 0;
	transition: 0.3s;
	margin-left: 20px;
}

#topbar .social-links a:hover {
	color: var(--text-white);
}

@media (max-width: 576px) {
	#topbar {
		padding: 10px 0px;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: #fff;
	transition: all 0.5s;
	z-index: 997;
	height: 90px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
	height: 90px;
}

#header .logo {
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 0.8px;
	font-family: "Poppins", sans-serif;
}

#header .logo a {
	color: #222222;
}

#header .logo a span {
	color: #106eea;
}

#header .logo img {
	max-height: 40px;
}

.scrolled-offset {
	margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar>ul>li {
	white-space: nowrap;
	padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 3px;
	font-size: 15px;
	font-weight: 400;
	color: #222222;
	white-space: nowrap;
	transition: 0.3s;
	position: relative;
	font-family: var(--futura--medium-font) !important;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar>ul>li>a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -6px;
	left: 0;
	background-color: #106eea;
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}
.navbar>ul>li.active>a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -6px;
	left: 0;
	background-color: #106eea;
	visibility: visible;
    width: 100%;
	transition: all 0.3s ease-in-out 0s;
}
.navbar > ul > li.active > a{
	color:#106eea;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
	visibility: visible;
	width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: #106eea;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	/* left: 28px; */
	right: 0px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	
	height: 400px;
    overflow-y: auto;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	font-weight: 400;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: #106eea;
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

.navbar a,
.navbar a:focus {
	text-transform: uppercase;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
	color: #222222;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: var(--text-white);
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(9, 9, 9, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px;
	background-color: var(--text-white);
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #222222;
}

.navbar-mobile>ul>li {
	padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
	visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #106eea;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}

/*--------------------------------------------------------------
# Home Banner
--------------------------------------------------------------*/

/* .home-banner::before { */
	/* content: ''; */
	/* background-image: url("../img/home-banner_left.jpg"); */
	/* background-size: cover; */
	/* background-position: center; */
	/* height: 100%; */
	/* width: 50%; */
	/* height: 100%; */
	/* position: absolute; */
	/* left: 0; */
	/* top: 0; */
	/* z-index: -1; */
/* } */

.half-fluid .left-half,
.half-fluid .right-half {
	left: 50%;
	margin-left: -50vw;
	max-width: 100vw;
	position: relative;
	right: 50%;
	width: 100vw;
	padding: 0px;

}


/* .half-fluid .image { */
	/* background-image: url("../img/home-banner.jpg"); */
	/* background-size: cover; */
	/* background-position: center; */
	/* height: 100%; */
/* } */

.banner-content {
	/* padding-top: 100px; */
	/* padding-bottom: 200px; */
	color: var(--text-white);
}

.banner-content h1 {
	font-size: 46px;
	line-height: 60px;
}

.banner-content p {
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	margin-bottom: 40px;
	/* max-width: 560px; */
}

.banner-content p,
.banner-content h1 {
	/* color: var(--text-white) !important; */
	color: var(--secondary-color) !important;
}

.home-banner .btn_secondary {
	text-transform: uppercase;
	font-weight: 500;
	font-family: var(--secondary-font);
	font-size: 16px;
	padding: 11px 25px !important;
}
.home-page .home-banner{
	padding-top: 100px;
    padding-bottom: 200px;
	background-image: url("../img/home-banner2.jpg");
	background-repeat:no-repeat;
	background-position: center;
}
section.home-banner .banner-content .card{
    background: rgba(255, 255, 255, 0.67);
    border-radius: 16px;
}
section.home-banner .banner-content .card .card-body {
	padding:30px;
}

.sa-banner{
	padding: 60px 0px 70px !important;
    background: #F7F7F7 !important;
}
.sa-banner .btn_primary{
	padding: 15px 30px !important;
}


@media (min-width: 992px) {
	.half-fluid .left-half {
		padding-left: 0 !important;
		position: absolute;
		left: 0;
		right: 50%;
		margin-left: auto;
		width: auto;
	}

	.half-fluid .right-half {
		padding-right: 0 !important;
		position: absolute;
		right: 0;
		left: 50%;
		margin-left: auto;
		width: auto;
	}
}
@media (max-width: 576px){
	.home-page .home-banner {
    padding-top: 50px;
    padding-bottom: 50px;
}
section.home-banner .banner-content .card .card-body {
    padding: 20px;
}

}

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
	section.simple-aircraft h2{
	margin-top:20px;
}
.simple-aircraft .inner-box {
    padding: 0px;
}
}

@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape) {
	.banner-content h1 {
    font-size: 38px;
}
}

/*--------------------------------------------------------------
# Quick Links
--------------------------------------------------------------*/


section.quick-link-area {
	margin-top: -60px;
	z-index: 1;
	position: relative;
}

.quick-link-area .shadow-box {
	/* box-shadow: 0px 8px 30px rgba(34, 34, 34, 0.07); */
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
	text-align: center;
	padding: 35px 15px;
	border-radius: 12px;
	margin-bottom: 20px;
	background-color: #fff;
}

.quick-link-area .shadow-box img {
	width: 80px;
	margin-bottom: 12px;
}

.quick-link-area .shadow-box h5 {
	text-transform: uppercase;
	font-size: 17px;
	color: #000;
	margin-top: 20px;
}

/*--------------------------------------------------------------
# Aircraft
--------------------------------------------------------------*/

.simple-aircraft {
	padding: 50px 0px;
}

.simple-aircraft .row {
	align-items: center;
}

.simple-aircraft img {
	width: 100%;
}

.simple-aircraft .inner-box {
	padding: 0px 10px
}

.simple-aircraft .shadow-box img {
	width: 80px;
	margin-bottom: 12px;
}

.simple-aircraft .shadow-box h5 {
	text-transform: uppercase;
	font-size: 16px;
	color: #000;
}

section.simple-aircraft h2 {
	margin-bottom: 15px;
}

.simple-aircraft p {
	margin-bottom: 15px;
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
}

.simple-aircraft .bnt_container {
	margin-top: 40px;
}

/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/

.client-logo {
	background-color: #00427c;
	padding: 50px 0px;
}

.client-logo h2 {
	color: #fff;
}

.client-logo .swiper-slide img {
	/* width: auto; */
	width: 100%;
}

.client-logo .btn-danger {
	background: var(--bg-white) !important;
	color: var(--primary-text) !important;
	float: right;
}

/*--------------------------------------------------------------
# browse-category
--------------------------------------------------------------*/

.browse-category {
	padding: 50px 0px 0px 0px;
	border-top: 1px solid #d9d9d9;
}

.browse-category .shadow-box {
	box-shadow: 0px 0px 10px rgb(223 223 223);
	text-align: center;
	padding: 20px;
	border-radius: 12px;
	margin-bottom: 20px;
}

.browse-category h2 {
	text-align: center;
	margin-bottom: 25px;
}

.browse-category .shadow-box h4 {
	color: #000;
	text-transform: uppercase;
	margin-bottom: 7px;
}

.browse-category .shadow-box img {
	margin-bottom: 20px;
}

.browse-category .shadow-box p {
	margin-bottom: 0px;
}

.browse-category .shadow-box:hover {
	background-color: #00427c;
	transition: 0.5s;
}

.browse-category .shadow-box:hover h4,
.browse-category .shadow-box:hover p {
	color: #fff !important;
}

/*--------------------------------------------------------------
# Recent-aircraft
--------------------------------------------------------------*/

.recent-aircraft {
	padding: 50px 0px;
}

.recent-aircraft .inner-box {
	display: flex;
	margin-bottom: 30px;
}

.recent-aircraft .inner-box .img-box img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.recent-aircraft .inner-box .img-box {
	width: 40%;
}

.recent-aircraft .inner-box .text-box {
	padding: 0px 0px 0px 15px;
	width:60%;
}

.recent-aircraft .inner-box .text-box h5 a {
	font-size: 20px;
	line-height: 28px;
	color: #000;
	font-family: var(--futura--medium-font);
	font-weight: 400;
}

.recent-aircraft .inner-box .text-box h3 {
	color: var(--primary-text);
	margin: 8px 0px 15px;
	/* font-size: 30px; */
	font-family: var(--primary-font);
	font-weight: 500;

}

.recent-aircraft h2 {
	margin-bottom: 20px;
	text-align:left !important;
}

.recent-aircraft .inner-box .text-box>a {
	background-color: #fff;
	border: 0px;
	color: #2C2C2C;
	font-size: 15px;
	padding: 0px;
}

/*--------------------------------------------------------------
# Featured-aircraft
--------------------------------------------------------------*/

.featured-aircraft {
	padding: 50px 0px 0px 0px;
}

.featured-aircraft .swiper-slide {
	box-shadow: 0px 0px 10px #d9d9d9;
	border-radius: 0;

}

.featured_aircraft_slider {
	padding-bottom: 25px
}

.featured-aircraft .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-aircraft .product-details {
	position: absolute;
	bottom: 0px;
	width: 100%;
	/* padding: 30px 15px 15px; */
	padding: 60px 20px 20px;
	text-align: left;
	/* background: linear-gradient(to bottom, rgba(255,255,255,0) 1%, rgba(255,255,255,0) -50%,rgba(255,255,255,1) 93%, rgba(255,255,255,1) 96%, rgba(255,255,255,1) -230%); */
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.39) 30.21%, #FFFFFF 60.42%, #FFFFFF 100%);
}

.featured-aircraft .product-details h5 a{
	font-weight: 400;
	font-size: 18px;
	Color: var(--secondary-color);
	text-transform: uppercase;
}
.featured-aircraft .product-details h3.price > div span{
	font-weight: 700;
	Color: var(--secondary-color);
}

.featured-aircraft .product-details h2 {
	font-size: 26px;
	margin-bottom: 0px;
}

.featured_aircraft_slider .swiper-button-next,
.featured_aircraft_slider .swiper-button-prev {
	display: flex;
	opacity: 1;
}

.featured_aircraft_slider .swiper-button-prev {
	left: unset;
	right: 75px;
}

.featured_aircraft_slider .swiper-button-next,
.featured_aircraft_slider .swiper-button-prev {
	background: #fff;
	border-radius: 0px;
	padding: 15px 20px;
	font-size: 20px;
	color: var(--primary-text);
	box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.featured_aircraft_slider .swiper-button-next:after,
.featured_aircraft_slider .swiper-button-prev:after {
	font-size: 20px;
	position: absolute;
	color: var(--primary-text);
}

.swiper_navigations {
	position: relative;
	margin-right: 0px;
}

.featured-aircraft div.picture img {
	height: 320px !important;
	object-fit: revert;
}

/*--------------------------------------------------------------
# Get In Touch
--------------------------------------------------------------*/
.get-in-touch {
	background-color: var(--bg-primary);
	padding: 50px 0px;
	margin-top: 50px;
}

.get-in-touch h2 {
	color: #fff;
	margin-bottom: 0px !important;
}

.get-in-touch .btn_secondary {
	text-transform: uppercase;
}

@media (max-width: 575.98px) {
	.get-in-touch h2 {
		margin-bottom: 40px;
	}
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing .box h4 {
  font-size: 32px;
  color: #004B87;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: left;
  line-height: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #004B87;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #106eea;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #3b8af2;
}

.pricing .featured h3 {
  color: #fff;
  background: #004B87;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #106eea;
  color: #fff;
}
.add_listing .submit-cell{
    margin-bottom: 24px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.home-page #footer {
 	margin-top: 50px;   
}
#footer {
	padding: 0px;
	color: #444444;
	font-size: 14px;
	background: var(--bg-primary);
}

#footer .footer-top {
	padding: 60px 0 30px 0;
	background: #fff;
	border-top: 1px solid #C7C7C7;
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
	font-size: 24px;
	margin: 0 0 15px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
	color: #106eea;
}

#footer .footer-top .footer-contact p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Roboto", sans-serif;
	color: #777777;
}

#footer .footer-top h4 {
	font-size: 20px;
	color: #444444;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #106eea;
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #2C2C2C;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	text-decoration: none;
	color: #106eea;
}

#footer .footer-top .social-links a {
	font-size: 24px;
	display: inline-block;
	/* background: #106eea; */
	/* color: var(--text-white); */
	color: var(--secondary-color);
	/* line-height: 1; */
	/* padding: 8px 0; */
	margin-right: 15px;
	/* border-radius: 4px; */
	/* text-align: center; */
	/* width: 36px; */
	/* height: 36px; */
	transition: 0.3s;
}

/* #footer .footer-top .social-links a:hover { */
/* background: #3b8af2; */
/* color: var(--text-white); */
/* text-decoration: none; */
/* } */

#footer .copyright {
	text-align: center;
	float: left;
}

#footer .credits {
	/* float: right; */
	text-align: center;
	font-size: 13px;
	color: #444444;
}

#footer .footer-bottom {
	padding: 20px 0px;
}

#footer .footer-bottom .copyright,
#footer .footer-bottom .credits ul li a {
	color: var(--text-white)
}

#footer .footer-bottom .credits ul {
	list-style: none;
	display: flex;
}

#footer .footer-bottom .credits ul li {
	margin-right: 25px;
}

#footer .credits ul {
	margin-bottom: 0px;
}

@media (max-width: 768px) {

	#footer .copyright,
	#footer .credits {
		float: none;
		text-align: center;
		padding: 2px 0;
	}
}

@media screen and (max-width: 767px) {

	.banner-content {
		padding-top: 50px;
		padding-bottom: 130px;
		text-align: center;
	}

	.banner-content p {
		margin-bottom: 30px;
	}

	.banner-content h1 {
		font-size: 28px;
		line-height: 41px;
	}

	h2 {
		font-size: 28px;
	}

	.simple-aircraft .inner-box {
		padding: 20px 10px;
		text-align: center;
	}

	.client-logo {
		text-align: center;
	}

	.recent-aircraft .inner-box .img-box {
		width: 50%;
	}

	.recent-aircraft .inner-box .text-box {
		padding: 0;
		text-align: left;
		padding-left: 15px;
	}

	.recent-aircraft .inner-box .text-box h5 {
		font-size: 16px;
		line-height: 25px;
		text-align: left;
	}

	.recent-aircraft .inner-box .text-box h3 {
		margin: 8px 0px 6px;
	}

	.recent-aircraft .inner-box .btn.btn-info {
		font-size: 14px;
	}

	.get-in-touch {
		text-align: center;
	}

	.get-in-touch .btn-danger {
		float: none;
		margin-top: 10px;
	}

	.featured-aircraft {
		text-align: center;
	}

	.home-banner::before {
		width: 100%;
	}
	.client-logo h2 {
    margin-bottom: 40px;
	}
}


@media screen and (max-width: 576px) {
	#footer .footer-bottom .credits ul {
		/* display: unset; */
		justify-content: center;
		flex-wrap: wrap;
		margin-top: 10px;
	}

	#footer .footer-bottom .credits ul li {
		/* margin-right: 0px; */
		margin-bottom: 5px;
	}

	/* .for-mob { */
		/* order: 2; */
		/* margin-top: 20px; */
	/* } */

	#footer .footer-top h4 {
		font-size: 13px;
	}
}

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
	#footer .footer-bottom .credits ul {
		justify-content: center;
		margin-top: 20px;
	}
}
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape) {
	#footer .footer-bottom .credits ul li {
    margin-right: 14px;
}
}

/* New css Start */

.post-ad-links a {
	background: #fff;
	color: var(--primary-text);
	padding: 10px 20px;
}


/* Listing Page Css START */

.aircraft-parts {
    border-bottom: 2px solid #D7D7D7;
}

.img-with-text {
	/* background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Jetstar_Airbus_A320_in_flight%28_square_cut%29.jpg/900px-Jetstar_Airbus_A320_in_flight%28_square_cut%29.jpg?20140513202129); */
	height: 210px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--text-white);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.img-with-text h3 a {
    color: var(--text-white);
	text-transform: uppercase;
}
.filter-left {
	margin-bottom: 35px;
}

.plane-listing {
	padding: 80px 0px;
}

.plane-listing .filter-left {
	background: #FFFFFF;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
	padding: 15px 30px;
}

.plane-listing #date_dropdown-btn {
	background: #F3F3F3;
	border-radius: 2px;
	margin-left: 13px;
	border: 0px;
	color: var(--secondary-color);
}

.listing-cards {
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
	border-radius: 12px;
	margin-bottom: 30px;

}

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

.listing-cards .card-body .listing-details h4 {
	color: var(--secondary-color);
	text-transform: uppercase;
}

.listing-cards .card-body .listing-details span.for-sale {
	background: #F3F3F3;
	border-radius: 5px;
	color: var(--secondary-color);
	padding: 4px 18px;
	margin: 10px 0px;
}

.listing-cards .card-body .listing-details h3 {
	color: var(--primary-text);
}

.listing-cards .card-body .listing-details .full-details {
	margin: 15px 0px;
}

.listing-cards .card-body .listing-details .part-make span,
.listing-cards .card-body .listing-details .country span {
	color: var(--secondary-color);
}

.listing-cards .card-body .listing-details .part-make {
	margin-right: 7px;
	padding-right: 7px;
	border-right: 1px solid #D9D9D9;
}

.listing-right-content .search-box-card {
	margin-bottom: 35px;
}

.listing-right-content .search-box-card,
.listing-right-content .featured-aircraft-card {
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
	border-radius: 6px;
	margin-bottom: 35px;
}

.listing-right-content .search-box-card .card-header,
.listing-right-content .featured-aircraft-card .card-header {
	padding: 15px 20px;
	background: var(--bg-primary);
	color: var(--text-white);
	border-radius: 6px 6px 0px 0px;
}

.listing-right-content .search-box-card .card-body,
.listing-right-content .featured-aircraft-card .card-body {
	padding: 20px;
}

.listing-right-content .search-box-card .card-body select {
	border: 1px solid #D9D9D9;
	height: 48px;
	cursor: pointer;
}

.listing-right-content .search-box-card .card-body select:nth-child(2) {
	margin: 20px 0px;
}


.listing-right-content .featured-aircraft-card {
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
	border-radius: 6px;
	margin-bottom: 35px;
}

.listing-right-content .featured-aircraft-card .card-body.bdr {
	border-bottom: 2px solid #D7D7D7;
}

.listing-right-content .featured-aircraft-card .card-header {
	padding: 15px 20px;
	background: var(--bg-primary);
	color: var(--text-white);
	border-radius: 6px 6px 0px 0px;
}

.listing-right-content .featured-aircraft-card .text-box h5 {
	font-size: 20px;
	line-height: 28px;
	color: #000;
}

.listing-right-content .featured-aircraft-card .text-box .btn.btn-info {
	background-color: #fff;
	border: 0px;
	color: #2C2C2C;
	font-size: 15px;
	padding: 0px;
}


@media screen and (max-width: 576px) {
	.img-with-text {
		margin-bottom: 30px;
	}
}

/* Listing Page Css END */


/* Listing Deails Page Css Start */


.buttons-with-img {
	position: relative;
	width: 100%;
}
.buttons-with-img img.img-fluid:first-child {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.listing-details-sec .lt-details-compare-btn {
	position: absolute;
	bottom: 20px;
	right: 20px;
	/* background-color: var(--bg-primary); */
	/* color: var(--text-white); */
	/* border-radius: 0px; */
	padding: 0px;
	border:0px;
}
.listing-details-sec .lt-details-compare-btn .compare-details {
    border-radius: 0px;
    text-transform: capitalize;
	font-family: var(--futura--light-font);
	display: flex;
    align-items: center;
}
.listing-details-sec .lt-details-compare-btn .compare-details img{
        margin-right: 10px;
}

.listing-details-sec .favorite{
	/* position: absolute; */
	/* top: 20px; */
	/* right: 20px; */
	/* color: var(--text-white); */
	/* font-size: 24px; */
	position: absolute;
    top: 17px;
    right: 11px;
    color: var(--text-white);
    font-size: 20px;
    background: rgba(55, 55, 55, 0.6);
    display: inline-block;
    padding: 4px 10px;
}
.listing-details-sec .favorite:hover{
    background: #111111;
}
.listing-details-sec .favorite.remove{
	/* color: var(--primary-text); */
	color: red;
	cursor:pointer;
}
.view-details-page.bc-exists .buttons-with-img .favorite.add{
	cursor:pointer;
}

.listing-details-sec .lt-details-compare-btn .print{
	display:none;
}

.listing-details-sec .badge-for-sale {
	position: absolute;
	top: 20px;
	left: 20px;
	color: var(--text-white);
	font-size: 16px;
	background-color: var(--bg-primary);
}

.listing-details-sec .name-price h2 {
	/* font-size: 38px; */
	font-size: 32px;
	text-transform: none;
	display: inline-block;
	text-transform: capitalize;
	width: 70%;
}

.name-price {
	margin-top: 35px;
	margin-bottom: 30px;
}

.listing-details-sec .name-price span {
	/* font-size: 48px; */
	font-size: 40px;
	float: right;
	font-weight: 500;
	color: var(--parimary-color);
	line-height: 45px;
}

.used-date span {
	background-color: var(--bg-primary);
}

.used-date span:first-child {
	margin-right: 17px;
}

.listing-details-sec .quick-action a {
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
	padding: 15px 20px;
	color: var(--primary-text);
	text-align: left;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 20px;
	font-family: var(--futura--medium-font);
}
.listing-details-sec .quick-action a:hover{
	background:var(--bg-primary);
	color: var(--text-white);
	transition: background-color .5s ease-out 50ms;
}
.listing-details-sec .quick-action a:active {
	border-color: #fff;
}

.owner-details-card {
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
}

.owner-details-card .card-body {
	padding: 25px;
}
.owner-details-card .card-body h5 {
	margin: 15px 0px 8px;
	text-transform: uppercase;
}
.owner-details-card .card-body h5 a{
	color: var(--paragraph-color);
}

.owner-details-card .card-body p {
	color: #828282;
	text-transform: uppercase;
	font-family:var(--futura--light-font);
}

.owner-details-card .card-body ul {
	list-style: none;
	padding-left: 0px;
	margin-top: 20px;
	padding-top: 20px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-top: 1px solid #F2F2F2;
	border-bottom: 1px solid #F2F2F2;
}

.owner-details-card .card-body ul li {
	margin-bottom: 10px;
	color: var(--paragraph-color);
	font-weight: 500;
	font-size: 15px;
}

.owner-details-card .card-body ul li span {
	color: var(--primary-text);
}

.owner-details-card .contact-agent-form input {
	background: #F1F1F1;
	border: 0px;
	padding: 10px;
	border-radius: 0px;
    font-style: normal;
    font-weight: 400;
    /* font-size: 14px; */
    line-height: 17px;	
	font-family: var(--futura--medium-font);
}
.owner-details-card .contact-agent-form input[type=submit]{
	border-radius: 50px;
	    padding: 15px 0px !important;
}

.owner-details-card .contact-agent-form textarea {
	background: #F1F1F1;
	border: 0px;
	padding: 10px;
	border-radius: 0px;
	font-family: var(--futura--medium-font);
}

@media screen and (max-width: 576px) {
	.mob-bdr {
		padding-bottom: 30px;
		border-bottom: 1px solid #eee;
		margin-bottom: 30px;
	}

	.accordion-button {
		font-size: 18px;
	}
}

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
	.mob-bdr {
		padding-bottom: 30px;
		border-bottom: 1px solid #eee;
		margin-bottom: 30px;
	}
}


/*ACCORDIAN CSS*/


.accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
	transform: scale(.7) !important;
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

#myAccordion .accordion-header {
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
	border-radius: 0px;
}

.accordion-item {
	border: 0px;
	margin-bottom: 20px;
}

.accordion-button:focus {
	border-radius: 0px !important;
}

.accordion-button {
	font-weight: 500;
	font-size: 18px;
	color: var(--secondary-color);
	text-transform: uppercase;
}

.accordion-collapse .card-body ul {
	list-style: none;
	padding-left: 0px;
	margin-top: 20px;
}

.accordion-collapse .card-body ul li {
	margin-bottom: 10px;
	color: #828282;
	font-weight: 400;
	font-size: 18px;
}

.accordion-collapse .card-body ul li span {
	color: var(--primary-text);
	font-weight: 500;
}


/* New Collapse content css start */

#df_field_condition .name span, #df_field_ .name span{
	width: 160px;
    display: inline-block;
}
/* #df_field_condition .value, #df_field_ .value{ */
	/* margin-left:unset !important; */
/* } */
.view-details-page.bc-exists .accordion-collapse > .card-body{
	padding:30px 17px 10px;
}

.view-details-page.bc-exists #myAccordion .table-cell{
	display:flex;
	margin-bottom:20px;
}
.view-details-page.bc-exists #myAccordion .table-cell .name span{
	color: #828282;
	font-size:16px;
}
.view-details-page.bc-exists #myAccordion .table-cell .value{
	font-size: 16px;
    color: var(--primary-text);
    font-weight: 500;
	margin-left: auto;
	text-align: right;
}
.view-details-page.bc-exists #myAccordion .table-cell .value a{
    color: var(--primary-text);
}

/* .view-details-page.bc-exists #myAccordion > .accordion-item .table-cell#df_field_additional_information, .view-details-page.bc-exists #myAccordion > .accordion-item .table-cell#df_field_description_add { */
    /* display: block; */
/* } */
/* .view-details-page.bc-exists #myAccordion > .accordion-item #df_field_additional_information .value, .view-details-page.bc-exists #myAccordion > .accordion-item #df_field_description_add .value{ */
	/* text-align:left; */
	/* margin-top: 5px; */
/* } */
.view-details-page.bc-exists #myAccordion > .accordion-item .table-cell.textarea{
    display: block;
}
.view-details-page.bc-exists #myAccordion > .accordion-item .table-cell.textarea .value{
	text-align:left;
	margin-top: 5px;
}


.owner-details{
	padding: 20px 0px;
    border-top: 1px solid #f2f2f2;
    margin: 20px 0px;
    border-bottom: 1px solid #f2f2f2;
}
.owner-details h3{
	margin-bottom: 20px;
}
.owner-details .table-cell{
	display:flex;
	margin-bottom:20px;
}
.owner-details .table-cell .name{
	font-weight: 500;
	font-size:16px;
	color: var(--paragraph-color);
	font-family: var(--futura--medium-font);
}
.owner-details .table-cell .value{
	font-size: 16px;
    color: var(--primary-text);
    font-weight: 500;
	margin-left: auto;
	text-align: right;
	font-family: var(--futura--medium-font);
}
.owner-details .table-cell .value a{
    color: var(--primary-text);
}
.owner-details-card .get_more_details .picture img{
	width:100%;
}

/* Common resposive Start */

@media screen and (max-width: 576px) {
	.get-in-touch .btn_secondary {
		margin-top: 20px;
		display: inline-block;
	}

	.home-page .featured-aircraft .featured_aircraft_slider>div.d-flex.justify-content-between {
		display: block !important;
		padding-bottom: 40px !important;
	}

	.swiper_navigations {
		margin-top: 30px;
		display: none;
	}
	.featured-aircraft .swiper-pagination-bullets {
    bottom: unset !important;
	}

}

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
	.browse-category .shadow-box h4 {
		min-height: 50px;
	}

	.quick-link-area .shadow-box h5 {
		min-height: 40px;
	}

	.featured-aircraft div.picture img {
		height: 210px;
	}
	/* .home-page .home-banner .right-half{ */
		/* padding-right: 0 !important; */
		/* position: absolute; */
		/* right: 0; */
		/* left: 50%; */
		/* margin-left: auto; */
		/* width: auto; */
	/* } */
	section.side_block {
    margin-top: 40px;
	}
	.featured-aircraft .swiper-pagination-bullets {
    bottom: unset !important;
	}
	.client-logo h2 {
		text-align:center;
		margin-bottom:30px;
	}
}

/* Common resposive End */


  
  @media screen and (min-width:992px) and (max-width:1200px){
	  #navbar.navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 15px !important;
}
#navbar.navbar>ul>li a {
    font-size: 12px;
}
  }
  
  @media screen and (min-width:768px){
  .swiper-pagination-bullets{
	   Display:none;
	}
  }


#date_dropdown-btn {
	text-transform: uppercase;
	padding: 10px;
}
section.side_block_search .search-block-content input[type=checkbox]{
	transform: translateY(2px);
    margin-right: 5px;
}
input[type=checkbox], input[type=radio]{
	accent-color: var(--primary-text);
}

/* Contact Us page Start */

.contact-us-page .page_key_contact_us h2{
    color: var(--primary-text);
}
.contact-us-page .page_key_contact_us form input.wauto, .contact-us-page .page_key_contact_us form textarea{
	border: 1px solid #D9D9D9;
    padding: 10px;
    border-radius: 0px;
    color: #828282;
}
.contact-us-page .page_key_contact_us form .submit-cell .name {
    font-size: 16px;
    font-weight: 600;
}
.contact-us-page .page_key_contact_us form .submit-cell .red {
    color:red;
}
.contact-us-page .page_key_contact_us form .submit-cell:nth-child(5) .field span{
    color:var(--paragraph-color);
}
.contact-us-page .page_key_contact_us form input#security_code{
	height: 55px;
}
.contact-us-page .page_key_contact_us .card{
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    padding: 30px !important;
    border-radius: 12px !important;
}
.contact-us-page .page_key_contact_us .submit-cell.buttons input{
	margin-top:40px;
}

/* Contact Us page End */


/* Login Page Start */

.login-page input[type=submit].btn_primary{
	border-radius:50px;
}
.login-page .login-page-form .contact{
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25) !important;
	border-radius:12px;
}
.login-page .login-page-form .contact > a, .login-page .login-page-form .contact > div.mt-1 a{
	color: var(--primary-text);
    font-weight: 600;
}
.login-page .login-page-form .contact .caption_padding h2{
	color: var(--primary-text);
}
input::placeholder {
    text-transform: uppercase;
	font-style:normal;
}
textarea::placeholder {
    text-transform: uppercase;
	font-style:normal;
}

/* Login Page End */


.swiper-button-next, .swiper-button-prev {
    background: #004b8782;
    color: var(--text-white);
    padding: 30px;
    border-radius: 50px;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
    background: var(--bg-primary);
}
.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 22px;
}
.swiper-button-prev:hover:after, .swiper-button-next:hover:after {
    color:#fff;
}


.grid_navbar.listings-area {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
}


.ld-side-modals .modal-content{
	border-radius:10px;
}
.ld-side-modals .modal-header{
	background-color:var(--bg-primary);
}
.ld-side-modals .modal-header .btn-close{
	background:unset;
	font-size: 20px;
	box-shadow:none;
	transform: translateY(-2px);
}
.ld-side-modals .submit-cell.buttons{
	border-top:1px solid #eee;
}


ul.select-category > li select{
	background: var(--bg-white);
    color: var(--secondary-color);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
    border: 1px solid #d9d9d9;
}


.view-details-page.bc-exists section.statistics ul{
	list-style:none;
	padding-left: 0px;
}
.view-details-page.bc-exists section.statistics ul li:last-child a{
	background: var(--bg-primary) !important;
    padding: 10px 30px !important;
    color: var(--text-white) !important;
    border-radius: 50px;
    font-family: var(--futura--medium-font);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
	display: inline-block;
    margin-top: 30px;
	
}
.view-details-page.bc-exists section.statistics ul li:nth-child(2), .view-details-page.bc-exists section.statistics ul li:last-child a img{
	display:none;
}
.view-details-page.bc-exists section.statistics{
	padding-bottom: 20px;
    border-bottom: 2px solid #D7D7D7;
    margin-bottom: 30px;
}

.ld-side-modals .loan_mortgage .loan-box .fieldset header{
	font-size:18px;
	font-weight: bold;
}
.ld-side-modals #lm_loan_date_month, .ld-side-modals #lm_loan_date_year{
	box-shadow: none;
}

input[name="security_code"].wauto{
	height: 55px;
    transform: translateY(2px);
}
.ld-side-modals .loan_mortgage .loan-box .loan-table-cont > div:nth-child(1) .field{
    text-align: right;
}
.ld-side-modals .loan_mortgage .loan-box .loan-table-cont > div:nth-child(3) .field{
	display: flex;
    align-items: center;
}
/* .ld-side-modals .loan_mortgage .loan-box .loan-table-cont > div:nth-child(2) .field input[type=text]{ */
	/* max-width: 50px; */
/* } */
.ld-side-modals .loan_mortgage .loan-box .loan-table-cont > div:nth-child(3) .field input[type=text]{
	max-width: 50px;
    margin-right: 5px;
}

div.ct_price {
    display: flex;
}
div.ct_price input {
    margin-right: 10px;
}
div.ct_price select[title="Currency"] {
   border: 1px solid #D9D9D9;
    /* padding: 10px; */
    border-radius: 0px;
    color: #828282;
    text-transform: uppercase;
}
.align-button #save_search span{
	 margin-left: 20px;
    font-weight: bold;
}


/* side-blocks border fix Start */



/* section.side_block.ltsb_aircraft_parts .clearfix { */
    /* padding: 25px 30px; */
/* } */
/* section.side_block.ltfb_aircraft_parts > .clearfix { */
    /* padding: 25px 0px; */
/* } */
/* .featured.with-pictures div.sideblock .inner-box { */
    /* border-bottom: 2px solid #D7D7D7; */
    /* padding: 0px 30px 20px; */
/* } */
/* section.side_block.ltsb_aircraft_parts .clearfix form .clearfix { */
    /* padding: 0px; */
/* } */



/* side-blocks border fix End */


/* Registration Page Start */

.registration-page .contact-banner ul{
	padding-left: 15px;
	margin-bottom:40px; /* will add bootstrap class */
}
.registration-page .contact-banner ul li{
	list-style: disc;
	margin-bottom: 10px;
}
.registration-page .contact-banner .inner-text-box-banner h4{
	margin-bottom: 10px;
	margin-top: 20px;
}
.registration-page .contact-form #btn_container_account .btn_account{
	margin-right:10px;
}
.registration-page .contact-form .name{
	font-weight: 500;
	text-transform: uppercase;
	color: #000000;
	margin-bottom: 0.5rem;
}
.registration-page .contact-form .notice{
	font-size: 15px;
    color: #FF4D4D;
    margin-top: 10px;
}
.registration-page #personal_address_field .field input {
    height: 30px;
	display: inline-block;
}
.registration-page div#nav-tabContent P b {
    color: var(--primary-text);
}

/* Registration Page End */

.view-details-page.bc-exists .listing-details-sec {
    padding-bottom: 60px;
}

/* About us page start */

.about-us-page .about_us .container > p:nth-child(2){
	padding-bottom:20px;
	border-bottom:1px solid #D7D7D7;
	
}
.about-us-page #about_us > div > p:nth-child(4) > span:nth-child(4){
	padding-bottom:20px;
	border-bottom:1px solid #D7D7D7;
	width: 100%;
    display: inline-block;
}

/* About us page End */

/* Marketing page start */

.marketing-page #terms_conditions .our_package p strong {
    color: var(--primary-text);
}
.packages-page .our_package div#nav-home b {
    color: var(--primary-text);
}

/* Marketing page End */

/* Aircraft page start */

.aircrafts-page div#main_container h1 {
    color: var(--secondary-color);
}

/* Aircraft page End */

.remind-page  .submit-cell.buttons{
	margin-top:20px;
}
.remind-page  h2{
	margin-bottom:20px;
}


.registration-page #sf_field_country select + span {
	width:100% !important;
}
.registration-page select{
	width:100%;
}

/* section#listings.grid ul.ad-info li.title{ */
	/* min-height:50px; */
/* } */
/* section#listings.grid ul.ad-info li.fields{ */
	/* min-height: 126px; */
/* } */

@media screen and (min-width: 1200px){
	/* section#listings.grid ul.ad-info li.title{ */
	/* min-height:75px; */
/* } */
}

/* Sell Aircraft Page Start */

.sell-aircraft-page .sell_aircraft .blog-item .list-planes, .buy-aircraft-page .buy_aircraft .blog-item .list-planes{
	list-style:none;
}
.sell-aircraft-page .sell_aircraft .blog-item .list-planes li:before, .buy-aircraft-page .buy_aircraft .blog-item .list-planes li:before{
	content: "\f00c";
    font-family: 'FontAwesome';
    font-size: 18px;
    color: #2f5e8e;
    margin-left: -30px;
    display: inline-block;
    width: 30px;
    position: relative;
    top: 0px;
    text-align: left;
}
.sell-aircraft-page .sell_aircraft .blog-item .list-planes li, .buy-aircraft-page .buy_aircraft .blog-item .list-planes li{
	border: 0 none;
    padding-right: 0;
    padding-left: 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 15px;
}
.sell-aircraft-page .sell_aircraft .make-offer-card, .buy-aircraft-page .buy_aircraft .make-offer-card{
	padding:20px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
	border-radius: 12px;
}
.sell-aircraft-page .sell_aircraft .make-offer-card .name, .buy-aircraft-page .buy_aircraft .make-offer-card .name{
	font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 0.5rem;
}
.thanks-contact{
	padding: 60px 0px;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
	margin-bottom: 50px;
}

/* Sell Aircraft Page End */


.login-page .login_ul {
    padding-left: 0px;
}
.login-page .login_ul li img{
    margin-right: 10px;
}
.navbar>ul>li:first-child{
	display:none;
}
section#listings.grid > article .main-column{
	height:100%;
}
.account-menu-content .messages .welcome_card_list {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25) !important;
    border-radius: 12px !important;
	cursor:pointer;
}
.account-menu-content .messages .welcome_card_list a{
    color: var(--primary-text);
	    font-weight: 600;
}
.account-menu-content .messages .welcome_card_list a i{
    float:right;
	transform: translateY(2px);
}
.account-menu-content .messages .welcome_card_list a span{
    background:var(--bg-primary);
}
.account-menu-content .messages .welcome_card_list:hover a span{
    background:var(--bg-white);
	color: var(--primary-text);
}
.advanced-search-form .submit-cell{
	margin-bottom:24px;
}
.search-button > a[title="Quick Search"]{
	display:none;
}
.add-aircraft-page .add_aircraft .right_content .autocomplete-aircrafts{
	margin-bottom:30px;
}
.at-dealer-page.bc-exists section.account_page_info .seller-short .picture img {
    width: 100%;
	margin-bottom:10px;
}
.at-dealer-page.bc-exists div.table-cell.small > div.value {
    white-space: nowrap;
}
div.search-footer div.align-button #save_search{
	visibility: hidden;
}
.add-aircraft-page .aircraft_types .right_content .type_list_craft > span {
    color: var(--primary-text);
    font-weight: 500;
}
.compare-ad-list ul > li {
    padding: 10px;
    display: flex !important;
    background: #eee;
}
.compare-ad-list .link {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.compare-ad-list .link a{
    color: var(--primary-text);
}
.field.single-field .select2-container {
    width: 100% !important;
}
.rental-inquiry-page .contact-agent-form {
    padding: 20px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
}
.rental-inquiry-page .contact-agent-form .divider-row {
    font-weight: 600;
    font-size: 18px;
}
.rental-inquiry-page .contact-agent-form #ratings_checkbox .span2, .rental-inquiry-page .contact-agent-form #ratings_checkbox .span4 {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
    min-width: 87px;
}
.rental-inquiry-page .contact-agent-form label{
    font-weight: 500;
}
.red{
	color:#dc3545;
}
.add_listing #listing_form .file-input span{
	/* display: unset; */
    vertical-align: unset;
    line-height: unset;
    /* margin-left: 10px; */
}
.add_listing #listing_form .name {
    font-weight: 500;
}
.qtip.qtip-defaults .qtip-wrapper .qtip-contentWrapper{
	border:7px solid #004b87 !important;
}
.qtip.qtip-defaults .qtip-wrapper .qtip-contentWrapper .qtip-content{
	Background:var(--bg-primary) !important;
}
#system_message .alert.alert-danger{
	min-height: 45px;
    position: fixed;
    top: 90px;
    width: 576px;
    left: 50%;
    margin-left: -288px;
    z-index: 100;
}

.my-messages-page .my_messages .mass-actions{
	text-align: center;
    font-size: 16px;
    font-weight: 700;
}
.my-messages-page .my_messages .mass-actions a.remove_contacts{
	color:red;
}
aside#sidebar .nav-item:first-child .welcome {
    margin-left: 20px;
}
.my-listings article.featured .picture [title="Featured"]{
	color: var(--text-white);
    position: absolute;
    margin: 5px 0px 0px 5px;
    background: var(--bg-primary);
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}
.my-profile-page #area_profile #profile_submit{
	margin-top:20px;
}
.my-profile-page #area_profile #fs_change_password_area .single-field input.wauto{
	width:100%;
}
.my-profile-page #area_profile #fs_change_password_area .submit-cell{
	margin-bottom:24px;
}
.xls-export-import-page #controller_area{
	padding: 20px;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #fff;
}
.rv-listings-page #listings .main-column.clearfix {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    padding: 15px !important;
    border-radius: 12px;
    height: 100%;
	text-align:center;
}
.rv-listings-page #listings article.item{
    margin-bottom:20px;
}
.rv-listings-page #listings article.item .picture{
    margin-bottom: 10px;
    height: 188px;
}
.rv-listings-page #listings article.item .picture img{
    height: 100%;
	    width: 100%;
}
.rv-listings-page #listings article.item .featured span.for-sale{
    background: #F3F3F3;
    border-radius: 5px;
    color: var(--secondary-color);
    padding: 8px 18px;
    margin: 10px 0px;
}
.rv-listings-page #listings > article .main-column h4 a {
    color: var(--secondary-color);
    text-transform: uppercase;
}
#ui-datepicker-div{
	background: rgb(255, 255, 255);
    border: 1px solid rgb(215, 215, 215);
    padding: 10px;
}
	.payment-history-page .payment_history th:first-child {
    width: 60px;
}
.payment-history-page .payment_history th:nth-child(3) {
    width: 280px;
}
.payment-history-page .payment_history td {
    padding: 10px !important;
}
.submit-cell{
	margin-bottom:16px !important;
}
.add-aircraft-page .aircraft_types{
        padding: 40px 0px 0px;
	}
#modal_mask .manage-photo-description .two-inline{
	    display: flex !important;
}
.add_listing .right_content .add-tips > h1{
	text-transform:uppercase;
	margin-bottom:20px;
	text-align:center;
}
.my-profile-page .my-profile-sidebar .info .name{
	font-size: 16px;
    color: var(--paragraph-color);
}
.my-profile-page .my-profile-sidebar .info .value{
	font-size: 16px;
    color: var(--primary-text);
	float: right;
	    font-weight: 500 !important;
}
.plans-container.pricing .plan{
	margin-bottom:30px;
}
/* .rv-listings-page .rv_del_listings{ */
		/* width: 100%; */
/* text-align: right; */
/* margin-bottom: 40px; */
	/* margin-top: 0px; */
/* } */

/*==================
Login
===================*/

.home-banner {
    padding: 50px 0px;
    min-height: 470px;
}
section.home-banner {
    padding: 50px 0px;
    min-height: 470px;
    position: relative;
}


@media screen and (max-width: 767px){
.login-mob-bg {
    background-image: url(/templates/auto_main_red/img/login_bg.png);
    background-size: cover;
    background-position: center;
}
.login-page .login-page-form .contact {
    margin-bottom: 40px;
    margin: 0px 19px 40px;
}
.login-mob-bg {
    padding: 0px 45px;
}
}



.add-aircraft-page .autocomplete-aircrafts .tt-menu{
	background: rgb(255, 255, 255);
	border: 1px solid rgb(215, 215, 215);
	padding: 10px;
	height: 300px;
	overflow-y: auto;
	width: 100%;
}
.add-aircraft-page .autocomplete-aircrafts .tt-menu .tt-suggestion {
padding: 5px 0px;
}
#navbar ul li:nth-child(9){
	display:none;
}
#myprofile-manu{
	border: 1px solid #d9d9d9;
    padding: 20px;
}
section.side_block span.expander {
    display: none;
}
#about_us > div > h3:nth-child(3) a{
    color: var(--secondary-color);
}
#about_us > div > h3:nth-child(3) a:hover{
    text-decoration:underline;
}
@media screen and (max-width:576px){
	.listing-details-sec .name-price h2{
		width:100%;
		margin-bottom: 20px !important;
	}
	.listing-details-sec .name-price span{
		float:unset !important;
	}
	div.loan-table-cont > div {
    padding: 0 6px 15px 0 !important;
	}
	.xls-export-import-page .file-input input.file-name{
		width:100%;
	}
	.payment-page #check_coupon{
		padding: 10px 24px !important;
	}
	.file-input input.file-name {
    width: 120px;
    position: relative;
}
}


@media screen and (max-width:992px){
	.navbar>ul>li:first-child{
	display:block;
}
	.navbar-mobile>ul>li:first-child{
		text-align: center;
    font-size: 20px;
    color: #222222;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
	    padding-top: 10px;
	}
	.navbar-mobile>ul>li:last-child a{
		display: inherit;
		text-align: center;
	}
	.navbar-mobile>ul>li:last-child{
		padding-top: 20px;
		margin-top: 20px;
		border-top: 1px solid #eee;
	}
	.featured-aircraft div.picture img {
	height: 250px !important;
	}
	.listing-details-sec .lt-details-compare-btn{
		right:12px;
	}
	.add-listing-page .add_listing .left_content{
	margin-bottom:30px;
	}
	.contact-owner-navbar {
    background: #fff;
	}
	.contact-owner-navbar inpu[value="Seller"]{
        margin-right: 20px;
	}
	.at-dealer-page.bc-exists section.account_page_info .owner-details > div > div{
		margin-left: 20px;
	}
	.contact .php-email-form {
    padding: 20px !important;
	}
	.registration-page .home-banner .left-text-box{
		height: auto;
	}
	
	/* Profile Menu Start */
	
	#navbar.navbar-mobile li.dropdown ul{
		display:block !important;
		box-shadow: none;
		margin: 0px;
	}
	#navbar.navbar-mobile li.dropdown ul .user_setting_content li a{
		padding-left:0px;
	}
	#navbar.navbar-mobile li.dropdown ul .user_setting_content{
		padding:10px 20px;
	}
	#navbar.navbar-mobile li.dropdown ul:before{
		content: "Profile Menu";
		text-align: center;
		font-size: 20px;
		color: #222222;
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid #eee;
		width: 100%;
		display: inline-block;
	}
	#navbar > ul > li.dropdown > a{
		display:none;
	}
	
	/* Profile Menu End */
	
	.left_content {
    margin-bottom: 30px;
	}
	.modal_block.fullscreen {
		height: auto !important;
		top: 40%;
	}
}
@media screen and (max-width:767.9px){
	.view-details-page.bc-exists section.similarListings{
		margin-right:0px;
		margin-left:0px;
	}
	.view-details-page.bc-exists section.similarListings .ty{
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid #d9d9d9;
	}
	.view-details-page.bc-exists section.similarListings .ty:last-child{
		margin-bottom: 0px;
		padding-bottom: 0px;
		border-bottom: 0px;
	}
	
	/* My Listings */

	 section.list.my-listings > article{
		max-width:100%
	}
	section#listings.list.my-listings div.picture{
		width:100%;
		height:auto;
	}
	.my-listings div.stat ul > li span.name {
    color: var(--secondary-color);
    width: 90px;
    display: inline-block;
	}
	section#listings.my-listings .item div.stat > ul{
		columns: 1 !important;
	}
	section#listings.my-listings .item div.stat > ul li{
		width:100%;
	}
	
	/* Breadcrub Start */

	#bread_crumbs ul{
		display: -webkit-inline-box !important;
		overflow-x: auto;
	}
	#bread_crumbs ul li {
		height: 15px;
		display:block !important;
	}

	/* Breadcrub End */
	.payment-history-page .payment_history table{
    table-layout:unset;
	}
	#system_message .alert.alert-danger{
		width: 100%;
		left: 0;
		margin: 0;
	}
	.compare-listings-page .compare-table .title.in.fixed{
		top: 193px;
	}
	.compare-listings-page .compare-table .in.fixed{
		top: 80px;
	}
	.compare-listings-page .compare-table .fields-content{
		flex: 1;
		min-width: 0;
		overflow: hidden;
	}
	}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
	.registration-page .contact-form #btn_container_account .btn_account {
    margin-right: 10px;
    padding: 8px 17px !important;
    font-size: 12px;
	}
	.package-box .nav-tabs .nav-link {
    font-size: 13px !important;
	}
	.view-details-page.bc-exists #loan_mortage .loan_mortgage .btn_primary[value="Calculate"]{
		    font-size: 11px;
	}
	.featured.with-pictures div.sideblock:nth-last-child(2), .featured.with-pictures div.sideblock:last-child(2) {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
	}
}
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape) {
	.my-profile-page .my-profile-sidebar #navigation .delete.btn_primary{
		    margin-left: 1px;
	}
	}
	
	@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (-webkit-min-device-pixel-ratio: 2) 
  and (orientation: portrait){
	  .my-profile-page .my-profile-sidebar #navigation .delete.btn_primary{
		    margin-left: 1px;
	}
  }
  
  @media only screen and (max-width: 1200px) and (min-width: 1100px){
	  .registration-page .registration-banner .inner-text-box-banner h1{
		font-size:35px;
	}
  }
  