/*
Theme Name:Balearic Theme
Theme URI: https://www.balearic-properties.com/
Author: Taranov Denys
Version: 1.0.0
*/
@font-face {
	font-family: Chronicle;
	src: url("fonts/chronicle-display-black.eot") format("eot");
	src: url("fonts/chronicle-display-black.ttf") format("ttf");
	src: url("fonts/chronicle-display-black.woff") format("woff");
	src: url("fonts/chronicle-display-black.woff2") format("woff2");
	font-weight: 700;
	font-display: swap;
} 
@font-face {
	font-family: Chronicle;
	src: url("fonts/chronicle-display-light-italic.eot") format("eot");
	src: url("fonts/chronicle-display-light-italic.ttf") format("ttf");
	src: url("fonts/chronicle-display-light-italic.woff") format("woff");
	src: url("fonts/chronicle-display-light-italic.woff2") format("woff2");
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: Chronicle;
	src: url("fonts/chronicle-display-roman.eot") format("eot");
	src: url("fonts/chronicle-display-roman.ttf") format("ttf");
	src: url("fonts/chronicle-display-roman.woff") format("woff");
	src: url("fonts/chronicle-display-roman.woff2") format("woff2");
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: Chronicle;
	src: url("fonts/chronicle-display-semibold.eot") format("eot");
	src: url("fonts/chronicle-display-semibold.ttf") format("ttf");
	src: url("fonts/chronicle-display-semibold.woff") format("woff");
	src: url("fonts/chronicle-display-semibold.woff2") format("woff2");
	font-weight: 500;
	font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;  /* macOS Safari/Chrome */
    -moz-osx-font-smoothing: grayscale;   /* Firefox macOS */
	font-size: 1rem;
	font-weight: 400;
	color: #333;
}
/* header */
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	padding: 10px 0;
}
.customize-support .header {
	top: 46px;
} 
.header .columns-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .custom-logo-link {
	display: block;
	width: 160px;
} 
.header .custom-logo-link img {
	width: 100%;
	height: auto;
}
.header .menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: none;
}
.header .menu li {
	font-size: 0.875rem;
    letter-spacing: 1px;
	text-transform: uppercase;
}
.header .menu li a {
	color: #212529;
	transition: .5s;
	padding: 0.5rem 0;
}
.header .menu li a:hover,
.header .menu li.current_page_item a,
.header .menu li.current-page-ancestor a {
	color: #f45c19;
}
.header .columns-wrapper .right-column {
	display: flex;
	align-items: center;
	gap: 20px;
}
.header .columns-wrapper .right-column .association-logo {
	width: 42px;
	height: auto;
}
.menu-toggler {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    gap: 5px;
}
.menu-toggler > span {
    display: block;
    height: 2px;
    background: #212529;
    width: 24px;
    transition: .5s;
}
.header-expanded .menu-toggler span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}
.header-expanded .menu-toggler span:nth-child(2) {
    opacity: 0;
}
.header-expanded .menu-toggler span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
.breadcrumbs {
	margin-bottom: 40px;
	font-size: .8rem;
	text-transform: uppercase;
}
.side-menu {
	position: fixed;
	top: 72px;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 150;
	padding: 20px;
	width: 250px;
	transform: translateX(100%);
	transition: .5s;
}
.header-expanded+.side-menu {
	transform: translateX(0);
}
.header-expanded:before {
	content: '';
	position: fixed;
	top: 72px;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);	
}
.customize-support .side-menu,
.customize-support .header-expanded:before {
	top: 118px;
}
.side-menu .menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.side-menu .menu li {
	font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
	margin-bottom: 20px;
}
.side-menu .menu li a {
	color: #212529;
}
/* header responsive */
@media (min-width: 783px) {
	.customize-support .header {
		top: 32px;
	}
	.customize-support .side-menu,
	.customize-support .header-expanded:before {
		top: 104px;
	}
}
@media (min-width: 1200px) {
	.menu-toggler,
	.side-menu,
	.header-expanded:before {
		display: none !important;
	}
	.header .menu {
		display: flex !important;
		align-items: center;
		gap: 30px;
	}
	.header .custom-logo-link {
		width: 320px;
	}
	.header .columns-wrapper .right-column .association-logo {
		width: 58px;
	}
	.header .columns-wrapper .right-column { 
		gap: 30px;
	}
	.breadcrumbs {
		margin-bottom: 60px;
	}
}
/* categories navigation */
.categories-navigation {
	padding: 30px 0 10px;
	border-bottom: 1px solid #ccc;
}
.navbar-toggler {
	margin-bottom: 20px;
	font-weight: 700;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;	
}
.navbar-toggler .fa-angle-down {
	transition: .5s;
}
.navbar-toggler.collapsed .fa-angle-down {
	transform: rotate(-90deg);
}
.categories-navbar {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: .9rem;
	margin-bottom: 20px;
}
.categories-navbar li {
	margin-bottom: 20px;
}
.categories-navbar li a {
	color: #212529;
	transition: .5s;
}
.categories-navbar .active-category {
	font-weight: 600;
}
.categories-navbar li a:hover,
.categories-navbar .active-category a {
	color: #f45c19;
}
.searchform {
	position: relative;
	margin-bottom: 20px
}
.searchform input[type="text"] {
	width: 100%;
	padding: 6px 94px 6px 12px;
	border: 1px solid rgb(204, 204, 204);
	font-size: .9rem;
}
.searchform input[type="text"]:focus {
	outline: none;
}
.searchform #searchsubmit {
	position: absolute;
	padding: 6px 12px;
	position: absolute;
	top: 0;
	right: 0;
	background: #f45c19;
	color: #fff;
	transition: .5s;
	border: 1px solid #ea103f;
	font-size: .9rem;
}
.searchform #searchsubmit:hover {
	background: #b25c01;
}
/* categories navigation */
@media (min-width: 768px) {
	.categories-navigation {
		padding: 15px 0;
	}
	.navbar-toggler {
		display: none !important;
	}
	.searchform {
		max-width: 400px;
		margin: 0 auto;
	}
	.categories-navbar {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
	}
	.categories-navbar li {
		margin-bottom: 0;
	}	
}
@media (min-width: 1200px) {
	.categories-navigation .columns-wrapper {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		align-items: center;
	}
	.navbar-toggler {
		display: none !important;
	}
	.categories-navigation .columns-wrapper .left-column {
		width: 75%;
	}
	.categories-navbar {
		margin-bottom: 0;
	}	
	.categories-navigation .columns-wrapper .right-column {
		width: 23%;
		text-align: left;
	}
	.searchform {
		max-width: auto;
	}	
}
/* post section */
.post-section {
	padding: 30px 0 60px;
}
.post-section h1 {
	text-align: center;
	margin-bottom: 30px;
}
.author-block {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}
#sidebar {
	margin-top: 40px;
}
#sidebar .author-block {
	display: block;
	margin: 0;
}
#sidebar h5 {
	margin-bottom: 10px;
}
.author-block .left-column {
	padding-right: 15px;
}
.author-block .author-info {
	display: flex;
	align-items: center;
}
.author-block .author-info .image-column {
	margin-right: 15px;
}
.author-block .author-info .image-column .gravatar-wrapper img {
	border-radius: 50%;
	width: 75px;
	height: 75px;
}
.author-title {
	color: #830c24;
	font-weight: 700;
	line-height: 1.5;
	font-size: .8rem;
}
.author-position {
	font-size: .7rem;
	text-transform: uppercase;
}
.author-block .right-column {
	padding-left: 15px;
	border-left: 1px solid #ccc;
}
.author-block .date-publication {
	font-size: .7rem;
	margin-bottom: 10px;
}
.author-block .time-to-read {
	font-size: .7rem;
}
.page-author,
.read-block {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;
}
.post-excerpt {
	margin-bottom: 1rem;
	text-align: center;
}
.article-note {
	margin-bottom: 2rem;
	text-align: center;
	color: #717171;
	font-size: 14px;
}
.main-thumbnail-wrapper {
	margin-bottom: 2rem;
}
.wp-post-image {
	max-width: 100%;
	height: auto;	
}
#toc_container {
	padding: 15px;	
}
.post-wrapper #toc_container {
	font-size: 1rem;
}
#toc_container .toc_list li a {
	color: #333;
}
#toc_container .toc_list li a:hover {
	color: #f45c19;
	text-decoration: none;
}
.single-post .wp-block-heading span:first-child {
	scroll-margin-top: 100px; 
	position: relative;
}
figcaption.wp-element-caption {
    margin-left: 0px;
    font-size: 0.8rem;
    color: #666;
	position: relative;
	padding-left: 32px;
	padding-top: 3px;
}
figcaption.wp-element-caption:before {
	content: '';
	background: url(images/ico-photo.png) no-repeat;
	background-size: 100%;
	width: 25px;
	height: 23px;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
}
.post-section .ssba.ssbp-wrap {
	width: 100%;
}
.yt-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin-bottom: 2rem;
}
.yt-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
/* post section responsive */
@media (min-width: 768px) {
	.author-title {
		font-size: 1rem;
	}
	.author-position {
		font-size: .9rem;
	}
	.author-block .date-publication {
		font-size: .9rem;
	}
	.author-block .time-to-read {
		font-size: .9rem;
	}
	#toc_container {
		padding: 30px;
	}
}
@media (min-width: 992px) {
	#sidebar {
		margin-top: 0;
	}
}
@media (min-width: 1200px) {
	.post-wrapper {
		max-width: 930px;
		margin: 0 auto;
		font-size: 1.125rem;
	}
	.post-wrapper #toc_container {
		font-size: 1.125rem;
	}	
	.author-block {
		margin: 60px;
	}
}
/* related posts */
.related-posts {
	padding: 0 0 10px;
}
.related-posts hr {
	margin-bottom: 40px;
	color: #ccc;
	opacity: 1;
}
.card-image {
	position: relative;
	display: block;
	margin-bottom: 15px;
}
.card-image:before {
	content: "";
	position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(37, 48, 49, 0);
    z-index: 2;   
    transition: all 0.15s ease-in;
}
.card-image:hover:before {
	background-color: rgba(37, 48, 49, 0.3);
}
.card-image .wp-post-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	margin-bottom: 0;
}
.post-card {
	margin-bottom: 30px;
}
.post-card h4 a {
	color: #333;
}
.post-meta-info {
	display: flex;
	align-items: center;
	gap: 5px;
}
.post-meta-info .time-to-read {
	color: #4c4c4c;
	font-size: 12px;
}
.post-meta-info .separator {
	display: inline-block;
	width: 2px;
	height: 2px;
	border-radius: 50%;
	background: #4c4c4c;
}
.post-meta-info .author-title {
	color: #4c4c4c;
	font-size: 12px;
	font-weight: 400;
}
/* related posts responsive */
@media (min-width: 1200px) {
	.related-posts {
		padding: 0 0 60px 0;
	}
	.related-posts hr {
		margin-bottom: 60px;
	}
	.related-posts .post-card {
		margin-bottom: 0;
	}	
}
/* newsletter signup section */
.newsletter-signup-section {
	padding: 60px 0;
	color: #fff;
	position: relative;
}
.newsletter-signup-section .form-block-wrapper {
	max-width: 540px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}
.newsletter-signup-section .subtitle {
	margin-bottom: 10px;
}
.bg-layer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: .5s;
	z-index: 1;
}
.newsletter-signup-section:hover .bg-layer {
	opacity: 1;
}
.newsletter-signup-section:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;	
	background: rgba(0, 0, 0, .5);
	z-index: 2;
} 
.subscribe-fields-wrapper {
	position: relative;
}
.subscribe-fields-wrapper .wpcf7-submit {
	position: absolute;
	top: 0;
	right: 0;	
}
.newsletter-signup-section .wpcf7-form-control-wrap {
	display: block;
}
.newsletter-signup-section .wpcf7-form-control.wpcf7-email {
	border: none;
	padding: 16px 126px 16px 16px;
	width: 100%;
	border-radius: 0;
}
.wpcf7-form .wpcf7-form-control.wpcf7-submit {
	border: none;
	color: #fff;
	background: #fd8303;
	padding: 16px;
	transition: .5s;
	border-radius: 0;
}
.wpcf7-form .wpcf7-form-control.wpcf7-submit:hover {
	background: #ffa240;
}
.newsletter-signup-section .wpcf7-spinner {
	display: none;
}
.newsletter-signup-section .wpcf7-form-control.wpcf7-email:focus {
	outline: none;
}
.newsletter-signup-section .wpcf7-form-control-wrap {
	padding-bottom: 20px;
	margin-bottom: 5px;
	position: relative;
}
.wpcf7-not-valid-tip {
	font-size: 12px;
	text-align: left;
}
.newsletter-signup-section .wpcf7-not-valid-tip {
	position: absolute;
	left: 0;
	bottom: 0;
}
.newsletter-signup-section .wpcf7-list-item {
	margin: 0;
}
.newsletter-signup-section .wpcf7 form .wpcf7-response-output {
	margin: 25px 0 0 0;
}
.wpcf7-form-control-wrap[data-name="acceptance-305"] {
	margin: 0;
	padding: 0;
}
/* postlist section */
.postlist-section {
	padding: 30px 0 60px;
}
.postlist-section h1 {
	text-align: center;
	margin-bottom: 15px;
}
.subtitle {
	font-weight: 300;
}
.postlist-section .subtitle {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 60px;
}
.navigation.pagination {
	justify-content: center;
	margin-top: 10px;
	margin-bottom: 40px;
}
.navigation.pagination .nav-links {
	display: flex;
}
.nav-links .page-numbers {
	position: relative;
    display: block;
    padding: .5rem 1rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #666;
    background-color: #fff;
    border: 1px solid #ccc;
	transition: .5s;
}
.nav-links .page-numbers.current {
	background: #f45c19;
	color: #fff;
}
.nav-links .page-numbers:hover:not(.current) {
    color: #ea103f;
    text-decoration: none;
    background-color: #e9ecef;
}
.nav-links .page-numbers.prev:before,
.nav-links .page-numbers.next:before {	
	font-family: 'Font Awesome 7 Free';
	font-weight: 900;
	line-height: 1;
	font-size: smaller;
}
.nav-links .page-numbers.prev:before {
	content: '\f104';
}
.nav-links .page-numbers.next:before {
	content: '\f105';
}
.videopost .card-image:after,
.videopost.xl-post:after {
	content: '\f04b';
	font-family: 'Font Awesome 7 Free';
	font-weight: 900;
	line-height: 1;
	font-size: 30px;
	position: absolute;
	top: 45%;
	left: 50%;
	margin-left: -13px;
	color: rgba(255, 255, 255, .7);
	z-index: 3;
}
.xl-post {
	display: block;
	position: relative;
	height: 0;
	padding-top: 150%;
	overflow: hidden;
	margin-bottom: 24px;
}
.xl-post .wp-post-image {
	position: absolute;
	top: 0;	
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}
.xl-post:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(37, 48, 49, .3);
	z-index: 2;
}
.xl-post .text-layer {
	position: absolute;
	top: 15px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 10;
	color: #fff;
}
.xl-post .text-layer h2 {
	margin-bottom: 1rem;
}
.xl-post .text-layer .postlist-excerpt {
	margin-bottom: 1rem;
	font-size: .8rem;
}
.videopost.xl-post:after {
	top: 60%;
}
.post-link {
	display: inline-block;
	background: #f45c19;
	text-transform: uppercase;
	padding: 5px 15px;
	color: #fff;
	font-size: .8125rem;
}
.xl-post .post-meta-info {
	margin-bottom: 1rem;
}
.xl-post .post-meta-info .time-to-read,
.xl-post .post-meta-info .author-title {
	color: #fff;
}
.wp-block-archives-list li {
	margin-bottom: 10px;
}
/* postlist section responsive */
@media (min-width: 414px) {
	.xl-post {
		padding-top: 100%;
	}
	.videopost:after {
		top: 50%;
	}
}
@media (min-width: 768px) {	
	.navigation.pagination {
		margin-bottom: 0;
	}
	.videopost:after {
		font-size: 60px;
		margin-left: -26px;
	}
	.xl-post {
		padding-top: 70%;
	}
	.xl-post .text-layer {
		top: 30px;
		right: 30px;
		bottom: 30px;
		left: 30px;
	}
	.xl-post .text-layer .postlist-excerpt {
		margin-bottom: 30px;
		font-size: 1rem;
	}
}
@media (min-width: 992px) {
	#sidebar {
		padding-left: 30px;
		border-left: 1px solid #ccc;
		position: sticky;
		top: 150px;
	}
	.xl-post {
		height: 450px;
		margin-bottom: 2rem;
	}
	.xl-post.sticky-post {
		height: 450px;
	}
}
@media (min-width: 1200px) {
	.xl-post .text-layer {
		top: 45px;
		right: 45px;
		bottom: 45px;
		left: 45px;
	}
	.videopost.xl-post:after {
		font-size: 60px;
		margin-left: -26px;
		top: 45%;
	}	
	.postlist-section .subtitle {
		font-size: 1.25rem;
	}
}
/* pages */
.page-hero {
	min-height: 300px;
	position: relative;
}
.page-hero:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
	display: block;
	z-index: 2;
}
.page-hero .image-layer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.page-hero .image-layer .attachment-post-thumbnail {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.page-hero .text-layer {
	position: absolute;
	top: 40px;
	right: 0;
	bottom: 40px;
	left: 0;
	z-index: 3;
	color: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.page-hero .text-layer h1 {
	margin-bottom: 20px;
}
.page-content {
	padding: 60px 0;
}
.areas-map-wrapper {
	margin-top: 40px;
	margin-bottom: 40px;
}
.areas-map-wrapper svg {
	width: 100%;
}
.areas_list .col-12 .area-item {
	position: relative;
	min-height: 400px;
	margin-bottom: 40px;
}
.areas_list .col-12 .area-item:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, .3);
	z-index: 1;
}
.areas_list .col-12 .area-item .item-image-layer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.areas_list .col-12 .area-item .item-image-layer .wp-post-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.areas_list .area-item .item-content-layer {
	position: absolute;
	top: 15px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 5;
}
.areas_list .area-item .item-content-layer a {
	color: #fff;
}
.areas_list .area-item .item-content-layer .item-subtitle {
	margin-bottom: 20px;
}
.areas_list .area-item {
	margin-bottom: 15px;
}
.areas_list .area-item .wp-post-image {
	width: 100%;
	height: 75px;
}
.areas_list .area-item .columns-wrapper {
	display: flex;
	align-items: center;
}
.areas_list .area-item .columns-wrapper .image-column {
	width: 0 0 75px;
	margin-right: 15px;
}
.areas_list .area-item .titles-column {
	width: calc(100% - 90px);
}
.areas_list .area-item .titles-column h6 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 0;
}
.areas_list .area-item .titles-column h6 a {
	color: #333;
}
.areas_list .area-item:hover .titles-column h6 a {
	color: #fd8303;
	transition: .5s;
}
.areas_list .area-item .titles-column .item-subtitle {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.areas_list .area-item .titles-column .item-subtitle a {
	color: #4c4c4c;
}
#sidebar .wpcf7-form .wpcf7-form-control.wpcf7-text,
#sidebar .wpcf7-form .wpcf7-textarea {
	border: 1px solid #ccc;
	padding: 8px;
}
.sidebar-areas {
	margin-bottom: 0;
}
.areas-map-wrapper .st6 {
	transition: .3s;
	cursor: pointer;
}
.areas-map-wrapper .st6:hover {
	fill: #fd8303;
}
.properties-block {
	padding: 60px 0 20px;
}
.properties-list .property-item {
	margin-bottom: 40px;
}
.properties-list .property-item .property-thumbnail-wrapper {
	display: block;
	padding-top: 100%;
	position: relative;
	margin-bottom: 10px;
}
.properties-list .property-item .property-thumbnail {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
    object-fit: cover;
    object-position: center;
}
.property-item h3 {
	margin-bottom: 0;
}
.properties-list .property-item .property-price {
	font-weight: 700;
}
.property-features {
	color: #4c4c4c;
}
.property-features span:after {
    content: "·";
    padding: 0 4px;
    display: inline-block;
}
.property-features span:last-of-type:after {
	display: none;
}
/* pages responsive */
@media (min-width: 480px) {
	.properties-list {
		display: grid;
		gap: 2rem;
		grid-template-columns: repeat(2, 1fr);
	}
	.properties-list .property-item {
		margin-bottom: 0;
	}
}
@media (min-width: 768px) {
	.areas_list .area-item .item-content-layer {
		top: 30px;
		right: 30px;
		bottom: 30px;
		left: 30px;
	}
} 
@media (min-width: 1200px) {
	.areas_list .area-item .item-content-layer {
		top: 45px;
		right: 45px;
		bottom: 45px;
		left: 45px;
	}
	.properties-list {
		grid-template-columns: repeat(4, 1fr);
	}
} 
/* default section */
.default-section {
	padding: 60px 0;
}
.default-section h1 {
	margin-bottom: 40px;
}
.news-archive-list li {
	margin-bottom: 1rem;
}
.archive-date-publication {
	margin-right: 20px;
}
.founded-post-item {
	margin-bottom: 40px;
	max-width: 800px;
}
.founded-post-item a {
	color: #212529;
}
/* form section */
.form-section {
	padding: 60px 0 40px;
	background: #f3f3f3;
}
.form-section h2 {
	margin: 0 0 24px;
	line-height: 1.05;
	font-weight: 700;
}
.form-section .subtitle {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 20px;
	font-weight: 400;
}
.form-section .subtitle a {
	color: #c8102e;
	font-weight: 700;
}
.form-section .subtitle a:hover {
	text-decoration: underline;
}
#contact-form {
	position: relative;
	top: -130px;
}
.wpcf7-form .wpcf7-form-control-wrap {
	display: block;
	margin-bottom: 1rem;
}
.wpcf7-form .wpcf7-form-control {
	width: 100%;
	border: none;
	border-radius: 0;
	padding: 16px;
	background: #fff;
}
.wpcf7-textarea {
	resize: none;
}
.wpcf7-form .wpcf7-form-control.wpcf7-acceptance {
	background: none;
	display: block;
	text-align: left;
	padding: 0;
	margin: 0 0 22px 0;
}
.wpcf7-form-control.wpcf7-submit {
	background: #fd8303;
	color: #fff;
	transition: .5s;
}
.wpcf7-form-control.wpcf7-submit:hover {
	background: #ffa240;
}
.wpcf7-form-control:focus {
	outline: none;
}
.submit-button-wrapper {
	position: relative;
	padding-bottom: 40px;
}
.submit-button-wrapper .wpcf7-spinner {
	position: absolute;
	bottom: 0;
	left: 50%;
	bottom: 0;
	margin: 0 0 0 -12px;
}
.intl-tel-input.separate-dial-code .selected-dial-code {
	padding-right: 24px;
}
.wpcf7-form-control.wpcf7-acceptance {
	padding: 0;
}
.wpcf7-list-item {
	margin: 0;
}
.wpcf7-form-control.wpcf7-phonetext {
	padding-left: 100px !important;
}
.form-section .wpcf7-form-control.wpcf7-textarea {
	margin-bottom: 1rem;
}
.wpcf7-form .acceptance-wrapper .wpcf7-form-control-wrap {
	margin-bottom: 10px;
}
.wpcf7-form .acceptance-wrapper {
	margin-bottom: 20px;
}
.wpcf7-form .acceptance-wrapper .wpcf7-form-control.wpcf7-acceptance {
	margin-bottom: 0;
}
/* form section responsive */
@media (min-width: 1200px) {
	.form-section h2 {
		font-size: 56px;		
	}
	.form-section .subtitle {
		font-size: 24px;
		margin-bottom: 38px;
	}
}
/* footer */
.bp-footer {
	background: #f3f7f6;
	padding: 40px 0 20px;
	font-family: "Poppins", sans-serif;	
}
.bp-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
.bp-brand {
	position: relative;
}
.bp-brand img { 
	max-width: 100%;
	height: auto;
}
.bp-brand__balearic { 
	color: #111; 
}
.bp-brand__properties { 
	color: #d36a2a; 
	margin-left: 6px; 
}
.bp-brand__accent {
	position: absolute;
	left: 118px;
	top: -6px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 10px solid #d36a2a;
	transform: rotate(6deg);
}
.bp-social {
	margin-top: 22px;
	display: flex;
	gap: 10px;
}
.bp-social__btn {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(0,0,0,.6);
	background: rgba(255,255,255,.55);
	text-decoration: none;
}
.bp-social__btn svg {
	width: 18px;
	height: 18px;
	fill: #333;
}
.bp-social__btn:hover svg { 
	fill: #6f7775; 
}
.bp-card__title {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	font-family: "Poppins", sans-serif;	
}
.bp-card__text {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: #4c4c4c;
}
.bp-card__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 6px;
}
.bp-card__list a {
	color: #4c4c4c;
	text-decoration: none;
	font-size: 13px;
	line-height: 1.6;
}
.bp-card__list a:hover { 
	text-decoration: underline; 
	color: #4c4c4c;
}
.bp-footer__divider {
	border-top: 1px solid rgba(47,127,120,.5);
	margin: 28px 0;
}
.bp-footer__bottom {
	text-align: left;
}
.bp-footer__links {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 12px;
	color: #666;
}
.bp-footer__links a {
	color: #666;
	text-decoration: none;
}
.bp-footer__links a:hover { 
	text-decoration: underline; 
}
.bp-footer__copyright {
	color: #666;
}
.bp-footer__copyright p {
	margin-bottom: 0;
}
.bp-footer__legal {
	margin: 10px 0 0;
	font-size: 12px;
	line-height: 1.7;
	color: #666;
}
.bp-footer__legal a { 
	color: #666; 
	text-decoration: none;
}

.bp-footer__legal a:hover { 
	text-decoration: underline; 
}

.bp-footer__rights { 
	margin-left: 6px; 
}
.bp-footer__links {
	display: flex;
}
.bp-footer__links .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.otgs-development-site-front-end {
	display: none !important;
}
@media (min-width: 768px) {
	.bp-footer {
		padding: 60px 0 20px;
	}		
	.bp-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.bp-card {
		padding: 10px 20px;
	}
	.bp-footer__brand {
		grid-column: 1 / 2;
	}
	.bp-footer__bottom {
		text-align: center;
	}
	.bp-footer__links {
		justify-content: center;
		gap: 28px;
	}
	.bp-footer__legal {
		margin: 10px auto 0;
		max-width: 980px;
	}
}
@media (min-width: 1200px) {
	.bp-footer__grid {
		grid-template-columns: 220px 1fr 1fr 1fr;
	}
	.bp-footer__brand {
		grid-column: auto;
	}
}
/* common */
h1, h2, h3, h4, h5, h6 {	
    font-family: "Chronicle", "Times New Roman", "Times", serif;
	font-weight: 500;
    line-height: 1.2;
}
h2, h3, h4, h5, h6 {
	margin: 2.5rem 0 1.5rem;
}
h2:first-child, 
h3:first-child, 
h4:first-child, 
h5:first-child, 
h6 {
	margin-top: 0;
}
a {
    color: #f45c19;
    text-decoration: none;
}
a:hover {
    color: #b25c01;
    text-decoration: none;
}
.btn {
	display: inline-block;
    border-radius: 0;
    text-transform: uppercase;
    padding: 5px 15px;
    color: #fff;
}
.btn-primary {
	background: #f45c19;
	border-color: #f45c19;
	color: #fff;
}
.btn-primary:hover {
	background: #ffa240 !important;
	border-color: #ffa240 !important;
	color: #fff !important;
}
/* common responsive */
@media (min-width: 1200px) {
	h1 {
		font-size: 50px;
	}
	h3 {
		font-size: 1.5rem;
	}
}
@media (min-width: 1400px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}