* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;

}

.logo {
    display: flex;
    justify-content: space-between; 
    border: 1px solid rgba(253, 253, 251, 0.882); 
   

  }
  .logo a {
  position: absolute;
  left: 600px;
  color: #2907ee;
  text-decoration: none;
  font-size: 30px;
 } 
 
 .logo img {
  width: 1500px;
  height: 150px;
 }
.font-run {
  width: 100%;
}
.marquee {
  width: 100%;
  height: 40px;
  overflow: hidden;
  position: relative;
  background: #fcdd46; 
}

.marquee p {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  will-change: transform;
  animation: marquee 40s linear infinite;
  color: #2e0afa;
  font-size: 24px;
}

@keyframes marquee {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
 .nav ul {
    list-style: none;
    background-color: rgb(18, 36, 239);
    text-align: center;
    padding: 0px;
    margin: 0;
 }
 .nav li {
  font-size: 1.2em;
  line-height: 40px;
  text-align: left;
 }
 .nav a {
  text-decoration: none;
  color:white;
  display: block;
  padding-left: 15px;
  border-bottom: 1px solid #888;
  transition: .3s;
 }
 .nav a:hover {
  background-color: rgb(19, 113, 42);
 }
.nav li li {
 font-size: 0.8em; 
}
.nav li {
  width: 175px;
  border-bottom: none;
  height: 50px;
  line-height: 50px;
  font-size: 1.4em;
  display: inline-block;
  margin-right: -4px;

}
.nav a {
  border-bottom: none;
}
.nav > ul > li {
  text-align: center;
}
.nav > ul > li a {
  padding-left: 0;
}
.nav li ul {
  position: absolute;
  display: none;
  width: inherit;
}
.nav li:hover ul {
  display: block;
}

.banner {
   display: flex;
   justify-content: center;
   align-items: center;
  width: 100%;
  height: 1000px;

   
}
.banner-info img {
   width: 1300px;
   height: 700px;
   border-radius: 15px;
   margin: 10px;
   padding: 20px;
}
.banner-one img {
   width: 500px;
   height: 200px;
   border-radius: 35px;
   margin:auto auto;
   display: block;
  


}

