@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
html,
body {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  background-color: #F1F7F1;
}

section {
  padding: 75px 0;
  scroll-margin-top: 80px;
}

.z-index-10 {
  z-index: 10;
}

a.theme-btn {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #51BC61 0%, #82CA42 100%);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1215686275);
  padding: 10px 30px;
  border-radius: 8px;
  transition: 0.4s all;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
a.theme-btn:hover {
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.1882352941);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 999;
}
header .navbar {
  border-radius: 8px;
  width: 100%;
}
header .navbar .main-nav {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow: 0px 2px 14px 2px rgba(0, 0, 0, 0.0784313725);
  width: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 8px 8px 8px 20px;
}
header .navbar .main-nav .navbar-nav {
  gap: 20px;
}
header .navbar .main-nav .navbar-nav .nav-item a.nav-link {
  font-weight: 500;
  font-size: 14px;
  color: #242C23;
  transition: 0.4s all;
  padding: 12px 15px;
}
header .navbar .main-nav .navbar-nav .nav-item a.nav-link:hover {
  background-color: #FFFFFF;
  border-radius: 8px;
}
header .navbar .hamburger {
  cursor: pointer;
  border: none;
  position: relative;
}
header .navbar .hamburger:focus {
  box-shadow: unset;
}
header .navbar .hamburger span,
header .navbar .hamburger span:before,
header .navbar .hamburger span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 24px;
  background-color: #0267B2;
  position: absolute;
  display: inline-block;
  content: "";
  right: 0px;
}
header .navbar .hamburger span:before {
  top: -8px;
  right: 0;
}
header .navbar .hamburger span:after {
  bottom: -8px;
  right: 0;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90dvh;
  background: linear-gradient(270deg, #006FBA 0%, #035AA6 100%);
  padding-top: 100px;
  overflow: hidden;
}
.hero .hero-left-element {
  position: absolute;
  left: -50px;
  top: 0;
  height: 100%;
}
.hero .hero-right-element {
  position: absolute;
  right: -50px;
  top: 0;
  height: 100%;
}
.hero .hero-img img {
  width: 100%;
}
.hero p {
  color: #fff;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 0;
}

.msg-from-md .video-box {
  border-radius: 18px;
}
.msg-from-md .video-box video {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}
.msg-from-md h4 {
  color: #2C9628;
  font-weight: 700;
  font-size: 26px;
  line-height: 22px;
  margin-bottom: 20px;
}
.msg-from-md p {
  color: #000000;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}
.msg-from-md .md-speech {
  margin-top: 30px;
  background-color: #FFFFFF;
  padding: 15px;
  border-radius: 8px;
}
.msg-from-md .md-speech p {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #2C9628;
}
.msg-from-md .md-speech .md-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.msg-from-md .md-speech .md-box img {
  width: 60px;
  height: auto;
}
.msg-from-md .md-speech .md-box h5 {
  color: #000000;
  font-weight: 600;
  font-size: 18px;
}
.msg-from-md .md-speech .md-box h6 {
  color: #777B8B;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
}

.status {
  background-color: #0267B2;
  border-radius: 16px;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.status .status-element-left {
  position: absolute;
  left: 0;
  top: 0;
}
.status .status-element-right {
  position: absolute;
  right: 0;
  top: 0;
}
.status .status-box {
  text-align: center;
}
.status .status-box img {
  width: 60px;
}
.status .status-box .count {
  color: #fff;
  font-weight: 800;
  font-size: 60px;
}
.status .status-box .count span {
  color: #fff;
  font-weight: 800;
  font-size: 60px;
  text-align: center;
}
.status .status-box p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0;
}

.speakers h2 {
  margin-bottom: 0;
  color: #2C9628;
  font-weight: 800;
  font-size: 48px;
}
.speakers .member-box .member-img {
  background: #0267B2;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.speakers .member-box .member-img .member-element {
  position: absolute;
  bottom: 0px;
  left: -10px;
  transform: rotate(30deg);
  transform-origin: left;
  transition: 0.4s all;
}
.speakers .member-box .member-img img {
  width: 100%;
  border-radius: 16px;
}
.speakers .member-box .member-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.speakers .member-box .member-info h5 {
  font-weight: 600;
  font-size: 16px;
  color: #000;
  margin-bottom: 5px;
}
.speakers .member-box .member-info p {
  color: #777B8B;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 0;
}
.speakers .member-box .member-info img {
  width: 24px;
  height: auto;
}
.speakers .member-box:hover .member-element {
  transform: rotate(0deg);
}
.speakers .member-box:hover .member-img {
  box-shadow: 0px 14px 16px 0px rgba(72, 165, 116, 0.2392156863);
}
.speakers .member-box:hover .member-info h5 {
  color: #2C9628;
}

.agenda {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.agenda .event-agenda-element {
  position: absolute;
  right: 0;
  top: 10%;
  width: 30%;
}
.agenda h2 {
  margin-bottom: 0;
  color: #2C9628;
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 0;
}
.agenda p {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #000;
  margin-bottom: 0;
}
.agenda .main-event {
  position: relative;
}
.agenda .main-event img {
  width: 100%;
  border-radius: 16px;
}
.agenda .main-event ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.agenda .main-event ul li img {
  width: 30px;
  height: 30px;
  transition: 0.4s all;
  border-radius: unset;
}
.agenda .main-event ul li img:hover {
  transform: scale(1.1);
}
.agenda .event-box {
  transition: 0.4s all;
}
.agenda .event-box .img-box img {
  width: 100%;
  border-radius: 16px 16px 0 0;
}
.agenda .event-box .event-info {
  padding: 35px 25px;
  border: 1px solid #E1F0E1;
  border-radius: 0 0 16px 16px;
  background-color: #ffffff;
}
.agenda .event-box .event-info .event-date-time {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}
.agenda .event-box .event-info .event-date-time .date-time {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #585D6D;
  font-weight: 600;
  font-size: 14px;
}
.agenda .event-box .event-info .event-date-time .date-time img {
  width: 20px;
  height: 20px;
}
.agenda .event-box .event-info h4 {
  color: #000000;
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 15px;
}
.agenda .event-box .event-info ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.agenda .event-box .event-info ul li img {
  width: 30px;
  height: 30px;
  transition: 0.4s all;
  border-radius: unset;
}
.agenda .event-box .event-info ul li img:hover {
  transform: scale(1.1);
}
.agenda .event-box:hover {
  box-shadow: 0px 11px 16px 0px rgba(27, 114, 56, 0.1607843137);
  border-radius: 0 0 16px 16px;
}

.agenda-tracks {
  background-color: #D7EDD7;
}
.agenda-tracks h2 {
  margin-bottom: 0;
  color: #2C9628;
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 15px;
}
.agenda-tracks p {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #000;
}
.agenda-tracks .agenda-tracks-box {
  display: flex;
  align-items: center;
  padding: 15px;
  gap: 15px;
  border-radius: 8px;
}
.agenda-tracks .agenda-tracks-box img {
  width: 80px;
  height: 80px;
}
.agenda-tracks .agenda-tracks-box h5 {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}

.partners h2 {
  color: #2C9628;
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 15px;
}
.partners p {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 0;
}
.partners .partner-box {
  background-color: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
}
.partners .partner-box img {
  min-height: 50px;
  max-height: 50px;
  width: auto;
}

.contact-us {
  background: linear-gradient(270deg, #025FAB 0%, #004ABA 100%);
  position: relative;
}
.contact-us .contact-element-left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.contact-us .contact-element-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.contact-us h2 {
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 15px;
}
.contact-us p {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
}
.contact-us .contact-box {
  background: rgba(50, 148, 242, 0.2392156863);
  padding: 25px;
  border-radius: 12px;
}
.contact-us .contact-box h5 {
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 15px;
}
.contact-us .contact-box h6 {
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}
.contact-us .contact-box ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.5019607843);
  padding-top: 25px;
}
.contact-us .contact-box ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-us .contact-box ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.contact-us ul {
  padding-left: 25px;
  margin-bottom: 0;
  list-style: none;
}
.contact-us ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-us ul li span {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

footer {
  padding: 15px 0;
}
footer p {
  color: #000;
  font-weight: 400;
  font-size: 13px;
  margin-bottom: 0;
}
footer p a {
  color: #000;
  font-weight: 400;
  font-size: 13px;
}

@media (max-width: 767px) {
  .contact-us .contact-element-right {
    display: none;
  }
  .contact-us .contact-element-left {
    display: none;
  }
  .agenda .main-event img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .status .status-element-right {
    right: -90px;
    bottom: 0;
    top: unset;
  }
  .status .status-element-left {
    left: -55px;
  }
  .hero .hero-left-element {
    height: 40%;
    left: 0 !important;
  }
  .hero .hero-right-element {
    right: -70px !important;
    top: unset;
    height: 40%;
    bottom: -70px;
    transform: rotate(25deg);
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .contact-us .contact-element-right {
    display: none;
  }
  .contact-us .contact-element-left {
    display: none;
  }
  .agenda .main-event img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .status .status-element-right {
    right: -90px;
    bottom: 0;
    top: unset;
  }
  .status .status-element-left {
    left: -55px;
  }
  .hero .hero-left-element {
    height: 40%;
    left: 0 !important;
  }
  .hero .hero-right-element {
    right: -70px !important;
    top: unset;
    height: 40%;
    bottom: -70px;
    transform: rotate(25deg);
  }
}
@media (max-width: 1400px) {
  .hero .hero-left-element {
    left: -90px;
  }
  .hero .hero-right-element {
    right: -90px;
  }
}
@media (min-width: 1600px) {
  .container-wide {
    max-width: 1440px;
  }
}/*# sourceMappingURL=style.css.map */