html {
    height: 100%;
    overflow: auto;
}

body {
    height: 100%;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}
body.noScroll {
    height: 100vh;
    overflow: hidden;
}
.body *:not(.fa){
    color: #252525;
}
.main-header *:not(.fa){
    font-family: 'Krona One', sans-serif;
}
ol.center {
    text-align: center;
    list-style-position: inside;

    list-style-type: none;
    /* remover o marcador padrão da lista */
    counter-reset: item;
    /* redefinir o contador para o primeiro item */
}
  

  ol.center li::before {
      content: counter(item) ") ";
      /* adicionar o número e o parêntese fechado */
      counter-increment: item;
      /* incrementar o contador para o próximo item */
      font-weight: 800;
  }
ol.center li {
    font-weight: 400;
}

@media (min-width: 1600px) {
    .container{
        max-width: 1550px;
    }

}

p {
    font-family: 'Outfit', sans-serif !important;
    color: #252525 !important;
}

.main-header{
    height: 160px;
}
.main-header .container{
    height:100%;
    display:flex;
    justify-content: space-between;
    border-bottom: 2px solid #9E9E9E;
    position: relative;
}
.main-header .header-label{
    position:absolute;
    top:158px;
    left:0;
    background: #CE2F39;
    color:#fff;
    font-size:12px;
    text-transform: uppercase;
    padding: 10px 20px;
    z-index:999;
    border: 1px solid #000;
}
.main-header .header-logo{
    height:100%;
    display:flex;
    align-items:center;
    z-index: 15;
}

.main-header .header-logo img{
    height:70px;
    object-fit: contain;
}
.main-header .header-menu{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    height: 100%;
}
.main-header .header-menu .header-dropdown-container{
    display:none;
}
.main-header .header-menu li{
    /* padding: 10px; */
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.main-header .header-menu li a{
    padding: 10px;
}
.main-header .header-menu li a,
.main-header .header-menu li .dropdown-title,
.main-header .header-link{
    color: #252525;
    text-decoration:none;
    font-size: 12px;
    text-transform: uppercase;
}
.header-right .header-link {
        display: flex;
        align-items: center !important;
    }
.main-header .header-menu li a:hover,
.main-header .header-link:hover{
    color: #CE2F39;
}
.main-header .header-menu .header-dropdown{
    background: #CE2F39;
    border: 1px solid #252525;
    list-style:none;
    margin:0;
    padding:0;
    position: relative;
    z-index: 9;
}
.main-header .header-menu .header-dropdown-container{
    position:absolute;
    top: 158px;
    left:0;
    width: 300px;
}
.main-header .header-menu .header-dropdown-container .invisible-elem{
    width: 100%;
    height: 100%;
    display: block;
    border: 1px solid #000;
    background: transparent;
    transform: translate(20px, 20px);
    position: absolute;
    top: 0;
    z-index: 1;
}
.main-header .header-menu .header-dropdown li{
    justify-content:start;
}
.main-header .header-menu .header-dropdown li a{
    padding-left: 30px;
}

.main-header .header-menu .has-dropdown{
    position:relative;
}
.main-header .header-menu .has-dropdown:hover .dropdown-title{
    color: #CE2F39;
    transform: translate(0, 60px);
}
.main-header .header-menu .has-dropdown:hover .header-dropdown-container{
    display:block;
}
.main-header .header-menu .header-dropdown li a{
    color: #fff !important;
    transition: color 300ms ease-in-out;
}
.slick-list {
    padding-bottom: 15px;
}
.main-header .header-menu .header-dropdown li{
    transition: all 300ms ease-in-out;
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
}
.main-header .header-menu .header-dropdown li:hover a{
    color: #000 !important;
}
.main-header .header-menu .header-dropdown li:hover{
    background-color: #FCF6ED;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
}
.main-header .header-menu li .dropdown-title{
    transition: all 0.2s ease-in-out;
}
.main-header .header-right{
    width: fit-content;
}
.main-header .header-center{
    width: inherit;
    max-width: 770px;
}
.main-header .header-right{
    display:flex;
    align-items:center;
    min-width: 155px;
}
.main-header .header-search{
    width: 45px;
    height: 35px;
    position: relative;
}
.main-header .header-search .search-input{
    position: absolute;
    right: 0;
    height: 35px;
    width: 40vw;
    max-width:100%;
    border: 0;
    border-bottom: 2px solid #252525;
    transition: all 0.3s ease-in-out;
}
.main-header .header-search .fa-search{
    z-index: 9;
    position: absolute;
    right: 10px;
    font-size: 28px;
}
.main-header .header-search:hover .search-input,
.main-header .header-search .search-input:focus{
    max-width: 40vw;
    outline:0;
}
.main-header .header-avatar{
    margin: 0 30px;
    position: relative;
}
.main-header .header-avatar img{
    width: 54px;
    height: 54px;
    border:1px solid #252525;
    border-radius:50%;
    object-fit:cover;
}
.main-header .header-avatar:before{
    content: '';
    width:100%;
    height:100%;
    position: absolute;
    left:0;
    top: 0;
    transform: translate(5px, 5px);
    border: 1px solid #252525;
    border-radius:50%;
    z-index: -1;
}
.main-header .header-link.active{
    color: #CE2F39;
}
.main-header .header-lang-time{
    margin-left:30px;
    margin-top: 0px;
}
.main-header .header-lang{
    text-align:center;
}
.main-header .header-time{
    font-family: 'Outfit', sans-serif;
    font-size:12px;
    margin:0;
}
.home-banner{
    margin-bottom:160px;
}
.home-banner .container{
    height: 600px;
    width:100%;
    position: relative;
}
.home-banner .home-banner-follow{
    position:absolute;
    top: 80px;
    right:0;
    font-size: 48px;
    font-family: 'Krona One', sans-serif;
    text-transform:uppercase;
}   

.home-banner .home-banner-follow span {
    color: #CE2F39;
}
.home-banner .home-banner-follow a{
    color: #252525;
    margin: 0 5px;
}
.home-banner .home-banner-follow a:hover{
    color: #CE2F39;
}
.home-banner .home-banner-text{
    position:absolute;
    left:0;
    bottom:0;
}
.home-banner .home-banner-text h3{
    font-size: 36px;
    text-transform:uppercase;
    font-weight: 600;
}
.home-banner .home-banner-text h1{
    font-family: 'Krona One', sans-serif;
    font-size: 90px;
    text-transform:uppercase;
    margin:0;
}
.home-banner .home-banner-arrow{
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #EFEFEF;
}
.home-banner .home-banner-arrow .banner-arrow{
    position: absolute;
    left: 50%;
    height: 100px;
    width: 2px;
    background: #efefef;
    position:relative;
}
.home-banner .home-banner-arrow .banner-arrow:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    width: 15px;
    height: 15px;
    border-left: 2px solid #efefef;
    border-bottom: 2px solid #efefef;
    transform: rotate(-45deg);
}
h2.section-title {
    text-transform: uppercase;
    font-family: 'Krona One', sans-serif;
    font-size: 32px;
    color:#000;
    margin-bottom: 30px;
}
@media (min-width: 1024px) {
    h2.section-title {
        font-size: 36px;
    }
}
h3.section-title {
    text-transform: uppercase;
    font-family: 'Krona One', sans-serif;
    font-size: 20px;
    color:#000;
    margin-left: 99px;
    margin-bottom: 30px;
}

.news-flex {
    display:flex;
    gap:100px;
    justify-content: space-between;
}

.news-flex .news-block-list{
    width: calc(100% - 500px);
    flex: 1 1 calc(100% - 500px);
}

.news-flex .news-filter{
    width:400px;
    flex: 1 1 400px;
}

.news-flex select {
    margin: 15px 0px 30px 0px;
}
select {
    width: calc(100% - 16px);
    padding: 8px 15px;
    font-size: 22px;
    border: none;
    line-height: 40px;
    color: #BEBEBE;
    border-right: 16px solid transparent;
    position: relative;
    box-shadow: 0px 0px 1px 1px #BEBEBE;
}

select::after {
    content:'';
    height: 56px;
    width: 1px;
    background-color: #BEBEBE;
    right: 0px;
    top: 0px;
}
.last-news {
    color:#BEBEBE;
    font-size: 22px;
    line-height: 28px;
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #BEBEBE;
}
h1.section-title {
    color:#CE2F39;
}
.home-news{
    margin-bottom: 160px;
}

.home-testimonies .slick-slide-testimonies,
.slick-slide-gallery,
.slick-slide-headliners,
.home-news .slick-slide-news{
    margin: 0 100px;
    margin-bottom: 50px;
}
.home-news .slick-track{
    margin: 0 -10px;
}
.home-news .slick-slide-news-item{
    margin: 0 10px;
}
.home-news .slick-slide-news-item img{
    width:100%;
    height:480px;
    object-fit:cover;
}
.home-news .slick-slide-news-text{
    display:none;
}
.home-news .slick-slide-news-item.slick-active .slick-slide-news-text{
    display:block;
    padding-bottom: 10px;
}
.home-news .slick-slide-news-text .news-info {
    font-size: 0.8rem;
    font-family: 'Krona One', sans-serif !important;
    text-transform: uppercase;
    margin-top: 1.5rem;
    margin-bottom:0.5rem;
    font-weight: 500;
    line-height: 1.2;
    display: block !important;
}
.krona {
    font-family: 'Krona One', sans-serif;
}
.home-news .slick-slide-news-text .news-info span{
    color: #CE2F39;
}
.home-news .slick-slide-news-text h2{
    font-size: 36px;
    color:#000;
    font-family: 'Outfit', sans-serif;
    margin-top: 15px;
}
.home-news .slick-slide-news-text p{
    font-size:16px;
    margin-top: 24px;
    margin-bottom: 24px;
    font-weight:300;
}
.home-news .slick-arrow .arrow-right{
    width: 100px;
    height: 100px;
    border-right: 2px solid #CE2F39;
    border-bottom: 2px solid #CE2F39;
    transform: rotate(-45deg);
}
.home-news .slick-arrow .arrow-left{
    width: 100px;
    height: 100px;
    border-right: 2px solid #CE2F39;
    border-bottom: 2px solid #CE2F39;
    transform: rotate(135deg);
}
.home-news .slick-arrow:before{
    display:none;
}
.home-news .slick-prev{
    left: -80px;
    top: 220px;
}
.home-news .slick-next{
    right: 0px;
    top: 220px;
}
.home-news .slick-dots{
    bottom: -50px;
}
.home-news .slick-dots li{
    background: #CE2F39;
    border-radius:50%;
    border: 1px solid #CE2F39;
}
.home-news .slick-dots li.slick-active{
    background: #FCF6ED;
    border-radius:50%;
    border: 1px solid #707070;
}
.btn-primary{
    background: #CE2F39;
    padding: 5px 40px;
    border: 1px solid #252525;
    font-size: 12px;
    color: #fff;
    position: relative;
   text-decoration: none;
   z-index: 2;
}
.btn-primary.small {
    padding: 5px 20px;
}
.btn-primary:before{
    content:'';
    position:absolute;
    top:10px;
    left:10px;
    width:100%;
    height:100%;
    background:transparent;
    border: 1px solid #252525;
    z-index: -1;
}
.btn-primary:hover{
    background: #fff !important;
    color: #CE2F39 !important;
}
.btn-primary:hover:before{
    background-color: #CE2F39 !important;
}
#google_translate_element {
    position: absolute;
    top: 0px;
    right: 0px;
}
.btn-primary:after{
    content: '';
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    height: 100%;
    background: #CE2F39;
    z-index: -1;
}

.btn-primary:hover:after{
    background: #fff !important;
    color: #CE2F39 !important;
}

.btn-secondary{
    background: #fff;
    padding: 5px 40px;
    border: 1px solid #252525;
    font-size: 12px;
    color: #252525;
    position: relative;
    z-index:9;
}
.btn-secondary-container{
    position: relative;
    width: fit-content;
}
.btn-secondary-container .shadow-elem{
    position: relative;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    transform: translate(10px, 10px);
    background:transparent;
    border: 1px solid #252525;
}
.home-testimonies{
    margin-bottom: 160px;
}

.home-testimonies .slick-slide-testimonies-item{
    text-align: center;
}
.home-testimonies .slick-slide-testimonies-item img{
    width:240px;
    height:240px;
    border-radius: 50%;
    object-fit:cover;
    margin: 0 auto;
}
.home-testimonies .slick-slide-testimonies-text h1{
    font-size: 36px;
    margin-top: 30px;
    margin-bottom:0;
}
.home-testimonies .slick-slide-testimonies-text h3{
    font-size: 21px;
    margin-top: 5px;
    margin-bottom:0;
    font-weight:300;
}
.home-testimonies .slick-slide-testimonies-text p{
    font-size:16px;
    margin-top: 5px;
    margin-bottom:0;
    font-weight:300;
}
.home-testimonies .slick-slide-testimonies-text .p1{
    margin-bottom: 30px;
}
.home-testimonies .slick-arrow .arrow-right{
    width: 100px;
    height: 100px;
    border-right: 2px solid #CE2F39;
    border-bottom: 2px solid #CE2F39;
    transform: rotate(-45deg);
}
.home-testimonies .slick-arrow .arrow-left{
    width: 100px;
    height: 100px;
    border-right: 2px solid #CE2F39;
    border-bottom: 2px solid #CE2F39;
    transform: rotate(135deg);
}
.home-testimonies .slick-arrow:before{
    display:none;
}
.slick-slide-headliners .slick-prev,
.slick-slide-gallery .slick-prev,
.home-testimonies .slick-prev{
    left: -80px;
    top: calc(50% - 40px);
}

.slick-slide-gallery .slick-next,
.slick-slide-headliners .slick-next,
.home-testimonies .slick-next{
    right: 0px;
    top: calc(50% - 40px);
}
.home-testimonies .slick-dots{
    bottom: -50px;
}
.home-testimonies .slick-dots li{
    background: #CE2F39;
    border-radius:50%;
    border: 1px solid #CE2F39;
}
.home-testimonies .slick-dots li.slick-active{
    background: #FCF6ED;
    border-radius:50%;
    border: 1px solid #707070;
}
.home-what-happening{
    margin-bottom:160px;
}
.home-what-happening .section-title {
    margin-left:0;
    color: #CE2F39;
    text-transform: uppercase;
    font-family: 'Krona One', sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
}
@media (min-width: 1024px) {
    .home-what-happening .section-title {
        font-size: 36px;
    }
}
.home-what-happening .row:not(:last-child){
    margin-bottom:30px;
}
.home-what-happening img{
    width:100%;
    height: 350px;
    object-fit:cover;
    border: 1px solid #707070;
    position:relative;
}
.home-what-happening .img-container{
    position:relative;
    padding-right:20px;
    padding-bottom: 20px;
}
#box-geral-map {
    position: absolute;
    width: 450px;
    height: 255px;
    top:50%;
    left:50%;
    background-color: #f8f6f6;
    padding: 15px;
    transform: translate(-50%,-50%);
    display: none;
}
#box-geral-map.active {
    display: block;
}
.box-content-map {
    position: absolute;
    width: 450px;
    height: 255px;
    top:0;
    left:0;
    z-index: 1;
    background-color: #f8f6f6;
    padding-top: 40px;
    border: 1px solid;
    overflow-y: scroll;
}
.box-content-map .header .close::after{
    content:"";
    position: absolute;
    height: 2px;
    width: 20px;
    background-color: #fff;
    top:14px;
    transform: rotate(45deg);
}
.box-content-map .header .close::before{
    content:"";
    position: absolute;
    height: 2px;
    width: 20px;
    background-color: #fff;
    top:14px;
    transform: rotate(-45deg) ;
}
.box-content-map .header .close{
    position: absolute;
    width: 30px;
    height: 30px;
    top: 2px;
    cursor: pointer;
    right: 2px;
}
.box-content-map .header {
    background: #CE2F39;
    padding: 5px 10px;
    color: white;
    text-transform: uppercase;
    font-family: 'Krona One', sans-serif;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.box-content-map .organzation-item {
    padding: 5px 10px;
}
.box-content-map .organzation-item .small-info{
    font-size: 70%;
}
.box-content-map .organzation-item .organizarion-name{
    font-family: 'Krona One', sans-serif;
    font-weight: 500;
    font-size: 13px;
}
#memberMap {
    filter: blur(0px);
    transition: filter 100ms ease-in-out;
}
#memberMap.inative {
    filter: blur(5px);
    pointer-events: none;
}
.div-with-effect {
    position: absolute;
    width: 445px;
    height: 250px;
    z-index: 0;
}

.row.members-list {
    display: grid;
    grid-template-columns: 0.85fr 50px 1.15fr;
}
.calendar {
    padding: 90px 0px;
}
.fc .fc-button-primary,
.fc-h-event {
    background-color: #CE2F39;
    border-color: #000;
}

.fc-col-header-cell-cushion:hover,
.fc-daygrid-day-number:hover,
.fc-col-header-cell-cushion,
.fc-daygrid-day-number {
    color: #CE2F39;
    text-decoration: none;
    font-weight: 400;
}
.fc-toolbar-title:hover,
.fc-toolbar-title {
    color: #CE2F39;
}
.fc .fc-button-primary:hover,
.fc-today-button.fc-button-primary,
.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
    color:#CE2F39;
    background-color: antiquewhite;
}
.fc .fc-highlight {
    background-color: antiquewhite;
}
.div-with-effect::before,
.home-what-happening .img-container:before{
    content: '';
    width:calc(100% - 20px);
    height:calc(100% - 20px);
    position:absolute;
    left:0;
    top:0;
    border: 1px solid #707070;
    transform: translate(20px, 20px);
}
.home-what-happening .col-md-5{
    display:flex;
}
.home-video{
    margin-bottom:100px;
}
.home-video .section-title{
    margin:0;
    width:100%;
    text-align:center;
    text-transform:uppercase;
    font-size: 48px;
    font-family: 'Krona One', sans-serif;
}
.home-video .img-background{
    height:100vh;
    width:100%;
    position:relative;
    background-size: cover;
    background-position: center;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top: 40px;
}
.home-video .img-background .img-opacity{
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
    background: rgba(0,0,0,0.6);
}
.home-video .img-background .video-play{
    width:380px;
    height:380px;
    border: 2px solid #CE2F39;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    color:#fff;
    z-index: 2;
}
.home-video .img-background .video-play .fa{
    font-size: 120px;
}
.home-video .img-background .video-play h3{
    position:absolute;
    width:100%;
    text-align:center;
    bottom: 30px;
    color:#fff;
    font-family: 'Krona One', sans-serif;
    font-size:24px;
}
.home-video .img-background .video-play .shadow-elem{
    position:absolute;
    left:20px;
    top:20px;
    width:calc(100% + 4px);
    height:calc(100% + 4px);
    border: 2px solid #fff;
    z-index: 1;
}

.home-video .img-background .video-play:hover{
    background: #CE2F39;
    z-index: 999;
}
.home-register{
    margin-bottom:100px;
}
.home-register .section-title{
    font-size:36px;
    margin:0;
    font-family: 'Outfit', sans-serif;
}
.home-register h2{
    font-size:90px;
    font-family: 'Krona One', sans-serif;
    text-transform: uppercase;
}
.home-register h3{
    font-size:14px;
    font-family: 'Krona One', sans-serif;
    text-transform: uppercase;
    margin-top: 10px;
}
.home-register .btn-col{
    display:flex;
    align-items: end;
    justify-content: end;
}
.home-newsletter{
    padding:100px 0;
    background: #CE2F39;
}
.home-newsletter .section-title{
    font-size:36px;
    margin:0;
    font-family: 'Outfit', sans-serif;
    color:#fff;
}
.home-newsletter h2{
    font-size:60px;
    font-family: 'Krona One', sans-serif;
    text-transform: uppercase;
    color:#fff;
}
.home-newsletter .checkbox-container{
    color: #fff;
}
.home-newsletter .checkbox-container a{
    color: #fff;
}
.form-floating input.form-control{
    padding: 5px 0;
    height: 40px;
    border: 0;
    border-bottom: 1px solid #DEDEDE;
    border-radius: 0;
}
.form-floating input.form-control:focus{
    outline:0;
    box-shadow: none;
}
.form-floating label{
    padding: 5px 0;
    padding-top: 15px;
}
.form-floating>.form-control-plaintext~label, .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
    opacity: .65;
    transform: scale(.85) translateY(-1.4rem) translateX(0rem);
}
.form-floating>.form-control-plaintext:focus, .form-floating>.form-control-plaintext:not(:placeholder-shown), .form-floating>.form-control:focus, .form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.2rem;
    padding-bottom: 0.8rem;
}
.form-floating{
    padding-top:5px;
}
.home-newsletter .form-floating{
    color: #fff;
}
.home-newsletter .form-floating input.form-control{
    border-color: #fff;
    background: transparent;
}
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 45px;
    margin-top: 31px;
    line-height: 2.2;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.pagination-links {
    display: flex;
    gap:10px;
}

.pagination-links a {
    color: #b8b8b8;
    border: 1px solid #b8b8b8;
    padding: 2px 10px !important;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px !important;   
}

.pagination-links a:hover {
    color: #fff;
    border: 1px solid #000;
    background-color: #CE2F39;
}
.pagination-links strong {
    color: #fff;
    border: 1px solid #000;
    padding: 2px 10px;
    background-color: #CE2F39;
}

.page-info {
    color: #838383 !important;
}

.pointer {
    cursor: pointer;
}
/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border: 1px solid #707070;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 11px;
  top: 8px;
  width: 5px;
  height: 10px;
  border: solid #CE2F39;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox-container a{
    color: #252525;
}
footer{
    height: 200px;
}

footer .container{
    border-top: 1px solid #CE2F39;
}
footer .col-md-3{
    padding: 0 60px;
    display:flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    position:relative;
}
footer .developed-by{
    position:absolute;
    right:0;
}
footer .col-md-3 img{
    width: 100%;
}
footer .fa{
    font-size: 30px;
    margin-right: 20px;
}
footer a{
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #252525;
}
footer a:hover{
    color: #CE2F39;
}
footer p{
    margin-bottom:0;
    font-size: 11px;
    margin-top:10px;
}

.page-title{
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 160px;
    width: fit-content;
    display: flex;
    align-items: center;
    position: relative;
}
.page-title h1{
    width: fit-content;
    font-family: 'Krona One', sans-serif;
    font-size: 75px;
    text-transform: uppercase;
    margin:0;
    margin-left:10px;
}
.page-title img{
    width: 230px;
    height: 170px;
    object-fit: cover;
}
.page-title .page-title-arrow{
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #EFEFEF;
}
.page-title .page-title-arrow .title-arrow{
    position: absolute;
    left: 50%;
    height: 100px;
    width: 2px;
    background: #efefef;
    position:relative;
}
.page-title .page-title-arrow .title-arrow:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    width: 15px;
    height: 15px;
    border-left: 2px solid #efefef;
    border-bottom: 2px solid #efefef;
    transform: rotate(-45deg);
}
.page-title2{
    margin-bottom: 60px;
}
.history-sections{
    margin-bottom:160px;
    margin-top:-50px;
}
.row-flex-4 {
    display: flex;
}
.row-flex-4 .item{
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 20%;
    width: 20%;
}
.list-image-strategies {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex: 0 auto;

    justify-content: center;
    /* NEW; center flex items horizontally */
    align-items: center;
    /* NEW; center single-line flex items vertically */
    align-content: center;
    gap:10px
}
.list-image-strategies .item{
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 125px;
    width: 125px;
}
.partners-list .item {
    cursor: pointer;

}
.history-sections .item:first-child {
    padding-top: 0px;
}
.history-sections .item {
    padding-top: 150px;
}
.history-sections .item .description,
.history-sections .item .img-container,
.history-sections .item .close {
    display: none;
}
.history-sections .item .read {
    display: inline;
}
.history-sections .item.active .description,
.history-sections .item.active .img-container,
.history-sections .item.active .close {
    display: inline;
}
.history-sections .item.active .read {
    display: none;
}
.strategies-sections .item .description,
.strategies-sections .item .close {
    display: none;
}
.strategies-sections .item .read {
    display: inline;
}
.strategies-sections .item.active .description,
.strategies-sections .item.active .close {
    display: inline;
}
.strategies-sections .item.active .read {
    display: none;
}
.bold {
    font-weight: bold;
}
.memberCountry {
    color:#000;
    font-size: 18px;
}
.memberLink {
    color:#808080;
    font-size: 18px;
}
.memberLink a{
    color:#CE2F39;
}
.memberLink a:hover{
    color:#872027;
}
.social {
    display: flex;
    gap:20px;
    justify-content: end;
    margin-top: 30px;
    align-items: center;
}

.social a{
    color:#000;
    font-size: 20px;
}
.without-line-before-after,
.line-before-after {
    margin-top: 140px;
    position: relative;
    margin-bottom: 50px;
}
.line-after {
    position: relative;
    margin-top: 30px;
    margin-bottom: 50px;
}
.line-after::after {
    content:'';
    position: absolute;
    height: 140px;
    width: 1px;
    background-color: #898989;
    bottom: -170px;
    left: 50%;
    transform: translateX(-50%);
}
.line-after-horizontal:last-child::after,
.line-after:last-child:after {
    display: none;
}
.line-before-after::after {
    content:'';
    position: absolute;
    height: 140px;
    width: 1px;
    background-color: #898989;
    bottom: -170px;
    left: 50%;
    transform: translateX(-50%);
}
.line-before-after::before {
    content:'';
    position: absolute;
    height: 90px;
    width: 1px;
    background-color: #898989;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
}
.partners-list .item img {
    filter: grayscale(1) opacity(0.75);
    transition: all 300ms ease-in-out;
}
.partners-list .item:hover img {
    filter: none;
}
.gap40 {
    gap: 40px;
}
.team-sections{
    margin-bottom:80px;
}
.cases-sections{
    margin-bottom:80px;
}
.w-90 {
    width: 90%;
}
.cases-sections .section-title,
.team-sections .section-title{
    margin-left:0;
}
.cases-sections .row:not(:last-child),
.team-sections .row:not(:last-child){
    margin-bottom: 80px;
}
.cases-sections img,
.team-sections img{
    width:100%;
    height: 350px;
    object-fit:cover;
    border: 1px solid #707070;
    position:relative;
}
.cases-sections .img-container,
.team-sections .img-container{
    position:relative;
    padding-right:20px;
    padding-bottom: 20px;
}
.cases-sections .img-container:before,
.team-sections .img-container:before{
    content: '';
    width:calc(100% - 20px);
    height:calc(100% - 20px);
    position:absolute;
    left:0;
    top:0;
    border: 1px solid #707070;
    transform: translate(20px, 20px);
}
.cases-sections .col-text,
.team-sections .col-text{
    display:flex;
    align-items:center;
    height: 100%;
}
.cases-sections .col-text.col-left,
.team-sections .col-text.col-left{
    display:flex;
    align-items:center;
    justify-content: end;
    height: 100%;
}
.cases-sections .col-text h1,
.team-sections .col-text h1{
    text-transform:uppercase;
    font-family: 'Krona One', sans-serif;
    font-size:36px;
    margin-top: -25px;
}
.cases-sections .col-text.col-right .team-line,
.team-sections .col-text.col-right .team-line{
    height: 2px;
    background: #efefef;
    width: 50%;
    margin-right: 10px;
    margin-left: -25px;
}
.cases-sections .col-text.col-left .team-line,
.team-sections .col-text.col-left .team-line{
    height: 2px;
    background: #efefef;
    width: 50%;
    margin-left: 10px;
    margin-right: -15px;
}

.block-new-inside .date,
.block-new .date{
    color: #BEBEBE;
    font-size: 18px;
}

.block-new-inside .category,
.block-new .category{
    color: #CE2F39;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.block-new {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #BEBEBE;
}
.gap15 {
    gap:15px;
}
.team-table-section{
    margin-top: 80px;
    margin-bottom: 160px;
}
.team-table thead th{
    border: 1px solid #BEBEBE;
    border-top:0;
    border-bottom: 0;
}
.team-table thead th:last-child{
    border-right:0;
}
.team-table thead th:last-child .line-bottom{
    border-right: 1px solid #BEBEBE;
    width: calc(100% + 1px);
}
.team-table thead th h2{
    padding: 40px 30px;
    font-family: 'Krona One', sans-serif;
    font-size: 18px;
    margin: 0;
}
.team-table thead th .line-bottom{
    width:100%;
    height: 15px;
    border-top: 1px solid #BEBEBE;
}
.team-table thead th .line-top{
    width:calc(100% - 95px);
    border-top: 1px solid #BEBEBE;
    position:relative;
}
.team-table thead th .line-top:after{
    content: "";
    width: 118px;
    height: 1px;
    display: block;
    background: #BEBEBE;
    position: absolute;
    right: -89px;
    top: 50px;
    transform: rotate(60deg);
}
.team-table tbody td{
    padding: 30px;
    border: 1px solid #BEBEBE;
    vertical-align: top;
    font-family: 'Outfit', sans-serif;
}

.become-section{
    margin-bottom: 100px;
}

.become-section .flex-space{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.become-section .flex-space p{
    width: unset;
}

.become-section .section-title{
    margin:0;
    width:100%;
    text-align:center;
    text-transform:uppercase;
    font-size: 48px;
    font-family: 'Krona One', sans-serif;
    margin-bottom: 40px;
}

.become-text-section h3{
    letter-spacing: 0.9px;
    font-size: 36px;
    color:#252525;
}


.become-text-section p{
    letter-spacing: 0.4px;
    font-size: 16px;
    color:#252525;
    margin-bottom: 60px;
}

.become-text-section h6{
    letter-spacing: 0.4px;
    font-size: 18px;
    color:#CE2F39;
    font-weight: 400;
    margin-bottom: 3px;
    font-family: 'Krona One', sans-serif;
}

.become-text-section h2{
    letter-spacing: 0.4px;
    font-size: 48px;
    color:#252525;
    font-weight: 400;
    font-family: 'Krona One', sans-serif;
}

.become-text-section .small-p{
    letter-spacing: 0.4px;
    font-size: 14px;
    font-weight: 500;
    color:#252525;
    margin-bottom: 60px;
}

.become-text-section .big-text{
    letter-spacing: 0.4px;
    font-size: 300px;
    font-weight: 400;
    color:#CE2F39;
    line-height: 0.9;
    font-family: 'Krona One', sans-serif;
}

.big-events{
    width: 100%;
    height: 330px;
    margin-bottom: 84px;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
}


.big-events h1{
    text-align: center;
    font-family: 'Krona One', sans-serif;
    font-size: 75px;
    color:#CE2F39;
    text-transform: uppercase;
}

.event-section .img-container{
    position:relative;
    padding-right:20px;
    padding-bottom: 20px;
}

.event-section .img-container:before{
    content: '';
    width:calc(100% - 20px);
    height:calc(100% - 20px);
    position:absolute;
    left:0;
    top:0;
    border: 1px solid #707070;
    transform: translate(20px, 20px);
    z-index: -1;
}

.event-section .img-container img{
    width: 100%;
}

.event-section h3{
    font-family: 'Krona One', sans-serif;
    font-size: 36px;
    color:#000000;
    font-weight: 400;
}

.event-section .event-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 76px;
}

.event-section p {
    font-family: 'Krona One', sans-serif;
    font-size: 22px;
    color:#252525;
    font-weight: 400;
}

.event-section .event-date p {
    font-family: 'Krona One', sans-serif !important;
    font-size: 36px;
    color:#CE2F39;
    font-weight: 400;
    margin-bottom: 0px;
}

.event-section .event-date span{
    width: 100px;
    height: 1px;
    background-color: #BEBEBE;
}

.pl-100{
    padding-left: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.download-files{
    background-color: #FCF6ED;
    padding-top: 30px;
    padding-bottom: 30px;
}

.download-files h2{
    max-width: 330px;
    color:#000000;
    font-family: 'Krona One', sans-serif;
    font-size: 36px;
     font-weight: 400;
}

.download-files .documents{
    border-bottom: solid 1px #BEBEBE;
    padding-top: 25px;
    padding-bottom: 35px;
    
}

.download-files h4{
    font-size: 36px;
    color:#CE2F39;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
}

.download-files p{
    font-size: 21px;
    font-weight: 300;
    margin-bottom: 0px;
    font-family: 'Outfit', sans-serif;
}
.headliners {
    text-align: center;
}

.headliners img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 500px;
    margin: 0 auto;
    margin-bottom: 24px;
}

.headliners h2 {
    font-size: 36px;
    color: #252525;
    line-height: 45px;
    font-family: 'Outfit', sans-serif;
}

.headliners h4 {
    font-size: 21px;
    color: #252525;
    line-height: 26px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}

.headliners h5 {
    font-size: 16px;
    color: #252525;
    font-weight: 300;
    line-height: 20px;
    font-family: 'Outfit', sans-serif;
}

.event-gallery{
    padding-top: 60px;
    padding-bottom: 60px;
}

.event-gallery .slick-slide-gallery-item {
    margin-right:20px;
}

/* .event-gallery .slick-slide-gallery {
      margin: 0 20px;
  } */
  
  .slick-slide-gallery .slick-slide img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

  
.event-gallery .slick-arrow .arrow-right{
    width: 100px;
    height: 100px;
    border-right: 2px solid #CE2F39;
    border-bottom: 2px solid #CE2F39;
    transform: rotate(-45deg);
}
.event-gallery .slick-arrow .arrow-left{
    width: 100px;
    height: 100px;
    border-right: 2px solid #CE2F39;
    border-bottom: 2px solid #CE2F39;
    transform: rotate(135deg);
}
.event-gallery .slick-arrow:before{
    display:none;
}
.slick-slide-headliners .slick-prev,
.event-gallery .slick-prev{
    left: -80px;
    top: calc(50% - 40px);
}
.event-gallery .slick-next{
    right: 0px;
    top: calc(50% - 40px);
}
.event-gallery .slick-dots{
    bottom: -50px;
}
.event-gallery .slick-dots li{
    background: #CE2F39;
    border-radius:50%;
    border: 1px solid #CE2F39;
}
.event-gallery .slick-dots li.slick-active{
    background: #FCF6ED;
    border-radius:50%;
    border: 1px solid #707070;
}

.event-table{
    margin-top: 70px;
}

.event-table td{
    padding:0px !important;
}

.event-table .btn-table{
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    border: none;
}

.text-statutes p {
    margin-bottom: 20px;
}

.text-statutes h2,
.text-statutes h3 {
    color: #CE2F39;
    font-weight: 400;
    font-family: 'Krona One', sans-serif;
    margin: 0 0 24px 0;
}

.text-statutes h2 {
    padding-top: 63px;
    font-size: 22px;
    line-height: 1.4;
}

.text-statutes h3 {
    padding-top: 40px;
    font-size: 18px;
    line-height: 1.4;
}

.text-statutes ol,
.text-statutes ul {
    margin: 0 0 20px 30px;
    padding-left: 20px;
}

.text-statutes li {
    margin-bottom: 14px;
    line-height: 1.7;
}

.text-statutes li > ol,
.text-statutes li > ul {
    margin-top: 14px;
    margin-bottom: 14px;
}

.text-statutes ol[type="a"] {
    margin-left: 25px;
}

.text-statutes ol[type="A"] {
    margin-left: 25px;
}

.text-statutes strong {
    font-weight: 600;
}

.text-statutes > p:first-child {
    margin-bottom: 30px;
}

.big-events-nav {
    display: flex;
    margin-top: 80px;
    margin-bottom: 80px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.big-events-nav ul{
     list-style-type: none;
     width: 100%;
     text-align: center;
}

.big-events-nav ul li
{
  display: inline;
  list-style-type: none;
  padding-right: 30px;
  padding-left: 30px;
}

.big-events-nav ul li a
{
  font-weight: 400;
  font-size: 12px;
  font-family: 'Krona One', sans-serif;
  color: #252525;
  text-decoration: none;
  text-transform: uppercase;
}

.big-events-nav ul li a:hover
{
  color: #CE2F39;
}

.statements-header {
    padding: 20px 30px;
    padding-right: 100px;
    font-family: 'Krona One', sans-serif;
    font-size: 16px;
    margin: 0;
    height: 100px;
    position: relative;
}



.statements-description{
    border-left: 1px solid #BEBEBE;
    border-bottom: 1px solid #BEBEBE;
    padding: 30px;
    vertical-align: top;
    font-family: 'Outfit', sans-serif;
}

#row-height .col:last-child .statements-description {
    border-right: 1px solid #BEBEBE;
}

.statements-header:after {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 80%;
    background-color: inherit;
    border: 1px solid #BEBEBE;
    -webkit-transform: skewX(20deg);
    -moz-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
    border-left: 0px;
  }
  
  .statements-header:before {
    -webkit-transform: skewX(0deg);
    -moz-transform: skewX(0deg);
    -ms-transform: skewX(0deg);
    transform: skewX(0deg);
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: inherit;
    border: 1px solid #BEBEBE;
    border-right:0px;
    border-top:0px;
  }
  
  .news-title {
      font-weight: 400 !important;
      font-family: 'Outfit', sans-serif !important;
      font-size: 36px !important;
      text-transform: unset !important;
  }
  
  .members-list {
      font-family: 'Outfit', sans-serif !important;
      line-height: 23px;
  }
  
  .item-partner {
      margin-bottom: 50px;
      text-decoration: none !important;
  }
  
  .item-partner .name-partner {
      text-align: center;
      
      font-family: 'Outfit', sans-serif !important;
      line-height: 16px;
      color: #000000;
      
  }
  
  .category-description p{
      font-family: 'Outfit', sans-serif !important;
      line-height: 16px !important;
      color: #252525 !important;
      font-weight: 300 !important;
  }
  
  .statements-line{
      height: 15px;
      width: 100%;
      border:1px solid #BEBEBE;
       border-right: 0px;
      border-top:0px;
  }
  
  #row-height {
      margin: 0px;
  }
  
  #row-height .col:last-child .statements-line {
    border-right: 1px solid #BEBEBE;
}
  
#row-height .col {
    padding: 0;
}
.main-header .header-left .menu-mobile {
display: none;
}
.shareHeader {
    display: none;
}

.light-font {
    font-weight: 300;
}

.team-title {
    font-family: 'Krona One', sans-serif;
    font-size: 36px !important;
    text-transform: uppercase;
    color: #CE2F39 !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.team-item h4 {
    font-size: 16px;
    color: #252525;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 400;
}

.team-item img {
    height: 276px;
    object-fit: cover;
}

.team-item p {
    font-size: 16px;
    color: #646464 !important;
    margin-top: 40px;
    margin-bottom: 6px;
    font-weight: 400;
    line-height: 26px;
}
footer {
    display: flex;
    align-items: center;
}
footer .container {
    border-top: none;
}
footer .container img{
    max-width: 100%;
}
.team-item p span {
    color: #252525;
}

.team-item p a {
    color: #CE2F39;
    text-decoration: none;
}

.team-item .team-twitter {
    font-size: 16px;
    display: flex;
    align-items: center;
    color: #CE2F39;
    margin-bottom: 64px;
}

.team-item .team-twitter i {
    margin-right: 5px;
    color: #252525;
}

.team-from {
    font-size: 20px;
    color: #252525;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Krona One', sans-serif;
}

input:focus + label.error {
    display: none !important;
}
label.error {
    position: absolute;
    bottom: -30px;
    width: 100%;
    font-size: 10px;
    top: auto;
    left: 0px;
    right: auto;
}
#loginForm label.error {
    bottom: -50px;
}
#RGPD-error {
    bottom: -20px;

}
#newsletterForm input:-webkit-autofill,
#newsletterForm input:-webkit-autofill:hover, 
#newsletterForm input:-webkit-autofill:focus{
    -webkit-box-shadow: 0 0 0 30px #ce2f39 inset !important;
    -webkit-text-fill-color: #ffffff !important;
}
.section-title.red-title {
    color:#CE2F39;
    font-size: 22px !important;
    font-weight: 400;
}

.item.line-after-horizontal {
    position: relative;
    margin-top: 30px;
    margin-bottom: 0px;
    padding-top: 90px;
}
.item.line-after-horizontal::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    background-color: #898989;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}


.home-banner.hub .home-banner-text {
    width: 50%;
    bottom: 50%;
    transform: translateY(50%);
}

.home-banner.hub .home-banner-text h3 {
    text-align: left;
    font-family: 'Outfit',
        sans-serif;
    font-size: 36px;
    letter-spacing: 0.9px;
    color: #252525;
    text-transform: uppercase;
    opacity: 1;
    font-weight: 400;
}
.squareBlocks .title-category {
    text-align: left;
    font: normal normal normal 22px/92px Krona One;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
    opacity: 1;
}
.squareBlocks .date {
    text-align: left;
    font: normal normal 300 28px/40px Outfit;
    letter-spacing: 0px;
    color: #CE2F39;
    text-transform: uppercase;
    opacity: 1;
    min-height: 50px;
}
.squareBlocks .item {
    padding: 20px;
}
.squareBlocks .title {
    text-align: left;
    font: normal normal normal 36px/40px Krona One;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
    opacity: 1;
    min-height: 70px;
}
.squareBlocks .description {
    text-align: left;
    font: normal normal 300 16px/24px Outfit;
    letter-spacing: 0.4px;
    color: #252525;
    opacity: 1;
}
.squareBlocks .image {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 30px;
    background-color: #fff;
    border: 1px solid;
}


.squareBlocks .image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 15px;
    border: 1px solid;
    top: 15px;
    z-index: -1;
}

@media only screen and (max-width: 1568px) {
    .home-banner {
        background-size: 75%;
    }
    footer {
        height: auto;
        overflow: hidden;
    }
    #video-image,
    iframe {
        aspect-ratio: 16 / 9;
        width: 100%;
        /* change this to a fixed width, or create a container with a width. */
        height: 100%;
    }
    .home-register h2 {
            font-size: 70px;
    }
    .home-video .section-title {
        font-size: 36px;
    }
    h1.section-title {
        font-size: 30px !important;
    }
    h3.section-title {
        font-size: 18px;
    }
    .last-news,
    .event-section p {
        font-size: 16px;
    }

    .slick-slide-gallery .slick-arrow .arrow-left,
    .slick-slide-gallery .slick-arrow .arrow-right,
    .slick-slide-headliners .slick-arrow .arrow-left,
    .slick-slide-headliners .slick-arrow .arrow-right,
    .home-testimonies .slick-arrow .arrow-left,
    .home-testimonies .slick-arrow .arrow-right,
    .home-news .slick-arrow .arrow-right,
    .home-news .slick-arrow .arrow-left {
        width: 50px;
        height: 50px;
    }

    .slick-slide-testimonies .slick-prev,
    .slick-slide-gallery .slick-prev,
    .slick-slide-headliners .slick-prev,
    .home-testimonies .slick-prev,
    .home-news .slick-prev {
        left: -35px;
    }
        .headliners img {
            width: 200px;
            height: 200px;
        }
    .slick-slide-gallery,
    .home-testimonies .slick-slide-testimonies,
    .slick-slide-headliners,
    .home-news .slick-slide-news {
        margin: 0 50px;
    }
    .home-banner .home-banner-follow {
        font-size: 28px;
    }

    .home-banner .home-banner-text h3 {
        font-size: 32px;
        
    }

    .home-banner .home-banner-text h1 {
        font-size: 70px;
    }
   
    footer .col-lg-3 {
        text-align: center;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    footer .row {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
@media only screen and (max-width: 1380px) {
    .home-newsletter h2 {
            font-size: 40px;
    }
    .home-news .slick-prev {
        left: -55px;
    }
    .home-news .slick-next {
        right: -25px;
    }
}
@media only screen and (max-width: 768px) {
    .header-right .header-link {
        display: none;
    }
    .page-title img {
        margin:auto;
    }
    .page-title h1 {
        text-align: center;
    }
    .title-events {
        margin-top: 30px;
        margin-bottom: 60px;
    }
    #row-height .col {
        margin-top: 100px;
    }
    footer .col-lg-3 {
        text-align: center;
        padding:15px 0px;
    }
    .home-news .slick-slide-news-item img {
        height: 300px;
    }

    
    .shareHeader {
        display: block ;
    }
    .main-header .header-time {
        display: none;
    }
    .main-header .header-left {
        display: flex;
        gap:30px;
        align-items: center;
        flex-direction: row-reverse;
        width: 100%;
        justify-content: space-between;
    }

    .main-header .header-left .menu-mobile{
        position: relative;
        width: 30px;
        height: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .main-header .header-left .menu-mobile span{
        height: 2px;
        background-color: #000;
        width: 100%;
    }
    .main-header .header-center {
        left: -520px;

    }
    .main-header .header-right {
        min-width: 0;
    }
    .main-header .header-left img {
        max-width: 300px;
    }
    .main-header {
        height: 120px;
    }
    .main-header .header-lang-time {
        margin-right: 0px;
    }
    .page-title {
        flex-direction: column;
        gap:20px
    }
    .page-title h1 {
        font-size: 35px;
    }
    .main-header .header-center ul{
        display: flex;
        flex-direction: column;
        justify-content: start;
        width: 100vw;
        padding: 5px 15px;
    }
    .main-header .header-menu li {
        text-align: left;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .main-header .header-center.active {
        display: flex;
        /* position: absolute; */
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background: #CE2F39;
        z-index: 15;
                transition: left 300ms ease-in;
    }
    .main-header .header-menu li a,
    .main-header .header-menu li .dropdown-title,
    .main-header .header-link {
        color:white;
        font-size: 14px;
    }
    .main-header .header-menu .header-dropdown-container {
        position: relative;
        width: 100vw;
    }
    
    .main-header .header-menu .has-dropdown {
        position: relative;
        flex-direction: column;
    }
    .main-header .header-menu .has-dropdown:hover .dropdown-title {
        color: #fff;
        transform: none;
    }
    .main-header .header-menu li{
        padding: 10px 0px;
    }
    .main-header .header-menu .header-dropdown-container {
        position: relative;
        top: 0px;
        left: -15px;
        width: 300px;
    }
    .main-header .header-center ul {
        width: 100vw;
    }
    .main-header .header-menu .header-dropdown-container{
        display: flex;
    }
    .main-header .header-menu .header-dropdown {
        border: none;
    }
    .main-header .header-menu .header-dropdown-container .invisible-elem{
        display: none;
    }
    .main-header .header-menu .header-dropdown li a {
        font-size: 12px;
        font-family: 'Outfit', sans-serif !important;
        width: 100%;
        padding: 5px 15px;
    }

    .main-header .header-menu .header-dropdown li {
        padding: 0px;
    }

    .main-header .header-menu {
        background: #ce2f39;
    }

    .main-header .header-menu li .dropdown-title {
        margin-top: 5px;
    }

    .main-header .header-center {
        padding-top: 80px;
        position: fixed;
    }

    .main-header .header-left .menu-mobile {
        z-index: 30;
    }

    .main-header .header-center ul {
        overflow-y: scroll;
        padding-bottom: 40px;
    }

    .main-header .header-left .menu-mobile span {
        transition: all 300ms;
    }

    .main-header .header-left .menu-mobile.close span {
        background-color: #fff;
    }

    .main-header .header-left .menu-mobile.close span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .main-header .header-left .menu-mobile.close span:nth-child(2) {
        display: none;
    }

    .main-header .header-left .menu-mobile.close span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .shareHeader {
        font-size: 12px;
        color: #fff;
        margin-top: 10px;
        margin-bottom: 60px;
    }

    .social {
        justify-content: start;
        margin-top: 0px;
        color: #fff;
    }

    .social a {
        color: #fff;
    }
    .big-events-nav ul li {
        display: inline;
        list-style-type: none;
        padding-right: 10px;
        padding-left: 10px;
    }
    .col-lg-6.pl-100.block-festival {
        padding-left: 10px;
        padding-top: 40px;
    }
    .slick-slide-gallery .slick-slide img {
        height: 200px;
    }
    .home-news .slick-slide-news {
    margin: 0px;
    }
    .news-flex .news-block-list {
    width: calc(100%);
    flex: 1 1 calc(100%);
    }
    .news-flex {
    gap:40px;
    }
    .news-filter .col-md-12:nth-child(1),
    .news-filter .col-md-12:nth-child(2) {
        display: none;
    }
    .statements-line {

        border-right: 1px solid #BEBEBE;
    }
    .statements-description {
        height: auto !important;
            border-right: 1px solid #BEBEBE;
    }
    #row-height .col {
        flex: 1 0 100%;
    }
    .team-sections .col-text h1 {
        font-size: 26px;
    }
    .item-partner {
        margin-bottom: 0px;
    }
    .partners-section .col-md-3.mb-5 {
        margin-bottom: 0px;
    }

}
@media only screen and (max-width: 500px) {
    .become-section .flex-space p{
        width: 100%;
    }
    .become-section {
        margin-bottom: 30px;
    }
    .home-banner.mobileImgCenter{
        background-position: center bottom !important;
    }
}
@media only screen and (min-width: 700px) and (max-width: 768px) {
    .home-banner .home-banner-text {
        position: absolute;
        left: 0;
        bottom: auto;
        top: 150px;
        left: 50%;
        text-align: center;
        transform: translateX(-50%);
    }
    .home-banner .home-banner-text {
        width: 100%;
    }
    .home-banner-follow {
        display: none;
    }
}
@media only screen and (max-width: 700px) {
    .row.members-list {
        display: grid;
        grid-template-columns: 1fr;

    }
    .team-table-section {
        margin-top:0px;
        margin-bottom: 60px;
    }
    .slick-slide-gallery,
    .slick-slide-headliners,
    .home-news .slick-slide-news {
        margin: 0px;
    }
    .partners-section .item {
        display: flex;
        flex-direction: column-reverse;
    }
    .event-gallery {
            padding-top: 30px;
            padding-bottom: 0px;
        }
    .big-events {
        margin-bottom: 50px;
    }

      .big-events-nav {
        margin-top: 40px;
        margin-bottom: 30px;
    }
    footer .row {
            margin: 0px;
        }
    .home-register h2,
    .home-newsletter h2 {
            font-size: 30px;
    }
    .main-header .header-left img {
        max-width: 200px;
    }
    .home-register .section-title,
    .home-newsletter .section-title {
        font-size: 26px;
    }
    .big-events h1,
    .home-banner .home-banner-text h1 {
        font-size: 40px;
    }
    .slick-slide-gallery-item img {
        width: 100% !important;
    }
    .home-video .img-background .video-play {
        width: 300px;
        height: 300px;
    }
    .home-banner .home-banner-follow span {
        color:#000;
        font-family: 'Outfit', sans-serif;
        font-size: 1rem;
    }
    .home-banner .home-banner-follow a{
        display: none;
    }
    .home-banner .home-banner-follow {
        position: absolute;
        top: 30px;
        right: 50%;
        transform: translateX(50%);
    }
    .member .member-header .profile-info h1 {
        font-size: 36px;
        text-align: center;
    }
    .home-banner.hub .container {
        background-size: contain;
        height: 560px;
    }
      .home-banner.hub .home-banner-text h1 {
    font-size: 28px;
    }
    .home-banner.hub .home-banner-text h3 {
        text-align: center;
        font-size: 26px;
    }
    .main-header .header-label {
        top:118px;
    }
    .home-banner.hub .home-banner-text {
            width: 100%;
    top: 0px;
    transform: none;
        position: absolute;
        left: 0;
        bottom:250px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        width: 100vw;
        gap: 30px;
    }
    .home-banner .container {
        background-size: contain;
        height: 320px;
    }
    .home-banner .home-banner-text {
        position: absolute;
        left: 0;
        bottom: -60px;
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        width: 100vw;
        gap: 130px;
    }
    .home-banner .home-banner-text h3 {
        font-size: 13px;
        color:#CE2F39;
        margin-top: 15px;
    }
    .cases-sections img,
    .team-sections img {
        height:200px;
    }
    .team-sections {
        margin-bottom: 30px;
    }
    .text-statutes p strong,
    h1.section-title {
        font-size: 16px !important;
    }
    h2.news-title,
    h1.news-title {
        font-size: 20px !important;
    }
    .home-news .slick-slide-news-text p,
    .home-banner .home-banner-arrow .banner-arrow {
        display: none;
    }
    .home-banner {
        margin-bottom: 100px;
    }
        .event-section .img-container img
    .home-news .slick-slide-news-item img {
        height: 170px;
    }
        .event-section .img-container h1
    .home-news .slick-slide-news-text h2 {
        font-size: 16px;
        text-transform: uppercase;
        margin-bottom: 30px;
    }
    .home-what-happening img {
        height: 150px;
    }
        .cases-sections .img-container:before,
        .team-sections .img-container:before,
    .event-section .img-container:before,
    .home-what-happening .img-container:before {
        width: calc(100% - 30px);
        height: calc(100% - 30px);
    }

        .home-news .slick-slide-news-text h2,
    .event-section p,
        .event-section .event-date p,
    .event-section h3,
    .home-what-happening h3.krona {
        font-size: 1.3rem;
    }
    .event-section.pb-100{
        padding-bottom: 30px !important;
    }

    .home-what-happening .row:not(:last-child) {
        margin-bottom: 60px;
    }

    .home-what-happening {
        margin-bottom: 80px;
    }

    .slick-slide-testimonies {
        margin: 0px;
    }

        .headliners h2,
    .home-testimonies .slick-slide-testimonies-text h1 {
        font-size: 16px;
        margin-top: 20px;
        line-height: 1;
    }
         .headliners h4,
    .home-testimonies .slick-slide-testimonies-text .p1,
    .home-testimonies .slick-slide-testimonies-text h3 {
        font-size: 10px;
        line-height: 1;
    }
        .headliners h5,
    .home-testimonies .slick-slide-testimonies-text .p1 {
        color:#BEBEBE !important;
        margin-bottom: 15px;
        line-height: 1;
    }
    .home-video .section-title {
        font-size: 16px;
        color:#CE2F39;
    }
    .home-testimonies {
        margin-bottom: 120px;
    }
    #video-file,
    .home-video .img-background {
        margin-top: 20px;
    }
    .home-video .img-background .video-play {
        width: 100px;
        height: 100px;
    }
    .home-video .img-background .video-play .shadow-elem {
        left: 3px;
        top: 3px;
    }
    .home-video .img-background .video-play .fa {
        font-size: 30px;
    }
    .home-video .img-background .video-play h3 {
        bottom: 10px;
        font-size: 5px;
    }
    .home-video {
        margin-bottom: 60px;
    }
    .home-register {
        margin-bottom: 60px;
        text-align: center;
    }
    .home-newsletter {
        text-align: center;
    }
        .home-newsletter .checkbox-container {
            text-align: left;
        }
            
    .home-register .section-title,
    .home-newsletter .section-title {
        font-size: 12px;
    }
    .home-newsletter h2,
    .home-register h2{
        font-size: 36px;
        margin: 10px 0px;
    }
    .home-newsletter {
        padding: 40px 0px;
    }
    footer .col-lg-3 img {
        object-fit: contain;
        width: 100%;
        max-width: 175px;
    }
    footer .col-lg-3 {
        text-align: center;
    }
    .col-lg-6.pl-100.block-festival {
        padding-left: 10px;
        padding-top: 5px;
    }
    .event-section .event-date {
        margin-bottom: 0px;
    }
    .home-news .slick-slide-news-item img {
        height: 200px;
    }
    .page-title .page-title-arrow {
        display: none;
    }
    .page-title {
        margin-top: 100px;
        margin-bottom: 30px;
    }
    
    .news-flex {
        gap:0px
    }
    .memberCountry {
        color: #000;
        font-size: 18px;
        text-align: left !important;
        margin-top: 20px;
    }
    .btn-list-join {
        display: flex;
        flex-direction: column;
    }
    .btn-list-join a{
        margin-right:40px;
    }
    .statements-description {
        height: auto !important;
    }
    .team-sections .col-text h1 {
        font-size: 16px;
        margin-top:0px;
    }
    .team-sections .container .row:nth-child(2n){
        display: flex;
        flex-direction: column-reverse;
    }
    .team-sections .col-text.col-left {
        flex-direction: row-reverse;
    }
    .headliners img {
        width: 200px !important;
        height: 200px;
    }
    .home-news {
        margin-bottom: 60px;
    }
    .team-sections .mobile-reverse-none {
        flex-direction: row !important;
    }
    
    .fc .fc-toolbar {
        display: block;
        text-align: center;
    }
    
    .fc-toolbar-chunk, .fc-toolbar-title {
        padding: 10px;
    }
}

.twitter-timeline {
   max-height: 500px;
    max-width: 330px !important;
   overflow-y: scroll;
}

.news-description {
    font-weight: 300 !important;
    font-family: 'Outfit', sans-serif;
    color: #252525;
    margin-bottom: 20px;
}

.news-description p{
    font-weight: 300 !important;
}

.block-news .category{
    color: #CE2F39;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.block-news .date{
    color: #BEBEBE;
    font-size: 18px;
}

.activity-single p {
    font-size: 16px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 300 !important;
}

.activity-single p a{
    color: #CE2F39 !important;
    text-decoration: none !important;
    font-weight: 400 !important;
}

.logo-footers {
    display: flex;
    align-items: center;
}

@media (min-width:768px) and (max-width:1200px) {
    .news-block-list{
        width: 100% !important;
    }
    
    .news-filter {
        width:100% !important;
    }
}

.forum .forum-header {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.forum .forum-header a {
    text-transform: uppercase;
    font-size: 12px;
    padding-left: 60px;
    padding-right: 60px;
}

.forum h3 {
    font-size: 22px;
    font-family: 'Krona One', sans-serif;
    text-transform: uppercase;
}

.forum-topics .topic-item {
    width: 100%;
    border: solid 1px #BEBEBE;
    padding:30px 40px; 
    margin-bottom: 17px;
    overflow: hidden;
}

.forum-topics .topic-item .topic-img{
    
    float:left;
    margin-right: 75px;
}

.topic-img img{
    width: 75px;
    height: 75px;
    border: solid 1px #000000;
    border-radius: 75px;
}
.topic-img.bigger {
    float: left;
    margin-right: 40px;
}
.topic-img.bigger img{
    width: 110px;
    height: 110px;
    border-radius: 110px;
}
.topic-page .reply-section {
    margin-top: 100px;
}
.title-category.lineheight12{
    font: normal normal normal 20px/24px Krona One;
    margin-bottom: 10px;
}
#historicpayments .item:nth-child(2n+1) .info {
    background-color: #FCF6ED;
}
#historicpayments .item {
    padding: 0px;

    display: flex;
    justify-content: space-between;
}
#historicpayments .item .info{
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.info-fees,
#historicpayments {
    margin-bottom: 80px;
}
#historicpayments .item .invoice{
    width: 180px;
    PADDING: 20PX 0PX 20PX 30PX;
}
.gap100 {
    gap:100px;
}
#modalCalendar,
#overflowModal {
    display: none;
}
#modalCalendar.active,
#overflowModal.active {
    display: block;
}
#modalCalendar {
    position: absolute;
    z-index: 100;
    top: 250px;
    width: 100vw;
}
#modalCalendar .container {
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}
#modalCalendar .d-flex .half {
    flex: 0 0 50%;
}
#modalCalendar input[type="text"] {
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    padding: 5px 0px;
    width: 100%;
}
#modalCalendar input {
    border: 1px solid #707070;
    padding: 5px;
    font-size: 90%;
}
#modalCalendar .btn-modal-input {
    border: 1px solid #707070;
    padding: 5px 20px;
    cursor: pointer;
    font-size: 90%;
    background-color: #fff;
    transition: background ease-in-out 300ms;
}
#modalCalendar .btn-modal-input:hover,
#modalCalendar .btn-modal-input.active {
    background-color: #CE2F39;
}
#modalCalendar .col-12 {
    margin-bottom: 15px;
}
#modalCalendar .spacerModal{
    height: 30px;
}
#modalCalendar #dateInput {
    display: none;
}
#modalCalendar .mini-title{
    font: normal normal normal 18px/22px Outfit;
    letter-spacing: 0px;
    margin-bottom: 15px;
}
#overflowModal {
    position: fixed;
    background-color: #ffc0c0;
    height: 100vh;
    width: 100vw;
    top: 0;
    z-index: 10;  
}
header {
    height: 160px;
    position: relative;
    background: white;

}
.c-white{
    color: #ffffff;
}
.ballor-payment {
    padding: 20px 20px 30px 20px;
    background-color: rgba(168, 162, 0, 0.2);
    margin-top: 30px;
    padding-right: 10%;
    margin: 50px 0px;
}
.form-payments input {
    border: none;
    border-bottom: 1px solid rgb(210, 210, 210);
    font: normal normal normal 14px/30px Krona One;
    width: 100%;
    max-width: 450px;
}
.form-payments label {
    margin-top:30px;
    font: normal normal normal 14px/30px Krona One;

}
.topic-page .author {
    padding-top: 15px;
}
.topic-page #author {
    font-weight: bold;
    text-decoration: underline;
}
.topic-page .topic-description {
    margin-top: 30px;
}
.topic-page .topic-description p,
.topic-page .topic-description,
.topic-page .item-tags a,
.topic-page .topic-item,
.topic-page #topic-pagination{
   color:#838383 !important;
}
.forum-topics .topic-item .topic-title {
    float: left;
    display: block;
}

.forum-topics .topic-item .topic-title h4{
    font-size: 28px;
    color:#CE2F39;
    line-height: 40px; 
    margin-bottom: 0px;
    font-weight: 700;
}

.forum-topics .topic-item .topic-title p{
    font-size: 22px;
    line-height: 40px; 
    margin-bottom: 0px;
}

.forum-topics .topic-item .topic-tags{
    float: right;
    text-align: right;
}

.forum-topics .topic-item .topic-tags .item-tags {
    color:#888888;
    font-size: 22px;
    text-align: right;
}

.forum-topics .topic-item .topic-tags .item-tags a{
    color:#888888;
    font-size: 22px;
    text-decoration: underline;
}

.forum-topics .topic-item .topic-tags p{
    color:#888888 !important;
    font-size: 22px;
    line-height: 40px; 
    margin-bottom: 0px;
}

.recent-topics, .recent-entries {
    width: 100%;
    border: solid 1px #BEBEBE;
    padding:27px; 
    margin-bottom: 13px;
    overflow: hidden;
}

.recent-topics .recent-item, .recent-entries .recent-item{
    margin-bottom: 30px;
}

.recent-topics .recent-item .topic-img{
    float:left;
    margin-right: 22px;
}

.topic-img img{
    width: 52px;
    height: 52px;
    border: solid 1px #000000;
    border-radius: 52px;
}
.recent-topics .recent-item h4 {
    font-size: 22px;
    color:#CE2F39;
    line-height: 40px; 
    margin-bottom: 0px;
    font-weight: 700;
}

.recent-topics .recent-item p {
    font-size: 22px;
    color:#888888 !important;
    line-height: 40px; 
    margin-bottom: 0px;
}

.recent-entries .recent-item .topic-img{
    float:left;
    margin-right: 22px;
}

.recent-entries .recent-item .topic-img img{
    width: 52px;
    height: 52px;
    border: solid 1px #000000;
    border-radius: 52px;
}

.recent-entries .recent-item h4 {
    font-size: 22px;
    color:#CE2F39;
    line-height: 40px; 
    margin-bottom: 0px;
    font-weight: 700;
}

.recent-entries .recent-item p {
    font-size: 22px;
    color:#888888 !important;
    line-height: 40px; 
    margin-bottom: 0px;
}

.recent-entries .recent-item p a{
    color:#888888 !important;
}

.member .member-header {
    margin-top: 170px;
}


.member .member-header .profile-photo  {
    display: block;
    text-align: center;
    margin: 0 auto;
}


.member .member-header .profile-photo img {
    width:100%;
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 24px;
    display: block;
}
.member .member-header .profile-photo .logo-here {
  
    width: 300px;
     height: 300px;
     border-radius: 300px;
     background-color: #CE2F39;
     margin: 0 auto;
    margin-bottom: 24px;
    display: block;
    
}


.member .member-header .profile-info h1{
    font-size: 66px;
    font-family: 'Krona One', sans-serif;
    text-transform: uppercase;
    color:#252525;
    margin-bottom: 10px;
}

.member .member-header .profile-info .profile-url{
    font-size: 28px;
    color: #CE2F39;
    font-weight: 700;
    margin-bottom: 20px;
    text-decoration: none;
}


.member h3 {
    font-size: 22px;
    font-family: 'Krona One', sans-serif;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 60px;
}

.member label {
    font-size: 22px;
    color:#252525;
    font-weight: 400;
    display: block;
}

.member input, .member select {
    font-size: 22px;
    color:#BEBEBE;
    font-weight: 400;
    border:none;
    padding: 8px 0px;
    border-bottom: solid 1px #BEBEBE;
    margin-bottom: 60px;
    display: block;
    width: 80%;
    margin-right: 20px;
    box-shadow: unset !important;
}

.member input::placeholder {
   color:#BEBEBE;
}

.member input:focus-visible {
   border:none !important;
   border-bottom: solid 1px #BEBEBE;
}

.subtitle-event {
    font-size: 16px;
    color:#BEBEBE;
    font-weight: 300;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subtitle-event .iusy-event {
    width: 16px;
    height: 16px;
    border-radius: 20px;
    background: #CE2F39;
    margin-right: 5px;
}

.subtitle-event .other-event {
    width: 16px;
    height: 16px;
    border-radius: 20px;
    background: #2c3e50;
    margin-right: 5px;
}
@media (min-width:990px) {
    .col-lg-25 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media screen and (max-width:767px) {
    .header-right .header-link{
        display: none !important;
    }
}

#documents .item .description,
#documents .close {
    display: none;
}
#documents .read {
    display: inline;
}

#documents .item.active .description {
    display: inline;
}

.btn-arrow {
    background: none;
    border:none;
    font-size: 38px;
}

.logos-footer {
    display:flex;
    align-items: center;
    justify-content:center;
    
}

.logos-footer img {
    margin-left:10px;
    margin-right:10px;
    
}

@media screen and (max-width: 768px) {
    .logos-footer {
        flex-direction:column;
    }
    
    .logos-footer img {
    margin-top:10px;
    margin-bottom:10px;
    }
    
    .home-what-happening {
        margin-top: 100px;
    }
    .member .member-header .profile-info h1 {
        font-size: 36px;
        text-align: center;
    }
    .member input, .member select {
        width:100%;
    }
}

.event-link {
    text-decoration:none;
    color:#CE2F39;
    margin-bottom:10px;
    font-weight:700;
}

.event-link:hover {
    color:#000;
}

.home-what-happening .btn-primary {
    display: inline-block;
    margin-top: 20px;
    position: relative;
    top: auto;
    right: auto;
}

.al-center {
    align-items: center;
}

.event-date {
    font-size: 1.2rem;
    display: inline-block;
    background: #CE2F39;
    color: #fff;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.section-title a {
    text-decoration: none;
    color: inherit;
}

.section-title span {
    color: #CE2F39;
}

.section-title a {
    display: inline-block;
}

.home-banner {
    background: transparent;
}

.home-banner-inner {
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 72% auto;
}

@media (max-width: 768px) {
    .home-banner-inner {
        background-repeat: no-repeat;
        background-size: 80% auto;
        background-position: center bottom;
    }

    .home-banner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .home-banner-follow span {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .home-banner * {
        max-width: 100%;
    }
}

.block-festival h2 {
    font-size: 36px;
}

p.section-title {
    font-size: 1.8rem;
}

.big-event-date p {
    color: white !important;
    font-size: 1.2rem !important;
}