:root {
  --poppins-font: "Poppins", sans-serif;
  --spartan-font: "Spartan", sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #f7f8ff;
}

html {
  scroll-behavior: smooth;
}

a,
a:hover {
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease-in-out;
}

img {
  display: inline-block;
  max-width: 100%;
}
  .fsfgf-16 {
    font-size: 1.6rem;
    list-style-type: disc !important;
  }
.navbar.navbar-expand-lg {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  padding: 0;
  z-index: 9;
  padding-top: 3rem;
}
.navbar.navbar-expand-lg img {
  height: 80px;
}
.navbar.navbar-expand-lg li {
  display: inline-flex;
  align-items: center;
}
.navbar.navbar-expand-lg li.active a::after {
  width: 25px;
}
.navbar.navbar-expand-lg .nav-link {
  font-size: 11px;
  font-weight: 500;
  font-family: var(--spartan-font);
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  line-height: 2;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}
.navbar.navbar-expand-lg .nav-link::after {
  content: "";
  bottom: -8px;
  width: 0%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: #bd50be;
  position: absolute;
  transition: 0.8s cubic-bezier(0.69, -0.36, 0, 1.51);
}
/*.navbar.navbar-expand-lg .nav-link:hover {*/
/*  color: #bd50be;*/
/*}*/
.navbar.navbar-expand-lg .nav-link:hover::after {
  width: 25px;
}

.mainBanner {
  background-color: #865abc;
  position: relative;
  border-bottom: 5px solid #865abc;
}
.mainBanner img:first-child {
  width: 100%;
}
.mainBanner::after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 5px;
  background-color: #bd50be;
  width: 40%;
  left: 0;
}
.mainBanner .mainBannerInner {
  position: absolute;
  left: 0;
  z-index: 2;

  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
}
.mainBanner .mainBannerInner h4 {
  color: #482084;
  font-weight: bold;
  font-size: 2.5rem;
  text-shadow: 1px 1px 0 white;
}
.mainBanner .mainBannerInner h1 {
  font-weight: bold;
  font-size: 4rem;
  color: #9069c1;
}
.mainBanner .mainBannerInner h1 span {
  color: #4c207f;
}
.mainBanner .mainBannerInner h5 {
  font-weight: bold;
  color: #464545;
  font-size: 2.2rem;
}
.mainBanner .mainBannerInner p {
  font-size: 2rem;
  font-weight: 500;
}
.mainBanner .mainBannerInner p span {
  color: #5d448e;
  display: block;
}
.mainBanner .mainBannerInner h3 {
  font-weight: bold;
  color: #464545;
  font-size: 2rem;
  margin: 10px 0;
}
.mainBanner .mainBannerInner h5 {
  font-weight: bold;
  color: #464545;
  font-size: 2rem;
}
.mainBanner .mainBannerInner .btn {
  margin-top: 2rem;
  margin-bottom: 5vh;
}
.mainBanner .bannerImg {
  position: absolute;
  top: 15%;
  left: 0;
}
.mainBanner .bannerImg1 {
  animation: rotate 9s linear infinite;
}
.mainBanner .bannerImg2 {
  left: unset;
  right: 25%;
  top: unset;
  bottom: 0;
  animation: rotate 5s linear infinite;
}
.mainBanner .bannerImg3 {
  left: unset;
  right: 15%;
  animation: float 3s ease-in-out infinite;
  top: 50%;
}
.mainBanner .bannerImg4 {
  left: unset;
  right: 10%;
  top: 10%;
  animation: float 3s ease-in-out infinite;
}

.btn-primary {
  font-weight: 500;
  border: 2px solid;
  background-color: #bd50be;
  display: inline-flex;
  align-items: center;
}
.btn-primary:hover {
  background-color: #fff;
  color: #bd50be;
}

.btn-danger {
  font-weight: 500;
  border: 0;
  background-color: #9674c3;
  display: inline-flex;
  align-items: center;
  font-size: 1.6rem;
  padding: 1rem 2.5rem;
}
.btn-danger:hover {
  background-color: #4c2180;
  color: #fff;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.welcome {
  background: url("../images/Group 1000003530.png") no-repeat bottom center;
  padding: 5rem 0;
}
.welcome h2 {
  font-size: 5rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.welcome h2 span {
  color: #bd50be;
}
.welcome p {
  font-size: 1.6rem;
  margin-right: 5%;
}
.welcome .welcome_img {
  position: relative;
}
.welcome .welcome_img img:last-child {
  position: absolute;
  bottom: -30px;
  left: -26px;
  width: 200px;
}
.welcome .btn {
  background-color: #865abc;
  margin-top: 3rem;
}
.welcome .btn:hover {
  background-color: #4c2180;
}

.commiteee {
  padding: 5rem 0;
  background-color: #F5F5F5;
}

.commiteee h2 {
  font-size: 5rem;
}
.commiteee h2 span {
  color: #bd50be;
}
.commiteee p {
  font-size: 1.8rem;
}
.commiteee figure {
  margin-top: 3rem;
}
.commiteee figure figcaption {
  background-color: #fff;
  padding: 20px 10px;
}
.commiteee figure figcaption h4 {
  font-size: 2rem;
}
.commiteee figure figcaption hr {
  border-top: 3px solid;
  opacity: 1;
  width: 30%;
  margin: 1rem auto;
  color: #bd50be;
}
.commiteee figure figcaption p {
  font-size: 1.6rem;
}

.office_points {
  padding: 5rem 0;
  background-color: #4c2180;
}
.office_points .box {
  text-align: center;
  background-color: #fff;
  padding: 4rem 0;
  border-radius: 15px 0 15px 0;
}
.office_points .box h3 {
  margin-top: 2rem;
}

.register {
  padding: 5rem 0;
}
.register h2 {
  font-size: 5rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.register h2 span {
  color: #bd50be;
}
.register p {
  font-size: 18px;
}
.register .table > :not(caption) > * > * {
  padding: 1.5rem 1.5rem;
}
.register table {
  font-size: 20px;
  border: 1px solid;
}
.register table .table-light {
  background-color: #bd50be;
}
.register table .table-light td {
  background-color: #bd50be;
}
.register .btn {
  background-color: #ee91d7;
  padding: 1.5rem 10rem;
  margin-top: 3rem;
}
.register .btn:hover {
  background-color: #bd50be;
}

.conference {
  padding: 5rem 0;
}
.conference h2 {
  font-size: 5rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.conference h2 span {
  color: #bd50be;
}
.conference p {
  font-size: 1.6rem;
}
.conferenceImg {
  margin-bottom: 15px;
}
.conferenceBox {
  background-color: #ee91d7;
  padding: 15px;
  color: #fff;
  height: calc(100% - 15px);
}
.conferenceBox h3 {
  display: flex;
  align-items: center;
}
.conferenceBox h3 strong {
  font-size: 5rem;
  font-weight: bold;
  margin-right: 5px;
}
.conferenceBox h3 span {
  font-size: 24px;
}
.conferenceBox p {
  font-size: 14px;
  line-height: 24px;
}
.conferenceBox ul li {
  font-size: 14px;
  font-weight: 600;
}

footer {
  background: url("../images/Group 9115.png") no-repeat bottom center;
  background-color: #4c2180;
  padding: 2rem 0;
  color: #fff;
}
footer .footerLogo {
  background-color: #fff;
  padding: 10px;
  display: inline-block;
  margin-bottom: 2rem;
  border-radius: 15px 0 15px 0;
}
footer .footerLogo1 {
  border-radius: 15px 0 15px 0;
  background-color: #fff;
  padding: 10px;
  display: inline-block;
  margin-bottom: 2rem;
}
footer h4 {
  font-size: 19px;
  margin-bottom: 2rem;
}
footer p {
  font-size: 1.6rem;
}
footer p img {
  width: 18px;
}
footer h6 {
  font-size: 1.6rem;
  color: #FCCA05;
  margin-bottom: 1rem;
}
footer ul li {
  margin: 0 10px;
}
footer .container .row > div:not(:last-child) {
  border-right: 1px solid #fff;
  padding: 0 20px;
}

.bottomFooter {
  background-color: #4c2180;
  padding: 3rem 0;
}
.bottomFooter p {
  color: #fff;
  font-size: 1.6rem;
  margin: 0;
}
.bottomFooter ul li {
  margin: 0 15px;
}
.bottomFooter ul li a {
  font-size: 1.6rem;
  color: #fff;
}

.event {
  padding: 5rem 0;
  background-color: #F5F5F5;
}
.event h2 {
  font-size: 5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #bd50be;
}
.event p {
  font-size: 1.6rem;
}
.event .btn {
  background-color: #ee91d7;
  padding: 1.5rem 3rem;
  margin-top: 3rem;
}
.event .btn:hover {
  background-color: #bd50be;
}
.event .nav-tabs button {
  font-size: 2rem;
  padding: 15px;
  color: #464545;
}
.event .nav-tabs button.active {
  background-color: transparent;
  border: 0;
  border-bottom: 3px solid #bd50be;
  color: #bd50be;
}
.event table {
  font-size: 2rem;
}
.event table th,
.event table td {
  padding: 10px;
}

.modal {
  font-size: 1.6rem;
}
.modal .btn {
  font-size: 1.6rem;
}

div#countdown > div {
  display: inline-flex;
  background: #ee91d7;
  padding: 5px 20px;
  border-radius: 15px 0 15px 0;
  color: #fff;
  margin-bottom: 2rem;
}
div#countdown > div h3 {
  text-align: center;
  color: #fff;
  width: 70px;
}
div#countdown > div span {
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
}

@media (min-width: 1400px) {
  .conferenceBox p {
    font-size: 20px;
    line-height: 30px;
  }
  .conferenceBox ul li {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 40.5%;
  }
  div#countdown > div h3 {
    font-size: 3rem;
  }
  .mainBanner .mainBannerInner .btn {
    margin: 15px 0;
    font-size: 12px;
  }
  div#countdown > div {
    width: 100%;
    justify-content: space-around;
  }
  .mainBanner .mainBannerInner h4,
  .mainBanner .mainBannerInner h1 {
    font-size: 14px;
  }
  .mainBanner .mainBannerInner h3 {
    font-size: 12px;
  }
  .welcome .welcome_img {
    margin: 30px;
  }
  .mainBanner .mainBannerInner p {
    font-size: 12px;
  }
  .welcome h2 {
    margin-top: 3rem;
  }
  .welcome p {
    margin-right: 0;
    text-align: justify;
  }
   .fsfgf-16 {
    font-size: 1.8rem;
    list-style-type: disc !important;
  }
  footer p {
    font-size: 13px;
  }
  footer {
    text-align: center;
  }
  .register h2, .conference h2,
  .event h2,
  .commiteee h2 {
    font-size: 4rem;
  }
  
  .navbar-toggler {
    background: #fff;
    border: 0;
    font-size: 14px;
  }
  .commiteee p {
    font-size: 1.6rem;
  }
  ul#myTab {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
  ul#myTab button {
    white-space: nowrap;
    font-size: 3rem;
  }
  .bottomFooter ul.list-unstyled.d-flex.ms-auto {
    flex-wrap: wrap;
    margin-left: unset !important;
  }
  .bottomFooter .col-md-8.d-flex {
    display: block !important;
  }
  .bottomFooter ul.list-unstyled.d-flex.ms-auto li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .conference, .event, .commiteee {
    padding: 3rem 0;
  }
  footer h4 {
    margin-top: 3rem;
  }
  .navbar-collapse {
    background: #fe5b84;
    margin: 0 -10px;
    padding: 20px 10px;
  }
  .navbar-collapse .navbar-nav {
    align-items: center;
  }
  .navbar-collapse .navbar-nav li {
    margin-bottom: 1rem;
  }
  .navbar.navbar-expand-lg .nav-link.btn {
    font-size: 12px !important;
    margin-left: 10px;
  }
  .bottomFooter p {
    text-align: center;
    margin-bottom: 2rem;
  }
  .conferenceBox h3 span {
    font-size: 17px;
  }
  .conferenceBox {
    padding: 40px 15px;
  }
  .office_points .box {
    margin-bottom: 15px;
  }
  .register table {
    font-size: 14px;
  }

  div#countdown {
    display: flex;
    justify-content: center;
    position: relative;
    /*top: 30px;*/
  }
  .welcome {
    margin-top: 10%;
  }
  .navbar.navbar-expand-lg img {
    height: 8rem;
  }
  .welcome .welcome_img img:last-child {
    left: -30px;
  }
  .mainBanner .bannerImg {
    width: 100px;
  }
  .btn {
    font-size: 14px !important;
  }
  p {
    font-size: 1.8rem !important;
  }
  .mainBanner img:first-child {
    height: 420px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 70%;
       object-position: 70%;
  }
  .mainBanner .mainBannerInner .container > p {
    max-width: 253px;
  }
  .conferenceBox p {
    font-size: 16px !important;
  }
}
@media (min-width: 1400px) {
  html {
    font-size: 80.5%;
  }
  .navbar.navbar-expand-lg .nav-link {
    font-size: 13px;
  }
}/*# sourceMappingURL=main.css.map */