/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: "RT Basis";
  src: url("fonts/RT_Basis-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RT Basis";
  src: url("fonts/RT_Basis-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RT Basis";
  src: url("fonts/RT_Basis-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root{
  --green: #4caf50;
}

body {
  /*font-family: Arial, Helvetica, sans-serif;*/
  color: #444444;
  font-family: "RT Basis", sans-serif;
  font-weight: 400; /* Regular */
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: #f1775d;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-family: "Arial", Helvetica, sans-serif;*/
  font-family: "RT Basis", sans-serif;
}

/*--------------------------------------------------------------
# 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 var(--green);
  border-top-color: white;
  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: #003d7c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #003d7c;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #003d7c;
  transition: all 0.5s;
  z-index: 9999;
  /*padding: 20px 0; */
}

#header.header-scrolled {
  /* padding: 12px 0; */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# 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: 10px 0 10px 25px;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  /*font-weight: bold;*/
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #89c23f;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--green);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--green);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.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: var(--green);
}

.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%;
  }
}

@media (max-width: 1199.98px){
    .navbar ul {
        display: none;
      }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}


.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--green);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .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 {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .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 {
  color: var(--green);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.logo1 {
    margin: 4px 0;
}
@media (max-width: 1199.98px) {
  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 991.98px){
  .logo1 img{
    height: 80px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(4, 12, 21, 0.5);
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}

@media (min-width: 1200px) {
  #hero p {
    width: 50%;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--green);
}

#hero .btn-get-started {
  /*font-family: "Arial", sans-serif;*/
  font-family: "RT Basis", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: var(--green);
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: var(--green);
}

.hero-section {
  padding: 109px 0px 80px;
  margin-bottom: -120px;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
  .hero-section {
    padding: 88px 0px 80px;
  }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f6f9fd;
}

.section-title h2 {
  color: #003366;
}

.section-title .bar {
  width: 60px;
  height: 3px;
  background-color: #4caf50;
}

@media (max-width: 575.98px){
  section{
    padding: 40px 0;
  }
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-section {
  background: #003c7b;
  padding-top: 30px;
}

@media (max-width: 575.98px){
  .about-section{
    padding-top: 50px;
  }
}

/* -----------------------------------------------------------
Partners Section
------------------------------------------------------------- */
/*SPONSORS*/
:root {
  --forest: #0d3320;
  --leaf: #2d8a50;
  --lime: #5cbf72;
  --gold: #c8860c;
  --gold-light: #f0c040;
  --ocean: #124a70;
  --sky: #3ea8dc;
  --cream: #fafcf8;
  --divider: #dde8d8;
  --text: #0f2018;
  --muted: #6b8070;
}

/* GROUP HEADER */
.group-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}
.gl-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.gl-rule {
  flex: 1;
  height: 1px;
  background: var(--divider);
}

/* PARTNER CARD */
.pcard {
  background: #fff;
  border: 1.5px solid var(--divider);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0px 24px 20px;
  gap: 0;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 0.9, 0.36, 1),
    box-shadow 0.4s,
    border-color 0.3s;
}
.pcard:hover {
  transform: translateY(-10px) scale(1.015);
}
.pcard:hover.cv-gold {
  box-shadow: 0 24px 60px rgba(200, 134, 12, 0.2);
  border-color: rgba(200, 134, 12, 0.5);
}
.pcard:hover.cv-green {
  box-shadow: 0 24px 60px rgba(45, 138, 80, 0.18);
  border-color: rgba(45, 138, 80, 0.5);
}
.pcard:hover.cv-red {
  box-shadow: 0 24px 60px rgba(160, 48, 32, 0.18);
  border-color: rgba(160, 48, 32, 0.5);
}
.pcard:hover.cv-teal {
  box-shadow: 0 24px 60px rgba(26, 128, 128, 0.18);
  border-color: rgba(26, 128, 128, 0.5);
}
.pcard:hover.cv-indigo {
  box-shadow: 0 24px 60px rgba(45, 58, 140, 0.15);
  border-color: rgba(45, 58, 140, 0.5);
}
.pcard:hover.cv-slate {
  box-shadow: 0 24px 60px rgba(71, 85, 105, 0.15);
  border-color: rgba(71, 85, 105, 0.5);
}

/* top accent */
.abar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 22px 22px 0 0;
}
.ab-gold {
  background: linear-gradient(90deg, #c8860c, #f0c040);
}
.ab-green {
  background: linear-gradient(90deg, #1a6b3a, #5cbf72);
}
.ab-red {
  background: linear-gradient(90deg, #a03020, #d05040);
}
.ab-teal {
  background: linear-gradient(90deg, #1a8080, #40c0c0);
}
.ab-indigo {
  background: linear-gradient(90deg, #2d3a8c, #5568d0);
}
.ab-slate {
  background: linear-gradient(90deg, #475569, #94a3b8);
}

/* logo area */
.logo-zone {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

/* role badge */
.rbadge {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 40px;
  border: 1px solid;
  white-space: nowrap;
}
.rb-gold {
  color: #b07800;
  border-color: rgba(200, 134, 12, 0.35);
  background: rgba(200, 134, 12, 0.07);
}
.rb-green {
  color: #1a6b3a;
  border-color: rgba(45, 138, 80, 0.35);
  background: rgba(45, 138, 80, 0.07);
}
.rb-red {
  color: #8b2010;
  border-color: rgba(160, 48, 32, 0.35);
  background: rgba(160, 48, 32, 0.07);
}
.rb-teal {
  color: #116060;
  border-color: rgba(26, 128, 128, 0.35);
  background: rgba(26, 128, 128, 0.07);
}
.rb-indigo {
  color: #2d3a8c;
  border-color: rgba(45, 58, 140, 0.35);
  background: rgba(45, 58, 140, 0.07);
}
.rb-slate {
  color: #475569;
  border-color: rgba(71, 85, 105, 0.35);
  background: rgba(71, 85, 105, 0.07);
}

.tier-block + .tier-block {
  margin-top: 72px;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.reveal:nth-child(5) {
  transition-delay: 0.32s;
}

/* responsive 5-col row for partners */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.pcol-lg {
  flex: 0 0 auto;
  width: 200px;
}
@media (max-width: 900px) {
  .pcol-lg {
    width: calc(33% - 14px);
  }
}
@media (max-width: 600px) {
  .pcol-lg {
    width: calc(50% - 10px);
  }
  .cta-band {
    padding: 44px 24px;
  }
  .tier-block + .tier-block{
    margin-top: 45px;
  }
  .rbadge{
    padding: 5px 6px;
  }
  .pcard{
    padding: 0px 10px 18px;
  }
}

/* ------------------------------------------------------------
AGENDA
------------------------------------------------------------- */
.text-green {
  color: #4caf50;
}
.text-blue {
  color: #004a99;
}
.section-bg-light-brown {
  background-color: #f4f2ee;
}
.bg-light-green {
  background-color: #e8f5e9;
}
.bg-light-yellow {
  background-color: #fff3e0;
}
.success-bar {
  background-color: #f0f7f0;
  border-color: #4caf50 !important;
}
.agenda-section .col-lg-6:first-child .card-header {
  background-color: #004a99;
}
.agenda-section .col-lg-6:last-child .card-header {
  background-color: #4caf50;
}
.time-slot {
  min-width: 100px;
  color: #004a99;
  font-size: 0.9rem;
}

.agenda-list .list-group-item {
  transition: background-color 0.2s;
}

.agenda-list .list-group-item:hover {
  background-color: #f1f1f1 !important;
}

.organising-details .title {
  letter-spacing: 1px;
  font-size: 14.5px;
}

.taj-details {
  background: linear-gradient(135deg, #004a99 0%, #003366 100%);
}
.taj-details .sub-title{
    letter-spacing: 2px;
    font-size: 1rem;
}
.hover-blue:hover {
  color: #004a99 !important;
  text-decoration: underline !important;
}

.rounded-4 {
  border-radius: 1.5rem !important;
}

.transition-hover {
  transition: transform 0.3s ease;
}

.transition-hover:hover {
  transform: translateY(-5px);
}

/* ----------------------------------------------------------
Speakers
------------------------------------------------------------ */
.bottom-curve {
  position: absolute;
  bottom: 0;
  height: 110px;
  width: 100%;
}
.speaker-list .speaker-name {
  color: #2c3e50;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.speaker-list p {
  line-height: 1.4;
  border-left: 2px solid #e0e0e0;
  padding-left: 12px;
  margin-top: 5px;
}

.speaker-list div:hover h5 {
  color: #4caf50;
}

.speaker-list div:hover p {
  border-left-color: #4caf50;
}

@media (max-width: 575.98px){
  .bottom-curve{
    object-fit: cover;
    height: 60px;
  }
}

/* ----------------------------------------------------------
Sponsorship
-------------------------------------------------------------*/
.bg-light-blue {
  background-color: #f8f9fa;
}
.text-primary {
  color: #003d7d !important;
}

.sponsor-section tbody tr:nth-child(odd) {
  background-color: #e6f1fa;
}
.sponsor-section .circle-icon {
  /*font-size: 22px;*/
  background-color: #8fc4ea;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
}

/* common css for table */
thead tr {
  background-color: #003d7d;
  color: #8fc4ea;
}
td,
th {
  border: 1px solid #8fc4ea;
  text-align: left;
  padding: 4px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  vertical-align: middle;
}
.table > :not(caption) > * > * {
  padding: 15px;
}
.min-w-130{
    min-width: 130px;
}
/* -----------------------------------------------------------
Registration
------------------------------------------------------------- */
.gms-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.btn-text {
  margin-right: 12px;
  letter-spacing: 0.5px;
}

.btn-intl {
  color: #004a99;
  border: 2px solid #004a99;
  background-color: transparent;
}

.btn-natl {
  color: #4caf50;
  border: 2px solid #4caf50;
  background-color: transparent;
}

.gms-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-intl::before {
  background-color: #004a99;
}

.btn-natl::before {
  background-color: #4caf50;
}

.gms-btn:hover {
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gms-btn:hover::before {
  width: 100%;
}

.gms-btn:active {
  transform: translateY(-1px);
}

.light-pill {
  background-color: #e2dfd8;
  color: #333;
}
.transition-hover {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid transparent;
}

.transition-hover:hover {
  transform: translateY(-5px);
  background-color: #ffffff !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: #e2dfd8;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  min-height: 45px;
}

.facts-bar{
  border-color: #004a99 !important; 
  background: #f6f9fd;
}

.transport-details .sub-title{
    font-size: 1rem;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #003d7c;
  padding: 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 35px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #05101e;
  border-top: 3px solid #fd7d00;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  /*font-family: "Arial", sans-serif;*/
  font-family: "RT Basis", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #000080;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: var(--green);
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  /*font-weight: 600;*/
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--green);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--green);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #003d7c;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: var(--green);
}

#footer .copyright {
  border-top: 1px solid #ffffff;
  text-align: center;
  padding: 15px 0;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}
.portfolio-container a {
  color: #000080;
  text-decoration: none;
  font-size: 18px;
}

.portfolio-container a:hover {
  color: var(--green);
  text-decoration: none;
}

.cta-btn1 {
  /*font-family: "Arial", sans-serif;*/
  font-family: "RT Basis", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #89c23f;
  background: #89c23f;
  color: #fff;
}
.why-us .accordion-list1 {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list1 ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list1 li + li {
  margin-top: 15px;
}

.why-us .accordion-list1 li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list1 a {
  display: block;
  position: relative;
  /*font-family: "Arial", sans-serif;*/
  font-family: "RT Basis", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #444444;
  cursor: pointer;
}

.why-us .accordion-list1 span {
  color: var(--green);
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list1 i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list1 p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list1 .icon-show {
  display: none;
}

.why-us .accordion-list1 a.collapsed {
  color: #0b2341;
}

.why-us .accordion-list1 a.collapsed:hover {
  color: var(--green);
}

.why-us .accordion-list1 a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list1 a.collapsed .icon-close {
  display: none;
}

.bg-light {
  background-color: #f8f9fa;
}

.tracking-wider {
  letter-spacing: 0.1rem;
}

.extra-small {
  font-size: 0.65rem;
}

.sponsor-card {
  background: #fff;
  transition: transform 0.3s ease;
}

.sponsor-card:hover {
  transform: translateY(-5px);
  border-color: #4caf50 !important;
}

.main-logo {
  max-height: 90px;
}

.partner-logo {
  max-height: 60px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.mini-logo {
  max-height: 40px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.partner-card:hover .partner-logo,
.partner-item:hover .mini-logo {
  filter: grayscale(0%);
}

.partner-item {
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.partner-item:hover {
  border-color: #004a99;
}

.tracking-widest {
  letter-spacing: 0.15rem;
}

.wave-container svg {
  display: block;
  width: 100%;
  height: auto;
}

.tracking-widest {
  letter-spacing: 0.2rem;
}

.x-small {
  font-size: 0.7rem;
}

.sponsor-logo {
  max-height: 150px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.sponsor-logo-sm {
  max-height: 100px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  opacity: 0.6;
}

.main-org {
  max-height: 300px;
  filter: none;
  opacity: 1;
}

.sponsor-logo:hover,
.sponsor-logo-sm:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

#demo2 img {
  height: 300px;
  object-fit: cover;
}

@media (min-width: 1400px) {
  #registration {
    padding-bottom: 70px !important;
  }
}

.hero-wave-section {
  position: relative;
  /*width:100%;*/
  /*height:340px;*/
  /*overflow:hidden;*/
  /*background:#000;*/
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wave-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35px;
  width: 100%;
  height: 210px;
  pointer-events: none;
}

.wave-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wave-fill {
  transform-origin: center bottom;
  animation: waveFloat 7s ease-in-out infinite alternate;
}

.wave-line-top {
  animation: lineDriftTop 9s ease-in-out infinite alternate;
}

.wave-line-main {
  animation: lineDriftMain 6.5s ease-in-out infinite alternate;
}

.wave-line-inner {
  animation: lineDriftInner 8s ease-in-out infinite alternate;
}

@keyframes waveFloat {
  0% {
    transform: translateY(0px) scaleX(1.01);
  }

  50% {
    transform: translateY(4px) scaleX(1);
  }

  100% {
    transform: translateY(-3px) scaleX(1.02);
  }
}

@keyframes lineDriftTop {
  0% {
    transform: translateX(0px) translateY(0px);
    opacity: 0.72;
  }

  50% {
    transform: translateX(-10px) translateY(3px);
    opacity: 0.95;
  }

  100% {
    transform: translateX(8px) translateY(-2px);
    opacity: 0.8;
  }
}

@keyframes lineDriftMain {
  0% {
    transform: translateX(0px) translateY(0px);
  }

  50% {
    transform: translateX(10px) translateY(2px);
  }

  100% {
    transform: translateX(-8px) translateY(-3px);
  }
}

@keyframes lineDriftInner {
  0% {
    transform: translateX(0px) translateY(0px);
    opacity: 0.68;
  }

  50% {
    transform: translateX(-12px) translateY(4px);
    opacity: 0.9;
  }

  100% {
    transform: translateX(6px) translateY(-2px);
    opacity: 0.74;
  }
}

.wave-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 100%;
  /*background:linear-gradient(to top, rgba(11,74,141,.18), transparent 55%);*/
  mix-blend-mode: screen;
  pointer-events: none;
}

.wave-fill {
  animation: waveFloat 5s ease-in-out infinite alternate;
}

.wave-line-top {
  animation: lineDriftTop 6s ease-in-out infinite alternate;
}

.wave-line-main {
  animation: lineDriftMain 4.5s ease-in-out infinite alternate;
}

.wave-line-inner {
  animation: lineDriftInner 5.5s ease-in-out infinite alternate;
}
