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

body {
    font-family: "Barlow Condensed", sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    color: #FFF !important;
    background-color: #FFFFFF !important;
    line-height: normal !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Barlow Condensed", sans-serif !important;
    font-style: normal !important;
}

.loading-wrapper{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    font-size: 48px;
    z-index: 11000;
    background-color: rgba(0,0,0,.85);
    background-position-x: 50%;
    background-position-y: 50%;
    background-repeat: no-repeat;
}

.loading-wrapper .loading #message{
    color: #FFFFFF !important;
    text-align: center;
}

.site-divisor {
    border-top: solid 4px #D9D9D9;
    width: 75%;
    text-align: center;
    display: flex;
    margin-bottom: 72px;
}

.btn-orange {
    display: flex;
    color: #fff;
    height: 60px;
    background: transparent linear-gradient(90deg, #C65803 0%, #E66B0C 100%) 0% 0% no-repeat padding-box;
    font-size: 20px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    min-width: 140px;
    max-width: 200px;
}

.form-signup {
    color: #2d3647;
}

.form-info {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    font-style: italic;
    margin-left: 8px;
    line-height: 32px;
}

.col-xs-12_5 {
    width: calc(100% / 5) !important;
}

.return-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ed6c10;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    font-size: 18px;
}

.return-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.return-to-top-btn:hover {
    background-color: #ea5c0e;
}

.btn-site {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #ef770c;
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
    vertical-align: middle;
    margin: 0;
    position: relative;
    text-align: center;
    touch-action: manipulation;
    white-space: nowrap;
    padding: 12px;
    font-size: 24px;
    line-height: 1.42857143;
    width: 180px;
    height: 70px;
    border: none;
}

.btn-site:hover, .btn-site:focus {
    text-decoration: none !important;
    color: #FFFFFF !important;
    background-color: #ea5c0e;
}

.flex-center {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
}

.flex-center-6 {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 50% !important;
}

.info-title {
    font-size: 48px;
    padding: 60px 20px 20px 20px;
    color: #26264B;
    font-weight: bold;
}

.display-block {
    display: block !important;
}

.w-100 {
    width: 100px !important;
}

.w-120 {
    width: 120px !important;
}

.w-140 {
    width: 140px !important;
}

.w-160 {
    width: 160px !important;
}

.w-180 {
    width: 180px !important;
}

.w-200 {
    width: 200px !important;
}

.w-220 {
    width: 220px !important;
}

.w-240 {
    width: 240px !important;
}

.w-260 {
    width: 260px !important;
}

.w-280 {
    width: 280px !important;
}

.w-300 {
    width: 300px !important;
}

.w-full {
    width: 100% !important;
}

.header-site {
    width: 100%;
    top: 0;
    position: relative;
}

.bg-image img {
    width: 100%;
}

.small-header .bg-image img {
    max-height: 350px;
}

.small-header .header-site {
    background-image: url('../images/bg_header_small.png') !important;
}

.header-menu {
    width: 100%;
    height: 100px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    position: absolute;
    top: 0;
    z-index: 10;
}

.header-menu-logo {
    width: 20%;
    text-align: center;
    float: left;
}

.header-menu-options {
    width: 80%;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.header-menu-options span>a {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    color: #FFF;
    min-width: 15vw;
    display: block;
}

.header-menu-options .submenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 180px;
    background: #dfbfa1;
    border-radius: 10px;
    border: 4px solid #f5ab68;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
    display: none;
    z-index: 9999;
}

.header-menu-options .submenu.is-open {
    display: block;
}

.header-menu-options .submenu-item {
    display: inline-block;
    width: 100%;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    padding: 6px 16px;
    cursor: pointer;
    text-align: center;
    margin: 10px 0;
    padding-block: 1px;
    text-decoration: none;
}

.header-menu-options .submenu-item + .header-menu-options .submenu-item {
    border-top: 1px solid rgba(255,255,255,.25);
}

.header-menu-options .submenu-item:hover {
    background: #535353;
}

.header-menu-logged {
    width: 80%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.header-menu-login {
    width: 20%;
    text-align: right;
    float: right;
}

.header-menu-login .menu-login-inscrevase {
    width: 70%;
    text-align: right;
    float: left;
 }

.header-menu-login .menu-login-inscrevase a:hover {
    color: #fff;
    text-decoration: none;
}

.header-menu-login .menu-login-login {
    width: 30%;
    text-align: center;
    float: left;
}

.header-menu-logged .menu-logged-name {
    float: left;
    display: flex;
    justify-content: flex-end;
    margin: 0 5px;
}

.header-menu-logged .menu-logged-logout {
    float: left;
    display: flex;
    justify-content: flex-end;
    margin: 0 5px;
}
.bg-image {
    max-height: 800px;
}
.header-content {
    text-align: center;
    position: absolute;
    top: 150px;
    z-index: 5;
    width: 100%;
}
.small-header .header-content {
    top: 100px;
}
.header-banner {
    width: 100%;
    display: flex;
    justify-content: center;
}
.header-banner img {
    width: 80vw;
}
.small-header .header-banner img {
    width: 40vw;
}
.header-schedule {
    font-size: 50px;
    padding: 20px;
}
.header-registration {
    padding: 20px;
    display: inline-block;
}
.header-registration .btn-registration {
    background-color: #D9D9D9;
    color: #EC650C;
    transition-duration: .5s;
    font-size: 50px;
    border-radius: 30px;
    padding: 20px 0;
    font-weight: 700;
    width: 36vw;
    display: inline-block;
}

.header-registration .btn-registration:hover {
    background-color: #fff;
    transition-duration: .5s;
}

.small-header .header-banner {
    margin-top: 0 !important;
}

.header-banner .banner-new-event {

}

.header-banner .banner-welcome {
    margin-top: 48px;
}

.small-header .header-banner .banner-welcome {
    margin-top: 12px !important;
}

.header-banner .banner-welcome-line1 {
    font-size: 36px;
}

.header-banner .banner-welcome-line2 {
    font-size: 110px;
    font-weight: bold;
}

.small-header .header-banner .banner-welcome-line2 {
    font-size: 72px !important;
}

.header-banner .banner-location {
    margin-top: 48px;
    margin-bottom: 96px;
    font-size: 24px;
    text-align: center;
    width: 100%;
}

.small-header .header-banner .banner-location {
    margin-top: 12px !important;
    margin-bottom: 12px !important;;
}

.header-banner .banner-where {
    text-align: right;
    padding-right: 24px;
}

.header-banner .banner-when {
    text-align: left;
    padding-left: 24px;
}

.overlay-video {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-video {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.modal-video iframe {
    height: 50%;
    max-width: 90vw;
    aspect-ratio: 16 / 9;
}

.header-banner .button-float-video {
    position: relative;
    float: right;
    padding-right: 48px;
    padding-bottom: 24px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    text-align: right;
    font-size: 18px;
}

.small-header .header-banner .button-float-video {
    display: none !important;
}

.header-banner .button-float-video>div{
    float: left;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    padding-right: 10px;
}

.header-play-video {
    background-image: url('../images/button_watch_video.png');
    color: white;
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-size: 18px;
    padding: 0 !important;
}

.hamburger-menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 36px;
    cursor: pointer;
}

.container-hotels {
    top: 0;
    height: auto;
    padding: 72px 0 100px 0;
    background-color: #fff;
    color: #4D4E4E;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-hotels .bg-hotels-bottom {
    position: absolute;
    bottom: 0;
}

.container-hotels .bg-hotels-bottom img {
    width: 100%;
}

.hotels-line1 {
    font-size: 64px;
    font-weight: bold;
    color: #4D4E4E;
}

.hotels-line2 {
    font-size: 20px;
    font-weight: 500;
    color: #4D4E4E;
    letter-spacing: 4px;
}

.hotel-card-container {
    display: flex;
    justify-content: center;
}

.hotels-card {
    padding: 0 48px;
}

.hotel-cards {
    width: 75%;
}

.hotel-card {
    display: flex;
    justify-content: center;
}

.hotel-card-details {
    text-align: left;
}

.hotel-card-title {
    font-weight: 700;
    font-size: 64px;
    letter-spacing: 10px;
}

.hotel-card-info {
    font-size: 30px;
    font-weight: 500;
    margin-top: 20px;
    text-align: justify;
}

.hotel-card-image {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hotel-card-frame {
    width: 440px;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 5px 7px 1px rgba(0, 0, 0, 0.2);
}

.hotel-card-photo img {
    max-width: 400px;
    min-width: 310px;
    width: 18vw;
}

.hotel-card-name {
    padding: 12px 0 2px 0;
    font-size: 24px;
    font-weight: bold;
    color: #26264B;
    height: 48px;
    overflow: hidden;
}

.hotel-card-address {
    padding: 2px 0 4px 0;
    font-size: 20px;
    height: 51px;
    overflow: hidden;
}

.hotel-card-address a {
    color: #8C8C9A;
}

.hotel-card-address img {
    height: 24px;
}

.nav-tabs {
    border: none !important;
}
.nav-tabs>li {
    width: 25%;
}

.nav-tabs>li>a:hover {
    background-color: unset !important;
    color: #26264B !important;
    border: none;
}

.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    background-color: #F4F2EE !important;
    box-shadow: none !important;
    border-width: 0 !important;
    color: #26264B !important;
}

.nav-tabs>li>a, .nav-tabs>li>a:focus {
    color: #FFF !important;
    border-width: 0 !important;
    padding: 24px 8px !important;
    font-size: 24px;
    line-height: 24px !important;
}

.container-last-edition {
    background-color: #fff;
    height: auto;
    position: relative;
    padding-bottom: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.last-edition-line1 {
    font-size: 18px;
    color: #707070;
    letter-spacing: 2px;
    font-weight: bold;
    padding: 12px;
}

.last-edition-line2 {
    font-size: 64px;
    font-weight: bold;
    color: #4D4E4E;
}

.last-edition-photos {
    padding: 72px 100px 36px 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
}

.last-edition-photos img {
    width: 100%;
}

.last-edition-archive a {
    color: #fff;
    text-decoration: underline;
    font-size: 18px;
}

.container-contact {
    background-color: #CCC;
    height: auto;
    position: relative;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-line1 {
    font-size: 30px;
    color: #E24E0C;
    font-weight: 500;
    letter-spacing: 4px;
}

.contact-line2 {
    font-size: 64px;
    font-weight: bold;
    color: #4D4E4E;
    padding-top: 12px;
    padding-bottom: 0;
    letter-spacing: 2px;
}

.contact-line3 {
    font-size: 24px;
    color: #4D4E4E;
    padding-top: 12px;
    padding-bottom: 24px;
}


.contact-info {
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 6px;
}

.contact-form input, .contact-form textarea {
    background-color: #f4f2ee !important;
    border: none !important;
    color: #555 !important;
    width: 100%;
    padding: 5px 20px 6px !important;
    font-size: 18px !important;
    resize: none;
}

.contact-form input {
    height: 60px !important;
}

.contact-form #send-question {
    background-color: #EC6707 !important;
    background-image: unset !important;
}

.form-contact {
    width: 75%;
}

.contact-send-question {
    display: flex;
    justify-content: flex-end;
}

.contact-send-confirmation {
    color: #EC6707;
    font-size: 18px;
    font-weight: bold;
    width: calc(100% - 120px);
    transition-duration: 2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #aaa;
}

.container-footer {
    background-color: #15162B;
    height: auto;
    position: relative;
    padding: 76px 200px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    justify-content: flex-start;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-links a {
    color: #B2B2C5;
    font-size: 24px;
    text-decoration: underline;
}

.footer-copyright {
    display: flex;
    justify-content: center;
}

.footer-copyright-text {
    border-top: solid 2px #FFFFFF0D;
    color: #B2B2C5;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
}

.login-container {
    padding: 48px 0;
    width: 100% !important;
    margin: unset !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    width: 30vw;
}

.login-title {
    color: #15162B;
    font-weight: bold;
    font-size: 24px;
    padding-left: 20px;
}

.login-banner {
    text-align: center;
    padding: 0 300px 0 100px !important;
}

.error-login {
    font-size: 14px;
    color: #f44336;
    text-transform: uppercase;
}

.login-link a {
    color: #15162B;
    padding-top: 8px;
    font-weight: 600;
    font-size: 14px;
}

.text-underline {
    text-decoration: underline !important;
}

.white-box {
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    color: #000;
}

.white-box input[type=text],
.white-box input[type=text]:focus,
.white-box input[type=textarea],
.white-box input[type=textarea]:focus,
.white-box input[type=password],
.white-box input[type=password]:focus {
    width: 40%;
    color: #001c1f;
}

.white-box input,
.white-box textarea,
.white-box select {
    padding: 0 4px 0 6px !important;
    display: block !important;
    width: 100% !important;
    margin-top: 5px !important;
    padding-bottom: 5px !important;
    font-size: 16px !important;
    border: none !important;
    border-bottom: 1px solid #15162B !important;
    outline: none !important;
    background: none !important;
    color: #001c1f !important;
}

.white-box input[type="checkbox"] {
    display: inline-block !important;
    width: unset !important;
}

.sign-in {
    width: 100%;
}

.regulation-container-info {
    padding-top: 12px;
    padding-bottom: 72px;
    background-color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.regulation-container-info .info-title {
    font-size: 48px;
    line-height: 65px;
    color: #4D4E4E;
    padding-bottom: 24px;
    font-weight: 500 !important;
}

.regulation-info-content {
    display: flex;
    flex-direction: column;
    width: 75%;
    text-align: left;
}

.regulation-info-text {
    color: #4D4E4E;
    font-size: 24px;
    text-align: justify;
}

.info-subtitle-orange {
    color: #f09922;
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 24px;
}

.info-subtitle-blue {
    color: #0C869A;
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 24px;
}

.info-text {
    font-size: 18px;
    color: #8C8C9A;
}

.info-text-black {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    padding-top: 12px;
    padding-bottom: 12px;
}

.text-orange {
    color: #f09922;
}

.registration-content .actions {
    display: flex;
    justify-content: space-evenly;
}
