/*
Theme Name: Sidemast.org
Author: KMSTUDIO
Version: 1.0
*/

:root {
    --site--first--color: #29317C;
    --site--second--color: #0F94A1;
    --site--third--color: #bababa;
    --site--fourth--color: #eee;
	
	--site--fontello--arrow-down: "\2715";
	--site--fontello--check: "\E804";
	--site--fontello--warning: "\E803";
}

html { font-size: 18px; }
body {
	background-color: #fff;
	color: #444;
	font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
	font-weight: 300;
	padding: 0;
	margin: 0;
}
body.no-scroll {
	overflow: hidden;
}

a {
    color: var(--site--first--color);
    text-decoration: none;
    transition: color ease-in-out 400ms,
                background ease-in-out 400ms,
                opacity ease-in-out 400ms,
                border ease-in-out 400ms;
}
a:hover {
    color: var(--site--second--color); 
}
svg {
    max-width: 100%;
    height: auto;
}
strong, b {
    font-weight: 500;
}
.button {
    margin: 1.5rem 0;
}
.button a,
button {
    position: relative;
    background-color: var(--site--first--color);
    border: 4px solid transparent;
    color: #fff;
    text-shadow: none;
    display: inline-block;
    padding: 0.8rem 2.5rem 0.8rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color ease-in-out 400ms,
                background ease-in-out 400ms,
                opacity ease-in-out 400ms,
                border ease-in-out 400ms,
                text-indent ease-in-out 200ms,
                padding ease-in-out 200ms;
}
.button.button-alternate-color a {
    background-color: var(--site--second--color);
}
.button a::after,
button::after {
	content: '\e801';
	position: absolute;
	font-family: "sidemast";
	font-style: normal;
	font-weight: normal;
	display: inline-block;
	text-decoration: inherit;
	width: auto;
	margin: 0;
	text-align: center;
	font-variant: normal;
	text-transform: none;
    color: #fff;
	right: 2.5rem;
    opacity: 0;
    transition: right ease-in-out 400ms,
                opacity ease-in-out 500ms;
}
.button a:hover,
button:hover {
    background-color: #fff;
    color: var(--site--first--color);
    border-color: var(--site--first--color);
    text-indent: -1rem;
    padding-right: 3.5rem;
}
.button.button-alternate-color a:hover {
    border-color: var(--site--second--color);
    color: var(--site--second--color);
}
.button a:hover::after,
button:hover::after {
    color: var(--site--first--color);
    right: 1.5rem;
    opacity: 1;
}
.button.button-alternate-color a:hover::after {
    color: var(--site--second--color);
}
.button.button-white a {
    background-color: transparent;
    border: 4px solid #fff;
    color: #fff;
}
.button.button-white a::after {
    color: transparent;
}
.button.button-white a:hover {
    background-color: var(--site--first--color);
    color: #fff;
    border-color: transparent;
}
.button.button-white a:hover::after {
    color: #fff;
}
.button.button-bg-white a {
    background-color: #fff;
    border: none;
    color: var(--site--first--color);
}
.button.button-mini a,
button.button-mini {
    padding: 0.5rem 1.5rem 0.5rem;
    font-size: 0.9rem;
    border-width: 2px;
}
.button.button-mini a:hover,
button.button-mini:hover {
    text-indent: -0.5rem;
    padding-right: 2rem;
}
.button.button-mini a::after,
button.button-mini::after {
	right: 1.5rem;
}
.button.button-mini a:hover::after,
button.button-mini:hover::after {
	right: 1rem;
}
button[disabled] {
    background-color: var(--site--third--color);
}
button[disabled]::after {
    content: none;
}
button[disabled]:hover {
    border-color: transparent;
    color: #fff;
    text-indent: 0;
    padding-right: 2.5rem;
}
button.button-mini[disabled]:hover {
    padding-right: 1.5rem;
}
hr {
	margin: 3rem 0;
	border: 1px solid var(--site--third--color);
	opacity: 0.3;
}


/*--- BOOTSTRAP */
.form-control:focus {
    border-color: var(--site--first--color);
	box-shadow: 0 0 0 .25rem var(--site--fourth--color);
}


/*--- STILI GENERALI */
main {
	min-height: 600px;
}
.header-image {
	position: relative;
    overflow: hidden;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 25vw;
	margin-bottom: 3rem;
    opacity: 0;
    animation-name: header-anim;
    animation-delay: 200ms;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
.header-image::before {
	content: "";
    position: absolute;
    background-image: -webkit-linear-gradient(rgba(0,0,0,0.63) 0%, rgba(41,196,169,0) 100%);
    background-image: -o-linear-gradient(rgba(0,0,0,0.63) 0%, rgba(41,196,169,0) 100%);
    background-image: linear-gradient(rgba(0,0,0,0.63) 0%, rgba(41,196,169,0) 100%);
    height: 100%;
    width: 100%;
}
.header-image .meta {
    position: absolute;
    bottom: 3rem;
    margin: auto;
    animation-name: header-meta-anim;
    animation-delay: 0;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
.header-image .meta h1,
.header-image .meta h2 {
    text-align: center;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.8);
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
.header-image .meta h1 span,
.header-image .meta h2 span {
    color: var(--site--first--color);
    text-transform: uppercase;
    display: block;
    font-size: 1.8rem;
    margin-top: 0.5rem;
}
.header-image .meta h1.no-uppercase {
    text-transform: none;
}
.swiper.home-swiper {
	position: relative;
	width: 100%;
	height: 40vw;
	margin-bottom: 5rem;
    animation-name: header-anim;
    animation-delay: 200ms;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}
.swiper.home-swiper .swiper-slide {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #fff;
}
.swiper.home-swiper.home-swiper .swiper-slide {
	background-position: center right;
}
.swiper.home-swiper .swiper-slide::before {
	content: "";
    position: absolute;
    background-image: -webkit-linear-gradient(rgba(0,0,0,0.2) 10%, rgba(0,0,0,0) 100%);
    background-image: -o-linear-gradient(rgba(0,0,0,0.2) 10%, rgba(0,0,0,0) 100%);
    background-image: linear-gradient(rgba(0,0,0,0.2) 10%, rgba(0,0,0,0) 100%);
    height: 100%;
    width: 100%;
}
.swiper-pagination.swiper-pagination-default {
    bottom: 3rem;
}
.swiper-pagination.swiper-pagination-default .swiper-pagination-bullet {
	opacity: 0.4;
	background: #fff;
    width: 12px;
    height: 12px;
    transition: opacity ease-in-out 400ms;
}
.swiper-pagination.swiper-pagination-default .swiper-pagination-bullet:hover {
	opacity: 1;
}
.swiper-pagination.swiper-pagination-default .swiper-pagination-bullet-active {
	opacity: 1;
}
.default-boxer {
    margin: 3rem 0;
}
.default-boxer h2.box-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--site--first--color);
    margin: 0 0 3rem 0;
    padding: 0;
    text-transform: none;
    text-align: center;
}
.box-people {
    margin: 4rem 0;
}
.box-people h2 {
    margin: 0 0 5rem 0 !important;
}
.box-people .single {
    text-align: center;
    margin-bottom: 3rem;
}
.box-people .single figure {
	max-width: 200px;
	margin: 0 auto 1rem;
}
.box-people .single figure img {
    border-radius: 100%;
}
.box-people .single .name {
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 0.2rem;
	color: var(--site--second--color);
}
.box-people .single .role {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.3;
}
.box-people .single .position {
    
}
.box-people .single .position::before {
    content: "(";
}
.box-people .single .position::after {
    content: ")";
}
.columns-box-container {
    margin: 4rem 0;
}
.columns-box-container .single {
    background-color: #009755;
    color: #fff;
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.columns-box-container .single.color-first {
    background-color: var(--site--first--color);
}
.columns-box-container .single.color-second {
    background-color: var(--site--second--color);
}
.columns-box-container .single.color-third {
    background-color: var(--site--third--color);
}
.columns-box-container .single .title {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.columns-box-container .single :not(.button) a {
    color: #fff;
}
.columns-box-container .single :not(.button) a:hover {
    text-decoration: underline;
}
.columns-box-container .single figure {
    
}
.columns-box-container .single figure img {
    width: 50%;
}
.columns-box-container .single p {
    font-size: 0.9rem;
}
.box-filter {
	text-align: center;
	margin: 2rem 0 4rem 0;
    background-color: var(--site--fourth--color);
    border: 1px solid var(--site--first--color);
    padding: 2rem;
}
.box-filter .filter-title {
	color: var(--site--first--color);
	margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 500;
    text-transform: uppercase;
}
.box-filter ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.box-filter ul li {
	margin: 0 0.5rem 0.5rem 0;
	padding: 0;
	list-style-type: none;
}
.box-filter ul li a {
	display: block;
	border: 1px solid var(--site--first--color);
	background-color: #fff;
	color: var(--site--first--color);
	padding: 0.1rem 1.5rem;
	text-transform: uppercase;
	font-size: 0.9rem;
    font-weight: 500;
}
.box-filter ul li a:hover,
.box-filter ul li.current a {
	border: 1px solid var(--site--first--color);
	background-color: var(--site--first--color);
	color: #fff;
}
.status-msg {
    margin: 2rem 0;
}
.status-msg > div {
    display: flex;
    align-items: center;
    padding: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}
.status-msg > div::before {
    content: "";
    font-family: "sidemast";
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    width: auto;
    margin: 0 1rem 0 0;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    font-size: 1.6rem;
}
.status-msg .error {
    background-color: #ff0000;
    color: #fff;
}
.status-msg .success {
    background-color: #026202;
    color: #fff;
}
.status-msg .error::before {
    content: var(--site--fontello--warning);
}
.status-msg .success::before {
    content: var(--site--fontello--check);
}
.bg-block-event {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.bg-block-event.block-conference-venue {
	background-image: url(assets/img/bg1.jpg);
	margin: 6rem 0;
	display: flex;
	justify-content: center;
}
.bg-block-event.block-conference-venue .inner {
	align-self: center;
	text-align: center;
	padding: 4rem 0;
}
.bg-block-event.block-conference-venue .inner h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
    text-transform: uppercase;
	margin: 0 0 2rem 0;
	padding: 0;
}
.bg-block-event.block-conference-venue .inner figure.point {
	margin: 0 0 2rem 0;
}
.bg-block-event.block-conference-venue .inner figure.point img {
	width: 100px;
}
.bg-block-event.block-conference-venue .inner h3 {
	font-size: 1.4rem;
	font-weight: 400;
	color: #fff;
    text-transform: uppercase;
	margin: 0 0 3rem 0;
	padding: 0;
}
.bg-block-event.block-conference-venue .inner .button {
	margin: 0;
}
.list-conference-topics {
	position: relative;
	column-count: 2;
	column-fill: balance;
	column-gap: 5rem;
}
.wp-block-table {
	margin-bottom: 2rem;
}
.wp-block-table thead {
	border-bottom: 3px solid #eee;
}
.wp-block-table td,
.wp-block-table th {
	border: none;
	border-bottom: 1px solid #efefef;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	padding: 1rem;
	scrollbar-color: auto;
	scrollbar-gutter: auto;
	scrollbar-width: auto;
	text-shadow: none;
	will-change: auto;
}


/*--- HEADER */
header.layout-row {
    background-color: transparent;
    width: 100%;
    padding: 2rem 0;
}
header.layout-row figure.logo {
    margin: 0;
}
header.layout-row figure.logo img {
    width: 200px;
    transition: opacity ease-in-out 400ms;
}
header.layout-row figure.logo:hover img {
    opacity: 0.6;
}
header.layout-row .content-right-cell nav.main ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
header.layout-row .content-right-cell nav.main ul li {
    position: relative;
    margin: 0 1.5rem 0 0;
    padding: 0;
    list-style-type: none;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 600;
}
header.layout-row .content-right-cell nav.main ul li.only-with-hamburger {
    display: none;
}
header.layout-row .content-right-cell nav.main ul li:last-child {
	margin-right: 0;
}
header.layout-row .content-right-cell nav.main ul li.menu-item-has-children > a::after {
	content: var(--site--fontello--arrow-down);
    font-family: "sidemast";
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    width: auto;
    margin: 0 0 0 0.5rem;
    text-align: center;
    font-variant: normal;
    text-transform: none;
}
header.layout-row .content-right-cell nav.main ul li a {
    color: #000;
    text-decoration: none;
    padding: 1rem 0;
}
header.layout-row .content-right-cell nav.main ul li a:hover {
    color: var(--site--first--color);
}
header.layout-row .content-right-cell nav.main ul li a:not(href) {
    cursor: pointer;
}
header.layout-row .content-right-cell nav.main ul li ul.sub-menu {
    opacity: 0;
    position: absolute;
    margin: 0;
    list-style-type: none;
    display: block;
    visibility: hidden;
    transition: opacity 400ms ease-in-out,
                visibility 400ms ease-in-out;
    z-index: 10;
    top: 3rem;
    background-color: #fff;
    padding: 1rem;
    -webkit-box-shadow: 5px 5px 6px 0px rgba(0,0,0,0.10);
    box-shadow: 5px 5px 6px 0px rgba(0,0,0,0.10);
    border: 1px solid #f2f2f2;
    width: 300px;
}
header.layout-row .content-right-cell nav.main ul li.menu-link-risorse ul.sub-menu {
	width: 220px;
}
header.layout-row .content-right-cell nav.main ul li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
}
header.layout-row .content-right-cell nav.main ul li ul.sub-menu li {
    color: #000;
    /*white-space: nowrap;*/
    margin: 0 0 0.5rem 0;
    padding: 0;
    list-style-type: none;
    line-height: 1.2;
}
header.layout-row .content-right-cell nav.main ul li ul.sub-menu li:last-child {
    margin-bottom: 0;
}
header.layout-row .content-right-cell nav.main ul li ul.sub-menu li a {
    color: #000;
    padding: 0;
}
header.layout-row .content-right-cell nav.main ul li ul.sub-menu li a:hover {
    color: #000;
    opacity: 0.6;
}
header.layout-row .content-right-cell nav.main.socioaip-menu {
    margin-left: 1.5rem;
}

header.layout-row .content-right-cell .hamburger {
    display: none;
	width: 3rem;
    cursor: pointer;
    margin-left: 2rem;
}
header.layout-row .content-right-cell .hamburger span {
	display: block;
	width: 2rem;
	height: 0.2rem;
	background-color: var(--site--first--color);
	margin-bottom: 0.4rem;
	transition: transform ease-in-out 400ms,
				background ease-in-out 400ms,
				opacity ease-in-out 400ms;
}
header.layout-row .content-right-cell .hamburger span:last-child {
    margin-bottom: 0;
}
header.layout-row .content-right-cell .hamburger:hover span {
    background-color: #000;
}

body.header-is-absolute header.layout-row {
    position: absolute;
    top: 0;
    z-index: 10;
}
body.header-is-absolute header.layout-row .content-right-cell nav.main ul li a {
    color: #fff;
    font-weight: 600;
}
body.header-is-absolute header.layout-row .content-right-cell nav.main ul li a:hover {
    color: #fff;
    opacity: 0.6;
}
body.header-is-absolute header.layout-row .content-right-cell .hamburger span {
    background-color: #fff;
}
body.header-is-absolute header.layout-row .content-right-cell .hamburger:hover span {
    background-color: #fff;
	opacity: 0.6;
}


/*--- MENU RESPONSIVE */
.menu-responsive {
    position: fixed;
	top: 0;
    padding: 0 0 5rem;
    width: 100%;
    height: 100%;
    z-index: 99999;
    overflow-y: auto;
    background-color: var(--site--first--color);
    transform: translateY(-100%);
    transition: transform 300ms ease-in-out,
                opacity 300ms ease-in-out;
    opacity: 0;
}
.menu-responsive.expanded {
    transform: translateY(0);
    opacity: 1;
}
.menu-responsive .menu-close-responsive {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    transition: color ease-in-out 300ms;
}
.menu-responsive .menu-close-responsive:hover {
    color: var(--site--second--color);
}
.menu-responsive nav:first-of-type {
    margin-top: 4rem;
}
.menu-responsive nav ul {
    margin: 0.4rem 0 1.5rem 0;
    padding: 0;
    list-style-type: none;
}
.menu-responsive nav.socioaip-menu ul {
    
}
.menu-responsive nav ul li {
    margin: 0 0 0.8rem 0;
    padding: 0;
    list-style-type: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
	line-height: 1.3;
}
.menu-responsive nav ul li:last-child {
	margin-bottom: 0;
}
.menu-responsive nav ul li a {
	position: relative;
    color: #fff;
    text-decoration: none;
}
.menu-responsive nav ul li.menu-item-has-children {
	margin-top: 1.2rem;
}
.menu-responsive nav ul li.menu-item-has-children > a {
	font-size: 1.3rem;
	font-weight: 700;
	color: #fff;
	cursor: default;
}
.menu-responsive nav ul li.menu-item-has-children > a[href]:hover {
	color: var(--site--second--color);
	text-decoration: none;
}
.menu-responsive nav ul li.menu-item-has-children > a:hover {
	color: #fff;
}
.menu-responsive nav.socioaip-menu ul li.menu-item-has-children > a {
    color: var(--site--second--color);
}
.menu-responsive nav ul li a:hover,
.menu-responsive nav ul li.current-menu-item a {
    color: var(--site--second--color);
}
.menu-responsive nav ul li ul.sub-menu li {
	margin-bottom: 0.2rem;
}
.menu-responsive .own-socials {
    
}
.menu-responsive .own-socials ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.menu-responsive .own-socials ul li {
    margin: 0 0.3rem 0 0;
    padding: 0;
    list-style-type: none;
    font-size: 2rem;
}
.menu-responsive .own-socials ul li:last-child {
    margin: 0;
}
.menu-responsive .own-socials ul li a {
    color: #fff;
}
.menu-responsive .own-socials ul li a:hover {
    color: var(--site--first--color);
}


/*--- HOMEPAGE */
.intro-home {
    
}
.intro-home.default-boxer h2.box-title {
    text-align: left;
	margin: 0 0 0.3rem;
}
.intro-home.default-boxer h3.box-subtitle {
    font-size: 1.2rem;
	font-weight: 400;
	color: var(--site--second--color);
	margin: 0 0 3rem 0;
	padding: 0;
	text-transform: none;
	text-align: left;
}
.intro-home.default-boxer .signatures {
    margin-top: 2rem;
}
.intro-home.default-boxer .signatures strong.role {
    color: var(--site--first--color);
}
.intro-home .icons-page {
    margin: 4rem 0 4rem 0;
}
.intro-home .icons-page .single {
    text-align: center;
}
.intro-home .icons-page .single h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    padding: 0;
}
.intro-home .icons-page .single figure.icon {
    
}
.intro-home .icons-page .single figure.icon img {
    width: 150px;
    transition: opacity ease-in-out 400ms
}
.intro-home .icons-page .single figure.icon:hover img {
    opacity: 0.6;
}
.upcoming-events {
    margin: 8rem 0;
}
.upcoming-events h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--site--second--color);
    margin: 0 0 3rem 0;
    padding: 0;
    text-transform: none;
    text-align: center;
}
.upcoming-events .inner {
    position: relative;
    background-color: var(--site--third--color);
    padding: 4rem;
}
.upcoming-events .cover {
    
}
.upcoming-events .cover figure {
    position: relative;
    margin: 0 0 1.5rem 0;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    background-color: var(--site--first--color);
}
.upcoming-events .cover figure img {
    transition: opacity ease-in-out 400ms;
    width: 100%;
}
.upcoming-events .cover figure:hover img {
    opacity: 0.6;
}
.upcoming-events .info {
    color: #fff;
    text-shadow: -2px 2px 5px rgba(0, 0, 0, 0.3);
    padding-left: 1rem;
}
.upcoming-events .info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.5rem 0;
    padding: 0;
}
.upcoming-events .info p {
    font-size: 1.1rem;
    font-weight: 400;
}
.upcoming-events .info .meta-event {
    margin: 2rem 0;
}
.upcoming-events .info .meta-event ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.upcoming-events .info .meta-event ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}
.upcoming-events .info .button {
    margin-top: 2rem;
}
.upcoming-events .swiper-pagination.swiper-pagination-default {
    bottom: 1.5rem;
}


/*--- PAGE */
.default-page .content-wordpress {
	
}
.default-page .content-wordpress *.has-text-align-left {
    text-align: left;
}
.default-page .content-wordpress *.has-text-align-center {
    text-align: center;
}
.default-page .content-wordpress *.has-text-align-right {
    text-align: right;
}
.default-page .content-wordpress h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--site--first--color);
    margin: 4rem 0 3rem 0;
    padding: 0;
    text-transform: none;
    text-align: left;
}
.default-page .content-wordpress h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--site--first--color);
    margin: 2rem 0 1.5rem 0;
    padding: 0;
    text-transform: none;
    text-align: left;
}
.default-page .content-wordpress h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--site--second--color);
	margin: 1.5rem 0 1rem 0;
	padding: 0;
	text-transform: none;
	text-align: left;
}
.default-page .content-wordpress h5 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--site--first--color);
    margin: 1rem 0 0.5rem 0;
    padding: 0;
    text-transform: none;
    text-align: left;
}
.default-page .content-wordpress h2:first-child,
.default-page .content-wordpress h3:first-child,
.default-page .content-wordpress h4:first-child,
.default-page .content-wordpress h5:first-child,
.default-page .content-wordpress h6:first-child {
	margin-top: 0;
}
.default-page .content-wordpress ul,
.default-page .content-wordpress ol {
    margin: 0 0 1.5rem 0;
    padding: 0;
}
.default-page .content-wordpress ul li,
.default-page .content-wordpress ol li {
    margin: 0 0 0 1rem;
    padding: 0;
}
.default-page .content-wordpress a {
    font-weight: 500;
}
.default-page .content-wordpress .wp-block-buttons > .wp-block-button .wp-block-button__link {
    position: relative;
    color: #fff;
    background-color: var(--site--first--color);
    border: 2px solid var(--site--first--color);
    border-radius: 0.6rem;
    box-shadow: none;
    text-decoration: none;
    padding: 0.7rem 2rem 0.7rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin: 0 1.5rem 2rem 0;
    transition: color ease-in-out 400ms,
                background ease-in-out 400ms,
                opacity ease-in-out 400ms,
                border ease-in-out 400ms,
                text-indent ease-in-out 200ms,
                padding ease-in-out 200ms;
}
.default-page .content-wordpress .wp-block-buttons > .wp-block-button .wp-block-button__link::after {
    content: '\e801';
    position: absolute;
    font-family: "sidemast";
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    width: auto;
    margin: 0;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    color: #fff;
    right: 2.5rem;
    opacity: 0;
    transition: right ease-in-out 400ms,
                opacity ease-in-out 500ms;
}
.default-page .content-wordpress .wp-block-buttons > .wp-block-button.second-color .wp-block-button__link {
	background-color: var(--site--second--color);
    border: 2px solid var(--site--second--color);
}
.default-page .content-wordpress .wp-block-buttons > .wp-block-button .wp-block-button__link:last-child {
    margin-right: 0;
}
.default-page .content-wordpress .wp-block-buttons > .wp-block-button .wp-block-button__link:hover {
    text-indent: -0.5rem;
    padding-right: 2.5rem;
    color: var(--site--first--color);
    background-color: transparent;
}
.default-page .content-wordpress .wp-block-buttons > .wp-block-button.second-color .wp-block-button__link:hover {
    color: var(--site--second--color);
}
.default-page .content-wordpress .wp-block-buttons > .wp-block-button .wp-block-button__link:hover::after {
    color: var(--site--first--color);
    right: 1rem;
    opacity: 1;
}
.default-page .content-wordpress .wp-block-buttons > .wp-block-button.second-color .wp-block-button__link:hover::after {
    color: var(--site--second--color);
}
.default-page .content-wordpress hr.wp-block-separator {
    margin: 3rem 0;
    opacity: 0.6;
    border-width: 1px;
    border-color: var(--site--third--color);
}



/*--- EVENTO (SINGLE) */
.evento-page {
	
}
.evento-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--site--first--color);
    margin: 0 0 0.5rem 0;
    padding: 0;
    text-transform: none;
    text-align: left;
}
.evento-page .meta-event {
    margin: 0 0 3rem 0;
}
.evento-page .meta-event ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.evento-page .meta-event ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--site--first--color);
    text-transform: uppercase;
}
.evento-page .meta-event ul li::after {
    content: "|";
    margin: 0 0.5rem;
    color: var(--site--third--color);
}
.evento-page .meta-event ul li:last-child::after {
    content: none;
}
.evento-page .content-event {
    padding-left: 3rem;
}
.evento-page .column-right {
	margin: 0 0 2rem 0;
}
.evento-page .column-right ul.file-download {
	margin: 0 0 2rem 0;
	padding: 1rem 0;
	list-style-type: none;
	border-top: 3px solid var(--site--first--color);
	border-bottom: 3px solid var(--site--first--color);
}
.evento-page .column-right ul.file-download li {
	margin: 0 0 0.6rem 0;
	padding: 0;
	list-style-type: none;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1;
}
.evento-page .column-right ul.file-download li:last-child {
	margin-bottom: 0;
}
.evento-page .column-right ul.file-download li a.private-content-url {
	color: #ff0000;
}
.evento-page .column-right ul.file-download li .private-content {
	margin-left: 0.2rem;
}
.evento-page .column-right ul.file-download li .private-content span {
	font-size: 1.5rem;
    color: #ff0000;
}
.evento-page .column-right ul.file-download li a.private-content-url-allowed {
	color: #0d7c0d;
}
.evento-page .column-right ul.file-download li .private-content-allowed {
	margin-left: 0.2rem;
}
.evento-page .column-right ul.file-download li .private-content-allowed span {
	font-size: 1.1rem;
    color: #0d7c0d;
}
.evento-page .column-right figure.cover {
    position: relative;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: opacity 400ms ease-in-out;
    background-color: var(--site--first--color);
}
.evento-page .column-right figure.cover.over-cover::after {
    content: '\e802';
    font-family: "sidemast";
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    margin: 0;
    font-variant: normal;
    text-transform: none;
    position: absolute;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
    text-shadow: 5px 5px 5px rgb(0, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition: opacity 400ms ease-in-out;
}
.evento-page .column-right figure.cover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 400ms ease-in-out;
}
.evento-page .column-right figure.cover:hover::before {
    opacity: 1;
}
.evento-page .column-right figure.cover img {
    width: 100%;
}
.evento-page .column-right figure.cover.over-cover:hover::after {
    opacity: 1;
}


/*--- ARCHIVE (EVENT) */
.archive-cpt-events {
    /*margin: 6rem 0;*/
}
.archive-cpt-events .next-event {
    margin-bottom: 2rem;
}
.archive-cpt-events .next-event h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--site--second--color);
    margin: 0 0 3rem 0;
    padding: 0;
    text-transform: none;
    text-align: center;
}
.archive-cpt-events .next-event figure {
    margin: 0;
}
.archive-cpt-events .single-event {
    margin-bottom: 1.5rem;
    border: 1px solid #f0f0f0;
    padding-bottom: 1rem;
    height: calc(100% - 1.5rem);
    background-color: #f9f9f9;
}
.archive-cpt-events .single-event figure {
    margin-bottom: 1rem;
    transition: opacity 400ms ease-in-out;
    background-color: var(--site--first--color);
    overflow: hidden;
    border-bottom: 5px solid var(--site--second--color);
}
.archive-cpt-events .single-event figure:hover {
    opacity: 0.6;
}
.archive-cpt-events .single-event figure a img {
    
}
.archive-cpt-events .single-event .info {
    padding: 0 0.5rem;
}
.archive-cpt-events .single-event .info footer {
    
}
.archive-cpt-events .single-event h3 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    padding: 0 0.5rem;
    margin: 0 0 2rem 0;
}
.archive-cpt-events .single-event .location {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: var(--site--second--color);
}
.archive-cpt-events .single-event .date {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    color: #000;
}


/*--- PUBBLICAZIONI (POST: PUBBLICAZIONE) */
.post-publication {
	margin-top: 5rem;
}
.post-publication .single {
	margin-bottom: 2rem;
}
.post-publication .single h2 {
	font-size: 1.4rem;
	font-weight: 500;
	margin: 0 0 0.4rem 0;
	padding: 0;
}
.post-publication .single time {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 1rem 0;
	padding: 0;
	display: block;
	color: var(--site--third--color);
}
.post-publication ul.list-attachments {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.post-publication ul.list-attachments li {
	margin: 0 0 0.5rem 0;
	padding: 0;
	list-style-type: none;
}
.post-publication ul.list-attachments li:last-child {
	margin: 0;
}
.post-publication ul.list-attachments li .button {
    margin: 0;
}


/*--- NEWSLETTER (POST: NEWSLETTER) */
.newsletter-archive {
    
}
.newsletter-archive .year {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: "Open Sans", Arial, sans-serif;
    text-transform: uppercase;
    margin: 2rem 0 2rem 0;
    color: var(--site--second--color);
    border-top: 1px solid var(--site--third--color);
    padding-top: 2rem;
    text-align: center;
}
.newsletter-archive .year:first-of-type {
    border-top: none;
    padding-top: 0;
}
.newsletter-archive .single {
    margin: 0 0 1rem 0;
}
.newsletter-archive .single .month {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 0.2rem 0;
}
.newsletter-archive .single ul {
    margin: 0 0 0 0;
    padding: 0;
    list-style-type: none;
}
.newsletter-archive .single ul li {
    margin: 0 0 0.5rem 0;
    padding: 0;
    list-style-type: none;
    font-weight: 500;
    display: flex;
}
.newsletter-archive .single ul li::before {
    content: "↳";
    margin: 0 0.3rem 0 0;
    top: -0.4rem;
    position: relative;
    color: var(--site--third--color);
}
.newsletter-archive .single ul li a {
    line-height: 1;
}
.newsletter-archive .single ul li a small {
    font-size: 0.8rem;
    color: var(--site--first--color);
    font-weight: 700;
    transition: color ease-in-out 400ms,
                background ease-in-out 400ms,
                opacity ease-in-out 400ms,
                border ease-in-out 400ms;
}
.newsletter-archive .single ul li a:hover small {
    color: var(--site--second--color);
}


/*--- FOOTER */
footer.layout-row {
    padding: 2rem 0;
    margin-top: 6rem;
    background-color: var(--site--first--color);
    color: #fff;
}
footer.layout-row .topper {
    margin-bottom: 3rem;
}
footer.layout-row figure.logo {
    margin: 0 4rem 0 0;
}
footer.layout-row figure.logo img {
    width: 400px;
}
footer.layout-row .organizational-secretariat {
    margin-right: 2rem;
}
footer.layout-row .organizational-secretariat h4 {
    font-size: 0.8rem;
	font-weight: 500;
	margin: 0 0 1rem 0;
	padding: 0;
	text-transform: none;
	color: var(--site--second--color);
}
footer.layout-row .organizational-secretariat figure {
    margin: 0 0 1rem 0;
}
footer.layout-row .organizational-secretariat p {
    font-size: 0.7rem;
	margin: 0;
	color: var(--site--second--color);
}
footer.layout-row .sidemast-secretariat {
    margin-right: 2rem;
}
footer.layout-row .sidemast-secretariat h4 {
    font-size: 0.8rem;
	font-weight: 500;
	margin: 0 0 1rem 0;
	padding: 0;
	text-transform: none;
	color: var(--site--second--color);
}
footer.layout-row .sidemast-secretariat figure {
    margin: 0 0 1rem 0;
}
footer.layout-row .sidemast-secretariat figure img {
    width: 120px;
}
footer.layout-row .sidemast-secretariat p {
    font-size: 0.7rem;
	margin: 0;
	color: var(--site--second--color);
}
footer.layout-row .sidemast-secretariat .people {
    
}
footer.layout-row .sidemast-secretariat .people p {
    margin: 0 1rem 0 0;
}
footer.layout-row .sidemast-secretariat .people p:last-child {
    margin: 0;
}
footer.layout-row .stay-updated {
    margin: 0 2rem 0 0;
}
footer.layout-row .stay-updated h4 {
    font-size: 0.8rem;
	font-weight: 500;
	margin: 0 0 1rem 0;
	padding: 0;
	text-transform: none;
	color: #fff;
}
footer.layout-row .stay-updated .button-mini {
	margin: 0;
}
footer.layout-row .stay-updated .button-mini a {
    font-size: 0.8rem;
}
footer.layout-row .follow-us h4 {
    font-size: 0.8rem;
	font-weight: 500;
	margin: 0 0 1rem 0;
	padding: 0;
	text-transform: none;
	color: var(--site--second--color);
}
footer.layout-row .follow-us ul.own-socials {
    margin: 0;
	padding: 0;
	list-style-type: none;
}
footer.layout-row .follow-us ul.own-socials li {
    margin: 0 0.8rem 0 0;
	padding: 0;
	list-style-type: none;
}
footer.layout-row .follow-us ul.own-socials li a {
    color: #fff;
}
footer.layout-row .follow-us ul.own-socials li a:hover {
    color: var(--site--second--color);
}
footer.layout-row .follow-us ul.own-socials li [class^="icon-"]::before {
    width: auto;
	margin: 0;
}
.after-footer {
	background-color: var(--site--second--color);
	color: #fff;
	padding: 1rem 0;
}
.after-footer ul {
    margin: 0;
	padding: 0;
	list-style-type: none;
}
.after-footer ul li {
	font-size: 0.7rem;
	font-weight: 500;
    margin: 0;
	padding: 0;
	list-style-type: none;
}
.after-footer ul li:last-child {
	margin: 0;
}
.after-footer ul li a {
    color: #fff;
}
.after-footer ul li a:hover {
    color: var(--site--first--color);
}
.after-footer ul:first-child li:last-child::after {
    content: "•";
	margin: 0 0.6rem;
}
.after-footer ul:last-child li::after {
    content: "|";
	margin: 0 0.6rem;
}
.after-footer ul:last-child li:last-child::after {
    content: "";
	margin: 0;
}


/*--- ANIMAZIONI CSS*/
@keyframes header-anim {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes header-meta-anim {
    from {
        bottom: -3rem;
    }
    to {
        bottom: 3rem;
    }
}