:root {
  --container-margin: (100vw - 1260px) / 2;
  --navbar-height: 62px;
}

@media (max-width: 1300px) {
  :root {
    --container-margin: (100vw - 1000px) / 2;
    --navbar-height: 64px;
  }
}

@media (max-width: 1100px) {
  :root {
    --container-margin: (100vw - 700px) / 2;
    --navbar-height: 52px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-margin: (100vw - 500px) / 2;
  }
}

@media (max-width: 576px) {
  :root {
    --container-margin: 15px;
  }
}

.hero-section .hero-image-container {
  background-color: #000;
}

.hero-section .hero-image-container .hero-image {
  max-height: 530px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}

.hero-section .title {
  margin-left: 20px;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #ffffff;
  position: absolute;
  bottom: 24px;
}

@media (max-width: 573px) {
  .hero-section .title {
    color: #304a70;
    position: relative;
    bottom: 0;
    padding-top: 18px;
    padding-bottom: 24px;
    font-size: 1.5rem;
  }
}

.main-section .details {
  background-color: #fdf7eb;
  display: grid;
  grid-template-columns: auto 1fr;
  color: #304a70;
  padding: 18px 0;
}

.main-section .details .label {
  margin: 0;
  padding: 6px 18px;
  font-size: 0.75rem;
  line-height: 1.2;
  border-right: solid 1px #f0af36;
  text-transform: uppercase;
  text-align: right;
}

.main-section .details .label:first-of-type {
  padding-top: 0;
}

.main-section .details .label:last-of-type {
  padding-bottom: 0;
}

.main-section .details .value {
  margin: 0;
  padding: 6px 18px;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 400;
}

.main-section .details .value:first-of-type {
  padding-top: 0;
}

.main-section .details .value:last-of-type {
  padding-bottom: 0;
}

.main-section .extra {
  color: #304a70;
  display: flex;
  padding: 12px 0;
}

.main-section .extra .label {
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 2.5;
  padding: 0 24px;
}

.main-section .extra .label b {
  text-transform: capitalize;
}

.main-section .extra .label:first-of-type {
  padding-left: 0;
}

.main-section .main-content .type {
  color: #ff6767;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 24px;
}

.main-section .main-content .title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #304a70;
  margin-bottom: 18px;
}

.main-section .main-content .sub-title {
  font-size: 1rem;
  line-height: 1.25;
  color: #304a70;
  margin: 18px 0;
  font-weight: 400;
}

.main-section .main-content .paragraph {
  font-size: 1rem;
  line-height: 1.5;
  color: #304a70;
  margin: 18px 0;
}

.main-section .main-content .list {
  font-size: 1rem;
  line-height: 1.5;
  color: #304a70;
  margin: 18px 0;
  padding-left: 18px;
}

.main-section .main-content .card-wrapper {
  margin: 24px 0;
}

.slider-wrapper {
  margin-top: 64px;
  position: relative;
  padding: 48px 0;
}

.slider-wrapper::after {
  position: absolute;
  background-color: #ebf8f6;
  content: "";
  top: 0;
  left: -100px;
  width: 100vw;
  height: 200px;
  z-index: 0;
}

.slider-wrapper .title {
  color: #304a70;
  position: relative;
  z-index: 1;
  font-size: 1.625rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .swiper-slide-active {
    width: 40% !important;
  }
}

.swiper-slide-active .speaker-card {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
}

.controlls-wrapper {
  position: absolute;
  width: 100%;
  top: 64px;
  left: 0;
  z-index: 100;
}

.controlls-wrapper * {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-color: #3cb5a1;
  padding: 16px;
  border-radius: 24px;
  cursor: pointer;
}

.controlls-wrapper .prev-slide {
  left: 0;
  transform: translateX(calc(-50% + 8px));
}

@media (max-width: 1100px) {
  .controlls-wrapper .prev-slide {
    transform: translateX(10px);
  }
}

.controlls-wrapper .next-slide {
  right: 0;
  transform: translateX(50%);
}

@media (max-width: 1100px) {
  .controlls-wrapper .next-slide {
    transform: translateX(-10px);
  }
}

.speaker-card {
  background-color: #ffffff;
  transition: 0.3s ease;
  color: #304a70;
}

.speaker-card .image-container {
  position: relative;
  padding-bottom: 56.25%;
}

.speaker-card .image-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.speaker-card .content {
  padding: 18px;
  display: flex;
  align-items: center;
}

@media (max-width: 480px) {
  .speaker-card .content {
    flex-direction: column;
  }
}

.speaker-card .content .content-section {
  flex: 1;
}

.speaker-card .content .content-section .name {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 0;
  margin-bottom: 6px;
}

.speaker-card .content .content-section .description {
  font-size: 0.875rem;
  line-height: 1.25;
  margin-bottom: 0;
}

.speaker-card .content .button {
  display: none;
  color: #f0af36;
  border: solid 1px #f0af36;
  padding: 12px 18px;
  text-decoration: none;
  margin-left: 12px;
  transition: 0.3s ease;
}

@media (max-width: 1210px) and (min-width: 767px) {
  .speaker-card .content .button {
    margin-left: 0;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .speaker-card .content .button {
    margin-left: 0;
    margin-top: 12px;
  }
}

.speaker-card .content .button:hover {
  background-color: #f0af36;
  color: #ffffff;
}

.section-info {
  color: #eb5d40;
  z-index: 2;
  pointer-events: none;
}

.section-info h2 {
  font-weight: 700;
  font-size: 2em;
  line-height: 1.2;
  margin-top: 4px;
  margin-bottom: 16px;
}

.section-info p,
.section-info a {
  font-size: 0.9em;
  line-height: 1.2;
  color: #eb5d40;
  padding-right: 12px;
}

