/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");

@import url("../fonts/Graphik/stylesheet.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Graphik, sans-serif;
}

body {
  font-family: Graphik, sans-serif;
  color: #000;
/*  color: #fff;*/
  -webkit-font-smoothing: antialiased;
  display: block;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #fff;
}

sup {
  vertical-align: middle;
  font-size: smaller;
}

a {
  color: #1ee942;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #1ee942;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Graphik, sans-serif;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
}

h4 {
  font-size: 1em;
}

h5 {
  font-size: 0.83em;
}

h6 {
  font-size: 0.67em;
}

ol {
  /* word-break: break-all; */
  margin: 0;
  padding: 0;
}
ol ol {
  margin-left: 1em;
}

ul {
  list-style: disc;
  /* word-break: break-all; */
  margin: 0;
  padding: 0;
}

ul ul {
  margin-left: 1em;
}

li a {
  color: blue;
}

.main-page {
  margin-top: 70px;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0dee36;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #1ee942;
  box-shadow: 0px 5px 10px rgba(135, 255, 101, 0.5);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Sections Header
--------------------------------------------------------------*/
.section-header {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 5px;
}
.section-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: #1ee942;
  bottom: 0;
  left: calc(50% - 25px);
}
.section-header h2 {
  font-size: 24px;
  /* text-transform: uppercase; */
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header a {
  font-size: 24px;
  color: #000;
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header a:hover {
  font-size: 24px;
  color: #1ee942;
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #9195a2;
}

.section-with-bg {
  /* background-color: #f6f7fd; */
  background-color: #f1f7fd;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  padding: 15px 0;
  /* background: rgba(0, 0, 0, 0.5); */
  background: #101522;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}
#header.header-scrolled,
#header.header-inner {
  background: rgba(6, 12, 34, 0.98);
  height: 70px;
}
#header #logo {
  display: flex;
  justify-items: center;
  align-items: center;
}
#header #logo h1 {
  font-size: 32px;
  margin: 0;
  font-family: Graphik, sans-serif;
  font-weight: 400;
  color: #fff;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  padding-left: 10px;
}
#header #logo h1 span {
  color: #1ee942;
  font-size: 32px;
  font-weight: 600;
  /* letter-spacing: 1px; */
}
#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}
#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 68px;
  vertical-align: middle;
}
@media (max-width: 992px) {
  #header #logo img {
    max-height: 64px;
  }
  #header #logo h1 {
    font-size: 24px;
  }
  #header #logo h1 span {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# 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 > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 12px;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-family: Graphik, sans-serif;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  padding: 6px 4px;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -6px;
  background-color: #1ee942;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #1ee942;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 12px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
  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;
  font-size: 16px;
  text-transform: none;
  color: #fff;
}
.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: #1ee942;
}
.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%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 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 > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #000;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #1ee942;
}
.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;
  color: #000;
  font-size: 15px;
}
.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: #1ee942;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
    url("../img/about-bg.jpg") fixed center center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
  padding: 20px 0;
}
@media (min-width: 1024px) {
  #about {
    background-attachment: fixed;
  }
}
#about:before {
  content: "";
  /* background: rgba(13, 20, 41, 0.8); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#about h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
}
#about h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #1ee942;
}
#about h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
}
#about .about h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #1ee942;
}
#about .where h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #1ee942;
}
#about .when h3::after {
  content: "";
  display: block;
  width: 130px;
  height: 3px;
  background: #1ee942;
  /* margin-bottom: 30px; */
}
#about .about p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
}
#about .where p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-top: 10px;
}
#about .when p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-top: 10px;
}
/*******************************
*         Countdown            *
********************************/
#about .countdown {
  margin-bottom: 10px;
}
#about .countdown div {
  text-align: center;
  margin-right: 10px;
  width: 80px;
  min-width: 60px;
  background: rgba(255, 255, 255, 0.12);
  border-top: 4px solid #1ee942;
  border-bottom: 4px solid #1ee942;
  border-radius: 10px;
}
#about .countdown div h4 {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  padding: 10px;
}
#about .countdown div h5 {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  padding: 0 10px 10px 10px;
}
@media (max-width: 575px) {
  #about .countdown div {
    text-align: center;
    width: 70px;
    padding: 10px 0;
    margin: 10px 8px;
  }
  #about .countdown div h4 {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
  }
  #about .countdown div h5 {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
  }
}

/*--------------------------------------------------------------
# single-paragraph Section
--------------------------------------------------------------*/
#single-paragraph {
  padding: 30px 0 20px 0;
}

#single-paragraph .intro h3 {
  font-size: 20px;
  font-weight: 600;
  padding: 20px 0;
}

#single-paragraph h3.redspan {
  color: #f80000;
}

#single-paragraph .intro p.redspan {
  color: #f80000;
}

#single-paragraph .intro {
  position: relative;
  overflow: hidden;
}
#single-paragraph .intro p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-align: justify;
  text-justify: inter-word;
}

#single-paragraph .intro ul {
  list-style: disc;
  padding: 0 20px 20px;
}

#single-paragraph .intro ol {
  list-style-position: inside;
  padding: 0;
}

#single-paragraph .intro ul li {
  margin-left: 10px;
  padding: 5px;
  position: relative;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

#single-paragraph .intro ol li {
  margin-left: 50px;
  padding: 0 0 10px 30px;
  position: relative;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: justify;
  text-justify: inter-word;
  text-indent: -1.5em;
}

#single-paragraph .intro ol li span{
  color: #f80000;
}

#single-paragraph .intro ul li redspan{
  color: #f80000;
}

#single-paragraph .intro p.required {
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  justify-items: center;
}
.required:before {
  content: "*";
  color: #f80000;
  font-size: 32px;
  font-weight: bold;
  text-align: justify;
  justify-items: center;
  border: 2x solid #e0072f;
}
.ext_link {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: blue;
}

.ext_link_yellow {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: #FFFF00;
}

#single-paragraph .intro button[type="submit"] {
  margin: 30px 0;
  font-size: 16px;
  padding: 12px 50px;
  letter-spacing: 1px;
  font-weight: 400;
  color: #fff;
  border: none;
  border-radius: 50px;
  background-color: #5cdf38;
  box-shadow: 0px 15px 20px rgba(135, 255, 101, 0.5);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}
#single-paragraph .intro button[type="submit"]:hover {
  background-color: #5cdf38;
  box-shadow: 0px 15px 20px rgba(135, 255, 101, 0.5);
  color: #000;
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  #single-paragraph .intro ol li {
    margin-left: 20px;
    padding-bottom: 10px;
  }
}
/*--------------------------------------------------------------
# call-for-special-session-paragraph
--------------------------------------------------------------*/
#call-for-special-session-paragraph {
  padding-bottom: 20px;
}

#call-for-special-session-paragraph .intro h3 {
  font-size: 20px;
  font-weight: 600;
  padding: 20px 0;
}

#call-for-special-session-paragraph h3.redspan {
  color: #f80000;
}

#call-for-special-session-paragraph .intro p.redspan {
  color: #f80000;
}

#call-for-special-session-paragraph .intro {
  position: relative;
  overflow: hidden;
}
#call-for-special-session-paragraph .intro p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-align: justify;
  text-justify: inter-word;
}

#call-for-special-session-paragraph .intro ul {
  list-style: disc;
  padding: 0 20px 20px;
}

#call-for-special-session-paragraph .intro ol {
  list-style-position: inside;
  padding: 0;
}

#call-for-special-session-paragraph .intro ul li {
  margin-left: 10px;
  padding: 5px;
  position: relative;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

#call-for-special-session-paragraph .intro ol li {
  margin-left: 50px;
  padding: 0 0 10px 30px;
  position: relative;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: justify;
  text-justify: inter-word;
  text-indent: -1.5em;
}

#call-for-special-session-paragraph .intro p.required {
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  justify-items: center;
}
.required:before {
  content: "*";
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-align: justify;
  justify-items: center;
  border: 2x solid #e0072f;
}
.ext_link {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: blue;
}

#call-for-special-session-paragraph .intro button[type="submit"] {
  margin: 30px 0;
  font-size: 16px;
  padding: 12px 50px;
  letter-spacing: 1px;
  font-weight: 400;
  color: #fff;
  border: none;
  border-radius: 50px;
  background-color: #5cdf38;
  box-shadow: 0px 15px 20px rgba(135, 255, 101, 0.5);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}
#call-for-special-session-paragraph .intro button[type="submit"]:hover {
  background-color: #5cdf38;
  box-shadow: 0px 15px 20px rgba(135, 255, 101, 0.5);
  color: #000;
  transform: translateY(-5px);
}

/*--------------------------------------------------------------
# Conference Track Section
--------------------------------------------------------------*/
#conf_track {
  padding: 30px 0 20px 0;
}

#conf_track ul {
  list-style: disc;
  padding: 0 20px 20px;
}

#conf_track ul li {
  margin-left: 10px;
  padding: 5px;
  position: relative;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

#conf_track p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-align: justify;
  text-justify: inter-word;
}

/*--------------------------------------------------------------
# Important Dates Section
--------------------------------------------------------------*/
#important_dates {
  padding: 30px 0 20px 0;
}
#important_dates .intro {
  position: relative;
  overflow: hidden;
}
#important_dates p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# accepted_paper_list Section
--------------------------------------------------------------*/
#accepted_paper_list {
  padding: 30px 0 20px 0;
}
#accepted_paper_list .intro {
  position: relative;
  overflow: hidden;
}
#accepted_paper_list p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# registered_paper_list Section
--------------------------------------------------------------*/
#registered_paper_list {
  padding: 30px 0 20px 0;
}
#registered_paper_list .intro {
  position: relative;
  overflow: hidden;
}
#registered_paper_list p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

#registered_paper_list .intro p.small_required {
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  justify-items: center;
}
.small_required:before {
  content: "*";
  color: #f80000;
  font-size: 20px;
  font-weight: bold;
  text-align: justify;
  justify-items: center;
  border: 2x solid #e0072f;
}
.red-star {
  color: #FF0000;
}
/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
#venue {
  padding: 30px 0 20px;
}
#venue .container-fluid {
  margin-bottom: 3px;
}

.map-responsive {
  position: relative;
  padding-bottom: 30%;
  height: 0;
  overflow: hidden;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 2px solid #1ee942;
}
/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
#gallery {
  padding: 60px;
  overflow: hidden;
}
#gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
#gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1ee942;
}
#gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1ee942;
}
#gallery .swiper-slide-active {
  text-align: center;
}
@media (min-width: 992px) {
  #gallery .swiper-wrapper {
    padding: 40px 0;
  }
  #gallery .swiper-slide-active {
    border: 5px solid #1ee942;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.15);
    margin-top: 6px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding: 30px 0 50px 0;
}
.contact .info {
  border-top: 3px solid #1ee942;
  border-bottom: 3px solid #1ee942;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #1ee942;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  color: #0f2c49;
}

.contact .info h5 {
  padding: 10px 0 5px 60px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #1ee942;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #000;
  font-weight: 400;
}

.contact .info .email p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #000;
  font-weight: 400;
}

.contact .info .phone p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #000;
  font-weight: 400;
}

.contact .info .email a,
.contact .info .address a,
.contact .info .phone a {
  color: blue;
  font-weight: 500;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #1ee942;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #1ee942;
  border-bottom: 3px solid #1ee942;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 14px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding-bottom: 8px;
}

.contact .php-email-form input, 
.contact .php-email-form select,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  border-radius: 4px;
  border: solid 1.5px #1ee942;
  -webkit-transition: 1s; /* Safari */
  transition: 1s;
}

.contact .php-email-form input:hover,
.contact .php-email-form select:hover,
.contact .php-email-form textarea:hover {
  box-shadow: 0 0 5pt 0.5pt #1ee942;
}

.contact .php-email-form input:focus,
.contact .php-email-form select:focus,
.contact .php-email-form textarea:focus {
  box-shadow: 0 0 5pt 1pt #1ee942;
  outline-width: 0px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form select {
  height: 44px;
  width: 100%;
  padding: 10px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form .button-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .php-email-form button[type="submit"] {
  font-size: 18px;
  padding: 12px 50px;
  letter-spacing: 1px;
  font-weight: 400;
  color: #fff;
  border: none;
  border-radius: 50px;
  background-color: #5cdf38;
  box-shadow: 0px 15px 20px rgb(92 223 56 / 70%);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

.contact .php-email-form button[type="submit"]:hover {
  background-color: #5cdf38;
  box-shadow: 0px 15px 20px rgba(135, 255, 101, 0.5);
  color: #000;
  transform: translateY(-5px);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.help-block.with-errors {
  color: red;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
}

/*-------------------------------
##### Contact Form messages #####
--------------------------------*/
.form-messages {
  color: #00bb00;
  display: none;
  font-family: Graphik, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  padding: 15px;
  text-align: center;
}

.error {
  display: none;
  background: #bb0000;
  box-shadow: 0px 15px 20px rgba(187, 0, 0, 0.5);
  color: #fff;
  font-family: Graphik, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  padding: 15px;
  text-align: center;
}

.success {
  display: none;
  background: #00bb00;
  box-shadow: 0px 15px 20px rgba(0, 187, 0, 0.5);
  color: #fff;
  font-family: Graphik, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  padding: 15px;
  text-align: center;
}

/*--------------------------------
##### Honeypot Configuration #####
--------------------------------*/
.user-cannot-see {
  display: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  position: relative;
  /* position: fixed; */
  bottom: 0;
  width: 100%;
  background: #000;
  padding: 0 0 25px 0;
  color: #eee;
  font-size: 16px;
}
#footer .footer-top {
  background: #000;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 16px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: Graphik, sans-serif;
  font-weight: 600;
  color: #fff;
}
#footer .footer-top .footer-info img {
  height: 40px;
  margin-bottom: 10px;
}
#footer .footer-top .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: Graphik, sans-serif;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid #1ee942;
}
#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: 5px;
  color: #1ee942;
  font-size: 16px;
}
#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #262c44;
  padding: 10px 0;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #eee;
}
#footer .footer-top .footer-links ul a:hover {
  color: #1ee942;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}
#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}
#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}
#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #1ee942;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}
#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #e0072f;
}
#footer .footer-bottom {
  padding-top: 20px;
  color: #fff;
}

#footer .copyright {
  float: left;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
}

#footer .copyright a {
  transition: 0.3s;
}

#footer .copyright a:hover {
  color: yellow;
  transition: 0.3s;
}

#footer .credits {
  float: right;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
}

#footer .credits a {
  transition: 0.3s;
}

#footer .credits a:hover {
  color: yellow;
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

/*=====================================
*         Organizing_committee        *
=====================================*/
#hero .Organizing_committee {
  width: 100%;
  height: 50vh;
  background: url(../img/vnit/Main_Bldg_Final_2.jpg) top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#hero .Organizing_committee:before {
  content: "";
  background: rgba(13, 20, 41, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
#team {
  padding: 20px 0 10px 0;
}
#team .img-box {
  margin: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#team .member {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 20px;
}
#team .member .pic {
  border-radius: 4px;
  overflow: hidden;
}
#team .member img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  transition: all ease-in-out 0.4s;
}
#team .member:hover img {
  transform: scale(1.1);
}
#team .member .member-info {
  position: absolute;
  left: 0px;
  right: 0px;
  padding: 20px 0;
}

#team .member h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
  position: relative;
  padding-bottom: 10px;
}
#team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 4px;
  background: #1ee942;
  bottom: 0;
  left: calc(50% - 25px);
}
#team .member span {
  font-style: normal;
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

/*****************************************
*           Accordian List  FAQ             *
*****************************************/
.faq {
  padding: 30px 0 20px 0;
}
.faq h3 {
  margin-top: 30px;
  padding: 10px 0 0 25px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.faq h4 {
  margin-top: 50px;
  padding: 10px 0 0 25px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}
.faq .faq-list {
  list-style: none;
}
.faq .faq-list li {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #1ee942;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  padding-left: 25px;
  cursor: pointer;
  color: #1ee942;
  transition: 0.3s;
}
.faq .faq-list a {
  font-size: 16px;
  font-weight: 500;
  color: blue;
}
.faq .faq-list i {
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: -2px;
}
.faq .faq-list p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  padding: 10px 0 0 25px;
  text-align: justify;
  text-justify: inter-word;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list .collapsed {
  color: #000;
}
.faq .faq-list .collapsed:hover {
  color: #48bd5c;
}
.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}
.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}
.faq .faq-list .ext_link {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: blue;
  display: list-item;
  list-style-type: square;
  list-style-position: inside;
}

.faq .faq-list .ext_link_wo_bullet {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: blue;
  display: list-item;
  list-style-type: none;
  list-style-position: inside;
}
/*==================================
*          Grid Layout           *
===================================*/
html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  line-height: 1.6;
}

.grid-container {
  width: 60%;
  margin: 2rem auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 5vw);
  grid-gap: 0.5rem 1.5rem;
}

.picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all ease-in-out 0.4s;
}

.picture img:hover {
  transform: scale(1.1);
}

.picture:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 5;

  /** Alternative Syntax **/
  /* grid-column: 1 / span 2;  */
  /* grid-row: 1 / span 2; */
}

.picture:nth-child(2) {
  grid-column-start: 5;
  grid-column-end: 9;
  grid-row-start: 1;
  grid-row-end: 3;

  /** Alternative Syntax **/
  /* grid-column: 3 / span 2;  */
  /* grid-row: 1 / span 2; */
}

.picture:nth-child(3) {
  grid-column-start: 5;
  grid-column-end: 7;
  grid-row-start: 3;
  grid-row-end: 5;

  /** Alternative Syntax **/
  /* grid-column: 5 / span 4;
  grid-row: 1 / span 5; */
}

.picture:nth-child(4) {
  grid-column-start: 7;
  grid-column-end: 9;
  grid-row-start: 3;
  grid-row-end: 5;

  /** Alternative Syntax **/
  /* grid-column: 1 / span 4;  */
  /* grid-row: 3 / span 3; */
}

.picture:nth-child(5) {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 5;
  grid-row-end: 7;

  /** Alternative Syntax **/
  /* grid-column: 1 / span 4; */
  /* grid-row: 6 / span 3; */
}

.picture:nth-child(6) {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 5;
  grid-row-end: 7;

  /** Alternative Syntax **/
  /* grid-column: 5 / span 4; */
  /* grid-row: 6 / span 3; */
}

.picture:nth-child(7) {
  grid-column-start: 5;
  grid-column-end: 9;
  grid-row-start: 5;
  grid-row-end: 7;

  /** Alternative Syntax **/
  /* grid-column: 5 / span 4; */
  /* grid-row: 6 / span 3; */
}

/*=========================================
*              Conference Venue           *
==========================================*/
/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
#venue {
  padding: 60px 0;
}
#venue .container-fluid {
  margin-bottom: 3px;
}
#venue .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  padding: 20px;
}

#venue .venue-info {
  float: right;
  width: 50%;
  /* padding-left: 10px; */
}

#venue .venue-info img {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 991px) {
  #venue .venue-info img {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/*=========================================
*              Other Settings             *
==========================================*/
.iframe-border {
  border: 2px solid #1ee942;
}

/* Text Effect */
.heavy {
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(0, 0, 0, 0.1);
}

/*=====================================
*            Light Card              *
=====================================*/
.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
}
.card-container .card {
  position: relative;
  width: 380px;
  height: 400px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.05),
    inset -5px -5px 5px rgba(255, 255, 255, 0.5),
    5px 5px 5px rgba(0, 0, 0, 0.05), -5px -5px 5px rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  margin: 30px;
}
.card-container .card .box {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  transition: 0.5s;
  padding-top: 20px;
}
.card-container .card:hover .box {
  transform: translateY(-50px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, #b95ce4, #4f29cd);
}
.card-container .card .box .content {
  padding: 20px;
  text-align: center;
}
.card-container .card .box .content h2 {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 100px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.06);
  transition: 0.5s;
  pointer-events: none;
}
.card-container .card:hover .box .content h2 {
  color: rgba(0, 0, 0, 0.05);
}
.card-container .card .box .content h3 {
  font-size: 20px;
  color: #000;
  z-index: 1;
  transition: 0.5s;
}

.card-container .card:hover .box .content h3 {
  font-size: 20px;
  color: #fff;
  z-index: 1;
  transition: 0.5s;
}

.card-container .card .box .content h4 {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.card-container .card:hover .box .content h4 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  z-index: 1;
  transition: 0.5s;
}
.card-container .card .box .content p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  z-index: 1;
  transition: 0.5s;
  margin: 50px 0;
}

.card-container .card .box .content p span {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 50px 0;
}

.card-container .card:hover .box .content p span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.b-margin {
  margin: 0;
  padding: 0;
  bottom: 50px;
}

.card-container .card .box .content ul {
  margin: 50px 0;
}

.card-container .card .box .content ul li {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  z-index: 1;
  transition: 0.5s;
  padding-bottom: 20px;
}

.card-container .card:hover .box .content h3 {
  color: #fff;
}

.card-container .card:hover .box .content p {
  color: #000;
}

.card-container .card .box .content a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background: #03a9f4;
  margin-top: 15px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.card-container .card:hover .box .content a {
  background: #ff568f;
}

/***************************
*        Awards Card       *
***************************/
#award {
  padding: 30px 0 30px 0;
}
#award .img-box {
  margin: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
/* #award .member {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
} */
#award .pic {
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 0 50px;
}

/* (B) RESPONSIVE IMAGE */
.textcenter img {
  width: 100%;
}

.textcenter {
  position: relative;
  max-width: 300px;
}

/* .textcenter figcaption {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 18px;
  font-weight: 600;
} */

.textcenter h3 {
  display: table-caption;
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 10px;
  color: #cda629;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.paper_title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.paper_participant {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding-left: 10px;
}

.gold-star {
  color: #cda629;
  font-size: 20px;;
}
/*===============================
*          Sponsorship          *
===============================*/
.price-section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.center-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.price-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.price-container .price-card {
  position: relative;
  width: 400px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.05),
    inset -5px -5px 5px rgba(255, 255, 255, 0.5),
    5px 5px 5px rgba(0, 0, 0, 0.05), -5px -5px 5px rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  margin: 30px;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.pricingTable {
  text-align: center;
}
.pricingTable .pricingTable-header {
  padding: 20px 0;
  position: relative;
  transition: all 0.3s ease 0s;
  border-radius: 15px 15px 0 0;
}

/* .pricingTable:hover .pricingTable-header {
  background: #09b2c6;
} */
.pricingTable .pricingTable-header:after,
.pricingTable .pricingTable-header:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #d9d9d8;
  position: absolute;
  bottom: 12px;
}
.pricingTable .pricingTable-header:before {
  left: 40px;
}
.pricingTable .pricingTable-header:after {
  right: 40px;
}
.pricingTable .price-heading {
  font-family: "Lobster", cursive;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  letter-spacing: 2px;
  margin-top: 0;
}
.pricingTable .price-value {
  display: inline-block;
  position: relative;
  font-size: 20px;
  font-weight: 600;
  /* color: #09b1c5; */
  color: #000;
  transition: all 0.3s ease 0s;
}
/* .pricingTable:hover .price-value {
  color: #fff;
} */
.pricingTable .currency {
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  top: 6px;
  left: -19px;
}
.pricingTable .month {
  font-size: 16px;
  color: #fff;
  position: absolute;
  bottom: 15px;
  right: -30px;
  text-transform: uppercase;
}
.pricingTable .pricing-content {
  padding-top: 50px;
  background: #fff;
  position: relative;
  border: 5px 5px 5px rgba(0, 0, 0, 0.7);
  border-radius: 0 0 15px 15px;
  text-align: center;
}
.pricingTable .pricing-content:after,
.pricingTable .pricing-content:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #7c7c7c;
  position: absolute;
  top: 12px;
}
.pricingTable .pricing-content:before {
  left: 40px;
}
.pricingTable .pricing-content:after {
  right: 40px;
}
.pricingTable .pricing-content ul {
  padding: 0 20px 30px;
  margin: 0;
  list-style: none;
}
.pricingTable .pricing-content ul:after,
.pricingTable .pricing-content ul:before {
  content: "";
  width: 8px;
  height: 46px;
  border-radius: 3px;
  background: linear-gradient(to bottom, #818282 50%, #727373 50%);
  position: absolute;
  top: -22px;
  z-index: 1;
  box-shadow: 0 0 5px #000;
  transition: all 0.3s ease 0s;
}
/* .pricingTable:hover .pricing-content ul:after,
.pricingTable:hover .pricing-content ul:before {
  background: linear-gradient(to bottom, #40c4db 50%, #34bacc 50%);
} */
.pricingTable .pricing-content ul:before {
  left: 44px;
}
.pricingTable .pricing-content ul:after {
  right: 44px;
}
.pricingTable .pricing-content ul li {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding: 10px 0;
  border-bottom: 1px solid #d9d9d8;
}
.pricingTable .pricing-content ul li:last-child {
  border-bottom: none;
}

.platinum {
  background: linear-gradient(
    top,
    #7a7a88,
    #ffffff 25%,
    #dedeff 38%,
    #ffffff 63%,
    #dedeff 87%,
    #7a7a88
  );
  background: -webkit-linear-gradient(
    top,
    #7a7a88,
    #ffffff 25%,
    #dedeff 38%,
    #ffffff 63%,
    #dedeff 87%,
    #7a7a88
  );
}

.gold {
  background: linear-gradient(
    top,
    #a95,
    #f2f2f2 25%,
    #fff 38%,
    #c5c5c5 63%,
    #f7f7f7 87%,
    #a95
  );
  background: -webkit-linear-gradient(
    top,
    #a95,
    #fea 25%,
    #fff 38%,
    #dc8 63%,
    #fea 87%,
    #a95
  );
}

.silver {
  background: linear-gradient(
    top,
    rgba(38, 38, 38, 0.8),
    #e6e6e6 25%,
    #fff 38%,
    #c5c5c5 87%,
    rgba(38, 38, 38, 0.8)
  );
  background: -webkit-linear-gradient(
    top,
    #c5c5c5,
    #e6e6e6 25%,
    #fff 38%,
    #c5c5c5 87%,
    #c5c5c5
  );
}

.bronze {
  background: -webkit-linear-gradient(
    top,
    #be7023,
    #d89553 25%,
    #dbb085 38%,
    #dbb085 63%,
    #d89553 87%,
    #be7023
  );
}
.rose {
  background: linear-gradient(
    top,
    #dda6ae,
    #ffe6e9 25%,
    #fff 38%,
    #ffe6e9 63%,
    #f7f7f7 87%,
    #dda6ae
  );
  background: -webkit-linear-gradient(
    top,
    #dda6ae,
    #ffe6e9 25%,
    #fff 42%,
    #ffe6e9 40%,
    #f7f7f7 10%,
    #dda6ae
  );
}

@media screen and (max-width: 990px) {
  .pricingTable {
    margin-bottom: 25px;
  }
}

/*---------------------------------------
*                 Table                 *
----------------------------------------*/
.table-container {
  width: 50%;
  margin: 2rem auto;
}

.reg-table-container {
  width: 100%;
  margin: 2rem auto;
}

.apl-table-container {
  width: 75%;
  margin: 2rem auto;
}

.rpl-table-container {
  width: 75%;
  margin: 2rem auto;
}

.table {
  width: 100%;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
}
.heading {
  flex-basis: 50%;
  text-align: left;
}

.row-dark-color {
  background: rgba(135, 255, 101, 0.4);
  font-size: 16px;
  font-weight: 500;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  padding: 1rem 20px;
  border: 1px solid #1ee942;
}

th {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: forestgreen;
}
td {
  font-size: 16px;
  font-weight: 400;
}

thead th:nth-child(1) {
  padding: 1rem 5px;
}

tbody tr:nth-child(even) {
  /* background-color: #fff; */
  background-color: rgba(135, 255, 101, 0.4);
}
tbody tr:nth-child(odd) {
  background-color: rgba(135, 255, 101, 0.4);
}

.no_cellborder {
  border: 0;
}

@media (max-width: 500px) {
  .container {
    width: 90%;
  }
  .table {
    flex-direction: column-reverse;
  }
  .heading {
    width: 100%;
    text-align: center;
  }
  .search-box {
    width: 100%;
    margin-bottom: 10px;
  }
  thead {
    display: none;
  }
  tbody,
  tr,
  td {
    display: block;
    width: 100%;
  }
  tr {
    margin-bottom: 2rem;
  }
  td {
    text-align: left;
    position: relative;
  }
  td:before {
    content: attr(data-label);
    position: absolute;
    left: 5px;
    font-weight: 600;
    color: #000;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/vnit/Main_Bldg_Final_2.jpg") top center;
  background-size: cover;
  position: relative;
}
#hero:before {
  content: "";
  /* background: rgba(45, 53, 69, 0.5); */
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .hero-container {
  position: absolute;
  bottom: 0;
  left: 50px;
  top: 25%;
  right: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#hero .container {
  text-align: center;
  padding-top: 50px;
}
@media (max-width: 992px) {
  #hero .hero-container {
    padding-top: 0;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 56px;
  color: #fff;
}
#hero h1 span {
  color: #1ee942;
}
#hero h2 {
  color: #eee;
  margin: 15px 0 0 0;
  font-size: 22px;
}
#hero h3 {
  color: #fff;
  font-family: Graphik, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}

#hero .about-btn {
  font-family: Graphik, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 20px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #1ee942;
}

#hero .about-btn:hover {
  background: #1ee942;
  color: #000;
  font-family: Graphik, sans-serif;
  font-weight: 500;
  font-size: 16px;
}

#hero .marquee {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;  
  bottom: 20px;
  left: 50px;
  right: 50px;
  top: 90%;
  color: #ffff00;
  font-family: Graphik, sans-serif;
  font-weight: 400;
  font-size: 20px;
}

.marquee_ext_link {
  cursor: pointer;
  color: blue;
  font-family: Graphik, sans-serif;
  font-weight: 400;
  font-size: 20px;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

.tricolor-orange {
  color: orange;
}

.tricolor-white {
  color: #fff;
}

.tricolor-green {
  color: #1ee942;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients-header {
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 5px;
}
.clients-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: #1ee942;
  bottom: 0;
  left: calc(50% - 25px);
}
.clients-header h2 {
  margin-bottom: 10px;
  color: #000;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
}

.clients {
  padding: 10px 0;
  text-align: center;
  position: relative;
}

.clients img {
  max-height: 100px;
  width: auto;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  /* padding: 10px; */
  /* filter: grayscale(100); */
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}


@media (max-width: 768px) {
  .clients img {
    max-width: 80%;
    margin: auto;
  }
}

/*--------------------------------------------------------------
# Hotels
--------------------------------------------------------------*/
.hotels .hotels-wrap {
  border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
}
.hotels .hotel-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  overflow: hidden;
  background: #fff;
  height: 100px;
}
.hotels .hotel-logo img {
  transition: all 0.3s ease-in-out;
  height: 36px;
}
.hotels .hotel-logo:hover img {
  filter: none;
  transform: scale(1.1);
}

/* Additional CSS */
.ext_link_inline {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: blue;
}

/*--------------------------------------------------------------
# camera-paragraph Section
--------------------------------------------------------------*/
#camera-paragraph {
  padding: 30px 0 20px 0;
}

#camera-paragraph .intro h3 {
  font-size: 20px;
  font-weight: 600;
  padding: 20px 0;
}

#camera-paragraph h3.redspan {
  color: #f80000;
}

#camera-paragraph .intro p.redspan {
  color: #f80000;
}

#camera-paragraph .intro {
  position: relative;
  overflow: hidden;
}
#camera-paragraph .intro p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-align: justify;
  text-justify: inter-word;
}

#camera-paragraph .intro ul {
  list-style: disc;
  padding: 0 20px 20px;
}

#camera-paragraph .intro ol {
  list-style-position: inside;
  padding: 0;
}

#camera-paragraph .intro ul li {
  margin-left: 10px;
  padding: 5px;
  position: relative;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

#camera-paragraph .intro ol li {
  margin-left: 50px;
  padding: 0 0 10px 30px;
  position: relative;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: justify;
  text-justify: inter-word;
  text-indent: -1.5em;
}

#camera-paragraph .intro ol li span{
  color: #f80000;
}

#camera-paragraph .intro p.required {
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  justify-items: center;
}
.required:before {
  content: "*";
  color: #f80000;
  font-size: 32px;
  font-weight: bold;
  text-align: justify;
  justify-items: center;
  border: 2x solid #e0072f;
}
.ext_link {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: blue;
}

#camera-paragraph .intro button[type="submit"] {
  margin: 30px 0;
  font-size: 16px;
  padding: 12px 50px;
  letter-spacing: 1px;
  font-weight: 400;
  color: #fff;
  border: none;
  border-radius: 50px;
  background-color: #5cdf38;
  box-shadow: 0px 15px 20px rgba(135, 255, 101, 0.5);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}
#camera-paragraph .intro button[type="submit"]:hover {
  background-color: #5cdf38;
  box-shadow: 0px 15px 20px rgba(135, 255, 101, 0.5);
  color: #000;
  transform: translateY(-5px);
}

.customIndent {
  margin-left: 25px;
}

@media (max-width: 991px) {
  #camera-paragraph .intro ol li {
    margin-left: 20px;
    padding-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Certificate
--------------------------------------------------------------*/
/*=====================================
*         Organizing_committee        *
=====================================*/
#hero .certificate {
  width: 100%;
  height: 50vh;
  background: url(../img/vnit/Main_Bldg_Final_2.jpg) top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#hero .certificate:before {
  content: "";
  background: rgba(13, 20, 41, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .certificate-container {
  position: absolute;
  bottom: 0;
  left: 50px;
  top: 25%;
  right: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

@media (max-width: 992px) {
  #hero .certificate-container {
    padding-top: 0;
  }
}


/*--------------------------------------------------------------
# Financial Sponsor
--------------------------------------------------------------*/
.sponsors-header {
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 5px;
}

.sponsors-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: #1ee942;
  bottom: 0;
  left: calc(50% - 25px);
}

.sponsors-header h2 {
  margin-bottom: 10px;
  color: #000;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
}

.sponsors {
  padding: 10px 0;
  text-align: center;
  position: relative;
}

.sponsors img {
  max-height: 128px;
  width: auto;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  /* padding: 10px; */
  /* filter: grayscale(100); */
}

.sponsors img:hover {
  filter: none;
  transform: scale(1.15);
}

.sponsors .sponsors-wrap {
  border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
}
.sponsors .sponsors-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  overflow: hidden;
  background: #fff;
  height: 100px;
}
.sponsors .sponsors-logo img {
  transition: all 0.3s ease-in-out;
  height: 36px;
}
.sponsors .sponsors-logo:hover img {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .sponsors img {
    max-width: 80%;
    margin: auto;
  }
}

/*===============================
*          Sponsorship          *
===============================*/
.endorse-section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.center-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.endorse-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.endorse-container .endorse-card {
  position: absolute;
  width: fit-content;
  padding: 30px 30px 30px 30px;  
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.2);  
  margin: 50px;
  bottom: 10px;
  left: 0px;
  display: block;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  /* backdrop-filter: blur(5px); */
}

.image
{
  display: flex;
  justify-content: center;
  align-items: center;
}

.endorse-container .endorse-card .img100 {
  width: unset;
  width: auto;
  height: 100px;
}

.endorse-container .endorse-card .img150 {
  width: unset;
  width: auto;
  height: 150px;
}

.endorse-header {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
}

.endorse-card ul {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  /* margin-bottom: 10px; */
  text-align: left;
}

.select {
  padding: 8px 12px;
  color: #333333;
  background-color: #eeeeee;
  border: 1px solid #dddddd;
  cursor: pointer;
  border-radius: 5px;
}