.container {
  width: 940px;
  margin: 0 auto;
}

.theme {
  padding-top: 50px;
  margin-bottom: 80px;
}

.theme__title,
.speakers__title {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 24px;
  text-align: center;
}

.theme__wrapper {
  display: flex;
  justify-content: space-between;
}

.theme__box {
  position: relative;
  box-sizing: border-box;
  width: 450px;
  height: 370px;
  padding-top: 25px;
  padding-right: 15px;
  padding-left: 15px;
  background-color: #EBFDFC;
}

.theme__age {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 15px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  font-family: 'MuseoSansBold', sans-serif;
  background-color: #CF202C;
}

.theme__name {
  margin-top: 0;
  margin-bottom: 30px;
  color: #4B4571;
  font-size: 16px;
  font-weight: 500;
  font-family: 'MuseoSansBold', sans-serif;
}

.theme__name--big {
  display: block;
  font-size: 18px;
}

.theme__list {
  margin: 0;
  padding-left: 20px;
  list-style: url(../img/new/li.svg);
}

.theme__item {
  margin-bottom: 15px;
  color: #4B4571;
  font-size: 16px;
  font-weight: 300;
  font-family: 'MuseoSansRegular', sans-serif;
}

.theme__button {
  position: absolute;
  left: 50%;
  bottom: -30px;
  box-sizing: border-box;
  display: block;
  width: 250px;
  margin: 0 auto;
  padding: 14px 0;
  color: #fff;
  font-size: 16px;
  font-family: "MuseoSansBold";
  text-align: center;
  text-decoration: none;
  background: linear-gradient(80.54deg, #941023 0%, #C71E2C 100%);
  transform: translateX(-50%);
}

@media screen and (max-width: 940px) {
  .container {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
  }
  
  .theme__wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .theme__box {
    margin-bottom: 50px;
  }
  
  .theme__box:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 460px) {
  .theme__box {
    margin-bottom: 80px;
    padding-bottom: 50px;
    width: 95%;
    height: auto;
  }
  
  .theme__age {
    top: -30px;
  }
}

/* Speakers */

.speakers {
  margin-bottom: 50px;
}

.speackers__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.speakers__photo {
  width: 455px;
  height: 280px;
  object-fit: cover;
}

.speakers__content {
  width: 455px;
}

.speakers__name {
  margin-top: 0;
  margin-bottom: 10px;
  color: #4B4571;
  font-size: 20px;
  font-family: "MuseoSansBold";
}

.speakers__position {
  margin-top: 0;
  margin-bottom: 20px;
  color: #4B4571;
  font-size: 16px;
  font-family: "MuseoSansRegular";
}

.speakers__list {
  margin-top: 0;
  margin-bottom: 25px;  
  padding-left: 20px;
  list-style: url('../img/new/li-sm.svg');
}

.speakers__item {
  margin-top: 0;
  margin-bottom: 15px;
  color: #4B4571;
  font-size: 16px;
  font-family: "MuseoSansRegular";
}

.speakers__skills {
  margin-top: 0;
  margin-bottom: 15px;
  color: #4B4571;
  font-size: 18px;
  font-family: "MuseoSansRegular";
}

.speakers__button {
  box-sizing: border-box;
  display: block;
  width: 250px;
  margin: 0 auto;
  padding: 14px 0;
  color: #fff;
  font-size: 16px;
  font-family: "MuseoSansBold";
  text-align: center;
  text-decoration: none;
  background: linear-gradient(80.54deg, #941023 0%, #C71E2C 100%);
}

@media screen and (max-width: 940px) {
  .speackers__box {
    flex-direction: column;
    align-items: center;
  }
  
  .speakers__photo {
    order: 1;
    margin-bottom: 20px;
  }
  
  .speakers__content {
    order: 2;
  }
}

@media screen and (max-width: 460px) {
  .speackers__box {
    margin-bottom: 30px;
  }
  
  .speakers__photo,
  .speakers__content {
    width: 95%;
  }
}