*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2c4b97;
  --accent-color: #f21326;
  --neutral-color: #f9f9f9;
  --seco-neutral: #eaeaea;
  --complementary:#0c3ba3;
  --black-color: #000000;
  --white-color: #ffffff;
  --gray-color: #797979;
  --heading-color: #111111;
  --text-color: #333333;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight:400;
  font-style:normal;
  font-size:16px;
  color: var(--text-color);
  line-height: 1.6;
  background: #fff;
}

p {
 margin:0;
 padding:0
}
a{
  color:  #1a6493;
}

.navbar-toggler:focus,
a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
   text-decoration:none;
   outline:none
}
span,
a {
  display:inline-block;
  text-decoration:none;
  transition:all .4s ease;
  -webkit-transition:all .4s ease;
  -moz-transition:all .4s ease
}
audio,
canvas,
iframe,
img,
svg,
video {
 vertical-align:middle
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin:0;
  color: #161836;
  text-rendering: optimizeLegibility;
  font-family: "Montserrat", sans-serif;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
 color:inherit
}
h1 {
 font-size:42px;
 color: #2c4b97;
 font-weight: 700;
}
h2 {
  font-size: 2.1rem;
  line-height: 1.1em;
  font-weight: 600!important;
  margin-bottom: 0.78rem;
}


h3 {
 font-size:24px;
 margin-bottom: 10px;
 font-weight: 600;
 color: #444444;
}
h4 {
 font-size:20px
}
h5 {
 font-size:19px
}
h6 {
 font-size:16px
}

.text {
	color: #1b1b1b;
	letter-spacing: -.03rem;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.8em;
}
ul,
ol {
 margin:0;
 padding:0;
 list-style-type:none
}
p{
  margin-bottom: 15px;
}

.module-header
{
	text-align: center;
	max-width: 1024px;
	margin: auto;
}
.logo{
  font-size: 45px;
}

#header
{
  background: #f4ffff!important;
	min-height: 60px;
	position: relative;
	z-index: 9999;
  box-shadow: 0px 3px 5px #e1e1e1;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

.top-header{
  background: #0c3ba3;
  padding: 8px 0;
  margin-bottom: 5px;
  color: #fff;
}
.top-header a{
  color: #fff;
}

.top-header-right .header-contact
{
	list-style: none;
	margin: 0;
	padding: 0;
}
.header-contact li {
	display: inline-block;
}
.header-contact li a {
	/* color: var(--white-color); */
	margin-right: 15px;
}

.header-contact li:last-child a {
	margin-right: 0;
}
.top-header-social .header-social
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.nav-panel-cta
{
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-panel-cta .navbar i{
  margin-right: 5px;
}
.nav-panel-cta .navbar a, .nav-panel-cta .navbar a:focus {
	align-items: center;
	padding: 15px;
	font-weight: 600;
	color: #2c4b97;
	white-space: nowrap;
	transition: 0.3s;
	text-transform: none;
}
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  padding: .5rem .25rem;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 10px 15px;
  font-weight: 600;
  color: #2c4b97;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar li.active a, .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #66b3ff;
}

.navbar li .lister{
  background: #faa41a;
  color: #fff;
  border-radius: .3rem;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  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;
}

.navbar .dropdown ul li {
  min-width: 240px;
  padding: .15rem 10px;
}

.navbar .dropdown ul a {
  padding: 6px 20px;
  text-transform: none;
  color: #2c4b97;
}

.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: #66b3ff;
}

.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;
}

@media (max-width: 1366px) {
.navbar .dropdown .dropdown ul {
  left: -90%;
}
.navbar .dropdown .dropdown:hover > ul {
  left: -100%;
}
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #00c1c1 !important;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@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(29, 37, 37, 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 0;
  background-color: #121f28;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile li{
  padding: .25rem .5rem;
}
.navbar-mobile a {
  padding: 8px 20px;
  font-size: 15px;
  color: #005d99;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #00c1c1;
}

.navbar-mobile .getstarted {
  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: #00c1c1;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
.kaptcha a{
  height: 50px;
  line-height: 50px;
}
.kaptcha i
{
  color: #F7A718;
  font-size: 18px;
}
/*
.hero-section{
  background: url('../images/hero-bg.png');
  background-repeat: no-repeat;
  background-position: center 70%;
}
.hero-banner{
  min-height: 600px;
}
.sell-pb-bg{
  background: url('../images/sell-pg-bg.jpg');
  min-height: 420px;
  position: relative;
}

.hero-search .title, .hero-search h2{
  color: #fff;
}
.hero-search h2{
  color:  #dde0f0;
  font-size: 18px;
}
.hero-search form{
  margin-top: 3em;
  margin-bottom: 3em;
}
.hero-search input[type="text"],
.hero-search input[type="submit"] {
	color: #777;
	background: #fff;
	outline: none;
	font-size: 0.91em;
	padding: 1em 1em;
	border: none;
	-webkit-appearance: none;
	display: inline-block;
	letter-spacing: 1px;
}

.hero-search select {
	font-weight: normal;
	border: none;
	outline: none;
	color: #777;
	background: #fff;
	outline: none;
	font-size: 0.91em;
	padding: 1em 1em;
	border: none;
	letter-spacing: 1px;
	margin-right: 2px;
	height: 50px;
}

.hero-search input[type="submit"], form ._btn-search {
	background: #ed1c24;
	color: #fff;
	font-weight: 700;
	font-size: 1.2em;
	padding: 0.58em 1em;
	width: 100%;
	cursor: pointer;
  border-style: none;
}

.hero-search input[type="submit"]:hover {
	background: #121312;
}
*/

.hero-section {
	z-index: 1;
	padding-top: 7.75rem;
	padding-bottom: 7.5rem;
	position: relative;
}
.hero-content {
  max-width: 49.5rem;
  grid-row-gap: 2.5rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-content.hero-content-v2 {
  max-width: 50%;
  align-items: flex-start;
  margin-left: 0;
}

.hero-content.hero-content-v3 {
  max-width: none;
  text-align: center;
}

.hero-text-content {
  max-width: 42rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-text-content.hero-text-content-v2 {
  text-align: left;
  align-items: flex-start;
}

.hero-text-content .title {
	color: #1b1b1b;
	letter-spacing: -.05em;
	font-size: 4rem;
	font-weight: 600;
	line-height: 1.1em;
}
.span-accent {
	color: #2c4b97;
}
.search-block-content {
  grid-row-gap: 2.5rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.search-block {
  padding-top: 13.75rem;
  padding-bottom: 7.5rem;
}

.hero-text {
  max-width: 30rem;
}

.hero-background {
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-background.hero-background-v2 {
  background-color: #2c4b97;
  justify-content: flex-end;
  display: flex;
}

.hero-background.hero-background-v3 {
  width: 100%;
  height: 31.25rem;
  object-fit: cover;
  border-radius: 1.25rem;
  margin-top: 1.25rem;
  position: static;
  overflow: hidden;
}

.hero-background-image {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.hero-background-image.hero-background-image-v2 {
  width: 45%;
  object-position: 0% 50%;
}

.hero-background-gradient {
  z-index: 2;
  background-image: linear-gradient(#fff, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

form.search{
  /* position: absolute; */
  /* display: flex; */
  /* flex: 0 0 auto; */
  /* flex-wrap: wrap; */
  z-index: 99;
  padding: 0 20px;
  background-color: #fff;
	border-radius: 5px;
  flex-direction: row;
  justify-content: center;
  box-shadow: 0 4px 40px rgba(0, 0, 0, .1);
  /* width: 80%; */
}

.search-content {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
}

.search-button {
  display: flex;
  justify-content: right;
  z-index: 2;
  height: 4rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.btn.button-accent {
	background-color: #2c4b97!important;
  padding: 0 2.5rem!important;
  line-height: 1;
  font-size: 1rem;
  color: #fff;
}

.btn .button-accent:hover {
	background-color: #1b1b1b;
}
/* .search-content label{ */

.search-content [type="radio"]:checked + label, .search-content [type="radio"]:not(:checked) + label{
  color: #161836;
  font-weight: 600!important;
  font-size: 0.87rem;
  display: inline-block;
  padding-left: 10px;
  position: relative;
}

#sel_status{
  line-height: 24px;
  border-left: 1px solid #f9f9f9;
	height: 3.3rem;
	padding: 0 10px;
	line-height: 3.3rem;
	border-top: 1px solid #f9f9f9;
	border-bottom: 1px solid #f9f9f9;
	width: 100%;
}

.search-input {
  width: 100%;
  color: #161836;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #f9f9f9;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0.9rem 24px;
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.2em;
}
#sel_cou
{
  border-right: 0!important;
}

.search-input::-ms-input-placeholder {
  color: #9da4ae;
}

.search-input::placeholder {
  color: #9da4ae;
}
input[type="search"] {
	-webkit-appearance: none;
}

.search {
  width: 100%;
  grid-row-gap: .75rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.section {
  padding-top:80px;
  padding-bottom:80px;
  position:relative!important;
}

@media (min-width:776px )
{
  .section-title {
    max-width: 650px;
  }
}
.sub-title-heading
{
  color: #f21326;
  font-size: 18px;
  font-weight: 500;
  line-height: 22.68px;
  display: inline-block;
  margin-bottom: 24px;
}

.title-heading
{
  margin-bottom: 36px;
}

.section-title {
  margin: 0 auto;
  text-align: center;
}

.section-title h2 {
  font-size:33px;
  margin-bottom:18px;
  line-height:50px;
  text-transform:capitalize;
  position:relative;
  padding-bottom:14px
}

.section-title p {
  text-align: center;
}

.medium-title
{
  max-width: 560px;
  margin: 0 auto 64px;
  text-align: center;
}
.medium-title h2{
  line-height: 56px;
}
.medium-title span{
	font-size: 14px;
	line-height: 16px;
	font-weight: 600;
	color: #8993A4;
	display: block;
	vertical-align: middle;
}
.sell-box p
{
  line-height: 20px;
  display: block;
}

.sell-it-card
{
  height: 100%!important;
  padding: 20px;
  background-color: var(--seco-neutral);
}

.sell-it-card p{
  color:var(--primary-color);
}
.sell-it-card h3{
  color: var(--primary-color)!important;
  font-weight: 500;
}
.nbr-box {
	text-align: center;
	width: 100%;
	margin: 0 auto 5px;
}
.nbr-box span {
	color: var(--accent-color);
	border-radius: 50px;
	width: 56px;
	height: 56px;
	font-size: 24px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #2c4b97;
}
.pg-top
{
  margin-top: 30px;
}

.banner-wrap {
  width: 100%;
  background: url(../images/page-bg.jpg);
  position: relative;
  margin: 0 auto;
  padding: 200px 3.5rem;
  /* background-size: 101% 120%; */
  background-size: cover;
  z-index: 1;
}

.banner-wrap::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(12, 59, 163, 0.48);
  /* background: rgb(12 59 163 / 50%); */
	z-index: -1;
}
.banner-wrap .overlay {
  position: absolute;
  background: rgb(12 59 163 / 50%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.card-wrap
{
  background-color: var(--neutral-color);
}
.banner-content, .card-wrap
{
  z-index: 99;
  position: relative;
  display: block;
  justify-content: center;
  margin-bottom: 34px;
}


.banner-content .banner-title
{
  color: var(--white-color);
  font-size: 4rem;
  line-height: 1.25;
  text-align: center;
}
.banner-content  p
{
  padding: 1.5rem 0;
  line-height: 2;
  color: var(--white-color);
}

.banner-wrap .more-properties
{
  background: #f21326;
  margin-top: 2rem;
  padding: 15px 24px;
  color: #fff;
}

.banner-wrap .more-properties i {
  margin-left: 24px;
}

#join-form label, #banner-form label, .offer-form label
{
  color: #000;
}

#banner-form{
  padding-top: .265rem;
  padding-bottom: .265rem;
}

.search-price-slider
{
  width: 98%;
}

.search-price-slider .ui-widget.ui-widget-content {
	margin-bottom: 15px;
  margin-left: 10px;
  background: #e0e0e0;
  border: 1px solid #e0e0e0;
}
.slider-labels
{
  display: flex;
  justify-content: space-between;
}

.ui-widget-header {
	border: 1px solid #F7A718!important;
	background: #F7A718!important;
	color: #2c4b97;
	font-weight: bold;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
	border: 1px solid #2c4b97;
	background: #2c4b97!important;
	font-weight: normal;
	color: #555;
}

.swiper-wrapper{
  margin-bottom: 70px;
}
.prop-item-wrap
{
  background-color: #fff;
  box-shadow: 0 4px 60px rgba(0, 0, 0, .1);
  padding: 10px;
  /* z-index: 1; */
  transition: box-shadow .3s;
  border-radius: 1.25rem;
  position: relative;
  margin-bottom: 24px;
}
.prop-img-card{
  width: 100%;
  position: relative;
}
.prop-img-card .img-fluid {
	width: 100%;
	/* height: 17.75rem; */
	object-fit: cover;
	border-radius: 1rem!important;
}
.property-meta {
	/* background-image: linear-gradient(0deg, #fff 0%, #c3ebea 100%); */
  padding: .175rem .5rem 1.275rem;
	min-height: 125px;
}
.property-meta .prop-name {
  padding-top: 10px;
  padding-bottom: 5px;

}

.property-meta .prop-name h3 {
	/* color: #1b1b1b; */
	margin-top: 0;
	margin-bottom: 0;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.2em;
}

.plot-badge-top {
	position: absolute;
	width: 100%;
	z-index: 2;
	left: 0px;
	right: 0px;
	padding-left: 12px;
	padding-right: 16px;
	top: 12px;
}
.flex-two {
	justify-content: space-between;
	align-items: center;
	display: flex;
}

.prop-img-card .plot-badge-top .feature {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	color: #FFFFFF;
	background-color: #14B0C3;
	padding: 4px 17px;
	border-radius: 4px;
}

.prop-img-card .plot-badge-top  .badge-type .sale-type {
	padding: 6px 8px;
	background-color: rgba(0, 0, 0, 0.63);
	border-radius: 2px;
	box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.05);
	color: #FFFFFF;
	font-size: 13px;
	font-weight: 500;
	line-height: 16px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.plot-cost {
  position: relative;
  z-index: 1;
  bottom: 0;
  margin-left: 0.675rem;
  margin-bottom: 0.675rem;
}
.plot-cost  .itcost {
  line-height: 1em;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 10px;
  color: #fff;
  /* background: #2c4b97; */
  background: var(--accent-color);
  border-radius: .3rem;
}

.prop-img-card::after, .prop-img-card .plot-cost{
	width: 100%;
	position: absolute;
	left: 0;
}
.prop-loco
{
	font-size: .775rem;
	font-weight: 500;
	line-height: 1.8em;
  display: flex;
  align-items: center;
}

.prop-loco i{
  margin-right: 10px;
}
.prop-loco p {
  margin-bottom: 0;
}

.prop-desc
{
  font-size: 14px;
}

.prop-conditions {
	width: 100%;
  margin-top: 10px;
	border-top: 1px solid #f1f0fe;
	padding-top: 0.5rem;
  align-items: center;
}

.prop-conditions .condition
{
  grid-column-gap: .25em;
	color: var(--text-color);
	/* background-color: var(--neutral-color); */
	border-radius: 5px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: .5rem .75rem;
	font-size: .875rem;
	font-weight: 500;
	line-height: 1.8em;
	display: flex;
}

.prop-conditions ul::after {
	content: '';
	border-bottom: 1px solid #ddd;
	position: absolute;
	height: 1px;
	top: 100%;
	left: 17px;
	right: 17px;
}

.prop-conditions ul li {
	display: inline-block;
	font-size: 12px;
	color: #242526;
	line-height: 11px;
	border-right: 1px solid #ddd;
	padding: 0px 17px 0px 17px;
	margin-right: -3px;
}

.prop-conditions ul li:first-child {
	padding-left: 1px;
}

.prop-conditions ul::after {
	content: '';
	border-bottom: 1px solid #ddd;
	position: absolute;
	height: 1px;
	top: 100%;
	left: 17px;
	right: 17px;
}

.prop-conditions ul li:last-child {
	border-right: 0px;
}


.prop-leads
{
  display: flex;
  align-items: center;
}
.prop-leads .btn-view
{
  background-color: var(--seco-neutral);
  color: var(--primary-color);
  font-size: 14px!important;
}
.prop-leads a.kwik i, .prop-leads .btn-view i{
  margin-left: 15px;
}
.prop-leads a.kwik{
  /* background: #ffbfb2; */
  border:1px solid #f21326;
  color: #f21326;
  font-size: 14px!important;
}

.why h2 {
	font-size: 46px;
	font-weight: 700;
	color: #0d2354;
}

.why .content {
	background-color: #f1f5f8;
	padding: 40px;
}

.why p {
	margin: 15px 0 30px 0;
	line-height: 24px;
}

.why .btn-read-more, .content-blog .readmore {
	line-height: 0;
	padding: 15px 40px;
	border-radius: 4px;
	transition: 0.5s;
	color: #fff;
	background: #0064ff;
	box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.preventa{
  background: #4b85aa;
  color: #fff;
}
.preventa h2, .preventa h3{
  color: #c4d600;
}

.btn{
  border: 0;
  padding: 15px 30px;
  transition: 0.4s;
  border-radius: none;
}

.gray-btn {
	background: #fff8e1;
	color: #121f28;
	border: 1px solid #F7A718;
}
.btn-primary {
	color:#fff;
	background-color: #f21326;
	border-color: #f21326;
}

.btn-secondary{
  background-color: var(--complementary);
	color: #fff;
  border-color: var(--complementary)!important;
}

.btn-secondary:hover {
	color: #fff;
	background-color: #2c4b97;
	border-color: #2c4b97;
}
.btn-outline-secondary {
	color: #1b0ac1;
	background: #fcf7ff;
	border-color: #9989b4;
}

.btn-outline-secondary:hover {
	color: #FFF !important;
	background-color: #F7A718!important;
	border-color: #F7A718!important;
}

.gd-box-con
{
  text-align: center;
}
.gd-box-info {
	background: #f7f7f7;
}
.gd-box-info i {
	display: inline-flex;
	align-items: center;
  vertical-align: middle;
	justify-content: center;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 16px;
  background: #0c3ba3;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	margin: 0 5px;
	transition: 0.3s;
}

.gd-box-info i {
	font-size: 1.7em;
	margin-bottom: 0.52em;
  color: #dddbf0  ;
}

.gd-box-info h4 {
	font-size: 1.3em;
	margin: 0.2em 0;
}


.owl-carousel .owl-item > * {
	margin-left: 20px;
	margin-right: 14px;
	margin-top: 14px;
}

.owl-carousel .carousel-wrap {
	position: relative;
	border: 1px solid #BCCED2;
	border-top: transparent;
	border-radius: 1px;
	box-shadow: 0 0 7px rgba(0,0,0,0.1);
}
.carousel-wrap .carousel-img{
	margin-bottom: 20px;
}

.owl-nav button span {
	font-size: 26px;
	display: block;
	color: #07294f !important;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
	z-index: 1;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: #f21326;
	border-radius: 50%;
	padding: 0;
}

.card{
  border: none;
}

.value-box{
  box-shadow: 0 5px 70px rgba(18, 31, 40, .1);
  display: block;
  padding: 70px 20px;
  margin-bottom: 25px;
  text-align: center;
  /* background:#fff8e1; */
}
.value-box h4{
  /*  */
}
.our-values{
  background-image: url('../images/elixir-bg.jpg');
  position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
  color: #fff;
}

.our-values .our-values-info{
  color: #fff;
  position: relative;
  padding: 100px 25px;
}
.our-values .our-values-info  h3{
  color: #fff8e1;

}
/* p */
.our-values::before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #222222;
	content: "";
	opacity: 0.90;
}

.core-values{
  position: relative;
  margin-left: 40px;
}
.value-box h4
{
  margin-bottom: 15px;
  color: #00a79d;
}

.quick-enquiry
{
  background: #eaeaea;
  color: #F7A718;
  padding: 24px!important;
  border-radius: 1.25rem;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding-bottom: 54px;
}

.quick-enquiry h3{
  font-size: 24px;
  font-weight: 600;
}
.quick-enquiry  form{
  margin-top: 2.4rem;
}
.blog-section
{
  padding-bottom: 60px;
}

.blog
{
  border: 1px solid #eaeaea;
}
.blog-img
{

} 
.blog-txt
{
  padding: 0 15px;
}

.blog-txt h3{
  font-size: 20px;
}
.blog-txt a.btn-link{
  color:#f21326 ;
}

label{
  margin-bottom: 10px;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;;
}
.form-control {
  font-size: .875rem;
  padding: .575rem .75rem;
}
/* .quick-enquiry .form-control {
	width: 100%;
	height: 4rem;
	color: var(--text-color);
	background-color: var(--neutral-color);
	border: 0 rgba(0, 0, 0, 0);
	border-radius: .625rem;
	margin: 0;
	padding: 1.25rem 1.5rem;
	font-size: .875rem;
	font-weight: 500;
	line-height: 1.8em;
} */
textarea.form-control {
	min-height: calc(1.5em + 4.75rem + 2px);
}

.dark-btn{
  background: #121f28;
  color: #F7A718;
}


.why-section.bg-white::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: -1;
	background-color: #fafafb;
	height: 150px;
}

.discover-us
{
  padding: 60px 0;
}

@media (min-width: 1280px) {

  .discover-property-image {
  	height: 27.4rem;
  	flex: 0 auto;
  }

  .discover-properties-list, .discover-property {
  	height: 100%;
  }
  .discover-properties-heading {
  	max-width: 75.5rem;
  }
  .discover-properties-info {
  	max-width: 80%;
  	text-align: left;
  	align-items: flex-start;
  }
}

.discover-property {
	flex-direction: column;
	/* justify-content: flex-start; */
	align-items: center;
	display: flex;
	position: relative;
  margin-right: 50px;
}
.discover-property-image
{
	width: 100%;
	height: 29.5rem;
	object-fit: cover;
	border-radius: 1.25rem;
	box-shadow: 0 4px 60px rgba(0, 0, 0, .1);
}

.heading.heading-medium {
	font-size: 3rem;
	line-height: 1.1em;
}

.discover-properties-text-content {
	grid-row-gap: .75em;
	flex-direction: column;
	justify-content: flex-start;
	margin-top: 0;
	margin-bottom: 2.5rem;
	display: flex;
  color: #828282;
}
.discover-properties-text-content p{
  margin-bottom: 0;
}
.hwrks-content h3, .features-inner h3
{
  color: #fff;
  font-size: 36px;
  padding-top: 1.6em;
}

@media(max-width:991px){

}

@media (max-width:768px) {
  .core-values {
  	margin-left: 0px;
  }
  .value-box {
  	padding: 20px 20px;
  	margin-bottom: 25px;
  }
}
@media (max-width:767px) {
  .property-meta .prop-name h3 {
  	font-size: 18px;
  }
  .property-meta {
  	padding: 0 10px!important;
  }
  .prop-href .btn{
    padding: 2px 5px!important;
    font-size: 14px;
  }
}

.project-section
{
  padding: 60px 0;
  background:#e8f6ff; // #e6e2dc; //dbe2ee;
}

.project-card .title_kolor{
  color: #2b4a97;
}
.project-card h1
{
  font-size: 28px;
  margin-bottom: 20px;
  padding: 0 15px;
}

.project-card h2
{
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}
.project-card .plot-cost
{
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.575rem;
}
.project-card
{
  text-align: center;
  padding-top:30px;
  padding-bottom: 4px;
  color: #2b4a97;
  /* background: #337ab7; */
  background: #e8f6ff;

}
.project-card  h5{
  font-weight: normal;
  font-size: 18px;
}
.project-card i{
  color: #2b4a97;
}
.project-category a
{
  color: #dddbf0;
}
.project-category .bg-info{
  background-color: #0c3ba3!important;
  border: 1px solid #dddbf0;
}
.project-category .bg-light {
  background-color: #0c3ba3!important;
  border: 1px solid #dddbf0;
  color: #dddbf0;
}
.project-category .badge
{
  font-weight: normal!important;
}

.project-add
{
  color: #4a4a4a;
}
.project-info {
  margin-bottom: 0;
  font-weight: 500;
  font-size: var(--font-sm);
  color: var(--color-primary);
  gap: 15px;
}

.project-info li {
    position: relative;
    display: list-item;
    text-align: -webkit-match-parent;
}
.project-info span {
  color: #4a4a4a;
}
.project-desc p{
  line-height: 1.8;
}

.plot-cta
{
  padding: 2.076em 0;
}
.plot-cta .btn{
  background: #05060a;
  color: #ffdfd8;
  display: block;
  width: 100%;
}

.plot-cta .social-links
{
  text-align: center;
  display: block!important;
  margin: 0 auto;
  width: 100%;
}

.plot-cta .social-links span
{
  margin-right: 15px;
}

.aside-wrapper
{
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

.property-features {
  margin: 30px 0;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.property-features h3 {
  margin-bottom: 25px;
  color: #333;
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 10px;
}

.feature-category {
  margin-bottom: 25px;
}

.category-title {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.category-title i {
  margin-right: 10px;
  color: #3498db;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.feature-icon {
  margin-right: 10px;
  color: #27ae60;
  width: 20px;
}

.feature-name {
  color: #555;
}

.no-features {
  color: #777;
  font-style: italic;
  text-align: center;
  padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .feature-list {
    grid-template-columns: 1fr;
  }

  .property-features {
    padding: 15px;
  }
}

@media (max-width: 640px) {
  .project-price h1 {
  	font-size: 30px;
  	color: #fff;
  }
  .project-section h2, .project-price h2, .others-section h2 {
  	font-size: 24px!important;
  }

}

@media (max-width:375px) {
  .plot-cta .btn{
    font-size: 14px;
  }
}

@media (max-width:375px) {
  .plot-cta .btn{
    padding: 10px 5px!important;
  }
}
.pty-features ul
{
  list-style: none;
}

.accordion-button {
	font-size: 16px;
	color: var(--text-color);
  font-weight: 500;
  line-height: 1.6;
}

.accordion-item {
	width: 100%;
	border-radius: .625rem;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	display: flex;
	box-shadow: 0 4px 40px rgba(0, 0, 0, .1);
}
.panel-title
{
  font-size: 1.125rem;
}
.accordion-button:not(.collapsed) {
	color: var(--primary-color);
	background-color: #ccc;
	box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-header
{
  width: 100%!important;
}

.accordion-body
{
  line-height: 1.9;
}
._team_bio h4{

}

._team_bio h5
{
  font-size: 13px;
  color: #6f6f6f
}

.wish-btn i
{
 color: #faa41a;
 font-size: 1.42rem;
}
.wishlist-panel .wishlist-items:hover .wishlist-card {
  opacity: 1;
  visibility: visible;
}

.wishlist-panel .wishlist-items .wishlist-card {
  position: absolute;
  top: 72px;
  right: 0;
  width: 300px;
  background: #fff;
  padding:10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 99;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.137);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.137);
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .wishlist-panel .wishlist-items .wishlist-card {
    width: 250px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wishlist-panel .wishlist-items .wishlist-card {
    top: 68px;
  }
}

@media (max-width: 767px) {
  .wishlist-panel .wishlist-items .wishlist-card {
    top: 66px;
  }
}

.wishlist-panel .wishlist-items .wishlist-card .iwish-list
{
  padding-left: 0;
  padding-right: 0;
}
.wishlist-panel .wishlist-items .wishlist-card .iwish-list li {
  overflow: hidden;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wishlist-panel .wishlist-items .wishlist-card .iwish-list li .remove {
  position: absolute;
  right: 0;
  top: 0;
  height: 18px;
  width: 18px;
  line-height: 16px;
  text-align: center;
  background: #fff;
  color: #222;
  border-radius: 50%;
  font-size: 8px;
  border: 1px solid #ededed;
  padding-left: 1px;
}

.wishlist-panel .wishlist-items .wishlist-card .iwish-list li .remove:hover {
  border-color: transparent;
  color: #fff;
  background-color: #0167F3;
}

.wishlist-panel .wishlist-items .wishlist-card .iwish-list li .wishlist-img {
  width: 85px;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .wishlist-panel .wishlist-items .wishlist-card .iwish-list li .wishlist-img {
    width: 70px;
  }
}

.wishlist-panel .wishlist-items .wishlist-card .iwish-list li img {
  border: 1px solid #ededed;
  overflow: hidden;
  height: 80px;
  width: 80px;
  border-radius: 4px;
  float: left;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .wishlist-panel .wishlist-items .wishlist-card .iwish-list li img {
    height: 60px;
    width: 60px;
    margin-right: 10px;
  }
}

.wishlist-panel .wishlist-items .wishlist-card .iwish-list li .wishlist-content {
  padding-right: 10px;
  width: 210px;
  font-size: 11px;
}
.wishlist-panel .wishlist-items .wishlist-card .iwish-list li .wishlist-content p
{
  margin-bottom: 0;
}

.wishlist-panel .wishlist-items .wishlist-card .iwish-list li .wishlist-content .wish-cost{
  margin-top: 1rem;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .wishlist-panel .wishlist-items .wishlist-card .iwish-list li .wishlist-content {
    width: 70%;
  }
}

.wishlist-panel .wishlist-items .wishlist-card .iwish-list li .wishlist-content h4 {
  margin-bottom: 0;
  line-height: 18px;
}

.wishlist-panel .wishlist-items .wishlist-card .iwish-list li .wishlist-content h4 a {
  font-size: 11px;
  font-weight: 600;
  color: #081828;
}

@media (max-width: 767px) {
  .wishlist-panel .wishlist-items .wishlist-card .iwish-list li .wishlist-content h4 a {
    font-size: 13px;
  }
}

.wishlist-panel .wishlist-items .wishlist-card .iwish-list li .wishlist-content h4 a:hover {
  color: #0167F3;
}

.testimonials {
  padding: 80px 0;
  /* background: url("../img/cta-bg.jpg") no-repeat; */
  background-color:#2c4b97;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* background: rgba(11, 41, 55, 0.9); */
}

/* .testimonials .section-header h2 {
  margin-bottom: 40px;
  color: #dedeee;
} */

.testimonials .testimonial-item {
  text-align: center;
  background: var(--neutral-color);
  border-radius: 1.25rem;
  min-height: 180px;
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
  box-sizing: content-box;
  padding: 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.testimonial-text
{
  min-height: 150px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 5px 0;
  color: var(--text-color);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color:var(--gray-color);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  /* margin: 0 auto 15px auto; */
  line-height: 1.5rem;
  font-size: 16px;
  color: #181d32;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #F7A718;
}

.text-boxx{
  padding: 20px 25px;
  border-radius: 6px;
  background: #fff;
  transition: ease-in-out 0.3s;
  min-height: 210px;
}

.text-boxx:hover {
	box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.18);
}

.contact .info-wrap {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	padding: 30px;
	background: #fff;
}

.contact .info-wrap i{
  color: #0c3ba3;
  font-size: 2.1rem;
  margin-bottom: 10px;
}
.contact .info-wrap h4{
  font-weight: 600;
}

.contact .info-wrap  dt{
  font-weight: 500!important;
}
.contact .info-wrap dd{
  font-size: 15px;
}

.contact .form {
	width: 100%;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
	padding: 30px;
	background: #fff;
}

@media (min-width: 992px) {
  /* .testimonials .testimonial-item p {
    width: 80%;
  } */
}

.breadcrumbs {
  /* background: #d2d2d2; */
  /* f8f9fa  */
	padding: 50px 0;
  min-height: 80px;
  margin-top: 0px;
  color: var(--accent-color);
}

.breadcrumbs h1 {
  color: #111  ;
}

.breadcrumb-card nav{
  padding: 15px 0;
  height: 32px;
  align-items: center;
}

ol.breadcrumb {
  color: #8593a9;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  min-height: 24px;
  margin: 0;
}

ol.breadcrumb li{
  font-size: 12px;
}

ol.breadcrumb li + li {
  padding-left: 10px;
}

.breadcrumb > li + li::before {
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  padding-right: 10px;
  color: #8593a9;
  content: "\f105";
  font-weight: 600;
}
/* .breadcrumb > li + li::before {
	font-family: "Font Awesome 5 Free";
	padding: 0 5px;
	color: #8593a9;
} */


.breadcrumb li a{
  color: #8593a9;
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
.lead
{
  line-height: 1.8;
}

.fancy-icon-box-two {
  padding: 40px 30px 30px;
  -webkit-box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.fancy-icon-box-two .about-us-text h3.title {
	margin-bottom: 10px;
  font-weight: 600;
}


.card.form
{
  border: 1px solid var(--seco-neutral);
  border-radius: 2px;
  padding: 24px;;
}

.hint
{
	margin: 0;
	padding: 0;
	color: #999;
  font-size: 11px;
}

div.form .note
{
	font-style: italic;
}

div.form span.required
{
	color: red;
}

div.form div.error label:first-child,
div.form label.error,
div.form span.error
{
	color: #C00;
}

div.form div.error input,
div.form div.error textarea,
div.form div.error select,
div.form input.error,
div.form textarea.error,
div.form select.error
{
	background: #FEE;
	border-color: #C00;
}

div.form div.success input,
div.form div.success textarea,
div.form div.success select,
div.form input.success,
div.form textarea.success,
div.form select.success
{
	background: #E6EFC2;
	border-color: #C6D880;
}

div.form div.success label
{
	color: inherit;
}
.btn-lost
{
  color: var(--primary-color);
}

div.form .errorSummary
{
	border: 2px solid #C00;
	padding: 7px 7px 12px 7px;
	margin: 0 0 20px 0;
	background: #FEE;
	font-size: 0.9em;
}

div.form .errorMessage
{
	color: red;
	font-size: 0.9em;
}

div.form .errorSummary p
{
	margin: 0;
	padding: 5px;
}

div.form .errorSummary ul
{
	margin: 0;
	padding: 0 0 0 20px;
}
.success-section h2
{
  margin-bottom: 1.2rem;
}
.success-icon
{
  height: 90px;
  margin-bottom: 3em;
}

.success-icon svg
{
  fill: var(--accent-color);
  margin: 0 auto;
  display: block;
  font-size: 3rem;
  font-weight: 900;
}

.marker {
	width: 100px;
	height: 100px;
	position: absolute;
	top: -50px;
	/*positions our marker*/
	left: -50px;
	/*positions our marker*/
	display: block;
}

.list-group
{
  margin-left: 24px;
  display:list-item;
}
.list-group-item
{
  border: none!important;
  margin-left: 14px;
  padding: .35rem 1rem;
  display:list-item;
}

.list-group.disc-style .list-group-item
{
  display:list-item;
  list-style: disc!important;
}

.list-group.list-alpha
{
  padding-left: 48px;
  margin-left: 0!important;
}

.list-group.list-alpha .list-group-item
{
  display:list-item;
  list-style: lower-alpha!important;
}

.footer-bottom
{
  background: var(--accent-color);
  padding: 1em 0;
  color:var(--text-color);
}
.footer-links {
	text-align: right;
}
.footer-bottom .footer-links a {
	color: #222222;
	padding-left: 15px;
}


.footer-top{
  padding: 4em 0;
  color: #fff8e1;
  background: #2c4b97;
}
.footer-top h3{
  /* color: #F7A718; */
  color: #dedeee;
  margin-bottom: 20px;
}
.footer-top a {
  line-height: 1.56rem;
  color: #fff;
  font-size: 13px;

}

.footer-widget-inner{
  text-align: center;
  margin: 0 auto;
  width: 210px;
}

.footer-top .social-links {
  margin-top: 30px;
}
.footer-footer{

}
.footer-inner-main
{
  background: #111;
}

.footer-inner-main .sub-one-left h6, .footer-inner-main .sub-two-right h6 {
  color: #fff;
  font-size: 22px;
  line-height: 32px;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-inner-main .sub-one-left p, .footer-inner-main .sub-two-right p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  color: #aaa;
}
.footer-inner-main ul.social li, .footer-inner-main ul.jst-link li {
  display: inline-block;
  margin-right: 5px;
}

.footer-inner-main ul.social li a {
  color: #fff;
  width: 36px;
  height: 36px;
  background: #f21326;
  display: inline-block;
  border-radius: 6px;
  text-align: center;
  font-size: 15px;
}

.footer-inner-main ul.social li a span {
  line-height: 36px;
}

.footer-inner-main .sub-two-right ul
{
  margin-left: 0;
  padding: 0!important;
}
.footer-inner-main .sub-two-right ul li
{
  display: list-item;
  list-style: none;
}

.footer-inner-main .sub-two-right ul li a {
  font-size: 16px;
  line-height: 26px;
  color: #aaa;
  margin: 0 0 10px 0;
  display: block;
}

.footer-inner-main .sub-two-right ul li i {
    color: #fff;
    margin: 0 6px 0 0;
}

.footer-inner-main .sub-two-right ul li a:hover
{
  color: #f21326;
  transition: 0.3s ease;
}

.footer-inner-main .sub-two-right .list-style-one li:not(:last-child) {
	margin-bottom: 15px;
}
.footer-inner-main .sub-two-right .list-style-one li {
	align-items: start;
  display: flex;
  color: #aaa;
}

.footer-inner-main  .sub-two-right .list-style-one li i {
	font-size: 16px;
	margin-top: 7px;
  margin-right: 15px;
  color: #f21326;
}
 .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #284864;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #fcb102;
  color: #fff;
  text-decoration: none;
}

.subscribe-card .subscribe-field {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
}

.footer-footer .below-section {
  color: #f21326;
  justify-content: space-between;
  border-top: 1px solid #1f1f1f;
}

.footer-footer .copyright-footer {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  grid-gap: 20px;
}

.footer-footer .columns p, .w3l-footer9 .columns p a {
  font-size: 16px;
  line-height: 26px;
  color: #aaa;
}

.footer-footer  ul.footer-w3list {
  text-align: right;
}

.footer-inner-main .copyright-footer ul li {
  display: inline-block;
}

.footer-inner-main ul.text-right li a {
  color: #aaa;
  margin: 0px 0 0 16px;
}

@media (min-width:1366px) {
  .why-section img{
    max-height: 500px!important;
    width: 100%;
    overflow: hidden;
  }
}


@media (max-width:1366px) {
  .why-section img{
    min-height: 510px!important;
    width: 100%;
    overflow: hidden;
  }

  .features-section img{
    min-height: 605px;
  }
}
