:root {     
    --event-section-main-color-1: #333; 
    --event-section-main-color-2: #555; 
    --event-section-light-color: #FFF;
    --event-section-light-color-1: #EFEFEF; 
    --event-section-light-color-2: #F5F5F5; 
    --event-section-light-color-3: #FAFAFA; 
    --event-section-dark-color: #333;
    --event-section-dark-color-1: #444; 
    --event-section-dark-color-2: #555; 
    --event-section-dark-color-3: #777; 
    --event-section-bg: #FFF;    
    --event-section-color: #333; 
    --event-section-align: left; 
    --event-section-fsize: 20px; 
    --event-section-fweight: 400;
    --event-section-lheight: 30px; 
    --event-section-bquote-fsize: 30px; 
    --event-section-bquote-lheight: 35px; 
    --event-section-header-fsize: 35px; 
    --event-section-header-fweight: 400;
    --event-section-header-lheight: 35px; 
    --event-section-large-fsize: 24px; 
    --event-section-large-lheight: 35px; 
    --event-section-large-bquote-fsize: 35px; 
    --event-section-large-bquote-lheight: 40px; 
    --event-section-large-header-fsize: 50px; 
    --event-section-large-header-lheight: 50px; 
    --event-section-button-bg: #333; 
    --event-section-button-hover: #888; 
    --event-section-button-color: #FFF; 
    --event-section-button-border: none; 
    --event-section-next-bg: #333; 
    --event-section-next-hover: #111; 
    --event-section-next-color: #FFF; 
    --event-section-next-border: none; 
    --event-section-next-radius: 5px;
}   
#content .event-section .wrapper-2 {
    width: 980px;
    margin: 0 auto;
}
.event-section {
    background: var(--event-section-bg);  
    color: var(--event-section-color);  
    padding: 80px 0;
    text-align: var(--event-section-align);  
    font-size: var(--event-section-fsize);
    font-weight: var(--event-section-fweight);
    line-height: var(--event-section-lheight);
}
.event-section a { 
    color: var(--event-section-color); 
    text-underline-offset: 2px;
}
.event-section.large { 
    font-size: var(--event-section-large-fsize);
    line-height: var(--event-section-large-lheight);
}
.event-section h2 {
    font-size: var(--event-section-header-fsize);
    font-weight: var(--event-section-header-fweight);
    line-height: var(--event-section-header-lheight);
    padding: 0 0 40px;
    margin: 0;
    text-transform: uppercase;
}
.event-section h2 small {
    display: block;
    line-height: calc(var(--event-section-header-lheight) - 4px);
    padding-top: 2px;
}
.event-section.large h2 {
    font-size: var(--event-section-large-header-fsize);
    line-height: var(--event-section-large-header-lheight);
}
.event-section.no-header h2 {
    display: none;
}
.event-section blockquote { 
    margin: 40px;
    bottom: 0;
    font-size: var(--event-section-bquote-fsize);
    line-height: var(--event-section-bquote-lheight);
}
.event-section.large blockquote {
    font-size: var(--event-section-large-bquote-fsize);
    line-height: var(--event-section-large-bquote-lheight);
}
.event-section p:last-child,
.event-section blockquote:last-child { 
    margin-bottom: 0;
    padding-bottom: 0;
}

.event-section p:first-child,
.event-section h2 + p,
.event-section h2 + h3,
.event-section h2 + blockquote {
    padding-top: 0;
    margin-top: 0;
}
.event-section h2 + h3 {
    font-size: x-large;
    font-weight: 600;
}
.event-section b,
.event-section strong {
    font-weight: 500;
}

.event-section .button {
    background: var(--event-section-button-bg);  
    color: var(--event-section-button-color);  
    display: inline-block;
    border: var(--event-section-button-border);  
    font-size: 20px;
    font-weight: 400;
    height: 40px;
    line-height: 39px; 
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: none;
    box-sizing: border-box;
    outline: none;
    padding: 0 30px;
    width: auto;
    cursor: pointer;
    transition: all 0.1s linear;
}
.event-section .button:hover {
    background: var(--event-section-button-hover);  
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.02), 
                0 3px 1px -2px rgba(0,0,0,0.05), 
                0 2px 5px 0 rgba(0,0,0,0.05);
}
.event-section .buttons {
    text-align: center;
    line-height: 60px;
    padding: 30px 20px;
}
.event-section h2 + .buttons,
.event-section .buttons:first-child {
    padding-top: 0;
}
.event-section .buttons:last-child {
    padding-bottom: 0;
}
.event-section .buttons .button {
    font-size: 30px;
    font-weight: 400;
    height: 60px;
    line-height: 60px; 
    width: 100%;
    max-width: 460px;
}
.event-section .section-button-next,
.event-section .section-button-back { 
    background-color: var(--event-section-next-bg);  
    color: var(--event-section-next-color);  
    border: var(--event-section-next-border);  
    display: block;
    margin: 75px auto 0 auto;
    padding: 0;
    height: 60px;
    width: 60px; 
    border-radius: var(--event-section-next-radius);
    position: relative;
    cursor: pointer;
    transition: all 0.1s linear;
    z-index: 30;
}
.event-section .section-button-next span,
.event-section .section-button-back span { 
    display: none;
}
.event-section .section-button-back { 
    rotate: 90deg;
}
.event-section .section-button-next::before,
.event-section .section-button-next::after,
.event-section .section-button-back::before,
.event-section .section-button-back::after {
    border-bottom: var(--event-section-next-color) 2px solid;  
    content: "";
    display: block;
    margin: 0;
    padding: 0;
    height: 1px;
    width: 21px; 
    border-radius: 1px;
    position: absolute;
    top: 28px;
    left: 13px;
    rotate: 405deg;
}
.event-section .section-button-next::after,
.event-section .section-button-back::after {
    top: 29px;
    left: 27px;
    rotate: 495deg;
}
.event-section .section-button-next:hover,
.event-section .section-button-back:hover {
    background-color: var(--event-section-next-hover);  
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.02), 
                0 3px 1px -2px rgba(0,0,0,0.05), 
                0 2px 5px 0 rgba(0,0,0,0.05);
}
.event-section .section-suffix-text {
    padding: 50px 0 0 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}
.event-section .buttons + .section-suffix-text {
    padding-top: 0px;
}

.window-map {
    background: #FFF;   
    overflow: hidden;
    max-height: 90vh;
    box-sizing: border-box;
}     
.window-person figure {
    background: var(--event-section-welcome-bg) url(/_i/icon-30-a-user.png) no-repeat center center;
    border: var(--color-1) 4px solid;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 200px;
    height: 200px;
    box-sizing: border-box;
    border-radius: 100%;
    overflow: hidden;
    float: left;
}        
.window-person figure::before { 
    background: rgba(0, 0, 0, 0.1) ;
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}     
.window-person figure img { 
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 1;
}     
.window-person h2 {      
    background: var(--event-section-welcome-bg);
    color: var(--event-section-welcome-color);
    display: block;
    font-size: 40px;
    font-weight: 400;
    line-height: 64px;
    padding: 115px 0 0 265px;  
    margin: -40px -40px 55px -40px;
}            
.window-person h2 span {   
    font-size: smaller;
    opacity: 0.9;    
}   
.window-person p {            
    font-family: Roboto, Arial, serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding: 0 0 15px 225px;  
    margin: 0;
}       

.window-map .w {
    position: relative;
    padding: 40px 20px 20px 20px;  
    min-height: 70vh;
    box-sizing: border-box;
}            
.window-map .w iframe {
    border: rgba(0, 0, 0, 0.1)  1px solid;
    position: absolute;
    top: 40px;
    left: 20px;
    right: 20px;            
    width: calc(100% - 40px);
    height: calc(100% - 60px);
}

@media (max-width: 1195px) {
    .event-section p br, 
    .event-section blockquote br {   
        display: none;
    }
}
@media (max-width: 1080px) {   
    .window-map,  
    .window-map .w, 
    .window-person {
        width: 100vw;
        height: 100vh; 
        max-height: 100vh;
    } 
}                 
@media (max-width: 1060px) {
    #content .event-section .wrapper-2 {
        width: auto;
        margin: 0;
    }
    .event-section {
        padding-left: 40px;
        padding-right: 40px;
    }
} 
@media (max-width: 840px) {
    :root {     
        --event-section-fsize: 18px; 
        --event-section-lheight: 24px; 
        --event-section-bquote-fsize: 24px; 
        --event-section-bquote-lheight: 30px; 
        --event-section-header-fsize: 30px; 
        --event-section-header-lheight: 30px; 
 
        --event-section-large-fsize: 22px; 
        --event-section-large-lheight: 32px; 
        --event-section-large-bquote-fsize: 28px; 
        --event-section-large-bquote-lheight: 32px; 
        --event-section-large-header-fsize: 40px; 
        --event-section-large-header-lheight: 40px; 
    }
    .event-section blockquote {   
        margin-left: 0;
        margin-right: 0;
    }
    .event-section-articles {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 640px) {
    :root {      
        --event-section-large-fsize: 20px; 
        --event-section-large-lheight: 30px; 
        --event-section-large-bquote-fsize: 26px; 
        --event-section-large-bquote-lheight: 32px; 
        --event-section-large-header-fsize: 35px; 
        --event-section-large-header-lheight: 35px; 
    }
    .event-section blockquote {   
        margin-left: 0;
        margin-right: 0;
    }
    .event-section .buttons {
        line-height: 50px; 
        padding: 30px 0;
    }
    .event-section .buttons .button {
        font-size: 20px;
        font-weight: 400;
        height: 50px;
        line-height: 50px; 
        max-width: 460px;
    }
}
@media (max-width: 480px) {
    :root {     
        --event-section-large-fsize: var(--event-section-fsize); 
        --event-section-large-lheight: var(--event-section-lheight); 
        --event-section-large-bquote-fsize: var(--event-section-bquote-fsize); 
        --event-section-large-bquote-lheight: var(--event-section-bquote-lheight); 
        --event-section-large-header-fsize: var(--event-section-header-fsize); 
        --event-section-large-header-lheight: var(--event-section-header-lheight); 
    }
    .event-section {
        padding: 65px 20px;
    }
    .event-section-articles {
        padding-left: 0;
        padding-right: 0;
    }
    .event-section .section-button-next {
        margin-top: 55px;
    }
    .event-section h2 small {
        line-height: calc(var(--event-section-header-lheight) - 3px);
    }
}