/* Global Styling */
@font-face {
  font-family: 'Cera Bold';
  src: url(../font/CeraProBold.otf);
}
@font-face {
  font-family: 'Cera Medium';
  src: url(../font/CeraProMedium.otf);
}
:root{
  --red: #db252d;
  --yellow: #feee05;
  --white: #ffffff;
  --black: #000000;
  --blue: #0d1849;
  --light: #09b4f4;
}
html{
  scroll-behavior: smooth;
}
body,
html{
  padding: 0;
  margin: 0;
}
*{
  box-sizing: border-box;
}
*::before,
*::after{
  box-sizing: inherit;
}
body{
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Cera Medium';
  font-weight: 400;
  line-height: 26px;
  background: url(../image/Background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
h1,
h2,
h3,
h4,
h5,
h6{
  font-family: 'Cera Bold';
  font-weight: 700;
  padding: 0;
  margin: 0;
}
p{
  padding: 0;
  margin: 0;
}
a{
  text-decoration: none;
  font-weight: 500;
}
button,
input[type='button'],
input[type='submit']{
  background-color: transparent;
  border: 0;
  box-shadow: none;
  font-weight: 500;
}
.container{
  width: 3000px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.d-flex{
  display: flex;
}
.items-center{
  align-items: center;
}
.just-center{
  justify-content: center;
}
.just-end{
  justify-content: flex-end;
}
.space-between{
  justify-content: space-between;
}
.wrap{
  flex-wrap: wrap;
}
.flex-1{
  flex: 1;
}
.relative{
  position: relative;
}
.text-center{
  text-align: center;
}




/* Hero Section */
.hero-mobile{
  display: none;
}
.hero-bg-image img{
  width: 100%;
  height: 160vh;
  display: block;
  object-fit: cover;
  object-position: bottom;
}
.hero-content{
  padding-top: 60px;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
}
.hero-content--logos{
  gap: 40px;
}
.hero_logo{
  flex: 1;
  text-align: center;
}
.hero_logo_3{
  display: flex;
  justify-content: flex-end;
}
.hero-content__logo{
  text-align: center;
  padding: 60px 0;
}
.hero-main-title{
  margin: 30px 0;
  color: var(--red);
  text-transform: uppercase;
  text-align: center;
  font-size: 60px;
  line-height: 70px;
}
.hero-main-title span{
  color: var(--blue);
}
.red-rib{
  clip-path: polygon(50% 0%, 100% 0, 90% 100%, 10% 100%, 0 0);
  background-color: var(--red);
  padding: 50px 0;
  text-align: center;
  width: 60%;
  margin: 0 auto;
}
.hero_title{
  color: var(--white);
  font-size: 50px;
  text-transform: uppercase;
}
.yellow-rib{
  clip-path: polygon(50% 0%, 100% 0, 90% 100%, 10% 100%, 0 0);
  background-color: var(--yellow);
  padding: 50px 0;
  text-align: center;
  width: 48%;
  margin: 0 auto;
}
.hero_date{
  color: var(--blue);
  font-size: 50px;
  text-transform: uppercase;
}
.hero_image{
  text-align: center;
}
.hero_image img{
  width: 1200px;
  margin: 40px auto;
  overflow: hidden;
  display: block;
  max-width: 100%;
}



/* Timing Section */
.time-section{
  margin: 180px 0;
}
.time-rip{
  clip-path: polygon(50% 0%, 100% 0, 90% 100%, 10% 100%, 0 0);
  background-color: var(--light);
  padding: 50px 120px;
  text-align: center;
  width: 100%;
  margin: 20px auto;
}
.time-rip-title{
  font-size: 80px;
  color: var(--red);
  text-transform: uppercase;
  line-height: 120px;
}
.time-rip-text{
  color: var(--blue);
  font-size: 50px;
  line-height: 65px;
}
.time-rip-1{
  clip-path: polygon(50% 0%, 100% 0, 90% 100%, 10% 100%, 0 0);
  background-color: var(--yellow);
  padding: 50px 0;
  text-align: center;
  width: 50%;
  margin: 20px auto;
}
.time-rip-title-2{
  font-size: 50px;
  color: var(--blue);
}
.time-rip-title-2 a{
  text-decoration: underline;
  transition: .3s ease-in;
}
.time-rip-title-2 a:hover{
  color: var(--red);
}
.time-content--content{
  margin-top: 40px;
}
#countdown {
  font-size: 50px;
  text-align: center; 
  margin: 1rem auto;
  color: var(--white);
}
#countdown-timer span {
  display: inline-block; /* Necessary to set a width */
  padding: 120px 40px;
  width: 300px;
  margin: 0.5rem;
  background-color: var(--white);
  font-size: 120px;
  color: var(--black);
}



/* sticker */
.sticker{
  margin: 100px 0;
}
.sticker-content{
  gap: 60px;
}
.sticker-content--image{
  width: 47%;
}
.sticker-content--image img{
  display: block;
  overflow: hidden;
  object-fit: contain;
  width: 100%;
}


/* speak */
.speak{
  margin: 100px 0;
}
.speak-content{
  margin-top: 40px;
  gap: 30px;
  justify-content: center;
}
.speak-content--content{
  width: 31.5%;
}
.speak-text{
  width: 65%;
}
.speak-content--content img{
  width: 100%;
  object-fit: contain;
  display: block;
  overflow: hidden;
}


/* Event Section */
.event-section{
  margin: 180px 0;
}
.event_title{
  color: var(--light);
  font-size: 80px;
  line-height: 75px;
  text-transform: uppercase;
  padding-top: 50px;
}
.event-schedule--content{
  margin: 60px 0;
}
.event_subtitle{
  color: var(--white);
  font-size: 50px;
  padding: 50px 60px;
  text-transform: uppercase;
  background-color: var(--red);
}
.event_time{
  color: var(--white);
  font-size: 40px;
  flex: 1;
  text-transform: uppercase;
}
.event_description{
  color: var(--white);
  font-size: 40px;
  line-height: 55px;
  flex: 1;
}



/* bio-section */
.bio-section{
  margin: 180px 0;
}
.bio-logo{
  text-align: center;
}
.bio_title{
  color: var(--light);
  font-size: 80px;
  line-height: 75px;
  text-transform: uppercase;
  padding-top: 40px;
  text-align: center;
}
.bio-content{
  margin: 80px 0;
}
.bio-content--content{
  margin-bottom: 60px;
}
.bio_box_title{
  background-color: var(--red);
  padding: 80px 0;
  margin: 0 auto;
  padding-right: 40px;
}
.bio_subtitle{
  color: var(--white);
  font-size: 60px;
  width: 73%;
  margin-left: auto;
  line-height: 75px;
}
.bio-content--content__item{
  gap: 100px;
  background-color: rgba(25,34,77,0.8901960784313725);
}
.bio_image{
  margin-left: -100px;
  margin-top: -150px;
}
.bio_image img{
  width: 800px;
}
.bio_box_text{
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 100px;
}
.bio_box_text h4{
  color: var(--light);
  text-transform: uppercase;
  font-size: 50px;
  line-height: 65px;
  padding: 10px 0;
}
.bio_box_text h5{
  color: var(--light);
  font-size: 30px;
  line-height: 40px;
  padding: 10px 0;
}
.bio_box_text p{
  color: var(--white);
  font-size: 30px;
  line-height: 48px;
  padding-top: 30px;
}




/* book-section */
.book-section{
  margin: 140px 0;
}
.book-bg-image img{
  width: 100%;
  height: 250vh;
  object-fit: cover;
  object-position: bottom;
}
.book-content{
  position: absolute;
  top: 0;
  width: 3000px;
  margin: 0 auto;
  padding-top: 120px;
}
.book_title{
  font-size: 80px;
  line-height: 128px;
  text-transform: uppercase;
  text-align: center;
  color: var(--red);
}
.book_text{
  font-size: 40px;
  line-height: 55px;
  text-align: center;
  color: var(--black);
}
.book_text a,
.book_text span{
  color: var(--red);
}
.book_image{
  padding-top: 60px;
}
.book_image img{
  width: 100%;
  display: block;
}
.book_rip_title{
  color: var(--blue);
  font-size: 50px;
  text-transform: uppercase;
}
.book_rip_title a{
  text-decoration: underline;
  transition: .3s ease-in;
}
.book_rip_title a:hover{
  color: var(--red);
}


/* Sponsor */
.sponsor-section{
  margin: 180px 0;
}
.section_title{
  color: var(--light);
  font-size: 80px;
  line-height: 75px;
  text-transform: uppercase;
  padding-top: 50px;
}
.sponsor-content{
  margin-top: 50px;
}
.sponsor-content--image img{
  width: 100%;
}



/* youtube */
.youtube{
  margin: 160px 0;
}
.youtube-content{
  margin-top: 100px;
  gap: 80px;
}
.youtube-content--item{
  width: 48%;
}
.youtube-content--item img{
  width: 100%;
  display: block;
}
.youtube-rib-content{
  margin-top: 100px;
}
.youtube-yellow-rib{
  clip-path: polygon(50% 0%, 100% 0, 90% 100%, 10% 100%, 0 0);
  background-color: var(--yellow);
  padding: 50px 0;
  text-align: center;
  width: 50%;
}
.youtube-red-rib{
  clip-path: polygon(50% 0%, 100% 0, 90% 100%, 10% 100%, 0 0);
  background-color: #3cc7ef;
  padding: 50px 0;
  text-align: center;
  width: 50%;
}
.youtube_rip_title{
  color: var(--blue);
  font-size: 50px;
  text-transform: uppercase;
}




/* Booking */
.booking-section{
  margin: 50px 0;
}
.booking_tagling{
  font-size: 40px;
  color: var(--white);
  line-height: 55px;
  padding: 80px 0;
}
.booking_tagling a{
  color: var(--red);
}
.booking_text{
  color: var(--yellow);
  font-size: 40px;
  line-height: 55px;
  text-align: center;
  padding-bottom: 80px;
}
.booking_text_1{
  font-size: 40px;
  line-height: 55px;
  text-align: center;
  color: var(--white);
}
.booking-image{
  margin: 80px 0;
}
.booking-image img{
  width: 100%;
}
.booking-red-rip{
  clip-path: polygon(50% 0%, 100% 0, 90% 100%, 10% 100%, 0 0);
  background-color: var(--red);
  padding: 50px 200px;
  text-align: center;
  width: 100%;
  margin: 50px 0;
}
.booking_r_rip_title{
  font-size: 40px;
  color: var(--white);
  line-height: 55px;
}
.booking-yellow-rip{
  clip-path: polygon(50% 0%, 100% 0, 90% 100%, 10% 100%, 0 0);
  background-color: var(--yellow);
  padding: 50px 60px;
  text-align: center;
  width: 70%;
  margin: 50px auto;
}
.booking_y_rip_title{
  font-size: 50px;
  color: var(--blue);
  line-height: 65px;
  text-transform: uppercase;
}
.booking_y_rip_title a{
  text-decoration: underline;
  transition: .3s ease-in;
}
.booking_y_rip_title a:hover{
  color: var(--red);
}
.booking-pri-rip{
  clip-path: polygon(50% 0%, 100% 0, 90% 100%, 10% 100%, 0 0);
  background-color: var(--light);
  padding: 50px 60px;
  text-align: center;
  width: 100%;
  margin: 50px auto;

}
.booking_p_rip_title a{
  font-size: 50px;
  color: var(--blue);
  line-height: 65px;
  text-transform: uppercase;
  text-decoration: underline;
}
.bottom_link{
  text-align: center;
}
.bottom_link a{
  color: var(--yellow);
  font-size: 40px;
  filter: drop-shadow(0 0 21.5px rgba(0,0,0,0.53));
  line-height: 55px;
  text-align: center;
}

.time-second-row{
  width: 48%;
}
.section_logo img{
  width: 400px;
}
.event_subtitle span{
  font-size: 25px;
  line-height: 35px;
}


.book-content--sticker{
  margin-top: 70px;
}
.step-content .red-rib{
  width: 30%;
  padding: 10px 0;
  margin-top: 50px;
  margin-bottom: 50px;
}
.step_title{
  font-size: 55px;
  line-height: 65px;
  letter-spacing: 1px;
  margin-top: 40px;
  color: #feea05;
  text-align: center;
  font-weight: bold;
}
.step_subtitle{
  color: #ffffff;
  font-size: 45px;
  line-height: 55px;
  text-align: center;
}
.setp_text{
  color: #25dbb7;
  text-align: center;
  font-size: 35px;
  line-height: 45px;
  font-weight: 500;
}
.setp_text a{
  text-decoration: underline;
}
.step_yellow_rip h1{
  font-size: 30px;
}


.sponsor-strip{
  margin: 80px 0;
}

.sponsar-image img{
  width: 100%;
}

.candids{
  background-image: url(../image/candids-bg.png);
}
.candids-content{
  margin-top: 80px;
  padding-bottom: 40px;
}
.swiper-slide img{
  width: 100%;
}
.last_title{
  margin-top: 40px;
  text-align: center;
  color: #000000;
  font-size: 25px;
  display: flex;
  justify-content: center;
}

.spon-1 img{
  width: 240px !important;
}
.spon-2{
  justify-content: space-around !important;
}
.sponsor-content{
  background-image: url(../image/box-bg.png);
  background-color: transparent !important;
  padding-top: 120px !important;
  padding-bottom: 0 !important;
}
.spon-2{
  padding-top: 180px !important;
  padding-bottom: 50px !important;
}



/* Responsive */
@media only screen and (max-width: 2560px) {
  .container{
    width: 2400px;
  }
  .book-content{
    width: 2400px;
  }
  .book-bg-image img{
    height: 100%;
  }
}
@media only screen and (max-width: 1920px) {
  .container,
  .book-content{
    width: 1400px;
  }
  .hero-content{
    padding: 50px 220px;
  }
  .hero_logo:first-child{
    text-align: left;
  }
  .hero_logo img{
    width: 300px;
  }
  .hero_logo_3 img{
    width: 180px;
  }
  .hero-content__logo img{
    width: 350px;
  }
  .red-rib{
    width: 83%;
    padding: 25px 40px;
  }
  .yellow-rib{
    width: 66%;
    padding: 25px 40px;
  }
  .hero_title,
  .hero_date{
    font-size: 40px;
  }
  .time-section{
    margin: 120px 0;
  }
  .time-rip{
    padding: 30px 120px;
  }
  .time-rip-title{
    font-size: 60px;
    line-height: 75px;
  }
  .time-rip-text{
    font-size: 30px;
    line-height: 45px;
    font-weight: bold;
  }
  .time-rip-1{
    padding: 25px 40px;
  }
  .time-rip-title-2{
    font-size: 40px;
  }
  .section_title{
    font-size: 60px;
    line-height: 75px;
    padding-top: 20px;
  }
  #countdown{
    width: 1200px;
    font-size: 35px;
  }
  #countdown-timer span{
    width: 250px;
    padding: 100px 30px;
    font-size: 80px;
  }
  .event-section{
    margin: 120px 0;
  }
  .event_subtitle{
    padding: 30px 40px;
    font-size: 40px;
  }
  .event_time,
  .event_description{
    font-size: 30px;
    line-height: 40px;
  }
  .bio_image{
    margin: 0;
  }
  .bio_box_title{
    padding: 40px 40px;
  }
  .bio_subtitle{
    font-size: 40px;
    line-height: 55px;
    width: 100%;
    text-align: center;
  }
  .bio-content--content__item{
    gap: 40px;
    padding: 40px;
  }
  .bio_image img{
    width: 400px;
  }
  .bio_box_text{
    padding: 0;
  }
  .bio_box_text h4{
    font-size: 32px;
    line-height: 42px;
  }
  .bio_box_text h5{
    font-size: 23px;
    line-height: 33px;
  }
  .bio_box_text p{
    font-size: 20px;
    line-height: 32px;
  }
  .book-content{
    padding-top: 80px;
  }
  .book-bg-image img{
    height: 100%;
  }
  .book_rip_title{
    font-size: 40px;
  }
  .sponsor-section{
    margin: 120px 0;
  }
  .sponsor-content{
    margin-top: 0;
  }
  .youtube-content{
    margin-top: 60px;
    gap: 60px;
  }
  .youtube-rib-content{
    margin-top: 40px;
  }
  .youtube-yellow-rib,
  .youtube-red-rib{
    padding: 25px 30px;
  }
  .youtube_rip_title{
    font-size: 40px;
  }
  .booking_tagling{
    font-size: 35px;
    line-height: 45px;
    padding: 40px 0;
  }
  .booking_text{
    padding-bottom: 30px;
    font-size: 30px;
    line-height: 40px;
  }
  .booking_text_1{
    font-size: 30px;
    line-height: 40px;
  }
  .booking-red-rip{
    padding: 25px 130px;
    margin: 40px 0;
  }
  .booking_r_rip_title{
    font-size: 30px;
    line-height: 40px;
  }
  .booking-yellow-rip{
    width: 100%;
    margin: 40px 0;
    padding: 25px 50px;
  }
  .booking_y_rip_title{
    font-size: 40px;
    line-height: 50px;
  }
  .booking-pri-rip{
    width: 100%;
    margin: 40px 0;
    padding: 25px 120px;
  }
  .booking_p_rip_title a{
    font-size: 35px;
  }
  .book_title{
    font-size: 60px;
    line-height: 70px;
  }
  .book_text{
    font-size: 35px;
    line-height: 45px;
    padding-top: 10px;
  }
  .book_image{
    padding-top: 30px;
  }
  .youtube-content--item{
    width: 47%;
  }
}
@media only screen and (max-width: 1680px) {
  .book-bg-image img{
    height: 100%;
  }
  .hero-bg-image img{
    height: 140vh;
  }
  .container,
  .book-content{
    width: 1500px;
  }
  .hero_logo img{
    width: 250px;
  }
  .hero_logo_3 img{
    width: 150px;
  }
  .red-rib{
    width: 85%;
    padding: 25px 40px;
  }
  .yellow-rib{
    width: 68%;
    padding: 25px 40px;
  }
  .time-rip{
    padding: 30px 60;
  }
  .time-rip-title{
    font-size: 60px;
    line-height: 75px;
  }
  .bio_box_title{
    padding: 50px 40px;
  }
  .bio_subtitle{
    width: 100%;
    text-align: center;
  }
  .bio_image{
    margin: 0;
  }
  .youtube-content--item{
    width: 47%;
  }
  .youtube_rip_title{
    font-size: 40px;
  }
}
@media only screen and (max-width: 1600px) {
  .container{
    width: 1240px;
  }
  .hero-bg-image img{
    height: 200vh;
  }
  .hero-content{
    padding: 50px 40px;
  }
  .hero_logo img{
    width: 250px;
    object-fit: contain;
  }
  .hero_logo_3 img{
    width: 150px;
  }
  .hero-content__logo{
    padding: 30px 0;
  }
  .hero-content__logo img{
    width: 350px;
  }
  .red-rib{
    padding: 20px 60px;
  }
  .hero_title{
    font-size: 35px;
    line-height: 45px;
  }
  .yellow-rib{
    padding: 20px 60px;
  }
  .hero_date{
    font-size: 35px;
    line-height: 45px;
  }
  .event-section{
    margin: 80px 0;
  }
  .section_logo img{
    width: 350px;
  }
  .section_title{
    font-size: 60px;
    line-height: 60px;
    padding-top: 20px;
  }
  .event-schedule--content{
    margin: 50px 0;
  }
  .event_subtitle{
    font-size: 35px;
    padding: 30px 50px;
    margin: 10px 0;
  }
  .event_time{
    font-size: 25px;
    line-height: 35px;
  }
  .event_description{
    font-size: 25px;
    line-height: 35px;
  }
  .bio-section{
    margin: 80px 0;
  }
  .bio_box_title{
    padding: 30px 20px;
  }
  .bio_subtitle{
    font-size: 40px;
    line-height: 50px;
    width: 100%;
    text-align: center;
  }
  .bio_image{
    margin: 0;
  }
  .bio_image img{
    width: 400px;
  }
  .bio_box_text{
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 40px;
  }
  .bio_box_text h4{
    font-size: 30px;
    line-height: 40px;
    padding: 5px 0;
  }
  .bio_box_text h5{
    font-size: 20px;
    line-height: 30px;
  }
  .bio_box_text p{
    font-size: 18px;
    line-height: 30px;
    padding-top: 20px;
  }
  .book-section{
    margin: 80px 0;
  }
  .book-bg-image img{
    height: 350vh;
  }
  .book-content{
    width: 100%;
    padding: 50px 60px;
    left: 0;
  }
  .book_title{
    font-size: 60px;
    line-height: 70px;
  }
  .book_text{
    font-size: 30px;
    line-height: 40px;
  }
  .book_image{
    padding-top: 30px;
  }
  .book_rip_title{
    font-size: 30px;
    line-height: 40px;
  }
  .sponsor-section{
    margin: 80px 0;
  }
  .sponsor-content{
    margin-top: 30px;
  }
  .youtube{
    margin: 80px 0;
  }
  .youtube-content{
    margin-top: 50px;
    gap: 40px;
  }
  .youtube-rib-content{
    margin-top: 30px;
  }
  .youtube-yellow-rib,
  .youtube-red-rib{
    padding: 20px 20px;
  }
  .youtube_rip_title{
    font-size: 30px;
    line-height: 40px;
  }
  .booking_tagling{
    font-size: 30px;
    padding: 30px 0;
    line-height: 40px;
  }
  .booking_text{
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 30px;
  }
  .booking_text_1{
    font-size: 35px;
    line-height: 45px;
  }
  .booking-image{
    margin: 50px 0;
  }
  .booking-red-rip{
    padding: 20px 150px;
    margin: 30px 0;
  }
  .booking_r_rip_title{
    font-size: 20px;
    line-height: 30px;
  }
  .booking-yellow-rip{
    padding: 20px 40px;
    margin: 30px auto;
  }
  .booking_y_rip_title{
    font-size: 30px;
    line-height: 40px;
  }
  .booking-pri-rip{
    padding: 20px 100px;
    margin: 30px 0;
  }
  .booking_p_rip_title a{
    font-size: 30px;
    line-height: 40px;
  }
  .bottom_link a{
    font-size: 25px;
    line-height: 30px;
  }
  .bio_box_text{
    padding: 0;
  }
}
@media only screen and (max-width: 1440px) {
  .book-section{
    display: none;
  }
  .step_title{
    font-size: 45px;
    line-height: 55px;
  }
  .step_subtitle{
    font-size: 35px;
    line-height: 45px;
  }
  .hero-main-title{
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 1366px) {
  .book-section{
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  #countdown{
    width: 100%;
  }
  .container{
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-bg-image img{
    height: 100vh;
  }
  .hero-content{
    padding: 40px 20px;
  }
  .red-rib{
    width: 100%;
  }
  .yellow-rib{
    width: 80%;
  }
  .event-schedule--content{
    margin: 30px 0;
  }
  .event_subtitle{
    font-size: 30px;
    padding: 20px 40px;
  }
  .event_time,
  .event_description{
    font-size: 20px;
    line-height: 30px;
  }
  .bio-content{
    margin: 50px 0;
  }
  .bio_box_title{
    padding: 25px 30px;
  }
  .bio_subtitle{
    font-size: 30px;
    line-height: 40px;
  }
  .bio-content--content{
    margin-bottom: 40px;
  }
  .bio-content--content__item{
    gap: 40px;
  }
  .bio_image img{
    width: 300px;
  }
  .bio_box_text{
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 20px;
  }
  .bio_box_text h5{
    padding: 5px 0;
  }
  .bio_box_text p{
    font-size: 16px;
    line-height: 26px;
  }
  .book-bg-image img{
    height: 150vh;
  }
  .book-content{
    padding-top: 300px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .youtube-content--item{
    width: 47%;
  }
  .section_title{
    font-size: 55px;
    line-height: 65px;
  }
  .sticker-content{
    gap: 40px;
  }
  .speak-content--content{
    width: 48%;
  }
  .speak-text{
    width: 100%;
  }
  .time-second-row{
    width: 100%;
  }
  .book-content{
    padding-top: 60px;
  }
  .step_title{
    font-size: 40px;
    line-height: 50px;
    margin-top: 30px;
  }
  .step_subtitle{
    font-size: 30px;
    line-height: 40px;
  }
  .sponsor-strip{
    margin: 50px 0;
  }
  .sponsor-content{
    background-image: none;
    background-color: #ffffff !important;
    padding: 30px 20px !important;
  }
}
@media only screen and (max-width: 860px) {
  .hero_logo img{
    width: 150px;
  }
  .hero_logo_3 img{
    width: 100px;
  }
  .hero-content__logo img{
    width: 250px;
  }
  .hero_title,
  .hero_date{
    font-size: 25px;
    line-height: 35px;
  }
  .speak-content{
    gap: 20px;
  }
  .last_title{
    font-size: 22px;
  }
  .candids-content{
    margin-top: 60px;
    padding-bottom: 20px;
  }
  .hero-main-title{
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 640px) {
  .container{
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero_logo img{
    width: 100px;
  }
  .hero_logo_3 img{
    width: 60px;
  }
  .hero-content{
    padding: 30px 10px;
  }
  .hero-content__logo{
    padding: 20px 0;
  }
  .hero-content__logo img{
    width: 200px;
  }
  .red-rib,
  .yellow-rib{
    padding: 10px 20px;
  }
  .hero_title, .hero_date{
    font-size: 16px;
    line-height: 26px;
  }
  .section_logo img{
    width: 250px;
  }
  .section_title{
    font-size: 40px;
    line-height: 50px;
    padding-top: 10px;
  }
  .event_subtitle{
    padding: 15px 20px;
    font-size: 20px;
  }
  .event-schedule--content__item{
    padding: 10px 10px;
    gap: 10px;
    margin: 5px 0;
  }
  .event_time,
  .event_description{
    font-size: 14px;
    line-height: 22px;
  }
  .bio_box_title{
    padding: 10px 20px;
  }
  .bio_subtitle{
    font-size: 20px;
    line-height: 30px;
  }
  .bio-content--content__item{
    flex-direction: column;
    padding: 20px 10px;
    gap: 10px;
    text-align: center;
  }
  .bio_box_text{
    padding: 0;
  }
  .bio_box_text h4{
    font-size: 25px;
    line-height: 35px;
    padding: 0;
  }
  .bio_box_text h5{
    font-size: 18px;
    line-height: 26px;
  }
  .bio_box_text p{
    font-size: 15px;
    padding-top: 10px;
    line-height: 25px;
  }
  .book-bg-image img{
    height: 240vh;
  }
  .book-content{
    padding-top: 140px;
  }
  .book_title{
    font-size: 25px;
    line-height: 40px;
  }
  .book_text{
    font-size: 16px;
    line-height: 26px;
  }
  .book_image{
    padding-top: 20px;
  }
  .book-section .yellow-rib{
    width: 100%;
  }
  .book_rip_title{
    font-size: 18px;
    line-height: 26px;
  }
  .sponsor-content{
    margin-top: 0;
  }
  .youtube-content{
    gap: 15px;
    margin-top: 30px;
  }
  .youtube-content--item{
    width: 100%;
  }
  .youtube-rib-content{
    margin-top: 20px;
    flex-direction: column;
  }
  .youtube-yellow-rib,
  .youtube-red-rib{
    width: 100%;
    padding: 10px 20px;
  }
  .youtube_rip_title,
  .youtube_rip_title{
    font-size: 20px;
    line-height: 30px;
  }
  .booking_tagling{
    padding: 20px 0;
    font-size: 16px;
    line-height: 25px;
  }
  .booking_text{
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 25px;
  }
  .booking_text_1{
    font-size: 16px;
    line-height: 25px;
  }
  .booking-image{
    margin: 30px 0;
  }
  .booking-red-rip{
    padding: 10px 30px;
  }
  .booking_r_rip_title{
    font-size: 14px;
    line-height: 22px;
  }
  .booking-yellow-rip,
  .booking-pri-rip{
    width: 100%;
    padding: 10px 30px;
  }
  .booking_y_rip_title{
    font-size: 18px;
    line-height: 28px;
  }
  .booking_p_rip_title a{
    font-size: 16px;
    line-height: 22px;
  }
  .bottom_link a{
    font-size: 16px;
  }
  .booking-section{
    margin-bottom: 20px;
  }
  .book-section{
    margin-top: 0;
    margin: 60px 0;
  }
  .booking-yellow-rip,
  .booking-red-rip,
  .booking-pri-rip{
    margin: 10px 0;
  }
  .step_title{
    margin-top: 25px;
    font-size: 30px;
    line-height: 40px;
  }
  .step_subtitle{
    font-size: 25px;
    line-height: 35px;
  }
  .hero-main-title{
    font-size: 30px;
    line-height: 40px;
    margin: 20px 0;
  }
  .time-section{
    margin-top: 0 !important;
  }
  .sticker-content--image{
    width: 100%;
  }
  .sticker{
    margin: 50px 0;
  }
  .section_title{
    font-size: 30px;
    line-height: 40px;
  }
  .speak-content--content{
    width: 100%;
  }
  .book-content{
    padding-top: 30px;
  }
  .sticker-content{
    margin-top: 40px;
  }
  .step-content .red-rib{
    width: 40%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .setp_text{
    font-size: 22px;
    line-height: 32px;
  }
  .step-content .step_yellow_rip h1{
    font-size: 20px;
  }
  .sponsor-strip{
    margin: 30px 0;
  }
  .candids-content{
    margin-top: 40px;
    padding-bottom: 20px;
  }
  .last_title{
    font-size: 18px;
    margin-top: 25px;
  }
  .event-schedule{
    margin-top: 20px !important;
  }
  .sticker-content{
    gap: 30px;
  }
  .spon-1 img{
    width: 180px !important;
  }
}
@media only screen and (max-width: 1920px) {
  .time-rip-1{
    width: 100%;
  }
}
@media only screen and (max-width: 1440px) {
  .time-section{
    margin: 80px 0;
  }
  .time-rip,
  .time-rip-1{
    padding: 20px 40px;
  }
  .time-rip-title{
    font-size: 50px;
    line-height: 65px;
  }
  .time-rip-text{
    font-size: 30px;
    line-height: 40px;
  }
  .time-rip-title-2{
    font-size: 40px;
    line-height: 50px;
  }
  #countdown{
    font-size: 40px;
  }
  #countdown-timer span{
    width: 250px;
    font-size: 80px;
    padding: 100px 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .time-rip,
  .time-rip-1{
    padding: 20px 60px;
  }
  .time-rip-title{
    font-size: 40px;
    line-height: 55px;
  }
  .time-rip-text{
    font-size: 25px;
    line-height: 35px;
  }
  .time-rip-title-2{
    font-size: 30px;
    line-height: 40px;
  }
  #countdown{
    font-size: 40px;
  }
  #countdown-timer span{
    width: 200px;
    font-size: 70px;
    padding: 80px 40px;
  }
}
@media only screen and (max-width: 860px) {
  .time-rip,
  .time-rip-1{
    padding: 15px 50px;
  }
  .time-rip-title{
    font-size: 30px;
    line-height: 45px;
  }
  .time-rip-text{
    font-size: 20px;
    line-height: 30px;
  }
  .time-rip-title-2{
    font-size: 25px;
    line-height: 35px;
  }
  .time-section .section_title{
    font-size: 50px;
    line-height: 65px;
  }
  .time-content--content{
    margin-top: 20px;
  }
  #countdown{
    font-size: 30px;
  }
  #countdown-timer span{
    width: 150px;
    font-size: 60px;
    padding: 80px 40px;
  }
}
@media only screen and (max-width: 640px) {
  .time-section,
  .event-section,
  .bio-section,
  .sponsor-section{
    margin: 60px 0;
  }
  .time-rip,
  .time-rip-1{
    padding: 10px 30px;
    margin: 10px 0;
  }
  .time-rip-title{
    font-size: 20px;
    line-height: 30px;
  }
  .time-rip-text{
    font-size: 16px;
    line-height: 20px;
  }
  .time-rip-title-2{
    font-size: 18px;
    line-height: 28px;
  }
  .time-section .section_title{
    font-size: 25px;
    line-height: 30px;
  }
  .time-content--content{
    margin-top: 20px;
  }
  #countdown{
    font-size: 16px;
    margin: 0 auto;
  }
  #countdown-timer span{
    width: 70px;
    font-size: 40px;
    padding: 30px 0;
    margin: 0px 5px;
  }
}



.ks-header-wrapper .col-lg-4.col-12{
  padding: 0;
}
.ks-header-social-phone-li{
  display: flex;
  align-items: center;
}
.ks-header-social .networks li a{
  padding: 0;
}
.icon-arrow-right{
  line-height: 1.5;
}
.sponsor-content{
  background-color: var(--white);
  padding: 50px 40px;
  gap: 80px;
  justify-content: center;
  margin-top: 50px;
}
.sponsor-content--item:first-child img{
  width: 160px;
}
.sponsor-content--item img{
  width: 250px;
}
.sponsor-content--item:last-child img{
  width: 600px;
}
.event-schedule{
  gap: 60px;
  margin-top: 40px;
}
.event-schedule--content{
  margin: 30px 0;
}
.time-content--contents{
  background-color: var(--blue);
  padding: 40px 40px;
}
.event-schedule--content__item{
  padding-bottom: 30px;
}
.event_time{
  color: var(--light);
  font-size: 28px;
  line-height: 38px;
}
.event_description{
  font-size: 25px;
  line-height: 38px;
}
.event_subtitle{
  font-size: 35px;
  padding: 25px 40px;
  margin: 0;
}
@media only screen and (max-width: 1440px) {
  .sponsor-content--item img{
    width: 180px;
  }
  .sponsor-content{
    padding: 40px 30px;
  }
  .sponsor-content--item:last-child img{
    width: 500px;
  }
}
@media only screen and (max-width: 1024px) {
  .sponsor-content--item img{
    width: 180px;
  }
  .sponsor-content{
    padding: 30px 20px;
  }
  .sponsor-content--item:last-child img{
    width: 300px;
  }
  .sponsor-content--item:first-child img{
    width: 120px;
  }
  .event-schedule{
    flex-direction: column;
    gap: 0;
  }
}
@media only screen and (max-width: 640px) {
  .sponsor-content{
    gap: 30px;
    justify-content: space-between;
    margin-top: 15px;
  }
  .sponsor-content--item:first-child img{
    width: 90px;
  }
  .event_subtitle{
    font-size: 22px;
    line-height: 22px;
    padding: 12px 15px;
  }
  .event_subtitle span{
    font-size: 18px;
    line-height: 28px;
  }
  .time-content--contents{
    padding: 20px 20px;
  }
  .event_time{
    font-size: 20px;
    line-height: 30px;
  }
  .event_description{
    font-size: 18px;
    line-height: 28px;
  }
  .event-schedule--content__item{
    margin: 0;
    padding: 0;
    padding-bottom: 15px;
  }
  .event-schedule--content{
    margin: 10px 0;
  }
  .sponsor-content--item img{
    width: 120px;
  }
}