@charset "utf-8";
/* Variables */
:root {
  --brand-clr1: #ca000c;
  --body-clr: #222222;
  --white-clr: #ffffff;
  --gray-clr1: #f1f1f1;
  --dark-clr: #121212;
  --transition: all ease .4s;
  --shadow1: 0 0 6px 6px rgba(0, 0, 0, 0.03);
}
/* Normal CSS */
html {
  overflow-x: hidden;
}
body {
  font-size: 18px;
  color: var(--body-clr);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 1.42857143;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: var(--transition);
}
*, *:focus {
  outline: none;
}
a {
  color: var(--body-clr);
  text-decoration: none;
  transition: var(--transition);
}
a:hover, a:focus {
  color: var(--brand-clr1);
}
a:focus {
  outline: none;
  outline-offset: 0;
}
p {
  margin-bottom: 10px;
  font-weight: 300;
  line-height: 32px;
}
ol, ul {
  padding-left: 0;
  margin: 0;
}
img {
  max-width: 100%;
  object-fit: cover;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  padding-bottom: 10px;
  margin-bottom: 0;
  font-weight: 700;
  text-transform: uppercase;
}
svg * {
  fill: none;
  stroke: #4D6C85;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}
video {
  width: 100%;
  height: auto;
  border: none;
}
section {
  padding: 100px 0;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* Button CSS */
.btn {
	font-size: 14px;
	border-radius: 0;
	transition: var(--transition);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 13px 30px;
	min-width: 168px;
}
.btn-border {
	border-color: var(--body-clr);
	color: var(--body-clr);
}
.btn-border:hover, .btn-border:focus {
	border-color: var(--brand-clr1);
	color: var(--white-clr);
	background: var(--brand-clr1);
}
.btn-red {
	font-size: 18px;
	color: var(--white-clr);
	background: var(--brand-clr1);
	padding: 16px 25px;
}
.btn-red:hover, .btn-red:focus {
	border-color: var(--brand-clr1);
	color: var(--brand-clr1);
	background: transparent;
}
.btn-check:focus + .btn, .btn:focus {
	box-shadow: none;
}
/* Form CSS */
.form-control::-webkit-input-placeholder {
  color: #121212;
  text-transform: uppercase;
}
.form-control::-moz-placeholder {
  color: #121212;
  text-transform: uppercase;
}
.form-control:-ms-input-placeholder {
  color: #121212;
  text-transform: uppercase;
}
.form-control:-moz-placeholder {
  color: #121212;
  text-transform: uppercase;
}
.tab-content .form-control::-webkit-input-placeholder {
  color: #858585;
  text-transform: uppercase;
}
.tab-content .form-control::-moz-placeholder {
  color: #858585;
  text-transform: uppercase;
}
.tab-content .form-control:-ms-input-placeholder {
  color: #858585;
  text-transform: uppercase;
}
.tab-content .form-control:-moz-placeholder {
  color: #858585;
  text-transform: uppercase;
}
.form-group {
	margin-bottom: 24px;
}
.form-control {
	border-radius: 0;
	border-color: transparent;
	padding: 18px;
}
.form-control:focus {
	box-shadow: none;
	border-color: var(--brand-clr1);
}
select.form-control {
	text-transform: uppercase;
	background: url(../images/select-arrow.png) no-repeat right 18px center transparent !important; 
}

/* Hamburger CSS */
.hamburger {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--brand-clr1);
  border: 0.063rem solid transparent;
  padding: 10px;
  position: relative;
  z-index: 2;
}
.hamburger.active::before {
  position: fixed;
  top: 0;
  left: 0;
  width: 3.75rem;
  height: 3.25rem;
  content: "";
  transition: 0.4s ease;
  z-index: 1;
}
.hamburger.active span {
  background: none;
}
.hamburger.active span::before {
  height: 0.188rem;
  transform: translateY(0.438rem) rotateZ(-45deg);
  -webkit-transform: translateY(0.438rem) rotateZ(-45deg);
}
.hamburger.active span::after {
  height: 0.188rem;
  transform: translateY(-0.438rem) rotateZ(45deg);
  -webkit-transform: translateY(-0.438rem) rotateZ(45deg);
  background: #ffffff;
}
.hamburger span {
  display: block;
  height: 0.125rem;
  border-radius: 0.125rem;
  background: #ffffff;
  position: relative;
  transition: 0.4s ease;
  z-index: 1;
}
.hamburger span::before, .hamburger span::after {
  position: absolute;
  top: -0.438rem;
  right: 0;
  width: 100%;
  height: 0.125rem;
  background: #ffffff;
  content: "";
  transition: 0.4s ease;
  border-radius: 0.125rem;
  z-index: 0;
}
.hamburger span::after {
  top: 0.438rem;
}


/* Page Banner CSS */
.page-banner {
	padding: 0;
	height: 250px;
	background: url(../images/page-banner.jpg) no-repeat center;
	background-size: cover;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 0;
}
.page-banner:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}
.page-caption {
	text-align: center;
	position: relative;
	z-index: 1;
}
.page-caption h1 {
	font-size: 50px;
	letter-spacing: 0.25px;
	color: #fff;
}
.breadcrumb {
	justify-content: center;
	font-size: 20px;
	letter-spacing: 1px;
	margin-bottom: 0;
	text-transform: uppercase;
}
.breadcrumb-item a {
	color: var(--white-clr);
}
.breadcrumb-item a:hover, .breadcrumb-item a:focus {
	color: var(--brand-clr1);
}
.breadcrumb-item + .breadcrumb-item {
	padding-left: 12px;
}
.breadcrumb-item + .breadcrumb-item::before {
	padding-right: 12px;
	content: "|";
	color: #bcb5b5;
}
.breadcrumb-item.active {
	color: var(--white-clr);
}

/* Header CSS */
header {
	padding: 35px 0;
	transition: var(--transition);
}
header.sticky {
	padding: 15px 0;
}
.logo img {
	width: 312px;
	transition: var(--transition);
}
header.sticky .logo img {
	width: 200px;
}
header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-right {
	display: flex;
	align-items: center;
}
nav {
	padding-right: 50px;
}
nav ul {
	font-size: 13px;
	display: flex;
	align-items: center;
	text-transform: uppercase;
}
nav > ul > li + li {
	padding-left: 38px;
}
nav ul > li > a {
	position: relative;
}
nav ul > li > a:after {
	position: absolute;
	content: "";
	width: 0;
	height: 2px;
	background: var(--brand-clr1);
	left: 0;
	bottom: -25px;
	transition: var(--transition);
}
header.sticky nav ul > li > a:after {
	bottom: -10px;
}
nav ul > li > a:hover:after {
	width: 100%;
}
nav ul > li > a.active:after {
	width: 100%;
}
.header-secondary {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 11;
}
.header-primary.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999999;
	background: var(--white-clr);
	box-shadow: var(--shadow1);
}
.header-secondary.sticky {
	background: var(--body-clr);
}
.header-secondary nav > ul > li > a {
	color: var(--white-clr);
}
.header-secondary nav > ul > li > a:hover, .header-secondary nav > ul > li > a:focus {
	color: var(--brand-clr1);
}
.header-secondary .btn-border:not(:hover,:focus) {
	border-color: var(--white-clr);
	color: var(--white-clr);
}
.socials {
	display: flex;
	align-items: center;
}
.socials li + li {
	padding-left: 20px;
}
.socials li a {
	position: relative;
}
.header-primary li img, .header-primary .socials img {
	filter: grayscale(1) brightness(5) invert(1);
	transition: var(--transition);
}
.header-primary li img:hover, .header-primary .socials img:hover {
	filter: grayscale(0) brightness(1) invert(0);
}
.header-secondary li img, .header-secondary .socials img {
	filter: brightness(0) invert(1);
	transition: var(--transition);
}
.header-secondary li img:hover, .header-secondary .socials img:hover {
	filter: brightness(100%) invert(0);
}
header .socials {
	padding-left: 40px;
}
.badge {
	position: absolute;
	top: 0;
	right: -6px;
	background: var(--brand-clr1);
	border-radius: 15px;
	min-width: 15px;
	height: 15px;
	font-size: 12px;
	line-height: 14px;
	display: flex;
	justify-content: center;
	padding: 0;
}

/* Hero CSS */
.hero {
	padding: 0;
	position: relative;
	z-index: 0;
}
.hero .container {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	bottom: 0;
	z-index: 1;
}
.hero-title {
	font-size: 50px;
	color: var(--white-clr);
	letter-spacing: 0.25px;
	padding-bottom: 5px;
}
.hero-subtitle {
	font-size: 25px;
	color: var(--white-clr);
	letter-spacing: 1px;
	font-weight: 400;
	margin-bottom: 20px;
}
.hero .swiper-slide {
	position: relative;
}
.hero .swiper-slide:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}
.hero .swiper-slide img {
	width: 100%;
	height: 100%;
}
.hero-slider {
	height: 856px;
}
.tab-content {
	text-align: left;
}
.tab-content .form-group {
	margin-bottom: 0;
}
.tab-content .form-control {
	font-size: 18px;
	padding: 12px 18px;
}
.multi-select-container {
	width: 100%;
	max-width: 340px;
}
.multi-select-button {
	border-radius: 0;
	font-size: 18px;
	text-transform: uppercase;
	border-color: transparent;
	padding: 12px 40px 12px 20px;
	width: 100%;
	max-width: 100%;
	box-shadow: none;
}
.multi-select-button::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}
.multi-select-menuitem {
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 700;
}
.multi-select-menu {
	padding: 10px 0;
	top: calc(100% + 6px);
	margin-top: 0;
	background: #f8f8f8;
	border: none;
	box-shadow: none;
}
.multi-select-menuitem {
	padding: 10px 30px 10px 60px !important;
}
.multi-select-menuitem:hover {
	background: #ebebeb;
}
.multi-select-menuitem {
	position: relative;
	cursor: pointer;
}
.multi-select-menuitems input[type="checkbox"] {
	margin-top: 2px;
	margin-left: -26px;
	width: 17px;
	height: 17px;
	background-color: #fff;
	background-size: contain;
	border: 2px solid #bcbcbc;
	appearance: none;
}
.multi-select-menuitems :checked[type="checkbox"] {
	background: var(--brand-clr1);
}
.select-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.select-wrap .form-group {
	flex-grow: 1;
	border-left: 1px solid #d3d3d3;
}
.select-wrap .btn-red {
	font-size: 14px;
	padding: 15px 25px;
}

/* Tab Nav CSS */
.tab-nav {
	justify-content: center;
}
.tab-nav .nav-link {
	border-radius: 0;
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--body-clr);
	background: var(--white-clr);
	min-width: 300px;
	padding: 20px 25px;
}
.tab-nav .nav-item + .nav-item {
	margin-left: 10px;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
	color: var(--white-clr);
	background: var(--brand-clr1);
}
.tab-content {
	padding: 6px;
	margin-top: 10px;
	background: var(--white-clr);
}

/* Swiper Slider CSS */
.swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	background: transparent;
	border: 1px solid #fff;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background: var(--white-clr);
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 7px;
}
.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 50px;
}

/* Properties CSS */
.properties {
	padding: 55px 0 35px;
	background: var(--gray-clr1);
}
.properties .row, .featured-pro .row {
	margin: 0 -15px;
}
.properties [class*="col-"], .featured-pro [class*="col-"] {
	padding: 0 15px;
}
.box-item {
	display: flex;
	align-items: center;
	background: url(../images/property-bg.png) no-repeat right 25px bottom #fff;
	padding: 40px 100px 40px 40px;
	box-shadow: var(--shadow1);
	height: 100%;
}
.box-item figcaption {
	padding-left: 40px;
}
.box-item h2 {
	font-size: 22px;
}
.box-item .btn {
	margin-top: 15px;
}

/* Featured Properties CSS */
.section-title {
	font-size: 40px;
	text-align: center;
}
.featured-pro .section-title {
	font-size: 50px;
	text-align: center;
	padding-bottom: 80px;
	font-weight: 900;
}
.property-item {
	margin-bottom: 50px;
}
.property-item .img-wrap {
	position: relative;
	overflow: hidden;
}
.property-item .img-wrap img {
	width: 100%;
	transition: var(--transition);
}
.property-item .action-items {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(202, 0, 12, 0.7);
	transition: var(--transition);
	transform: translateY(100%);
	z-index: 0;
}
.property-item .img-wrap:hover img {
	transform: scale(1.05);
}
.property-item .img-wrap:hover .action-items {
	transform: translateY(0);
}
.property-item figcaption {
	padding-top: 40px;
}
.property-price {
	font-size: 30px;
	padding-bottom: 8px;
	display: inline-flex;
}
.property-item h3 {
	font-size: 24px;
	font-weight: 900;
}
.property-item h4 {
	font-size: 24px;
	font-weight: 400;
}
.action-items li + li {
	margin-left: 10px;
}
.tag-label {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--brand-clr1);
	color: var(--white-clr);
	font-weight: 500;
	padding: 5px 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 1;
}
.featured-pro .btn-wrap {
	text-align: center;
	padding-top: 20px;
}
.featured-pro .btn-border {
	font-size: 18px;
	padding: 15px 30px;
	min-width: 215px;
}

/* Questions Queries CSS */
.questions-queries {
	border-top: 8px solid var(--brand-clr1);
	background: url(../images/questions-queries-bg.jpg) no-repeat center #fff;
	background-size: cover;
	position: relative;
}
.questions-queries:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	z-index: 0;
}
.questions-queries .container {
	position: relative;
	z-index: 1;
}
.questions-queries .section-title {
	font-size: 45px;
	padding-bottom: 30px;
}
.queries-wrap {
	max-width: 950px;
	margin: 0 auto;
}
.queries-wrap .form-group {
	margin-bottom: 0;
}
.queries-wrap .form-control {
	background: transparent;
	border-width: 0 0 1px 0;
	border-color: var(--dark-clr);
}
.queries-wrap .form-control:focus {
	border-color: var(--brand-clr1);
}
.queries-wrap textarea {
	height: 100px;
	resize: none;
}
.queries-wrap .btn-wrap {
	text-align: center;
	padding-top: 40px;
}

/* Be A Rider CSS */
.be-rider {
	text-align: center;
}
.be-rider .section-title {
	padding-bottom: 20px;
}
.be-rider h3 {
	text-transform: inherit;
}
.form-wrap {
	padding-top: 80px;
	margin-top: 80px;
	border-top: 3px solid #eaeaea;
}
.form-wrap .form-control {
	padding: 18px 25px;
}
.form-wrap form {
	background: var(--gray-clr1);
	padding: 70px;
}
.form-wrap select.form-control {
	text-transform: uppercase;
	background: url(../images/select-arrow.png) no-repeat right 25px center #fff !important;
}
.form-wrap textarea {
	height: 140px;
	resize: none;
}
.form-wrap form .btn {
	font-size: 18px;
	min-width: 100%;
}

/* Vender CSS */
.our-services {
	text-align: center;
}
.our-services .section-title {
	padding-bottom: 20px;
}
.services-wrap {
	padding-top: 80px;
	margin-top: 50px;
	border-top: 3px solid #eaeaea;
}
.service-item {
	text-align: center;
	margin-bottom: 50px;
}
.service-icon {
	padding: 25px;
	margin: 0 auto 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 145px;
	height: 145px;
	background: var(--white-clr);
	border-radius: 100%;
	border: 8px solid var(--brand-clr1);
}
.service-item h3 {
	font-size: 22px;
}
.service-item p {
	line-height: 30px;
}
.our-services .form-wrap {
	margin-top: 30px;
}

/* The Company CSS */
.company-slider .container {
	position: relative;
}
.company-slider .swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 20px;
}
.company-slider .swiper-pagination-bullet {
	border-width: 2px;
}
.company-slider .swiper-pagination-bullet-active {
	background: var(--brand-clr1);
	border-color: var(--brand-clr1);
}
.swiper-button-next, .swiper-button-prev {
	width: 55px;
	height: 80px;
	background: rgba(241, 241, 241, 0.90);
	transition: var(--transition);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
	background: rgba(0, 0, 0, 0.90);
}
.swiper-button-next::after, .swiper-button-prev::after {
	font-weight: bold;
	font-size: 24px;
	color: var(--body-clr);
}
.swiper-button-next:hover:after, .swiper-button-prev:hover:after {
	color: var(--white-clr);
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
	left: -12px;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
	right: -12px;
}
.company-slider + .company {
	padding-top: 0;
}
.company {
	text-align: center;
}
.company .section-title {
	padding-bottom: 20px;
}
.section-title-wrap {
	text-align: left;
	padding-bottom: 20px;
}
.section-title-wrap .section-title {
	text-align: left;
}
.small-title {
	font-size: 14px;
	color: var(--brand-clr1);
	letter-spacing: 0.5px;
	padding-left: 46px;
	position: relative;
	padding-bottom: 20px;
}
.small-title:before {
	position: absolute;
	content: "";
	top: 7px;
	left: 0;
	width: 27px;
	height: 3px;
	background: var(--brand-clr1);
}
.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.contact-icon {
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 91px;
	min-width: 91px;
	height: 91px;
	background: var(--white-clr);
	border-radius: 100%;
	border: 8px solid var(--brand-clr1);
}
.contact-info {
	text-align: left;
	padding-left: 20px;
}
.contact-info h5 {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1.5px;
	padding-bottom: 5px;
}
.contact-info a, .contact-info p {
	font-size: 20px;
	font-weight: 700;
}
.map {
	padding: 0;
}
.map iframe {
	display: block;
	height: 473px;
}

/* Footer CSS */
footer {
	padding: 65px 0 0;
	background: var(--body-clr);
}
footer .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer-items {
	display: flex;
	align-items: center;
}
.footer-item + .footer-item {
	padding-left: 100px;
}
.footer-item {
	color: var(--white-clr);
	display: flex;
	align-items: center;
}
.footer-item a {
	color: #bababa;
	font-weight: 300;
	font-size: ;
}
.footer-item a:hover, .footer-item a:focus {
	color: var(--brand-clr1);
}
.footer-item-content {
	padding-left: 30px;
}
.footer-item-content h5 {
	font-size: 18px;
	padding-bottom: 7px;
}
.footer-item-content-wrap {
	display: flex;
}
.footer-item-inner + .footer-item-inner {
	padding-left: 55px;
	display: inline-flex;
	flex-direction: column;
}
.footer-item-inner + .footer-item-inner a {
	margin-bottom: 4px;
	color: var(--white-clr);
	font-weight: 700;
}
.footer-item-inner + .footer-item-inner a:hover, .footer-item-inner + .footer-item-inner a:focus {
	color: var(--brand-clr1);
}
.footer-item-inner + .footer-item-inner a + a {
	color: #bababa;
	font-weight: 300;
}
.footer-item-inner + .footer-item-inner img {
	margin-right: 5px;
}
.footer-item-inner + .footer-item-inner a + a img {
	filter: brightness(60%);
}
footer .socials {
	padding-top: 10px;
}
footer .socials img {
	filter: brightness(0) invert(1);
	transition: var(--transition);
}
footer .socials img:hover, footer .socials img:focus {
	filter: brightness(100%) invert(0);
}
.copyright {
	color: #8f8f8f;
	padding: 50px 0;
	border-top: 1px solid #4e4e4e;
	width: 100%;
	margin-top: 65px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 300;
}
.copy-text a {
	color: var(--white-clr);
	margin-right: 5px;
}
.copy-text a:hover, .copy-text a:focus {
	color: var(--brand-clr1);
}
.design-by {
	display: flex;
	align-items: center;
	color: #a3a3a3;
}
.design-by img {
	margin-left: 14px;
}

/* Responsive CSS */
@media screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

@media screen and (min-width: 1400px) {
	.container-large {
		max-width: 1340px;
	}
}

@media screen and (min-width: 1600px) {
	.container-large {
		max-width: 1500px;
	}
}

@media screen and (min-width: 1880px) {
	.container-large {
		max-width: 1800px;
	}
}

@media screen and (max-width: 1879px) {
	.footer-item > a > img {
		width: 100px;
		min-width: 100px;
	}
	.footer-item + .footer-item {
		padding-left: 40px;
	}
	.footer-item-inner + .footer-item-inner {
		padding-left: 25px;
	}
}
@media screen and (max-width: 1599px) {
	.logo img {
		width: 260px;
	}
	nav > ul > li + li {
		padding-left: 28px;
	}
	.box-item {
		padding: 35px;
	}
	.box-item > img {
		max-width: 250px;
	}
	.box-item figcaption {
		padding-left: 30px;
	}

	.footer-item-content h5, .footer-item a {
		font-size: 16px;
	}
	.footer-logo img {
		width: 200px;
	}
}
@media screen and (max-width: 1399px) {
	header .socials {
		padding-left: 20px;
	}
	nav {
		padding-right: 25px;
	}
	nav > ul > li + li {
		padding-left: 24px;
	}
	.logo img {
		width: 210px;
	}
	.box-item figcaption {
		padding-left: 20px;
	}
	.box-item > img {
		max-width: 200px;
	}
	.property-item figcaption {
		padding-top: 20px;
	}
	.property-price, .property-item h3,.property-item h4 {
		font-size: 20px;
	}
	.section-title {
		font-size: 40px !important;
	}



	.footer-logo {
		margin: 0 auto 40px;
	}
	.footer-logo img {
		width: 200px;
	}
}
@media screen and (max-width: 1199px) {
	.has-nav {
		overflow: hidden;
	}
	header {
		padding: 15px 0;
	}
	.hamburger {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
	.header-right {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--white-clr);
		padding: 100px 20px 50px;
		font-weight: 700;
		font-size: 1.5rem;
		text-align: center;
		display: flex;
		align-items: center;
		flex-direction: column;
		opacity: 0;
		visibility: hidden;
		transition: 0.4s ease;
		overflow-y: auto;
		z-index: 1;
	}
	.has-nav .header-right {
		opacity: 1;
		visibility: visible;
	}
	.header-secondary .header-right {
		background: var(--body-clr);
	}
	nav {
		padding-right: 0;
		padding-bottom: 40px;
	}
	nav ul {
		flex-direction: column;
	}
	nav > ul > li + li {
		padding-left: 0;
		padding-top: 20px;
	}
	nav ul > li > a::after {
		bottom: -10px;
	}
	header .socials {
		padding-top: 30px;
		padding-left: 0;
	}
	.hero-title, .page-caption h1 {
		font-size: 44px;
	}
	.tab-nav .nav-link {
		font-size: 16px;
		padding: 14px 25px;
		min-width: 200px;
	}
	.select-wrap .btn {
		min-width: 148px;
	}
	.multi-select-container {
		max-width: 190px;
	}
	.multi-select-menuitem {
		padding: 10px 30px 10px 40px !important;
	}
	.hero-subtitle {
		font-size: 22px;
	}
	.multi-select-button, .tab-content .form-control {
		font-size: 16px;
	}
	.box-item {
		flex-direction: column;
		margin-bottom: 0;
	}
	.box-item figcaption {
		padding-left: 0;
		padding-top: 25px;
	}
	.box-item h2 {
		font-size: 20px;
	}
	.property-item {
		margin-bottom: 30px;
	}
	.form-wrap {
		padding-top: 60px;
		margin-top: 60px;
	}
	.form-wrap form {
		padding: 50px;
	}
	.services-wrap {
		padding-top: 60px;
	}
	.contact-icon {
		padding: 15px;
		border-width: 3px;
		width: 65px;
		min-width: 65px;
		height: 65px;
	}
	.contact-info h5 {
		padding-bottom: 0;
	}
	.contact-info a, .contact-info p {
		font-size: 18px !important;
	}
	.contact-info a br {
		display: none;
	}


	footer .container {
		align-items: flex-start;
		flex-direction: column;
	}
	.footer-logo {
		margin-left: 0;
	}
	.footer-items {
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-item + .footer-item {
		padding-left: 0;
		padding-top: 30px;
	}
	.footer-item-inner + .footer-item-inner img {
		width: 20px;
	}
	footer .socials img {
		height: 20px;
	}
	.copyright {
		flex-direction: column;
		padding: 20px 0;
		margin-top: 50px;
	}
	.design-by {
		margin-top: 5px;
	}
}
@media screen and (max-width: 991px) {
	p {
		font-size: 16px !important;
		line-height: 26px;
	}
	.service-item p {
		line-height: 26px;
	}
	.tab-nav {
		flex-direction: column;
	}
	.tab-nav .nav-item + .nav-item {
		margin-left: 0;
		margin-top: 10px;
	}
	.select-wrap {
		flex-direction: column;
	}
	.select-wrap {
		flex-direction: column;
		width: 100%;
	}
	.tab-nav .nav-link {
		min-width: 100%;
	}
	.select-wrap .form-group {
		width: 100%;
		border: 0;
	}
	.multi-select-container {
		max-width: 100%;
	}
	.multi-select-button, .tab-content .form-control {
		border-bottom: 1px solid var(--gray-clr1);
	}
	.multi-select-button:focus, .tab-content .form-control:focus {
		border-color: var(--brand-clr1);
	}
	.select-wrap .btn {
		margin-top: 10px;
	}
	.tab-content {
		padding: 10px;
	}
	.section-title {
		font-size: 32px !important;
		padding-bottom: 30px !important;
	}
}

@media screen and (max-width: 767px) {
	section {
		padding: 50px 0;
	}
	.hamburger {
		width: 2.25rem;
		height: 2.25rem;
		padding: 6px;
	}
	.logo img, header.sticky .logo img {
		width: 160px;
	}
	.hero-slider {
		height: 720px;
	}
	.hero-title, .page-caption h1 {
		font-size: 36px;
	}
	.box-item {
		margin-bottom: 20px;
		height: auto;
	}
	.property-price, .property-item h3, .property-item h4 {
		font-size: 16px;
	}
	.be-rider .section-title {
		padding-bottom: 10px !important;
	}
	.action-items img {
		width: 30px !important;
	}
	.form-wrap, .services-wrap {
		padding-top: 40px;
		margin-top: 40px;
	}
	.form-wrap form {
		padding: 25px;
	}
	.form-wrap form .btn, .featured-pro .btn-border {
  	font-size: 16px
	}
	.form-wrap .form-control {
		padding: 14px 20px;
	}
	.form-group {
		margin-bottom: 15px;
	}
	.service-item h3 {
		font-size: 18px;
	}
	.service-item {
		margin-bottom: 30px;
	}
	.service-icon {
		padding: 20px;
		width: 100px;
		height: 100px;
		border-width: 4px;
	}
	.our-services .form-wrap {
		margin-top: 10px
	}
	.breadcrumb {
		font-size: 16px;
	}
	.company-slider .swiper-button-next, .swiper-button-prev {
		display: none;
	}
	.image-slider {
		height: 300px;
	}
	.image-slider .swiper-slide img {
		height: 100%;
	}
	.company .section-title {
		padding-bottom: 10px !important;
	}
	.map iframe {
		display: block;
		height: 300px;
	}

	footer {
		padding: 50px 0 0;
	}
	.footer-item > a > img {
		width: 90px;
		min-width: 90px;
	}
}

@media screen and (max-width: 575px)  {
	.section-title {
	  font-size: 26px !important;
		padding-bottom: 25px !important;
	}
	.hero-title, .page-caption h1 {
		font-size: 32px;
	}
	.hero-subtitle {
		font-size: 18px;
	}
	.property-item {
		margin-bottom: 20px;
	}


	.footer-logo img {
		width: 180px;
	}
	.footer-item-content-wrap {
		flex-direction: column;
	}
	.footer-item-inner + .footer-item-inner {
		padding-top: 15px;
		padding-left: 0;
	}
	.footer-item {
		align-items: flex-start;
	}
	.footer-item-content {
		padding-left: 16px;
	}
	.footer-item > a > img {
		width: 50px;
		min-width: 50px;
	}
	.copyright {
		text-align: center;
		font-size: 16px;
	}
	.design-by img {
		width: 80px;
	}
}