Agneda

* {
margin: 0;
padding: 0;
line-height: 1;
}

body {
font: 1em sans-serif;
}

.bar {
display: flex;
width: 100%;
padding: 1em 0;
background-color: #012169;
border-bottom: 1px solid #F1F0EF;
transition: background-color .25s;
cursor: pointer;
}

.bar:hover {
background-color: #F1F0EF;
}

.active {
background-color: #F1F0EF;
}

.bar__time {
width: 8em;
padding: 0 1em;
font-size: .875em;
color: #C0C0C0;
font-weight: 700;
}

.bar__title {
font-weight: 700;
color:#FFFFFF;
}

.head {
display: flex;
width: 100%;
padding: 1em 0;
background-color: #012169;
border-bottom: 1px solid #F1F0EF;
transition: background-color .25s;
}

.head_1 {
width: 8em;
padding: 0 1em;
font-size: .875em;
color: #EA6012;
font-weight: 700;
text-decoration: underline;
}
.head_2 {
padding: 0 1,5em;
font-size: .875em;
color: #EA6012;
font-weight: 700;
}

.content {
padding: 1em 8.8em;
display: none;
overflow: hidden;
border-bottom: 1px solid #F1F0EF;
background-color: #FFFFFF;
color:#EA6012;
}

.content p:last-child {
margin-bottom: 0;
}
.content_p {
margin-bottom: 0;
margin-top: 0.5em;
color: #EA6012;
font-size: 100%

}
.break {
display: flex;
width: 100%;
padding: 1em 0;
background-color: #012169;
border-bottom: 1px solid #F1F0EF;
transition: background-color .25s;
}

.break__time {
width: 8em;
padding: 0 1em;
font-size: .875em;
color: #C0C0C0;
font-weight: 700;
}
.break__title {
font-weight: 700;
color: #C0C0C0;
}

.radio {
display: flex;
width: 100%;
padding: 1em 0;
color: #EA6012;
background-color: #FFFFFF;
border-bottom: 1px solid #F1F0EF;
transition: background-color .25s;
}

.radio__time {
width: 8em;
padding: 0 1em;
font-size: .875em;
color:#EA6012;
font-weight: 700;
}
.radio__title {
font-weight: 700;
color:#EA6012;
}

Zurich
Minsk
Content 14.01.2022

Content

08:00-12:00
10:00-14:00

12:00-12:15
14:00-14:15
START OF THE CONFERENCE

12:15-13:35
14:15-15:35
MODULE 1. Heroes of 3M

Topic 1 – ???:
Mikhail Antonovich, Natalia Shemyakina, Denis Gural, Vitaly Eremenko, Natalia Shmanevskaya, Ramilya Akhmetova

Topic 2 – ???:
Anton Nowyouov, Victoria Dunina, Oleg Buikov, Przemyslaw Boronski, Monika Karol, Eva Trochimyuk.

Topic 3 – ???:
Eustas Tsybulkas, Anton Dashkevich.

Topic 4 – ???:
Elena Firsova, Anastasia Dorokhova, Mikhail Novakov, Christian Eckstein.

13:35-13:40
15:35-15:40
BREAK

13:40-15:20
15:40-17:20
MODULE 2. Back office

Topic 1 – Finance

Topic 2 – Service Center

Topic 3 – Marketing

Topic 4 – Lawyers

Topic 5 – XP

Topic 6 – IT

Topic 7 – Analysts

15:20-15:25
17:20-17:25
BREAK
15:25-16:00
17:25-18:00
MODULE 3. Better employees

Annual Contest from the Board of Directors for the title “Best employee”

Summing up the QUIZ on the platform

var coll = document.getElementsByClassName(‘bar’);
var i;

for (i = 0; i < coll.length; i++) {
coll[i].addEventListener('click', function() {
this.classList.toggle('active');
var content = this.nextElementSibling;
if (content.style.display === 'block') {
content.style.display = 'none';
} else {
content.style.display = 'block';
}
});
}