:root {
    --primary: #8f369c;
    --secondary: #53b8ff;
    --light: #EFFDF5;
    --dark: #0E2E50;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.nav-bar {
    position: relative;
    transition: .5s;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.hero {
	width: 100%;
	height: 700px;
	position: inherit;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
}

.hero .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: 1;
	background: #fff;
	background: white;
	background: -moz-linear-gradient(top, white 0%, white 3%, rgba(255, 255, 255, 0) 54%, rgba(255, 255, 255, 0) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(3%, white), color-stop(54%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 0)));
	background: -webkit-linear-gradient(top, white 0%, white 3%, rgba(255, 255, 255, 0) 54%, rgba(255, 255, 255, 0) 100%);
	background: -o-linear-gradient(top, white 0%, white 3%, rgba(255, 255, 255, 0) 54%, rgba(255, 255, 255, 0) 100%);
	background: -ms-linear-gradient(top, white 0%, white 3%, rgba(255, 255, 255, 0) 54%, rgba(255, 255, 255, 0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(3%, white), color-stop(54%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
	background: linear-gradient(to bottom, white 0%, white 3%, rgba(255, 255, 255, 0) 54%, rgba(255, 255, 255, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 );
	height: 850px;
}

.hero-text {
	height: 700px;
}

.hero-text h1 {
	font-size: 60px;
	color: #000000;
	line-height: 1.1;
	font-weight: 400;
}

.hero-text p {
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.8);
}

.hero-bg {
	position: relative;
}

.hero-bg:after {
	content: '';
	position: absolute;
	right: 0;
	bottom: -30px;
	overflow: visible;
	width: 50%;
	height: 70px;
	z-index: 1;
	-webkit-transform: skewY(-4deg);
	-moz-transform: skewY(-4deg);
	-ms-transform: skewY(-4deg);
	-o-transform: skewY(-4deg);
	transform: skewY(-4deg);
	background-color: #fff;
}

.hero-bg:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -30px;
	overflow: visible;
	width: 50%;
	height: 70px;
	z-index: 1;
	-webkit-transform: skewY(4deg);
	-moz-transform: skewY(4deg);
	-ms-transform: skewY(4deg);
	-o-transform: skewY(4deg);
	transform: skewY(4deg);
	background-color: #fff;
}

.pointer-down {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -20px;
	z-index: 2;
}

.pointer-down-icon {
	width: 80px;
	height: 80px;
	border: 1px solid #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	background: var(--primary);
	cursor: pointer;
	position: relative;
	text-align: center;
	margin: 0 auto;
	display: block;
}

.pointer-down-wheel {
	height: 80px;
	margin: 2px auto 0;
	display: block;
	width: 30px;
	background: transparent;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	-webkit-animation: 1.6s ease infinite wheel-up-down;
	-moz-animation: 1.6s ease infinite wheel-up-down;
	animation: 1.6s ease infinite wheel-up-down;
	color: #fff;
	font-size: 24px;
}

@keyframes wheel-up-down {
	100% {
		margin-top: 34px;
		opacity: 1;
	}
	30% {
		opacity: 1;
	}
	0% {
		margin-top: 2px;
		opacity: 0;
	}
}

.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}

.icon-social {
	width: 45px;
	height: 45px;
}

.icon-prop {
	color: var(--primary);
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 15px;
    border: 1px dashed var(--primary) !important;
}

.h-100px {
	height: 100px !important;
}

.h-150 {
	height: 150px;
}

.wh-100 {
	width: 100px;
	height: 100px;
}

.wh-150 {
	width: 150px;
	height: 150px;
}

.container-large {
	padding-left: 3rem;
	padding-right: 3rem;
}

.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}

.about-img-alt img {
    position: relative;
    z-index: 2;
}

.about-img-alt::before {
    position: absolute;
    content: "";
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}

.pro-img {
	width: 100%;
	height: 240px;
}

.pro-card-details {
	height: 175px;
}

.cat-item div {
    background: #FFFFFF;
    border: 1px dashed var(--primary) !important;
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
	height: 100%;
}

.property-item img {
    transition: .5s;
}

.property-item:hover .pro-img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}

.round-avatar {
	background: darkgray;
	max-width: 25%;
	height: 250px;
}

.team-img {
	margin: 1rem;
	width: 90%;
}

.card-img-agent {
	width: 80px;
	height: 80px;
	border-radius: 35%;
	border-style: dotted;
}

.service {
	height: 96%;
}

.iwa-card {
	height: 95%;
}

.max-width-600 {
	max-width: 600px;
}

.border-gray {
	border: 1px dashed rgba(0, 185, 142, .3);
}

.border-primary {
	border: 1px dashed var(--primary) !important;
}

.border-rounded {
	border-radius: 50%;
}

.contact-us-icon {
	width: 45px;
	height: 45px;
}

.contact-us-form {
	height: 150px;
}

.fly-in-hero {
	background: rgba(235, 235, 255, .7);
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    transition: .3s;
	color: rgb(255, 255, 255, 0.5);
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
	color: #fff;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.subfooter-flex {
    display: flex;
    justify-content: space-between;
}

.subfooter-flex>.subfooter-flex-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-simple {
    display: inline;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

.menu-simple li{
    display: inline;
    margin: 0 15px;
}

.spad {
	padding-top: 70px;
	padding-bottom: 61px;
}

.single-property {
	padding-top: 36px;
}

.property-title {
	float: left;
}

.property-title h3 {
	color: #30304e;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 7px;
}

.property-title a {
	color: #6f6f8a;
	font-weight: 400;
	font-size: 18px;
	display: inline-block;
}

.property-title a i {
	color: #000;
}

.property-price {
	float: right;
}

.property-price p {
	color: #8f8fa8;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: -4px;
}

.property-price span {
	color: #30304e;
	font-size: 30px;
	font-weight: 500;
}

.popular-room-features.single-property {
	margin-bottom: 0;
}

.pb-30 {
	padding-bottom: 30px;
}

.spt-40 {
	padding-top: 40px;
}

.p-ins {
	padding: 0 20px 15px 25px;
	-webkit-box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
}

.project-form {
	flex-direction: column;
}

.details-top {
	padding: 25px 0;
	margin-bottom: 35px;
	border-bottom: 1px solid #f3f3f3;
	margin-left: -25px;
	margin-right: -20px;
}

.t-details .popular-room-features.single-property {
	padding-top: 0;
	float: right;
}

.property-description,
.property-features {
	margin-bottom: 28px;
}

.property-description h4,
.property-features h4 {
	color: #30304e;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 18px;
}

.property-description p,
.property-features p {
	color: #6f6f8a;
	font-size: 14px;
	font-weight: 300;
	margin: 0;
}

.property-description iframe,
.property-features iframe {
	width: 100%;
	height: 355px;
	border: 0;
}

.property-features h4 {
	margin-bottom: 13px;
}

.property-features .property-table {
	margin-left: -25px;
	margin-right: -20px;
	overflow-y: auto;
}

.property-features .property-table table {
	width: 100%;
	min-width: 350px;
}

.property-features .property-table table tr:nth-child(even) {
	background: #F8F8F9;
}

.property-features .property-table table tr td {
	padding-top: 8px;
	padding-bottom: 9px;
	padding-left: 25px;
	font-size: 15px;
	font-weight: 400;
	color: #30304e;
	width: 120px;
}

.property-features .property-table table tr td img {
	margin-right: 13px;
	height: 16px;
}

.contact-service {
	border-radius: 4px;
	-webkit-box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
	padding-top: 30px;
	padding-bottom: 40px;
	text-align: center;
}

.contact-service img {
	margin-bottom: 12px;
}

.contact-service p {
	color: #6F6F8A;
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 6px;
}

.contact-service h5 {
	color: #30304e;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
}

.contact-service table {
	width: 100%;
	margin-bottom: 32px;
}

.contact-service table tr:nth-child(odd) {
	background: #F8F8F9;
}

.contact-service table tr td {
	color: #6f6f8a;
	font-size: 16px;
	font-weight: 300;
	padding: 10px 0;
}

.contact-service table tr td span {
	color: #30304e;
	display: inline-block;
}

.agent-contact {
	background: black;
	color: white;
}

.iti {
	color: #000;
	width: 100% !important;
}

.listing-column {
	border: 1px solid;
	vertical-align: middle;
}

.pb90 {
    padding-bottom: 90px !important;
}

.color-dark {
    color: var(--dark);
}

.bdrs12 {
    border-radius: 12px;
}

.img-prop {
    overflow: hidden;
    margin: 0px auto;
    border-radius: 20px;
    position: relative;
}

.bg-primary-light {
	background-color: #fbebfd;
}

ul {
	list-style-type: circle;
}

.bubble {
	position: relative;
	top: -8px;
	right: -2px;
	padding: 2px 5px 2px 5px;
	background-color: var(--secondary);
	color: white;
	font-size: 0.65em;
	border-radius: 50%;
}

#view-buttons .active {
	background-color: var(--primary);
	color: var(--light);
}

#grid-view {
	margin-left: 16px;
	margin-right: 16px;
}

.hidden {
	display: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

	#grid-view {
		margin: 0px;
	}
}

@media (max-width: 992px) {
    .subfooter .subfooter-flex,
    .subfooter .subfooter-flex-col {
        display: block;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }

	.property-title {
		margin-bottom: 15px;
	}

	.property-price {
		float: left;
	}

	.p-ins {
		margin-bottom: 30px;
	}

	.listing-column {
		display: none;
	}

	#grid-view {
		margin: 0px;
	}
}

@media only screen and (max-width: 767px) {
	.t-details .popular-room-features.single-property {
		float: left;
	}

	.p-ins {
		margin-bottom: 30px;
	}

	.property-title {
		margin-bottom: 15px;
	}

	.property-price {
		float: left;
	}

	.round-avatar {
		max-width: 75%;
		height: 200px;
	}

	.listing-column {
		display: none;
	}

	.bdrrn-sm {
        border-right:none;
    }

	#grid-view {
		margin: 0px;
	}
}

@media only screen and (max-width: 479px) {
	.popular-room-features.single-property {
		float: left;
	}

	.p-ins {
		padding: 0 20px 15px 20px;
		margin-bottom: 30px;
	}

	.p-ins:after {
		top: 145px;
	}

	.property-features table tr {
		display: block;
	}

	.property-features table tr td {
		width: 100px;
	}

	.property-features .property-table table tr td {
		padding-left: 15px;
	}

	.property-features .property-table table tr td img {
		display: block;
		margin-bottom: 10px;
	}

	.project-information {
		flex-direction: column;
	}

	.project-form {
		flex-direction: column !important;
	}

	.project-community {
		text-align: center;
	}

	.listing-column {
		display: none;
	}

	#holiday-homes-owner {
		flex-direction: column !important;
	}

	.pro-card-details {
		height: auto;
	}

	#grid-view {
		margin: 0px;
	}
}
