* {
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: border-box;
  font-family: "Lexend Deca", sans-serif;
  scroll-behavior: smooth;
}

:root {
  --white: #ffffff;
  --blue: #2d2e82;
  --red: #e2322e;
  --yellow: #ffe274;
  --gray: #6f6f6e;
  --gray2: #f3f3f3;
  --purple: #6e83c0;
  --black: #1d1d1d;
}

section {
  position: relative;
}

h1 {
  color: var(--blue);
  font-size: 3rem;
  font-weight: 600;
}
@media (max-width: 991px) {
  h1 {
    font-size: 2rem;
  }
}
@media (max-width: 400px) {
  h1 {
    font-size: 1.8rem;
  }
}

h2 {
  font-weight: 600;
  font-size: 2.3rem;
}
@media (max-width: 991px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-weight: 600;
  font-size: 1.2rem;
}
@media (max-width: 991px) {
  h3 {
    font-size: 1rem;
  }
}

h4 {
  font-weight: 600;
  font-size: 1rem;
}
@media (max-width: 991px) {
  h4 {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  h4 {
    font-size: 12px;
  }
}

p {
  line-height: 1.6;
  font-size: 16px;
}
@media (max-width: 991px) {
  p {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  p {
    font-size: 12px;
  }
}

a {
  text-decoration: none;
}

.container {
  position: relative;
  padding: 30px 8%;
  z-index: 1;
}

.headtitle {
	font-size:36px;
	color:var(--blue);
	margin-bottom:10px;
}

.subtitle {
	font-size:24px;
	margin-top:20px;
	margin-bottom:20px;
	color:var(--blue);
}

.subtitle-small {
	font-size:16px;
	margin-bottom:20px;
	color:var(--blue);
}

.subtitle .redtext {
	color:var(--red);
}

.wrap {
  display: flex;
}

.button {
  cursor: pointer;
  line-height: 1;
  padding: 12px 30px;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.5s ease;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid;
  display: flex;
  align-items: center;
}
.button.primary, .button.secondary {
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
  font-size: 14px;
}
.button.primary:hover, .button.secondary:hover {
  background-color: var(--white);
  color: var(--blue);
}
.button.secondary {
  background-color: var(--red);
  border-color: var(--red);
}
.button.secondary:hover {
  color: var(--red);
}
.button.white {
  color: var(--blue);
  background-color: var(--white);
  border-color: var(--white);
  font-size: 1.6rem;
  gap: 20px;
  box-shadow: 1px 2px 4px var(--gray);
}
.button.white img {
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.button.white:hover {
  border-color: var(--blue);
  box-shadow: none;
}
@media (max-width: 1199px) {
  .button.white {
    font-size: 1rem;
    margin-top: 20px;
  }
  .button.white img {
    height: 12px;
  }
}
@media (max-width: 575px) {
  .button {
    font-size: 12px;
    padding: 10px 20px;
  }
  .button.white {
    font-size: 14px;
  }
  .button.white img {
    height: 12px;
  }
}

.swiper {
  width: 100%;
  overflow: hidden;
}
.swiper-wrapper {
  width: 100%;
  display: flex;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

.poster {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero {
  height: 100vh;
  overflow: hidden;
}
.hero .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero .world,
.hero .free,
.hero .image,
.hero .wrap {
  position: absolute;
}
.hero .world {
  right: 0;
  bottom: -15%;
  width: 90%;
}
.hero .free {
  height: 20%;
  bottom: 15%;
  right: 5%;
  transition: all 0.5s ease;
}
.hero .free:hover {
  transform: rotate(-20deg);
}
.hero .image {
  left: 8%;
  top: 45%;
  flex-direction: column;
  transform: translateY(-50%);
}
.hero .image > img {
  width: 60%;
}
.hero .scholar {
  bottom: 0;
  width: 100%;
  color: var(--white);
  flex-wrap: nowrap;
}
.hero .scholar .box {
  width: 8%;
  background-color: var(--red);
}
.hero .scholar .title {
  height: 100px;
  max-width: 320px;
  background-color: var(--red);
  display: flex;
  align-items: center;
}
.hero .scholar .btn {
  height: 100px;
  background: linear-gradient(to right, var(--blue), var(--red));
  padding: 0 60px 0 50px;
  border-radius: 0 50px 50px 0;
  display: flex;
  align-items: center;
}
.hero .scholar .btn a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .hero .world {
    width: 140%;
    bottom: -5%;
  }
  .hero .free {
    height: 150px;
    bottom: 45%;
  }
  .hero .image {
    top: 26%;
  }
  .hero .image img {
    width: 70%;
  }
}
@media (max-width: 575px) {
	
  .hero {
      height: 750px; /* Fallback minimum height */
  }
	
  .hero .world {
    width: 200%;
    right: -10%;
  }
  .hero .image {
    left: 5%;
    top: 0%; /* Reduced from 26% to give more space from top */
    transform: translateY(0); /* Remove the -50% transform that was causing issues */
    padding-top: 10px; /* Add padding from top */
  }
  .hero .image > img {
    width: 85%; /* Slightly larger logo for better visibility */
    max-width: 280px; /* Prevent logo from being too large on small screens */
  }
  
  .hero .headtitle {
     font-size: 24px !important; /* Smaller font size for mobile */
     line-height: 1.2;
     margin-bottom: 15px;
     padding: 0 10px; /* Add horizontal padding */
   }
  
   .hero .subtitle-small {
     font-size: 14px !important; /* Smaller subtitle */
     line-height: 1.4;
     margin-bottom: 25px;
     padding: 0 10px; /* Add horizontal padding for better text wrapping */
     max-width: 80%; /* Prevent text from touching edges */
   }
  
   /* Adjust button positioning */
   .hero .button.white {
     font-size: 14px !important;
     padding: 12px 20px;
	 margin-top:10px;
   }
  
   /* Adjust other hero elements to accommodate the repositioned content */
   .hero .free {
     height: 100px; /* Smaller free badge */
     bottom: 10%; /* Reposition to avoid overlap */
     right: 10%;
   }
  
   .hero .world {
     width: 180%; /* Adjust world image size */
     right: -20%;
     bottom: 0%;
   } 
  
  .hero .scholar .title {
    max-width: 45%;
    height: 65px;
  }
  .hero .scholar .title p {
    font-size: 10px;
  }
  .hero .scholar .btn {
    height: 65px;
    padding: 0 30px 0 20px;
  }
  .hero .scholar .btn a {
    gap: 10px;
    font-size: 12px;
  }
  .hero .scholar .btn a img {
    height: 10px;
  }
}

.invite {
  padding-bottom: 100px;
  padding-left: 8%;
}
.invite .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.invite .come {
  gap: 50px;
  position: relative;
  bottom: -200px;
}
.invite .come img {
  width: 30%;
}
.invite .come .box {
  padding-top: 60px;
}
.invite .counting {
  height: 200px;
  width: 100%;
  color: var(--white);
  overflow: hidden;
  padding: 50px;
  margin-bottom: 80px;
  border-radius: 80px 0 0 80px;
  background: linear-gradient(to right, var(--blue) 40%, var(--red));
}
.invite .counting .box {
  border-right: 1px solid var(--gray2);
  width: 240px;
  padding: 0 40px;
  position: relative;
}
.invite .counting .box.empty, .invite .counting .box:nth-child(4) {
  border-right: none;
}
.invite .counting .box.empty.a, .invite .counting .box:nth-child(4).a {
  width: 50%;
}
.invite .counting .box.empty.b, .invite .counting .box:nth-child(4).b {
  width: 20%;
}
.invite .counting .box.empty.b img, .invite .counting .box:nth-child(4).b img {
  width: 300%;
  position: absolute;
  top: -75%;
  right: -100%;
}
.invite .counting .box .count {
  line-height: 1;
  font-size: 4rem;
  font-weight: 700;
  padding-bottom: 5px;
}
.invite .counting .box .title {
  font-size: 20px;
  color: var(--yellow);
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}
.invite .calendar {
  padding-left: 5%;
  padding-top: 20px;
}
.invite article {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 35%;
  color: var(--blue);
}
.invite article .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: -1px 2px 10px 0px var(--gray);
  font-size: 1rem;
  width: 120px;
}
.invite article .date .month {
  position: relative;
  background-color: var(--red);
  color: var(--white);
  padding: 10px 12px 6px;
  font-weight: 600;
  width: 100%;
  text-align: center;
}
.invite article .date .month::after, .invite article .date .month::before {
  content: "";
  width: 8px;
  height: 14px;
  position: absolute;
  border-radius: 4px;
  top: -5px;
  transform: translateX(-50%);
  background-color: var(--blue);
}
.invite article .date .month::after {
  left: 12%;
}
.invite article .date .month::before {
  left: 88%;
}
.invite article .date .day {
  line-height: 1.1;
  font-size: 3.5rem;
  font-weight: 600;
}
.invite article .date .weekday {
  padding-bottom: 6px;
}
.invite article .detail {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
}
.invite article .detail address {
  font-style: normal;
  display: flex;
  flex-direction: column;
}
.invite article .detail address.city {
  font-weight: 600;
}
@media (max-width: 1199px) {
  .invite {
    padding-top: 40px;
  }
  .invite .come {
    bottom: -100px;
  }
  .invite .come img {
    width: 40%;
  }
  .invite .come .box {
    padding-top: 0px;
  }
  .invite .calendar {
    padding-left: 0;
  }
  .invite .calendar article {
    gap: 15px;
  }
  .invite .calendar article .date {
    width: 85px;
    font-size: 10px;
  }
  .invite .calendar article .date .month {
    padding: 8px 12px 4px;
  }
  .invite .calendar article .date .month::after, .invite .calendar article .date .month::before {
    width: 6px;
    height: 12px;
  }
  .invite .calendar article .date .day {
    font-size: 2.2rem;
  }
  .invite .calendar article .detail {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .invite .counting {
    height: 140px;
    padding: 40px 50px;
    margin-bottom: 50px;
  }
  .invite .counting .box {
    padding: 0 20px;
  }
  .invite .counting .box .count {
    font-size: 2rem;
  }
  .invite .counting .box .title {
    font-size: 12px;
  }
  .invite .counting .box.empty.b img {
    width: 600%;
    right: -200%;
  }
}
@media (max-width: 575px) {
  .invite {
    padding-bottom: 30px;
    padding-left: 5%;
    padding-top: 0;
  }
  .invite .come {
    gap: 30px;
    flex-direction: column-reverse;
  }
  .invite .come img {
    width: 75%;
  }
  .invite .counting {
    height: 200px;
    padding: 110px 0px 20px;
    border-radius: 40px 0 0 40px;
  }
  .invite .counting .box .count {
    font-size: 2rem;
  }
  .invite .counting .box .title {
    font-size: 14px;
  }
  .invite .counting .box.empty.a {
    display: none;
  }
  .invite .counting .box.empty.b img {
    width: 1000%;
    left: -500%;
  }
  .invite .calendar {
    flex-direction: column;
  }
  .invite .calendar article {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 400px) {
  .invite .counting {
    padding-top: 120px;
  }
  .invite .counting .box .count {
    font-size: 1.6rem;
  }
  .invite .counting .box .title {
    font-size: 10px;
  }
  .invite .counting .box.empty.a {
    display: none;
  }
  .invite .counting .box.empty.b img {
    width: 1000%;
    left: -500%;
  }
  .invite .calendar {
    flex-direction: column;
  }
  .invite .calendar article {
    width: 100%;
    margin-bottom: 30px;
  }
}

.steps .container {
  padding-top: 60px;
  padding-bottom: 120px;
}
.steps .title {
  position: relative;
}
.steps .title .box {
  padding-top: 100px;
  position: relative;
}
.steps .title .box p {
  color: var(--blue);
  font-weight: 300;
  max-width: 450px;
  padding: 20px 0 50px;
}
.steps .title img {
  position: absolute;
  width: 40%;
  left: 60%;
  top: 5%;
  transform: translateX(-50%);
}
.steps .swiper {
  height: 240px;
}
.steps .swiper-slide {
  background: linear-gradient(var(--yellow), var(--white));
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: end;
  height: 100%;
  gap: 20px;
}
.steps .swiper-slide .order {
  color: var(--white);
  font-size: 6rem;
  position: absolute;
  top: -6%;
  left: -14%;
  line-height: 1;
  opacity: 0.7;
  font-weight: 600;
}
.steps .swiper-slide p {
  color: var(--blue);
  font-size: 14px;
  max-width: 80%;
  line-height: 1.2;
  height: 30px;
}
.steps .swiper-slide img {
  width: 40%;
  z-index: 1;
}
@media (max-width: 1199px) {
  .steps .container {
    padding-top: 0;
  }
  .steps .title .box p {
    max-width: 60%;
  }
  .steps .title img {
    width: 50%;
    left: 80%;
    top: 16%;
  }
}
@media (max-width: 991px) {
  .steps .swiper {
    height: 200px;
  }
  .steps .swiper-slide p {
    font-size: 12px;
    height: 20px;
  }
  .steps .swiper-slide .order {
    left: -20%;
    font-size: 5rem;
  }
}
@media (max-width: 575px) {
  .steps .container {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 100px;
  }
  .steps .title {
    flex-direction: column;
    bottom: -80px;
  }
  .steps .title .box {
    padding-top: 0;
    width: 100%;
  }
  .steps .title .box p {
    max-width: 80%;
  }
  .steps .title img {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    transform: translate(0);
  }
  .steps .swiper {
    height: 180px;
  }
  .steps .swiper-slide p {
    font-size: 9px;
    height: 18px;
  }
  .steps .swiper-slide .order {
    font-size: 4rem;
  }
}
@media (max-width: 400px) {
  .steps .container {
    padding-bottom: 60px;
  }
  .steps .swiper {
    height: 170px;
  }
}

.information .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 0;
  -o-object-fit: none;
     object-fit: none;
}
.information .container {
  padding-top: 100px;
  padding-bottom: 0;
}
.information .wrap {
  align-items: center;
}
.information .wrap > a {
  padding-top: 40px;
  color: var(--blue);
  font-size: 1.4rem;
  width: 50px;
  gap: 20px;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
}
.information .wrap > a img {
  height: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.information .swiper {
  padding-top: 30px;
  bottom: -30px;
  width: 85%;
  margin: 0 50px 0 0;
}
.information article > a {
  border-radius: 18px;
  overflow: hidden;
  color: var(--white);
  display: block;
}
.information article > a .title {
  background: var(--red);
}
.information article > a .title img {
	width:100%;
}

.information article > a .title h2 {
  line-height: 1;
  text-transform: uppercase;
}
.information article > a .info {
  background: var(--blue);
  padding: 22px;
}
.information article > a .info h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.information article > a .info p {
  font-weight: 300;
  font-size: 14px;
}
.information article > a .info p:first-child {
  font-size: 12px;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.information article > a .info p:last-child {
  padding-top: 24px;
}
@media (max-width: 1199px) {
  .information .container {
    padding-left: 5%;
    padding-right: 5%;
  }
  .information .wrap {
    flex-direction: column-reverse;
  }
  .information .wrap > a {
    width: auto;
    font-size: 14px;
    gap: 10px;
    align-items: center;
    flex-direction: row;
  }
  .information .wrap > a img {
    height: 12px;
  }
  .information .swiper {
    width: 100%;
    padding-top: 0;
    margin: 0;
  }
}
@media (max-width: 575px) {
  .information article > a .title {
    height: 190px;
  }
  .information article > a .title h2 {
    font-size: 2rem;
  }
  .information article > a .info p {
    font-size: 12px;
  }
  .information article > a .info p:first-child {
    font-size: 10px;
  }
  .information article > a .info h3 {
    font-size: 1rem;
  }
}
@media (max-width: 400px) {
  .information article a > .title {
    height: 160px;
  }
  .information article a > .title h2 {
    font-size: 1.6rem;
  }
  .information article a > .info {
    padding: 16px;
  }
  .information article a > .info p {
    font-size: 10px;
  }
  .information article a > .info p:first-child {
    font-size: 8px;
  }
  .information article a > .info p:last-child {
    padding-top: 10px;
  }
  .information article a > .info h3 {
    font-size: 14px;
  }
}

.cta {
  overflow: hidden;
}
.cta .container {
  margin-top: 50px;
  padding-top: 300px;
  padding-bottom: 100px;
}
.cta .bg {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
}
.cta .box {
  width: 50%;
  color: var(--blue);
}
.cta .box:first-child {
  width: 44%;
}
.cta .box h1 span {
  color: var(--red);
}
.cta .box p {
  padding: 20px 0 30px;
  max-width: 500px;
}
@media (max-width: 991px) {
  .cta .container {
    padding-top: 140px;
    padding-bottom: 100px;
  }
  .cta .bg {
    height: 60%;
  }
  .cta .wrap {
    flex-direction: column-reverse;
  }
  .cta .wrap .box:nth-child(1) {
    height: 500px;
  }
  .cta .box {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .cta .container {
    padding-top: 160px;
    padding-bottom: 100px;
  }
  .cta .bg {
    height: 50%;
  }
  .cta .wrap .box:nth-child(1) {
    height: 400px;
  }
}

.support {
  font-weight: 300;
}
.support .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 120px;
}
.support .wrap {
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.support .wrap img {
  height: 100px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.support h4 {
  font-weight: 300;
  color: var(--gray);
  padding: 80px 0 10px 0;
}
.support h4:nth-child(1) {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .support .wrap {
    gap: 20px;
  }
  .support .wrap img {
    height: 80px;
  }
  .support h4 {
    padding: 70px 0 20px 0;
  }
}
@media (max-width: 575px) {
  .support .container {
    padding-top: 20px;
    padding-bottom: 100px;
  }
  .support .wrap img {
    height: 50px;
  }
  .support h4 {
    padding: 70px 0 20px 0;
  }
}

footer {
  position: relative;
  color: var(--black);
  font-weight: 300;
  background-color: var(--gray2);
}
footer a {
  color: var(--black);
}
footer .container > p {
  font-size: 14px;
}
footer .wrap {
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0 120px 0;
  flex-wrap: wrap;
}
footer .wrap .widget:nth-child(1) {
  width: 40%;
}
footer .wrap .widget h4 {
  font-weight: 600;
  padding-bottom: 30px;
}
footer .wrap .widget .logo {
  width: 250px;
}
footer .wrap .widget p {
  max-width: 360px;
  font-size: 16px;
}
footer ul {
  list-style: none;
}
footer ul li {
  line-height: 2;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
footer ul li img {
  width: 16px;
}
@media (max-width: 991px) {
  footer .wrap .widget {
    padding-bottom: 30px;
  }
  footer .wrap .widget:nth-child(1) {
    width: 100%;
    padding-bottom: 50px;
  }
  footer .wrap .widget h4 {
    padding-bottom: 15px;
  }
}
@media (max-width: 575px) {
  footer .container > p {
    text-align: center;
    font-size: 12px;
  }
  footer .wrap {
    padding-bottom: 80px;
  }
  footer .wrap .widget {
    width: 100%;
  }
  footer .wrap .widget p {
    font-size: 14px;
  }
  footer ul li {
    line-height: 1.8;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  footer .container > p {
    font-size: 10px;
  }
  footer .wrap .widget p {
    font-size: 12px;
  }
  footer ul li {
    font-size: 12px;
  }
}

.hero-detail {
  height: 100vh;
  position: relative;
  background-color: var(--yellow);
}
.hero-detail .container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.hero-detail .banner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.hero-detail .banner img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-detail .banner img.mobile {
  display: none;
}
.hero-detail .wrap {
  flex-direction: column;
  margin-bottom: 10%;
}
.hero-detail .wrap a {
  gap: 15px;
  display: flex;
  align-items: center;
}
.hero-detail .wrap a > img {
  height: 10px;
}
.hero-detail .wrap h1 {
  width: 50%;
  padding-top: 12%;
  padding-bottom: 5%;
  font-size: 5rem;
  color:#FFF;
}
.hero-detail .speaker {
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--white);
  width: 600px;
  height: 140px;
  padding: 10px 60px;
  border-radius: 70px 0 0 70px;
  background: linear-gradient(to right, var(--blue), var(--red));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-detail .speaker p {
  max-width: 75%;
  line-height: 1.4;
  font-weight: 300;
}
.hero-detail .speaker p:nth-child(1) {
  font-size: 1.2rem;
  font-weight: 600;
}
@media (max-width: 991px) {
  .hero-detail .banner img.desktop {
    display: none;
  }
  .hero-detail .banner img.mobile {
    display: block;
  }
  .hero-detail .wrap h1 {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .hero-detail .container {
    justify-content: flex-start;
  }
  .hero-detail .wrap {
    padding-top: 8vh;
  }
  .hero-detail .wrap > a {
    font-size: 14px;
  }
  .hero-detail .wrap h1 {
    width: 100%;
    padding-top: 20%;
    font-size: 2rem;
  }
  .hero-detail .wrap .button {
    margin-top: 20px;
  }
  .hero-detail .speaker {
    width: 95%;
  }
  .hero-detail .speaker p {
    max-width: 90%;
  }
}
@media (max-width: 400px) {
  .hero-detail .wrap {
    padding-top: 8vh;
  }
  .hero-detail .wrap > a {
    font-size: 12px;
  }
  .hero-detail .speaker {
    height: 90px;
  }
  .hero-detail .speaker p {
    font-size: 10px;
  }
}

.detail-info .container {
  padding-top: 100px;
  padding-bottom: 100px;
}
.detail-info .wrap {
  gap: 20px;
  color: var(--blue);
}
.detail-info .wrap h3 {
  text-transform: uppercase;
  font-size: 1.6rem;
  padding-bottom: 20px;
}
.detail-info .wrap h3.top {
  padding-bottom: 40px;
}
.detail-info .wrap p {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
}
.detail-info .wrap p > img {
  height: 20px;
}
.detail-info .wrap p > a {
  text-decoration: underline;
}
.detail-info .wrap ul,
.detail-info .wrap ol {
  padding-left: 20px;
  padding-bottom: 10px;
}
.detail-info .wrap ul li,
.detail-info .wrap ol li {
  line-height: 1.6;
}
.detail-info .right {
  width: 65%;
}
.detail-info .right ul li,
.detail-info .right ol li {
  font-size: 1rem;
  font-weight: 300;
}
.detail-info .left {
  width: 35%;
}
.detail-info .left .box:not(:last-child) {
  padding-bottom: 50px;
}
.detail-info .left .speaker {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.detail-info .left .speaker img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background: var(--blue);
}
.detail-info .left .speaker p {
  max-width: 80%;
}
.detail-info .title p {
  line-height: 1.4;
}
.detail-info .title p:nth-child(1) {
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 991px) {
  .detail-info .container {
    padding: 80px 5%;
  }
  .detail-info .wrap {
    flex-direction: column-reverse;
    gap: 60px;
  }
  .detail-info .wrap h3 {
    font-size: 1.4rem;
  }
  .detail-info .right {
    width: 100%;
  }
  .detail-info .right ul li,
  .detail-info .right ol li {
    font-size: 14px;
  }
  .detail-info .left {
    width: 100%;
  }
  .detail-info .left .speaker p {
    width: 100%;
  }
  .detail-info .left .speaker img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: var(--blue);
  }
}
@media (max-width: 400px) {
  .detail-info .wrap {
    gap: 60px;
  }
  .detail-info .wrap h3 {
    font-size: 1.2rem;
  }
  .detail-info .wrap h3.top {
    padding-bottom: 20px;
  }
  .detail-info .right ul li,
  .detail-info .right ol li {
    font-size: 12px;
  }
  .detail-info .left .speaker img {
    width: 80px;
    height: 80px;
  }
}

.blank {
  height: 200px;
  width: 100%;
}
@media (max-width: 575px) {
  .blank {
    height: 160px;
  }
}

.form-registration .container {
  padding: 40px 8% 100px;
}
.form-registration h3 {
  width: 90%;
  margin-left: 5%;
  color: var(--white);
  background-color: var(--purple);
  text-transform: uppercase;
  border-radius: 30px;
  padding: 20px 3%;
}
.form-registration .wrap {
  gap: 1%;
}
.form-registration .wrap .left {
  width: 40%;
}
.form-registration .wrap .left h2 {
  padding-top: 20px;
  padding-right: 35%;
}
.form-registration .wrap .right {
  width: 60%;
}
.form-registration .wrap .right form {
  width: 70%;
}
.form-registration form {
  display: flex;
  flex-direction: column;
}
.form-registration form label {
  display: flex;
  flex-direction: column;
}
.form-registration form label span {
  font-weight: 300;
  padding: 15px 0 8px;
  color: var(--blue);
  font-size: 14px;
}
.form-registration form input {
  color: var(--blue);
  padding: 12px 20px;
  border-radius: 5px;
  border: 1px solid var(--blue);
}
.form-registration form button {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .form-registration .container {
    padding: 20px 5% 80px;
  }
  .form-registration .wrap .left h2 {
    padding-right: 5%;
  }
  .form-registration .wrap .right form {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .form-registration h3 {
    padding: 15px 20px;
    font-size: 14px;
  }
  .form-registration .wrap {
    flex-direction: column;
  }
  .form-registration .wrap .left {
    width: 100%;
  }
  .form-registration .wrap .left h2 {
    padding-right: 0%;
    font-size: 1.6rem;
  }
  .form-registration .wrap .right {
    width: 100%;
  }
  .form-registration form label span {
    font-size: 12px;
  }
  .form-registration form input {
    font-size: 14px;
    padding: 10px 12px;
  }
}/*# sourceMappingURL=style.css.map */