@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --font-montserrat: 'Montserrat', sans-serif;
    --font-playfair: 'Playfair Display', serif;
	--color-main: #6D625A;
	--color-secondary: #EAE6E1;
	--color-placeholder: rgba(109, 98, 90, 50%);
}
* {
  box-sizing: border-box;
}
body ._villas-365-bootstrap .form-control:focus {
	box-shadow: none;
}
button:focus, body ._villas-365-bootstrap .btn-primary.focus, body ._villas-365-bootstrap .btn-primary:focus,body ._villas-365-bootstrap .btn-primary:not(:disabled):not(.disabled).active:focus, body ._villas-365-bootstrap .btn-primary:not(:disabled):not(.disabled):active:focus, body .show > ._villas-365-bootstrap .btn-primary.dropdown-toggle:focus, body ._villas-365-bootstrap .btn.focus, body ._villas-365-bootstrap .btn:focus, body ._villas-365-bootstrap .btn-secondary:not(:disabled):not(.disabled).active:focus, body ._villas-365-bootstrap .btn-secondary:not(:disabled):not(.disabled):active:focus, body .show > ._villas-365-bootstrap .btn-secondary.dropdown-toggle:focus{
	outline: 0;
	box-shadow: none;
}
a:focus, a:focus-visible {
	outline: 0;
}
[type="checkbox"]:checked:before, [type="radio"]:checked:before{
	opacity: 1;
}
[type="checkbox"]::before, [type="radio"]::before {
	content: "";
	position: absolute;
	width: 9px;
	height: 9px;
	top: 2px;
	left: 2px;
	background: var(--color-main);
	opacity: 0;
}
[type="checkbox"], [type="radio"] {
	user-select: none;
	-webkit-user-select: none;
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	margin: 0;
	width: 15px;
	height: 15px;
	border: 1px solid var(--color-main);
	top: 3px;
	margin-right: 0.3rem;
}
input, select, textarea {
	outline: 0;
}
input::placeholder, textarea::placeholder, input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder, body ._villas-365-bootstrap .form-control::placeholder {
  	color: var(--color-placeholder);
  	opacity: 1;
}
input:not([type="submit"]):not([type="button"]):not([type="reset"]):not(:placeholder-shown), textarea:not(:placeholder-shown) {
	border-color: var(--color-main);
}
html {
	margin: 0 !important;
}
.fw300{
	font-weight: 300;
}
.fw400{
	font-weight: 400;
}
.fw500{
	font-weight: 500;
}
.fw600{
	font-weight: 600;
}
.fw700{
	font-weight: 700;
}
.fw800{
	font-weight: 800;
}
.fw900{
	font-weight: 900;
}
.font_heading{
	font-family: var(--font-playfair);
}
.font_body{
	font-family: var(--font-montserrat);
}
.hide {
	display: none;
}
.show_mobile{
	display: none !important;
}
.bg-overlap {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
body {
	font-family: var(--font-montserrat);
	font-weight: normal;
	font-size: 1rem;
	line-height: 1.5rem;
	color: var(--color-main);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-playfair);
    font-weight: 600;
    margin-top: 0;
}
h1 {
    font-size: 2.5rem;
    line-height: 3rem;
}
h2 {
    font-size: 2rem;
    line-height: 2.5rem;
}
h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 400;
}
.link_abs{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.smalltxt {
    font-size: 0.874rem;
    line-height: 1.25rem;
}
.btn, body ._villas-365-bootstrap .btn {
	font-family: var(--font-montserrat);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5rem;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.625rem 1.25rem;
	border: 1px solid;
	border-radius: 0;
}
.btn .icon {
	display: flex;
	align-items: center;
}
.btn .icon svg {
	width: 0.8em;
}
.btn.btn-secondary svg {
	fill: var(--color-main);
}
.btn.btn-primary svg line {
	stroke: #fff;
}
.btn.btn-primary svg {
    fill: #fff;
}
body .btn.btn-primary {
	background: var(--color-main);
	color: #fff;
}
.btn.btn-secondary {
	background: none;
	color: var(--color-main);
}
.btn.btn-secondary.white{
	color:#fff;
}
.btn.btn-secondary.white svg line{
	stroke: #fff;
}
.btn.btn-secondary.white svg {
	fill: #fff;
}
.btn.btn-trasparent {
	border: none;
	padding-left: 0;
}
.btn .icon {
	transition: 0.2s all ease;
}
.btn:hover .icon {
	transform: translate(5px, 0);
}
.bx-button  {
	margin-right: 1.875rem;
	margin-top: 1.25rem;
}
.bx-button:last-child {
	margin-right: 0;
}
.dflex{
    display: flex;
}
.dflex-column{
    display: flex;
    flex-direction: column;
}
.dflex-row{
    display: flex;
    flex-direction: row;
}
.dflex-wrap{
    display: flex;
    flex-wrap: wrap;
}
.dflex-nowrap{
    display: flex;
    flex-wrap: nowrap;
}
.dflex-row-reverse{
    display: flex;
    flex-direction: row-reverse;
}
.dflex-column-reverse{
    display: flex;
    flex-direction: column-reverse;
}
.dflex-justify-center{
    justify-content: center;
}
.dflex-justify-start{
    justify-content: flex-start;
}
.dflex-justify-end{
    justify-content: flex-end;
}
.dflex-justify-between{
    justify-content: space-between;
}
.dflex-justify-around{
    justify-content: space-around;
}
.dflex-justify-evenly{
    justify-content: space-evenly;
}
.dflex-align-center{
    align-items: center;
}
.dflex-align-start{
    align-items: flex-start;
}
.dflex-align-end{
    align-items: flex-end;
}
.dflex-align-baseline{
    align-items: baseline;
}
.dflex-align-stretch{
    align-items: stretch;
}
.flexauto{
    flex: 1;
}
.flex10{
    width: 10%;
}
.flex20{
    width: 20%;
}
.flex30{
    width: 30%;
}
.flex40{
    width: 40%;
}
.flex50{
    width: 50%;
}
.flex60{
    width: 60%;
}
.flex70{
    width: 70%;
}
.flex80{
    width: 80%;
}
.flex90{
    width: 90%;
}
.flex100{
    width: 100%;
}
.dgrid{
	display: grid;
	grid-template-columns: repeat(12, 1fr);	
}
.grid-4{
	grid-column: span 4;
}
.grid-6{
	grid-column: span 6;
}
.grid-8{
	grid-column: span 8;
}
.grid-12{
	grid-column: span 12;
}
.grid-3{
	grid-column: span 3;
}
.grid-2{
	grid-column: span 2;
}
.grid-1{
	grid-column: span 1;
}
.grid-5{
	grid-column: span 5;
}
.grid-7{
	grid-column: span 7;
}
.grid-9{
	grid-column: span 9;
}
.grid-10{
	grid-column: span 10;
}
.grid-11{
	grid-column: span 11;
}
.position-relative{
	position: relative;
}
.position-absolute{
	position: absolute;
}
.gap5{
	gap: 5px;
}
.gap10{
	gap: 10px;
}
.gap20{
	gap: 1.25rem;
}
.gap30{
	gap: 30px;
}
.gap40{
	gap: 40px;
}
.gap50{
	gap: 50px;
}
.gap60{
	gap: 60px;
}
.gap70{
	gap: 70px;
}
.gap80{
	gap: 80px;
}
.gap90{
	gap: 90px;
}
.gap100{
	gap: 100px;
}
.fw700{
	font-weight: 700;
}
.bold{
	font-weight: bold;
}
.text-center{
	text-align: center;
}
.txt_upp{
    text-transform: uppercase;
}
img{
    max-width: 100%;
    height: auto;
}
a{
    text-decoration: none;
    color: inherit;
}
.container{
    max-width: 1360px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin: 0 auto;
}
.f14{
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.f16{
	font-size: 1rem;
	line-height: 1.5rem;
}
.f24{
    font-size: 1.5rem;
    line-height: 2rem;
}
.f30{
    font-size: 1.875rem;
    line-height: 2.5rem;
}
.f40{
    font-size: 2.5rem;
    line-height: 3rem;
}
.mw453{
    max-width: 453px;
}
.mw768{
	max-width: 768px;
}
.mw857{
	max-width: 857px;
}
.mw714{
	max-width: 714px;
}
.mwauto{
	margin-left: auto;
	margin-right: auto;
}
.img-ratio {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
img {
	transition: 0.2s all ease-in-out;
}
.bx-ratio[data-aspect-ratio="1"] {
	aspect-ratio: 1 / 1;
}
.bx-ratio[data-aspect-ratio="0.89"] {
	aspect-ratio: 0.89;
}
.bx-ratio[data-aspect-ratio="16/9"] {
	aspect-ratio: 16 / 9;
}
.bx-ratio[data-aspect-ratio="4/3"] {
	aspect-ratio: 4 / 3;
}
.bx-ratio[data-aspect-ratio="3/2"] {
	aspect-ratio: 3 / 2;
}
.bx-ratio[data-aspect-ratio="2/1"] {
	aspect-ratio: 2 / 1;
}
.bx-ratio[data-aspect-ratio="1/2"] {
	aspect-ratio: 1 / 2;
}
.bx-ratio[data-aspect-ratio="9/16"] {
	aspect-ratio: 9 / 16;
}
.bx-ratio[data-aspect-ratio="3/4"] {
	aspect-ratio: 3 / 4;
}
.bx-ratio[data-aspect-ratio="2/3"] {
	aspect-ratio: 2 / 3;
}
.bx-ratio[data-aspect-ratio="1/3"] {
	aspect-ratio: 1 / 3;
}
.bx-ratio[data-aspect-ratio="3/1"] {
	aspect-ratio: 3 / 1;
}
