@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz_wght.ttf");
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-VariableFont_wdth_wght.ttf");
}

@font-face {
  font-family: "Share Tech";
  src: url("../fonts/ShareTech-Regular.ttf");
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

/* Main menu */
ul.menu-main {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 26px 0;
}

.menu-main .menu-item a,
.menu-main .menu-item span {
  border: 1px solid #4bb6c5;
  background-color: transparent;
  color: #4bb6c5;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
}

.menu-main .menu-item:hover a,
.menu-main .menu-item:hover span {
  background-color: #e6f7f9;
  text-decoration: none;
}

.menu-main .menu-item.menu-item--active-trail a,
.menu-main .menu-item a.is-active {
  background-color: #4FB1C4;
  color: #fff;
}

@media (max-width: 768px) {
  ul.menu-main {
    gap: 10px;
    flex-wrap: wrap;
  }
  .menu-main .menu-item a,
  .menu-main .menu-item span {
    font-size: 12px;
    padding: 10px;
  }
}


/* Highlight */
.highlights {
  text-align: center;
  padding: 40px 20px;
}

.highlights h2 {
  color: #4FB1C4;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
}

.highlight-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.highlight-item {
  max-width: 350px;
  width: 100%;
  padding: 0 40px;
  position: relative;
  text-align: center;
}

.highlight-item:nth-of-type(2)::after {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 15%;
  right: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #4FB1C4, transparent);
}

.highlight-item:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #4FB1C4, transparent);
}

.highlight-item:nth-of-type(1) {
  padding-left: 10px;
}
.highlight-item:nth-of-type(3) {
  padding-right: 10px;
}

.highlights .number {
  color: #e6007e; /* Hồng */
  margin-bottom: 10px;
  text-shadow: -4px 2px 1px #4FB1C4;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 88px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;

}

.highlights .highlight-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: 0%;
  text-align: center;
  color: #00000099;
  margin-bottom: 0;
}

@media screen and (max-width: 992px) {
  .highlight-item:nth-of-type(2)::after {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 2px;
    background: linear-gradient(to right, transparent, #4FB1C4, transparent);
  }

  .highlight-item:nth-of-type(2)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 2px;
    background: linear-gradient(to right, transparent, #4FB1C4, transparent);
  }

  .highlight-item {
    padding: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .highlights h2 {
    font-size: 28px;
  }

  .highlights .number {
    font-size: 60px;
  }
}

.location-section-wrapper {
  background-color: #FBFDFF;
}

/* Location */
.location-section {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.location-image-wrapper {
  width: 40%;
}

.location-image {
  object-fit: cover;
}

.location-content {
  flex: 1;
  min-width: 250px;
}

.location-title {
  color: #4FB1C4;
  margin-bottom: 12px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;

}

.location-address {
  font-size: 20px;
  color: #00000099;
  margin-bottom: 20px;
  line-height: 1.6;
}

.direction-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #4FB1C4;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

.direction-button:hover {
  text-decoration: none;
  background-color: #4FB1C4;
  color: #fff;
}

.direction-button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #4FB1C4;
  background-color: transparent;
  top: 15px;
  left: -12px;
}

.direction-button.no-after::after {
  content: none;
}

.arrow {
  margin-left: 8px;
  font-size: 16px;
}

.modal-parking .modal-header,
.modal-register-event .modal-header {
  border-bottom: none;
}

.modal-register-event .modal-content {
  background-color: #BE1B83;
  min-height: calc(100vh - 40px);
}

.modal-parking .modal-content {
  background-color: #BE1B83;
  min-height: 80vh;
}

.modal-parking .title,
.modal-register-event .title {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
}

.modal-register-event .embed-responsive {
  height: 100%;
}

.modal-parking .modal-body,
.modal-register-event .modal-body {
  background: url('/themes/custom/dengue_summit/assets/images/banner-city.png');
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  text-align: center;
  padding: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .modal-parking .modal-dialog,
  .modal-register-event .modal-dialog {
    max-width: 800px;
    margin: 0.5rem auto;
  }
}

@media (max-width: 768px) {
  .modal-parking .modal-body,
  .modal-register-event .modal-body {
    padding: 20px;
  }
}

.parking {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
  color: #EB0A8C;
  display: flex;
  align-items: end;
  gap: 5px;
  cursor: pointer;
}

/* Science card */

.science-wrapper {
  padding: 30px 15px;
}

.science-wrapper h2 {
  color: #0092AE;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
  margin: 0 auto 15px;
  text-shadow: -2px 1px 1px #106373;

}

.science-card-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.science-card {
  background-color: #F0FDFC;
  padding: 30px 20px;
  border-radius: 12px;
  width: 340px;
  text-align: center;
}

.science-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-bottom: 30px;
}

.science-card:nth-of-type(2) img {
  width: 75px;
  height: 75px;
  margin-bottom: 15px;
}

.science-card p {
  font-size: 16px;
  color: #000000E8;
  line-height: 1.6;
  font-weight: 400;
}

/* Benefits card */
.benefits-section {
  background: url('../images/benefit_bg.png');
  background-size: 100% 100%;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.benefits-section h2 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 40px;
}

.benefit-container {
  display: flex;
  justify-content: center;

  gap: 30px;
}

.benefit-card {
  background-color: white;
  color: #333;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
  width: calc(100% - 30px);
}

.benefit-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.benefit-card p {
  font-size: 16px;
  line-height: 24px;
  color: #6D758F;

}

@media screen and (max-width: 992px) {
  .benefit-container {
    display: flex;
    flex-wrap: wrap;
  }
}

.register-text-from{
  color:#FFFFFF99;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .benefits-section {
    background: url(../images/benefit_bg_sp.png);
    padding: 50px 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .location-address {
    font-size: 16px;
  }
  .location-image-wrapper {
    width: 100%;
  }
  .direction-button {
    width: 100%;
    font-size: 16px;
    padding: 12px 18px;
    text-align: center;
    display: block;
  }
  .register-text-from{
    font-size: 16px !important;
  }
  .footer{
    font-size: 14px !important;
  }
}

/* Timeline */
.timeline-wrapper {
  background-color: #F0FDFC;
  margin: 0;
  padding: 50px 0 30px;
  color: #000;
  text-align: center;
}

.timeline-wrapper h2 {
  color: #0092AE;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
  margin: 0 auto 20px;
  text-shadow: -2px 1px 1px #106373;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-wrapper .timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 20px 0;
  flex-wrap: wrap;
}

.timeline-wrapper .timeline::before {
  content: '';
  position: absolute;
  top: 180px;
  left: 0;
  right: 0;
  height: 3px;
  border-top: 3px dashed #4FB1C4;
  z-index: 0;
}

.timeline-wrapper .event {
  position: relative;
  width: 18%;
  z-index: 1;
  min-width: 180px;
}

.timeline-wrapper .box {
  background-color: white;
  border: 8px solid #EB0A8C;
  border-radius: 15px;
  padding: 20px 10px;
  color: #BE1B83;
  font-weight: 600;
  font-size: 1rem;
  min-height: 130px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 130px;
}

.timeline-wrapper .box::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #EB0A8C;
}

.timeline-wrapper .dot {
  width: 14px;
  height: 14px;
  background-color: #EB0A8C;
  border-radius: 50%;
  position: absolute;
  bottom: -40%;
}

.timeline-wrapper .event p {
  margin-top: 5px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -2%;
  text-align: center;
  margin-bottom: 0;
}

.box-description {
  margin-top: 48px;
}

.br-pc {
  display: block;
}

@media (max-width: 992px) {
  .br-pc {
    display: none;
  }

  .timeline-wrapper {
    padding-bottom: 10px;
  }

  .timeline-wrapper .timeline::before {
    top: 0;
    left: 0;
    right: 0;
    height: 94%;
    border-left: 3px dashed #4FB1C4;
    border-top: none;
  }

  .timeline-wrapper .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline-wrapper .event {
    width: 85%;
    margin-bottom: 30px;
    left: 3.5%;
  }

  .timeline-wrapper .dot {
    position: absolute;
    margin: 0;
    left: -15.5%;
    top: 44%;
  }

  .timeline-wrapper .box {
    min-height: 64px;
    padding: 5px 10px;
  }

  .timeline-wrapper .box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%) rotate(90deg);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #EB0A8C;
  }

  .box-description {
    margin-top: 15px;
  }

  .timeline-wrapper .event p {
    font-size: 18px;
    margin: 0;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .timeline-wrapper .container, .timeline-wrapper .container-sm {
      max-width: 600px;
  }

  .timeline-wrapper .timeline::before {
    left: 2px;
  }
}

@media (max-width: 768px) {
  .science-card,
  .benefit-card {
    width: 100%;
  }

  .science-wrapper h2 {
    font-size: 24px;
    text-shadow: -1px 1px 1px #106373;
  }

  .timeline-wrapper h2 {
    font-size: 28px;
    text-shadow: none;
  }

  .benefits-section h2 {
    margin-bottom: 20px;
  }
}


@media (max-width: 575px)  {
  .timeline-wrapper .timeline::before {
    left: 6px;
  }
}


/* Footer */
.footer {
  background-color: #D3E7EA;
  padding: 40px;
  font-size: 16px;
  color: #525252;
  font-weight: 600;
  line-height: 24px;
}

.footer a{
  text-decoration: none;
  color: #525252;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer .logo {
  height: 40px;
  margin-right: 10px;
}

.footer a:hover {
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
}

.footer .note {
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -2%;
}

.footer-right a{
  text-decoration: underline;
}
article.node--type-page {
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#register-event-block {
  position: relative;
}
#register-event-block .bg-register {
  position: absolute;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .register-iframe {
    min-height: 450px;
  }
}

@media  screen and (max-width: 767px) {
  .ul-sp-style {
    list-style: none;
    padding-left: 0;
  }

  .footer {
    padding: 20px 0 15px;
  }
}
body.simplelogin {
  background: #fff;
}
body.simplelogin input.form-submit {
  background: red;
}
p {
    margin-bottom: 0.5rem !important;
}
