
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root{
  --lg_fs: 24px;
  --md-fs: 20px;
  --nm-fs:16px;
  --dark_text:#162f6a;
  --light_text: #214AAB;
  --black: #000;
  --white: #fff;
  --highlight: #dd4b39;
  --light-white: #ffffffbd;
  --light-bg: #4867b3;
  --theme-color: #0033a1; 
  --light_blue: #d6e5f5;
  --light-gray: #f2f2f2;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Regular.woff2') format('woff2'),
       url('../fonts/NotoSans-Regular.woff') format('woff');
       src:url('../fonts/NotoSans-Regular.woff2') format('woff2'),
         url('../fonts/NotoSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


.login-icon{
  background: url('../images/login.svg') no-repeat;
  width: 30px;
  height: 30px;
  display: inline-block;
  background-size: 30px;
}

body{
font-family: 'Noto Sans';
  overflow-x: hidden;
}
.wrapper{
  /* overflow-x: hidden;    */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
ul,li{
  list-style-type: none;
}
a{
  text-decoration: none;
}
.logo{
  display: flex;
  gap: 5px;
  color: var(--black);
  align-items: center;
}
/*loader*/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #282c34; 
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(12px);
    z-index: 1000; 
    transition: opacity 1s ease-out, visibility 1s ease-out; 
}

#loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.loader:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 6px;
  box-sizing: border-box;
  border: 26px solid #333;
  border-color: var(--light_blue) transparent var(--light_blue) transparent; 
  animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}


.welcome-text {
    color: #f3f3f3;
    font-size: 2em;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}
/*loader-end*/
p{
  color: #150202;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -.1px;
  font-size: 14px;
  text-align: justify;
  word-spacing: 2px;
}
.logo:hover{
  color: var(--black);
}
.header{
  padding-top: 20px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--theme-color);
}
.ogel-list, .ogel-list li{
  list-style-type: disc;
}
.ogel-list a{
  color: var(--theme-color);
}
.sticky{
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 99;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
} 
.secondary-header{
display: none;
position: absolute;
top: 0;
right: 0;
height: 100vh;
padding: 75px 0px 30px;
width: 80%;
background: var(--theme-color);
z-index: 20;
height: 100vh;
overflow-y: auto;
max-width: 350px;
}

.banner.owl-nav .owl-prev span, .banner.owl-nav .owl-next span {
    font-size: 31px;
    position: absolute;
    top: -7px;
    left: -2px;
    bottom: 0;
    right: 0;
    display: flex;
    color: var(--white);
    justify-content: center;
    align-items: center;
}
.flex-control-paging li a.flex-active {
background-color: var(--theme-color) !important;
}
.secondary-header.addClass{
display: block;
border-bottom-left-radius: 12px;
border-top-left-radius: 12px;
box-shadow: -4px 4px 12px 0 rgba(0, 0, 0, .25);
}
.secondary-header .container-fluid{
display: flex;
justify-content: space-between;
}
.logo h3{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 22px;
}
.navbar svg{
  height: 17px;
  width: 17px;
}
#import-table thead > tr > th {
    border: 1px solid #000;
    border-top: 0;
    background-color: #b4ccff;
}
.navbar .menu li:first-child svg{
  width: 20px;
  height: 20px;
}
.navbar svg path{
  fill: var(--white);
}
.navbar .sign-up-btn svg path{
  fill: var(--theme-color);
}
.navbar .sign-up-btn svg{
  margin-right: 0;
  height: 24px;
  width: 20px;
}
.navbar li:hover svg path {
    fill: var(--theme-color);
}
.navbar .sign-up-btn a:hover svg path{
  fill: var(--white);
}
.navbar li .submenu .has-submenu a > svg path{
  fill: (var(--white));
}
.navbar .menu > li:hover .submenu a > svg path {
  fill: var(--white);
}
.navbar .menu > li:hover .submenu li:hover a > svg path {
 fill: var(--black);
}
.marqee-wrap svg{
  height: 30px !important;
}
.announce-heading svg{
  height: 15px !important;
  margin-left: 5px;
}
.announce-heading svg path{
  fill: var(--theme-color);
}
.right-header{
text-align: right;
gap: 10px;
align-items: center;
}
.header-img img{
    width: 90px;
    object-fit: cover;
}
.right_logo_wraper{
  gap: 10px;
}
.right_logo_wraper .header-img img{
  width: 97px;
}
.logo h6{
  margin-bottom: 4px;
  font-weight: 400;
  line-height: 20px;
}
.logo img{
width: 65px;
height: 100px;
}
.hamburger i{
font-size: 20px;
}
.hamburger{
width: 50px;
height: 52px;
border: none;
padding: 8px 12px;
background-color: var(--theme-color);
}
.hamburger svg path{
  fill: #fff;
}
.fa-xmark{
display: none;
}
.addClass .fa-xmark{
display: inline-block;
}
.addClass .fa-bars{
display: none;
}
.right-navbar{
position: relative;
}
.hamburger-menu img{
width: 40px;
height: auto;
}
.hamburger.addClass {
position: absolute;
top: 7%;
right: 4%;
z-index: 99;
}
.hamburger-menu{
display: none;
position: absolute;
right: 0;
z-index: 5;
top: 100%;
margin: 0;
padding: 0;
min-width: 215px;
max-width: 100%;
align-content: center;
border: 0;
background: rgba(0, 0, 0, .7);
backdrop-filter: blur(-1px);
border-radius: 0 0 6px 6px;
transition:  all 0.5s;
-webkit-border-radius: 0 0 6px 6px;
}
.hamburger-menu a{
display: flex;
align-items: center;
gap: 10px;
padding: 9px 13px;
color: var(--white);
}
.hamburger-menu li:hover a{
color: var(--black);
}
.hamburger-menu li:hover{
background-color: var(--light_blue);
}

.navbar .menu >  li{
  list-style-type: none;
  position: relative;
}
.navbar li:first-child{
  margin-left: 0;
}
.navbar{
  display: block;
  padding: 0;
  width: 100%;
}
.navbar a{
  font-family: "Noto Sans";
  font-size: 16px;
  text-decoration: none;
  padding: 10px 20px;
  color: var(--white);  
  display: block;
  line-height: 18px;
  letter-spacing: 0.4px;
  gap: 7px;
  font-weight: 600;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
/*10-june-2025*/
.navbar a > span{
  display: flex;
  align-items: center;
  gap: 7px;
}
ul.menu{
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.submenu {
  display: none;              /* handled by jQuery */
  text-align: center;
  padding-left: 0;
  align-content: center;
  border: 0;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(4px); /* fix blur, positive value */
  border-radius: 0 0 6px 6px;
  transition:  0.3s ease;
}
.sign-up-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: 20px;
  margin-top: 10px;
}
.sign-up-btn a{
  background-color: var(--white);
  border-radius: 25px;
  font-size: 14px;
  color: var(--theme-color);
  padding: 8px 14px 8px 12px !important;
  line-height: 1.2;
  transition: all 0.5s;
  gap: 11px;
}
.sign-up-btn a img{
  width: 25px;
}
  .navbar li:hover{
    background-color:var(--white);
    border-radius: 0 0 8px 8px;
  }
  .navbar li:hover > a{color: var(--theme-color);}
.navbar .submenu li:hover a{
    color: var(--black);
  }
  .navbar .submenu a{
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    padding: 12px;
    text-align: left;
  }
  .navbar .submenu.submenu-2 a {
    color: var(--white) !important;
  }
  .navbar .has-submenu .submenu.submenu-2 li:hover a {
    color: var(--black) !important;
}
.banner{
  overflow: hidden;
}
.hero-slider .owl-nav {
  margin-top: 0;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  justify-content: space-between;
}
.marquee-wrapper {
width: 100%;
overflow: hidden;
white-space: nowrap;
box-sizing: border-box;
border: 1px solid #ccc;
background-color: var(--light_blue);
}
.hero-slider{
  position: relative;
}
.hero-slider .owl-nav button {
  width: 25px;
  height: 25px;
  background: var(--theme-color) !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  color: var(--white) !important;
}
.hero-slider .owl-nav button span{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 3px;
}
.hero-slider .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  margin: 5px 4px;
  border: 0.25px solid grey;
}
.hero-slider .owl-dots{
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  /* margin-top: -30px; */
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  min-width: 150px;
  margin-left: auto;
  background: var(--light-white);
  border-top-left-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 5px 3px 12px;

}
.hero-slider .owl-dots .owl-dot.active span{
  background-color: var(--theme-color) !important;
}
/* .list-active{
  background-color: red !important;
} */
/* .hero-slider{
  min-height: 180px;
  height: 100%;
} */
.hero-slider .owl-stage-outer,.hero-slider .owl-stage,.hero-slider .owl-item,.hero-slider .item, .hero-slider img{
  height: 100% !important;
  max-height: 595px;
  min-height: 180px;
}

.marquee-text {
display: flex;
padding-left: 100%;
animation: marquee 200s linear infinite;
display: inline-flex;
/* font-size: 20px;
color:var(--black); */
}
.marquee-text a{
font-size: 14px;
color: var(--black);
}
.marqee-wrap{
position: absolute;
right: 0;
top: 0;
padding: 8px;
}
.marqee-btn{
position: absolute;
right: 0;
top: 0;
background-color: var(--light_blue);
}
.announce-heading{
margin-left: -15px;
background-color: var(--light_blue);
padding: 12px;
position:relative;
z-index: 1;
}
.marqee-btn{
border: none;
padding: 12px;
height: 41px;
width: 40px;
display: flex;
justify-content: center;
align-items: center;
}
.play svg path, .pause svg path{
fill: var(--theme-color);
}
.play svg{
display: none;
}
.btnClass .play svg{
display: block;
}
.btnClass .pause svg{
display: none;
}


.announce-heading h5{
font-size: 16px;
color: var(--theme-color);
font-weight: 600;
margin-bottom: 0;
}
.marquee-wrapper .container-fluid {
display: flex;
overflow: hidden;
background-color: var(--light_blue);
position: relative;
}

@keyframes marquee {
0% {
    transform: translateX(0%);
}
100% {
    transform: translateX(-100%);
}
}

.paused {
animation-play-state: paused !important;
}

button {
padding: 8px 16px;
font-size: 16px;
cursor: pointer;
}
.img-fluid{
object-fit: contain;
height: 200px;
border-radius: 50%;
width: 200px;
}
.pm-image {
height: 220px;
width: 220px;
background: var(--white);
border-radius: 50%;
margin: auto;
box-shadow: 0 2px 4px 0 rgba(35, 35, 47, .06), 0 6px 12px 0 rgba(35, 35, 47, .08);
display: flex;
justify-content: center;
align-items: center;
}
.pm-contents{
background-color: #f1f1f1;
padding: 45px 0;
}
.card-body p{
color: var(--dark_text);
font-style: normal;
font-weight: 700;
line-height: 30px;
text-align: left;
font-size: 20px;
letter-spacing: -.12px;
margin-bottom: 0;
text-align: justify;
}
.headline{
border-bottom: 1px solid var(--theme-color);
padding-bottom: 35px;
}
.gpaiSubmit p{
font-size: 14px;
line-height: 1.2;
font-weight: 400;
}
.card-body .quote{
margin-bottom: -9px !important;
font-size: 3.5rem;
font-weight: 400;
display: block;
font-family: Material Symbols Outlined !important;
}
.welcome-section{
padding: 40px 15px;
}
.about-content h2{
color: var(--theme-color);
font-size: 20px;
line-height: 26px;
font-weight: 700;
font-family: 'Noto Sans';
}
.about-content  p{
color: #150202;
font-weight: 400;
line-height: 24px;
letter-spacing: -.1px;
font-size: 14px;
/* margin-bottom: 40px !important; */
text-align: justify;
word-spacing: 2px;

}
.our-team .img-fluid{
object-fit: cover;
height: auto;
border-radius: 0;
width: 100%;
}
.our-team{
display: flex;
gap: 15px;
justify-content: center;
text-align: center;
flex-wrap: wrap;
}
.our-team .pm-image{
width: auto;
height: auto;
border-radius: 0;
margin-bottom: 8px;
border: 1px solid var(--black);
border-bottom: 5px solid var(--theme-color);
}
.minister-img{
width: 50%;
max-width: 190px;
}
.our-team p{margin-bottom: 0;font-size: 14px; text-align: center;}
.our-team h5{
font-size: 16px;
font-weight: 600;
color: var(--theme-color);
margin-bottom: 0;
}
.about-btn{
padding: 12px 8px;
min-height: 60px;
border: .5px solid var(--theme-color);
background-color: var(--theme-color);
transition: all .3s ease;
background-color: var(--white);
font-size: 2rem;
font-style: normal;
transition: all 0.5s;
font-weight: 600;
text-align: center;
}
.about-btn a{
color: var(--theme-color);
font-size: 20px;
display: flex;
justify-content: center;
align-items: center;
gap: 16px;
transition: all 0.5s;
}
.about-btn svg path{
fill: var(--theme-color);
}
.about-btn:hover{
background-color: var(--theme-color);
}
.about-btn.pointer:hover svg path {
fill: var(--white);
}
.about-btn.pointer:hover a, .about-btn.pointer:hover svg path {
color: var(--white);
}
.about-content{
padding-right: 30px;
}
/* what's new section*/
.whats-new{
background: #f1f1f1;
padding: 40px 15px;
}  
.tabbing-block .nav-tabs{
  border-bottom: 1px solid #dee2e6;
  flex-wrap: nowrap;
}
.tabbing-block .nav-tabs li{
width: 100%;
text-align: center;
border: 1px solid var(--theme-color);
}
.tabbing-block .tab-content {
  margin-top: 10px;
  background: white;
  min-height: 250px;
  padding: 26px 30px;
  border-radius: 8px;
}
.btn-wrap{
  text-align: right;
  margin: 25px 0 10px;
}
.whats-new h2{
  color: var(--theme-color);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: 'Noto Sans';
}
 .newsticker i{
  color: var(--theme-color);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 12px;
 }
.btn-link{
  background-color: var(--theme-color);
  font-size: 16px;
  color: var(--white);
  line-height: 1.2;
  /* border-radius: 25px; */
  text-decoration: none;
  padding: 5px 15px;
  border: 2px solid var(--theme-color);
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn-link:hover{
border: 2px solid var(--theme-color);
color: var(--theme-color);
background-color: var(--white);
}
.icon {
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  margin-left: 5px;

  transition: transform 0.3s ease-in-out;
}
.icon path{
  fill: var(--white);
}
.btn-link:hover .icon {
  transform: rotate(90deg);
}
.btn-link:hover .icon path{
  fill: var(--theme-color);
}
.tabbing-block .nav-tabs .nav-link{
font-size: 20px;
text-wrap: nowrap;
height: 46px;
max-height: 100%;
border-radius: 0;
color: var(--theme-color);
display: flex;
width: 100%;
justify-content: center;
align-items: center;
}
 .ticket-wrapper { 
  background-color:var(--white);
  width:300px;
  height:250px;
  overflow:hidden;
  padding:10px;
  font-family:Helvetica;
}
.ticker-wrapper .mask {
  position: relative;
  left: 0px;
  top: 10px;
  width:100%;
  height:240px;
  overflow: hidden;
}
.ticker-wrapper ul {
  list-style:none;
  margin:0;
  padding:0;
  position: relative;
}
.ticker-wrapper ul li {
  padding:10px 0px 10px 30px;
  position: relative;
}
.ticker-wrapper ul li a {
   line-height: 1.1;
  color: var(--black);
  font-size: 15px;
  position: relative;
  margin-top: -3px;
  text-decoration:none;
  transition: all 0.5s;
}
.ticker-wrapper ul li a::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.5s;
  background-color: var(--black);
}
.ticker-wrapper ul li a:hover{
  width: 100%;
}
#import-table td:last-child a{
  color: var(--theme-color);
  display: inline-block;
  font-weight: 700;
}
#import-table td > a svg path{
  fill: var(--theme-color);
}


.tabbing-block .nav-tabs .nav-link.active{
background-color: var(--theme-color);
color: var(--white);
font-weight: 600;
}



.ticker-wrapper ul li:hover a {
  color: var(--theme-color)
}
.ticker-wrapper{
  background-color: var(--white);
  padding: 20px 15px;
  border-radius: 8px;
}
.footer{
background-color: var(--theme-color);
padding-bottom: 20px;
margin-top: auto;
overflow: hidden;
}
.primary-footer{
padding: 35px 0 25px;
}
.footer-list{
display: grid;
grid-template-columns: repeat(2, 1fr);
padding: 0;
margin: 0;
gap: 7px;
margin-bottom: 18px;
}
.footer-list a{
color: var(--white);
transition: all 0.5s;
font-size: 16px;
position: relative;
}
.primary-footer h3{
color: var(--white);
font-weight: 700;
font-size: 16px;
margin-bottom: 15px;
text-transform: uppercase;
}
.social-links svg{
height: 24px;
}
.hero-slider.custom-hero, .hero-slider.custom-hero img, .hero-slider.custom-hero .owl-stage, .hero-slider.custom-hero .item, .hero-slider.custom-hero .owl-item, .hero-slider.custom-hero .owl-stage-outer {
    height: 100% !important;
}
.social-links svg path{
  fill: var(--white);
  transition: all 0.4s;
}
.social-links svg:hover path{
  fill: var(--light-white);
}
.footer-text-wrapper {
margin-bottom: 27px;
}

.our-gallery .owl-theme .owl-dots .owl-dot.active span{
background-color: #214aab;
}
.secondary-footer {
text-align: center;
}
.secondary-footer p{
color: var(--white);
font-size: 14px;
margin-bottom: 0;
text-align: center;
}
.custom-slider .owl-item{
border: 1px solid var(--black);
}
.custom-slider {
width: 100%;
position: relative;
overflow: hidden;
}
.our-gallery {
background-color: var(--white);
padding: 20px 0px;
}
.custom-slider .owl-nav{
position: absolute;
z-index: 1;
width: 100%;
top: 50%;
margin: 0 auto;
transform: translateY(-50%);
display: flex;
justify-content: space-between;
}
.our-gallery .owl-nav button{
width: 25px;height: 25px;background-color: var(--theme-color) !important;border-radius: 50% !important;position: relative;
}
.our-gallery .owl-nav .owl-prev span,.our-gallery .owl-nav .owl-next span{
font-size: 31px;
position: absolute;
top: -7px;
left: -2px;
bottom: 0;
right: 0;
display: flex;
color: var(--white);
justify-content: center;
align-items: center;
}
.footer h2{
color: var(--white);
font-size: 24px;
line-height: 38px;
font-family: 'Noto Sans';
}

.our-gallery .owl-carousel .owl-item img {
height: 80px;

}
.user-form{
background-color: var(--light_blue);
margin: 10px;
border-radius: 8px;
padding: 20px 16px 30px;
border: 1px solid var(--light_blue);
}
.main-label{
font-size: 15px;
font-weight: 700;
}
.star{
color: red;
}
.user-form .btn{
background-color: var(--theme-color);
color: var(--white);
border-color: var(--theme-color);
border-radius: 5px;
font-size: 16px;
font-weight: 700;
}
.user-form .form-control{
border: 1px solid #9e9e9e52;
border-radius: 6px;
width: 100%;
padding: 13px 14px; 
}
.user-form .form-control:focus{
outline-width: 6px;
outline-style: double;
outline-offset: -1px;
outline-color: var(--white);
}
.registration-form{
margin-top: 30px;
}
.back-to-top {
position: fixed;
height: 50px;
width: 50px;
bottom: 70px;
right: 40px;
z-index: 9; /*3june*/
background-color:var(--theme-color);
padding: 12px 14px;
border: 5px solid var(--white);
border-radius: 50%;
text-decoration: none;
display: none;
transition: background-color 0.3s ease-in-out;
}
.back-to-top svg path{
  fill: var(--white);

}

.updated-date, .visitor-count{
font-size: 14px;
text-transform: uppercase;
color: var(--white);
}
.footer-img a{
width: 140px;
height: 60px;
background-color: var(--white);
border-radius: 10px;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
}
.footer-img{
display: flex;
gap: 8px;
align-items: center;
justify-content: center;
}
.footer-img img{
width: 100%;
height: auto;
}
/* .footer-img a:first-child {
background-color: transparent;
width: 80px;
padding: 0;
} */
.digital-img{
border-radius: 5px;
}
.digital-img img{
display: block;
width: 100%;
border-radius: 5px;
}
.iframe_sec .img-fluid, .iframe_sec{
width: 100%;
height: 100% !important;
  /* 12 june */
border-radius: 5px;
object-fit: cover;
}
.digital-banner .flexslider,.digital-banner .flexslider .slides img,.digital-banner .flex-viewport,.digital-banner .flexslider .slides,.digital-banner .flexslider .slides>li {
height: 100%;
}
.digital-banner .flex-direction-nav a {
font-size: 0;
}
.digital-banner{
  padding: 40px 0;
  background-color: var(--light-gray);
/* margin-bottom: 30px; */
}

.footer-list a::before{
  content: '⮞';
  margin-right: 4px;
}
.footer-list a::after{
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  bottom: 0px;
  display: none;
}
.footer-list a:hover::after{
  display: inline-block;
}


.social_box {
  padding: 15px;
    background: var(--white);
    border: 1px solid #13406c6b;
    border-radius: 5px;
    margin-bottom: 15px;
    height: 100%;
}
.social_box h3{
  color: var(--theme-color) !important;
  font-size: 18px;
  font-weight: 500;
}

.social-media-sec{
  background-color: var(--theme-color) !important;
  padding:30px 15px;
}
.socialmediaheight {
  width: 100%;
  overflow: hidden;
}
.socialmediaheight::-webkit-scrollbar-track {

  border-radius: 4px;
  background-color: var(--white);
  border: 1px solid var(--theme-color);
}
.social_box .socialmediaheight iframe {
  max-width: 100%;
  width: 100%;
}
.socialmediaheight::-webkit-scrollbar {
  width: 8px;
  border: 1px solid var(--theme-color) !important;
  border-radius: 4px;
  background-color: var(--theme-color) !important;
}
.social-media-sec h2{
  color: var(--white);
  font-size: 20px;
  display: flex;
  line-height: 34px;
  font-family: 'Noto Sans';
  margin-bottom: 12px;
  font-weight: 700;
}
.social_box .socialmediaheight {
  padding: 12px;
  height: 310px;
  overflow-y: auto;
  padding-top: 0;
  background: var(--white);
  border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
}
.socialmediaheight::-webkit-scrollbar-thumb {
  background-color: var(--theme-color) !important;
  border-radius: 4px;
}
.import-section h2{
  font-size: 20px;
  color: var(--theme-color);
  font-weight: 600;
  margin-bottom: 20px;
  border-left: 5px solid var(--theme-color);
  padding: 10px;
  background-color: #dffdd1;
  border-radius: 5px;
}

#import-table_wrapper .dt-layout-row:first-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
#import-table_wrapper  .dt-layout-row.dt-layout-table{
  border-top: 1px solid #000;
}
div.dt-container div.dt-search input {
  width: 100px !important;
  border-radius: 5px;
}
.filter-box{
  padding: 4px 10px;
  display: flex;
  margin-left: auto;
  margin-bottom: 5px;
  border-radius: 5px;
  background: transparent;
}
#import-table_wrapper .dt-length > label {
    text-transform: capitalize;
}
.import-position{
  position: relative;
}
div.dt-container div.dt-length select {
  border-radius: 5px;
}
#import-table_wrapper label,#import-table_wrapper div.dt-container div.dt-search label, .dt-info {
  font-size: 14px;
}
.table{
  font-size: 14px;
  margin-bottom: 15px !important;
}
.table svg{
  width: 22px;
  margin: 0 auto;
  display: block;
}
.dt-paging nav{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 20px;
  gap: 5px;
}
/* 21june */
.dt-paging nav .dt-paging-button{
    background-color: transparent;
    color: var(--theme-color);
    font-size: 14px;
    border: none;
    line-height: 1;
    font-weight: 700;
    transition: all 0.4s;
    border: 1px solid var(--theme-color);
}
.dt-paging nav .dt-paging-button.current, .dt-paging nav .dt-paging-button:hover{
  background-color: var(--theme-color);
  color: var(--white);
}
.export-list {
  list-style-type: lower-alpha; 
  font-size: 14px;
}
/* 3 june */
.export-list svg {
    width: 16px;
}
.export-list svg path{
  fill: var(--theme-color);
}
.export-list li{
  margin-bottom: 3px;
}
.export-list li i{
  color: var(--theme-color);
}
.export-list a{
  color: var(--theme-color);
}
.import-content {
  padding-bottom: 25px;
}
.import-section {
  position: relative;
  margin-top: 8px;
}
.import-section ul,.import-section  li {
  margin-bottom: 8px;
  font-size: 16px;
}
.import-section p{
  font-size: 16px;
}
.coming-soon{
  padding: 87px 0;
    background: #8080807a;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 10px;
    font-size: 35px;
}
.import-content .dt-container {
  overflow-x: auto;
  border: 2px solid var(--theme-color);
  padding: 10px;
  border-radius: 10px;
}
.contact-section p{
  color: var(--theme-color);
  text-decoration: underline;
  font-size: 18px;
  line-height: 1.6;
}
.contact-section{
  padding-bottom: 55px;
}
.contact-section ul{
  padding: 0;
  margin-bottom: 25px;
}
.contact-section li{
  position: relative;
  padding-left: 35px;
  line-height: 20px;
  margin-bottom: 12px;
}
.contact-section li a{
  color: var(--theme-color);
}
.contact-section svg{
  position: absolute;
  left: 5px;
  top: 2px;
  width: 16px;
}
.contact-section svg path{
  fill: var(--theme-color);
}
/*accordion*/
.import-section .accordion h2{
  margin-bottom: 0;
  border-left: unset;
  padding: unset;
  background-color: transparent;
  border-radius: 5px;
}
.import-section .accordion-button:focus {
  box-shadow: none;
}
.import-section .accordion-button:focus {
  border-color: var(--theme-color);
}
.import-section .accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: var(--theme-color);
  font-weight: 700;
}
.accordion ul.accordion-list,.accordion li{list-style-type: disc;}
.import-section .accordion-button:not(.collapsed)::after {
  filter: brightness(100);
}
.accordion li{
  margin-bottom: 4px;
}
.highlight-text{
  background-color: var(--highlight);
  color: var(--white);
  display: inline-block;
  padding: 1px 4px;
  border-radius: 5px;
}
.bottom-accordion {
  margin-top: 25px;
}
.back-to-top.show{
  display: flex;
  animation: beats 1s infinite;
  transition: .3s;
}
@keyframes beats {
    0% {
        transform: translateY(0);
    }

    60% {
         transform: translateY(20px);
    }

    100% {
         transform: translateY(0px);
    }
}
.hamburger-icon.is-md{
  font-size: 1.5rem;
}
.hamburger-icon {
  position: relative;
  width: 1em;
  height: 1em;
  font-size: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hamburger-line{
  position: absolute;
  right: 0;
  width: 100%;
  height: 0.125em;
  border-radius: 0.125em;
  background: currentColor;
  transition: inherit;
}


  .hamburger-line {
    position: absolute;
    right: 0;
    width: 100%;
    height: 0.125em;
    border-radius: 0.125em;
    background: var(--theme-color);
    transition: inherit; }
    .hamburger-line:nth-child(1) {
      top: 0.125em; }
      .hamburger-icon.is-active .hamburger-line:nth-child(1), .w-nav-button.w--open .hamburger-line:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotateZ(-135deg); }
    .hamburger-line:nth-child(2) {
      top: 0.438em; }
      .hamburger-icon.is-active .hamburger-line:nth-child(2), .w-nav-button.w--open .hamburger-line:nth-child(2) {
        right: 50%;
        width: 0; }
    .hamburger-line:nth-child(3) {
      top: 0.75em;
      width: 0.625em; }
      .hamburger-icon.is-active .hamburger-line:nth-child(3), .w-nav-button.w--open .hamburger-line:nth-child(3) {
        top: 50%;
        width: 100%;
        transform: translateY(-50%) rotateZ(135deg); }

.product-list {
    display: grid;
    gap: 15px;
}
.social-media-sec.product-section{
  background-color: var(--white) !important;
}
.social-media-sec.product-section h2{
  color: var(--theme-color);
}
[data-fancybox="gallery"]{
  display: block !important;
  height: 100%;
}
.product-img {
    background: var(--white);
    padding: 0px; /*17june*/
    cursor: pointer;
    /* 12 june */
    border-radius:  0px;  /*17-june* 5px*/
}
.product-img img{
  display: block !important;
   height: auto;
  width: 100%;
  transition: all 0.5s;
  visibility: visible !important;
  opacity: 1 !important;
}
.import-section .product-img img{
  height: 300px;
  object-fit: cover;
  object-position: top;
  max-width: 100%;
}
/* .product-img:hover img{
  scale: 1.1;
} */
.product-list-wrap{
  position: relative;
  scale: 1;
  overflow: hidden;
    /* 12 june */
  border-radius: 0px;  /*17-june* 5px*/
}
.import-section.export-section .product-list-wrap{
  border: 1px solid #000;
}
/* .import-section.export-section .product-list-wrap, .import-section.export-section .product-img img{
  height: 100%;
} */
.product-list-wrap::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: all 0.4s;
  backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.5);
}
.title-wrapper {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  text-align: center;
  transition: all 0.5s;
  transform: translateY(100%);
}
.title-wrapper a{
  color: var(--white);
}
.product-list-wrap .btn-link{
  border: 2px solid var(--white);
  transform: translateY(-100%);
  top: 0%;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: var(--theme-color);
  width: max-content;
  margin: 0 auto;
  transition: all 0.5s ease-in-out;
  color: #fff;
}
.product-img:hover .btn-link{
  transform: translateY(-50%);
  top: 50%;
}
.product-list-wrap .btn-link:hover {
    transform: scale(1.05);
    background-color:var(--white);
    border-color: var(--theme-color) !important;
    color: var(--theme-color);
}
/* .title-wrapper .btn-link::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00f3ff, #0048ff, #6b00ff, #ff00ee);
    border-radius: 12px;
    z-index: -1;
    animation: glow 1s infinite linear;
} */

/* @keyframes glow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
} */

.product-img:hover .title-wrapper{
  padding: 15px 10px;
  transform: translateY(0);
}
.product-img:hover .product-list-wrap::after{
  height: 100%;
}

.import-section.export-section .product-img:hover .product-list-wrap::after{
  display: none;
}
.import-section.export-section .product-img{
  transition: all 0.5s;
  border-radius: 5px;
}
.import-section.export-section .product-img:hover{
/* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
box-shadow: 1px 3px 18px 4px rgba(0, 0, 0, 0.9);
}

@media screen and (min-width:480px) {
.right_logo_wraper .header-img img {
    width: 110px;
}
.header-img img {
    width: 120px;
}
  div.dt-container div.dt-search input {
      width: 145px !important;
  }

}
@media screen and (min-width:576px) {

.primary-header{
  padding-bottom: 15px;
}
.no-border-sm-top{
  border: none !important;
}
.secondary-header {
  padding-top: 110px;
}
.hamburger.addClass {
  top: 17%;
}
.our-team .minister-img:first-child .pm-image{
  height: 200px;
  width: 200px;
  margin-top: -6px;
  border-bottom-width: 10px;
  position: relative;
}
.our-team .minister-img:first-child .pm-image::after{
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 2;
  background-color: var(--black);
}
.title-wrapper strong {
    display: block;
    color: red;
    font-size: 12px;
    margin-top: 5px;
}
}
@media screen and (min-width:768px) {
   
  .our-team h5 {
    font-size: 16px;
    margin-bottom: 3px;
  } 
  .right-header {
    border-top: none !important;
  }
  .right_logo_wraper .header-img img {
    width: 110px;
}
  .our-team {
    gap: 28px;
  }
.logo {
  width: 320px;
}

/* .footer-img a:first-child {
  width: 65px;
} */
.primary-footer {
    padding-bottom:15px;
}
.navbar a {
  padding: 15px 20px;
}
.banner .owl-nav button {
  width: 30px;
  height: 30px;
}

.footer-wrap {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.secondary-footer p {
  margin-bottom: 5px;
  text-align: center;
}
.our-gallery {
  padding: 30px 0px;
}
.footer-text-wrapper{
  margin-left: auto;
  max-width: 360px; 
}

.social-media-sec {
  padding-top: 40px;
  padding-bottom: 40px;
}
/* #import-table_wrapper .dt-layout-row:last-child{
  display: flex;
} */
#import-table_wrapper .dt-layout-row:last-of-type {
  display: flex;
}
.dt-layout-cell.dt-layout-start, .dt-layout-cell.dt-layout-end{
  display: inline-block;
}
.dt-layout-cell.dt-layout-end{
  margin-left: 150px;
margin-bottom: 10px;
}
#import-table tr:first-child th:nth-child(2){
  width: fit-content;
}
/* #import-table > thead {
  border: 1px solid #000;
  border-top: 0;
} */
#import-table  thead > tr > th{
  border: 1px solid #000;
    border-top: 0;
}
#import-table tr td:first-child, #import-table tr th:first-child{
  text-align: center;
}
#import-table_wrapper div.dt-search input, #import-table_wrapper div.dt-length select { 
  height: 35px;
}
/* #import-table tr td:last-child{
  text-align: center;
} */
#import-table td{
  border: 1px solid #000;
}
div.dt-container div.dt-paging {
    margin: 0;
    margin-top: 10px;
}
.dt-layout-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#import-table tr:first-child  .dt-layout-cell.dt-layout-end{
  margin-bottom: 0;
}
#import-table_wrapper .dt-layout-row:first-child .dt-layout-cell.dt-layout-end{
  margin-bottom: 0;  
}
#import-table_wrapper .dt-layout-row:first-child {
  margin-bottom: 20px;
}
.import-content .dt-container {
  padding: 20px 10px;
}
#import-table td:last-child a{
  color: var(--theme-color);
  display: inline-block;
  font-weight: 700;
}
#import-table td > a svg path{
  fill: var(--theme-color);
}
.dt-paging nav {
  margin: 0;
    gap: 5px;
}
.coming-soon {
  padding: 134px 0;
  font-size: 50px;
  margin: 50px 0;
}
.contact-section {
  display: flex;
  justify-content: space-between;
  max-width: 1024px;
}
div.dt-container div.dt-search input {
  width: 185px;
}
.product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.filter-box {
    /* display: flex; */
    border-radius: 5px;
    position: absolute;
    background: transparent;
    left: 0;
    top: 20px;
    right: 0;
    width: 112px;
    z-index: 1;
    margin: 0 auto;
}
}
@media screen and (min-width:992px) {
  /*10-june-2025*/
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    z-index: 999;
    background-color: var(--theme-color);
    transition: width 0.2s;
}
.header-img img {
    width: 170px;
    min-height: 72px;
    object-fit: cover;
}
.right_logo_wraper .header-img img {
    width: 164px;
}
.secondary-header {
  position: static;
  width: 100%;
  padding: 0;
  height: auto;
  max-width: 100%;
  display: block;
  overflow: unset;
}
.header {
    padding-top: 10px;
}
.secondary-header.addClass{
  border-radius: 0;
  box-shadow: none;
}
.secondary-header .container-fluid {
  align-items: center;
  position: relative;
}
.navbar li:hover .submenu{
  visibility: visible;
  margin-block-start: 0;
  opacity: 1;
  display: block;
  z-index: 15;
  border: 1px solid #000;
  padding: 0;
  position: absolute;
}
.navbar .sign-up-btn a:hover {
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
}
.navbar .submenu{
width: 100%;
  border-radius: 0;
}
.navbar .menu{
  display: flex;
  justify-content: space-between;
  width: auto;
  /* gap: 4px; */
  /* 3 June 2025 */
  gap: 30px;
}
.whats-new h2 {
    font-size: 22px;
}
.tabbing-block h3{
  font-size: 18px;
  font-weight: 600;
}
.navbar li:hover {
  border-radius: 0;
}
.right-block{
  height: 100%;
  overflow: hidden;
}
/* .ticker-wrapper {
  height: 100%;
} */
.navbar .submenu li:hover a {
    color: var(--theme-color);
}
.sign-up-btn {
  margin: 0;
  gap: 8px;
}
.navbar .sign-up-btn a {
  color: var(--theme-color);
  padding: 4px 10px 4px 10px !important;
  font-size: 14px;
  gap: 8px;
  border: 2px solid var(--white);
}
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
/* 3 june */
.navbar a {
  font-size: 13px;
  padding: 16px 8px;
  font-weight: 500;
  height: 100%;
}
/* .submenu .has-submenu:hover .submenu{
  display: none;
} */
.has-submenu .submenu .has-submenu .submenu-2{
  display: none;
  width: 205px;
}
.submenu .has-submenu:hover .submenu{
  position: absolute;
  left: 100%;
  top: 31%;
  display: block;
}
.navbar .submenu.submenu-2 a{
  color: var(--white);
}
.navbar .menu > li:hover .submenu li:hover a > svg path {
  fill: var(--theme-color);
}
.navbar .menu > li:hover .submenu li:hover .submenu.submenu-2 > li:hover a{
  color: var(--theme-color) !important;
}
.is-active + .hamburger-menu{
  display: block;
}
.primary-header {
    padding-bottom: 10px;
    border-bottom: 2px solid #EBEAEA;
}
.navbar a {
  font-size: 16px;
  gap: 4px;
  padding: 12px 7px;
  color: var(--white);
}
.footer-img{
  justify-content: flex-end;
}
.updated-date{
  max-width: 360px;
  margin-left: auto;
}
.secondary-footer .container-fluid{
  display: flex;
  justify-content: space-between;
}
.navbar .submenu a {
  font-size: 16px;
  line-height: 20px;
  padding: 9px 12px;
  text-align: center;
  display: block;
}
.marqee-wrap {
  padding: 10px;
}
.announce-heading h5,.marquee-text a {
  font-size: 18px;
}
.card-body p {
  line-height: 26px;
  font-size: 16px;
}
.about-content h2 {
  font-size: 22px;
}
.about-content p {
  line-height: 26px;
  font-size: 16px;
}
.footer-list a {
  font-size: 16px;
}
/* .navbar .active{
  border-bottom: 3px solid var(--white);
} */
.navbar li:first-child a{
  position: relative;
  padding: 12px 7px;
}
/* .navbar .menu > li:first-child a::after{
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
} */
.import-section h2 {
 margin-bottom: 17px;
}
p,.table {
  font-size: 16px;
}
/*9june*/
.minister-img {
    width: 50%;
    max-width: 200px;
}
.our-team .minister-img:first-child .pm-image {
    height: 210px;
    width: 210px;
}
#import-table_wrapper label, #import-table_wrapper div.dt-container div.dt-search label, .dt-info {
  font-size: 16px;
  /* text-transform: capitalize; */
}
.dt-paging nav .dt-paging-button {
  font-size: 16px;
}
.product-list {
    grid-template-columns: repeat(3, 1fr);
}
.social-media-sec h2 {
    font-size: 22px;
}
.social-media-sec.product-section h2 {
    margin-bottom: 25px;
}
.secondary-footer p {
  font-size: 16px;
}
}
@media screen and (min-width:1024px) {
/* .navbar a {
padding: 16px;
} */
.header-img img {
width: 210px;
}
/* 3 june 2020
.navbar .menu {
  gap: 10px;
} */
.logo h6 {
  font-size: 18px;
}
.logo h3 {
  font-size: 20px;
}
.logo {
  width: 350px;
}
.navbar .sign-up-btn svg {
    height: 22px;
}
.announce-heading svg{
  height: 20px !important;
}
.our-gallery {
  padding: 30px 0px;
}
.our-gallery .owl-carousel .owl-item img,.custom-slider .owl-item,.custom-slider .item {
  height: 100px;
}
.marquee-wrapper {
    padding: 5px 0;
}
.our-gallery {
  padding: 45px 0px;
}
.digital-banner{
  margin-bottom: 0;
}
.dt-layout-row{
  display: block;
}
.social-media-sec {
    padding-bottom: 50px;
}
.tabbing-block h3 {
    font-size: 22px;
}
}
@media screen and (min-width:1200px) {
.logo h6 {
  line-height: 24px;
  font-size: 20px;
}
.logo h3 {
  font-size: 24px;
}
.logo {
  width: 400px;
}
/* 3 june */
.navbar .menu {
  gap: 40px;
}
.navbar a {
  font-size: 18px;
}
.announce-heading {
  padding: 14px 20px;
}
.marqee-wrap {
  padding: 12px;
}
.marqee-btn {
  padding: 15px;
  height: 50px;
  width: 60px;
}
.card-body p {
  line-height: 29px;
  font-size: 20px;
}
.gpaiSubmit p {
  font-size: 18px !important;
  line-height: 1.2 !important;
}
.about-content h2 {
  font-size: 24px; 
  margin-bottom: 18px; 
}
.about-content p {
  line-height: 28px;
  font-size: 18px;
}
.footer-list a {
  font-size: 18px;
}
.primary-footer h3 {
  font-size: 18px;
}
.import-section h2 {
  font-size: 22px;
}
.dt-layout-cell.dt-layout-end {
  margin-left: 250px;
}
    .social-media-sec h2 {
        font-size: 24px;
    }
.navbar .sign-up-btn a {
  /* padding: 10px 20px 10px 20px; */
  font-size: 16px;
  line-height: 1.2;
}
.product-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0; /*17-june*/
    padding: 0;
}
.our-team .pm-image {
    width: 175px;
    height: auto;
}
.our-team {
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 16px;
}
.our-team .minister-img:first-child .pm-image {
    height: 190px;
    width: 188px;
    margin-top: 0;
    border-bottom: 9px solid var(--theme-color);
}
.sign-up-btn {
    margin: 0;
    gap: 12px;
}
.tabbing-block .tab-content {
    min-height: 222px;
}
.tabbing-block .tab-content p{
  line-height: 28px;
  font-size: 18px;
}
.social-media-sec.product-section {
  padding-left: 0;
    padding-right: 0;
}
.social-media-sec.product-section h2 {
    padding-left: 30px;
}
/*17-june*/
.import-section.export-section .product-list {
  gap: 15px;
  margin: 0px 0 30px;
}
.import-section.export-section .product-list-wrap,.import-section.export-section .product-list {
  border-radius: 5px;
}
}
@media screen and (min-width:1300px) {
  .primary-header,.secondary-header,.marquee-wrapper, .welcome-section, .whats-new,.our-gallery ,.primary-footer,.digital-wrapper,.secondary-footer .container-fluid,
  .social-media-sec .container-fluid, .import-section{
    padding-left: 60px;
    padding-right: 60px;
  }
  .social-media-sec.product-section .container-fluid{
    padding-left: 0;
    padding-right: 0px;
  }
  .social-media-sec.product-section h2 {
    padding-left: 90px;
}
}
@media screen and (min-width:1400px) {
.navbar a {
  padding: 15px 22px;
}
.navbar .menu > li:first-child a {
    padding: 15px 22px;
}
.dt-layout-cell.dt-layout-end {
  margin-left: 30%;
}
.our-team {
  gap: 6px;
}
.card-body p {
    line-height: 29px;
    font-size: 22px;
}
.navbar .sign-up-btn a {
    padding: 6px 10px 5px 10px !important;
}
}

@media screen and (min-width:1500px) {
.primary-header,.secondary-header,.marquee-wrapper,.whats-new, .welcome-section,.our-gallery ,.primary-footer,.digital-wrapper,.secondary-footer .container-fluid,
.social-media-sec .container-fluid, .import-section{
  padding-left: 120px;
  padding-right: 120px;
}
 .social-media-sec.product-section h2 {
    padding-left: 150px;
}
.navbar .menu {
    gap: 6px;
}
}

h5.bg-success-subtle.information_text {
font-size: 17px;
line-height: 30px;
}


.ticker-wrapper {
  max-height: 100%;
  overflow: hidden;
  position: relative;
  height: 286px;
}

#ticker01 {
  position: absolute;
  animation: scrollUp 15s linear infinite;
}

.ticker-wrapper ul li {
  position: relative;
  padding-left: 30px; /* space for icon */
  line-height: 1.5em;
}

.ticker-wrapper ul li i {
  color: var(--theme-color);
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@keyframes scrollUp {
  0% { top: 100%; }
  100% { top: -100%; }
}


img.flash_msg_img {
max-width: 100%;
height: auto;
}