/*
Theme Name: Animo Summit
Theme URI: miamianimosummit.com
Version: 1.0
Author: bellop.io
Author URI: https://bellop.io
*/

body {
	font-family: "Tiempos Headline", serif;
	font-size: 15px;
	letter-spacing: -.063em;
	line-height: 1.05;
	color: #000;
	background: #fafbf3;
	font-weight: 300;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}


.wow {
	visibility: hidden;
	opacity: 0;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(.25, .1, .25, 1);
}
.wow.is-visible {
	visibility: visible;
	opacity: 1;
	animation-name: var(--wow-animation, none);
}
.wow.slow { animation-duration: 6s; }
.wow.fadeIn { --wow-animation: fadeIn; }
.wow.fadeInUp { --wow-animation: fadeInUp; }
.wow.fadeInDown { --wow-animation: fadeInDown; }
.wow.fadeInLeft { --wow-animation: fadeInLeft; }
.wow.fadeInRight { --wow-animation: fadeInRight; }

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes fadeInUp {
	from { opacity: 0; transform: translate3d(0, 40px, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInDown {
	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); }
}
@media (prefers-reduced-motion: reduce) {
	.wow {
		visibility: visible;
		opacity: 1;
		animation: none !important;
		transform: none !important;
	}
}

.overh {
	overflow: hidden;
}

*:focus {
	outline: none !important;
}

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

h1, h2, h3, h4, h5, h6{
	font-family: 'Mars Condensed Regular';
	line-height: 1em;
	letter-spacing: -.055em;
	margin-bottom: 0;
}

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

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

	h1 { font-size: 42px; }
	h2 { font-size: 30px; }
	h3 { font-size: 36px; }
	h4 { font-size: 24px; }
	h5 { font-size: 18px; }
	h6 { font-size: 18px; }
}

/* Framework */

.main {
	width: 100%;
	min-height: 500px;
	overflow: hidden;
}

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

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


/* Bootstrap defaults */



.bg-primary{
	background-color: #002F49 !important;
}

.bg-secondary{
	background-color: #DEF045 !important;
}

.bg-gray{
	background-color: #FBFBFB !important;
}

.bg-light {
	background-color: #F2F0E6 !important;
}


/* Text */

.text-primary{
	color: #202F5A !important;
}

.text-light {
	color: #F2F0E6 !important;
}

/*Colors*/
.text-red{
	color: #F0364D;
}
.text-light-blue {
	color: #6DA7E0;
}
.text-green {
	color: #18A563;
}
.text-yellow {
	color: #FBC904;
}
.text-pink {
	color: #F897AF;
}
.text-blue {
	color: #2A4974;
}

/* Form */

label{
	font-size: 15px;
}
.form-control{
	min-height: 46px;
	background: #fff;
	color: #fff;
	border-radius: 0;
	font-size: 15px;
	appearance: none;
	-webkit-appearance: none;
	border: solid 0.5px #000;
}
textarea.form-control{
	border-radius: 25px;
}

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


.input-file-wrapper{
	position: relative;
	display: block;
	padding: 8px 16px;
	text-align: center;
	background: rgba(92,136,31,0.20);
	border-radius: 25px;
	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: #ED6926;
}
.input-file-wrapper:hover{
	background: #fff;
	border-color: #80bdff;
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Buttons */

.btn{
	font-family: 'Mars Extended Regular';
    min-width: 260px;
    padding: 5px 22px;
   	font-size: clamp(16px, 1.76vw, 24px);
	letter-spacing: -.063em;
    border-width: 2px;
    border-radius: 100px;
    text-transform: uppercase;
}
.btn.focus,
.btn:focus,
.btn:not(:disabled):not(.disabled).active:focus,
.btn:not(:disabled):not(.disabled):active:focus{
	box-shadow: none !important;
}

.btn-rsvp{
	display: inline-flex;
	align-items: center;
	text-transform: uppercase;
	text-decoration: underline;
}
.btn-rsvp i{
	margin-left: 15px;
	transition: 0.3s all;
}
.btn-rsvp:hover i{
	margin-left: 20px;
}

.btn-rsvp .arrow{
	display: inline-block;	
	content: '';
    width: 30px;
    height: 14px;
    background: url(assets/img/icons/icon-btn-rsvp.svg) no-repeat center;
    background-size: contain;
    margin-left: 10px;
    transition: all 0.3s;
}

.btn-rsvp:hover .arrow{
	margin-left: 15px;
}

.go-back {
	cursor: pointer;
}

.btn .arrow{
	display: inline-block;
	content: '';
    width: 30px;
    height: 14px;
    background: url(assets/img/icons/icon-btn-rsvp.svg) no-repeat center;
    background-size: contain;
    margin-left: 10px;
    transition: all 0.3s;
    filter: invert(10%) sepia(99%) saturate(1979%) hue-rotate(182deg) brightness(95%) contrast(101%);
}


.btn-primary{
    background: #def045;
    color: #000;
    border-color:  #def045;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not([disabled]):not(.disabled):active {
	color:  #def045;
	background: transparent;
	border-color:  #def045;
}

.btn-outline-primary{
    color:  #def045;
    border-color:  #def045;

}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:not([disabled]):not(.disabled):active{
	color: #000;
	background:  #def045;
	border-color: #def045;
}


.btn-dark{
    background: #233057;
    border-color: #233057;
}
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:not([disabled]):not(.disabled):active {
	color: #233057;
	background: #fff;
	border-color: #233057;
}

.btn-outline-dark{
    color: #233057;
    border-color: #233057;

}
.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:not([disabled]):not(.disabled):active{
	color: #fff;
	background: #233057;
	border-color: #233057;
}



.btn-light{
    background: #fff;
    border-color: #fff;
    color: #233057;
}
.btn-light:hover,
.btn-light:focus,
.btn-light:not([disabled]):not(.disabled):active {
	color: #fff;
	background: transparent;
	border-color: #fff;
}


.btn-outline-light{
    color: #DDEF45;
    border-color: #DDEF45;

}
.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:not([disabled]):not(.disabled):active{
	color: #002F49;
	background: #DDEF45;
	border-color: #DDEF45;
}

.btn.btn-outline-light .arrow{
	filter: invert(92%) sepia(91%) saturate(615%) hue-rotate(9deg) brightness(103%) contrast(87%);
	transition: none;
}

.btn.btn-outline-light:hover .arrow{
	filter: invert(10%) sepia(99%) saturate(1979%) hue-rotate(182deg) brightness(95%) contrast(101%);
}


.btn-outline-white{
    color: #fff;
    background: transparent;
    border-color: #fff;

}
.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:not([disabled]):not(.disabled):active{
	color: #002F49;
	background:  #fff;
	border-color:  #fff;
}
.btn-outline-white .arrow{
	filter: invert(1);
	transition: none;
}
.btn-outline-white:hover .arrow{
	filter: invert(14%) sepia(14%) saturate(7172%) hue-rotate(176deg) brightness(94%) contrast(101%);
}

/* Header */

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 75px;
	color: #fff;
	background: transparent;
	transition: 0.3s all;
	z-index: 9999;
}
.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	max-width: 112px;
}

/*.header .information{
	margin: 10px 0 0;
	font-size: 12px;
	line-height: 18px;
	font-weight: 500;
	color: #fff;
	letter-spacing: -0.25px;
}*/


.header.fixed{
	position: fixed;
    -webkit-animation: fadeInDown 0.5s ease-out;
    -moz-animation: fadeInDown 0.5s ease-out;
    box-shadow: 0 4px 10px 0 rgb(0 0 0 / 5%);
}
.header.fixed:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background-color: rgba(255,255,255,0.72);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
}
.header.fixed .information{
	color: #233057;
	z-index: 2;
}

@media screen and (min-width: 420px){
	.header .information{
		font-size: 14px;
		line-height: 17px;
	}
}
@media screen and (min-width: 768px){
	.header .information{
		font-size: 16px;
		line-height: 18px;
	}
}
@media screen and (min-width: 992px){
	.header .information{
		font-size: 18px;
		line-height: 21px;
	}
	.header .logo{
		margin-bottom: -15px;
	}
	.header:not(.fixed){
		height: 165px;
	}
	.header:not(.fixed) .logo{
		max-width: 224px;
	}



}

@media screen and (max-width: 992px) {
	.header .navigation {
		width: auto;
		margin: 0 -15px;
	}
	.header .navigation ul li:hover a {
		background: #eee;
	}
}

/* Title */

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

.title h1{
	letter-spacing: -.05em;
	font-size: clamp(56px, 12.1vw, 165px);
}
.title h2{
	font-size: clamp(48px, 8.6vw, 117px);
	line-height: .97;
}
.title h3{
	font-size: clamp(60px, 10vw, 117px);
	line-height: .97;
}
.title h4{
	font-size: 22px;
}
.title p{
	font-size: clamp(21px, 1.8vw, 30px);	
	margin: 0;
	margin-top: 16px;
}

.title .icon{
	margin-bottom: 15px;
}
.title .subtitle{
	font-family: 'Mars Extended Regular';
	font-weight: 400;
	text-transform: uppercase;
	font-size: clamp(16px, 1.76vw, 24px);
	margin-bottom: 10px;
}
.title .btn{
	margin-top: 50px;
}

.title.max-width{
	max-width: 660px;
}

.title .description{
	font-size: clamp(28px, 4.4vw, 60px);
	letter-spacing: -.05em;
}

.title .space-bottom{
	padding-bottom: 120px;
}



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

	.title .space-bottom{
		padding-bottom: 200px;
	}

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

/* Modules */

.banner {
	position: relative;
	padding: 80px 0;
}
.banner video {
    width: 100%;
   	aspect-ratio:  1 / 1.2;
    object-fit: cover;
}

.banner .title {
	margin-bottom: 50px;
}

.banner .title h1{
	letter-spacing: -.05em;
	font-size: clamp(56px, 12.1vw, 165px);
}	

@media screen and (min-width: 992px){
	.banner {
		padding: 100px 0;
	}	
	.banner video {
		aspect-ratio: 1.76 / 1;
	}
}

@media screen and (max-width: 580px){
	.banner video{
		width: calc(100% + 30px);
		margin: 0 -15px;
	}
}

/* */

.icon-arrow-right-blue{
	display: inline-block;
	vertical-align: middle;
	width: 30px;
	height: 20px;
	background: url('assets/img/icons/icon-arrow-right-blue.svg') no-repeat center;
	background-size: contain;
}
.icon-arrow-right-white{
	display: inline-block;
	vertical-align: middle;
	width: 30px;
	height: 20px;
	background: url('assets/img/icons/icon-arrow-right-white.svg') no-repeat center;
	background-size: contain;
}

/* */

.section{
	position: relative;
	padding: 50px 0;
	background-repeat: no-repeat;
    background-position: center;
   	background-size: cover;
}

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


/* Shapes */

.shape{
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
}
.shape ~ .container{
	position: relative;
	z-index: 2;
}
.shape.left{
	left: 0;
	background-position: top left;
}
.shape.right{
	left: auto;
	right: 0;
	background-position: top right;
}
.shape.top{
	top: 0;
}

@media screen and (max-width: 1360px){
	.shape{
		background-size: 60%;
	}
}
@media screen and (max-width: 992px){
	.shape{
		background-size: 30%;
	}
}


/* Module > Presentation */



.presentation{
	position: relative;
	display: flex;
	align-items: flex-start;
	padding: 70px 0;
	min-height: 400px;
	height: 100svh;
	background: #002F55 no-repeat bottom;
	background-size: cover;
}

.presentation:before{
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	width: 100vw;
	height: 100%;
	/*background: linear-gradient(0deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), rgba(19, 19, 19, 0.1);*/
	z-index: 2;
}
.presentation .logo{
	max-width: 200px;
	margin: 0 auto;
}

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

.video-autoplay-fallback {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 12;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transform: translate(-50%, -50%);
	padding: 12px 18px;
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 999px;
	background: rgb(0 0 0 / 25%);
	color: #fff;
	font: inherit;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	font-family: 'Mars Extended Regular';
}

.video-autoplay-fallback[hidden] {
	display: none !important;
}

.video-autoplay-fallback span {
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 11px solid currentColor;
}

.video-autoplay-fallback strong {
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}

.video-autoplay-fallback:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.presentation .title{
	text-align: center;
	margin: 0;
	z-index: 2;
	min-height: 55svh;
}

.presentation .title h1{
	font-size: clamp(68px, 12.1vw, 165px);
}

.presentation .form-title{
	position: relative;
	z-index: 2;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

/*.page.landing .presentation:before{
	background: rgb(0 47 73 / 70%);
}*/

.home .presentation .form.enabled{
	opacity: 1;
	z-index: 10;
}
.home .presentation .form.enabled ~ .title .description{
	opacity: 0;
}
.home .presentation .form{
	opacity: 0;
	z-index: -10;
	position: relative;
	max-width: 500px;
	margin: 0 auto;	
	/*width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;*/
	
	/*background: rgb(0 47 73 / 70%);*/
	transition: 0.3s all;
	text-align: center;
}


.presentation .subtitle{
	font-family: 'Mars Extended Regular';
	text-transform: uppercase;	
	margin: 0;
	font-size: clamp(16px, 1.76vw, 24px);
}
.presentation form{
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	transition: 0.3s all;
}

.presentation form .label{
	position: relative;
	display: block;
	width: 100%;
	font-size: clamp(28px, 4vw, 46px);
	padding: 10px 0;
	margin: 0;
	color: #000;
	border-bottom: 2px solid #000;
	cursor: pointer;
	max-width: 500px;
	margin: 0 auto;
}
.presentation form .label i{
	position: absolute;
	top: calc(50% - 11px);
	right: 5px;
	display: inline-block;
	vertical-align: middle;
	width: 32px;
	height: 18px;
	background: url('assets/img/icons/icon-select-down.svg') no-repeat center;
	background-size: contain;
	transition: 0.3s all;
}
.presentation form.active .label i{
	transform: rotate(-90deg);
}
.presentation form .description{
	transition: 0.3s all;
}

.presentation form input{
	display: block;
	width: 100%;
	font-size: clamp(28px, 4vw, 46px);
	padding: 8px 0;
	margin: 0;
	border: 0;
	text-align: center;
	color: #000;
	background: transparent;
	border-bottom: 2px solid #000;
	border-radius: 0;
	appearance: none;
	-webkit-appearance: none;
}
.presentation form input::placeholder{
	color: #000;
}

.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;
}
.presentation form .options{
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	/*background: #233057;
	box-shadow: 4px 4px 10px -3px rgba(32,47,90,0.57);*/
	transition: 0.3s all;
	z-index: 3;
	max-width: 500px;
}
.presentation form.active ul{
	display: block;
    -webkit-animation: fadeIn 0.1s ease-out;
    -moz-animation: fadeIn 0.1s ease-out;
}
.presentation form .options li a{	
	display: block;
	padding: 10px 15px;
	font-size: 24px;
	text-align: center;
	background: #fff;
	border-bottom: 1px solid #000;
}
.presentation form .options li:last-child a{
	border-bottom: none;
}
.presentation form .options li a:hover{
	background: #DEF045;
}



/* Module > Day */

/*
.day{
	padding: 50px 0 0;
	color: #fff;
}*/

.day{
	padding-bottom: 0;
}

.day.bg-primary {
	color: #fff;
}

.day.bg-light .icon-arrow-right-white{
	background: url('assets/img/icons/icon-arrow-right-blue.svg') no-repeat center;
	background-size: contain;
}
.day .title{
	margin-bottom: 30px;
}

.day .title .subtitle{	
	font-size: 18px;
	text-transform: uppercase;
}
.day .title h3, .program .main_title h3{	
    text-transform: uppercase;
    font-size: clamp(42px, 8.6vw, 117px);
    line-height: .97;
	letter-spacing: -.055em;
}

.schedule .description, .day .description {
	font-size: clamp(28px, 1.8vw, 30px);
	line-height: 1.2;
	/*max-width: 470px;*/
}

@media screen and (min-width: 992px){
	.day{
		padding: 120px 0;
	}
	.day .title .subtitle, .program .main_title .subtitle{
		font-size: 30px;
		letter-spacing: -0.5px;
	}

	.day.welcome-dinner .title h3 {
		font-size: 45px;
		line-height: 48px;
	}
}


.day .items{
	width: 100%;
	text-align: center;
	margin: 0 auto;
}
.day .items li{
	padding: 30px 15px;
	max-width: 450px;
	border-bottom: 1px solid #002E55;
}

.day.bg-primary .items li{
	border-bottom: 1px solid #fff;
}

.day .items li h3 {
	font-family: 'Tiempos Headline', serif;
	font-weight: 300;
	margin-bottom: 20px;
}

.day .items li:last-child{
	border: 0
}
.day .items li .icon{
	margin-bottom: 15px;
}

.day.bg-primary .items li .icon{
	filter: invert(1) brightness(3);
}
.day .items li h4{
	margin: 0;
	font-size: 15px;
	text-transform: uppercase;
	text-decoration: underline;
}

.day .buttons{
	margin-top: 50px;
}

@media screen and (min-width: 992px){
	/*.day{
		padding: 100px 0 50px;
	}*/
	.day .items {
		display: flex;
		justify-content: center;
		//justify-content: end;
	}
	.day .items li{
		padding: 15px 50px;
		border-bottom: 0;
		border-right: 1px solid #002E55;
	}
	.day .items li:last-child{
		padding-right: 0;
	}


	.day.bg-primary .items li{
		border-bottom: none;
		border-right: 1px solid #fff;
	}
	.day .items li:last-child{
		border: 0
	}
	.day.day-simple .items li{
		width: 40%;
		max-width: 50%;
	}	
}


.day.welcome-dinner .shape.left,
.day.day-simple .shape.left{
	top: -20%;
	width: 206px;
	height: 334px;
	background-image: url('assets/img/shapes/shape-miami-welcome-01.svg');
}
.day.welcome-dinner .shape.right,
.day.day-simple .shape.right{
	top: -75px;
	width: 310px;
	height: 500px;
	background-image: url('assets/img/shapes/shape-miami-welcome-02.svg');
}

.day.day-one .shape.left{
	top: -100px;
	width: 200px;
	height: 320px;
	background-image: url('assets/img/shapes/shape-miami-day1-01.svg');
}
.day.day-one .shape.right{
	top: -75px;
	width: 252px;
	height: 340px;
	background-image: url('assets/img/shapes/shape-miami-day1-02.svg');
}

.day.day-two .shape.left{
	top: -100px;
	width: 120px;
	height: 250px;
	background-image: url('assets/img/shapes/shape-miami-day2-01.svg');
}
.day.day-two .shape.right{
	top: -75px;
	width: 186px;
	height: 396px;
	background-image: url('assets/img/shapes/shape-miami-day2-02.svg');
}


.day.day-full .shape.left{
	top: 0px;
	width: 200px;
	height: 320px;
	background-image: url('assets/img/shapes/shape-miami-day1-01.svg');
}
.day.day-full .shape.right{
	top: -75px;
	width: 252px;
	height: 340px;
	background-image: url('assets/img/shapes/shape-miami-day1-02.svg');
}


/* Module > Schedule */


.schedule .data {	
	margin-top: 50px;
	margin-bottom: 100px;
}

.schedule .items .item article {
	position: relative;
	width: 100%;
	border-bottom: solid 1px #000;
	padding: 15px 0;
	display: inline-flex;
	justify-content: space-between;
    gap: 10px;
    font-size: clamp(20px, 4.7vw, 64px);
}
.schedule .items .item:last-child article{
	border-bottom: none;
}

.schedule .items article .time {
	width: 22%;
	text-transform: uppercase;
	text-align: right;
}

.schedule .items article .activity {
	width: 78%;
}


.schedule .items article p{
	margin: 0
}

.schedule .gallery .slide img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
}
.schedule .gallery .slide .img{
	aspect-ratio: 1 / 1.3;
	object-fit: cover;
	background: no-repeat center;
	background-size: cover;	
}

@media screen and (max-width: 580px){
	.schedule .gallery .slider{
		margin: 0 -15px;
	}
}

@media screen and (min-width: 992px){
	.schedule .data {	
		margin-top: 80px;
		margin-bottom: 180px;
	}

	.schedule .gallery .slide .img{
		aspect-ratio: 1 / 1;
	}
	.schedule .items article .time {
		width: 20%;
	}

}

/* Module > Full Schedule */

.full-schedule{
	background: #fff;
	color: #233057;
	padding: 0;
}
.full-schedule .main_title{
	padding: 50px 0;
	background: #000 no-repeat center;
	background-size: cover;
	color: #fff;
	position: relative;
}
.full-schedule .main_title .title{
	margin: 0;
    color: #002F49;
}


/*.full-schedule .main_title .title h3{
	margin: 10px 0;
	font-size: 20px;
	line-height: 36px;
}
.full-schedule .main_title .title .subtitle{
	font-family: 'Tiempos Headline', serif;
	font-weight: 300;
	text-transform: none;
	font-size: 30px;
	letter-spacing: 0.5px;
	font-weight: 300;
}*/

.schedule.full-schedule .main_title .shape.top.left{
	top: -100px;
	width: 246px;
	height: 240px;
	background-image: url('assets/img/shapes/shape-miami-agenda1-01.svg');
}
.schedule.full-schedule .main_title .shape.top.right{
	top: 50px;
	top: -50px;
	width: 254px;
	height: 374px;
	background-image: url('assets/img/shapes/shape-home-about-02.svg');
}

.schedule.full-schedule .shape.top.left{
	top: 30%;
	width: 246px;
	width: 200px;
	height: 320px;
	background-image: url('assets/img/shapes/shape-miami-day1-01.svg');
}
.schedule.full-schedule .shape.top.right{
	top: 32%;
	width: 210px;
    height: 340px;
    background-image: url(assets/img/shapes/shape-miami-day1-02.svg);
}
.schedule.full-schedule .shape.bottom.left{
	bottom: 20%;
	bottom: 15%;
    width: 206px;
    height: 334px;
    background-image: url(assets/img/shapes/shape-miami-welcome-01.svg);
}

.schedule.full-schedule .shape.bottom.right{
	bottom: 20%;
	bottom: 15%;
	width: 274px;
	height: 340px;
	background-image: url('assets/img/shapes/shape-gallery-top-right.svg');
}

.schedule.full-schedule[data-count="1"] .shape.bottom.left:not(.title),
.schedule.full-schedule[data-count="1"] .shape.top.left:not(.title),
.schedule.full-schedule[data-count="1"] .shape.top.right:not(.title),
.schedule.full-schedule[data-count="1"] .shape.bottom.right:not(.title){ 
	display: none;
}

.full-schedule .main_title .title h3 {
	text-transform: uppercase;
}

@media screen and (min-width: 992px){
	.full-schedule .main_title{
		padding: 100px 0;
	}
	/*.full-schedule .main_title .title .subtitle{
		font-size: 30px;
		line-height: 30px;
	}*/
	/*.full-schedule .main_title .title h3{
		font-size: 40px;
		line-height: 50px;

		font-size: 34px;
		line-height: 40px;
	}*/

	.schedule.full-schedule .main_title .shape.top.left{
		top: -90px;
	}
	.schedule.full-schedule .main_title .shape.top.right{
		top: -100px;
	}
}

.full-schedule .content{
	padding: 50px 0;
}


.schedule.full-schedule .data {
	position: relative;
	max-width: 100%;
	z-index: 3;
}

.schedule.full-schedule .data .items article {
	border-bottom: none;
}
.schedule.full-schedule .data .items article .title {
	border-bottom: solid 1px #233057;
	padding-bottom: 20px;
    width: 78%;
}

.schedule.full-schedule .data .items article .title a{
	text-decoration: underline;
}

.schedule.full-schedule .data .items article h3{
	font-family: 'Tiempos Headline', serif;
	font-weight: 600;
	font-size: 22px;
}

.schedule.full-schedule .data .items article p {
	max-width: 555px;
	font-size: 14px;
}

@media screen and (min-width: 992px){
	.schedule.full-schedule .data .items article h3{
		font-size: 27px;
	}
	.schedule.full-schedule .data .items article .title{
		margin-top: -5px;
	}
	.schedule.full-schedule .data .items article p{
		font-size: 15px;
	}
}

@media screen and (max-width: 991px){ 
	.schedule.full-schedule .data .items article{
		display: block;
	}

	.schedule.full-schedule .data .items article .title{
		margin-top: 15px;
	}
}


/* Module > About */

.about .title .icon{
	max-width: 140px;
	margin-bottom: 60px;
}

.about .image img{
	aspect-ratio: 0.89/1;
	object-fit: cover;
}

.about .title p:not(.description){
	margin-top: 120px;
}

@media screen and (min-width: 992px){
	.about .title .icon{
		max-width: 170px;
	}
}

/* Module > Gallery */
/*.m-gallery .shape.top.left{
	top: -5%;
	width: 190px;
	height: 290px;
	background-image: url('assets/img/shapes/shape-gallery-top-left.svg');
}
.m-gallery .shape.top.right{
	top: -5%;
	width: 274px;
	height: 340px;
	background-image: url('assets/img/shapes/shape-gallery-top-right.svg');
}*/


.m-gallery .slide img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

@media screen and (max-width: 580px){
	.m-gallery .container{
		padding-left: 0;
		padding-right: 0;
	}
}


/* Module > Packing */

.packing .title{
	margin-bottom: 20px;
}

.packing .items article h2 {
	font-family: "Tiempos Headline", serif;
	font-size: clamp(28px, 4.4vw, 60px);
	line-height: 1.05;
}


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

/* Module > Speakers */

.speakers{
	padding-bottom: 25px;
	position: relative;
}
.speakers .main_title{

}
.speakers .main_title{
	padding: 80px 0 150px;
}
.speakers .main_title .title h3{
	margin: 0;
	font-size: 32px;
	line-height: 32px;
	font-family: 'Tiempos Headline', serif;
	font-weight: 300;
}
.speakers .main_title .title p{
	margin: 0 0 30px;
	color: #fff;
	font-size: 24px;
	line-height: 24px;
	font-weight: bold;
}

.speakers .main_title .title.d-md-flex{
	justify-content: space-between;
	flex-direction: row-reverse;
}

.speakers .items{
	position: relative;
	margin-top: -125px;
}

.speakers .shape.bottom.right{
	bottom: 25%;
	width: 360px;
	height: 380px;
	background-image: url('assets/img/shapes/shape-speakers-bottom-right.svg');
}

@media screen and (min-width: 992px){
	.speakers .main_title .title h3{
		font-size: 45px;
		line-height: 45px;
	}
	.speakers .main_title .title p{
		font-size: 30px;
		line-height: 30px;
	}
}

.speakers .items article{
	max-width: 550px;
}
.speakers .items article .avatar{
	display: block;
	margin-bottom: 32px;
	width: 175px;
	height: 175px;
	background: #eee no-repeat center;
    background-size: cover;
	border-radius: 50%;
	overflow: hidden;
}
.speakers .items article .data h2{
	font-family: 'Tiempos Headline', serif;
	font-weight: 300;
	font-size: 30px;
	line-height: 30px;
}
.speakers .items article .data .subtitle{
	font-family: 'Tiempos Headline', serif;
	font-weight: 300;
	font-size: 30px;
	line-height: 30px;
}
.speakers .items article .data .description{
	margin-top: 32px;
}

.speakers.speakers-1 .shape.top.left {
    top: -11%;
    left: -2%;
    width: 200px;
    height: 320px;
    background-image: url(assets/img/shapes/shape-miami-day1-01.svg);
}

.speakers.speakers-2 .shape.top.left{
	top: -5%;
	left: -5%;
	width: 190px;
	height: 290px;
	background-image: url('assets/img/shapes/shape-gallery-top-left.svg');
}

@media screen and (min-width: 768px){
	.speakers{
		padding-bottom: 50px;
	}
	.speakers .items article{
		padding: 15px;
	}
}


/* Module > About Animo */

.about-animo .shape.left{
	top: -5%;
	width: 215px;
	height: 290px;
	background-image: url('assets/img/shapes/shape-home-whattopack-01.svg');
}
.about-animo .shape.right{
	top: -5%;
	width: 260px;
	height: 276px;
	background-image: url('assets/img/shapes/shape-home-whattopack-02.svg');
}

.about-animo .title{
	max-width: 720px;
	margin: 0 auto;
}

.about-animo .title h3{
	text-transform: uppercase;
	font-size: 21px;
}

.about-animo .title p{
	font-family: 'Tiempos Headline', serif;
	font-weight: 300;
    font-weight: 300;
    font-size: 28px;
    letter-spacing: -1px;
}
.about-animo .title p span {
	font-family: 'Mars Condensed Regular';
	text-transform: uppercase;
	font-size: 30px;
	letter-spacing: 0;
}
@media screen and (min-width: 768px){
	.about-animo .title p{
	    font-size: 36px;
	    letter-spacing: 0;
	}
	.about-animo .title p span{
	    font-size: 38px;
	}
}

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

	.about-animo .shape-01.left,
	.about-animo .shape-01.right{
		top: -10%;
	}
}

/* Module > Image-text */

.image-text .title h3{
	font-family: 'Tiempos Headline', serif;
	font-weight: 300;
}

.image-text .gallery .slide img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
}
.image-text .gallery .slide .img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: no-repeat center;
	background-size: cover;	
}
.image-text .data{
	max-width: 420px;
	margin: 0 auto;
	padding: 40px 15px;
}

/* Module > Information */

.module-information .title{
	max-width: 600px;
	margin: 0 auto;
}


/* Module > Travel */

.travel .image img{
	aspect-ratio: 2.84 / 1;
	object-fit: cover;
	margin-bottom: 50px;
}

@media screen and (max-width: 580px){
	.travel .image img{
		aspect-ratio: 1 / 1;
	}
}


/* */

.animoventures{
	
}
.animoventures .data .description{
	font-size: 25px;
	line-height: 25px;
	font-weight: bold;
}
.animoventures .data .description a{
	color: #92E0B3;
	text-decoration: underline;
}
.animoventures .data .description a:hover{
	color: #fff;
}

@media screen and (min-width: 992px){
	.animoventures .data .description{
		font-size: 36px;
		line-height: 39px;
	}
}
@media screen and (max-width: 991px){
	.animoventures .data p br{
		display: none;
	}
	.animoventures .data p{
		font-size: 25px;
		line-height: 25px;
		font-weight: bold;
	}
}

/* Module > RSVP */

.section.rsvp .title h3 {
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 5px;
}

.section.rsvp .btn-rsvp {
	color: #DDEF45;
	font-size: 24px;
}

.section.rsvp .btn-rsvp .arrow {
	filter: invert(92%) sepia(91%) saturate(615%) hue-rotate(9deg) brightness(103%) contrast(87%);
}

.section.rsvp .items {
	padding: 40px 0 10px 0;
	border-top: solid 1px #000;
}
@media screen and (min-width: 992px){
	.section.rsvp .items {
		padding: 80px 0 20px 0;
	}
	.section.rsvp .title h3 {
		font-size: 21px;
	}
}


.landing.workshop .section.rsvp {
	padding: 150px 0;
}

.landing.workshop .section.rsvp .btn-rsvp{
	font-family: 'Tiempos Headline', serif;
	font-weight: 300;
	font-size: 24px;
	text-decoration: none;
	text-transform: none;
	color: #fff;
}

.landing.workshop .section.rsvp  .btn-rsvp .arrow {
    rotate: 180deg;
    margin-right: 15px;
    filter: invert(95%) sepia(100%) saturate(0%) hue-rotate(121deg) brightness(104%) contrast(105%);
}

@media screen and (min-width:992px){
	.landing.workshop .section.rsvp .btn-rsvp{
		font-size: 54px;
	}
}


/* Landing > Program */

/*.landing.program .banner,
.landing.workshop .banner {
	background: #F2F0E6;
    background-position: center !important;
    background-size: cover;
}


.landing .banner .logo{
	max-width: 200px;
	margin: 0 auto;
}

.landing.workshop .banner .logo img{
	display: block;
	text-align: center;
	margin: 0 auto;
	//filter: invert(54%) sepia(28%) saturate(3634%) hue-rotate(184deg) brightness(38%) contrast(103%);
}

.landing.workshop .banner .arrow-down {
	//filter: invert(54%) sepia(28%) saturate(3634%) hue-rotate(184deg) brightness(38%) contrast(103%);
}
.landing.program .banner .title p,
.landing.workshop .banner .title p {
	text-transform: uppercase;
	letter-spacing: 5px;
}

.landing.workshop .banner .data {
	max-width: 760px;
}

@media screen and (min-width: 768px){
	.landing .banner .logo{
		max-width: 360px;
	}
}
@media screen and (min-width: 992px){
	.landing.workshop .banner .title h1{
		font-size: 42px;
		line-height: 50px;
		letter-spacing: 15px;
	}

	.landing.workshop .banner .title h1 span{
		font-size: 42px;
	}

	.landing.workshop .banner .title p{
		font-size: 21px;
	}
}
*/

/**/

.module-about{
	padding: 50px 0;
}
.module-about article{
	max-width: 830px;
	margin: 0 auto;
	text-align: center;
}
.module-about article a{
	text-decoration: underline;
}

@media screen and (min-width: 768px){
	.module-about{
		padding: 100px 0;
	}

	.module-about article {
		font-size: 18px;
		line-height: 30px;
	}
}
.module-about .shape.left{
	top: -50px;
	width: 350px;
	height: 580px;
	background-image: url('assets/img/shapes/shape-home-about-01.svg');
}
.module-about .shape.right{
	top: 50px;
	top: -50px;
	width: 254px;
	height: 374px;
	background-image: url('assets/img/shapes/shape-home-about-02.svg');
}

@media screen and (min-width: 992px){
	.module-about .shape.left{
		top: -150px;
	}
	.module-about .shape.right{
		top: -100px;
	}
}


/***/
.module-details {
	padding: 80px 0;
}
.module-details .title h3,
.module-details .title .number{
	font-family: 'Tiempos Headline', serif;
	font-weight: 300;
	font-size: 32px;
	line-height: 32px;
	letter-spacing: -0.43px;
}

.module-details .title p:not(.number) {
	font-size: 18px;
	letter-spacing: 0.42px;
	color: #fff;
}

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

	.module-details .title h3,
	.module-details .title .number{
		font-size: 45px;
		line-height: 45px;
		letter-spacing: -0.63px;
	}

	.module-details .title p:not(.number){
		font-size: 30px;
	}
}


/**/

.module-symphony{
	background-color: #00665A;
}
.module-symphony .title h3{
	font-family: 'Tiempos Headline', serif;
	font-weight: 300;
}
.module-symphony .items{
	margin-top: 50px;
}

.module-symphony .items .item:not(:last-child){
	border-bottom: dashed 1px #fff; 
}

.module-symphony .items article{
	padding: 0 25px;
}
.module-symphony .items article .number{
	font-size: 45px;
	width: 65px;
	height: 65px;
	border:solid 1px #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Tiempos Headline', serif;
	font-weight: 300;
	margin-bottom: 20px;
}

.module-symphony .items article p span{
	text-transform: uppercase;
	margin-bottom: 15px;
}

.module-symphony .items article h3 {
	font-family: 'Tiempos Headline', serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 30px;
}

.module-symphony .shape.left{
	top: -80px;
	width: 160px;
	height: 322px;
	background-image: url('assets/img/shapes/shape-symphony-01.svg');
}
.module-symphony .shape.right{
	top: 50px;
	top: -80px;
	width: 188px;
	height: 354px;
	background-image: url('assets/img/shapes/shape-symphony-02.svg');
}

@media screen and (min-width: 768px){
	.module-symphony .items{
		margin-top: 100px;
	}

	.module-symphony .items .item:not(:last-child){
		border-bottom: none;
		border-right: dashed 1px #fff; 
	}
}



/**/

.landing.information .back-to-program{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 350px;
	background: url('assets/img/extra/bg-back-to-program.jpg') no-repeat center;
	background-size: cover;
}
.landing.information .back-to-program .title h3{
	display: inline-block;
	vertical-align: middle;
	font-size: 30px;
	line-height: 30px;
}

.landing.information .back-to-program .title .icon-arrow-prev{
	display: inline-block;
	vertical-align: middle;
    margin-right: 10px;
    width: 35px;
    height: 17px;
    background: no-repeat center;
    background-size: contain;
    background-image: url('assets/img/icons/icon-arrow-prev.svg');
}

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

	.landing.information .back-to-program{
		min-height: 600px;
	}
	.landing.information .back-to-program .title h3{
		font-size: 60px;
		line-height: 60px;
	}
}


/* Slider */

.slider {
	position: relative;
}
.slider .dots {
	position: absolute;
	width: 100%;
	z-index: 10;
	bottom: 5%;
}
.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: 15px;
	height: 15px;
	padding: 0;
    text-indent: -9999px;
	background: rgba(255,255,255,0.5);
    border: 0;
	border-radius: 50%;
    overflow: hidden;
    -webkit-appearance: none;
    cursor: pointer;
}
.slider .dots .slick-dots li.slick-active button {
	background: #FFF;
}

.slider .arrows button{
	position: absolute;
	top: calc(50% - 8.5px);
	left: 5%;
	width: 35px;
	height: 17px;
	padding: 0;
	line-height: 300px;
	text-align: center;
	font-size: 50px;
	color: #fff;
	background: transparent;
	border: 0;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	overflow: hidden;
}
.slider .arrows button:focus{
	outline: 0;
}
.slider .arrows button.slick-next {
	left: auto;
	right: 5%;
}
.slider .arrows button:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/img/icons/icon-arrow-prev.svg') no-repeat center;
	background-size: contain;
}
.slider .arrows button.slick-next:after{
	background-image: url('assets/img/icons/icon-arrow-next.svg');
}

@media screen and (min-width: 992px){
	.slider .arrows button{
		width: 35px;
		height: 70px;
	}
}


/*  Modals */

.modal {
	z-index: 99999;
}

.modal-content {
	border-radius: 0;
	border: 0;
}
.modal .close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	padding: 0;
	font-size: 30px;
	z-index: 10;
}
.modal-dialog {
	width: 100%;
}

.modal .title {
	width: 100%;
	max-width: 630px;
	margin: 0 auto;
	padding: 0 15px;
}
.modal .title h4 {
	font-size: 27px;
}
.modal .title p{
	color: #909193;
}

@media (min-width: 768px){
	.modal-head .close {
		padding: 20px;
	}
}
@media (max-width: 767px){
	.modal-dialog {
		margin: 0;
	}
}


#modalVideo .modal-dialog{
	display: flex;
	align-items: center;
	height: 100%;
	margin-top: 0;
}
#modalVideo .modal-content{
	border-radius: 0;
	border: 0;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.1)
}
#modalVideo .modal-body{
	padding: 0;
	background: #000;
}
#modalVideo .close{
	top: -40px;
	right: 0;
	color: #fff;
}

@media screen and (min-width: 992px) {
	#modalVideo .close {
		top: 0;
		right: -40px;
	}
}

/* Errors */

.errors {
	text-align: center;
	padding: 50px 0;
}


/* Pages > Page 404 */

.page.page-404 .content{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 100px);
}

/* Footer */

.footer{
	width: 100%;
	padding: 15px 0;
	text-align: center;
	position: relative;
}

.footer a:hover{
	color: #90C046;
}

.footer .title .subtitle{
	font-size: clamp(14px, 1.46vw, 20px);
}

.footer .logo-1  {
	width: 54px;
}

.footer .logo-2 {
	width: 126px;
}