/********** Template CSS **********/
:root {
  --primary: #093b5c;
  --light: #F8F8F8;
  --dark: #252525;
  --blue: #4ec2d5;
  --default-color: #444444;
  --background-color: #ffffff;
  --heading-color: #2a2c3;
  --speed: 0.25s;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
  font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
  font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
  font-weight: 400 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  left: 30px;
  bottom: 30px;
  z-index: 99;
}


/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Button ***/
.btn {
  font-weight: 500;
  transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #FFFFFF;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-outline-body {
  color: var(--primary);
  border-color: #777777;
}

.btn-outline-body:hover {
  color: #FFFFFF;
  background: var(--primary);
  border-color: var(--primary);
}


/*** Navbar ***/
.navbar .navbar-nav {
  display: flex;
  gap: 0;
  /* ensures no flex gap */
}

.navbar .navbar-nav .nav-link {
  margin-right: 0;
  padding: 12px 10px !important;
  /* slightly adjusted horizontal padding for better touch area */
  color: #004268 !important;
  font-weight: 600;
  text-transform: uppercase;
  outline: none;
  font-size: 1rem !important;
  border-right: 1px solid #093b5c;
  border-left: none;
  text-transform: capitalize !important;
}

.navbar .navbar-nav .nav-item:last-child .nav-link {
  border-right: none;
  /* removes extra right border on last item */
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

/* .navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding:13px 0;
  color: var(--dark);
  font-weight: 600;
  text-transform: uppercase;
  outline: none;
  font-size: 14px !important;
} */

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.topbox-dates {
  top: 0% !important;
}

.navbar.sticky-top {
  /*top: -100px;*/
  transition: .5s;
  top: 7.5% !important;
  border: 1px solid #093b5c;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #EEEEEE;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: .5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}


/*** Header ***/
.owl-carousel-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* display: flex; */
  align-items: center;
  /* background: rgba(0, 0, 0, .2); */
}

@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 162px;
  }

  .navbar.sticky-top {
    top: 15.4% !important;
    display: block;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item p {
    font-size: 16px !important;
  }
}

.header-carousel .owl-dots {
  position: absolute;
  width: 60px;
  height: 100%;
  top: 0;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 5px 0;
  background: var(--dark);
  transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
  width: 60px;
  height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 2px;
  transition: .5s;
  opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}

/* .page-header {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
} */

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

/*** Section Title ***/
.section-title {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.section-title::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--primary);
  margin: 4px 10px;
}

/*** Section Title ***/
.venue .section-title {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.venue .section-title::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--primary);
  margin: 4px 10px;
}


/*** Facts ***/
.fact-item .fact-icon {
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 120px;
  transition: .5s;
}

.fact-item:hover .fact-icon {
  background: #4ec2d5;
}

.fact-item .fact-icon i {
  color: var(--primary);
  transition: .5;
}

.fact-item:hover .fact-icon i {
  color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about-img img,
.feature-img img {
  position: absolute;
  width: 65%;
  height: 80%;
  object-fit: cover;
}

/* .about-img img:last-child, */
.feature-img img:last-child {
  margin: 20% 0 0 35%;
}

.about-img::before {
  position: absolute;
  content: "";
  width: 60%;
  height: 80%;
  top: 10%;
  left: 20%;
  border: 5px solid var(--primary);
  z-index: 0;
}

.feature-img::before {
  position: absolute;
  content: "";
  width: 60%;
  height: 80%;
  top: 10%;
  left: 20%;
  border: 5px solid var(--primary);
  z-index: -1;
}


/*** Service ***/
.service-item {
  height: 380px !important;
}

.service-item .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.service-item .service-text {
  background: var(--light);
  transition: .5s;
  width: 100% !important;
}

.service-item:hover .service-text {
  background: rgba(0, 0, 0, .7);
}

.service-item * {
  transition: .5;
}

.service-item:hover * {
  color: #FFFFFF;
}

.service-item .btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  background: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  transition: .5s;
}

.service-item:hover .btn {
  width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
  background: var(--light);
  transition: .5s;
}

.project .nav .nav-link.active {
  background: #00264d;

}

.project .nav .nav-link.active h4 {
  color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
  margin: -.75rem;
}

.team-item {
  padding: .40rem;
}

.team-item .bg-light h3 {
  color: #00264d;
  margin-bottom: 0;
  line-height: 1;
}

.team-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: #FFFFFF;
  transition: .5s;
  z-index: -1;
}

.team-item:hover::after {
  height: 100%;
  background: var(--primary);
}

.team-item-committee:hover {
  background: var(--light);
}

.team-item .team-social {
  position: absolute;
  width: 100%;
  bottom: -20px;
  left: 0;
}

.team-item .team-social .btn {
  display: inline-flex;
  margin: 0 2px;
  color: var(--primary);
  background: var(--light);
}

.team-item .team-social .btn:hover {
  color: #FFFFFF;
  background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
  top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
  border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
  font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  padding: 10px;
  border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
  border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
  display: flex !important;
  flex-direction: column-reverse;
  max-width: 100%;
  margin: 0 auto;
}

.testimonial-carousel .owl-dots {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 5px;
  transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  background: #FFFFFF;
  border-radius: 40px;
  transition: .5s;
  opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
  opacity: .4;
  transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}


/*** Footer ***/
.footer {
  background-image: url(../img/footer-image.jpg);
  background-repeat: no-repeat;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #777777;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .form-control {
  border-color: #777777;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
  /* background-color: #fff; */
}

.footer .copyright a {
  color: #d1ffbd;
}

.footer .copyright a:hover {
  color: #fff;
}

.col-xs-5th-1,
.col-xs-5th-2,
.col-xs-5th-3,
.col-xs-5th-4 {
  float: left;
}

.col-xs-5th-5 {
  float: left;
  width: 100%;
}

.col-xs-5th-4 {
  width: 80%;
}

.col-xs-5th-3 {
  width: 60%;
}

.col-xs-5th-2 {
  width: 40%;
}

.col-xs-5th-1 {
  width: 20%;
  padding: 5px;
}

.col-xs-5th-pull-5 {
  right: 100%;
}

.col-xs-5th-pull-4 {
  right: 80%;
}

.col-xs-5th-pull-3 {
  right: 60%;
}

.col-xs-5th-pull-2 {
  right: 40%;
}

.col-xs-5th-pull-1 {
  right: 20%;
}

.col-xs-5th-pull-0 {
  right: auto;
}

.col-xs-5th-push-5 {
  left: 100%;
}

.col-xs-5th-push-4 {
  left: 80%;
}

.col-xs-5th-push-3 {
  left: 60%;
}

.col-xs-5th-push-2 {
  left: 40%;
}

.col-xs-5th-push-1 {
  left: 20%;
}

.col-xs-5th-push-0 {
  left: auto;
}

.col-xs-5th-offset-5 {
  margin-left: 100%;
}

.col-xs-5th-offset-4 {
  margin-left: 80%;
}

.col-xs-5th-offset-3 {
  margin-left: 60%;
}

.col-xs-5th-offset-2 {
  margin-left: 40%;
}

.col-xs-5th-offset-1 {
  margin-left: 20%;
}

.col-xs-5th-offset-0 {
  margin-left: 0%;
}

@media (min-width: 768px) {

  .col-sm-5th-1,
  .col-sm-5th-2,
  .col-sm-5th-3,
  .col-sm-5th-4 {
    float: left;
  }

  .col-sm-5th-5 {
    float: left;
    width: 100%;
  }

  .col-sm-5th-4 {
    width: 80%;
  }

  .col-sm-5th-3 {
    width: 60%;
  }

  .col-sm-5th-2 {
    width: 40%;
  }

  .col-sm-5th-1 {
    width: 20%;
    padding: 5px;
  }

  .col-sm-5th-pull-5 {
    right: 100%;
  }

  .col-sm-5th-pull-4 {
    right: 80%;
  }

  .col-sm-5th-pull-3 {
    right: 60%;
  }

  .col-sm-5th-pull-2 {
    right: 40%;
  }

  .col-sm-5th-pull-1 {
    right: 20%;
  }

  .col-sm-5th-pull-0 {
    right: auto;
  }

  .col-sm-5th-push-5 {
    left: 100%;
  }

  .col-sm-5th-push-4 {
    left: 80%;
  }

  .col-sm-5th-push-3 {
    left: 60%;
  }

  .col-sm-5th-push-2 {
    left: 40%;
  }

  .col-sm-5th-push-1 {
    left: 20%;
  }

  .col-sm-5th-push-0 {
    left: auto;
  }

  .col-sm-5th-offset-5 {
    margin-left: 100%;
  }

  .col-sm-5th-offset-4 {
    margin-left: 80%;
  }

  .col-sm-5th-offset-3 {
    margin-left: 60%;
  }

  .col-sm-5th-offset-2 {
    margin-left: 40%;
  }

  .col-sm-5th-offset-1 {
    margin-left: 20%;
  }

  .col-sm-5th-offset-0 {
    margin-left: 0%;
  }
}

@media (min-width: 992px) {

  .col-md-5th-1,
  .col-md-5th-2,
  .col-md-5th-3,
  .col-md-5th-4 {
    float: left;
  }

  .col-md-5th-5 {
    float: left;
    width: 100%;
  }

  .col-md-5th-4 {
    width: 80%;
  }

  .col-md-5th-3 {
    width: 60%;
  }

  .col-md-5th-2 {
    width: 40%;
  }

  .col-md-5th-1 {
    width: 20%;
    padding: 5px;
  }

  .col-md-5th-pull-5 {
    right: 100%;
  }

  .col-md-5th-pull-4 {
    right: 80%;
  }

  .col-md-5th-pull-3 {
    right: 60%;
  }

  .col-md-5th-pull-2 {
    right: 40%;
  }

  .col-md-5th-pull-1 {
    right: 20%;
  }

  .col-md-5th-pull-0 {
    right: auto;
  }

  .col-md-5th-push-5 {
    left: 100%;
  }

  .col-md-5th-push-4 {
    left: 80%;
  }

  .col-md-5th-push-3 {
    left: 60%;
  }

  .col-md-5th-push-2 {
    left: 40%;
  }

  .col-md-5th-push-1 {
    left: 20%;
  }

  .col-md-5th-push-0 {
    left: auto;
  }

  .col-md-5th-offset-5 {
    margin-left: 100%;
  }

  .col-md-5th-offset-4 {
    margin-left: 80%;
  }

  .col-md-5th-offset-3 {
    margin-left: 60%;
  }

  .col-md-5th-offset-2 {
    margin-left: 40%;
  }

  .col-md-5th-offset-1 {
    margin-left: 20%;
  }

  .col-md-5th-offset-0 {
    margin-left: 0%;
  }
}

@media (min-width: 1200px) {

  .col-lg-5th-1,
  .col-lg-5th-2,
  .col-lg-5th-3,
  .col-lg-5th-4 {
    float: left;
  }

  .col-lg-5th-5 {
    float: left;
    width: 100%;
  }

  .col-lg-5th-4 {
    width: 80%;
  }

  .col-lg-5th-3 {
    width: 60%;
  }

  .col-lg-5th-2 {
    width: 40%;
  }

  .col-lg-5th-1 {
    width: 20%;
  }

  .col-lg-5th-pull-5 {
    right: 100%;
  }

  .col-lg-5th-pull-4 {
    right: 80%;
  }

  .col-lg-5th-pull-3 {
    right: 60%;
  }

  .col-lg-5th-pull-2 {
    right: 40%;
  }

  .col-lg-5th-pull-1 {
    right: 20%;
  }

  .col-lg-5th-pull-0 {
    right: auto;
  }

  .col-lg-5th-push-5 {
    left: 100%;
  }

  .col-lg-5th-push-4 {
    left: 80%;
  }

  .col-lg-5th-push-3 {
    left: 60%;
  }

  .col-lg-5th-push-2 {
    left: 40%;
  }

  .col-lg-5th-push-1 {
    left: 20%;
  }

  .col-lg-5th-push-0 {
    left: auto;
  }

  .col-lg-5th-offset-5 {
    margin-left: 100%;
  }

  .col-lg-5th-offset-4 {
    margin-left: 80%;
  }

  .col-lg-5th-offset-3 {
    margin-left: 60%;
  }

  .col-lg-5th-offset-2 {
    margin-left: 40%;
  }

  .col-lg-5th-offset-1 {
    margin-left: 20%;
  }

  .col-lg-5th-offset-0 {
    margin-left: 0%;
  }
}

.container-xxl .sponsor-logo {
  margin: 5px 0;
  background: #f7f7f7;
  min-height: 125px;
  padding: 0 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

/* Preliminary program */
.panel {
  border: 5px solid #ffffffab;
  background: none;
}

.panel .panel-title {
  font-size: 20px;
  padding: 15px;
  /* background-color: #093b5c; */
  color: #093b5c;
  margin-bottom: 0px;
}

.panel .panel-title a:link {
  background-color: #fff !important;
  color: #093b5c !important;
  border-radius: 10px
}

.panel .panel-body {
  padding-bottom: 25px;
}

.panel .panel-body .form-control {
  border: 2px solid #4ec2d5;
  font-size: 15px;
  padding: 10px 12px;
  height: 45px;
}

.owl-carousel-inner .panel .panel-body .form-control {
  background: none;
  border: 2px solid #fff;
}

.owl-carousel-inner .panel .panel-body .form-control::placeholder {
  color: #fff;
  font-weight: bold;
}

.panel .panel-body .fa-download {
  font-size: 23px;
  color: #093b5c;
}

.panel .panel-body .btn {
  color: #fff !important;

}

hr {
  color: #fff;
  height: 4px !important;
  opacity: 0.8;
}

/* Content area
================================================== */
/* Accordion */

.panel-default>.panel-heading {
  /* background: #093b5c; */
  border-radius: 0;
  position: relative;
  padding: 0px 0px;
}

.panel-group .panel {
  /*width:58%;*/
  margin-bottom: 10px;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
  border: 1px solid #093b5c36;
  border-radius: 10px
}

.panel-body {
  padding: 5px 20px 10px 20px;
}

.panel-body>img {
  max-width: 100px;
  margin-bottom: 10px;
}

h4.panel-title {
  font-size: 19px;
  background: none;
  border: 0;
  padding: 5px 3px 7px 0;
  line-height: normal;
  border-radius: 0;
}

h4.panel-title a {
  color: #093b5c;
}

h4.panel-title span {
  float: right;
}

h4.panel-title a.collapsed {
  color: #fff;
  padding: 1px 24px;
  /* border: 1px solid; */
  background: #eee;
}

h4.panel-title a:before {
  background: #093b5c;
  color: #fff;
  width: 26px;
  height: 26px;
  line-height: 26px;
}

h4.panel-title a.collapsed:before {
  background: var(--primary);
  color: #fff;
}

h4.panel-title a:before,
h4.panel-title a.collapsed:before {
  font-family: "FontAwesome";
  position: absolute;
  z-index: 0;
  font-size: 14px;
  right: 15px;
  padding: 0 5px;
  text-align: center;
  top: 45%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

h4.panel-title a:before {
  content: "\f106";
}

h4.panel-title a.collapsed:before {
  content: "\f107";
}

/* Accordion classic */

.panel-classic .panel-heading {
  padding-left: 15px;
}

.panel-classic h4.panel-title a:before,
.panel-classic h4.panel-title a.collapsed:before {
  position: relative;
  content: '';
  font-size: 0;
}

#program_form .form-control {
  color: #fff;
  font-weight: bold;
  text-shadow: 0px 0px #fff;
}

.fa-researchgate:before {
  font-size: 28px;
}

@media (max-width:576px) {
  .social span {
    padding: 0.8% 50px !important;
  }

  .header-carousel .owl-carousel-item {
    min-height: 162px;
  }

  .navbar.sticky-top {
    top: 0% !important;
  }

  .symp_image {
    margin-top: 20px;
  }

  .footer {
    background-size: cover;
  }

  .footer .col-lg-4 {
    margin-top: 10px;
  }

  .maintext {
    font-size: calc(1.375rem + 1.5vw) !important;
  }
}

.partnerboxbg {
  position: relative;
  margin: auto;
  background: linear-gradient(33deg, #75bdc8 0%, #3e8a95 50%);
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 25px;
  border-radius: 25px;
  transition: all 0.3s;
}

.partnerimg {
  flex-shrink: 0;
  background: #fff;
  box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);
  border-radius: 20px;
  transform: translateX(-70px);
  overflow: hidden;
}

@media (max-width:576px) {
  .partnerboxbg {
    width: 80%;
  }

  .btn-primary-banner {
    margin-bottom: 1rem;
  }

  .sm_banner {
    text-align: center;
  }
}

.bg-shade {
  background-color: rgb(255 255 255 / 30%);
  border-radius: 2px;
}

.iframeborder {
  border: 5px solid #00ffe2;
  border-radius: 0px 0px 20px 20px;
  box-shadow: rgb(1 1 1 / 35%) 0px 5px 15px;
  margin-top: 2%;
}

.btn-primary {
  background-color: #093b5c !important;
}

.btn-primary:hover {
  background-color: #1c79ab !important;
}

.btn-primary-top {
  background-color: #093b5c !important;
}

.btn-primary-top:hover {
  background-color: #00264d !important;
}

.btn-primary-banner {
  background-color: #093b5c !important;
  border: 1px solid #1c79ab;
}

.btn-primary-banner:hover {
  background-color: #1c79ab !important;
}

.blink-msg {
  text-align: center;
  animation: blink-text 1.9s linear infinite;
  font-weight: bold;
  color: #fff;
  position: relative;
  bottom: 9px;
  font-family: "Noto Sans", sans-serif;
}

@keyframes blink-text {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.display-12 {
  font-size: 2.8rem;
}

.rounded-top-left-pc {
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}

.rounded-top-right-pc {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.Participants-form {
  background-color: #093b5c;
}

.participants-item {
  position: relative;
  margin-right: 10%;
}

.participants-item img {
  border: 1px solid #444;
}

.page-header .page-header-inner {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.page-header .page-header-inner .container {
  text-align: left !important;
}

.page-header .page-header-inner .container ol {
  justify-content: left !important;
}

.page-header .page-header-inner .container h1 {
  font-size: 3.5rem !important;
  color: #d1ffbd !important;
}

.page-header .page-header-inner .container ol:first-child {
  color: #d1ffbd !important;
}

.about-image-2 {
  /* left: 35%; */
  top: 20%;
}

.sponsor-padding .img-thumbnail {
  padding: 1.25rem !important;
}


.preview label {
  word-wrap: break-word;
  /* Wrap long words */
  overflow-wrap: break-word;
  /* Wrap long words for browsers that support overflow-wrap */
  display: inline-block;
  /* Ensure the element behaves as an inline block */
  max-width: 100%;
  /* Limit the width to the available space */
}

.preview p {
  padding-top: 7px;
  margin: 0px !important;
}

.preview .control-label {
  padding-top: 0px !important;
}

.preview .label-class {
  padding: 0px !important;
  justify-content: end;
  display: flex;
  align-self: center;
}

.copyright-info span {
  color: #fff;
}

.section {
  color: var(--default-color);
  background-color: var(--background-color);
  scroll-margin-top: 77px;
  overflow: clip;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin: 0;
  color: var(--primary) !important;
}

.features .nav-link p {
  font-size: 13px !important;
  margin-top: 14px !important;
  /* color: #dc3545 !important; */
  font-weight: lighter;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--primary);
}

.features .nav-link.active {
  background: var(--primary);
  color: var(--background-color);
  border-color: var(--primary);
}

.features .nav-link.active h4 {
  color: var(--background-color) !important;
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }

  .features .nav-link img {
    padding-right: 0 !important;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: #000 !important;
  font-weight: 700;
  font-size: 26px;
}

.features .tab-pane p {
  color: #000 !important;
  font-weight: 700;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  /* padding-bottom: 10px; */
  font-size: 15px;
  /* line-height: 1; */
}

.features .tab-pane .first_tab {
  /* padding-bottom: 10px; */
  font-size: 15px;
  line-height: 1;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #093b5c;
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

.about_us li i {
  color: var(--primary);
  font-size: 17px;
}

.about_us h1 {
  margin: 0;
}

.glow-button {
  position: relative;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  overflow: hidden;
  /* background-color: #093b5c !important; */
  border-color: #1c79ab !important;
}

.glow-button .cursor-highlight {
  --button-glow: #6aa8ee;
  --button-glow-opacity: 1;
  --button-glow-duration: .25s;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  /* Hidden by default */
  background-color: var(--button-glow, transparent);
  transition: opacity var(--button-glow-duration, 0.5s);
  filter: blur(20px);
}

/* .glow-button {
  --button-background: #09041e;
  --button-color: #fff;
  --button-shadow: rgba(33, 4, 104, 0.2);
  --button-shine-left: rgb(28, 171, 247);
  --button-shine-right: rgb(2, 39, 79);
  --button-glow-start: #006ee8;
  --button-glow-end: #009FFD;

  appearance: none;
  outline: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  position: relative;
  line-height: 24px;
  cursor: pointer;
  color: var(--button-color);
  padding: 0;
  margin: 0;
  background: none;
  z-index: 1;
  box-shadow: 0 8px 20px var(--button-shadow);

  .gradient {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    transform: scaleY(1.02) scaleX(1.005) rotate(-.35deg);

    &:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      transform: scale(2.05) translateY(-44px) rotate(0deg) translateZ(0);
      padding-bottom: 100%;
      background: linear-gradient(90deg, var(--button-shine-left), var(--button-shine-right));
      animation: rotate linear 2s infinite;
    }
  }

  span {
    z-index: 1;
    position: relative;
    display: block;
    box-sizing: border-box;
    width: fit-content;
    border-radius: inherit;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);

    &:before {
      content: '';
      position: absolute;
      left: -16px;
      top: -16px;
      transform: translate(var(--pointer-x, 0px), var(--pointer-y, 0px)) translateZ(0);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background-color: var(--button-glow, transparent);
      opacity: var(--button-glow-opacity, 0);
      transition: opacity var(--button-glow-duration, .5s);
      filter: blur(20px);
    }
  }

  &:hover {
    --button-glow-opacity: 1;
    --button-glow-duration: .25s;
  }
} */

@keyframes rotate {
  to {
    transform: scale(2.05) translateY(-44px) rotate(360deg) translateZ(0);
  }
}


/* Start Send Message Button CSS */

.sendmsg button {
  cursor: pointer;
  position: relative;
  display: flex;
  /* border: 1px solid hsl(0 0% 100% / 0.25);
  border-radius: 100px; */
  border: none;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 3.5em;
  gap: 0.1em;
  font-family: "Noto Sans", sans-serif;
  font-weight: 80;
  background:
    hsl(231 70% 22%);
  color: hsl(0 0% 90%);
  /* padding: 0.5em 0.5em 0.5em 1.5em; */
  place-items: center;
  box-shadow:
    0 1px inset hsl(0 0% 100% / 0.5),
    0 -10px 20px 10px hsl(0 0% 0% / 0.5) inset,
    0 10px 20px 10px hsl(0 0% 50% / 0.25) inset,
    0 1px hsl(0 0% 2% / 0.75);
  letter-spacing: 0.05ch;
}

.sendmsg button:focus-visible {
  outline-offset: 0.5em;
  outline-color: hsl(280 80% 80% / 0.5);
}

.sendmsg .icon {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 100%;
}

.backdrop {
  position: absolute;
  inset: 0.5em;
}

.sendmsg .icon {
  overflow: hidden;
}

.sendmsg .icon svg {
  width: 50%;
  overflow: visible !important;
}

svg path:nth-of-type(2) {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transition:
    fill var(--speed),
    rotate var(--speed),
    scale var(--speed),
    translate var(--speed);
}

svg path:nth-of-type(1) {
  translate: 5rem 0;
  transform-box: fill-box;
  transition: translate var(--speed);
  opacity: 0.75;
}

.sendmsg button:is(:hover, :focus-visible) svg path:nth-of-type(2) {
  translate: 0 -50%;
  rotate: 290deg;
  scale: 0.65;
  fill: hsl(231 0% 20%);
  transition-timing-function: ease, ease, cubic-bezier(.2, .7, .9, 1.5);
}

.sendmsg button:is(:hover, :focus-visible) svg path:nth-of-type(1) {
  translate: 0 0;
}

.action {
  position: absolute;
  right: 0;
  height: 100%;
  background:
    linear-gradient(transparent 50%, hsl(0 0% 30% / 0.5)),
    hsl(210 50% 51%);
  box-shadow: 0 -1px inset hsl(0 0% 100% / 0.35);
  width: 3.5em;
  aspect-ratio: 1;
  transition: width var(--speed);
  border-radius: 100px;
}

.sendmsg .icon {
  color: hsl(0 0% 90%);
  display: grid;
  place-items: center;
  z-index: 2;
}

.sendmsg .text {
  display: inline-block;
  z-index: 2;
  padding: 0 2rem;
}

.sendmsg button:is(:hover, :focus-visible) .action {
  width: 100%;
}

/* End Send Message Button CSS */

/* Start Slider Content Animation */

.carousel1 {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  /* Start off-screen right */
  top: 15%;
}

.carousel2 {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  /* Start off-screen right */
  top: 25%;
}

.carousel1 {
  animation: word1-animation 12s infinite;
  /* Extended duration */
}

.carousel2 {
  animation: word2-animation 12s infinite;
  /* Extended duration */
}

@media (max-width: 768px) {

  .carousel1,
  .carousel2 {
    left: 0%;
  }
}

/* @keyframes word1-animation {
  0%, 10% { opacity: 0; transform: translateX(100%); }
  10%, 55% { opacity: 1; transform: translateX(0); }
  55%, 58% { opacity: 1; transform: translateX(0); }
  60%, 65% { opacity: 0; transform: translateX(-100%); }
}

@keyframes word2-animation {
  55%, 65% { opacity: 0; transform: translateX(100%); }
  65%, 100% { opacity: 1; transform: translateX(0); }
  0%, 10% { opacity: 0; transform: translateX(-100%); }
} */

@keyframes word1-animation {

  0%,
  10% {
    opacity: 0;
    transform: translateY(-100%);
    /* Hidden and off-screen above */
  }

  10%,
  55% {
    opacity: 1;
    transform: translateY(0);
    /* Visible and centered */
  }

  55%,
  60% {
    opacity: 1;
    transform: translateY(0);
    /* Start exiting */
  }

  60%,
  65% {
    opacity: 0;
    transform: translateY(100%);
    /* Move off-screen below */
  }
}

@keyframes word2-animation {

  60%,
  65% {
    opacity: 0;
    transform: translateY(-100%);
    /* Hidden and off-screen above */
  }

  65%,
  100% {
    opacity: 1;
    transform: translateY(0);
    /* Visible and centered */
  }

  0%,
  10% {
    opacity: 0;
    transform: translateY(100%);
    /* Hidden and off-screen below */
  }
}

/* End Slider Content Animation */

/* Initially show the normal icon */
.twitter-normal {
  display: inline;
  margin-bottom: 5px;
}

.twitter-hover {
  display: none;
  margin-bottom: 5px;
}

.twitter_icon_footer {
  background-color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* On hover, show the white icon and change background */
.twitter_icon_footer:hover {
  background-color: white;
}

.twitter_icon_footer:hover .twitter-normal {
  display: none;
  /* Hide the normal icon */
}

.twitter_icon_footer:hover .twitter-hover {
  display: inline;
  /* Show the white icon on hover */
}

/* 
---------------------------------------------
About Page Style
--------------------------------------------- 
*/

.about-main-content {
  background-image: url(../images/about-content-bg.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 20px 0px 90px 0px;
}

.blur-bg {
  width: 100%;
  height: 100%;
  background: url(../images/about-content-bg.jpg) no-repeat center center fixed;
  background-size: cover;
  filter: blur(8px) brightness(80%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.about-main-content .content {
  border-radius: 23px;
  text-align: center;
  padding: 50px 54px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.about-main-content .content h2 {
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 46px;
  margin-bottom: 10px;
}

.about-main-content .content .line-dec {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 2px;
  background-color: rgba(250, 250, 250, 0.3);
  margin: 20px auto;
}

.about-main-content .content h4 {
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 48px;
  font-weight: 400;
}

.about-main-content .content p {
  color: #fff;
  position: relative;
  z-index: 2;
  padding: 0px 15%;
}

.about-main-content .content .main-button {
  position: relative;
  z-index: 2;
}

.about-main-content .content .main-button a {
  background-color: #093b5c;
  color: #fff;
  border-color: #fff;
}

.about-main-content .content .main-button a:hover {
  opacity: 0.9;
}

.cities-town .slider-content {
  min-height: 100%;
  max-height: 100%;
  position: relative;
  margin-top: -70px;
  background-color: #fff;
  border-radius: 23px;
  padding: 35px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

.cities-town .slider-content h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.cities-town .slider-content h2 em {
  font-style: normal;
  color: #093b5c;
}

.cities-town .slider-content .item .thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.cities-town .slider-content .item .thumb h4 {
  position: absolute;
  left: 30px;
  bottom: 30px;
  font-size: 20px;
  color: #fff;
}

.cities-town .owl-nav {
  position: absolute;
  top: -60px;
  right: 0;
}

.cities-town .owl-nav .owl-next span {
  display: none;
}

.cities-town .owl-nav .owl-next::after {
  font-family: "Noto Sans", sans-serif;
  content: '\f061';
  color: #cdcdcd;
  font-size: 20px;
  transition: all .3s;
}

.cities-town .owl-nav .owl-prev span {
  display: none;
}

.cities-town .owl-nav .owl-prev::after {
  font-family: "Noto Sans", sans-serif;
  content: '\f060';
  color: #cdcdcd;
  margin-right: 15px;
  font-size: 20px;
  transition: all .3s;
}

.cities-town .owl-nav .owl-prev:hover::after,
.cities-town .owl-nav .owl-next:hover::after {
  color: #093b5c;
}

.more-about {
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
  background: #edecec;
  padding: 38px 26px;
}

.more-about .left-image {
  margin-right: 60px;
}

.more-about .section-heading {
  margin-bottom: 40px;
}

.more-about .info-item {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.more-about .info-item h4 {
  font-size: 29px;
}

.more-about .info-item span {
  color: #093b5c;
  font-size: 18px;
  font-weight: bold;
}

.more-about .main-button {
  margin-top: 30px;
}

.more-about .main-button a:hover {
  background-color: #093b5c;
  border-color: #093b5c;
  color: #fff;
  opacity: 0.85;
}

.weekly-offers {
  padding-bottom: 40px;
  margin-top: 40px;
  border-bottom: 1px solid #eee;
}

.weekly-offers .container-fluid {
  padding: 0px 80px;
}

.venue .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  /* Ensures the image fits within its container */
  height: auto;
  /* Maintains the aspect ratio */
  object-fit: cover;
  /* Ensures the image covers the container without distortion */
  border-radius: 23px;
  /* Adds subtle rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Adds a soft shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Smooth transition on hover */
}

.venue .owl-carousel .owl-item img:hover {

  transform: scale(1.05);
  /* Slight zoom effect on hover */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  /* Enhance shadow on hover */
}


.weekly-offers .item {
  /* margin: 0px 15px;
  position: relative;
  min-height:250px; */
}

.weekly-offers .item .thumb img {
  /* padding-right: 160px; */
  border-radius: 23px;
}

.weekly-offers .item .thumb .text {
  min-height: 55vh !important;
  background-color: #fff;
  border-radius: 23px;
  right: 0;
  top: 20%;
  transform: translateY(-13%);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 24px;
}

.weekly-offers .item .thumb .text h4 {
  font-size: 25px;
  display: inline-block;
}

.weekly-offers .item .thumb .text h6 {
  display: inline-block;
  float: right;
  text-align: right;
  font-size: 20px;
  color: #093b5c;
}

.weekly-offers .item .thumb .text h4 span,
.weekly-offers .item .thumb .text h6 span {
  font-size: 15px;
  color: #afafaf;
  font-weight: 400;
}

.weekly-offers .item .thumb .text ul {
  border-top: 1px solid #eee;
  margin-top: 25px;
  padding-top: 25px;
}

.weekly-offers .item .thumb .text ul li {
  color: #afafaf;
  font-size: 14px;
  margin-bottom: 10px;
}

.weekly-offers .item .thumb .text ul li:first-child {
  color: #2a2a2a;
  font-weight: 600;
}

.weekly-offers .item .thumb .text .main-button {
  margin-top: 30px;
}

.weekly-offers .item .thumb .text .main-button a:hover {
  background-color: #093b5c;
  border-color: #093b5c;
  color: #fff;
  opacity: 0.85;
}

.weekly-offers .owl-nav {
  text-align: center;
  margin-top: 0px;
}

.weekly-offers .owl-nav .owl-next span {
  display: none;
}

.weekly-offers .owl-nav .owl-next::after {
  font-family: "Noto Sans", sans-serif;
  content: '\f061';
  color: #093b5c;
  font-size: 20px;
  width: 46px;
  height: 46px;
  text-align: center;
  border: 1px solid #093b5c;
  display: inline-block;
  line-height: 44px;
  border-radius: 50%;
  transition: all .3s;
  margin-left: 5px;
}

.weekly-offers .owl-nav .owl-prev span {
  display: none;
}

.weekly-offers .owl-nav .owl-prev::after {
  font-family: "Noto Sans", sans-serif;
  content: '\f060';
  color: #093b5c;
  font-size: 20px;
  width: 46px;
  height: 46px;
  text-align: center;
  border: 1px solid #093b5c;
  display: inline-block;
  line-height: 44px;
  border-radius: 50%;
  transition: all .3s;
  margin-right: 5px;
}

.weekly-offers .owl-nav .owl-prev:hover::after,
.weekly-offers .owl-nav .owl-next:hover::after {
  color: #fff;
  background-color: #093b5c;
}

@media (max-width: 992px) {
  #section-1 .more-info {
    margin-top: 60px;
  }

  #section-1 .more-info h4 span {
    font-size: 15px;
  }

  #section-1 .more-info h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  #section-1 .main-button {
    text-align: left;
  }

  #section-1 .content-slider nav .controls label {
    width: 15%;
  }

  .visit-country .item .right-content ul li {
    width: 30% !important;
  }

  .visit-country .item .right-content {
    position: relative;
  }

  .visit-country .side-bar-map {
    margin-left: 0px;
    margin-top: 60px;
  }

  .call-to-action h2,
  .call-to-action h4 {
    text-align: center;
  }

  .call-to-action .border-button {
    text-align: center;
    margin-top: 30px;
  }

  .about-main-content .content p {
    padding: 0px 5%;
  }

  .weekly-offers .container-fluid {
    padding: 0px;
  }

  .more-about .left-image {
    margin-right: 0px;
    margin-bottom: 60px;
  }

  .search-form #search-form h4 {
    margin-bottom: 15px;
  }

  .search-form #search-form select {
    margin-bottom: 30px;
  }

  .amazing-deals .item .image {
    border-top-right-radius: 23px;
    border-bottom-left-radius: 0px;
  }

  .amazing-deals .item {
    padding-right: 0px;
  }

  .amazing-deals .item .content {
    padding: 30px !important;
  }

  .more-info .info-item {
    margin-bottom: 30px;
  }

  .reservation-form #reservation-form {
    padding: 45px 30px;
  }
}

@media (max-width: 1200px) {
  #section-1 .more-info h4 span {
    font-size: 12px;
  }

  #section-1 .more-info h4 {
    font-size: 15px;
  }

  .weekly-offers .container-fluid {
    padding: 0px;
  }
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.bg-grey {
  background-color: #F2F2F4 !important;
}

.future-team img {
  position: relative;
  z-index: 1;
}

.future-team .future-team-text {
  position: relative;
  width: 100%;
  height: 20vh !important;
  /* height: 100px; */
  bottom: 0px;
  left: 0;
  border-bottom: 5px solid #093b5c;
  transition: .5s;
}

.future-team:hover .future-team-text {
  bottom: 100px;
}

.future-team .future-team-social {
  position: absolute;
  width: 100%;
  height: 20vh !important;
  bottom: -120px;
  left: 0;
  transition: .5s;
}

.future-team:hover .future-team-social {
  bottom: 0;
}

.future-team h5,
.future-team .h5 {
  font-size: 1.5rem;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.btn-social {
  width: 40px;
  height: 40px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  /* border-radius: 36px !important; */
}

.btn-featured {
  display: inline-block;
  font-weight: 400;
  color: #757575;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-outline-dark {
  color: #fff;
  border-color: #fff;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #1F1F2E;
  border-color: #1F1F2E;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(31, 31, 46, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #1F1F2E;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show>.btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #1F1F2E;
  border-color: #1F1F2E;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(31, 31, 46, 0.5);
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

/* .text {
  font-family: "Liberty";
  font-weight: 100 !important;
  font-size: 2.5rem;
  letter-spacing: -0.15em;
  flex-flow: row;
}

@font-face {
  font-family: "Liberty";
  src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/907368/liberty.otf");
}

.text .letter {
  color: #d9fdff;
  text-shadow: 0 0 2rem #00f0ff;
  } */

.maintext {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500 !important;
  font-size: 2.7rem;
  letter-spacing: 0;
  color: #d9fdff !important;
  /* text-shadow: 0 0 2rem #57efff; */
  /* color: #57efff !important; */
  /* white-space: nowrap;
  display: inline-flex;
  justify-content: center;
  align-items: center; */
}

@font-face {
  font-family: "Noto Sans", sans-serif;
  src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/907368/liberty.otf");
}

.maintext .letter {
  color: #d9fdff;
  text-shadow: 0 0 2rem #00f0ff;
  display: inline-block;
}

.maintext .letter-space {
  display: inline-block;
  width: 10px !important;
  /* Adjust this to control the space between words */
}

.letter {

  /* font-weight: 100; */
  /* letter-spacing: -0.25em; */
  /* flex-flow: row; */
  /* font-family: 'Liberty'; */
  color: #d9fdff !important;
  text-shadow: 0 0 1rem #00f0ff;
}


@media (max-width: 768px) {

  /* For tablets and smaller */
  .future-team .future-team-social {
    height: 0 !important;
    position: relative;
    /* Prevent overlap issues */
  }
}

@media (max-width: 576px) {

  /* For mobile devices */
  .future-team .future-team-social {
    height: 0px !important;
    /* Adjust height for better visibility */
    position: relative;
    /* Adjust positioning */
  }
}

.text-green {
  color: #93c842 !important;
}


.navbar .navbar-nav .nav-item:last-child .nav-link {
  border-right: none;
  /* Remove border from the last item */
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  background-color: #ddd;
  color: #093b5c;
  /* Bootstrap primary or your custom */
  transition: all 0.3s ease-in-out;
}

.full-width-navbar {
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #ddd;
  /* Optional: adds bottom line */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  /* Optional: subtle shadow */
  padding-left: 30px;
  padding-right: 30px;
}

.full-width-navbar {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.navbar-nav {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 0 !important;
  justify-content: space-between !important;
  /* Distributes evenly */
}

.nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.notification {
  opacity: 0;
  animation: blink 1s infinite;
  color: #b31206;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

}


.text-blue {
  color: #093b5c !important;
}

.text-justify {
  text-align: justify !important;
}

.bg-orange {
  background-color: #ef4a1a !important;
}

.breadcrumb-item+.breadcrumb-item {
  padding-left: 0.4rem;
  /* reduced gap */
}

.breadcrumb-item+.breadcrumb-item::before {
  padding-right: 0.4rem;
  /* reduced space before the divider */
  color: var(--bs-breadcrumb-divider-color, #2e2011);
  content: "|";
  font-weight: bold;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: none;
  font-weight: bold;
}

a:hover,
a:focus {
  color: rgba(var(--bs-link-hover-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}

.collapse .navbar-nav a:hover,
.collapse .navbar-nav a:focus {
  text-decoration: none !important;
}

/* Base styles for the top date/logo section */
.topbox-dates {
  z-index: 1030;
}

/* Adjust logo on small screens */
/* .topbox-dates .navbar-brand img {
    width: 100%;
    max-width: 220px;
    height: auto;
} */

/* Adjust logo container spacing */
.topbox-dates .navbar-brand {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Button responsiveness */
.btn.btn-primary-top {
  background-color: #ff6f00;
  border: none;
  font-weight: 500;
}

/* Keep register button aligned right */
@media (max-width: 767.98px) {

  .topbox-dates .col-md-6 {
    text-align: center !important;
    margin-bottom: 10px;
  }

  .navbar-toggler {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .topbox-dates .btn {
    width: 100%;
    margin: auto;
    max-width: 200px;
  }

  .topbox-dates .navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .topbox-dates .navbar-brand img {
    max-width: 80%;
    height: auto;
  }
}


/* Navbar collapse menu styles */
.navbar-collapse .navbar-nav {
  gap: 0.5rem;
}

/* Navbar dropdown menu styles */
.navbar .dropdown-menu {
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  min-width: 220px;
}

.navbar .dropdown-menu a {
  padding: 8px 20px;
}

.navbar-nav .nav-link.active {
  font-weight: bold;
}

/* Mobile navbar spacing */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    padding: 1rem;
  }

  .navbar-nav .nav-item {
    width: 100%;
    text-align: left;
  }

  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
}

.text-green {
  color: #d1ffbd !important;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Noto Sans", sans-serif !important;
}

.symposium_agenda .nav-link:hover,
.symposium_agenda .nav-link.active {
  text-decoration: none !important;
}

.symposium_agenda .nav-link:hover h4 {
  text-decoration: underline;
  /* add back underline only to h4 */
}

.list-group-item {
  font-weight: 500 !important;
  border: none !important;
}

.list-group li {
  list-style: circle !important;
  padding-top: 0px;
}

.list-group a:hover {
  text-decoration: none !important;
}

a:hover, a:active, a:focus {
  text-decoration: none !important;
}