@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url("responsive.css");

.container-fluid {
  max-width: 90%;
}
.topLogoCon {
  padding: 15px 0;
}
.logoBoxContainer {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}
.logo-con img {
  max-height: 80px;
}
.cii-logo img {
  max-height: 60px;
}

:root {
  --title1: 4.8rem;
  --title2: 4.6rem;
  --title3: 4.3rem;
  --title4: 4rem;
  --title5: 3.5rem;
  --title6: 3rem;

  --subTitle1: 2.8rem;
  --subTitle2: 2.6rem;
  --subTitle3: 2.3rem;
  --subTitle4: 2rem;

  --fs11: 1.2rem;
  --fs22: 1rem;
  --fs33: 0.8rem;
  --fs44: 0.6rem;

  --blueTheam100: #0d00a4;
  --greenTheam100: #2ec4b6;
  --gray100: #8d99ae;
  --gray200: #495057;
  --dark: #2b2d42;
  --white: #ffffff;
  --light100: #f2e6ff;

  --greenTheamLight: #eeeeee;
  --greenTheamMedium100: #6fcf97;
  --greenTheamMedium200: #a3f3fb;
  --greenTheamDark100: #00b7b5;
  --greenTheamDark200: #1f6f5f;

  --blueTheamLight: #d2eef4;
  --blueTheamMedium100: #25adfc;
  --blueTheamMedium200: #006eff;
  --blueTheamDark200: #001a6e;
  --blueTheamDark200: #001c40;

  --serifFont: "DM Serif Text", serif;
}

body {
  font-family: "Lato", sans-serif;
}

.modal {
  background-color: rgba(5, 8, 44, 0.8);
  border: none;
  backdrop-filter: blur(10px);
}
/*
.popupModal {
  background-image: url(../images/bg8.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border: none;
  border-radius: 20px;
}
*/
.popupModal .btn-close {
  background-color: var(--white);
}

/* .applyAward {display: flex; align-items: center; position: fixed; z-index: 99; right:0; bottom: 0; background: linear-gradient(to right, #107B85 0%, #001C40 20%, #006EFF 40%, #001C40 80%, #107B85 100%); padding: 10px 20px; font-size: var(--fs11); font-weight: 600;  color: var(--white); border-top-left-radius: 30px;} */

.applyAward {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 99;
  right: 0;
  bottom: 0;
  padding: 10px 20px;
  font-size: var(--fs11);
  font-weight: 600;
  color: var(--white);
  border-top-left-radius: 30px;
  background: linear-gradient(
    50deg,
    #107b85,
    #001c40,
    #006eff,
    #001c40,
    #107b85
  );
  background-size: 300% 300%;
  animation: gradient-animation 15s ease infinite;
}
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.applyAward a {
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
}
.serifFont {
  font-family: "DM Serif Text", serif;
  letter-spacing: 2px;
}
p {
  font-size: var(--fs11);
  line-height: 130%;
}
.section-title {
  font-family: var(--serifFont);
  font-size: var(--subTitle1);
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  color: transparent;
  background: linear-gradient(
    to right,
    var(--blueTheam100),
    var(--greenTheam100)
  );
  background-clip: text;
}

.nav-link {
  font-weight: 700;
  color: var(--greenTheamDark100);
  font-size:13px;
  text-transform: uppercase;
}

.hk-btn {
  min-width: 260px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 15px;
  color: #fff;
  background-color: var(--blueTheam100);
  position: relative;
  overflow: hidden;
}
.hk-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 183, 181, 0.3);
  transform: skewX(-45deg);
  transition: left 1s ease;
}
.hk-shine:hover::after {
  left: 100%;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--blueTheamMedium200) !important;
}
.register-btn1 {
  background-color: var(--greenTheamMedium200);
  padding: 7px 15px 7px 15px !important;
  color: var(--blueTheamDark200) !important;
  border-radius: 7px;
  transition: all ease 0.7s;
}
.register-btn1:hover {
  background-color: var(--greenTheamMedium100);
}

.section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 5px;
  background: #2d3990;
  background: linear-gradient(
    90deg,
    rgba(45, 57, 144, 1) 0%,
    rgba(28, 165, 156, 1) 100%
  );
  display: inline-block;
  left: 0;
  bottom: 0;
}

.subtitle {
  font-size: var(--fs11);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}
.subtitle span {
  width: 28px;
  height: 1.5px;
  display: inline-block;
  background-color: var(--dark);
  opacity: 0.5;
}
.title {
  font-size: var(--title6);
  font-family: var(--serifFont);
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 120%;
}
.title span {
  color: #2f3e46;
  background-image: linear-gradient(
    45deg,
    var(--blueTheam100),
    var(--gray100) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.registerBtn {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--blueTheam100);
  padding: 12px 15px;
  border: none;
  color: var(--white);
  font-size: var(--fs11);
  cursor: pointer;
  outline: none;
  overflow: hidden;
  border-radius: 100px;
  text-align: center;
}
.registerBtn a {
  color: var(--white);
  display: block;
}
.registerBtn span {
  position: relative;
  pointer-events: none;
}
.registerBtn::before {
  --size: 0;
  content: "";
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
    circle closest-side,
    var(--greenTheam100),
    transparent
  );
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition:
    width 0.2s ease,
    height 0.2s ease;
}
.registerBtn:hover::before {
  --size: 400px;
}

/* .registerBtn {min-width: 240px; font-size: var(--fs11); display: flex; justify-content: center; align-items: center; padding: 10px; background-color: var(--blueTheam100); color: var(--white); text-decoration: none; border-radius: 15px;} */
.registerBtn i {
  position: absolute;
  background: linear-gradient(
    to right,
    var(--blueTheam100) 0%,
    var(--greenTheam100) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 10px;
  font-size: var(--subTitle4);
}

/*======= Home Slider ======*/
.hero-slider {
  width: 100%;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}
.borderRound {
  border-radius: 40px;
}
@media (max-width: 991px) {
  .hero-slider {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .hero-slider {
    height: 500px;
  }
}
.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}
.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid #d4d3d3;
  border-radius: 55px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}
.hero-slider .swiper-button-prev {
  left:0;
  transform: translateX(50px);
}
.hero-slider .swiper-button-prev:before {
  font-family: "bootstrap-icons";
  content: "\F284";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}
.hero-slider .swiper-button-next {
  right:0;
  transform: translateX(-50px);
}
.hero-slider .swiper-button-next:before {
  font-family: "bootstrap-icons";
  content: "\F285";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}
.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: left;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 0.3;
  background: #fff;
  transition: all 0.2s ease;
}
.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
}
.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
}
.swiper-pagination {
  text-align: left;
}
.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 50px;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 767px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 30px;
  }
}
.hero-style {
  height: 600px;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .hero-style {
    height: 600px;
  }
}

@media screen and (min-width: 992px) {
  .hero-style .container {
    padding-top: 5px;
  }
}
.htechLogoCon {
  padding: 15px;
  background-color: var(--white);
  display: inline-block;
  margin-bottom: 20px;
}
.htechLogoCon img {
  width: 200px;
}
.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  max-width: 1024px;
}
.hero-style .slide-title h2 {
  font-size: var(--title4);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 40px;
  text-transform: capitalize;
  transition: all 0.4s ease;
}
.hero-style .slide-title h5 {
  font-size: var(--subTitle3);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 40px;
  text-transform: capitalize;
  transition: all 0.4s ease;
}
@media (max-width: 1199px) {
  .hero-style .slide-title h2 {
    font-size: 75px;
  }
}
@media (max-width: 991px) {
  .hero-style .slide-title h2 {
    font-size: 50px;
    margin: 0 0 35px;
  }
}
@media (max-width: 767px) {
  .hero-style .slide-title h2 {
    font-size: 35px;
    margin: 0 0 30px;
  }
}
.hero-style .slide-text p {
  opacity: 0.8;
  font-family: Rajdhani;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: normal;
  color: #fff;
  margin: 0 0 40px;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .hero-style .slide-text p {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 30px;
  }
}
.hero-style .slide-btns > a:first-child {
  margin-right: 10px;
}
.theme-btn,
.theme-btn-s2 {
  background-color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #2b3b95;
  padding: 9px 32px;
  border: 0;
  border-radius: 3px;
  text-transform: uppercase;
  display: inline-block;
  line-height: initial;
  transition: all 0.4s ease;
}
a {
  text-decoration: none;
  transition: all 0.2s ease;
}
.theme-btn-s2 {
  background-color: #ffffffe6;
  color: #131e4a;
}
.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn:active,
.theme-btn-s2:active {
  background-color: #2b3b95;
  color: #fff;
}
.theme-btn-s3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
}
i.fa-chevron-circle-right {
  height: 22px;
  width: 22px;
}
a:hover {
  text-decoration: none;
}
@media (max-width: 991px) {
  .theme-btn,
  .theme-btn-s2,
  .theme-btn-s3 {
    font-size: 13px;
    padding: 15px 25px;
  }
}
@media (max-width: 767px) {
  .theme-btn,
  .theme-btn-s2 {
    padding: 13px 20px;
    font-size: 13px;
  }
}
/*======= About ======*/
.industrySection,
.aboutSection,
.registerSection,
.gallerySection,
.keyDiscussion,
.partnerLogoSection,
.galleryPage,
.highlightSection,
.keyHighlightSection,
.glanceSection {
  padding: 90px 0;
  position: relative;
}
.industrySection {
  background-image: url(../images/bg1.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.aboutSection {
  background-image: url(../images/bg2.jpg);
  background-repeat: no-repeat;
  background-position: right center;
}
.about-logo {
  background-color: #ffffff;
  padding: 30px;
  display: inline-block;
}
.about-logo img {
  max-width: 260px;
}
.about-us {
  padding: 120px 0;
  background-image: url(../images/shape01.png);
  background-repeat: no-repeat;
  background-position: left 22% top;
  background-size: 40%;
}
.about-us-image-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  margin-right: 15px;
}
.about-us-image-box-1 {
  position: relative;
  width: 70%;
  height: 100%;
}
.about-us-image-box-1 .about-us-image,
.about-us-image-box-1 .about-us-image figure,
.about-us-image-box-1 .about-us-image img {
  height: 100%;
}
.about-us-image figure {
  display: block;
  border-radius: 20px;
}
.about-us-image img {
  width: 100%;
  aspect-ratio: 1 / 1.36;
  object-fit: cover;
  border-radius: 20px;
}
.about-us-image-box-2 {
  position: relative;
  width: 27%;
  z-index: 1;
}
.about-us-image-box-2 .about-us-image figure {
  border: 10px solid #fff;
  margin-left: -137px;
  border-radius: 30px 20px 20px 30px;
  border-right: none;
}
.about-us-image-box-2 .about-us-image figure img {
  aspect-ratio: 1 / 1.21;
}
.about-us-counter-box {
  position: absolute;
  bottom: 55px;
  right: -70px;
  max-width: 300px;
  background-color: #1ca59c;
  border-radius: 20px;
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  transition: all 0.4s ease-in-out;
  animation: experienceboxmove 3s infinite linear alternate;
  z-index: 2;
  color: #fff;
}
.about-us-counter-box:hover {
  background-color: #fff;
  color: #1ca59c;
}
@keyframes experienceboxmove {
  50% {
    transform: translateX(30px);
  }
}
.about-us-counter-box .icon-box img {
  width: 100%;
  max-width: 50px;
}
.about-us-counter-content h2 {
  font-size: 40px;
  line-height: 1em;
}
.about-us-counter-content p {
  color: var(--primary-color);
  margin: 5px 0 0;
  font-size: 14px;
}
.about-us-content {
  height: 100%;
  align-content: center;
}
.about-us-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
}
.about-us-body-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-us-body-list ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
}
.about-us-body-list ul li:last-child {
  margin-bottom: 0;
}
.about-us-body-list ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 7 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}
.about-us-btn {
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
  margin-top: 40px;
}
.about-us-counter-list {
  width: calc(35% - 30px);
}
.about-us-counter-item {
  text-align: center;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.about-us-counter-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.about-us-counter-item h2 {
  font-size: 46px;
  line-height: 1em;
}
.about-us-counter-item p {
  margin: 5px 0 0;
}

/*========= Glance Section =========*/
.glanceSection {
  background: linear-gradient(45deg, #001c40 0%, #107b85 100%);
}
.stats-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.stats-container .stat-box {
  width: 100%;
  background-color: var(
    --white
  ); /* background-image: url(../images/bg2.jpg); background-repeat: no-repeat; background-position: center center;*/
  border-radius: 30px;
  padding: 25px;
}
.stats-container .numberIncrement {
  display: inline-block;
  font-size: var(--title5);
  font-family: var(--serifFont);
  font-weight: bold;
  line-height: 100%;
  color: transparent;
  background: linear-gradient(to right, rgb(3, 27, 254), rgb(254, 180, 123))
    text;
}
.stats-container .title {
  font-size: var(--subTitle4);
  font-family: var(--serifFont);
  font-weight: bold;
  line-height: 100%;
  color: var(--greenTheamDark100);
}
.stats-container .desc {
  font-size: 15px;
  color: var(--blueTheamDark200);
}
.glanceList {
  list-style-type: none;
}
.glanceList li {
  display: flex;
  gap: 20px;
  list-style-type: none;
  background-color: var(--dark);
  padding: 20px;
  font-size: var(--fs11);
  color: var(--white);
  border-radius: 20px;
  align-items: center;
  margin-bottom: 15px;
}
.glanceList li i {
  font-size: 26px;
  background: linear-gradient(to right, #031bfe, #feb47b);
  padding: 10px;
  border-radius: 10px;
}
.glanceList li a {
  color: var(--white);
  text-decoration: underline;
}

#galleryBtn {
  margin-top: -150px;
  position: relative;
}

/*========= KEY HighlightSection Section =========*/
.keyHighlightSection {
  background-image: url(../images/bg8.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  transition: all ease 0.8s;
}
.keyHighlightBox {
  padding: 30px;
  background-image: url(../images/bg5.jpg);
  background-repeat: no-repeat;
  background-size: 150%;
  background-position: right center; /*background-color:rgba(0,0,0, 0.15);background-color: var(--white);*/
  transition: all ease 0.8s;
  height: 100%;
  position: relative;
  border-radius: 20px;
}
.keyHighlightBox:hover {
  margin-top: -15px;
  background-image: none;
  background-color: var(--blueTheamMedium100);
}
.keyHighlightBox .icon i {
  font-size: var(--title4);
  background: linear-gradient(to right, #6fcf97, #006eff);
  /* Clip the background to the text (icon) */
  -webkit-background-clip: text;
  background-clip: text;

  /* Make the icon color transparent to show the gradient beneath */
  color: transparent;
}
.keyHighlightBox:hover .icon i {
  color: var(--white);
}
.keyHighlightBox .text {
  font-size: var(--fs11);
  color: var(--blueTheamDark200);
}
.keyHighlightBox:hover .text {
  color: var(--white);
}

.lightText {
}
.lightText .subtitle {
  color: var(--white);
}
.lightText .subtitle span {
  background-color: var(--blueTheamMedium200);
}
.lightText .title {
  color: var(--white);
}
.lightText .title span {
  color: var(--white);
  background-image: linear-gradient(45deg, #ffffff, #25adfc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.awardSection .lightText .subtitle span {
  background-color: var(--white);
}

/*========= KEY DISCUSSION POINTS Box =========*/
#keyDiscussion {
  padding-top: 230px;
}
.keyDiscussionBox {
  width: 100%;
  height: 100%;
  background-image: url(../images/bg3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--dark);
  padding: 30px;
  border-radius: 10px;
  transition: all ease 08s;
  position: relative;
}
.keyDiscussionBox .icons {
  display: inline-block;
  font-size: var(--subTitle1);
  color: var(--white);
  font-size: var(--title4);
  position: relative;
  color: var(--greenTheam100);
  background: linear-gradient(to right, #031bfe, #feb47b);

  /* Clip the background to the text (icon) */
  -webkit-background-clip: text;
  background-clip: text;

  /* Make the icon color transparent to show the gradient beneath */
  color: transparent;
}
.keyDiscussionBox .icons::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background-color: var(--white);
  opacity: 0.1;
  border-radius: 90px;
  left: -30px;
  top: -30px;
}
.keyDiscussionBox .title {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--white);
  font-family: var(--serifFont);
  line-height: 110%;
}
.keyDiscussionBox .text {
  font-size: var(--fs22);
  color: var(--white);
}

/*========= Register Box =========*/
.registerSection {
  background-image: url(../images/bg3.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: var(--blueTheam100);
}
.registerBox {
  padding: 35px;
  position: relative;
  gap: 40px;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  background-color: var(--greenTheam100);
  color: var(--white);
  border-radius: 30px;
  margin: 45px 0;
}

/*Speaker Section*/
.speakerSection {
  width: 100%;
  height: auto;
  padding: 80px 0;
  background-color: var(
    --greenTheam100
  ); /*background-image: url(../images/bg6.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;*/
  overflow: hidden;
  justify-content: center;
  position: relative;
}
.speakerSection .speakerSec {
  overflow: hidden;
}
.speaker-box {
  position: relative;
  background-color: var(--blueTheam100);
  padding: 80px 30px 20px 30px;
  height: 100%;
  text-align: center;
  border-radius: 30px;
}
.speaker-box .img {
  position: absolute;
  top: -25%;
  left: 25%;
  border-radius: 100%;
  width: 130px;
  object-fit: contain;
  background-color: var(--white);
  padding: 10px;
  overflow: hidden;
  border: 4px solid var(--blueTheam100);
}
.speakerInfo {
  position: relative;
}
.speaker-box .name,
.swiperSpeakerBox .name {
  font-family: var(--serifFont);
  font-size: var(--fs11);
  color: var(--white);
  margin-top: 5px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 120%;
}
.speaker-box .designation,
.swiperSpeakerBox .designation {
  font-size: 14px;
  color: var(--white);
  line-height: 110%;
  opacity: 0.8;
}
.speaker-box .designation span {
  font-size: 13px;
  color: #03e5fb;
  opacity: 1;
  display: block;
  font-weight: 600;
  margin: 5px 0;
  line-height: 110%;
}
.speaker-box .company {
  font-size: var(--fs13);
  color: var(--white);
  position: absolute;
  top: 2px;
  right: 2px;
  padding: 1px 3px;
  background-color: rgba(78, 68, 78, 0.5);
}

.swiperSpeakerBox {
  position: relative;
  background-color: transparent;
  text-align: center;
}
.swiperSpeakerBox .img {
  width: 170px;
  margin: 0 auto;
}
.swiperSpeakerBox .name {
  margin-top: 15px;
}

.speaker-box-all {
  text-align: center;
  justify-content: center;
  align-items: center;
  color: var(--white);
  border: 1px solid var(--white);
}
.commercial-all-speakers {
  border: 1px solid var(--white);
  height: 265px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  display: flex;
  cursor: pointer;
}
.commercial-all-speakers h2 {
  font-size: var(--fs20);
  margin-bottom: 0;
}
.commercial-all-speakers p {
  font-size: var(--fs16);
  margin-bottom: 0;
  opacity: 0.7;
}
.consumerSection {
  background-image: url("../images/bg/bg4.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: auto;
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
  justify-content: center;
  position: relative;
}
.speakerSec > .swiper-button-next {
  top: 70% !important;
}
.speakerSec > .swiper-button-prev {
  top: 70% !important;
}

.swiper-slide .speaker-box {
  background-color: transparent !important;
}
/*========== Highlights Summit Section =======*/
.highlightSection {
  text-align: center;
}
.highlightSection .counter-container .counter {
  font-size: var(--title2);
  font-family: var(--serifFont);
  font-weight: bold;
  letter-spacing: 3px;
}
.highlightSection .counter-container .counter span {
  font-size: var(--fs11);
}

/*========== Logo Marque =======*/

/*========== Award Section =======*/
.awardSection {
  padding: 90px 0 170px 0;
  background-image: url(../images/bg-award2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  background-attachment: fixed;
}
#gallery {
  width: 98vw;
}
#gallery h3 {
  font-family: var(--serifFont);
  font-size: var(--title6);
  color: var(--white);
}
#gallery header,
#gallery footer {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-group-container {
  height: 500vh;
  position: relative;
}
.img-group-container > div {
  position: sticky;
  top: 0;
  overflow: hidden;
  height: 100vh;
}
.img-group {
  display: flex;
}
.img-container {
  display: flex;
  width: 80vw;
  height: 80vh;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#gallery header h2 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}
.img-container h3 {
  margin: 0;
  font-family: var(--serifFont);
  font-size: var(--title6);
  color: var(--white);
  position: relative;
  bottom: 30px;
  display: inline-block;
}
.img-container img {
  width: 350px;
  height: 350px;
}
.progress {
  position: relative;
  height: 5px;
  background: #91f;
  bottom: 50px;
  transform: scaleX(0);
}

.awardMainBox {
  width: 100%;
  height: auto;
  border-radius: 45px;
}
.awardBox {
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 10px;
  transition: all ease 0.6s;
  position: relative;
  background-image: url(../images/bg3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--dark);
  cursor: pointer;
}
@keyframes animated-gradient-prism {
  0% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
  50% {
    background-position: 100% 50%;
    filter: hue-rotate(15deg);
  }
  100% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
}
.awardBox:hover {
  margin-top: -15px;
  background: linear-gradient(
    45deg,
    #107b85 0%,
    #001c40 20%,
    #006eff 40%,
    #001c40 80%,
    #107b85 100%
  );
}
.awardBox:hover .title {
  color: var(--white);
}

.awardBox .awardIcon img {
  width: 110px;
}
.awardBox .title {
  color: var(--white);
  font-size: var(--fs11);
  letter-spacing: 2px;
  line-height: 110%;
  margin: 10px 0 0 0;
  font-weight: 300;
}
.awardBox .title div {
  display: block;
  font-size: 80%;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  color: var(--white) !important;
}
.awardBox .subTitleSec ul {
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
}
.awardBox .subTitleSec ul li {
  list-style-type: none;
  color: var(--white);
  border: 1px solid var(--white);
  opacity: 0.5;
  display: inline-block;
  font-size: 80%;
  padding: 3px 6px;
  margin-bottom: 8px;
}
.awardPosterSection {
  position: absolute;
  margin-top: 60px;
  z-index: 9;
}

.aiWorkshopBox {
  height: 100%;
  background-color: var(--white);
  padding: 30px;
  border-radius: 20px;
  text-align: start;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.4);
  transition: all ease 0.8s;
}

.aiWorkshopBox .title {
  font-size: 32px;
}
/*========== Partner Section =======*/
.partnerLogoSection .logoBox {
  background-color: var(--white);
}
.logoBox {
  padding: 25px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
  height: 100%;
}
.logoBox .title {
  font-size: var(--fs11);
  text-align: center;
  border-bottom: 1px solid var(--gray100);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.logoContainer {
  background-color: var(--white);
}
.logoContainer .logoBox {
  background-color: var(--white);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dadada;
}
.logoContainer .title {
  font-size: 140%;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #cccccc;
  margin-top: 30px;
}
.logoContainer .logoBox img {
  max-width: 160px;
}
/*=========== Gallery ============*/
.gallerySection {
  background-color: var(--blueTheam100);
  background-image: url(../images/bg5.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 90px 0;
}

.galleryPageInner {
  padding: 70px 0;
  background-image: url(../images/bg5.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.gallerySection .hk-btn {
  position: absolute;
  top: -140px;
  z-index: 99;
}
.scene,
.a3d {
  display: grid;
}
.scene {
  position: relative;
  margin-top: -100px;
  overflow: hidden;
  perspective: 45em;
  mask: linear-gradient(90deg, #0000, red 20% 80%, #0000);
}
.a3d {
  place-self: center;
  transform-style: preserve-3d;
  animation: ry 60s linear infinite;
}
@keyframes ry {
  to {
    rotate: y 1turn;
  }
}
.card {
  --w: 35em;
  --ba: 1turn/var(--n);
  grid-area: 1/1;
  width: var(--w);
  aspect-ratio: 7/10;
  object-fit: cover;
  border-radius: 1.5em;
  backface-visibility: hidden;
  transform: rotatey(calc(var(--i) * var(--ba)))
    translatez(calc(-1 * (0.5 * var(--w) + 0.5em) / tan(0.5 * var(--ba))));
}
@media (prefers-reduced-motion: reduce) {
  .a3d {
    animation-duration: 500s;
  }
}
.thumb-img-con {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #f8f9fa;
  padding: 6px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thumb-img-con .img {
  width: 50%;
}
.thumb-img-con .title {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  height: auto;
  width: 100%;
  z-index: 22;
  padding: 8px 30px;
  font-family: var(--serifFont);
  font-size: var(--subTitle4);
  color: var(--greenTheam100);
}
.thumb-img-con .view-details {
  width: 50%;
  padding: 15px;
  color: var(--blueTheam100);
  font-size: 16px;
  margin-right: 10px;
  font-weight: normal;
}
.thumb-img-con .view-details span {
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
  display: block;
  margin-bottom: 10px;
}
.galleryPage .img_thumbnil {
  background-color: var(--blueTheamDark200);
  padding: 10px;
  border-radius: 10px;
  transition: all ease 0.6s;
  height: auto;
  overflow: hidden;
}

/*======= Footer ======*/
/* .footerSection {background:var(--blueTheam100);
background: linear-gradient(25deg, var(--blueTheam100) 0%, var(--greenTheam100) 100%); padding: 90px 0;} */
.footerSection {
  padding: 90px 0;
  background-image: url(../images/bg4.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.footerSection .title {
  font-family: var(--serifFont);
  font-size: 30px;
  color: var(--greenTheam100);
  margin-bottom: 20px;
}
.footerSection .logo {
  max-width: 280px;
  padding: 30px;
  background-color: var(--white);
}
.footerSection .quicklinksSec {
  list-style-type: none;
  padding-left: 0;
}
.footerSection .quicklinksSec li a {
  color: var(--white);
  font-size: VAR(--fs11);
  line-height: 140%;
  transition: all ease 0.7s;
}
.footerSection .quicklinksSec li:hover a {
  color: var(--gray100);
  margin-left: 15px;
}
.footerSection .quicklinksSec li a i {
  color: var(--gray100);
  font-size: 18px;
}
.footerSection .socialSec {
  list-style-type: none;
  padding-left: 0;
}
.footerSection .socialSec div {
  color: var(--dark);
  font-size: var(--fs11);
}
.footerSection .socialSec li {
  float: left;
  margin-bottom: 30px;
}
.footerSection .socialSec li a {
  background-color: var(--dark);
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  width: 35px;
  height: 35px;
  margin-right: 10px;
  border-radius: 10px;
  font-size: var(--fs11);
}
.footerSection .name {
  color: var(--white);
  opacity: 0.7;
  font-size: var(--fs11);
  margin: 10px 0;
}
.footerSection .email a {
  font-size: var(--fs11);
  color: var(--greenTheam100) !important;
}
.spacer-border {
  width: 100%;
  height: 1px;
  background-color: var(--white);
  opacity: 0.2;
  margin: 15px 0;
}

.JuryHeader {
  width: 100%;
  padding: 90px 0;
  background-image: url(../images/bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.jurySection {
  width: 100%;
  padding: 150px 0 90px 0;
}
