* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 2;
}

::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
  border-radius: 1px !important;
  background-color: #ffffff !important;
}

::-webkit-scrollbar-thumb {
  width: 8px !important;
  height: 8px !important;
  border-radius: 20px !important;
  background-color: #0788df !important;
}

::-webkit-scrollbar-track {
  width: 8px !important;
  height: 8px !important;
  border-radius: 1px !important;
  background-color: #ecf7ff !important;
}

body {
  background-color: #eee;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #242527;
}

.d-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-blue {
  color: #0788df;
}

.heading-text {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #0788df;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 14px;
  margin-bottom: 2.5rem;
}
.heading-text::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #0788df, transparent 70%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.heading-text::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #f9dc00;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.heading-text-white {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 14px;
  margin-bottom: 2.5rem;
}
.heading-text-white::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #ffffff, transparent 70%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.heading-text-white::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #f9dc00;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.text-justify {
  text-align: justify;
}

.white-underline {
  position: relative;
}
.white-underline::after {
  bottom: -1px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #ffffff;
  opacity: 0.6;
  width: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease, opacity 0.3s ease;
}
.white-underline:hover::after, .white-underline:focus::after {
  width: 100%;
  opacity: 1;
}
.white-underline.active::after {
  width: 100%;
  opacity: 1;
}

.blue-underline {
  position: relative;
}
.blue-underline::after {
  bottom: -1px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #0788df;
  opacity: 0.6;
  width: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease, opacity 0.3s ease;
}
.blue-underline:hover::after, .blue-underline:focus::after {
  width: 100%;
  opacity: 1;
}
.blue-underline.active::after {
  width: 100%;
  opacity: 1;
}

.red-underline {
  position: relative;
}
.red-underline::after {
  bottom: -1px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #f9dc00;
  opacity: 0.6;
  width: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease, opacity 0.3s ease;
}
.red-underline:hover::after, .red-underline:focus::after {
  width: 100%;
  opacity: 1;
}
.red-underline.active::after {
  width: 100%;
  opacity: 1;
}

.btn-main {
  padding: 10px 20px;
  border: 2px solid #0788df;
  background-color: #ecf7ff;
  color: #0788df;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.btn-main:hover, .btn-main:focus {
  color: #ffffff;
  background-color: #0788df;
}

.organizing-card {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  padding-bottom: 30px;
  max-width: 300px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  transition: all 600ms ease;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.7px);
  -webkit-backdrop-filter: blur(2.7px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.organizing-card .image-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 20px 0;
}
.organizing-card .image-box .image {
  position: relative;
  display: inline-block;
  height: 150px;
  width: 150px;
  overflow: hidden;
  border: 4px solid #0562a0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  z-index: 9;
  margin-bottom: 0;
  transition: all 600ms ease;
}
.organizing-card .image-box .image img {
  display: block;
  width: 100%;
}
.organizing-card .info-box {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  margin: 0 10%;
  color: #ffffff;
  text-align: center;
}
.organizing-card .info-box h5 {
  font-size: 1.2rem;
  font-weight: 700;
}
.organizing-card .info-box span {
  font-size: 0.9rem;
  color: #ecf7ff;
}
.organizing-card:hover {
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
}
.organizing-card:hover .image-box .image {
  border-radius: 10px;
}

.organizing-card-2 .inner-box {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  padding: 50px 0 40px;
  border: 1px solid #dddddd;
  border-top: 5px solid #0788df;
  border-bottom: 5px solid #0788df;
  border-radius: 10px;
  max-width: 300px;
  margin: 0 auto;
  transition: all 600ms ease;
}
.organizing-card-2 .inner-box::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(https://shtheme.com/demosd/eventrox/wp-content/themes/eventrox/images/icons/speaker-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  content: "";
  opacity: 0.3;
}
.organizing-card-2 .info-box {
  position: relative;
  display: inline-block;
  padding: 10px;
  border-radius: 0 30px 30px 0;
  background-color: #0788df;
  width: 90%;
}
.organizing-card-2 .info-box .name {
  position: relative;
  font-size: 18px;
  line-height: 1.2em;
  color: #ffffff;
  font-weight: 500;
}
.organizing-card-2 .info-box .designation {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 400;
}
.organizing-card-2 .image-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
  text-align: center;
}
.organizing-card-2 .image-box .image {
  position: relative;
  display: inline-block;
  height: 150px;
  width: 150px;
  overflow: hidden;
  border: 4px solid #0788df;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: 0.3s all ease;
}
.organizing-card-2 .image-box .image img {
  display: block;
  width: 100%;
  transition: all 300ms ease;
}
.organizing-card-2:hover .image-box .image {
  border-radius: 0;
}

#local-organizing-committee .organizing-card-2 .inner-box {
  padding: 15px 0;
}
#local-organizing-committee .organizing-card-2 .inner-box::before {
  background-position: bottom;
}
#local-organizing-committee .organizing-card-2 .info-box {
  width: 100%;
  background: transparent;
}
#local-organizing-committee .organizing-card-2 .info-box .name {
  color: #0788df;
  font-weight: 600;
  text-align: center;
}

#registration-table {
  border-collapse: separate !important;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
#registration-table td:not(:last-child) {
  border-right: 1px solid #dddddd;
}
#registration-table tr:last-child td {
  border-bottom: none !important;
}
#registration-table thead th {
  background: #0788df;
  background: linear-gradient(23deg, #0562a0 30%, #0788df 60%);
  color: #ffffff !important;
}
#registration-table .td-border {
  border-right: 1px solid #dddddd;
}

.sub-page {
  position: relative;
}
.sub-page::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/sub-page-bg2.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  content: "";
  opacity: 0.08;
  z-index: -1;
}

.rx-logo {
  padding: 5px;
  border-radius: 8px;
  background-color: #ffffff;
}

.custom-link {
  color: #242527;
  transition: 0.3s all ease-in;
  word-wrap: break-word;
}
.custom-link:hover, .custom-link:focus {
  color: #0788df;
}

.map {
  padding: 10px;
  border: 1px solid #f9dc00;
  border-radius: 20px;
}
.map iframe {
  border-radius: 10px;
}

.about-venue .info-box {
  box-shadow: 0px 0px 0px rgba(3, 7, 18, 0.01), 0px 0px 1px rgba(3, 7, 18, 0.02), 0px 0px 3px rgba(3, 7, 18, 0.03), 0px 0px 4px rgba(3, 7, 18, 0.02), 0px 0px 7px rgba(3, 7, 18, 0.03);
  padding: 8px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #faf9f6;
}

.about-jaipur-img {
  border: 5px solid #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.floating-register {
  position: absolute;
  top: -1px;
  right: 5px;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: rgba(116, 116, 116, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: none;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#header-logo-section {
  background-color: #eee;
}
#header-logo-section img {
  max-height: 100px;
}
#header-logo-section .contact-links a {
  text-decoration: none;
  color: #0788df;
}
#header-logo-section #social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  gap: 10px;
  margin-bottom: 0;
}
#header-logo-section #social-links a {
  color: #0788df;
}
#header-logo-section #social-links a i {
  font-size: 1rem;
  color: #0788df;
  transition: 0.3s all ease-in;
}
#header-logo-section #social-links a:hover i, #header-logo-section #social-links a:focus i {
  color: #f9dc00;
}

#centerNavLinks {
  background: #0788df;
  background: linear-gradient(23deg, #0562a0 30%, #0788df 60%);
}
#centerNavLinks .nav-link {
  color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
}

.navbar .navbar-nav ul {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: 0.3s all ease-in-out;
  list-style-type: none;
  background: #0788df;
  background: linear-gradient(23deg, #0562a0 30%, #0788df 60%);
}
.navbar .navbar-nav ul a {
  color: #ffffff !important;
}

.navbar .navbar-nav li:hover > ul,
.navbar .navbar-nav li:focus > ul {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.navbar .navbar-nav li a:hover i,
.navbar .navbar-nav li a:focus i {
  transform: rotate(180deg);
  transition: 0.3s all ease-in-out;
}

.hero-bg {
  background: #f9dc00;
}
.hero-bg h1,
.hero-bg h2 {
  font-weight: bold;
  color: #242527;
}
.hero-bg .btn-main:not(:hover, :focus) {
  background: transparent;
}

#about-message p:first-child {
  letter-spacing: 5px;
  line-height: 1rem;
  font-weight: 500;
  color: #0562a0;
}

.anim-icons {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  z-index: -1;
}
.anim-icons.full-width {
  max-width: 100%;
}
.anim-icons .icon {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
}
.anim-icons .icon-dots {
  width: 72px;
  height: 60px;
  background-image: url(../images/icons/icon-dots.png);
}
.anim-icons .icon-circle-1 {
  width: 500px;
  height: 500px;
  background-image: url(../images/icons/icon-circle-1.png);
  background-size: 100%;
}
.anim-icons .icon-dots {
  left: 50%;
  top: 30%;
}
.anim-icons .icon-circle-1 {
  left: -200px;
  top: -200px;
  opacity: 0.05;
}

.image-column {
  position: relative;
}
.image-column .image {
  position: relative;
  margin-bottom: 0;
}
.image-column .image::before {
  position: absolute;
  right: -3%;
  top: -3%;
  height: 110%;
  width: 110%;
  background-image: url(../images/icons/shape-2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  animation: dizzling 10s infinite;
  transition: all 300ms ease;
  content: "";
}
.image-column .image-box {
  position: relative;
  padding: 0 30px;
  margin-left: 10%;
}
.image-column .image-box img {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  border: 15px solid #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 90%;
  margin: 0 auto;
}
@keyframes dizzling {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0);
  }
}

@media only screen and (max-width: 990px) {
  .image-column .image-box {
    margin-left: 0;
  }
}
#committee-section,
#vanue-section {
  background: #0f0c29;
  background: linear-gradient(to right, #24243e, #302b63, #0f0c29);
}

.tab-button {
  padding: 0.8rem 2.5rem !important;
  border-radius: 5px 5px 0 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  border-bottom: 1px solid #ccc;
}
.tab-button.active {
  background-color: #ffffff;
  color: #0788df;
  border: 1px solid #ccc;
  border-bottom: 0;
}

.tab-content {
  border: 1px solid #ccc;
  background-color: #ffffff;
  margin-top: -2px;
  min-height: 10rem;
  border-radius: 0 0 5px 5px;
  color: black;
}

.welcome-image {
  border-radius: 50%;
  outline: 2px solid #0788df;
  outline-offset: 2px;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

#about-ahmedabad .image img {
  outline: 1px solid #f9dc00;
  outline-offset: 10px;
  border-radius: 10px;
}

.feature-row a {
  text-decoration: none;
  font-weight: 600;
  color: #0562a0;
}

.feature-item {
  border-color: rgba(0, 0, 0, 0.03) !important;
}

.feature-row .feature-item {
  background-color: #ffffff;
  border-radius: 10px;
}

.feature-row a:hover .feature-item,
.feature-row a:focus .feature-item {
  transition: 0.3s all ease-in;
  background-color: #0562a0;
  color: #ffffff;
}

.feature-row .feature-item:hover h5 {
  transition: 0.3s all ease-in;
  color: #ffffff !important;
}

.banner {
  position: relative;
  background-image: url(../images/breadcrum-bg.jpg);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(7, 7, 9, 0.4) 16%, rgba(27, 24, 113, 0.4) 96%);
  z-index: 1;
}
.banner .container {
  z-index: 2;
}
.banner h1,
.banner p,
.banner .breadcrumb {
  color: #ffffff;
}
.banner .breadcrumb {
  background: none;
  margin-top: 1rem;
}
.banner .breadcrumb li + li::before {
  color: #ffffff;
}
.banner .breadcrumb .active {
  color: #ffffff;
  font-weight: 600;
}
@media (max-width: 768px) {
  .banner {
    min-height: 200px;
  }
  .banner h1 {
    font-size: 2rem;
  }
  .banner p {
    font-size: 1rem;
  }
}

#contact .contact-links a {
  color: #242527;
  text-decoration: none;
}
#contact input,
#contact textarea {
  border: 1px solid #ccc !important;
  background: transparent !important;
  transition: border-color 0.3s ease-in;
}
#contact input:focus,
#contact textarea:focus {
  border-color: #0788df !important;
  box-shadow: none !important;
}
#contact label::after,
#contact label::after {
  background: transparent !important;
}

#footer {
  background: linear-gradient(120deg, rgba(7, 7, 9, 0.8) 16%, rgba(27, 24, 113, 0.8) 96%), url(../images/footer.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #ffffff;
}
#footer a {
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s all ease-in;
}
#footer ul {
  list-style-type: circle;
}
#footer #social-icons {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-left: none;
  margin: 25px 0;
  font-size: 1.5rem;
}
#footer #social-icons a:hover,
#footer #social-icons a:focus {
  color: #f9dc00;
}
#footer .copyright,
#footer .credits {
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0;
}

#accommodation-hotels .hotel-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in;
}
#accommodation-hotels .hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
#accommodation-hotels .hotel-card .card-img-top {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
#accommodation-hotels .hotel-card .card-img-top img {
  width: 100%;
  height: 100%;
}
#accommodation-hotels .hotel-card:hover .card-img-top img {
  transition: all 0.3s ease-in-out;
  transform: scale(1.1);
}
#accommodation-hotels .hotel-card .card-body {
  padding: 15px;
}
#accommodation-hotels .hotel-card .card-body .card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
#accommodation-hotels .hotel-card .card-body .card-text {
  font-size: 1rem;
}
#accommodation-hotels .hotel-card .card-body .card-text p {
  margin-bottom: 0;
}
#accommodation-hotels .hotel-card .btn-main {
  border-radius: 10px;
  float: right;
}/*# sourceMappingURL=style.css.map */