@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Fonts */
:root {
  --default-font: "Roboto", sans-serif;
  --heading-font: "Oswald", sans-serif;
  --nav-font: "Oswald", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color:#ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color:#48C1E1; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #002f53; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color:#48C1E1; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color:#002f53; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color:#fff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  
  /*--nav-hover-color:#7ec343; Applied to main navmenu links when they are hovered over or active */
  /* --nav-dropdown-background-color:#3d2d78; Used as the background color for dropdown items that appear when hovering over primary navigation items */
  /*--nav-dropdown-hover-color:#7ec343; Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #42469a;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #42469a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #385167;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color:#3d2d78;
}

.header .topbar {
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  color: var(--default-color);
}

.header .topbar .contact-info i a:hover {
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
	 background-color:#00001d;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 90px;
  margin-right: 8px;
  max-width: 100%;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
	  background-color:#3d2d78;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
	  word-spacing:2;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
	  word-spacing:2;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }
  
  

  /*.navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }*/


.navmenu li:hover>a,
  .navmenu li.active a,
  .navmenu li.active a:focus {
    color: var(--nav-hover-color);
}
  
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 18px;
    text-transform: none;
    color: var(--nav-dropdown-color);
	  word-spacing:2;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color:#fff;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

.navmenu li a.btn {
	background-color: #48C1E1;
   color: #002f53;
   border: 1px solid #48C1E1;
   padding: 4px 16px;
   margin-left: 6px;
   display: inline-flex;
   border-radius: 3px;
 }
 .navmenu li a.btn:hover, .navmenu li a.btn:focus {
 	background-color: #48C1E1;
   border: 1px solid #48C1E1;
 	color: #fff;
 }
/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
	.navmenu li a.btn {
		margin-left: 12px;
	    margin-top: 9px;
	}
  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color:#48C1E1;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 0px;
    margin: 0px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color:#ffffff;
  background-color:#002f53;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  font-size: 16px;
  color: #ffffff;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color:#48CaE4;
  border-color:#48CaE4;
}

.footer h4 {
  font-size: 22px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color:#ffffff;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #48CaE4;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
	.footer .footer-links {
		margin-bottom: 0px;
	}
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    /* scroll-margin-top: 100px; */
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  /* height: 600px; Fixed height for banner */
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
}

.hero img {
  /*position: absolute;*/
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill; /* Ensures the entire image fits */
  z-index: 1;
}

.hero .carousel-item {
  /*position: absolute;*/
  inset: 0;
  background-size: 100% 100%; /* Ensures no space on top/bottom */
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {
  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}
.why-this-submit {
	 background: #000;
	padding-top: 1rem;
    padding-bottom: 2rem;
}
.why-this-submit .bg-orange {
	min-height: 365px;
}
.what-happening-section  {
	padding: 3rem 0px;
}
.what-happening-section h1.fw-bold {
	margin-bottom: 2rem;
}
.what-happening-section .product-col {
	display: flex;
       flex-direction: column;
       justify-content: end;
       align-items: center;
}
.what-happening-section .product-col .product_inner {
	margin-top: 0px;
}

/* Responsive Fix */
@media (max-width: 1024px) {
  .hero .carousel {
    /*height:450px;*/
  }

  /*.hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }*/
	
	.hero .carousel-control-next-icon,
	.hero .carousel-control-prev-icon {
	  background: none;
	  font-size: 14px;
	  line-height: 1;
	}
}
@media (max-width: 1399.98px) {
	.why-this-submit .box.bg-orange.p-4 {
		padding: 0px !important;
	}
}
@media (max-width: 1200px) {
	.hp-event-highlights .counter-cols {
		flex-wrap: wrap;
		justify-content: center;
	}
	.hp-event-highlights .counter-cols .stats-item {
		width: 130px;
		padding: 20px 10px;
	}
	.hp-event-highlights .counter-cols .stats-item span {
		font-size: 45px;
	}
	.hp-event-highlights .counter-cols .stats-item p {
		font-size: 26px;
	}
}
@media (max-width: 992px) {
	.why-this-submit .col-md-12.text-center.mt-5 {
		margin-top: 20px !important;
	}
	.why-this-submit h2.fw-bold {
		font-size: 32px;
	}
	.why-this-submit .text-orange {
		font-size: 70px;
	}
	.why-this-submit .theme-bg-text {
		font-size: 125px;
	}
	.hp-event-highlights .counter-cols {
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.hp-event-highlights .counter-cols .stats-item {
		width: 130px;
	}
	.hp-event-highlights .counter-cols .stats-item span {
		font-size: 28px;
	}
	.what-happening-section  {
		padding: 2rem 0px;
	}
	.what-happening-section h1.fw-bold {
		margin-bottom: 1rem;
	}
}
@media (max-width: 768px) {
    .hero .carousel {
    	background-color: #002f53 !important;
	    /*height:300px;*/
	  }
	  .carousel-indicators {
	  	margin-bottom: 0px;
	  }
	  .why-this-submit {
		padding-top: 1.6rem;
    	padding-bottom: 1rem;
	}
	.why-this-submit .col-md-12.text-center.mt-5 {
		margin-top: 0px !important;
	}
	.why-this-submit .text-orange {
		font-size: 32px;
	}
	.why-this-submit .bg-orange {
		margin-bottom: 30px;
	}
	.hp-event-highlights .counter-section {
		margin-top: 0px !important;
	}
	.hp-event-highlights .counter-bg-text {
		font-size: 60px;
		top: 0;
        left: 47%;
        transform: translate(-51%, 0px);
	}
	.what-happening-section .product-col .product_inner h4 {
       font-size: 28px;
	}
	.efs h2 {
		font-size: 32px !important;
	}
	.what-awaits-you .info-box {
		margin-bottom: 20px;
	}
}

@media (max-width: 576px) {
	.hero .carousel {
    	background-color: #002f53 !important;
	    height: 160px;
	  }
	  .hero img {
	  	height: 160px;
	  }
	  .why-this-submit h2.fw-bold {
		font-size: 28px;
	}
	.why-this-submit .bg-orange {
		padding: 0px !important;
	}
	.why-this-submit .theme-section {
		margin: 0px !important;
	}
	.why-this-submit .text-orange {
		font-size: 47px;
	}
	.why-this-submit .theme-bg-text {
		font-size: 90px;
	}
	.why-this-submit .col-md-12.text-center.mt-5 {
		margin-bottom: 20px;
	}
	.hp-event-highlights .counter-section {
		margin-top: 0px !important;
	}
	.hp-event-highlights .counter-bg-text {
		font-size: 60px;
		top: 0;
        left: 47%;
        transform: translate(-51%, 0px);
	}
}

@media (max-width: 480px) {
	.why-this-submit {
		padding-top: 1.2rem;
	}
	.why-this-submit .book-a-seat {
		margin: 0px 0px 20px 0px;
	}
	/* .why-this-submit .book-a-seat .btn {
		margin-bottom: 20px;
	}
	.why-this-submit .book-a-seat .btn:last-child {
		margin-bottom: 0px;
	} */
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.why-us .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.why-us .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.why-us .card-item h4 a {
  color: var(--heading-color);
}

.why-us .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.why-us .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.why-us .card-item:hover span,
.why-us .card-item:hover h4 a,
.why-us .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
 /* background-color: var(--surface-color);*/
  margin-top: 0px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
/*  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;*/
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  text-align: center;
  padding: 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  background-color: var(--surface-color);
  color: var(--accent-color);
  margin: 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  font-size: 32px;
  transition: ease-in-out 0.3s;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .service-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 22px;
  transition: 0.3s;
  position: relative;
}

.services .service-item h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .icon {
  box-shadow: 0px 0 40px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member .member-img {
  border-radius: 8px;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  top: -18px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s;
}

.team .team-member .social a i {
  line-height: 0;
  font-size: 16px;
}

.team .team-member .social a:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  background-color: var(--surface-color);
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: var(--surface-color);
  margin: -50px 20px 0 20px;
  position: relative;
  border-radius: 8px;
}

.team .team-member .member-info h4 {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.faq .faq-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.faq .faq-item p {
  font-size: 15px;
}

.faq .faq-item:first-child {
  padding-top: 0;
  margin-top: 0;
}

.faq .faq-item:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  padding: 30px;
  margin-top: 22px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
.btn-gradient {
	background: #6D52A2;
	background: linear-gradient(240deg,rgba(109, 82, 162, 1) 0%, rgba(225, 80, 122, 1) 50%, rgba(243, 130, 58, 1) 100%);
	border: none !important;
    color: #fff !important;
    padding: 8px 20px;
	transition: 0.5s;
  font-size: 18px;
  font-family: var(--nav-font);
  font-weight: 400;
}
.btn-gradient:hover {
	background: #6D52A2;
	background: linear-gradient(90deg,rgba(109, 82, 162, 1) 0%, rgba(225, 80, 122, 1) 50%, rgba(243, 130, 58, 1) 100%);
}

.bg-orange {
	/* background-color: #3c297b;
	background-image: linear-gradient(to right, #3c297b , #5861a4);*/
	background-color: #002f53; /* Orange background for boxes */
	background-image: linear-gradient(to right, #002f53 , #48C1E1);
    border-radius: 0px;
}

.theme-section {
    text-align: left;
    position: relative;
	font-family: "Oswald", sans-serif;
}
.theme-section p {
	font-family: "Roboto", sans-serif;
	
	padding-top:10px;
	
}
.theme-bg-text {
    font-size: 150px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1); /* Light background text */
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 0;
	font-family:"Oswald", sans-serif;
    width: 100%;
}

.theme-content {
    position: relative;
    z-index: 1;
}

.text-orange {
    color: #48C1E1;
}
.book-a-seat {
	margin: 10px 0px 40px 0px;	
}
.book-a-seat h4 {
	margin-top: 20px;
}



.product, .product--green {
 
  width: 100%;
  height: auto;
  border-radius: 0px;
  padding: 2em 1em;
  margin: 1em;
  overflow: hidden;
  position: relative;
  flex: auto;
 font-family: "Oswald", sans-serif;
	
	
}
.product--green {
   background: url("../img/Exhbition.png");
	  background-repeat: no-repeat;
  background-position: center;
    background-size: cover;
	height: 400px;
	width: 98%;
}
	
	.product img, .product--green img{
  max-width: 100%;
  height: auto !important;
  text-align: center; 
}


.product--green .product_inner button {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #FFF;
  border-radius: 3px;
  
  background: none;
  cursor: pointer;
	width:150px;
	padding:5px 5px;
	text-transform:uppercase;
	font-size:16px;
	

  transition: background ease-in 0.25s;
}
.product--green:hover .product_inner button {
/*background:#04E405;
color: #fff;
box-shadow: rgba(4, 288, 5, 0.25) 0px 13px 27px -5px, rgba(4, 288, 5, 0.3) 0px 8px 16px -8px;*/
background:#0DBFF3;
color: #fff;
box-shadow: rgba(13, 191, 243, 0.25) 0px 13px 27px -5px, rgba(13, 191, 243, 0.3) 0px 8px 16px -8px;
}

.product--green .product_inner h4:after {content:''; display:block; width:40px; height:4px; background:#04E405; margin:0; margin-top:10px; border-radius:3px;}







.product, .product--pink {
 
  width: 100%;
  height: auto;
  border-radius: 3px;
  padding: 2em 1em;
  margin: 1em;
  overflow: hidden;
  position: relative;
  flex: auto;
}
.product--pink {
   background: url("../img/Conefrence.png");
	  background-repeat: no-repeat;
  background-position: center;
	background-size: cover;
	height: 400px;
	width: 98%;
}
	
	.product img, .product--pink img{
  max-width: 100%;
  height: auto !important;
  text-align: center; 
}


.product--pink .product_inner button {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #FFF;
  border-radius: 3px;
  
  background: none;
  cursor: pointer;
	width:150px;
	padding:5px 5px;
	text-transform:uppercase;
	font-size:16px;
	

  transition: background ease-in 0.25s;
}
.product--pink:hover .product_inner button {
/*background:#EB0385;
color: #fff;
box-shadow: rgba(235, 3, 133, 0.25) 0px 13px 27px -5px, rgba(235, 3, 133, 0.3) 0px 8px 16px -8px;*/
background:#0DBFF3;
color: #fff;
box-shadow: rgba(13, 191, 243, 0.25) 0px 13px 27px -5px, rgba(13, 191, 243, 0.3) 0px 8px 16px -8px;
	
}

.product--pink .product_inner h4:after {content:''; display:block; width:40px; height:4px; background:#EB0385; margin:0; margin-top:10px; border-radius:3px;}






.product, .product--skyblue {
 
  width: 100%;
  height: auto;
  border-radius: 3px;
  padding: 2em 1em;
  margin: 1em;
  overflow: hidden;
  position: relative;
  flex: auto;
}
.product--skyblue {
    background: url("../img/Special Program.png");
	  background-repeat: no-repeat;
  background-position: center;
    background-size: cover;
	height: 400px;
	width: 98%;
}
	
	.product img, .product--skyblue img{
  max-width: 100%;
  height: auto !important;
  text-align: center; 
}



.product--skyblue .product_inner button {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #FFF;
  border-radius: 3px;
  
  background: none;
  cursor: pointer;
	width:150px;
	padding:5px 5px;
	text-transform:uppercase;
	font-size:16px;
	

  transition: background ease-in 0.25s;
}
.product--skyblue:hover .product_inner button {
  background:#0DBFF3;
  color: #fff;
  box-shadow: rgba(13, 191, 243, 0.25) 0px 13px 27px -5px, rgba(13, 191, 243, 0.3) 0px 8px 16px -8px;
	
}

.product--skyblue .product_inner h4:after {content:''; display:block; width:40px; height:4px; background:#0DBFF3; margin:0; margin-top:10px; border-radius:3px;}




.product, .product--violet {
 
  width: 100%;
  height: auto;
  border-radius: 3px;
  padding: 2em 1em;
  margin: 1em;
  overflow: hidden;
  position: relative;
  flex: auto;
}
.product--violet {
    background: url("../img/Workshop.png");
  background-repeat: no-repeat;
  background-position: center;
    background-size: cover;
	height: 400px;
	width: 98%;
}
	
	.product img, .product--violet img{
  max-width: 100%;
  height: auto !important;
  text-align: center; 
}



.product--violet  .product_inner button {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #FFF;
  border-radius: 3px;
  
  background: none;
  cursor: pointer;
	width:150px;
	padding:5px 5px;
	text-transform:uppercase;
	font-size:16px;
	

  transition: background ease-in 0.25s;
}
.product--violet:hover .product_inner button {
/*background:#9949FF;
color: #fff;
box-shadow: rgba(153, 73, 255, 0.25) 0px 13px 27px -5px, rgba(153, 73, 255, 0.3) 0px 8px 16px -8px;*/
background:#0DBFF3;
color: #fff;
box-shadow: rgba(13, 191, 243, 0.25) 0px 13px 27px -5px, rgba(13, 191, 243, 0.3) 0px 8px 16px -8px;
	
}

.product--violet  .product_inner h4:after {content:''; display:block; width:40px; height:4px; background:#9949FF; margin:0; margin-top:10px; border-radius:3px;}




.product_inner h4 {
	text-align: left;
	color: #FFF;
	font-family:"Oswald", sans-serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 900;
	line-height: 100%; /* 37.2px */
	text-transform: uppercase;
}

@media (min-width: 992px) {
	.product_inner h4 {
		font-size: 26px;
	}
}
.product_inner h4:after {content:''; display:block; width:40px; height:4px; background:#EB0385; margin:0; margin-top:10px; border-radius:3px;}

.product_inner {
  display: block;
  align-items: left;
  flex-flow: column wrap;
	margin-top: 70%;
	
	
	
	
}
.product_inner p {
  color: rgba(255, 255, 255, 0.9);

text-align: left;
font-family:"Roboto", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: none;
	
	
	
	
}
.product_inner button {
  border: 1px solid #FFF;
  border-radius: 3px;
  font-family: "Roboto", sans-serif;

  background: none;
  cursor: pointer;
	width:150px;
	padding:5px 5px;

	color: #FFF;

text-align: center;

font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: uppercase;
	
	
	
	
	

  transition: background ease-in 0.25s;
}
.product_inner button:hover {
  background: white;
  color: #2B2D42;
}

/* Section Title */
h2.fw-bold {
    font-size: 42px;
    color: #333;
	font-family:"Oswald", sans-serif;
	padding-bottom:10px;
	padding-top:5px;
	font-weight:normal;
}

h1.fw-bold{
	font-size: 42px;
    color: #000;
	font-family:"Oswald", sans-serif
}
@media (max-width: 768px) {
	h1.fw-bold, h2.fw-bold {
		font-size: 32px;
	}
}
/* Three Box Styling */
.info-box {
    background: #fff;
    padding: 20px;
   
    text-align: center;

    border-right: 4px solid #002f53; /* Orange top border */
	 border-bottom: 4px solid #002f53; /* Orange top border */
	 background-color: white;
    box-shadow: -6px -6px 10px rgba(54, 65, 145, 0.08);
    transition: 0.3s ease-in-out;
}
.hp-event-highlights {
    background-color: #002f53;
    background-image: linear-gradient(to top, #002f53, #48C1E1);
    color: white;
    padding: 40px 0;
    text-align: center;
    position: relative;
}
.hp-event-highlights h1 {
	margin-bottom: 30px;
}
.hp-event-highlights .stats-item span {
	font-size: 46px;
}
.hp-event-highlights .stats-item img {
	width: 60px;
    margin-bottom: 10px;
    filter: invert(100%) sepia(82%) saturate(0%) hue-rotate(114deg) brightness(207%) contrast(201%);
}
.hp-event-highlights .stats-item p {
	font-size: 32px;
}
.info-box:hover {
    transform: translateY(-5px);
}


.partnership-categories-section {
	background-color: var(--bs-gray-100);
}

.vertical-tabs {
	display: flex;
	align-items: start;
}
.vertical-tabs .nav-pills {
	flex-direction: column;
	align-items: end;
	border-right: none;
}

.vertical-tabs .nav-pills .nav-item button.active {
	background-color: #48C1E1;
  	/* color: #002f53; */
  	color: #fff;
}
.vertical-tabs .nav-pills .nav-item button.active::after {
  content: "";
  border-right: 4px solid #48C1E1;
  height: 100%;
  position: absolute;
  right: -1px;
  top: 0;
  border-radius: 5px 0 0 5px;
}
.vertical-tabs .nav-pills .nav-item .nav-link {
	background-color: #fff;
	color: #555;
	text-align: left;
	margin-bottom: 20px;
	border-radius: 0px;
	width: 313px;
	min-height: 63px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.vertical-tabs .tab-content {
	background-color: #fff;
	padding: 10px 20px 20px 20px;
}


@media (max-width: 992px) {
	.vertical-tabs {
		display: flex;
		align-items: start;
		flex-direction: column;
		overflow: hidden;
	}
	.vertical-tabs .nav-pills {
		flex-direction: row;
		align-items: start;
		flex-wrap: nowrap;
		border-right: none;
		overflow-y: hidden;
        overflow-x: scroll;
		width: 100%;
	}
	.vertical-tabs .nav-pills .nav-item {
		white-space: nowrap;
	}
	.vertical-tabs .nav-pills .nav-item .nav-link {
		margin-bottom: 0px;
		width: auto;
	}
	.vertical-tabs .nav-pills .nav-item button.active::after {
		border-right: none;
		border-bottom: 4px solid #48C1E1;
		bottom: 0;
	    width: 100%;
	    left: 0;
	}
	.vertical-tabs .tab-content {
		padding: 20px;
		width: 100% !important;
	}
			
}



@media (max-width: 992px) {
	.hp-event-highlights .stats-item img {
		width: 50px;
	}
}
@media (max-width: 768px) {
	.hp-event-highlights .stats-item img {
		width: 45px;
	}
}
/* Text Colors */
.text-orange {
    color: #48C1E1;
    font-weight: bold;
	font-size: 100px;
	font-family: "Oswald", sans-serif;
}

/* Text Colors */
.text-blue {
    color: #002f53;
    font-weight: bold;
	font-family:"Oswald", sans-serif;
	font-size:25px;
}
/* Counter Section */
.counter-section {
    position: relative;
    text-align: center;
    /*margin-top: 50px;*/
}
.kbox p{
	font-family:"Roboto", sans-serif;
	color:#4d4d4d;
	font-size:16px;
	line-height:140%;
}
.counter-bg-text {
    font-size: 80px;
    font-weight: 800;
    color: rgba(231, 111, 81, 0.1); /* Light orange behind counters */
    position: absolute;
    top:25px;
    left: 30%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 0;
}

.counter {
    font-size: 40px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .counter-bg-text {
        font-size: 60px;
        top: -30px;
    }
}

@media (max-width: 480px) {
    .counter-bg-text {
        font-size: 40px;
        top: -20px;
    }
}
  /* Banner Section */
        .banner-section {
                background-color: #002f53;
background-image: linear-gradient(to top, #002f53, #48C1E1);
            background-image: url("../img/sport-background-n.png"); /* Add your background image */
            background-size: cover;
            background-position: center;
            color: white;
            padding: 30px 0;
            text-align: left;
        }

        .banner-section h2 {
            font-size: 48px;
           font-family:"Oswald", sans-serif; 
        }

        .banner-section p {
        
            font-family:"Roboto", sans-serif;
        }

        .banner-section p.fw-semibold {
            
            font-weight: 600;
			font-family: "Oswald", sans-serif;
        }

        /* Button Styling */
        .btn-light {
            background-color: #fff;
            color: #002f53;
            border-radius: 0px;
            padding:12px 16px;
            font-size: 14px;
       		font-weight:600;
            text-transform: uppercase;
            transition: 0.3s;
            border: none;
		    border-radius: 6px;
        }

        .btn-light:hover {
            background-color: #48C1E1;
            color: #fff;
        }


@media (max-width: 768px) {
	.banner-section {
		padding: 0px;
	}
	.banner-section h2 {
		font-size: 32px;
	}
}


.our-speakers-section {
	background-color: #002f53;
	background-image: linear-gradient(to top, #002f53, #48C1E1);
	color: #fff;
	padding: 30px 0;
	text-align: center;
	padding: 3rem 0px;
}
.our-speakers-section h2 {
	font-size: 42px;
    font-weight: bold;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.our-speakers-section #exampleSlider .MS-content .item .item-img {
	box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.04);
	position: relative;
}
.our-speakers-section #exampleSlider .MS-content .item .item-img .content {
	background: #fff;
	padding: 2px 8px 8px 8px;
    width: 100%;
    height: 87px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-speakers-section #exampleSlider .MS-content .item .item-img .content h4 {
	color: #000;
	margin-bottom: 4px;
}
.our-speakers-section #exampleSlider .MS-content .item .item-img .content p {
	color: #5c5e64;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* number of lines to show */
	        line-clamp: 2;
	-webkit-box-orient: vertical;
}
.our-speakers-section #exampleSlider .MS-content .item:hover .item-img .content {
	background: #48C1E1;
}
.our-speakers-section #exampleSlider .MS-content .item .item-img img {
	border-radius: 0px;
}
.our-speakers-section #exampleSlider .MS-content .item p .spk-heading {
	font-size: 20px;
	margin-top: 20px;
}
/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
	.our-speakers-section {
		padding: 2rem 0px;
	}
}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
	.our-speakers-section {
		padding: 1rem 0px;
	}
	.our-speakers-section #exampleSlider .MS-content .item .item-img {
		width: 90%;
	    margin: 0 auto;
	}
	.our-speakers-section h2 {
		font-size: 32px;
	}
	.our-speakers-section #exampleSlider .MS-content .item p .spk-heading {
	    font-size: 18px;
    	margin-top: 10px;
	}
}
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
	.our-speakers-section #exampleSlider .MS-content .item .item-img .content p {
		-webkit-line-clamp: 1; /* number of lines to show */
	        line-clamp: 1;
	}
}

/*speakers 1*/
.speakers-section {
  text-align: center;
	background-color: #002f53;
background-image: linear-gradient(to top, #002f53, #48C1E1);
  padding: 30px 0;
  color: white;
}

.speakers-section h2 {
  color: #fff;
  text-align: center;
	  font-family: "Poppins", serif;
  font-size: 43px;
  font-style: normal;
  font-weight: 700;
  line-height: 40.259px; /* 93.627% */
  text-transform: uppercase;
}


#exampleSlider {
  position: relative;
	height:auto;
}

.spk-heading {
  display: block;
  word-wrap: break-word;
}

#exampleSlider .MS-content .item p {
  text-align: center; /* Center the text */
  line-height: normal; /* Adjust line height for better readability */
  vertical-align: middle; /* Vertically align text */
  margin: 5px 0; /* Adjust margin */
  padding: 10px 5px; /* Adjust padding inside the paragraph */
  color: #fff; /* Text color */
	  font-family: "Poppins", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  /*word-break: break-word; *//* Break long words */
}

@media (max-width: 767px) {
  #exampleSlider {
  }
}
#exampleSlider .MS-content {
  margin: 15px 1%;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #exampleSlider .MS-content {
    margin: 0;
  }
}

#exampleSlider .MS-content .item {
  display: inline-block;
  height: 100%; /* Ensure the item takes up full height */
  white-space: normal; /* Allow text to wrap */
  overflow: hidden; /* Hide overflow content */
  position: relative;
  vertical-align: top;
  border-right: none;
  width: 20%; /* Set a fixed width */
  margin: 0px 10px 0px -10px;
  padding: 10px;
  box-sizing: border-box;
}

#exampleSlider .MS-content .item img{
border:#ffffff 4px solid;
	border-radius:50%;
	
}


@media (max-width: 1200px) {
  #exampleSlider .MS-content .item {
    width: 25%;
  }
}
@media (max-width: 992px) {
  #exampleSlider .MS-content .item {
    width: 33.3333%;
  }
}
@media (max-width: 767px) {
  #exampleSlider .MS-content .item {
    width: 50%;
  }
}
@media (max-width: 576px) {
  #exampleSlider .MS-content .item {
    width: 50%;
  }
  .our-speakers-section #exampleSlider .MS-content .item .item-img .content h4 {
  	margin-bottom: 0px;
  }
  .our-speakers-section #exampleSlider .MS-content .item .item-img .content p {
  	margin-top: 0px;
  }
}
#exampleSlider .MS-content .item p {
  text-align: center;
  line-height: normal;
  vertical-align: middle;
  margin: 0;
  padding: 2px 0;
  color: #fff;

 	  font-family: "Poppins", serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
 /* word-break: break-all;*/
}
#exampleSlider .MS-controls button {
  position: absolute;
  border: none;
  background: transparent;
  font-size: 30px;
  outline: 0;
  top: 40%;
}
@media (max-width: 767px) {
  #exampleSlider .MS-controls button {
    display: none;
  }
}
#exampleSlider .MS-controls button:hover {
  cursor: pointer;
}
#exampleSlider .MS-controls .MS-left {
  left: 5%;

  display: flex;
  width: 70px;
  height: 70px;
  padding: 16.355px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6.542px;
  flex-shrink: 0;
  border-radius: 35px;
  color: #fff;
  background:#272e5a;
	opacity: 0.5;
 
}
@media (max-width: 992px) {
  #exampleSlider .MS-controls .MS-left {
    left: -2px;
  }
}
#exampleSlider .MS-controls .MS-right {
  right: 5%;

  display: flex;
  width: 70px;
  height: 70px;
  padding: 16.355px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6.542px;
  flex-shrink: 0;
  color: #fff;
  border-radius: 35px;
  background: #272e5a;
	opacity: 0.5;
}
@media (max-width: 992px) {
  #exampleSlider .MS-controls .MS-right {
    right: -2px;
  }
}

.spk-heading {
  color: #fff;
  text-align: center;
	/* font-family: "Poppins", serif; */
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

#exampleSlider.bi {
  color: #ffffff;
  font-size: 30px;
}

@media only screen and (max-width: 600px) {
  #exampleSlider .MS-content .item p {
    text-align: center; /* Center the text */
    line-height: normal; /* Adjust line height for better readability */
    vertical-align: middle; /* Vertically align text */
    margin: 5px 0; /* Adjust margin */
    padding: 5px 2px; /* Adjust padding inside the paragraph */
    color: #fff; /* Text color */
  	  font-family: "Poppins", serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
   /* word-break: break-word;*/ /* Break long words */
  }

  .spk-heading {
    color: #fff;
    text-align: center;
  	  font-family: "Poppins", serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .speakers-section h2 {
    color: #fff;
    text-align: center;
	  font-family: "Poppins", serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 40.259px; /* 93.627% */
    text-transform: uppercase;
  }
}


.blink-soft {
	color: #f12711 !important;
	text-align: center;
	padding: 10px;
	font-weight: 800;
	font-size: 24px;
	border-radius: 6px;
	animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.ticket-btn {
    background-color: #00001d;
    color: #fff;
}

.price-card:hover .ticket-btn {
	background-color: #48C1E1;
    color: #fff;
}

.ticket-btn:hover {
	background-color: #48C1E1;
    color: #fff;
}

 #exampleSlider .MS-content .item img {

/*filter: grayscale(100%);*/ /* Makes the image black and white */
	   transition: background-color 0.3s ease-in-out;
	 cursor:pointer;
}

 #exampleSlider .MS-content .item:hover img {

filter: grayscale(0%); 
}
	   
/*speakers 1 end*/

     .pricing-container {
            text-align: center;
            padding: 50px 0;
        }
        .pricing-card {
            /*background-color: #0c1b2d;*/
            background-color: #002f53;
            color: white;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }
        .pricing-card h2 {
            font-size: 40px;
            font-weight: bold;
            color: #32b44a;
			font-family:"Oswald", sans-serif;
        }
        .pricing-card h5 {
            font-size: 16px;
            font-weight: bold;
			font-family:"Oswald", sans-serif;
        }
        .pricing-card p {
            font-size: 14px;
            color: #ccc;
        }
        .pricing-card ul {
            list-style: none;
            padding: 0;
        }
        .pricing-card ul li {
            padding: 8px 0;
            font-size: 14px;
			
        }
        .pricing-card ul li i {
            color: #ff6600;
            margin-right: 10px;
        }
        .register-btn {
            background-color: #32b44a;
            color: white;
            padding: 10px;
            border: none;
            width: 100%;
            border-radius: 5px;
            font-weight: bold;
            text-transform: uppercase;
            transition: 0.3s;
        }
        .register-btn:hover {
            background-color: #b4d238;
        }




   .sponsors-container {
            text-align: center;
            padding: 50px 0;
        }
        .sponsors-title {
            font-size: 42px;
            color: #000;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 30px;
        }
        .sponsors-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            justify-items: center;
        }
        .sponsor-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .sponsor-logo {
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        @media (max-width: 992px) {
            .sponsors-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
        	.sponsors-container {
        		padding: 30px 0px;
        	}
            .sponsor-logo {
                width: 120px;
                height: 70px;
            }
            .sponsors-title {
            	font-size: 32px;	
            }
        }



   /* EFS Section */
     /* EFS Section */
        .efs {
    /*background-color: #3c297b;
    background-image: linear-gradient(to right, #3c297b, #5861a4);*/
        background-color: #002f53;
    background-image: linear-gradient(to right, #002f53, #48C1E1);
    
            color: white;
            padding: 40px 12px;
            text-align: center;
            position: relative;
        }

        .efs-content {
            
            margin: 0 auto;
        }

        .efs h2 {
            font-size: 42px;
           
            text-transform: uppercase;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
			font-family:"Oswald", sans-serif;
        }

        /* Thinner & Shorter Line Below Heading */
       
        .efs p {
         	font-family: "Roboto", sans-serif;
           
            line-height: 1.6;
            margin-top: 15px;
        }


.bg-orange h4{
	font-size: 20px;
}


 .hero2 .video-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .hero2 video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.inner-banner{
	height:300px;
}  

.inner-text p{
	color:#555;
	line-height:180%;
	font-family:"Roboto", sans-serif; 
	
}

.inner-text h2 {
	color:#000;
	font-size:42px;
	font-family:"Oswald", sans-serif; 
}

.contact-us h4 {
	margin-bottom: 20px;
}
.contact-us h5 {
	color: #002f53;
	margin-bottom: 20px;
}

.ui-pt-5 {
    padding-top: 48px;
}


/* Style for all cards */
.ui-card {
  border: none;
  border-radius: 15px;
  background: #ffffff;
  position: relative;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%; 
  height: 170px; 
  display: flex;
  flex-direction: column;
  align-items: center; 
  padding: 20px;
  margin-bottom: 20px; 
  transition: all 0.3s ease; 
}

/* Card content styling */
.ui-card h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.ui-card p {
  font-size: 16px;
  margin: 0;
}

/* Hover effect (optional for better UX) */
.ui-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .ui-card {
      height: auto; /* Let cards expand naturally if needed */
      padding: 20px;
  }
}

/* Even tighter for very small devices */
@media (max-width: 480px) {
  .ui-card {
      padding: 15px;
  }
}


/* register btn */

.btn-gold {
  background-color: #185a9d;
  border-color: #185a9d;
  color:#fff;
  transform: scale(1.05);
}

.btn-gold:hover {
  background-color: #48C1E1;
  border-color: #48C1E1;
  color: #185a9d;
  transition: background-color 0.3s, transform 0.3s;
}

.be-a-sponsor h2 span {
	font-size: 36px;
	font-weight: 300;
}





.conference-sports-innovation .row:nth-child(2) {
	margin-top: 20px;
}
.conference-sports-innovation h2 {
	font-size: 36px;
}
.conference-sports-innovation h2 span {
	font-size: 30px;
}
.dash-title {
	position: relative;
	text-align: center;
}
.dash-title span {
	background-color: #fff;
	padding: 0 20px;
	position: relative;
	z-index: 1
}
.dash-title:after {
	content: "";
	position: absolute;
	top: 58%;
	left: 0;
	background-color: #000;
	height: 1px;
	width: 100%;
	transform: translate(0px, -58%);
}
.conference-sports-innovation .header-row {
	background-color: #002f53;
	padding: 33px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.conference-sports-innovation .header-row h3 {
	color: #fff;
	margin-bottom: 0px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.conference-sports-innovation .header-row img  {
	margin-right: 16px;
	width: 50px;
	filter: invert(100%) sepia(7%) saturate(1196%) hue-rotate(162deg) brightness(109%) contrast(105%);
}
.conference-sports-innovation .body-row {
	padding: 20px 0px;
}
.conference-sports-innovation .body-row ul {
	padding-left: 17px;
}
.conference-sports-innovation .body-row ul li::marker {
	color: #48C1E1;
}
.conference-sports-innovation .body-row ul li {
	margin-bottom: 10px;
	color: #002f53;
	
}

.be-a-sponsor .options h3 {
	font-weight: 300;
}
.be-a-sponsor .options .list li {
	background-color: #002f53;
	border: 1px solid #002f53;
	color: #fff;
	padding: 12px;
	margin-bottom: 12px;
	margin-right: 12px;
	border-radius: 12px;
	display: inline-flex;
}
.attend-page ul li {
	margin-bottom: 12px;
}
#why-attend-SITS ul li strong {
	color: #002f53;
	display: block;
}
.attend-page .key-features h4 {
	margin-bottom: 16px;
}
.attend-page .key-features h2, .attend-page .key-features h4, .attend-page .key-features h2, .attend-page .key-features ul li {
	color: #fff;
}
.attend-page .key-features ul {
	margin-bottom: 26px;
}
.attend-page .key-features ul li {
	position: relative;
	padding-left: 23px;
}
.attend-page .key-features ul li:after {
	content: ">";
  	position: absolute;
    top: 2px;
    left: 0;
    font-size: 23px;
    line-height: 20px;
	color: #fff;
}
.who-should-attend .card {
	border: 1px solid #002f53;
	margin-bottom: 20px;
	align-items: flex-start;
}
.who-should-attend .card .card-body {
	padding: 0px;		
}
.who-should-attend .card h5 {
	color: #002f53;
}
.who-should-attend .card p {
	margin-bottom: 0px;
}
.sustainability-in-sports {
	/* background-color: #48C1E1; #00cec8 */
	background-color: #7fe0f1;
	padding: 30px 0px;
}
.sustainability-in-sports h2, .sustainability-in-sports p {
	color: #002f53;
}

.scroll-to-sec {
	scroll-margin-top: 140px;
  	overflow: clip;
}
.partnership-categories-description {
	list-style: none;
	padding-left: 0px;
}
.partnership-categories-description li {
	color: #555;
	padding-left: 21px;
	position: relative;
	margin-bottom: 6px;
}
.partnership-categories-description li:after {
	content: " ";
	position: absolute;
	left: 0;
	top: 6px;
	width: 0; 
  	height: 0; 
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 11px solid #002f53;
}

@media (max-width: 1299.98px) {
	.scroll-to-sec {
		scroll-margin-top: 130px;
	}
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
	.ui-pt-5 {
	    padding-top: 32px;
	}
	.inner-text h2 {
		font-size: 34px;
	}
	.inner-text h2 span {
		font-size: 34px !important;
	}
	.header .logo img {
	    max-height: 58px;
	    max-width: 78%;
	}
	.scroll-to-sec {
		scroll-margin-top: 80px;
	}
	section, .section {
		scroll-margin-top: 60px;
	}
}

.outline-button {
	border: 1px solid #002f53;
    color: #002f53;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 16px;
    transition: background ease-in 0.25s;
}
.outline-button:hover {
	background-color: #48C1E1;
	border-color: #48C1E1;
    color: #fff;
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
	.ui-pt-5 {
	    padding-top: 20px;
	}
	.inner-text h2 {
		font-size: 26px;
	}
	.inner-text h2 span {
		font-size: 26px !important;
	}
	.inner-banner {
	    height: 250px;
	}
	.dash-title {
		text-align: left;
	}
	.dash-title span {
		padding: 0px 10px 0px 0px;
	}
	.conference-sports-innovation {
		padding-top: 30px !important;
	}
	.conference-sports-innovation .row:nth-child(2) {
		margin-top: 10px;
	}
	.conference-sports-innovation h2 span {
		font-size: 26px;
	}
	.conference-sports-innovation .header-row img {
		width: 40px;
	}
	.conference-sports-innovation .body-row {
		padding: 20px 0px 0px 0px;
	}
	.conference-sports-innovation .body-row ul {
		margin-bottom: 0px;
	}
}

.delegate-tariff-section {
	background-color: #eee;
	padding: 3rem 0px;
}
.delegate-tariff-section .pills-tabContent-top {
	margin-top: 24px;
}
.delegate-tariff-section marquee {
	margin-top: 16px;
	color: #f12711;
}
.price-card .line-through {
	color: red;
	margin-right: 10px;
	text-decoration: line-through;
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
	.footer .copyright {
		margin-top: 20px;
	}
	.book-a-seat {
		margin: 0px 0px 30px 0px;
	}
	.book-a-seat h4 {
		margin-top: 10px;
	}
	.book-a-seat .bg-btn1, .book-a-seat .bg-btn2 {
	    padding: 12px 16px;
	    width: 180px;
	    display: block;
		margin: 0 auto;
	}
	.what-happening-section .pe-4 {
		padding-right: 0px !important;
	}
	.what-happening-section .product-col {
	    margin: 16px auto 0px auto;
    	width: 96%;
	}
	.delegate-tariff-section .pills-tabContent-top {
		margin-top: 8px;
	}
}
/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	.blink-soft {
	    padding: 0px;
	    font-weight: 600;
	    font-size: 16px;
		margin: 16px 0px;
	}
	.sponsors-container .sponsors-title {
		font-size: 28px;
        margin-bottom: 16px;
	}
	.footer .footer-top {
		padding-top: 30px;
	}
}
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
	
}

 .pricing-cards-section {
	padding: 40px 0px;
}
.price-card {
	background-color: #f5f5f5;
	position: relative;
	padding: 0px;
	text-align: center;
	border-radius: 12px;
	border: none;
}
.price-card .card-body {
	padding: 0px;
	position: relative;
} 
 /*.price-card .card-body .head {
	/* background-image: linear-gradient(to top, #002f53, #48C1E1);
	background-color: transparent; */
	
/*	background-image: url("../img/wave-haikei.svg"); */
/*	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	width: 100%;
	
	position: relative;
	padding: 16px;
	
}
.price-card .card-body .head:before1 {
	content:"";
/*	background-image: url("../img/wave-haikei (2).svg"); */
/*	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	position: absolute;
	left: 0;
	top: 0;
	height: 45vh;
	width: 100%;
	z-index: -1;
} */

.price-card .card-body .head .title {
	margin-bottom: 20px;
	font-weight: 600;
} 

.price-card .card-body .content .price {
    font-size: 34px;
	font-weight: 800;
	display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.price-card .card-body .content .price .currency {
    font-size: 22px;
    font-weight: 600;
    margin-right: 6px;
    position: relative;
    top: 5px;
}
.price-card .card-body .content {
	padding: 16px;
	position: relative;
	z-index: 2;
}


 /* Section spacing */
 .pricing-cards-section {
  padding: 60px 0;
  background: #f9f9f9;
}


.price-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
}


.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


.head {
  padding: 40px 10px;
  background: linear-gradient(135deg, #f5af19, #f12711);

  color: #fff;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}




.head-gold {
  background: linear-gradient(135deg, #f5af19, #f12711);
}

.head-silver {
  background: linear-gradient(135deg, #bdc3c7, #2c3e50);
}

.head-bronze {
  background: linear-gradient(135deg, #cd7f32, #8a4b08);
}

.head-visitor {
  background: linear-gradient(135deg,rgb(75, 205, 238), #185a9d);
}


.head h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}


.price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}


.content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content p {
  margin: 5px 0;
  color: #555;
}

.pricing-cards-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.pricing-cards-section .blink-soft {
	margin-bottom: 40px;
}


@media (max-width: 767px) {
  .head h2 {
    font-size: 1.25rem;
  }

  .price {
    font-size: 1.5rem;
  }

  .pricing-cards-section h2 {
    font-size: 1.5rem;
  }
}

.custom-btn {
  background-color: #48C1E1; 
  color: white;
  padding: 5px 30px;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-btn:hover {
  background-color: #fff; 
  color: #48C1E1;
  transform: scale(1.05);
}

.bg-btn1, .bg-btn2 {
	background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 6px;
    padding: 12px 16px;
    transition: 0.3s;
	width: 260px;
	overflow: hidden;
	text-indent: -900px;
}

.bg-btn1 {
    background-image: url("../img/book-your-seat.png");
}
.bg-btn2 {
    background-image: url("../img/Be-a-sponsor.png");
}



.athlete-heading {
  color: #002f53;
  margin-bottom: 20px; 
  display: block; 
  font-size: 18px;
}

.athlete-heading1 {
    color: #002f53;
}

.key-takeaways {
	background-color: #f1f4fa;
}
.key-takeaways p {
	display: flex;
}
.key-takeaways p i {
	margin-right: 10px;
	color: #002f53;
}

.dropdown-scroll {
	overflow: hidden;
	overflow-y: auto;
	max-height: calc(100vh - 260px);
}


/* ==== Thin vertical scrollbar css */

.thin-scroll::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}
.thin-scroll::-webkit-scrollbar {
	width: 6px;
	background-color: #F5F5F5;
}
.thin-scroll::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}

.event-venue-section {
	background-image: url("../img/event-venue-bg.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	background-attachment: fixed;
	padding: 100px 0px;
	position: relative;
	z-index: 2;
}

.event-venue-section:after {
	content: "";
	background-color: rgb(0, 0, 29, 0.6);
	width: 100%;
    height: 100%;
    left: -40%;
    top: 0px;
    transform: skewX(-20deg);
    position: absolute;
    z-index: -1;
}

.quick-info-bottom {
	padding: 40px 0px;
}
.quick-info-bottom .product-col {
	position: relative;
	z-index: 5;
	margin: 0px;
	display: flex;
    align-items: end;
}
.quick-info-bottom .product-col:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 29, 0.6);
    z-index: 1;
}
.quick-info-bottom .product-col .product_inner {
	position: relative;
	z-index: 5;
	margin: 0px;
}
.quick-info-bottom .visa-app {
	background: url("../img/visa-app.jpg");
	background-position: center;
}
.quick-info-bottom .accommodation {
	background: url("../img/accommodation.jpg");
	background-position: center;
}
.quick-info-bottom .event-location {
	background: url("../img/event-location.jpg");
	background-position: center;
	background-size: cover;
}

.vgr-cards .card {
  display: flex;
  flex-flow: wrap;
  flex: 100%;
}
.vgr-cards .card-img-body {
  flex: 0.5;
  overflow: hidden;
  position: relative;
}
.vgr-cards .card-img {
  width: 100%;
  height: auto;
  /* position: absolute;
  margin-left: 50%;
  transform: translateX(-50%); */
}
.vgr-cards .card-body {
  flex: 2;
  padding: 10px 20px;
}
.vgr-cards .card-body .designation {
	margin-bottom: 10px;
}
.vgr-cards .card-body .card-text {
	color: #000;
}
@media (max-width: 1140px) {
  .vgr-cards .card-img {
    margin: 0;
    transform: none;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 992px) {
	.event-venue-section:after {
		left: -30%;
	}
	.quick-info-bottom .product-col {
		width: 100%;
	}
	.quick-info-bottom .product-col .product_inner {
		
	}
	.quick-info-bottom .product-col .product_inner h4 {
		font-size: 24px;
	}
}
@media (max-width: 768px) {
	.vgr-cards .card-img-body {
		flex: 1;
	}
	.event-venue-section {
		padding: 60px 0px;
	}
	.event-venue-section:after {
		left: -10%;
		transform: skewX(-10deg);
	}
	.quick-info-bottom .product-col {
		margin-bottom: 20px;
	}
}

@media (max-width: 576px) {
	.vgr-cards .card-body {
	    padding: 20px;
		text-align: center;
	  }
	.vgr-cards .card {
	    display: block;
	  }
	.vgr-cards .card-img-body {
		width: 100%;
		margin-bottom: 0px;
	}
  	.vgr-cards .card-img {
		height: 200px;
		object-fit: contain;
	}
	.event-venue-section {
		padding: 30px 5px;
	}
	.event-venue-section:after {
	    transform: skewX(0deg);
		left: 0%;
	}
	.quick-info-bottom {
		padding: 20px 0px;
	}
	.quick-info-bottom .product-col {
		height: 360px;
	}
}








