@font-face {
  font-family: "Raleway-Regular";
  src: url("/assets/fonts/Raleway-Regular.ttf");
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Regular.woff2");
}
@font-face {
  font-family: "SourceSansPro";
  src: url("/assets/fonts/SourceSansPro-Regular.ttf");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "SourceSansPro-Black";
  src: url("/assets/fonts/SourceSansPro-Black.ttf");
}
.home_component {
  background-color: #e9ecf1;
}

.slider_component {
  width: 100%;
  height: 100vh;
  background-color: #000000;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.slider_component .item {
  height: 100%;
  min-width: 90%;
  width: 90%;
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  transition: 1s;
  bottom: 0;
  top: 0;
  margin: auto;
}
.slider_component .item img {
  height: 100%;
  min-width: 100%;
  width: 100%;
}
.slider_component .inactive-citem {
  opacity: 0;
  transform: scale(0);
}
.slider_component .col-pic {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.slider_component .col-pic .mask {
  position: absolute;
  z-index: 5;
  height: 100%;
  width: 100%;
  background-color: #00000070;
}
.slider_component .active-citem {
  visibility: visible;
  transform: scale(1);
  opacity: 1;
}
.slider_component .countryFlags {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  margin-left: 20px;
  background-color: #fff;
}
.slider_component .countryFlags .publicationContainerFlag {
  padding: 0 50px;
  display: flex;
  flex-wrap: wrap;
}
.slider_component .countryFlags .publicationContainerFlag img {
  background-color: white;
  width: 6%;
  margin: 20px;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 5px 10px 8px 10px #EEEEEE;
}
.slider_component .submissionBtn {
  display: flex;
  width: max-content;
  cursor: pointer;
  text-decoration: none;
  background-color: #805413ef;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  margin-top: 10;
}
@media (max-width: 767px) {
  .slider_component {
    height: auto;
    min-height: 300px;
  }
  .slider_component .item {
    width: 100%;
    min-width: 100%;
    height: max-content;
  }
  .slider_component .item img {
    height: auto;
    width: auto;
    max-width: 100%;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .slider_component {
    min-height: 500px;
  }
}

.about_conf {
  width: 90%;
  margin: 1rem auto;
  background-color: #fff;
  border-radius: 5px;
  padding: 2rem;
}
.about_conf .about-head {
  font-family: SourceSansPro !important;
  margin-bottom: 5px;
}
.about_conf hr {
  border: none;
  background-color: #adadad3b;
  height: 1px;
  width: 100%;
}
.about_conf p {
  font-family: Inter;
  line-height: 1rem;
  text-align: justify;
  font-size: 0.8rem;
}
.about_conf span {
  font-size: 1.5rem;
  color: green;
}
.about_conf span a {
  color: #000000;
  position: relative;
}
.about_conf span a::after {
  position: absolute;
  content: "";
  bottom: -3px;
  right: 0;
  height: 2px;
  width: 0;
  border-radius: 5px;
  background-color: green;
  transition: 0.4s ease;
}
.about_conf span a:hover::after {
  left: 0;
  transition: 0.4s ease;
  width: 100%;
}
@media (max-width: 767px) {
  .about_conf {
    padding: 1rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
  .about_conf p {
    text-align: start;
    font-size: 14px;
    line-height: 1.5rem;
  }
  .about_conf span {
    font-size: 1rem;
  }
}

.highlighted {
  color: brown;
}

.marquee_section {
  width: 90%;
  margin: 1rem auto;
  border-radius: 5px;
  padding: 2rem;
  display: flex;
  overflow: hidden;
  background-color: #231834;
  color: #fff;
}
.marquee_section .marquee_list {
  width: 33%;
  border-left: 2px solid #ececec;
  display: flex;
  padding: 5rem 1rem 0 1rem;
  max-height: 20rem;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.marquee_section .marquee_list:nth-child(1) {
  border: none;
}
.marquee_section .marquee_list:hover .item-list {
  animation-play-state: paused;
}
@media (max-width: 767px) {
  .marquee_section .marquee_list {
    width: 100%;
    padding: 0;
    margin: 0;
    border-left: 0;
  }
}
.marquee_section .marquee_headline {
  font-size: 3rem;
  width: 100%;
  font-weight: bold;
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0rem;
  box-sizing: border-box;
  padding-left: 1rem;
  padding-bottom: 10px;
  user-select: none;
  border-bottom: 1px solid #ececec;
  background-color: #231834;
}
@media (max-width: 767px) {
  .marquee_section .marquee_headline {
    position: static;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    border-top: 1px solid #ececec;
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .marquee_section {
    flex-direction: column;
    padding: 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
}

.item-list {
  width: 100%;
}
.item-list div {
  min-height: 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  padding: 1rem;
  border-bottom: 1px solid #e1e1e1;
  box-sizing: border-box;
}
.item-list div:nth-child(2n) {
  background-color: #000000;
}
@media (max-width: 767px) {
  .item-list div {
    font-size: 1rem;
  }
}

.itemilist {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
}
.itemilist span:first-child {
  font-weight: bold;
}
.itemilist span:last-child {
  font-family: SourceSansPro;
  font-size: 1rem;
}

.itemdlist {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.itemdlist span img {
  height: 28px;
  width: 28px;
  filter: brightness(0) invert(1);
}

.downloads_marquee .item-list {
  animation: marqueeanim 8s infinite linear;
}

.impdates_marquee .item-list {
  animation: marqueeanim 10s infinite linear;
}

.notices_marquee .item-list {
  animation: marqueeanim 18s infinite linear;
}
@media (max-width: 767px) {
  .notices_marquee .item-list {
    animation-duration: 16s;
  }
}

@keyframes marqueeanim {
  0% {
    transform: translateY(104%);
  }
  100% {
    transform: translateY(-104%);
  }
}
.partner_container {
  display: flex;
  width: min-content;
  scroll-behavior: smooth;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
  margin: 1rem auto 3rem auto;
  overflow: hidden;
  border-radius: 5px;
}
.partner_container .partner_box {
  margin: 0 1rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 5px 3px #00000030;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  position: relative;
  min-width: 25rem;
  max-height: 30rem;
}
.partner_container .partner_box img {
  transition: 0.2s;
  height: auto;
  width: auto;
  min-width: 25rem;
  max-width: 25rem;
}
.partner_container .partner_box span {
  width: 100%;
  background-color: #ececec;
  height: max-content;
  font-size: 1.5rem;
  box-sizing: border-box;
  padding: 1rem 1.5rem;
  z-index: 5;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .partner_container .partner_box span {
    font-size: 1rem;
  }
}
.partner_container .partner_box:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .partner_container .partner_box {
    min-width: unset;
    max-height: unset;
    margin: 0.5rem 0;
    height: 25rem;
  }
  .partner_container .partner_box img {
    min-width: unset;
    max-width: unset;
    width: 90vw;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .partner_container .partner_box img {
    width: auto;
  }
}
@media (max-width: 767px) {
  .partner_container {
    flex-direction: column;
    padding: 0.5rem;
    width: 100%;
    margin: 0 0 3rem 0;
    box-sizing: border-box;
  }
  .partner_container .partner_box:first-child {
    margin-top: 0;
  }
  .partner_container .partner_box:last-child {
    margin-bottom: 0;
  }
}

.pro-partners {
  width: 90%;
  padding-right: 4rem;
  margin: 4rem auto 1rem auto;
  font-size: 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .pro-partners {
    padding: 0;
    font-size: 1.8rem;
    margin: 3rem auto;
    width: max-content;
  }
}

/*# sourceMappingURL=index.css.map */
