* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-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: #023e8a !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: rgba(33, 37, 41, 0.75);
}

.d-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-blue {
  color: #023e8a;
}

.text-red {
  color: #f82249;
}

.heading-text {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #023e8a;
  position: relative;
  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, #023e8a, transparent 70%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.heading-text::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #f82249;
  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: 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: #f82249;
  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: #023e8a;
  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: #f82249;
  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 #023e8a;
  background-color: #ecf7ff;
  color: #023e8a;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.btn-main:hover, .btn-main:focus {
  color: #ffffff;
  background-color: #023e8a;
}

.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);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  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 #0e1b4d;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  z-index: 9;
  margin-bottom: 0;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  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 #023e8a;
  border-bottom: 5px solid #023e8a;
  border-radius: 10px;
  max-width: 300px;
  margin: 0 auto;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  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: #023e8a;
  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 .faculty-info-box {
  text-align: center;
  padding: 10px;
}
.organizing-card-2 .faculty-info-box .name {
  position: relative;
  font-size: 18px;
  line-height: 1.2em;
  color: #0e1b4d;
  font-weight: 500;
}
.organizing-card-2 .faculty-info-box .designation,
.organizing-card-2 .faculty-info-box .city {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #023e8a;
  font-weight: 400;
}
.organizing-card-2 .fac-image-box {
  margin-bottom: 0px !important;
}
.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 #023e8a;
  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%;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  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: #023e8a;
  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: #023e8a;
  background: linear-gradient(23deg, rgb(2, 62, 138) 0%, rgb(14, 27, 77) 100%);
  color: #ffffff !important;
  text-wrap: nowrap;
}
#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;
}

ul.list li::marker {
  color: #0e1b4d;
}

.ribbon-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.ribbon-container .ribbon {
  position: relative;
  color: #fff;
  font: 20px/1.4 sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 12px 30px;
  background-image: linear-gradient(0deg, #071035 5.6%, #023d8a 95.7%);
  animation: ribbon-main 250ms ease-out;
  width: 100%;
  max-width: 420px;
  margin: 30px 30px;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ribbon-container .ribbon i {
  position: absolute;
}
.ribbon-container .ribbon i:first-child, .ribbon-container .ribbon i:nth-child(2) {
  bottom: -20px;
  z-index: -1;
  border: 20px solid transparent;
  border-right-color: #345cb8;
  animation: ribbon-edge 500ms ease-out;
}
.ribbon-container .ribbon i:first-child {
  left: -20px;
}
.ribbon-container .ribbon i:nth-child(2) {
  left: auto;
  right: -20px;
  border-right-color: transparent;
  border-left-color: #345cb8;
}
.ribbon-container .ribbon i:nth-child(3), .ribbon-container .ribbon i:last-child {
  width: 20px;
  bottom: -20px;
  z-index: -2;
  border: 30px solid #031c55;
  border-left-color: transparent;
  animation: ribbon-back 600ms ease-out;
  transform-origin: 100% 0;
}
.ribbon-container .ribbon i:nth-child(3) {
  left: -39px;
}
.ribbon-container .ribbon i:last-child {
  left: auto;
  right: -39px;
  border-right-color: transparent;
  border-left-color: #031c55;
  transform-origin: 0 100%;
}

@keyframes ribbon-main {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes ribbon-edge {
  0%, 50% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes ribbon-back {
  0%, 75% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
#header-logo-section {
  background-color: #eee;
}
#header-logo-section img {
  max-height: 100px;
}
#header-logo-section .contact-links a {
  text-decoration: none;
  color: #023e8a;
}
#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 i {
  font-size: 1rem;
  color: #023e8a;
  transition: 0.3s all ease-in;
}
#header-logo-section #social-links a:hover i, #header-logo-section #social-links a:focus i {
  color: #f82249;
}

#centerNavLinks {
  background: #023e8a;
  background: linear-gradient(23deg, rgb(2, 62, 138) 0%, rgb(14, 27, 77) 100%);
}
#centerNavLinks .nav-link {
  color: #ffffff;
  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: #023e8a;
  background: linear-gradient(23deg, rgb(2, 62, 138) 0%, rgb(14, 27, 77) 100%);
}
.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;
}

#about-message p:first-child {
  letter-spacing: 5px;
  line-height: 1rem;
  font-weight: 500;
  color: #0e1b4d;
}

.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%;
  -webkit-animation: dizzling 10s infinite;
  -moz-animation: dizzling 10s infinite;
  -ms-animation: dizzling 10s infinite;
  -o-animation: dizzling 10s infinite;
  animation: dizzling 10s infinite;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  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% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
}

@media only screen and (max-width: 990px) {
  .image-column .image-box {
    margin-left: 0;
  }
}
#committee-section,
#vanue-section {
  background: #0f0c29;
  background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);
  background: linear-gradient(to right, #24243e, #302b63, #0f0c29);
}

#vanue-section h1:not(.heading-text-white) {
  color: #ffffff;
}

.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: #023e8a;
  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: rgba(0, 0, 0, 0.75);
}

.welcome-image {
  border-radius: 50%;
  outline: 2px solid #023e8a;
  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 #f82249;
  outline-offset: 10px;
  border-radius: 10px;
}

.banner {
  position: relative;
  background-image: url(../images/bradcrums.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.6) 16%, rgba(27, 24, 113, 0.6) 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 .map {
  padding: 10px;
  border: 1px solid #f82249;
  border-radius: 20px;
}
#contact .map iframe {
  border-radius: 10px;
}
#contact .contact-links a {
  color: rgba(33, 37, 41, 0.75);
  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: #023e8a !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/footerbg.jpg);
  background-size: cover;
  background-position: top;
  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: #f82249;
}
#footer .copyright,
#footer .credits {
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */