.site-header__inner {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.site-header__container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
.site-header .main-navigation {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 991px) {
  .site-header .main-navigation {
    flex-direction: row-reverse;
    gap: 16px;
  }
}
.site-header .main-navigation .cart a {
  position: relative;
  width: 30px;
  height: 30px;
  color: #3078c5;
  transition: all 250ms ease;
}
.site-header .main-navigation .cart a:hover {
  color: #005fc5;
}
.site-header .main-navigation .cart a svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header .main-navigation .cart-count {
  position: absolute;
  text-align: center;
  color: #ffffff;
  background-color: #3078c5;
  padding: 0 3px;
  border-radius: 50%;
  min-width: 21px;
  top: -11px;
  left: 16px;
  font-size: 14px;
  border: 1px solid #dbe9f6;
}
@media screen and (max-width: 991px) {
  .site-header .main-navigation .menu {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 96px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.7490196078);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    display: block;
    transform: scaleX(0);
    transform-origin: top right;
    transition: all 250ms ease-in-out;
    z-index: 111;
    box-shadow: 0px 0px 23px 0px rgba(21, 53, 87, 0.12);
  }
}
@media screen and (max-width: 991px) {
  .site-header .main-navigation.toggled .menu {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: scaleX(1);
  }
}
.site-header #primary-menu.menu,
.site-header .main-navigation ul {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 991px) {
  .site-header #primary-menu.menu,
  .site-header .main-navigation ul {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
}
.site-header #primary-menu.menu li.menu-item,
.site-header .main-navigation li.page_item {
  width: -moz-fit-content;
  width: fit-content;
}
.site-header #primary-menu.menu li.menu-item a,
.site-header .main-navigation ul li.page_item a {
  position: relative;
  color: #191a1e;
  font-size: 18px;
  line-height: 1.56;
  text-decoration: none;
}
.site-header #primary-menu.menu li.menu-item a::after,
.site-header .main-navigation ul li.page_item a::after {
  transform: scaleX(0);
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -1px;
  background: #191a1e;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 250ms ease-in-out;
}
.site-header #primary-menu.menu li.menu-item a:hover::after,
.site-header .main-navigation ul li.page_item a:hover::after {
  transform: scaleX(1);
}
.site-header #primary-menu.menu li.menu-item.current-menu-item a::after,
.site-header .main-navigation ul li.page_item.current_page_item a::after {
  transform: scaleX(1);
}
.site-header .site-branding {
  width: 126px;
  height: 121px;
}
@media screen and (max-width: 991px) {
  .site-header .site-branding {
    width: 100px;
    height: 96px;
  }
}
.site-header .site-branding.home-logo {
  pointer-events: none;
}
.site-header .custom-logo-link {
  width: 100%;
  height: 100%;
}
.site-header .custom-logo-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header .menu-toggle {
  display: none;
}
@media screen and (max-width: 991px) {
  .site-header .menu-toggle {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    border: none;
    background-color: transparent;
    color: #191a1e;
  }
  .site-header .menu-toggle:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/menu.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .site-header .menu-toggle[aria-expanded=true]::after {
    background-image: url(../img/close.svg);
  }
}

.home .site-header__inner {
  background-color: #dbe9f6;
}

.site-footer__inner {
  background-color: #40424a;
  padding: 24px 0;
}
.site-footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .site-footer__container {
    flex-direction: column;
    gap: 24px;
  }
}
.site-footer .menus {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .site-footer .menus {
    flex-direction: column;
  }
}
.site-footer .menu {
  display: flex;
  gap: 24px;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  .site-footer .menu {
    flex-wrap: wrap;
  }
}
.site-footer .menu .menu-item {
  text-align: center;
}
.site-footer .menu .menu-item a {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.56;
  text-align: center;
  text-decoration: none;
}
.site-footer .menu .menu-item a::after {
  transform: scaleX(0);
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -1px;
  background: #ffffff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 250ms ease-in-out;
}
.site-footer .menu .menu-item a:hover::after {
  transform: scaleX(1);
}
.site-footer__logo {
  width: 142px;
  height: 121px;
}
@media screen and (max-width: 767px) {
  .site-footer__logo {
    width: 100px;
    height: 85px;
  }
}
.site-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-footer__logo.home-logo {
  pointer-events: none;
}

.social-media__list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .social-media__list {
    justify-content: center;
  }
}
.social-media__item {
  width: 32px;
  height: 32px;
  scale: 1;
  transition: scale 250ms ease;
}
.social-media__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.social-media__item:hover {
  scale: 1.08;
}

.button {
  display: block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.56;
  text-align: center;
  border-radius: 4px;
  transition: all 250ms ease;
  text-decoration: none;
}
.button:hover, .button:focus {
  text-decoration: none;
}

.button-white {
  padding: 12px 10px;
  color: #5b97d7;
  background-color: #ffffff;
  border: 1px solid #5b97d7;
}
.button-white:hover, .button-white:focus {
  border-color: #3078c5;
  color: #3078c5;
}
.button-white:active {
  color: #ffffff;
  background-color: #3078c5;
}

.button-white-arrow {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: #3078c5;
  background-color: #ffffff;
  border: 1px solid #3078c5;
}
.button-white-arrow svg {
  rotate: 0deg;
  transition: rotate 250ms ease;
}
.button-white-arrow:hover svg, .button-white-arrow:focus svg {
  rotate: 45deg;
}

.button-blue {
  color: #ffffff;
  background-color: #3078c5;
  border: 1px solid #ffffff;
}
.button-blue:hover, .button-blue:focus {
  background-color: #005fc5;
}

.button-blue-arrow {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #3078c5;
}
.button-blue-arrow:hover, .button-blue-arrow:focus {
  background-color: #005fc5;
}

.button-transparent {
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
}
.button-transparent:hover, .button-transparent:focus {
  background-color: #ffffff;
  color: #3078c5;
}

.button-transparent-arrow {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
}
.button-transparent-arrow svg {
  rotate: 0deg;
  transition: rotate 250ms ease;
}
.button-transparent-arrow:hover svg, .button-transparent-arrow:focus svg {
  rotate: 45deg;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #ffffff;
  color: #191a1e;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

#page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

header {
  flex-grow: 0;
  flex-shrink: 0;
}

footer {
  flex-grow: 0;
  flex-shrink: 0;
}

.container {
  max-width: 1248px;
  padding: 0 16px;
  margin: 0 auto;
  width: 100%;
}

.container.page-default {
  padding: 40px 16px;
}
@media screen and (max-width: 767px) {
  .container.page-default {
    padding: 28px 16px;
  }
}

.section {
  padding: 40px 0;
}
@media screen and (max-width: 991px) {
  .section {
    padding: 20px 0;
  }
}

.title {
  margin-bottom: 60px;
  color: #191a1e;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 991px) {
  .title {
    font-size: 38px;
    margin-bottom: 30px;
  }
}

.title-top {
  margin-top: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .title-top {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

.text {
  color: #40424a;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.56;
}

.entry-content {
  margin: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}
@media screen and (max-width: 991px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
}
@media screen and (max-width: 991px) {
  h3 {
    font-size: 24px;
  }
}

p,
li {
  color: #40424a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}
@media screen and (max-width: 991px) {
  p,
  li {
    font-size: 16px;
  }
}

a {
  color: #3078c5;
  cursor: pointer;
  font-weight: 500;
}
a:hover {
  text-decoration: underline;
}

p:not(:last-child) {
  margin-bottom: 24px;
}

label {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  color: #40424a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
}
@media screen and (max-width: 991px) {
  label {
    margin-bottom: 28px;
  }
}
label a {
  color: #3078c5;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.43;
}

input,
textarea {
  width: 100%;
  padding: 10px 12px;
  color: #191a1e;
  background-color: #dbe9f6;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  outline: none;
  box-shadow: 0px 1px 2px 0px rgba(18, 26, 43, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(48, 120, 197, 0.12);
  transition: border-color 250ms ease;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #9a9ca3;
}
input::placeholder,
textarea::placeholder {
  color: #9a9ca3;
}
input:focus,
textarea:focus {
  border-color: #3078c5;
}

textarea {
  max-height: 120px;
  resize: none;
}

input.wpcf7-submit {
  display: block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.56;
  text-align: center;
  border-radius: 8px;
  transition: all 250ms ease;
  color: #ffffff;
  background-color: #3078c5;
  border: 1px solid #ffffff;
  cursor: pointer;
  transition: background-color 250ms ease;
}
input.wpcf7-submit:hover, input.wpcf7-submit:focus {
  background-color: #005fc5;
}

iframe {
  height: 100%;
}

.blue {
  color: #3078c5;
}

.acceptance {
  margin-bottom: 30px;
}
.acceptance label {
  flex-direction: row;
  align-items: center;
  margin-bottom: 0;
  gap: 8px;
}
@media screen and (max-width: 390px) {
  .acceptance label {
    pointer-events: auto;
    align-items: flex-start;
    max-width: 348px;
  }
}
.acceptance .wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0 0 2px 0;
}
@media screen and (max-width: 390px) {
  .acceptance .wpcf7-checkbox .wpcf7-list-item {
    margin: 2px 0;
  }
}
.acceptance .wpcf7-list-item-label {
  display: none;
}
.acceptance .wpcf7-not-valid-tip {
  min-width: 150px;
}
@media screen and (max-width: 390px) {
  .acceptance .wpcf7-not-valid-tip {
    bottom: -44px;
  }
}

.wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
}

.error-404.not-found {
  padding: 40px 0;
  text-align: center;
}
.error-404.not-found .page-content {
  margin-top: 0;
}
.error-404.not-found img {
  display: block;
  margin: 0 auto;
  max-width: 450px;
  max-height: 260px;
}
.error-404.not-found p {
  font-size: 18px;
  margin-bottom: 30px;
}
.error-404.not-found .button {
  max-width: 300px;
  margin: 0 auto;
}

.thank-you .title {
  margin: 0 0 40px;
  text-align: start;
}
.thank-you__user, .thank-you__text {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .thank-you__user, .thank-you__text {
    font-size: 18px;
  }
}
.thank-you__wrapper .thank-you__user {
  margin-bottom: 12px;
  font-weight: 600;
}
.thank-you__wrapper {
  max-width: 850px;
  margin: 20px auto 40px;
  padding: 36px;
  background-color: #dbe9f6;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .thank-you__wrapper {
    padding: 24px 16px;
  }
}

@media screen and (max-width: 1199px) {
  .bottom-section .section {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .bottom-section .section {
    padding-bottom: 60px;
  }
}
.bottom-section__inner {
  position: relative;
  padding: 74px 104px 74px 116px;
  background-color: #3078c5;
}
@media screen and (max-width: 1439px) {
  .bottom-section__inner {
    padding: 40px 16px 40px;
  }
}
@media screen and (max-width: 767px) {
  .bottom-section__inner {
    margin-bottom: 0;
    padding: 40px 16px 0;
  }
}
.bottom-section__wrap {
  width: 62%;
}
@media screen and (max-width: 767px) {
  .bottom-section__wrap {
    width: 100%;
  }
}
.bottom-section .title {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: start;
  font-size: 32px;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .bottom-section .title {
    text-align: center;
  }
}
.bottom-section .text {
  margin-bottom: 40px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .bottom-section .text {
    margin-bottom: 20px;
    text-align: center;
  }
}
.bottom-section__buttons {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .bottom-section__buttons {
    flex-direction: column;
    justify-content: center;
    max-width: 350px;
    margin: 0 auto 30px;
  }
}
.bottom-section__img {
  position: absolute;
  bottom: 0;
  right: 104px;
  width: 28%;
  height: 120%;
}
@media screen and (max-width: 1439px) {
  .bottom-section__img {
    right: 16px;
  }
}
.bottom-section__img img {
  width: 100%;
  height: 100%;
  -o-object-position: bottom;
     object-position: bottom;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .bottom-section__img {
    position: static;
    width: 100%;
    min-height: 10px;
    margin: 0 auto;
  }
  .bottom-section__img img {
    height: 210px;
  }
}

.schedule .title {
  margin-bottom: 32px;
  margin-top: 32px;
  text-transform: capitalize;
}
.schedule-filters {
  margin-bottom: 60px;
}
.schedule-filters .button {
  padding: 16px 10px;
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .schedule-filters .button {
    padding: 8px 16px;
    font-size: 14px;
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .schedule-filters .button.button-white {
    color: #191a1e;
    background-color: transparent;
  }
  .schedule-filters .button.button-white:hover {
    color: #005fc5;
  }
}
.schedule-filters__title {
  display: none;
  margin-bottom: 4px;
  color: #191a1e;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .schedule-filters__title {
    display: block;
  }
}
.schedule-filters__track, .schedule-filters__room, .schedule-filters__date {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .schedule-filters__track, .schedule-filters__room, .schedule-filters__date {
    gap: 4px;
    justify-content: flex-start;
    padding: 4px;
    background-color: #dbe9f6;
    border-radius: 4px;
  }
}
.schedule-filters__track li, .schedule-filters__room li, .schedule-filters__date li {
  width: 100%;
  max-width: 256px;
}
@media screen and (max-width: 767px) {
  .schedule-filters__track li, .schedule-filters__room li, .schedule-filters__date li {
    width: -moz-fit-content;
    width: fit-content;
    flex-wrap: wrap;
  }
}
.schedule-filters__room, .schedule-filters__date {
  margin-bottom: 16px;
}
.schedule-cards {
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-direction: row;
  gap: 32px;
}
@media (max-width: 991px) {
  .schedule-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .schedule-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.schedule .schedule-cards.nothing-found:before {
  content: "Nothing found";
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}
.schedule .schedule-cards.nothing-found {
  display: block;
  text-align: center;
}
.schedule .card-inner:not(.card-active) {
  display: none;
}
.schedule .card-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .schedule .card-inner {
    justify-content: center;
  }
}
.schedule .card-inner .card {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 32px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0px 0px 40px 0px rgba(64, 66, 75, 0.16);
}
@media screen and (max-width: 991px) {
  .schedule .card-inner .card {
    width: 100%;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .schedule .card-inner .card {
    width: 100%;
    max-width: 450px;
    padding: 32px 16px;
  }
}
.schedule .card-inner .card__info {
  flex-grow: 1;
}
.schedule .card-inner .card__time {
  position: relative;
  padding-left: 18px;
  color: #40424a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}
.schedule .card-inner .card__time::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  background-image: url(../img/clock.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.schedule .card-inner .card__locations {
  display: flex;
  gap: 12px;
  margin: 12px 0 24px;
}
.schedule .card-inner .card__location {
  padding: 4px 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.56;
  border-radius: 4px;
  background: #dbe9f6;
}
.schedule .card-inner .card__location span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.56;
}
.schedule .card-inner .card__title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}
.schedule .card-inner .card__speaker {
  display: flex;
  gap: 16px;
}
.schedule .card-inner .card__speaker img {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  -o-object-fit: cover;
     object-fit: cover;
}
.schedule .card-inner .card__speaker h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0px;
}
.schedule .card-inner .card__speaker span {
  color: #9a9ca3;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
}
.schedule .card-inner .card__speaker:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .schedule .card-inner .card__speaker:not(:last-child) {
    margin-bottom: 16px;
  }
}
.schedule .card-inner .card-info {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.schedule .card-inner .card-info__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.74);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.schedule .card-inner .card-info__content h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
  margin-bottom: 0px;
}
.schedule .card-inner .card-info__time {
  position: relative;
  padding-left: 18px;
  color: #40424a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}
.schedule .card-inner .card-info__time::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url(../img/clock.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.schedule .card-image {
  min-height: 468px;
}

.talk-page__container {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  padding: 63px 0 100px;
}
@media screen and (max-width: 991px) {
  .talk-page__container {
    flex-direction: column;
    gap: 40px;
  }
}
.talk-page .s-single-post {
  width: 65%;
}
@media screen and (max-width: 991px) {
  .talk-page .s-single-post {
    width: 100%;
  }
}
.talk-page .s-single-post .entry-header {
  margin-bottom: 48px;
}
@media screen and (max-width: 991px) {
  .talk-page .s-single-post .entry-header {
    margin-bottom: 30px;
  }
}
.talk-page .s-single-post .entry-header .date {
  margin-bottom: 12px;
  color: #4b5563;
  font-size: 14px;
  font-style: normal;
  line-height: 1.43;
}
.talk-page .s-single-post .entry-header .locations {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.talk-page .s-single-post .entry-header .location {
  padding: 4px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.43;
  border-radius: 4px;
  background: #dbe9f6;
}
.talk-page .s-single-post .entry-header .location span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
}
.talk-page .s-single-post .entry-header .entry-title {
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 991px) {
  .talk-page .s-single-post .entry-header .entry-title {
    font-size: 38px;
  }
}
.talk-page .s-single-post .entry-header .speakers {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.talk-page .s-single-post .entry-header .speaker,
.talk-page .s-single-post .entry-header .speaker a {
  display: flex;
  gap: 16px;
  align-items: center;
}
.talk-page .s-single-post .entry-header .speaker img,
.talk-page .s-single-post .entry-header .speaker a img {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  -o-object-fit: cover;
     object-fit: cover;
  scale: 1;
  transition: scale 0.3s ease-in-out;
}
.talk-page .s-single-post .entry-header .speaker h3,
.talk-page .s-single-post .entry-header .speaker a h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0px;
  color: #191a1e;
  transition: color 0.3s ease-in-out;
}
.talk-page .s-single-post .entry-header .speaker span,
.talk-page .s-single-post .entry-header .speaker a span {
  color: #9a9ca3;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
}
.talk-page .s-single-post .entry-header .speaker a:hover {
  text-decoration: none;
}
.talk-page .s-single-post .entry-header .speaker a:hover h3 {
  color: #3078c5;
}
.talk-page .s-single-post .entry-header .speaker a:hover img {
  scale: 1.04;
}
.talk-page .sidebar {
  width: 384px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 32px;
  background-color: #f9fafb;
}
@media screen and (max-width: 991px) {
  .talk-page .sidebar {
    width: 100%;
  }
}
.talk-page .sidebar__title {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
}
@media screen and (max-width: 991px) {
  .talk-page .sidebar__title {
    text-align: center;
  }
}
.talk-page .sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
@media screen and (max-width: 991px) {
  .talk-page .sidebar__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.talk-page .sidebar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  width: 100%;
  height: 114px;
  border-radius: 4px;
  color: #3078c5;
  font-weight: 500;
  font-size: 24px;
  border: 2px solid #d2d7dd;
  overflow: hidden;
  transform: scale(1);
  transition: transform 250ms ease;
  cursor: pointer;
  box-shadow: 0px 0px 23px 0px rgba(21, 53, 87, 0.12);
}
@media screen and (max-width: 991px) {
  .talk-page .sidebar__link {
    width: 280px;
    height: 98px;
  }
}
.talk-page .sidebar__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.talk-page .sidebar__link:hover {
  transform: scale(1.03);
}
@media screen and (max-width: 991px) {
  .talk-page .sidebar .button {
    width: 280px;
    margin: 0 auto;
  }
}
.talk-page .entry-content {
  margin: 0;
}
.talk-page .entry-content h2 {
  margin-bottom: 24px;
  font-family: Roboto;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}
@media screen and (max-width: 991px) {
  .talk-page .entry-content h2 {
    font-size: 28px;
  }
}
.talk-page .entry-content h3 {
  margin-bottom: 24px;
  font-family: Roboto;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
}
@media screen and (max-width: 991px) {
  .talk-page .entry-content h3 {
    font-size: 24px;
  }
}
.talk-page .entry-content a,
.talk-page .entry-content p,
.talk-page .entry-content li {
  color: #40424a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}
@media screen and (max-width: 991px) {
  .talk-page .entry-content a,
  .talk-page .entry-content p,
  .talk-page .entry-content li {
    font-size: 16px;
  }
}
.talk-page .entry-content a {
  color: #3078c5;
  cursor: pointer;
  font-weight: 500;
}
.talk-page .entry-content a:hover {
  text-decoration: underline;
}
.talk-page .entry-content p:not(:last-child) {
  margin-bottom: 24px;
}
.talk-page .entry-content ul {
  list-style: disc;
  margin-bottom: 24px;
  margin-left: 32px;
}
.talk-page .entry-content span {
  font-weight: 500;
}

.woocommerce-page main#primary {
  max-width: 1248px;
  padding: 40px 16px;
  margin: 0 auto;
  width: 100%;
}
.woocommerce-page main#primary .title {
  margin-bottom: 36px;
  text-align: start;
}
@media screen and (max-width: 991px) {
  .woocommerce-page main#primary .title {
    text-align: center;
  }
}
.woocommerce-page main#primary .woocommerce-message,
.woocommerce-page main#primary .woocommerce-info {
  background-color: #f9fafb;
  border-top-color: #3078c5;
}
.woocommerce-page main#primary .woocommerce-message::before,
.woocommerce-page main#primary .woocommerce-info::before {
  color: #3078c5;
}
.woocommerce-page main#primary .woocommerce-error {
  background-color: #f9fafb;
  border-top-color: #3078c5;
  color: #191a1e;
}
.woocommerce-page main#primary .woocommerce-cart-form .product-remove a.remove {
  color: #3078c5 !important;
}
.woocommerce-page main#primary .woocommerce-cart-form .product-remove a.remove:hover {
  color: #ffffff !important;
  background-color: #3078c5;
}
.woocommerce-page main#primary .woocommerce-cart-form .product-thumbnail {
  display: none;
}
.woocommerce-page main#primary .woocommerce-cart-form .product-name a {
  color: #3078c5;
  font-weight: 600;
  text-decoration: none;
  pointer-events: none;
}
.woocommerce-page main#primary .woocommerce-cart-form .quantity input {
  border: none;
}
.woocommerce-page main#primary .woocommerce-cart-form button.button {
  padding: 8px 12px;
  font-weight: 600;
  line-height: 1.56;
  border-radius: 4px;
  transition: all 250ms ease;
  color: #ffffff;
  background-color: #3078c5;
  border: 1px solid #ffffff;
}
.woocommerce-page main#primary .woocommerce-cart-form button.button:hover, .woocommerce-page main#primary .woocommerce-cart-form button.button:focus {
  background-color: #005fc5;
}
.woocommerce-page main#primary .woocommerce-cart-form .coupon {
  width: 60%;
}
@media screen and (max-width: 991px) {
  .woocommerce-page main#primary .woocommerce-cart-form .coupon {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 465px;
  }
}
@media screen and (max-width: 991px) {
  .woocommerce-page main#primary .woocommerce-cart-form .coupon {
    width: 100%;
    max-width: 320px;
  }
}
.woocommerce-page main#primary .woocommerce-cart-form .coupon button.button {
  width: 28%;
}
@media screen and (max-width: 991px) {
  .woocommerce-page main#primary .woocommerce-cart-form .coupon button.button {
    width: 100%;
  }
}
.woocommerce-page main#primary .woocommerce-cart-form .coupon input.input-text {
  width: 70%;
  padding: 8px 12px;
  color: #191a1e;
  background-color: #dbe9f6;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  outline: none;
  box-shadow: 0px 1px 2px 0px rgba(18, 26, 43, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(48, 120, 197, 0.12);
  transition: border-color 250ms ease;
}
@media screen and (max-width: 991px) {
  .woocommerce-page main#primary .woocommerce-cart-form .coupon input.input-text {
    width: 100%;
  }
}
.woocommerce-page main#primary .woocommerce-cart-form .coupon input.input-text::-moz-placeholder {
  color: #9a9ca3;
}
.woocommerce-page main#primary .woocommerce-cart-form .coupon input.input-text::placeholder {
  color: #9a9ca3;
}
.woocommerce-page main#primary .woocommerce-cart-form .coupon input.input-text:focus {
  border-color: #3078c5;
}
.woocommerce-page main#primary .cart-collaterals .cart_totals.calculated_shipping td {
  text-align: end;
}
.woocommerce-page main#primary .woocommerce-error li a,
.woocommerce-page main#primary a.showcoupon,
.woocommerce-page main#primary a.woocommerce-privacy-policy-link {
  color: #3078c5;
  font-weight: 600;
  text-decoration: none;
}
.woocommerce-page main#primary .woocommerce-error li a:hover,
.woocommerce-page main#primary a.showcoupon:hover,
.woocommerce-page main#primary a.woocommerce-privacy-policy-link:hover {
  text-decoration: underline;
}
.woocommerce-page main#primary #order_review {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .woocommerce-page main#primary #order_review {
    flex-direction: column;
  }
}
.woocommerce-page main#primary .shop_table.woocommerce-checkout-review-order-table {
  width: 40%;
}
@media screen and (max-width: 991px) {
  .woocommerce-page main#primary .shop_table.woocommerce-checkout-review-order-table {
    width: 100%;
  }
}
.woocommerce-page main#primary .woocommerce-checkout-payment#payment {
  width: 60%;
}
@media screen and (max-width: 991px) {
  .woocommerce-page main#primary .woocommerce-checkout-payment#payment {
    width: 100%;
  }
}
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon label,
.woocommerce-page main#primary form.woocommerce-checkout label {
  color: #191a1e;
  margin-bottom: 6px;
}
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon .form-row.notes label,
.woocommerce-page main#primary form.woocommerce-checkout .form-row.notes label {
  line-height: 1.5;
}
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon .select2-selection--single,
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon select,
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon input,
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon textarea,
.woocommerce-page main#primary form.woocommerce-checkout .select2-selection--single,
.woocommerce-page main#primary form.woocommerce-checkout select,
.woocommerce-page main#primary form.woocommerce-checkout input,
.woocommerce-page main#primary form.woocommerce-checkout textarea {
  padding: 10px 12px;
  width: 100%;
  color: #191a1e;
  background-color: #dbe9f6;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  outline: none;
  box-shadow: 0px 1px 2px 0px rgba(18, 26, 43, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(48, 120, 197, 0.12);
  transition: border-color 250ms ease;
}
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon .select2-selection--single::-moz-placeholder, .woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon select::-moz-placeholder, .woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon input::-moz-placeholder, .woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon textarea::-moz-placeholder, .woocommerce-page main#primary form.woocommerce-checkout .select2-selection--single::-moz-placeholder, .woocommerce-page main#primary form.woocommerce-checkout select::-moz-placeholder, .woocommerce-page main#primary form.woocommerce-checkout input::-moz-placeholder, .woocommerce-page main#primary form.woocommerce-checkout textarea::-moz-placeholder {
  color: #9a9ca3;
}
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon .select2-selection--single::placeholder,
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon select::placeholder,
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon input::placeholder,
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon textarea::placeholder,
.woocommerce-page main#primary form.woocommerce-checkout .select2-selection--single::placeholder,
.woocommerce-page main#primary form.woocommerce-checkout select::placeholder,
.woocommerce-page main#primary form.woocommerce-checkout input::placeholder,
.woocommerce-page main#primary form.woocommerce-checkout textarea::placeholder {
  color: #9a9ca3;
}
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon .select2-selection--single:focus,
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon select:focus,
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon input:focus,
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon textarea:focus,
.woocommerce-page main#primary form.woocommerce-checkout .select2-selection--single:focus,
.woocommerce-page main#primary form.woocommerce-checkout select:focus,
.woocommerce-page main#primary form.woocommerce-checkout input:focus,
.woocommerce-page main#primary form.woocommerce-checkout textarea:focus {
  border-color: #3078c5;
}
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon .select2-selection,
.woocommerce-page main#primary form.woocommerce-checkout .select2-selection {
  height: 46px;
}
.woocommerce-page main#primary .checkout_coupon.woocommerce-form-coupon .select2-selection__rendered,
.woocommerce-page main#primary form.woocommerce-checkout .select2-selection__rendered {
  padding-top: 3px;
}
.woocommerce-page main#primary form.checkout_coupon.woocommerce-form-coupon {
  border-color: #787685;
}
.woocommerce-page main#primary form.checkout_coupon.woocommerce-form-coupon .button {
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 4px;
  transition: all 250ms ease;
  color: #ffffff;
  background-color: #3078c5;
  border: 1px solid #ffffff;
}
.woocommerce-page main#primary form.checkout_coupon.woocommerce-form-coupon .button:hover, .woocommerce-page main#primary form.checkout_coupon.woocommerce-form-coupon .button:focus {
  background-color: #005fc5;
}
.woocommerce-page main#primary .woocommerce-checkout-payment#payment {
  background-color: #ffffff;
}
.woocommerce-page main#primary .woocommerce-checkout-payment button.button,
.woocommerce-page main#primary .checkout-button {
  display: flex;
  justify-content: center;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.56;
  border-radius: 4px;
  transition: all 250ms ease;
  color: #ffffff;
  background-color: #3078c5;
  border: 1px solid #ffffff;
  min-width: 200px;
}
.woocommerce-page main#primary .woocommerce-checkout-payment button.button:hover, .woocommerce-page main#primary .woocommerce-checkout-payment button.button:focus,
.woocommerce-page main#primary .checkout-button:hover,
.woocommerce-page main#primary .checkout-button:focus {
  background-color: #005fc5;
}
.woocommerce-page main#primary #order_review_heading {
  margin-top: 40px;
}
.woocommerce-page main#primary .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 20px;
}
.woocommerce-page main#primary #custom_checkout_fields {
  margin-bottom: 30px;
}
.woocommerce-page main#primary #payment .wc_payment_methods.payment_methods.methods {
  padding: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.woocommerce-page main#primary #payment .wc_payment_methods.payment_methods.methods .wc_payment_method {
  position: relative;
  padding: 6px 12px 6px 40px;
}
@media screen and (max-width: 575px) {
  .woocommerce-page main#primary #payment .wc_payment_methods.payment_methods.methods .wc_payment_method {
    padding: 6px 6px 6px 24px;
  }
}
.woocommerce-page main#primary #payment .wc_payment_methods.payment_methods.methods .wc_payment_method p {
  font-size: 16px;
}
.woocommerce-page main#primary #payment .wc_payment_methods.payment_methods.methods .wc_payment_method:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.woocommerce-page main#primary #payment .wc_payment_methods.payment_methods.methods label {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}
.woocommerce-page main#primary #payment .wc_payment_methods.payment_methods.methods .input-radio {
  position: absolute;
  top: 16px;
  left: 10px;
  width: 18px;
  height: 18px;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #3078c5;
  background-color: #ffffff;
}
@media screen and (max-width: 991px) {
  .woocommerce-page main#primary #payment .wc_payment_methods.payment_methods.methods .input-radio {
    top: 12px;
  }
}
@media screen and (max-width: 575px) {
  .woocommerce-page main#primary #payment .wc_payment_methods.payment_methods.methods .input-radio {
    left: 0;
  }
}
.woocommerce-page main#primary #payment .wc_payment_methods.payment_methods.methods .input-radio:checked::before {
  background: #3078c5;
  border-radius: 50%;
  content: "";
  display: block;
  height: 0.75em;
  left: 50%;
  margin: 0;
  min-height: 12px;
  min-width: 12px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.75em;
}
@media screen and (max-width: 575px) {
  .woocommerce-page main#primary #payment .wc_payment_methods.payment_methods.methods .wc-stripe-card-icons-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 10px;
  }
}
.woocommerce-page main#primary #payment .wc_payment_methods.payment_methods.methods .wc_payment_method.payment_method_stripe_eps.wc-stripe-no-desc select {
  height: 44px;
}
.woocommerce-page main#primary #payment .wc_payment_methods.payment_methods.methods .payment_box {
  background-color: #dbe9f6;
}
.woocommerce-page main#primary #payment .wc_payment_methods.payment_methods.methods .payment_box::before {
  border: 1em solid #dbe9f6;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}
.woocommerce-page main#primary .woocommerce-order .woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
  font-size: 32px;
  font-weight: 600;
}
.woocommerce-page main#primary .woocommerce-order .woocommerce-order-details__title,
.woocommerce-page main#primary .woocommerce-order .woocommerce-column__title,
.woocommerce-page main#primary .woocommerce-order .wc-bacs-bank-details-heading {
  font-size: 28px;
}
.woocommerce-page main#primary .woocommerce-order .wc-bacs-bank-details-account-name {
  font-size: 24px;
}
.woocommerce-page main#primary .woocommerce-order .woocommerce-customer-details,
.woocommerce-page main#primary .woocommerce-order .woocommerce-order-details {
  max-width: 700px;
}
.woocommerce-page main#primary .button.button-primary.wt_pklist_invoice_print,
.woocommerce-page main#primary .button.button-primary.wt_pklist_invoice_download {
  display: flex;
  justify-content: center;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.56;
  border-radius: 4px;
  transition: all 250ms ease;
  color: #ffffff;
  background-color: #3078c5;
  border: 1px solid #ffffff;
}
.woocommerce-page main#primary .button.button-primary.wt_pklist_invoice_print:hover, .woocommerce-page main#primary .button.button-primary.wt_pklist_invoice_print:focus,
.woocommerce-page main#primary .button.button-primary.wt_pklist_invoice_download:hover,
.woocommerce-page main#primary .button.button-primary.wt_pklist_invoice_download:focus {
  background-color: #005fc5;
}
.woocommerce-page main#primary .woocommerce-additional-fields {
  padding-top: 60px;
}
@media screen and (max-width: 991px) {
  .woocommerce-page main#primary .woocommerce-additional-fields {
    padding-top: 54px;
  }
}
@media screen and (max-width: 768px) {
  .woocommerce-page main#primary .woocommerce-additional-fields {
    padding-top: 0;
  }
}
@media screen and (max-width: 575px) {
  .woocommerce-page main#primary .woocommerce-checkout .form-row.form-row-first,
  .woocommerce-page main#primary .woocommerce-checkout .form-row.form-row-last {
    width: 100%;
  }
}
.woocommerce-page main#primary .checkout-disclaimer {
  margin-top: 24px;
  padding: 24px;
  color: #40424a;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.56;
  border-radius: 4px;
  background-color: rgba(255, 199, 199, 0.4705882353);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 991px) {
  .woocommerce-page main#primary .checkout-disclaimer {
    padding-top: 12px;
  }
}
.woocommerce-page main#primary #newsletter_optin_field {
  margin-top: 40px;
  padding: 24px;
  background-color: #dbe9f6;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.woocommerce-page main#primary #newsletter_optin_field .woocommerce-form__label-for-checkbox {
  display: flex;
  flex-direction: row;
  margin-bottom: 0;
  color: #40424a;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
.woocommerce-page main#primary #newsletter_optin_field .woocommerce-form__label-for-checkbox .input-checkbox {
  width: 20px;
}
.woocommerce-page main#primary .donation-qty {
  width: 54px;
  display: block;
  text-align: center;
  font-size: 18px;
}

.taxonomy-speaker__section {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 0;
}
@media screen and (max-width: 1199px) {
  .taxonomy-speaker__section {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .taxonomy-speaker__section {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
    padding-bottom: 60px;
  }
}
.taxonomy-speaker .speaker-content {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .taxonomy-speaker .speaker-content {
    width: 100%;
  }
}
.taxonomy-speaker .speaker-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 991px) {
  .taxonomy-speaker .speaker-content h1 {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  .taxonomy-speaker .speaker-content h1 {
    text-align: center;
  }
}
.taxonomy-speaker .speaker-position {
  font-weight: 600;
  padding-bottom: 24px;
  border-bottom: 2px solid #dbe9f6;
}
@media screen and (max-width: 767px) {
  .taxonomy-speaker .speaker-position {
    text-align: center;
  }
}
.taxonomy-speaker .speaker-description {
  padding-bottom: 24px;
  margin-bottom: 20px;
  border-bottom: 2px solid #dbe9f6;
}
.taxonomy-speaker .speaker-img {
  width: 30%;
  max-height: 350px;
  border-radius: 4px;
  box-shadow: 0 0 23px 0 rgba(21, 53, 87, 0.12);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .taxonomy-speaker .speaker-img {
    max-height: 280px;
  }
}
@media screen and (max-width: 767px) {
  .taxonomy-speaker .speaker-img {
    width: 100%;
    max-width: 350px;
  }
}
.taxonomy-speaker .speaker-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.speakers-page__inner {
  padding: 40px 0 60px;
}
@media screen and (max-width: 1199px) {
  .speakers-page__inner {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .speakers-page__inner {
    padding-bottom: 40px;
  }
}
.speakers-page .title {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .speakers-page .title {
    font-size: 38px;
  }
}
.speakers-page .subtitle {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .speakers-page .subtitle {
    margin: 0 auto 40px;
  }
}
.speakers-page .speaker-content h1 {
  text-align: center;
}
.speakers-page .speaker-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .speakers-page .speaker-list {
    gap: 24px;
    margin-bottom: 28px;
  }
}
.speakers-page .speaker-item {
  width: calc((100% - 64px) / 3);
  padding-bottom: 24px;
  border-radius: 4px;
  box-shadow: 0px 0px 23px 0px rgba(21, 53, 87, 0.12);
  border: 2px solid transparent;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .speakers-page .speaker-item {
    width: calc((100% - 48px) / 2);
    max-width: 350px;
  }
}
@media screen and (max-width: 575px) {
  .speakers-page .speaker-item {
    width: 100%;
  }
}
.speakers-page .speaker-item:hover {
  border-color: #d2d7dd;
}
.speakers-page .speaker-item:hover a {
  text-decoration: none;
}
.speakers-page .speaker-item a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.speakers-page .speaker-item__content {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  flex-grow: 1;
}
.speakers-page .speaker-item h2 {
  color: #191a1e;
  margin-bottom: 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.speakers-page .speaker-item p {
  text-align: center;
  font-weight: 500;
}
.speakers-page .speaker-item .button.button-blue {
  margin: auto 0 0;
}
.speakers-page .speaker-item__img {
  margin-bottom: 24px;
  width: 100%;
  height: 360px;
}
@media screen and (max-width: 991px) {
  .speakers-page .speaker-item__img {
    margin: 0 auto 24px;
    height: 330px;
  }
}
.speakers-page .speaker-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}