/*
Theme Name: Be Nature
Theme URI: https://mati.agency
Version: 1.0
Author: @matiagency
Author URI: https://mati.agency
*/


:root,
[data-bs-theme=light]{

	/* Defaults */
	--header-min-height: 65px;	
	--header-fixed-min-height: 65px;

	/* Colors */
	--bs-heading-color: inherit; /* H1, H2 colors */

    --bs-body-color: #66605C;
    --bs-body-bg: #FAEFE1; /* beige*/

    --bs-primary: #66605C;
    --bs-primary-rgb: 102,96,92; /* rgba(102,96,92,1)  Gris*/

    --bs-secondary: #9C918C;
    --bs-secondary-rgb: 156,145,140; /* rgba(156,145,140, 1)  Bizon */
   

    --bs-light: #FFFAF3;
    --bs-light-rgb :  229,220,207; /* rgba(229,220,207, 1)  Cream*/

    --bs-white: #FFFAF3;
    --bs-white-rgb: 255,250,243; /* rgba(255,250,243, 1)  Off White*/

    --bs-dark: #1A2822;

	/* Links */
    --bs-link-color: #0d6efd;
    --bs-link-color-rgb: 13,110,253;
    --bs-link-decoration: underline;
    --bs-link-hover-color: #0a58ca;
    --bs-link-hover-color-rgb: 10,88,202;

    /* BS Borders */
    --bs-border-width: 1px;
/*    --bs-border-color: #fc3f50;*/
    --bs-border-radius: 32px;


    --bs-table-bg: transparent;
}



@media screen and (min-width:1200px){
	:root,
	[data-bs-theme=light]{
		--header-min-height: 72px;
		--header-fixed-min-height: 65px;
	}
}

html{
	scroll-behavior: smooth;
}

body {
	font-size: 16px;
	font-weight: 300;
	font-family: 'TWK Lausanne', 'Roboto', sans-serif;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

body:has(.header.fixed){
	padding-top: var(--header-min-height);
}

.wow {
	visibility: hidden;
}

.wow.slow{
 	-webkit-animation-duration: 6s;
	-moz-animation-duration: 6s;
	animation-duration: 6s;	
}

.overh {
	overflow: hidden;
}

*:focus {
	outline: none !important;
}

.is-invalid .invalid-feedback{
	display: block;
}


a,
a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
	transition: 0.3s all;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Goudy Oldstyle Std', serif;
	font-weight: normal;
	line-height: 1.2em;
}

h1 { font-size: 28px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

@media screen and (min-width: 992px) {

	h1 { font-size: 34px; }
	h2 { font-size: 30px; }
	h3 { font-size: 26px; }
	h4 { font-size: 22px; }
	h5 { font-size: 20px; }
	h6 { font-size: 18px; }
}

b, strong {
    font-weight: bold;
}

.small {
	font-size: 12px;
	letter-spacing: 1px;
}

.image {
	overflow: hidden;
}

img {
	object-fit: cover;
}
img.w-100 {
	aspect-ratio: 1.8 / 1;
}

.full img.w-100 {
	max-height: 800px;
}


/* Framework */

.main {
	width: 100%;
	min-height: 80vh;
	overflow: hidden;
}

.container{
	width: 100%;
	max-width: 100%;
}
@media screen and (min-width: 992px) {
	.container{
		max-width: 100%;
		padding: 0 70px;
	}
}

/* Extras */

.grecaptcha-badge{
	opacity:0;
}

/* Columns */

@media screen and (min-width: 992px){
	.col-lg-5-2{
		-ms-flex: 0 0 20%;
	    flex: 0 0 20%;
	    max-width: 20%;
	}
}

/* Keyframes */

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -100%);
  }
}

@keyframes zoomInUp {
	0% {
	    opacity: 0.8;
	    -webkit-transform: scale(1.15,1.15) rotate(.01deg);
	    -moz-transform: scale(1.15,1.15) rotate(.01deg);
		-ms-transform: scale(1.15,1.15) rotate(.01deg);
		-o-transform: scale(1.15,1.15) rotate(.01deg);
		transform: scale(1.15,1.15) rotate(.01deg);
	}
	100% {
	    opacity: 1;
	    -webkit-transform: scale(1, 1) rotate(.01deg);
	    -moz-transform: scale(1, 1) rotate(.01deg);
		-ms-transform: scale(1, 1) rotate(.01deg);
		-o-transform: scale(1, 1) rotate(.01deg);
		transform: scale(1, 1) rotate(.01deg);
	}
}

/* Colors */

/* Buttons */

.btn{
	min-width: 150px;
	--bs-btn-padding-x: 30px;
	--bs-btn-padding-y: 10px;
	--bs-btn-font-weight: 300;
	text-transform: uppercase;
	font-size: 12px;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 6px;
}

@media screen and (max-width: 576px){
	.btn-block-mobile{
		width: 100%;
	}
}

.btn-primary{
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: transparent;
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
}
.btn-outline-primary{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-primary);
}


/* Form */

label{
	font-size: 16px;
}
.form-control{
	min-height: 48px;
	background: transparent;
	color: var(--bs-primary);
	border-radius: 0;
	font-size: 16px;
	border: solid 1px var(--bs-primary);
	appearance: none;
	-webkit-appearance: none;
	transition: 0.3s all;
}
.form-control::placeholder{
 	color: var(--bs-primary);
 	font-size: 16px;
}
.form-control:disabled,
.form-control[readonly]{
    background: transparent;
}
.form-control:focus{
	color: var(--bs-primary);
    box-shadow: none !important;
    border-color: var(--bs-primary);
    background: rgba(0, 0, 0, 0.02);
}
.form-control:focus::placeholder{
	color:var(--bs-primary);
}

textarea.form-control{
	border-radius: 0;
}
select.form-control{
    background: rgba(0, 69, 147, 0.05) url('assets/img/icons/icon-arrow-select.svg') no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 24px;
    padding-right: 25px;
    background-color: transparent;
}
select.form-control:focus{
	color: var(--bs-primary);
	background-color:var(--bs-light) ;
	background: var(--bs-light) url('assets/img/icons/icon-arrow-select.svg') no-repeat;
	background-position: calc(100% - 10px) center;
    background-size: 24px;
    padding-right: 25px;
}

.form-control-light{
    border-color: #fff !important;
    color: #fff !important;
}
.form-control-light::placeholder{
	color: #fff !important;
}

@media screen and (min-width: 992px){
	.form-control{
		font-size: 16px;
	}
	.form-control-sm{
		min-height: 36px;
	}
	.form-control-lg{
		min-height: 56px;
	}
}

/* Input Checkbox */

input[type="checkbox"],
input[type="radio"]{
	display: inline-block;
	vertical-align: middle;
	width: 17px;
	height: 17px;
	margin-right: 6px;
	border: 1px solid #151515;
	box-shadow: 0 0 0px 4px #fff inset;
	border-radius: 50%;
	appearance: none;
	-webkit-appearance: none;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked{
	background: #151515;
}
input[type="checkbox"] ~ span,
input[type="radio"] ~ span{
	display: inline-block;
	vertical-align: middle;
}
input[type="checkbox"] ~ label,
input[type="radio"] ~ label{
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 30px);
	margin: 0;
}

/* Input File */

.input-file-wrapper{
	position: relative;
	display: block;
	padding: 8px 16px;
	text-align: center;
	background: #f5f5f5;
	border-radius: 0;
	cursor: pointer;
}
.input-file-wrapper input{
	opacity: 0;
	width: 0;
}
.input-file-wrapper .files{
	font-size: 10px;
	max-height: 100px;
	overflow: auto;
}
.input-file-wrapper .files span{
	display: block;
	color: #285958;
}
.input-file-wrapper:hover{
	background: #285958;
	color: #fff;
}

/* Header */

.header{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);
	background: var(--bs-white);
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
}
.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
	max-width: 178px;
}

.header.fixed{
	position: fixed;
	min-height: var(--header-fixed-min-height);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	z-index: 999;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}

/* Header > Navigation */

.header .nav-menu {
	position: relative;
	float: right;
	width: 35px;
	padding: 15px 0;
	cursor: pointer;
	z-index: 21;
	overflow: hidden;
}
.header .nav-menu .menu-line {
	float: right;
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: var(--bs-body-color);
	transition: 0.3s;
	border-radius: 6px;
}
.header .nav-menu.active .menu-line:nth-child(1) { transform: rotate(45deg); width: 40px; margin-top: 14px; }
.header .nav-menu.active .menu-line:nth-child(3) { transform: rotate(-45deg); width: 40px; margin-top: -16px; }
.header .nav-menu.active .menu-line:nth-child(2) { opacity: 0; }

.header .navigation {
	display: none;
	position: absolute;
	top: var(--header-min-height);
	left: 0;
	width: 100%;
	margin: 0;
	text-align: center;
	background: var(--bs-light);
}
.header .navigation.active {
	display: block;
}
.header .navigation .menu {
	position: relative;
}
.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 10px 12px;
	font-size: 16px;
	text-transform: uppercase;
}

.header .navigation ul li.menu-contact a{
	display: inline-block;
    padding: 5px 19px;
    text-align: center;
    background: var(--bs-body-color);
    border: 1px solid var(--bs-body-color);
    color: #fff;
    border-radius: 100px;
}
.header .navigation ul li.menu-contact a:hover{
    background: transparent;
    text-decoration: none;
    color: var(--bs-body-color);
}

@media screen and (min-width: 1200px) {

	.header .logo {
		max-width: 178px;
	}

	.header .nav-menu {
		display: none;
	}

	.header .navigation{
		display: flex;
		align-items: center;
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		background: transparent;
	}
	.header .navigation ul,
	.header .navigation ul li {
		position: relative;
		display: inline-block;
		vertical-align: middle;
	}
	.header .navigation ul{
		margin: 0;
	}
	.header .navigation .menu > li a {
		padding: 10px 14px;
		font-size: 12px;
		letter-spacing: 1px;
		position: relative;
	}

	.header .navigation .menu {
		margin-right: 16px;
	}
	.header .navigation .menu li a {
		text-align: left;
	}

	.header .navigation .menu li:not(.menu-contact) a:before{
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 0;
		height: 1px;
		background: var(--bs-body-color);
		transition: 0.3s all;
	}
	.header .navigation .menu li:not(.menu-contact).active a:before,
    .header .navigation .menu li:not(.menu-contact).current-menu-item a:before,
    .header .navigation .menu li:not(.menu-contact) a:hover:before{
		left: 10%;
		width: 80%;
	}

	.header .navigation ul li.menu-contact a {
		margin-left: 5px;
	}
}

@media screen and (max-width: 1199px){
	.header .navigation{
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	}
	.header .navigation .menu li.active a,
	.header .navigation .menu li a:hover{
		background: var(--bs-primary);
		color: #fff;
	}

	.header .navigation ul li.menu-contact a{
		margin-top: 12px;
	}
	
}


/* Modules */

/* Modules > Title */

.title{
	position: relative;
	margin-bottom: 30px;
}
.title h1{
	font-size: 28px;
	text-transform: uppercase;
}

.title h2{
	font-size: 32px;
	text-transform: uppercase;
}

.title h3{
	font-size: 32px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.title h4{
	font-size: 22px;
}
.title b{
	font-weight: 600;
}
.title p:not(.subtitle){
	margin: 0;
	margin-top: 16px;
	font-size: 16px;
}
.title .icon{
	margin-bottom: 15px;
}
.title .subtitle{
	margin-bottom: 15px;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
}
.title .btn{
	margin-top: 50px;
}
.title.lined{
	padding-bottom: 15px;
	border-bottom: 1px solid #285958;
}
.title.max-width{
	max-width: 768px;
}
.title.max-width-lg{
	max-width: 992px;
}

.title.max-width p:not(.subtitle){
	max-width: 490px;
}

.title.max-width.text-center p:not(.subtitle){
	margin: 0 auto;
}

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title h1{
		font-size: 40px;
	}
	.title h2{
		font-size: 40px;
	}
	.title h3{
		font-size: 40px;
	}
	.title h4{
		font-size: 30px;
	}
	.title p:not(.subtitle){
		font-size: 20px;
		margin-top: 28px;
	}
	.title .icon{
		margin-bottom: 30px;
	}
}

/*
@media screen and (max-width: 991px){
	.title br{
		display: none;
	}
}

*/

/* Data Title */

.data.d-flex {
	justify-content: space-between;
}
.data.d-flex .title {
	max-width: 650px;
}
@media screen and (max-width: 991px){
	.data.d-flex {
		flex-direction: column-reverse;
	}
	.data.d-flex .title {
		max-width: 100%;
	}

	.data.d-flex .icon {
		max-width: 55%;
		margin-bottom: 20px;
	}
}

/* Modules > Banner */

.banner{
	position: relative;
	display: flex;
	align-items: center;
	padding: 50px 0;
	min-height: 350px;
	background: #eee no-repeat center;
	background-size: cover;
	overflow: hidden;
}
.banner .title{
	margin: 0;
}
.banner .title h1{
	color: #285958;
}

.banner .arrow-down{
    display: block;
    position: absolute;
    left: calc(50% - 10px);
    bottom: 5%;
    width: 45px;
    height: 25px;
    background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
    background-size: contain;
    animation: bounce 3s infinite;
    -webkit-animation: bounce 3s infinite;
}

@media screen and (min-width: 992px){
	.banner{
		min-height: 450px;
	}
}

/* Framework */

.section{
	position: relative;
	padding: 50px 0;
	scroll-margin-top: 50px;
}

.pb-5 {
	padding-bottom: 30px !important;
}

.scroll {
	scroll-margin-top: 70px;
}

@media screen and (min-width: 992px){
	.section{
		padding: 80px 0;
		scroll-margin-top: 80px;
	}

	.pb-5 {
		padding-bottom: 80px !important;
	}

	.scroll {
		scroll-margin-top: 120px;
	}
}

/* Module > Presentation */
.presentation{
	position: relative;
}
.presentation .slider .slide img{	
	height: calc(100dvh - var(--header-min-height));
	min-height: 400px;	
}

.presentation .arrow-down{
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);     
	bottom: 25px;
	width: 32px;
	height: 16px;
	background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
	background-size: contain;
	z-index: 3;
	animation: bounce 3s infinite;
	-webkit-animation: bounce 3s infinite;
}

@media screen and (min-width: 992px) {
	/*.presentation .slider .slide img{
		max-height: 800px;
	}*/

	.presentation .arrow-down{
		bottom: 50px;
	}
}

/* Module > Video Player */

.video-player{
	position: relative;
	width: 100%;
	padding: 30% 0;
	background: #f1f1f1 no-repeat center;
	background-size: cover;
}
.video-player .play{
	display: none;
	position: absolute;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	width: 60px;
	height: 60px;
	font-size: 24px;
	line-height: 60px;
	text-align: center;
	background: #285958;
	color: #fff;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
}
.video-player.active .play,
.video-player:hover .play{
	background: #285958;
	color: #fff;
}
.video-player .play:hover{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.video-player .play i{
	margin-left: 4px;
}

.video-player.allowed{
	cursor: pointer;
}
.video-player.allowed .play{
	display: block;
}
/*@media screen and (min-width: 1200px){

	.video-player .play{
		top: calc(50% - 28px);
		left: calc(50% - 28px);
		width: 56px;
		height: 56px;
		font-size: 24px;
		line-height: 58px;
	}
	.video-player .play i{
		margin-left: 5px;
	}
}*/



/* Map */
#map {
	width: 100%;
	height: 400px;
}

@media screen and (min-width: 992px){
	#map {
		height: 800px;
	}
}

/* Pages */

.slick-slide img {
	display: inline-block;
}

/* Page > Home */

.page.home .about {	
	background:  #9C918C no-repeat bottom;
	background-size: cover;
	height: 100dvh;
	align-content: center;

}
.page.home .about .title {
	height: 65vh;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	opacity: 0.6;
	max-width: 538px;
	margin: 0 auto;
}
.page.home .about .title p {
	max-width: 410px;
}
@media screen and (min-width: 992px){
	.page.home .about .title {
		height: 75vh;
	}
}

.page.home .amenities .description p{
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
}
@media screen and (min-width: 992px){
	.page.home .amenities .description  p{
		column-count: 2;
        column-gap: 50px;
        display: inline-block;
        font-size: 14px;
	}
}


.page.home .horizontal-slider .slides .slide {
	padding: 10px;
}
.page.home .horizontal-slider .slides .slide img{
	aspect-ratio: 1.22 / 1;
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-width: 416px;
}

.page.home .horizontal-slider .address {
	font-size: 18px;
}
.page.home .horizontal-slider .address b{
	font-size: 24px;
}


.page.home .map .address p {
	text-transform: uppercase;
	letter-spacing: 1px;
}

.page.home .map .address p span{
	font-size: 16px;
}

.page.home .gallery .slide{
	position: relative;
}
.page.home .gallery .title {
	position: absolute;
	left: 20px;
	bottom: 10px;	
	color: var(--bs-white);
	z-index: 2;
	max-width: 300px;
}

.page.home .gallery .title .subtitle {
	font-size: 12px;
}

@media screen and (min-width: 992px){
	.page.home .gallery .title {
		position: absolute;
		left: 50px;
		bottom: 30px;	
	}
	.page.home .gallery .title .subtitle {
		font-size: 16px;
	}
}

.page.home .team .data {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	max-width: 600px;
    margin: 0 auto;
}

.page.home .team .data .title h2{
	font-size: 16px;
	letter-spacing: 2px;
}
.page.home .team .data .title p{
	font-size: 16px;
}

@media screen and (min-width: 992px){
	.page.home .team .data .partners .item-3 {
		padding-left: 50px;
	}
	.page.home .team .data .title h2{
		font-size: 24px;
		letter-spacing: 4px;
	}
}
@media screen and (max-width: 991px){
	.partners article img {
	    max-height: 25px;
	    max-width: 130px;
	    object-fit: contain;
	}

}


.page.home .contact .socialmedia {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.page.home .contact .socialmedia li{
	margin: 0 5px;
}
.page.home .contact .socialmedia li a{
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    font-size: 17px;
    color: var(--bs-light);
    background: var(--bs-primary);
    border-radius: 50%;
}
.page.home .contact .socialmedia li a:hover{
	background: var(--bs-secondary);
}



/* Pages > Internal */

.page.internal .content{
	
}
.page.internal .content article {
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}

/* Pages > Page thankyou */

.page.page-thankyou .content{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 200px 0 100px;
	min-height: calc(100vh - 150px);
}
.page.page-thankyou .content .logo{
	position: absolute;
	top: 150px;
	left: calc(50% - 125px);
}
.page.page-thankyou .content .title h1{
	text-transform: uppercase;
	font-size: 36px;
}

/* Pages > Page 404 */

.page.page-404 .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
}
.page.page-thanks .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
}

/* Pages > Page Maintenance */

.page.page-maintenance .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 100vh;
}

.page.page-maintenance .content .socialmedia{
	margin-top: 50px;
}
.page.page-maintenance .content .socialmedia li {
    display: inline-flex;
    vertical-align: middle;
    position: relative;
    margin-right: 8px;
}
.page.page-maintenance .content .socialmedia li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-left: 10px;
}

.page.page-maintenance .content .socialmedia li a:hover{
	color: #ED6926;
}

/* Errors */

.errors {
	text-align: center;
	padding: 30px 0;
}
.errors.error-nologued {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60vh;
}

.errors .smile {
	margin: 0;
	font-size: 50px;
	-webkit-transform: rotate(90deg);
	color: #004593;
}
@media screen and (min-width: 992px){
	.errors .smile {
		font-size: 80px;
	}
}



/* Footer */
.footer .widgets{
	padding: 30px 0;
	text-align: center;
}

.footer .widgets .logo{
	display: block;
	width: 178px;
	margin: 0 auto 20px;
}

.footer .widgets .menu{
	margin-bottom: 20px;
}
.footer .widgets .menu li a{
	display: block;
	padding: 2px;
	font-size: 12px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.footer .widgets .menu li:not(.menu-contact) a:hover{
	text-decoration: underline;
}

.footer .widgets .menu li.menu-contact a{
	background: var(--bs-primary);
	color: var(--bs-light);
	border: solid 1px var(--bs-primary);
	border-radius: 100px;
	padding: 6px 24px;
}
.footer .widgets .menu li.menu-contact a:hover{
	background: transparent;
	color: var(--bs-primary);
}

.footer .copyright {
	padding-top: 32px;
	border-top: solid 1px var(--bs-body-color);
	margin-top: 50px;
	font-size: 14px;
}
.footer .copyright p{
	margin: 0;
}

.footer .legal {
	font-size: 12px;
	color: rgb(72 66 64 / 60%);
	max-width: 810px;
}

.footer .partners{
	display: inline-flex;
	gap: 30px;
}

@media screen and (min-width: 992px){
	.footer .widgets{
		padding: 100px 0 80px 0;
		text-align: left;
	}
	.footer .widgets .logo{
		margin: 0;
	}

	.footer .widgets .menu{
		width: 100%;
		display: inline-flex;
		gap: 32px;
		margin: 0;
		align-items: center;
		justify-content: center;
	}
	
}


/* Slider */

.slider {
	position: relative;
}
.slider .dots {
	position: absolute;
	width: 100%;
	z-index: 10;
}
.slider .dots .slick-dots {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: center;
}
.slider .dots .slick-dots li {
	display: inline-block;
	vertical-align: top;
	margin: 10px 6px;
}
.slider .dots .slick-dots li button {
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
    text-indent: -9999px;
	background: #d7d7d7;
    border: 0;
	border-radius: 50%;
    overflow: hidden;
    -webkit-appearance: none;
    cursor: pointer;
}
.slider .dots .slick-dots li.slick-active button {
	background: #66605C;
}

.slider .arrows button {
	position: absolute;
	top: calc(50% - 20px);
	left: 5px;
	width: 30px;
	height: 30px;
	padding: 0;
	line-height: 300px;
	text-align: center;
	font-size: 50px;
	color: #fff;
	background: transparent;
	border: solid 1px #66605C;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	overflow: hidden;
}

.slider .arrows.light button {
	border-color: #FAEFE1;
}

.slider .arrows.light button:after {
	filter: invert(1) brightness(5);
}
.slider .arrows button:focus {
	outline: 0;
}
.slider .arrows button:after {
	content: '';
	position: absolute;
	top: calc(50% - 6px);
    left: calc(50% - 6px);
	width: 12px;
	height: 12px;
	line-height: 27px;
	color: #000;
	background: url('assets/img/icons/icon-arrow-left.svg') no-repeat center;
	background-size: contain;
}
.slider .arrows button.slick-next {
	left: auto;
	right: 5px;
}
.slider .arrows button.slick-next:after {
	content: '';
	background: url('assets/img/icons/icon-arrow-right.svg') no-repeat center;
	background-size: contain;
}

.slider .arrows button:hover {
	background: rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 992px) {

	.slider .arrows button {		
		top: calc(50% - 20px);
		left: 30px;
		width: 56px;
		height: 56px;
		padding: 0;		
	}

	.slider .arrows button:after {		
		top: calc(50% - 8px);
	    left: calc(50% - 8px);
		width: 16px;
		height: 16px;		
	}

	.slider .arrows button.slick-next {
		left: auto;
		right: 30px;
	}
}

/*  Modals */

.modal{
	z-index: 99999;
}
.modal-backdrop{
	z-index: 9999;
}
.modal .modal-content{
	border: 0;
	border-radius: 0;
}

.modal .btn-close{
	position: absolute;
	top: -50px;
	right: 15px;
	width: 30px;
	height: 30px;
	padding: 0;
	background: url('assets/img/icons/icon-cross.svg') no-repeat center;
	background-size: contain;
	z-index: 10;
	opacity: 0.5;
}

@media screen and (min-width: 992px) {
	.modal .btn-close{
		top: 20px;
		right: -50px;
	}
}

/* Modals > Video */

#modalVideo .modal-content{
	background-color: #000;
}
#modalVideo .modal-body{
	padding: 0;
}
#modalVideo .btn-close{
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 30px;
	filter: brightness(0) invert(1);
}

/* Whatsapp */

.btn-float{
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 32px;
    text-align: center;
    z-index: 9999;
    border-radius: 50%;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
}

.btn-float-whatsapp{
    color: #fff;
    background: #25D366;
}
.btn-float-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

@media screen and (min-width:768px){
	.btn-float{
	    width: 70px;
	    height: 70px;
	    font-size: 40px;
	}
}

.btn-loading:before{
	content: '';
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
    -webkit-animation: spinner-border .75s linear infinite;
}
