/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: #444444;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

a {
  color: #303170;
  text-decoration: none;
}

a:hover {
  color: #303170;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #303170;
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #303170;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2be4a2;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0 0 5px #303170;
}

#header.header-transparent {
  background: transparent;
  box-shadow: 0 0 5px #303170;
}

#header.header-scrolled {
  background: #fff;
  height: 80px;
  box-shadow: 0 0 5px #303170;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 5px;
  margin: 0;
  max-height: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;

}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 8px 12px;
  font-size: 15px;
  font-weight: 500;
  color: #303170;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 20px;
  background-color: #303170;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 35px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #303170;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #303170;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #303170;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
  color: #000000;
  border: 2px solid #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 5px #000;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li>a:before {
  left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0205a1;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3f43fd;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #303170;
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  /* background: url("../../images/taxbg1.jpg"); */
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  /* background-attachment: fixed; */
  background-repeat: no-repeat;
  /* animation: gradient 25s ease-in-out infinite; */
  padding: 100px 0 0 0;
}

#hero:before {
  content: "";
  /* background: linear-gradient(90deg, #00013a73, #ffffff71 10%, #ffffff, #ffffff71 90%, #00013a73); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

/* @keyframes gradient {
	0% {
		background: url("../img/hero.webp");
	}
	50% {
		background: url("../img/hero1.webp");
	}
  100% {
		background: url("../img/hero.webp");
	}
} */

/* #hero .logo {
  filter: drop-shadow(-2px 1px 0 #000);
} */

#hero h1 {
  /* margin: 0 0 20px 0; */
  font-weight: 600;
  color: #303170;
  letter-spacing: 1px;
  position: relative;
  /* text-shadow: 0 0 4px #fff; */
  /* filter: drop-shadow(-2px 2px 0 #303170); */
}

#hero h2 {
  /* margin: 0 0 20px 0; */
  font-weight: 500;
  color: #303170;
  letter-spacing: 1px;
  position: relative;
  filter: drop-shadow(-1px 1px 0 #303170);
  /* text-shadow: 0 0 4px #fff; */
  /* filter: drop-shadow(-1px 1px 0 #303170); */
}

#hero h3 {
  /* border-top: 2px solid #07acff; */
  color: #303170;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  position: relative;
  /* border-bottom: 2px solid #07acff; */
}

#hero h4 {
  color: #303170;
  font-weight: 500;
  text-align: center;
  margin-top: -10px;
}

#hero h2 i {
  font-size: 46px;
}

#hero .btn-get-started {

  font-weight: 500;
  font-size: 20px;
  display: inline-block;
  /* padding: 10px 50px; */
  width: 100%;
  padding: 10px;
  border-radius: 50px;
  transition: 0.5s;
  letter-spacing: 1px;
  color: #fff;
  background: #303170;
  border: 2px solid #fff;
  position: relative;
}

#hero .btn-get-started:hover {
  background: #303170;
  transform: scale(1.1);
  color: #fff;
  font-weight: 600;
}

#hero .animated {
  animation: up-down 5s ease-in-out infinite alternate-reverse both;
}

#hero .hero-img {
  text-align: center;
}

#hero img {
  width: 100%;
  position: relative;
  /* filter: drop-shadow(-2px 2px 0 #303170); */
}

@media (max-width: 771px) {
  #hero h2 {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 0px;
  }

  #hero h2 i {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 0px;
  }

  #hero .btn-get-started {
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    /* padding: 10px 50px; */
    width: 100%;
    padding: 5px;
    border-radius: 50px;
    transition: 0.5s;
    letter-spacing: 0px;
    color: #fff;
    background: #303170;
    border: 2px solid #fff;
    position: relative;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 100%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(1.2);
  }

  75% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1.1);
  }
}

@keyframes up-down {
  0% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(1.2);
  }

  75% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero1 {
  background-color: #303170;
  color: #fff;
  /* min-height: 200px; */
}


.x1 {
  -webkit-animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;

  left: 30%;
  top: 10%;
  position: relative;

  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  transform: scale(0.9);
}

.x1 h3 {
  /* left: 0%;
  bottom: 0%; */
  color: #fff;
  position: absolute;
  z-index: 1;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
  filter: drop-shadow(0 0 8px #000);
  /* margin-bottom: 50%; */
  /* justify-content: center;
  align-items: center; */
}

.x2 {
  -webkit-animation: animateBubble 20s linear infinite;
  -moz-animation: animateBubble 20s linear infinite;
  animation: animateBubble 20s linear infinite;

  left: 45%;
  top: 10%;
  position: relative;

  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  transform: scale(0.8);
}

.x2 h3 {
  /* left: 0%;
  bottom: 0%; */
  color: #fff;
  position: absolute;
  z-index: 1;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
  filter: drop-shadow(0 0 8px #000);
  /* margin-bottom: 50%; */
  /* justify-content: center;
  align-items: center; */
}

.x3 {
  -webkit-animation: animateBubble 28s linear infinite;
  -moz-animation: animateBubble 28s linear infinite;
  animation: animateBubble 28s linear infinite;

  left: 60%;
  top: 10%;
  position: relative;

  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  transform: scale(0.6);
}

.x3 h3 {
  /* left: 0%;
  bottom: 0%; */
  color: #fff;
  position: absolute;
  z-index: 1;
  letter-spacing: 3px;
  font-weight: 600;
  filter: drop-shadow(0 0 8px #000);
  /* text-align: center;
  justify-content: center; */
  /* margin-bottom: 50%; */
  /* justify-content: center;
  align-items: center; */
}

.bubble:after {
  background: -moz-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.5) 0%, #303170 70%);
  /* FF3.6+ */
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(255, 255, 255, 0.5)), color-stop(70%, #303170));
  /* Chrome,Safari4+ */
  background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.5) 0%, #303170);
  /* Chrome10+,Safari5.1+ */
  background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.5) 0%, #303170);
  /* Opera 12+ */
  background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.5) 0%, #303170);
  /* IE10+ */
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0%, #303170);
  /* W3C */

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;

  -webkit-box-shadow: inset 0 30px 30px #303170;
  -moz-box-shadow: inset 0 30px 30px #303170;
  box-shadow: inset 0 30px 30px #303170;

  content: "";
  height: 140px;
  left: 0px;
  position: absolute;
  width: 200px;
  text-align: center;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #e3f0f8;
}

/* .section-bg1 {
  background-color: #0004f7;
} */

.section-title {
  padding-bottom: 40px;
  text-align: center;
}

.section-title1 {
  padding-bottom: 40px;
  text-align: center;
}

.section-title h1 {
  font-weight: 500;
  padding: 0;
  margin: 0 0 5px 0;
  color: #303170;
}

.section-title1 h1 {
  font-weight: 500;
  padding: 0;
  margin: 0 0 5px 0;
  color: #fff;
}

/* .section-title h1::before {
  content: "";
  width: 5px;
  height: 40px;
  display: inline-block;
  background: #303170;
  margin: -10px 20px;
}

.section-title h1::after {
  content: "";
  width: 5px;
  height: 40px;
  display: inline-block;
  background: #303170;
  margin: -10px 20px;
}

.section-title1 h1::before {
  content: "";
  width: 5px;
  height: 40px;
  display: inline-block;
  background: #fff;
  margin: -10px 20px;
}

.section-title1 h1::after {
  content: "";
  width: 5px;
  height: 40px;
  display: inline-block;
  background: #fff;
  margin: -10px 20px;
} */


@media (max-width:771px) {

  .section-title h1::after,
  .section-title h1::before {
    display: none;
  }
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 30px;
  font-weight: 600;

  color: #303170;
  text-transform: uppercase;
}

.section-title1 p::before {
  content: "";
  width: 5px;
  height: 40px;
  display: inline-block;
  background: #fff;
  margin: -10px 20px;
}

.section-title1 p::after {
  content: "";
  width: 5px;
  height: 40px;
  display: inline-block;
  background: #fff;
  margin: -10px 20px;
}

.section-title1 p {
  margin: 0;
  margin: 0;
  font-size: 30px;
  font-weight: 500;

  color: #fff;
}

.section-title2 {
  text-align: center;
  position: relative;
}

.section-title2 h4 {
  text-align: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
}

.section-title2 h1::before {
  content: "";
  width: 5px;
  height: 40px;
  display: inline-block;
  background: #fff;
  margin: -10px 20px;
}

.section-title2 h1::after {
  content: "";
  width: 5px;
  height: 40px;
  display: inline-block;
  background: #fff;
  margin: -10px 20px;
}

.section-title2 h1 {
  margin: 0;
  margin: 0;
  /* font-size: 36px; */
  font-weight: 600;
  background-image: linear-gradient(to right,
      #462523 0,
      #cb9b51 22%,
      #f6e27a 45%,
      #f6f2c0 50%,
      #f6e27a 55%,
      #cb9b51 78%,
      #462523 100%);
  color: transparent;
  -webkit-background-clip: text;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

#about-event p {
  color: #000;
  font-size: 17px;
  line-height: 23px;
}

#team {
  background: url("../../images/speakerbg1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


.speaker-card {
  transition: all 0.3s ease-in-out;
}

.speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.awards {
  padding: 0px;
  background-image: url('../../images/awardsbg1.jpg');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.awards::before {
  content: "";
  background: radial-gradient(#000000c9, #00000023);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

/* .awards .content{
  z-index: 999;
} */

.awards .content h5 {
  color: #fff;
  z-index: 1;
  position: relative;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
}

.awards .icon-boxes {
  border-top: 3px solid #fff;
  box-shadow: 0 0 5px #fff;
  height: 100%;
  position: relative;
}

.awards .icon-boxes h3 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  z-index: 1;
}

.awards .icon-boxes h4 {
  /* font-size: 36px; */
  font-weight: 600;
  background-image: linear-gradient(to right,
      #462523 0,
      #cb9b51 22%,
      #f6e27a 45%,
      #f6f2c0 50%,
      #f6e27a 55%,
      #cb9b51 78%,
      #462523 100%);
  color: transparent;
  -webkit-background-clip: text;
  margin-bottom: 15px;
  z-index: 1;
  text-align: center;
}

.awards .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  /* border: 2px solid #303170; */
  border-radius: 50px;
  transition: 0.5s;
  z-index: 1;
}

.awards .icon-box .icon i {
  background-image: linear-gradient(to right,
      #462523 0,
      #cb9b51 22%,
      #f6e27a 45%,
      #f6f2c0 50%,
      #f6e27a 55%,
      #cb9b51 78%,
      #462523 100%);
  color: transparent;
  -webkit-background-clip: text;
  font-size: 30px;
  transition: .3s ease-in-out;
}

/* .awards .icon-box:hover .icon {
  transform: scale(1.1);
  transition: .3s ease-in-out;
} */

.awards .icon-box:hover .icon i {
  transform: scale(1.2);
  transition: .3s ease-in-out;
}

.awards .icon-box:hover .description {
  transform: scale(1.1);
  transition: .3s ease-in-out;
}

.awards .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  z-index: 1;
}

.awards .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.awards .icon-box .title a:hover {
  color: #303170;
}

.awards .icon-box .description {
  margin-left: 65px;
  line-height: 30px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  transition: .3s ease-in-out;
}

.awards .icon-boxes .btn {
  align-items: center;
  background-image: linear-gradient(to right,
      #462523 0,
      #cb9b51 22%,
      #f6e27a 45%,
      #f6f2c0 50%,
      #f6e27a 55%,
      #cb9b51 78%,
      #462523 100%);
  font-size: 20px;
  float: right;
  font-weight: 700;
  color: #000;
  justify-content: center;
  padding: 10px 35px;
  margin-left: auto;
  margin-right: auto;
  transition: .3s ease-in-out;
}

.awards .icon-boxes .btn:hover {
  transform: scale(0.9);
  transition: .3s ease-in-out;
}

.features .icon-box {
  display: flex;
  align-items: center;
  padding: 10px;
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
  color: #5578ff;
}

.features .icon-box h3 {
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 17px;
}

.features .icon-box h3 {
  color: #303170;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3:hover {
  color: #303170;
}

.features .icon-box h4 {
  font-weight: 500;
  margin: 0;
  margin-top: 10px;
  padding: 0;
  line-height: 24px;
  font-size: 20px;
}

.features .icon-box h4 {
  color: #303170;
  transition: ease-in-out 0.3s;
}

.features .icon-box h4:hover {
  color: #303170;
}

.features .icon-box:hover {
  margin-top: 10px;
}

.waiting_bg {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 0;
}

.waiting_sec li {
  border: 1px solid #342f83;
  background: #fff;
  display: flex;
  align-items: center;
  border-bottom: 0;
}

.waiting_sec li span {
  background: #342f83;
  color: #fff;
  border: 1px dashed #fff;
  min-width: 60px;
  height: 38px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.waiting_sec li p {
  font-size: 18px;
  padding: 5px 20px;
  margin-top: auto;
  margin-bottom: auto;
  font-weight: 400;
  line-height: 25px;
}

.waiting_sec li:last-child {
  border-bottom: 1px solid #342f83;
}

.waiting_sec li:hover span {
  background: #0b1d81;
  color: #fff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #f5f5ff;
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #303170;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 48px;
  height: 48px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #303170;
}

.counts .count-box p {
  padding: 0;
  margin: 0;

  font-size: 14px;
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content {
  background-color: #1d1e70;
  box-shadow: 0 0 15px #000;
}

.details h2 {
  color: #fff;
  font-weight: 600;
}

.details .content p {
  font-weight: 400;
  color: #fff;
  line-height: 27px;
  font-size: 18px;
  text-align: justify;
  /* text-align: justify; */
}

.details .content p span {
  font-weight: 600;
  color: #000;
  line-height: 22px;
  font-size: 17px;
  letter-spacing: 2px;
}

.details .about-slider {
  border: 5px solid #fff;
}

.about .about-slider {
  border: 10px solid #303170;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #303170;
  border-bottom: 3px solid #303170;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  /* background: url("../img/cta-bg.jpg") no-repeat; */
  background-position: center center;
  background-size: cover;
  position: relative;
  animation: gradient 25s ease-in-out infinite;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #303170ee;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 16px;
  color: #fff;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #fff;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #303170;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  /* background: url("../img/hero.webp"); */
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  /* animation: gradient 25s ease-in-out infinite; */
  padding: 40px;
}

.team::before {
  content: "";
  /* background: radial-gradient(#ffffffc9, #ffffffa6); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

@keyframes gradient {
  0% {
    background: url("../img/hero.webp");
  }

  50% {
    background: url("../img/hero1.webp");
  }

  100% {
    background: url("../img/hero.webp");
  }
}

.team .member {
  text-align: center;
  position: relative;
}

.team .member .pic {
  border-radius: 3%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 10px #000;
  margin-top: 20px;
  width: 200px;
  box-shadow: inset 0 10px 10px #303170;
}

.team .member img {
  transition: all ease-in-out 0.4s;
  transform: rotateZ(3deg);
  width: 200px;
  border: 4px solid #303170;
  border-radius: 3%;
  background-color: #fff;
}

.team .member:hover .pic {
  filter: grayscale(0);
}

/* .team .member:hover .member-info{
  transform: scale(1.1);
  transition: all ease-in-out 0.4s;
} */

.team .member .member-info {
  position: relative;
  left: 0px;
  min-height: 120px;
  right: 0px;
  background: #303170;
  padding: 15px 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 5px #000;
  transition: all ease-in-out 0.4s;
}

.team .member h4 {
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 16px;
  color: #fff;
  position: relative;
  padding-bottom: 2px;
}

.team .member h5 {
  font-weight: 600;
  margin-bottom: 0px;
  font-size: 15px;
  color: #fff;
  position: relative;
  padding-bottom: 0px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: #fff;
}

.team .member .social {
  margin-top: 10px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #303170;
}

.team .member .social a:hover {
  color: #303170;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .featured {
  opacity: 0.5;
}

.pricing img {
  position: absolute;
  padding-top: 30%;
  width: 50%;
  left: 20%;
  z-index: 1;
}

.pricing h3 {
  font-weight: 400;
  /* margin: -20px -20px 20px -20px; */
  padding: 20px 15px;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  background: #f8f8f8;
}

.pricing h4 {
  /* font-size: 36px; */
  color: #303170;
  font-weight: 600;
  letter-spacing: 1px;

  margin-bottom: 20px;
}

.pricing h5 {
  /* font-size: 36px; */
  color: #303170;
  font-weight: 600;
  letter-spacing: 2px;

  margin-bottom: 20px;
}


.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #727272;
  font-size: 16px;
  font-weight: 300;
}

.pricing .btn-wrap {
  /* margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8; */
  text-align: center;
}

.pricing .btn-buy {
  background: #303170;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 500;

  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #fff;
  border: 2px solid #303170;
  color: #303170;
}

.pricing .featured h3 {
  color: #fff;
  background: #303170;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #303170;
  color: #fff;
}

.partner-slider {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.slide {
  display: inline-block;
  width: 25%;
  padding: 10px;
  text-align: center;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
/* .faq{
  background-color: #fff;
} */

.faq .faq-list {
  padding: 0;
}

.faq .faq-list ul {
  padding: 10px;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #ffffffe8;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 0 5px 0px #000;
}

.faq .faq-list li:hover img {
  transform: scale(0.9);
  transition: .5s ease-in-out;
  box-shadow: 3px 3px 0 3px #7272e9c7;
}

.faq .faq-list a {
  display: block;
  position: relative;

  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  padding: 0 25px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 30px;
  position: absolute;
  right: 0;
  left: 10px;
  color: #303170;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  font-size: 16px;
  color: #000;
  line-height: 25px;
  min-height: 200px;
}

.faq .faq-list img {
  box-shadow: 5px 5px 3px 0px #7272e9c7;
  transition: .5s ease-in-out;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #303170;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #303170;
  padding: 0 0 10px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 20px 0 0 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  color: #fff;
  /* padding: 30px 20px; */
}

#footer .footer-top .footer-info img {
  width: 50%;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 0;
  font-weight: 500;

}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 10px;
}

#footer .copyright {
  border-top: 1px solid #ffff;
  text-align: center;
  padding-top: 10px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

@media (max-width: 768px) {
  #footer .footer-top .footer-info {
    margin: 0px;
    padding: 10px 5px;
  }
}

#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

.content h4 {
  color: #000;
  font-weight: 600;
}

.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none
}

.social-icons li {
  display: inline-block;
  margin-bottom: 4px
}

.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px
}

.social-icons a {
  background-color: #eceeef;
  color: #818a91;
  font-size: 16px;
  display: inline-block;
  line-height: 34px;
  width: 34px;
  height: 34px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #29aafe
}

.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px
}

.social-icons a.facebook:hover {
  background-color: #3b5998
}

.social-icons a.twitter:hover {
  background-color: #000
}

.social-icons a.linkedin:hover {
  background-color: #007bb6
}

.social-icons a.youtube:hover {
  background-color: red
}

.social-icons a.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  ;

}

@media (max-width:767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600
  }
}

#counter {
  text-align: center;
  align-items: center;
  justify-content: center;
  background: #e3f0f8;
  padding: 40px 0px;
  width: 100%;
}

#counter .item {
  background: #fff;
  width: 100%;
  padding: 35px 40px;
  /* margin: 10px; */
  text-align: center;
  border-radius: 20px;
  -webkit-box-shadow: inset 0px 0px 38px -8px rgba(0, 0, 0, 0.64);
  -moz-box-shadow: inset 0px 0px 38px -8px rgba(0, 0, 0, 0.64);
  box-shadow: inset 0px 0px 38px -8px rgba(0, 0, 0, 0.64);
}

#counter .item .count {
  color: #303170;
  margin-bottom: 5px;
  /* font-size: 40px; */
}

#counter .item h3 {
  color: #4f4e28;
  text-transform: capitalize;
}

.tax-stats {
  background: linear-gradient(135deg, #303170, #303170);
  color: #fff;
}

.tax-card {
  background: #ffffff10;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tax-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.tax-icon {
  font-size: 45px;
  margin-bottom: 15px;
  color: #fff;
}

.tax-label {
  font-size: 18px;
  font-weight: 600;
  margin-top: 5px;
  color: #fff;
}

.count {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}

/* Section styling */
#team {
  background-color: #fff;
}

/* Speaker Card */
.speaker-card {
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Speaker Image */
.speaker-img img {
  margin-bottom: 1rem;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 5px solid #303170;
}

/* Speaker text */
.speaker-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #222;
}

.speaker-card p {
  font-size: 1.0rem;
  color: #6c757d;
  margin-bottom: 0.3rem;
}

.speaker-card h6,
.speaker-card span {
  font-size: 1.0rem;
  font-weight: 600;
  color: #303170;
}

.waiting_sec {
  background: linear-gradient(135deg, #303170, #303170);
}

.theme-card {
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
  position: relative;
}

.theme-card p {
  margin-bottom: 0px;
  line-height: 20px;
  padding: 40px 20px 10px;
}

.theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.theme-number {
  width: 55px;
  height: 55px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background: #303170;
  color: #fff;
  border: 3px solid #fff;
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  top: -20px;
  left: 20px;
}

.awards h2 {
  background-image: linear-gradient(to right, #cb9b51 22%, #f6e27a 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 78%, #462523 100%);
  color: transparent;
  -webkit-background-clip: text;
}

.awards .btn1 {
  background-image: linear-gradient(to right, #cb9b51 22%, #f6e27a 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 100%);
  font-weight: 600;
  padding: 10px;
  color: #000;
  transform: scale(1);
  transition: .3s ease-in-out;
}

.awards .btn1:hover {
  transform: scale(1.1);
  transition: .3s ease-in-out;
}

.award-line {
  background: linear-gradient(to right, #000 9%, #fff 9%);
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.award-line:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.award-line i {
  font-size: 22px;
  background-image: linear-gradient(to right, #cb9b51 22%, #f6e27a 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 78%, #462523 100%);
  color: transparent;
  -webkit-background-clip: text;
  font-weight: 600;
  margin-right: 10px;
}

            .showcase {
                min-height: 420px;
                border-radius: 14px;
                position: relative;
                overflow: hidden;
            }

            .showcase-bg {
                position: absolute;
                inset: 0;
                background-size: cover;
                background-position: center;
                transition: transform .9s cubic-bezier(.2, .9, .2, 1), filter .6s ease;
                filter: saturate(.95) contrast(.98) brightness(.78);
                transform: scale(1.04);
            }

            .showcase-gradient {
                position: absolute;
                inset: 0;
                background: linear-gradient(180deg, rgba(3, 37, 65, 0.22), rgba(0, 0, 0, 0.28));
                mix-blend-mode: multiply;
                pointer-events: none;
            }

            .showcase-content {
                position: relative;
                z-index: 2;
                height: 100%;
            }

            /* benefit panel */
            .benefit-panel {
                background: linear-gradient(180deg, #ffffff, #fbfdff);
                box-shadow: 0 6px 22px rgba(20, 40, 80, 0.06);
                border-radius: 12px;
                height: 100%;
            }

            .benefit-list {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }

            .benefit-item {
                display: flex;
                gap: 12px;
                padding: 14px;
                border-radius: 10px;
                background: transparent;
                border: 1px solid transparent;
                text-align: left;
                align-items: center;
                transition: all .22s ease;
                cursor: pointer;
                width: 100%;
                color: #0b2540;
                font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            }

            .benefit-item .bi-left {
                width: 56px;
                height: 56px;
                border-radius: 12px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-size: 22px;
                color: #fff;
                flex-shrink: 0;
            }

            .benefit-item .bi-body {
                text-align: left;
            }

            .benefit-item .bi-title {
                font-weight: 700;
                font-size: 15px;
            }

            .benefit-item .bi-sub {
                font-size: 13px;
                color: #000;
                margin-top: 3px;
            }

            /* color variations for icons */
            .benefit-item[data-index="0"] .bi-left {
                background: linear-gradient(135deg, #4f9cff, #5ad3ff);
            }

            .benefit-item[data-index="1"] .bi-left {
                background: linear-gradient(135deg, #6be28a, #1bbf73);
            }

            .benefit-item[data-index="2"] .bi-left {
                background: linear-gradient(135deg, #ffb86b, #ff7a42);
            }

            .benefit-item[data-index="3"] .bi-left {
                background: linear-gradient(135deg, #ff7b9c, #f02f6f);
            }

            .benefit-item[data-index="4"] .bi-left {
                background: linear-gradient(135deg, #7cc0ff, #3b8cff);
            }

            .benefit-item[data-index="5"] .bi-left {
                background: linear-gradient(135deg, #caa0ff, #7b5cff);
            }

            /* active / hover states */
            .benefit-item:hover,
            .benefit-item:focus,
            .benefit-item.active {
                transform: translateY(-6px);
                background: linear-gradient(180deg, rgba(10, 20, 40, 0.02), rgba(10, 20, 40, 0.03));
                border-color: rgba(10, 20, 40, 0.06);
                box-shadow: 0 8px 20px rgba(13, 37, 65, 0.06);
                outline: none;
            }

            /* small screens */
            @media (max-width: 992px) {
                .showcase {
                    min-height: 320px;
                }

                .benefit-item .bi-left {
                    width: 48px;
                    height: 48px;
                    border-radius: 10px;
                    font-size: 20px;
                }
            }

            @media (max-width: 768px) {
                .row.align-items-stretch {
                    flex-direction: column-reverse;
                }

                .showcase {
                    min-height: 260px;
                    border-radius: 12px 12px 8px 8px;
                }

                .benefit-panel {
                    margin-bottom: 20px;
                }
                .benefit-item {
                display: flex;
                gap: 8px;
                padding: 0px;
                border-radius: 10px;
                background: transparent;
                border: 1px solid transparent;
                text-align: left;
                align-items: center;
                transition: all .22s ease;
                cursor: pointer;
                width: 100%;
                color: #0b2540;
                font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            }

            .benefit-item .bi-left {
                width: 36px;
                height: 36px;
                border-radius: 12px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                color: #fff;
                flex-shrink: 0;
            }

            .benefit-item .bi-body {
                text-align: left;
            }

            .benefit-item .bi-title {
                font-weight: 500;
                font-size: 13px;
            }

            .benefit-item .bi-sub {
                font-size: 12px;
                line-height: 15px;
                color: #000;
                margin-top: 3px;
            }

            }


@media (max-width:767px) {
  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 20px;
  }


  h3 {
    font-size: 16px;
    line-height: 25px;
  }

  h4 {
    font-size: 16px;
    line-height: 25px;
  }

  h5 {
    font-size: 14px;
    line-height: 18px;
  }

  h6 {
    font-size: 13px;
    line-height: 18px;
  }

  p {
    font-size: 13px;
    line-height: 18px;
  }


  .tax-label {
    font-size: 13px;
    font-weight: 500;
    margin-top: 5px;
    color: #fff;
  }

  .count {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
  }

  #about-event p {
    color: #000;
    font-size: 14px;
    line-height: 20px;
  }

  .speaker-card {
    border-radius: 0.5rem;
    padding: 0rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease-in-out;
    position: relative;
  }

  .speaker-img img {
    margin-bottom: 1rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #303170;
  }

  .speaker-card h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #222;
    line-height: 16px;
  }

  .speaker-card p {
    font-size: 0.7rem;
    color: #000;
    line-height: 16px;
    margin-bottom: 0.3rem;
  }

  .speaker-card h6,
  .speaker-card span {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 16px;
    color: #303170;
  }

  .waiting_sec {
    background: linear-gradient(135deg, #303170, #303170);
  }

  .theme-card {
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
  }

  .theme-card p {
    margin-bottom: 0px;
    line-height: 15px;
    padding: 15px 10px 5px;
    font-size: 13px;
  }

  .theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .theme-number {
    width: 35px;
    height: 35px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    background: #303170;
    color: #fff;
    border: 3px solid #fff;
    font-weight: bold;
    font-size: 15px;
    position: absolute;
    top: -20px;
    left: 20px;
  }

  .awards .btn1 {
    background-image: linear-gradient(to right, #cb9b51 22%, #f6e27a 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 100%);
    font-weight: 600;
    padding: 8px;
    color: #000;
    transform: scale(1);
    transition: .3s ease-in-out;
  }

  .awards .btn1:hover {
    transform: scale(1.1);
    transition: .3s ease-in-out;
  }

  .award-line {
    background: linear-gradient(to right, #000 10%, #fff 10%);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 6px 8px;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .award-line:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  }

  .award-line i {
    font-size: 18px;
    background-image: linear-gradient(to right, #cb9b51 22%, #f6e27a 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 78%, #462523 100%);
    color: transparent;
    -webkit-background-clip: text;
    font-weight: 600;
    margin-right: 10px;
  }
  .social-icons a {
  background-color: #eceeef;
  color: #818a91;
  font-size: 13px;
  display: inline-block;
  line-height: 24px;
  width: 24px;
  height: 24px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear
  }
}