@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap');

:root {
	--primarycolor:#A062BC;
	--primarydark:#9052AC;
	--darkcolor:#555555;
	--background:#efefef;
    --lightcolor:white;
    --highlight:#E79D19;
    --botcolor:#EF7100;
}

/* General */
*
{
   box-sizing: border-box;
   scroll-behavior: smooth;
}
html 
{
    font-size:16px;
}
body
{
    font-family:Roboto;
	margin:0;
	color:var(--darkcolor);
	background:var(--background);
} 
a 
{
    text-decoration:none;
}

h1 
{
    color:var(--primarycolor);
    font-size: 3.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin:0;
}

h2 
{
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.95rem; 
    margin:0;
}
h3 
{
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin:0;
}
p
{
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin:1.6rem 0 1.6rem 0;
}
p.top 
{
    margin-top:0;
}
.hide
{
    display: none !important; 
}
.content
{
    padding:0 83px;
}
.content_section 
{
    margin-top:50px;
}
.row 
{
    display:flex;
}
.row.gap 
{
    gap:30px;
}
.col
{
    flex:1;
}
.col_2
{
    flex:2;
}
.primary 
{
    color:var(--primarycolor);
}
/* Nav */
nav
{
    background:var(--primarycolor);
    color:var(--lightcolor);
    padding:10px 0;
    display:flex;
    align-items: center; 
}
nav img 
{
    height:55px;
}
nav a 
{
    color:var(--lightcolor);
    font-size: 1.15rem;
    font-style: normal;
    font-weight: 600;
    margin-top:20px;
    line-height: normal;
    display:block;
}
.link_logo
{
    margin-top:0;
}
.nav_option 
{
    display:block;
    padding:4px 10px;
    border-radius: 4rem;
}
.nav_menu_option 
{
    height:40px;
    display:flex;
    align-items: center;
    justify-content: center;
}

.nav_option.active 
{
    background-color: var(--lightcolor);
    color:var(--primarycolor);
}
.nav_content 
{
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    width:100%;
}
.nav_menu
{
    display:flex;
    flex:1;
    align-items: center;
    justify-content: end;
    gap:15px;
    min-width:800px;
}
.nav_submenu_option
{
    position:relative;
}
.nav_submenu_option svg 
{
    margin-left:2px;
    width:12px;
}
.nav_submenu 
{
    position:absolute;
    top:30px;
    right:0px;
    padding:5px 15px 15px 25px;
    background:var(--primarycolor);
    z-index:3;
    list-style-type: none;
    border-radius:0 0 10px 10px;
    text-align: right;
    display:none;
}
.expanded .nav_submenu 
{
    display:block;
}
.expanded svg 
{
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
} 
.nav_submenu li
{
}
.nav_submenu a 
{
    margin-top:10px;
    font-size:1rem;
    font-weight: 400;
}
/* Footer */
footer
{
    background:var(--darkcolor);
    color:var(--lightcolor);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top:80px;
}
.footer_partners
{
    background:var(--lightcolor);
    color:var(--darkcolor);
    padding:20px 0;
    overflow: hidden;
    display:flex;
}
.footer_partners_wrapper
{
    display:flex; /*inline-block;*/
    align-items:center; 
    white-space: nowrap;
    animation: marquee 120s linear infinite;
}
.footer_type 
{
    margin-left: 83px;
    display: inline-block;
}

.footer_partners_wrapper a 
{
    padding-right:20px;
}
@keyframes marquee 
{
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
}
.footer_partners:hover .footer_partners_wrapper{
    animation-play-state: paused;
  }
.footer_partners a 
{
    margin-left:83px;
    display:inline-block;
}
.footer_bottom 
{
    padding:36px 83px;
}

footer .logo 
{
    width:174px;
}
footer .partner 
{
    height:70px;
    width:auto;
}

footer small 
{
    font-size:1rem;
}
.subscription 
{
    width:575px;
    position:relative;
    margin-bottom:30px;
}
.subscription input 
{
    padding:10px 20px;
    height:40px;
    font-size:1.25rem;
    border-radius: 20px;
    background:var(--lightcolor);
    color:var(--darkcolor);
    width:100%;
    border:none;
    outline:#E79D19;
}
.subscription a 
{
    position:absolute;
    right:0;
    top:0;
    border-radius:50%;
    background:var(--highlight);
    width:40px;
    height:40px;
    transition:background 0.25s;
}
.subscription a:hover 
{
    background:var(--primarycolor);
}

/* header */
header 
{
    margin:40px 0 100px 0;
}
.slider
{
    position:relative;
}
.slider_inner 
{
    height:calc(100vh - 110px);
    min-height:500px; 
    overflow: hidden;
    border-radius:1rem 1rem 0 0;
    position:relative;
}
.slider_img 
{
    position:absolute;
    bottom:0;
    left:0;
    width:100%; 
    height:100%;
    object-fit: cover;
    opacity:0;
    transition:opacity 1s;
}
.slider_img:first-child 
{
    opacity:1;
}
.slider_img.active 
{
    opacity:1; 
}
.slider::after
{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}
.slider_text 
{
    position:absolute;
    bottom:0;
    left:0;
    padding:50px;
    color:var(--lightcolor);
    z-index:1;
    max-width:75%;
}
.slider_text p 
{ 
    margin-top:0;
}
.slider_arrow 
{
    position:absolute;
    top:calc(50% - 1.5rem);
    width:40px;
    height:40px;
    background:var(--primarycolor);
    color:var(--lightcolor);
    display:flex; 
    align-items:center;
    justify-content:center;
    border-radius: 50%;
    z-index:5;
    transition:background 0.25s;
}
.slider_arrow img 
{
    width: 90%;
    height: 90%;
}
.slider_arrow:hover 
{
    background-color: var(--highlight);
}
.slider_arrow_left 
{
    left:-1.5rem;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.slider_arrow_right 
{
    right:-1.5rem;
}
.box 
{
    background:var(--primarycolor);
    color:var(--lightcolor);
    padding:60px 50px;
    border-radius:0 0 1rem 1rem;
}
.btn_box 
{
    background:var(--highlight);
    color:var(--lightcolor);
    padding:8px 15px;
    font-size: 1.25rem;
    border-radius: 4rem;
    margin-right:10px;
    transition:all 0.25s;
    display:inline-block;
    height:40px;
}
.btn_box:hover 
{
    background:var(--primarydark);
}
.bot_wrapper
{
    width:200px;
    height:200px;
    display:flex;
    align-items: center;
    justify-content:center;;
    border:5px solid var(--botcolor);
    border-radius: 50%;
    padding:40px;
}
.bot 
{
    width:100%;
}
.bot_col 
{ 
    margin-right:75px;
}

/* home gallery */
section
{
    margin-top:60px;   
}
.gallery
{
    position:relative;
}
.gallery_wrapper 
{
    overflow:hidden;
}
.gallery_row
{
    margin-bottom:80px;
    display:flex;
    position:relative;
    margin:0 -10px;
    overflow-x: scroll;
    scrollbar-color: transparent; 
    scrollbar-width: 0px;
    -ms-overflow-style: none;
}
 .gallery_row::-webkit-scrollbar { display: none; }
 
.gallery_col
{
    width:25%;
    min-width:25%; 
}
.gallery_item
{
    background:var(--lightcolor);
    margin:0 10px;
    padding:25px 25px;
    border-radius: 1rem;
    display:block;
    height:100%;
}
.gallery_item_wrapper 
{
    position:relative;
    width:100%; 
    padding-top:100%;
    border-radius:50%;
    background:var(--lightcolor); 
    margin-bottom:20px; 
    overflow: hidden;
}
.gallery_item_wrapper img 
{
    position:absolute;
    left:0;
    top:0;
    object-fit: cover;
    width:100%;
    height:100%;
    transition: transform 0.5s;
} 
.gallery_item_name 
{
    color: var(--primarycolor);
    text-align: center;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    word-break: break-word;
    transition:color 0.5s;
}
.gallery_item_info 
{
    text-align:center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    color: var(--darkcolor);
}
.gallery_item:hover .gallery_item_name 
{
    color:var(--highlight);
}
.gallery_item:hover .gallery_item_wrapper img 
{
    transform: scale(1.1);
}

/* info */
#item_details 
{
    margin-bottom:150px;
}
.col_details_image
{
    margin-right:40px;
    flex:2;
}
.col_details_data 
{
    flex:4;
    margin-right:40px;
}
.col_details_activities
{
    flex:2;
} 
.item_details_image_wrapper 
{
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    background: lightcoral;
    margin-bottom: 20px;
    overflow: hidden;
}
.item_details_image
{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    object-fit: cover;
}
.item_details_name
{
    margin-bottom:10px;
}
.item_details_short 
{
    font-size:2rem;
    font-weight:700;
    line-height: normal;
    margin:0 0 30px 0;
}
.item_details_bio 
{
    margin-bottom:50px;
}
.item_details_events 
{
    margin:30px 0 40px 0;
}
.item_details_event
{
    font-size:1.25rem;
    font-weight:400;
    display:block;
    margin-bottom:1rem;
}
.item_details_event:last-child
{
    margin-bottom:0;
}
.item_details_events_title
{
    margin-top:0.75rem;
}

/* Community */
.community_list 
{
    margin:70px 0 100px 0;
    display:flex;
    flex-wrap:wrap;
}

.community_list  .gallery_col
{
    margin-bottom:40px;
    awidth:33.33%;
}

/* Program */
.program_title 
{
    margin:60px 0 50px 0;
    color:var(--darkcolor);
}
.filter_row 
{
    font-size:1.25rem;
}
.filter_row .row 
{
    flex-wrap:wrap;
}
.filter_btn 
{
    padding:0.5rem 1rem;
    background:#55555580;
    color:var(--lightcolor);
    margin:10px 0 0 5px;
    border-radius:4rem;
    width: fit-content;
    transition:all 0.25s;
    display:inline-block;
    height:40px;
}
.filter_btn.selected 
{
    background:var(--highlight);
}
.program_list 
{
    margin:70px 0 100px 0;
}
.program_day 
{
    background:var(--lightcolor);
    border-radius:1rem;
    position:relative;
    min-height:200px;
    margin-bottom:40px;
    overflow:hidden;
}
.program_day_title
{
    background:var(--primarycolor);
    color:var(--lightcolor);
    padding:10px 20px;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
}

.program_day_events 
{
    padding:30px 20px;
}
.program_day_event
{
    margin-bottom:50px;
}

.day_event_top 
{
    display:flex;
    align-items: center;;
}
.day_event_circle 
{
    width: 2.1875rem;
    height: 2.1875rem;
    background:var(--darkcolor);
    position:relative;
    display:none;
    border-radius:50%;
}
.day_event_time 
{
    border-radius:4rem;
    background:var(--darkcolor);
    color:var(--lightcolor);
    width: 6.125rem;
    height: 2.5rem;
    padding: 0.5rem;
    display:flex;
    justify-content: center;
    align-items:center;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
}
.day_event_line
{
    position:relative;
    height:5px;
    flex:1;
    background:var(--darkcolor);
}
.day_event_btn
{
    position:relative;
    width:40px;
    height:40px;
    border-radius: 50%;
    background:var(--darkcolor);
    display:flex;
    align-items:center;
    justify-content: center;
}
.day_event_btn svg 
{
    width: 2.3125rem;
    height: 2.3125rem;
    transition: all 0.5s
}
.day_event_btn.expanded svg 
{
    transform: rotate(-180deg);
}

.day_event_content
{
    margin-left:150px;
}
.day_event_title 
{
    padding:20px 0 10px 0;
}
.day_event_data
{
    font-size:1.25rem;
    margin-top:20px;
}
.day_event_people
{
    display:flex;
    flex-wrap: wrap;
}
.day_event_people .gallery_col
{
    width:33.33%;
}

.program_day_subevents
{
    margin-top:40px;
}
.subevent 
{
    apadding-left:150px;
    margin-bottom: 20px;
}
.subevent .day_event_time
{
    display:none;
}
.subevent .day_event_circle 
{
    display:block;
}
.subevent .day_event_content
{
    margin-left:40px;
}
.subevent .day_event_title
{
    color:var(--darkcolor) !important;
    font-size:2rem;
}

/* FAQs */
.faqs_list
{
    min-height:100vh;
    margin-bottom:100px;
    gap:40px;
}

.faq_item
{
    margin-bottom:40px;
}
.faq_topic 
{
    color:var(--primarycolor);
    margin-bottom:40px;
}
.faq_question 
{
    font-size:2rem;
}
.faq_answer
{
    font-size:1.25rem;
    margin-top:10px;
}

.faq_links 
{
    margin:20px 0;
    
}

/* Register */
.register_section
{
    gap:50px;
}
.register_btn
{
    margin-bottom:50px;
}

.register_title
{
    color:var(--primarycolor);
}

.register_box 
{
    margin:40px 0 100px 0;
    border-radius:1rem;
}

.register_box .btn_box:hover 
{
    background:var(--botcolor);
}

/* HAMB */
.hamb{
	cursor: pointer;
	padding: 0;
	display:none;
	width:30px;
	height:20px;
	margin-bottom:0 !important;
  }
  
  .hamb-line {
	background: var(--lightcolor);
	display: block;
	height: 3px;
	position: relative;
	width: 30px;
	top:9px;
  } 
  
  .hamb-line::before,
  .hamb-line::after{
	background: var(--lightcolor);
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
  }
  .hamb-line::before{
	top: 9px;
  }
  .hamb-line::after{
	top: -9px;
  }
  .side-menu:checked ~ .nav_menu
  {
	display:flex;
  }
  .side-menu:checked ~ .hamb .hamb-line {
	background: transparent;
  }
  .side-menu:checked ~ .hamb .hamb-line::before {
	transform: rotate(-45deg);
	top:0;
  }
  .side-menu:checked ~ .hamb .hamb-line::after {
	transform: rotate(45deg);
	top:0;
  }

.side-menu
{
	display:none;
}

/* ---- RESPONSIVE -----------------*/

@media (max-width: 768px) 
{
 .hamb 
 {
    display:block;
 }
 .nav_menu 
 {
    display:none;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 80px;
    background: var(--primarycolor);
    min-width: 0;
    z-index: 2;
    width: fit-content;
    gap: 0;
    align-items: end;
    padding: 0 20px 40px 20px;
    border-radius: 0 0 0 2rem;
 }
.nav_submenu 
{
    position: static;
    display: block;
    position: static;
    display: block;
    margin: 0;
    padding: 20px 10px 0 10px;
}
.nav_submenu a 
{
    margin-top: 10px;
    font-size: 1.25rem;
    font-weight: 700;
}
#btn_lng 
{
    display:none;
}
 .link_logo 
 {
    flex:1;
 }
 .content 
 {
    padding:0 20px;
 }

 h1 
 {
    font-size:2.8rem;
    line-height:1;
 }
 h2 
 {
    font-size:2.5rem;
 }
 section h1 
{
    margin-bottom:20px;
}

 header 
 {
    margin-top:30px;
 }
 header .box 
 {
    flex-direction:column;
 }
 .row 
 {
    flex-direction:column;
 }
 .bot_col {
    margin-right: 0;
    margin: 0 auto;
    padding-bottom: 30px;
 }
 .box.row 
 {
    padding:30px 20px 60px 20px;
 }

 .slider::after 
 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
 }
 .slider_inner 
 {
    display:flex;
    align-items: center;
 }
 .slider_text 
 {
    padding:20px;
    max-width:none;
    position:relative;
 }
 header .slider_arrow 
 {
    display:none;
 }
 .slider_arrow_left 
 {
    left: -1rem;
 }
 .slider_arrow_right 
 {
    right: -1rem;
 }
 .gallery_col
 {
    width: 100%;
    min-width: 100%;
 }
 
 .footer_bottom 
 {
    padding: 36px 20px;
 }
 .subscription 
 {
    width:auto;
 }


 .col_details_image 
 {
    margin:0 0 40px 0;
 }
 .col_details_data 
 {
    margin:0 0 60px 0;
 }

 .day_event_content
{
    margin-left:20px;
}
.subevent .day_event_content {
    margin-left: 10px;
}
}