@font-face {
    font-family: 'Foco';
    font-style: normal;
    font-weight: normal;
    src: local('Foco'), url('../fonts/FOCO.woff') format('woff');
}
@font-face {
    font-family: 'Foco Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Foco Bold'), url('../fonts/FOCOBOLD.woff') format('woff');
}

:root {
    --first-color: #0059a0;
    --second-color: #29aed3;
    --third-color: #446a80;
    --important-color: red;
    --font-color: rgb(29, 29, 27);
    --main-title-font: 2.2rem;
    --large-font: 2rem;
    --med-font: 1.8rem;
    --small-font: 1.6rem;
}
html {
    font-family: 'Foco', sans-serif;
    font-size: 10pt;
    color: var(--font-color);
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: rgb(238, 246, 249);
    overflow: hidden;
}

.wrapper {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 1024px;
    height: 100%;
    margin: auto;
}
@media print {
    body {
        overflow: auto;
    }

    .wrapper {
        display: block;
        overflow: auto;
        max-width: none;
        height: auto;
    }
}
header {
    background: var(--first-color);
    display: flex;
    justify-items: start;
    justify-content: space-between;
    padding: 10px;
    box-shadow: 0px 2px 10px -3px rgba(29,29,27,0.75);
    align-items: center;
}

.logo {
    height: 55px;
    
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    max-width: 180px;
    flex-wrap: wrap;
    
}
.social-icon {
    height: 30px;
    margin: 5px;
}

main {
    flex: 1;
    overflow-y: scroll;
    padding: 10px 5px 5px 5px;
}

a.link {
    color: var(--second-color);
    font-size: var(--small-font);
    text-decoration: none;
    font-family: 'Foco Bold';
}

a.link__live {
    background: var(--important-color);
    color: white;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
a.link__btn {
    display: block;
    margin: auto;
    text-align: center;
}

h1.title {
    font-family: 'Foco Bold';
    padding: 0;
    margin: 0;
    color: var(--first-color);
    font-size: var(--main-title-font);
    text-align: center;
    font-weight: normal;
}

.date {
    margin-top: 10px;
    text-align: center;
    font-size: var(--small-font);
}
h2.subtitle {
    padding: 0;
    margin: 0;
    color: var(--third-color);
    font-size: var(--med-font);
    font-family: 'Foco Bold';
    text-align: center;
    font-weight: normal;
}


.session-block {
    padding: 10px 0 10px 0;
    position: relative;
}

.session-block:after {
    content: "";
    border-bottom: 1px solid  rgb(187, 205, 222);
    position: absolute;
    left: 50px;
    right: 50px;
    margin-top: 10px;
}
.session-block__first {
    
    margin-top: 10px;
}
h3.session {
    padding: 0;
    margin: 0;
    color: var(--first-color);
    font-family: 'Foco Bold';
    font-size: var(--med-font);
    text-align: center;
    font-weight: normal;
}


.time {
    font-size: var(--small-font);
    text-align: center;
    font-family: 'Foco Bold';
}

.presenters {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    font-size: var(--small-font);
}

.presenters__item {
    padding: 10px 0 10px 0;   
}
.presenters_title {
    font-family: 'Foco Bold';
    display: block;
    color: var(--first-color);
    text-align: left;
    margin-bottom: 5px;
    font-weight: normal;
}
.presenters__bio {
    display: flex;
    align-items: flex-start;
}
.presenters__photo {
    width: 85px;
}

.presenters__content {
    margin-left: 10px;
}

.presenters__moderator {
    background: var(--first-color);
    color: white;
    padding: 5px;
    display: inline-block;
}
.presenters__presenter {
    color: var(--third-color);
    font-family: 'Foco Bold';
    display: block;
    font-weight: normal;
}

.presenters__links {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
