/*
Theme Name: Animoonda
Theme URI: https://bellop.io
Version: 1.0
Author: bellop.io
Author URI: https://bellop.io
*/

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

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

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

    --bs-body-color: #004177;
    --bs-body-bg: #fff;

	--bs-primary: #004177;
	--bs-primary-rgb: 0, 65, 119;
	--bs-secondary: #def045;
	--bs-secondary-rgb: 222, 240, 69;

    --bs-white: #fff;
    --bs-light: #f2f6f8;

	--bs-black: #000;
    --bs-dark: #151515;
	--bs-gray: #cacaca;
	--bs-border-radius: 20px;
}

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

/* Animate */

@keyframes bounce{
	0% { transform: translate(0, 0); }
	50% { transform: translate(0, -100%); }
	100% { transform: translate(0, 0); }
}
@keyframes dropDown{
    0% {transform: scaleY(0);}
    80% {transform: scaleY(1.1);}
    100% {transform: scaleY(1);}
}
@keyframes slideInDown{
	from {transform: translate3d(0, -100%, 0);visibility: visible;}
	to {transform: translate3d(0, 0, 0);}
}
@keyframes fadeIn{
  from { opacity: 0; transform: translate3d(0, 10px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInUp{
	from { opacity: 0; transform: translate3d(0, 40px, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInLeft{
	from { opacity: 0; transform: translate3d(-40px, 0, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInRight{
	from { opacity: 0; transform: translate3d(40px, 0, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes zoomInUp {
	from { opacity: 0.8; transform: scale(1.15,1.15) rotate(.01deg); }
	to { opacity: 1; transform: scale(1, 1) rotate(.01deg); }
}

.wow{
	visibility: hidden;
	opacity: 0;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(.25, .1, .25, 1);
	animation-play-state: paused;
	will-change: opacity, transform;
}
.wow.slow{
	animation-duration: 6s;
}
.wow.fadeIn{
	animation-duration: 1.3s;
	transform: translate3d(0, 8px, 0);
}
.wow.is-visible{
	visibility: visible;
	animation-play-state: running;
}

.fadeIn{ animation-name: fadeIn; }
.fadeInUp{ animation-name: fadeInUp; }
.fadeInLeft{ animation-name: fadeInLeft; }
.fadeInRight{ animation-name: fadeInRight; }
.zoomInUp{ animation-name: zoomInUp; }

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

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

/* 3. Structure */

html{
	scroll-behavior: smooth;
}

body{
	font-size: 16px;
	font-weight: 300;
	font-family: 'Tiempos Headline', serif;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6{
	font-weight: 300;
	line-height: 1.2em;
	letter-spacing: -0.02em;
}

@media screen and (min-width: 992px) {
	h1, h2, h3, h4, h5, h6{
		line-height: 1em;
		letter-spacing: -0.03em;
	}
}

h1 { font-size: 30px; }
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: 40px; }
	h3 { font-size: 26px; }
	h4 { font-size: 22px; }
	h5 { font-size: 20px; }
	h6 { font-size: 18px; }
}

b, strong {
    font-weight: 700;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

.ratio-4x3 {
	aspect-ratio: 4 / 3;	
}
.ratio-4x3 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 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% {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
	}
	50% {
		transform: translate(0, -100%);
		-webkit-transform: translate(0, -100%);
		-moz-transform: translate(0, -100%);
	}
	100% {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
	}          
}

/* Structure > extras */

.animated{
	will-change: opacity, transform;
}

.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{
	min-width: 150px;
	--bs-btn-padding-x: 30px;
	--bs-btn-padding-y: 10px;
	--bs-btn-font-weight: 500;
	border-radius: 0;
	font-family: 'Mars Extended Regular', sans-serif;
	text-transform: uppercase;
}
.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-white);
    --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: 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: 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);
}

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


/* Buttons Float */

.btn-float{
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-align: center;
    z-index: 9999;
    border-radius: 25px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
}
.btn-float-edit{
	left: 30px;
	right: auto;
	bottom: 15px;
    padding: 10px 15px;
    font-weight: 500;
    color: #fff;
    background: rgba(0,0,0,0.75);
    opacity: 0.95;
}
.btn-float-edit:hover{
    background: var(--bs-primary);
    color: #fff;
}

.btn-float-whatsapp{
    width: 50px;
    height: 50px;
	border-radius: 50%;
	font-size: 32px;
    color: #fff;
    background: #25D366;
}
.btn-float-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

@media screen and (min-width:768px){
	.btn-float-whatsapp{
	    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;
}


/* Structure */

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

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

/* Structure > Header */

.header{
	visibility: hidden;
}


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

.slider{
	position: relative;
}

/* Components > Slider > Swiper */

.slider.swiper:has(.swiper-pagination){
    padding-bottom: 60px;
}
.slider.swiper .swiper-pagination {
	bottom: 0;
}
.slider.swiper .swiper-pagination-bullet{
	background: var(--bs-primary);
	opacity: 0.3;
}
.slider.swiper .swiper-pagination-bullet-active {
	opacity: 1;
}

.slider.swiper .swiper-button-next,
.slider.swiper .swiper-button-prev{
	position: absolute;
	width: 45px;
	height: 45px;
    color: transparent;
    background-image: url('assets/img/icons/icon-arrow-prev.svg');
    background-repeat: no-repeat;
    background-position: center;
   	background-size: contain;
}
.slider.swiper .circle.swiper-button-next,
.slider.swiper .circle.swiper-button-prev{
	border: 1px solid var(--bs-dark);
	border-radius: 50%;
}
.slider.swiper .swiper-button-next { background-image: url('assets/img/icons/icon-arrow-next.svg'); }

.slider.swiper .swiper-button-prev:after,
.slider.swiper .swiper-button-next:after{
	content: none;
}



/* Components > Title */

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

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

.title h1{
	font-size: 30px;
}
.title h2{
	font-size: 28px;
}
.title h3{
	font-size: 32px;
}
.title h4{
	font-size: 22px;
}
.title h5{
	font-size: 20px;
}

.title p{
	margin: 0;
	margin-top: 8px;
}

.title .btn{
	margin-top: 20px;
}
.title .subtitle{
	font-family: 'Mars Extended Regular', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 16px;
}

.title .description {
	font-size: 17px;
}
.title.lined{
	padding-bottom: 15px;
	border-bottom: 1px solid #262626;
}
.title.max-width{
	max-width: 750px;
}
.title.max-width-lg{
	max-width: 992px;
}

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title h1{
		font-size: 70px;
	}
	.title h2{
		font-size: 67px;
	}
	.title h3{
		font-size: 66px;
	}
	.title h4{
		font-size: 24px;
	}
	.title h5{
		font-size: 22px;
	}
	.title p{
		margin-top: 12px;
	}

	.title .subtitle{
		font-size: 26px;
	}
	.title .description {
		font-size: 19px;
	}
	.title .btn{
		margin-top: 50px;
	}
}

@media screen and (max-width: 768px){
	.title .subtitle br {
		display: none;
	}
}

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



/* Components > Errors */

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

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



/*
	Modules
*/

/* Module > Presentation */

.presentation{
	position: relative;
	min-height: 600px;
	padding: 30px 0;
	background: #fff no-repeat bottom;
	background-size: cover;
}
.presentation .container{
	position: relative;
	z-index: 2;
}

.presentation .logo {
	height: 80svh;
	display: flex;
	justify-content: center;
	padding-top: 15svh;
}
.presentation .logo h1{
	font-family: 'Mars Extended Regular', sans-serif;
	text-transform: uppercase;
	font-size: 16px;
	text-align: center;
    letter-spacing: 0.2em;
}

.presentation .logo h1 span{
	font-family: "Bodoni Moda", serif;
    font-weight: 400;
	font-style: italic;
	font-size: 98px;
	line-height: 110px;
	background: url('assets/img/logo-shape.png') no-repeat center;
	background-size: contain;
	font-weight: 400;
	letter-spacing: 0;
}

.presentation .logo img{
	max-width: 413px;
}

.presentation .title {
	height: 20svh;
	text-align: center;
}

.presentation video{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
	opacity: 0.6;
    transform: rotate(-1deg) scale(1.1);
}

.presentation video::-webkit-media-controls {
    display: none !important;
}

/* Password */
.presentation.is-password .logo {
	height: 60svh;
}

.presentation.is-password .title {
	height: 40svh;
}
.presentation .form{
	max-width: 768px;
	margin: 0 auto;
}
.presentation form{
	position: relative;
	width: 100%;
	transition: 0.3s all;
}
.presentation form .wrap{
	position: relative;
}

.presentation form input{
	display: block;
	width: 100%;
	border: none;
	box-shadow: none;
}
.presentation form input[type="password"]{
	font-size: 24px;
	max-width: 500px;
	line-height: 30px;
	padding: 17px 0;
	margin: 0 auto;
	border: 0;
	text-align: center;
	background: transparent;
	border-bottom: 2px solid var(--bs-primary);
	border-radius: 0;
}

.post-password-form input[type="password"]:focus,
.post-password-form input[type="password"]:active,
.post-password-form input[type="password"]:hover,
.post-password-form input[type="password"]:focus-visible{
    outline: none;
    box-shadow: none;
    border-color: var(--bs-primary);
    background: transparent;
    color: var(--bs-primary);
}

.presentation form input::placeholder{
	color: var(--bs-body-color);
}

.presentation form input.is-invalid{
	background: rgba(220,53,69,0.5);
}
.presentation form input.is-invalid ~ .alert-danger{
	position: absolute;
	top: -39px;
	left: 0;
	right: 0;
}

@media screen and (min-width: 992px) {
	.presentation .logo h1{
		height: 100svh;
		font-size: 20px;
	}

	.presentation .logo h1 span{
		font-size: 140px;
		line-height: 170px;
	}
	.presentation .title {
		height: 40svh;
		text-align: center;
	}
	.presentation form input[type="password"]{
		font-size: 50px;
	}

}


/* 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%;
	z-index: 1;
}
.banner .bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner .title{
	position: relative;
	max-width: 650px;
	margin: 0;
	color: var(--bs-white);
	z-index: 2;
}


/* Page > Home */

.page.home .video.about video{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

@media screen and (min-width: 992px){
	.page.home .video.about video{
		aspect-ratio: 2.5 / 1;
	}
}


.page.home .location .images{
	position: relative;
}
.page.home .location .image-1 img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: 100%;
	border-radius: 50px;
}
.page.home .location .image-2{
	position: absolute;
    transform: rotate(-10deg);
    top: 45%;
    left: -30px;
    padding: 10px 10px 30px 10px;
    box-shadow: 0 0 9px 4px rgb(0 0 0 / 24%);
    max-width: 180px;
    background: #fff;
}

.page.home .location .image-extra{
	position: absolute;
    right: -50px;
    top: -90px;
    width: 120px;
    transform: rotate(113deg);
    z-index: 1;
}

@media screen and (min-width: 992px){
	.page.home .location .image-extra{
	    top: -180px;
	    width: 200px;
	}

	.page.home .location .image-2{
	    top: 40%;
	    left: -120px;
	    max-width: 280px;
	}
}


.page.home .agenda .items {
	max-width: 1200px;
	margin: 0 auto;
}
.page.home .agenda .items .item{
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.page.home .agenda .items .item h4{
	font-size: 32px;
    margin: 0;
}
.page.home .agenda .items .item .hour{
	min-width: 25%;
}

.page.home .agenda .images{
	position: relative;
}
.page.home .agenda .images .image img{
	aspect-ratio: 0.8 / 1;
	object-fit: cover;
	width: 100%;
	border-radius: 20px;
}

.page.home .agenda .image.mobile  img{
	aspect-ratio: 2 / 1;
	object-fit: cover;
	width: 100%;
	object-position: right center;
}


.page.home .agenda .images .image-extra{
	position: absolute;
	bottom: -15%;
	width: 220px;
	max-width: 20%;
}

.page.home .agenda .images .image-extra.image-1{
	left: 30%;
}
.page.home .agenda .images .image-extra.image-2{
	left: 56%;
}

@media screen and (min-width: 992px){
	.page.home .agenda .items .item{
		flex-direction: row;
		margin-bottom: 0;
	}
	.page.home .agenda .items .item h4{
		font-size: 65px;
	}
	.page.home .agenda .images .image img{
		border-radius: 50px;
	}
}



.page.home .pack .image{
	max-width: 400px;
	margin: 0 auto;
}

.page.home .team .items article img {
    aspect-ratio: 1 / 1;
    max-width: 180px;
    object-fit: cover;
}

@media screen and (min-width: 992px){
	.page.home .team .items article img {
	    max-width: 220px;
	    padding: 10px 0;
	}
}

.page.home .image-full {
	aspect-ratio: 2 / 1;
	overflow: hidden;
}

.page.home .image-full img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


@media screen and (min-width: 992px){
	.page.home .image-full{
		aspect-ratio: 3 / 1;
	}
}



/* 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 .widgets {
	background: #e4007c;
	padding: 30px 0;
}
.footer .widgets .logo{
	display: block;
	width: 90px;
	margin: 0 auto;
}


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


