/*
Theme Name: Menta Pilates
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: #1A2822;
    --bs-body-bg: #EFEFE8;

    --bs-primary: #EA856E;
    --bs-primary-rgb: 234,133,110; /* rgba(234, 133, 110, 1) */
    --bs-secondary: #BCD6CB;
    --bs-secondary-rgb: 188,214,203; /* rgba(188, 214, 203, 1) */
    --bs-white: #EFEFE8;
    --bs-light: #EBE8DF;
    --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: 108px;
		--header-fixed-min-height: 72px;
	}
}

/* Utilities */


.has-primary-color, .text-primary{ 
	color: var(--bs-primary) !important; 
}

.has-secondary-color, .text-secondary{ 
	color: var(--bs-secondary) !important; 
}

.has-primary-background-color, .bg-primary{ 
	background: var(--bs-primary) !important; 
}

.has-secondary-background-color, .bg-secondary{ 
	background: var(--bs-secondary) !important; 
}

.has-white-background-color, .bg-white{
	background: var(--bs-white) !important; 
}

.has-dark-background-color, .bg-dark{
	background: var(--bs-dark) !important; 
}

.has-black-background-color, .bg-black{
	background: var(--bs-black) !important; 
}

.bg-light{
	background: var(--bs-light) !important;
}


/* 3. Structure */

html{
	scroll-behavior: smooth;
}

body{
	font-size: 16px;
	font-weight: 400;
	font-family: "Satoshi", sans-serif;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}


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

h1, h2, h3, h4, h5, h6{
	line-height: 1.1em;
	font-weight: 500;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
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: 32px; }
	h3 { font-size: 28px; }
	h4 { font-size: 26px; }
	h5 { font-size: 24px; }
	h6 { font-size: 18px; }
}

b, strong {
    font-weight: 700;
}


/* 4. Structure > Framework */

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

.container,
.container-fluid{
	width: 100%;
	max-width: 100%;
}
.container{
	max-width: 1600px;
}
.container-fluid{
	max-width: 1920px;
}

/*
[class^="col-"]{
	padding-left: 15px;
	padding-right: 15px;
}*/

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

@media screen and (min-width: 1440px){
	.container,
	.container-fluid{
		padding: 0 70px;
	}
}

/* Keyframes */

@keyframes dropDown{
    0% {
        transform: scaleY(0);
    }
    80% {
        transform: scaleY(1.1);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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


/* Structure > extras */

.wow{
	visibility: hidden;
}

.overh{
	overflow: hidden;
}

#pageloader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bs-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	transition: opacity 0.5s ease-in-out;
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
}
#pageloader.show{
	opacity: 1;
	pointer-events: all;
}

.grecaptcha-badge{
	opacity:0;
}


/* Components > buttons */

.btn{
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	--bs-btn-padding-x: 24px;
	--bs-btn-padding-y: 11px;
	--bs-btn-font-weight: 400;
}
.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: var(--bs-light);
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: var(--bs-light);
    --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: transparent;
    --bs-btn-hover-color: var(--bs-dark);
    --bs-btn-hover-border-color: var(--bs-dark);

    --bs-btn-active-bg: transparent;
    --bs-btn-active-color: var(--bs-dark);
    --bs-btn-active-border-color: var(--bs-dark);
}

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

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

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

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

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

.btn-outline-dark{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-dark);
    --bs-btn-border-color: var(--bs-dark);

    --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 Float */

.btn-float{
    position: fixed;
    right: 15px;
    bottom: 15px;
    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: var(--bs-white);
    background: #25D366;
}
.btn-float-whatsapp:hover{
    background: var(--bs-white);
    color: #25D366;
}

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

.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;
}


/* Images > */
.image img{
	object-fit: cover;
}
.image.rounded img{
	border-radius: 15px;
}
.image.shadow img{
	box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.08);
}

@media screen and (min-width: 992px) {
	.image.rounded img{
		border-radius: 32px;
	}
}

/* Card */
.card{
	border: none;
	background-color: var(--bs-white);
	padding: 32px;
	box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.08);
}

/* Components > forms */

label{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
}
.bg-primary label,
.bg-dark label{
	color: var(--bs-white);
}

.required{
	color: #ff0000;
}

.form-select,
.form-control{
	line-height: 1.8em;
}

.form-select:focus,
.form-control:focus{
    box-shadow: none !important;
    border-color: var(--bs-dark);
}
textarea.form-control{
	border-radius: 15px;
}

/* Form checkbox */

.form-check{
	display: inline-block;
}

.form-check-input:focus{
	box-shadow: none;
}
.form-check-input:checked{
	background-color: var(--bs-dark);
	border-color: var(--bs-dark);
}

input[type="checkbox"] ~ label,
input[type="radio"] ~ label{
	margin: 0;
	font-weight: 400;
}

/* Form files */

.input-file-group{
	position: relative;
	display: block;
	padding: 30px 15px;
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	background-color: var(--bs-body-bg);
	border: var(--bs-border-width) dashed var(--bs-border-color);
	border-radius: 15px;
	cursor: pointer;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.input-file-group input{
	opacity: 0;
	width: 0;
}

.input-file-group .files{
	max-height: 100px;
	overflow: auto;
}
.input-file-group .files span{
	display: block;
	font-size: 12px;
	text-transform: uppercase;
}
.input-file-group:hover,
.input-file-group:focus{
	border-color: var(--bs-dark);
}

/* Forms > Show password */

.show_password{
	position: absolute;
	bottom: 0;
	right: 15px;
	padding: 15px;
}
.show_password.active,
.show_password:hover{
	color: #f58426;
}

/* Components > 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;
	}
}

#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);
}


/* Components > socialmedia */

.socialmedia h4{
	font-size: 18px;
	line-height: 24px;
}

ul.socialmedia{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: 5px;
	list-style: none;
}
ul.socialmedia li{
	display: inline-block;
	vertical-align: middle;
}
ul.socialmedia li a{
	display: block;
	font-size: 26px;
	padding: 5px;
}
ul.socialmedia li a:hover{
	color: var(--bs-primary);
}

@media screen and (min-width: 992px){	
	ul.socialmedia{
		justify-content: flex-start;
	}
	ul.socialmedia li a{
		font-size: 24px;
	}
}


/* Components > Slider > Swiper */

.slider{
	position: relative;
}

.swiper:has(.swiper-pagination){
    padding-bottom: 60px;
}
.swiper-pagination {
	bottom: 0;
}
.swiper-pagination-bullet{
	background: #ccc;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background:var(--bs-dark);
}

.swiper-button-prev,
.swiper-button-next{
	position: absolute;
	width: 45px;
	height: 45px;
    color: transparent;
}

.swiper-button-prev::after{
  content:'';
  position:absolute;
  inset:0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.7069 17.293L8.41394 13H17.9999V11H8.41394L12.7069 6.70697L11.2929 5.29297L4.58594 12L11.2929 18.707L12.7069 17.293Z'/%3E%3C/svg%3E") no-repeat center / 24px 24px;
          mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.7069 17.293L8.41394 13H17.9999V11H8.41394L12.7069 6.70697L11.2929 5.29297L4.58594 12L11.2929 18.707L12.7069 17.293Z'/%3E%3C/svg%3E") no-repeat center / 24px 24px;
  background-color: currentColor;
}
.swiper-button-next::after {
  content: '';
  position: absolute;
  inset: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.2931 6.70703L15.5861 11L6.00006 11L6.00006 13L15.5861 13L11.2931 17.293L12.7071 18.707L19.4141 12L12.7071 5.29303L11.2931 6.70703Z'/%3E%3C/svg%3E") no-repeat center / 24px 24px;
          mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.2931 6.70703L15.5861 11L6.00006 11L6.00006 13L15.5861 13L11.2931 17.293L12.7071 18.707L19.4141 12L12.7071 5.29303L11.2931 6.70703Z'/%3E%3C/svg%3E") no-repeat center / 24px 24px;
  background-color: currentColor;
}

/* Circle arrows */

.circle.swiper-button-prev,
.circle.swiper-button-next{
	width: 56px;
	height: 56px;
}
.circle.swiper-button-next,
.circle.swiper-button-prev{
	background-color: transparent;
	border: 1px solid var(--bs-dark);
	border-radius: 50%;
}
.circle.swiper-button-next:hover,
.circle.swiper-button-prev:hover{
	border-color: var(--bs-primary);
}

.swiper-button-prev, .swiper-button-next{ color: var(--bs-dark); }
.swiper-button-prev:hover, .swiper-button-next:hover{ color:#EA856E; }


.slider:has(.arrows.bottom){
	padding-bottom: 60px;
}
.arrows.bottom .circle.swiper-button-next,
.arrows.bottom .circle.swiper-button-prev{
	top: auto;
	bottom: 0;
}
.arrows.bottom .circle.swiper-button-prev {
	right: 75px;
	left: auto;
}

.slider:has(.arrows.bottom) .swiper-pagination{
	width: 50%;
	text-align: left;
}

@media screen and (min-width: 992px){
	.slider:has(.arrows.bottom){
		padding-bottom: 80px;
	}
}


/* Module Schedule */

.module-schedule .wrap {
	padding: 50px 20px 50px 20px;
	box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.08);
}

.module-schedule .filters {
    padding: 0 15px;
    white-space: nowrap;
    overflow: auto;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-bottom: 10px;
}
.module-schedule .filters li a {
    display: block;
    padding: 8px 22px;
    border: solid 1px var(--bs-dark);
    border-radius: 50px;
    position: relative;
}
.module-schedule .filters li a.active{
	background: var(--bs-dark);	
	color: var(--bs-light);
}


.schedule-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px 0; 
}

.schedule-scroll{
	min-height: 50vh;
	max-height: 60vh;
  	overflow-y: scroll;
}

.module-schedule .schedule-scroll::-webkit-scrollbar{
  width: 5px; 
}
.module-schedule .schedule-scroll::-webkit-scrollbar-track{
  background: #fff;
  border-radius: 0px;
}
.module-schedule .schedule-scroll::-webkit-scrollbar-thumb{
  background:  #C9C9C9;
  width: 6px;
  border-radius: 10px;
}

.schedule-grid .day-col{
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0; /* evita overflow */
}

.schedule-grid .day-head{
  	position: sticky;
  	top: 0; 
 	z-index: 1;
  	background: var(--bs-light);
  	text-transform: uppercase;
	text-align: center;
	color: #23211E;
	padding-bottom: 5px;
}

.module-schedule article {
	margin: 0 5px;
	color: var(--bs-white);
	border-radius: 16px;
	padding: 15.9403px;
	box-shadow: -1.6px 1.6px 6.4px rgba(0, 0, 0, 0.08);
}
.module-schedule article.is-hidden{
  display: none;
}


@media screen and (max-width: 991.99px){

	.module-schedule .filters {
		justify-content: flex-start;
		padding-right: 30px;
	}

	.schedule-scroll{
	    overflow-x: auto;
	    -webkit-overflow-scrolling: touch;
	    scroll-snap-type: x proximity; 
	  }
	  .schedule-grid{
	    grid-template-columns: none;      
	    grid-auto-flow: column;            
	    grid-auto-columns: min(85vw, 180px);/
	    gap: 8px;
	    width: max-content;               
	  }
	  .schedule-grid .day-col{
	    scroll-snap-align: start;
	  }

	.module-schedule article .time,
	.module-schedule article p{
		font-size: 12px;
	}
	.module-schedule article h4{
		font-size: 15px;
		margin-bottom: 3px;
	}
}



/**/

.module-schedule.slider .day {
	text-transform: uppercase;
	font-weight: 600;
	color: #23211E;
	margin-bottom: 20px;
	text-align: center;
}

.module-schedule.slider .swiper-button-prev, .module-schedule.slider .swiper-button-next{
	top: 10px;
}


/* Components > Title */

.title{
	position: relative;
	margin-bottom: 30px;
}

.title h1,
.title h2,
.title h3,
.title h4,
.title h5{
	margin: 0;
}

.title h1{
	font-size: 44px;
}
.title h2{
	font-size: 36px;
}
.title h3{
	font-size: 32px;
}
.title h4{
	font-size: 22px;
}
.title h5{
	font-size: 20px;
}
.title span{
	color: var(--bs-primary);
}
.title p:not(.subtitle){
	margin-top: 8px;
}

.title .btn{
	margin-top: 20px;
}
.title .subtitle{
	margin-bottom: 8px;
	text-transform: uppercase;
}

.title .description {
	font-size: 18px;
}
.title.lined{
	padding-bottom: 15px;
	border-bottom: 1px solid #262626;
}
.title.max-width{
	max-width: 800px;
}

.title.max-width-sm{
	max-width: 400px;
}
.title.max-width-lg{
	max-width: 992px;
}

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

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}

	.title h1{
		font-size: 80px;
	}
	.title h2{
		font-size: 44px;
	}
	.title h3{
		font-size: 44px;
	}
	.title h4{
		font-size: 24px;
	}
	.title h5{
		font-size: 22px;
	}
	.title p:not(.subtitle){
		font-size: 18px;
		margin-top: 24px;
	}

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

	.title .icon{
		margin-bottom: 32px;
	}
	.title .btn{
		margin-top: 32px;
	}

}

/* Components > Video Player */

.video-player{
	position: relative;
	width: 100%;
	padding: 25% 0;
	background: #000 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: var(--bs-primary);
	color: #fff;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
}
.video-player.active .play,
.video-player:hover .play{
	background: var(--bs-primary);
	color: #fff;
}
.video-player .play:hover{
	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;
	}
}*/

/* Components > Pagination */

.pagination {
	justify-content: center;
	width: 100%;
	padding: 60px 0 0;
	text-align: center;
}
.pagination .screen-reader-text {
	display: none;
}
.pagination .page-numbers {
	display: inline-block;
	vertical-align: middle;
	padding: 6px 12px;
	font-size: 18px;
}
.pagination .page-numbers:hover{
	color: var(--bs-primary);
}
.pagination .page-numbers.current{
	font-weight: bold;
	color: var(--bs-primary);
}

@media screen and (min-width: 992px) {
	.pagination .page-numbers {
		font-size: 22px;
	}
}


/* Components > Share */

.share  {
	margin: 40px 0;
    padding: 20px 0;
    border-top: solid 1px #36373A;
    border-bottom: solid 1px #36373A;
}
.share ul {
	display: flex;
	align-items: center;
	margin: 0;
}
.share ul li a{
	display: block;
	padding: 8px;
	font-size: 26px;
	color: var(--bs-primary);
}
.share ul li a:hover{
	color: var(--bs-secondary);
}

@media screen and (min-width: 992px){
	.share ul li a{
		font-size: 32px;
	}
}

/* Components > Errors */

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

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


/* Structure */

.section{
	position: relative;
	padding: 40px 0;
}

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

/* Structure > Header */

.header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);
	background: transparent;
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
}
.header > .container{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header .logo {
  display: inline-block;
  max-width: 180px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header:not(.fixed):not(.active) .logo{
	filter: brightness(10);
}

/*.header.fixed{
	position: fixed;
	min-height: var(--header-fixed-min-height);
	background: var(--bs-white);
	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.active{
	background: var(--bs-white);
}

/* Header > Navigation */

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

.header:not(.fixed):not(.active) .nav-menu .menu-line{
	background: var(--bs-white);
}

.header .navigation {
	display: none;
	position: absolute;
	top: var(--header-min-height);
	left: 0;
	width: 100%;
	margin: 0;
	background: var(--bs-white);
	height: calc(100dvh - var(--header-min-height));
}
.header.fixed .navigation {
	top: var(--header-fixed-min-height);
	height: calc(100dvh - var(--header-fixed-min-height));
}

.header .navigation .container{
	position: relative;
	height: 100%;
}

.header .navigation.active {
	display: block;
}
.header .navigation .menu {
	position: relative;
	height: 90%;
	align-content: center;
}
.header .navigation .menu li a {
	display: block;
	position: relative;
	font-size: 28px;
}
.header .navigation .menu li.current-menu-item a,
.header .navigation .menu li a:hover{
	color: var(--bs-primary);
}

.header .navigation ul.socialmedia{
	justify-content: flex-end;
}


@media screen and (min-width: 1200px){
	.header .navigation .menu {
		height: 100%;
	}

	.header .navigation .menu li a{
		font-size: 48px;
	}
	.header .navigation .menu li.menu-contact {
		position: absolute;
		bottom: 50px;
		left: 0;
	}

	.header .navigation .menu li.menu-contact a {
		font-size: 20px;
	}

	.header .navigation ul.socialmedia {
		position: absolute;
		bottom: 50px;
		right: 120px;
	}
}

/*.header .navigation .menu li.menu-contact a{
	padding: 8px 32px;
	color: var(--bs-white);
	background: var(--bs-primary);
	border: solid 1px var(--bs-primary);
	transition: 0.3s all;
}*/




/*@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: var(--bs-white);
	}

	.header .navigation ul li.open-submenu > ul{
		background: rgba(0,0,0,0.05);
	}
	.header .navigation ul li ul li a{
		padding-top: 6px;
		padding-bottom: 6px;
		font-size: 16px;
	}
}
*/



/*
	Modules
*/

/* Module > Presentation */

.presentation{
	position: relative;
	display: flex;
	align-items: center;
	height: 100dvh;
	min-height: 600px;
	padding: 30px 0;
	background: var(--bs-dark) no-repeat bottom;
	background-size: cover;
	color: var(--bs-white);
}


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


.presentation video{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.presentation:before {
  	content: '';
  	position: absolute;
  	width: 100%;
  	height: 100%;
  	top: 0;
  	left: 0;
	background: linear-gradient(0deg, rgba(35, 33, 30, 0.3), rgba(35, 33, 30, 0.3));
  	z-index: 1;
}
.presentation .title{
	position: relative;
	z-index: 2;
}

.presentation .title p:not(.subtitle){
    	font-size: 20px;
    }

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

    .presentation .title p:not(.subtitle){
    	font-size: 24px;
    }
	.presentation .arrow-down{
		bottom: 50px;
	}
}

@media screen and (max-width: 575.98px){
	.presentation p br{
		display: none;
	}
}


/* Modules > Banner */

.banner{
	position: relative;
	display: flex;
	align-items: center;
	background-color: var(--bs-dark);
	padding: 50px 0;
	min-height: 350px;
	overflow: hidden;
}
.banner .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bs-dark) no-repeat center;
	background-size: cover;	
	z-index: 1;
}
.banner .title{
	position: relative;
	max-width: 650px;
	margin: 0;
	color: var(--bs-white);
	z-index: 2;
}

.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;
}

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

	.banner .title p:not(.subtitle) {
    	font-size: 21px;
    }
}


/* Modules > Faqs */

.module-accordion .items{
	max-width: 770px;
	margin: 0 auto;
}
.module-accordion .items .item{
	position: relative;
	margin-bottom: 12px;
	border: solid 1px var(--bs-dark);
	padding: 20px 24px;
	border-radius: 32px;
}

.module-accordion .items .item .question{
	position: relative;
	display: block;
	font-size: 16px;
	padding-right: 25px;

}
.module-accordion .items .item .question:after {
    content: '+';
    position: absolute;
    top: calc(50% - 10px);
    right: 0px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.module-accordion .items .item .question[aria-expanded="true"]{
	
}
.module-accordion .items .item .question[aria-expanded="true"]:after{
	content: '-';
}

.module-accordion .items .item .answer{
	margin-top: 15px;
}

.module-accordion .items .item .answer a {
	text-decoration: underline;
}

.module-accordion .items .item .answer a:hover {
	color: var(--bs-primary);
}

.module-accordion .items .item .answer .data {
	max-width: 980px;
}

@media screen and (min-width: 992px) {
	.module-accordion .items .item .question{
		font-size: 18px;
	}
	.module-accordion .items .item .question:after {
		right: 20px;
	}

}



/*
	Pages
*/


/* Page > Home */

.page.home .space {
	background: var(--bs-light) url(assets/img/others/shape-space.svg) no-repeat center bottom;
    background-size: 100%;
}


.page.home .space .items {
	position: relative;
	padding-bottom: 80px;
}
.page.home .space .items .item-1{
	position: absolute;
	top: 50%;
	left: -20px;
}
.page.home .space .items .item-3{
	position: absolute;
	top: 20%;
	right: -20px;
}

@media screen and (min-width: 992px) {
	.page.home .space {
		background-size: 60%;
	}
	.page.home .space .items .item-1{
		top: 350px;
		left: 0;
	}
	.page.home .space .items .item-3{
		right: 0;
	}
}

@media screen and (max-width: 575.98px){
	.page.home .space .title h3 br{
		display: none;
	}
}

/**/

.page.home .services ul.nav {
    margin: 0 -15px;
    padding: 0 15px;
    white-space: nowrap;
    overflow: auto;
    display: flex;
    justify-content: center;
}
.page.home .services ul.nav li a {
    display: block;
    padding: 11px 20px;
    position: relative;
    border: solid 1px var(--active-color); 
    color: var(--active-color); ;
}
.page.home .services  ul.nav li a.active{
	background: var(--active-color); 
	color: var(--bs-white);
}
.page.home .services  ul.nav li:first-child a {
	border-radius: 100px 0 0 100px;
}
.page.home .services  ul.nav li:last-child a {
	border-radius: 0 100px 100px 0;
}


.page.home .services .slider .wrap{
	background: #EFEFE8;
	box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.08);
	border-radius: 32px;
	padding: 25px 20px;
}
.page.home .services .slider .swiper{
	overflow: visible;
}

.page.home .services .slider .image img{
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	width: 530px;
	max-width: 100%;
	float: right;
}

.page.home .services .slider .data h2,
.page.home .services .slider .data h4{
	color: var(--item-color);
}
.page.home .services .slider .data h4{
	font-size: 16px;
}

.page.home .services .slider .data .items ul{
	padding-inline-start: 20px;
	margin-bottom: 0;
}
.page.home .services .slider .data .items p{
	margin-bottom: 0;
}
.page.home .services .slider .data .items .item{
	margin-bottom: 20px;
}

.page.home .services .slider .image {
	display: inline-block;
	position: relative;
}

@media screen and (min-width: 992px){
	.page.home .services .slider .wrap{
		padding: 50px 25px;
	}
	.page.home .services .slider .data .items {
		column-count: 2;
	}
	.page.home .services .slider .data .items .item {
	  break-inside: avoid; 
	}
}

.page.home .services .slider .image .shape {
	content: '';
	position: absolute;
}
.page.home .services .slider .image .shape.bottom{
	width: 150px;
	height: 118px;
	background: url('assets/img/others/shape-services-bottom-01.svg') no-repeat center;
    background-size: contain;
    bottom: 0;
    right: 0;
}
.page.home .services #service-1 .image .shape.top{
	width: 505px;
	height: 412px;
	background: url('assets/img/others/shape-services-top-01.svg') no-repeat center;
    background-size: contain;
    top: -8%;
    left: -24%;
}

.page.home .services #service-2 .image .shape.bottom{
	right: auto;
	left: 0;
}

.page.home .services #service-2 .image .shape.top{
	width: 280px;
	height: 280px;
	background: url('assets/img/others/shape-services-top-02.svg') no-repeat center;
    background-size: contain;
    top: -10%;
    right: -10%;
}

@media screen and (max-width: 991px){
	.page.home .services .slider .image .shape{
		max-width: 70%;
		max-height: 70%;
	}

	.page.home .services .slider .image .shape.bottom{
		max-width: 40%;
		max-height: 40%;
	}
}


.page.home .packs .swiper-wrapper{
  align-items: stretch !important;
  justify-content: center;
}

.page.home .packs .swiper-slide{
  display: flex !important;
}

.page.home .packs .swiper-slide article.card{
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.page.home .packs .swiper-slide article.card .title{
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 260px;
  align-items: center;
}

.page.home .packs .swiper-slide article.card .title h2{
	font-size: 32px;
}

.page.home .packs .swiper-slide article.card .title p:not(.subtitle){	
	font-size: 16px;
	margin-top: 10px;
}

.page.home .packs .swiper-slide article.card .btn{
  margin-top: auto;
}

.page.home .packs .items article .price{
	font-weight: 700;
}


.page.home .benefits .items .image-1,
.page.home .benefits .items .image-3 {
	margin-top: 50px;
}
.page.home .benefits .title,
.page.home .benefits .items .image-4,
.page.home .benefits .items .image-6 {
	margin-top: -50px;
}
@media screen and (max-width: 991.99px){
	.page.home .benefits .title{
		margin: 20px 0 80px 0;
	}
}



.page.home .gallery .swiper-wrapper {
    transition-timing-function: linear !important;
}

.page.home .slider-top  { direction: rtl; }

.page.home .slider-top .swiper-wrapper {
  display: flex;
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}


/* Pages > Thanks */

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

/* Pages > Internal */

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

/* Pages > Page 404 */

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

.page.page-maintenance .content{
	min-height: 100vh;
}


/* Structure > Footer */
.footer a{
	display: block;
}
.footer a:hover{
	color: var(--bs-primary);
}
.footer .widgets{
	padding: 50px 0;
	text-align: center;
}
.footer .widgets .logo{
	display: block;
	width: 180px;
	margin: 0 auto;
	margin-bottom: 40px;
}
.footer .widgets .menu{
	margin: 0 0 30px;
}
.footer .widgets .menu li a{
	display: block;
	padding: 3px;
	font-size: 18px;
}
.footer .copyright {
	margin-top: 40px;
	padding-top: 32px;
	border-top: solid 1px var(--bs-dark);
	font-family: 'Roboto', sans-serif;
}
.footer .copyright p{
	margin: 0;
	font-size: 14px;
}
@media screen and (min-width: 992px){
	.footer .widgets{
		padding: 80px 0 40px 0;
		text-align: left;
	}
	.footer .widgets .logo{
		margin: 0 0 40px;
	}	
}