@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  background: #0c111b;
  position: relative;
  font-family: roboto, sans-serif;
}

.navbar {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 4%;
  background: #0c111b;
  z-index: 1;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 70px;
}

.nav-links {
  margin: 10px;
  display: flex;
  list-style: none;
}

.nav-items a {
  text-decoration: none;
  margin-left: 20px;
  text-transform: capitalize;
  color: #fff;
  opacity: 0.9;
}

.right-container {
  display: block;
  margin-left: auto;
}

.search-box {
  border: none;
  border-bottom: 1px solid #aaa;
  background: transparent;
  outline: none;
  height: 30px;
  color: #fff;
  width: 250px;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500px;
  transition: 0.5s;
}

.search-box::placeholder {
  color: #aaa;
}

.search-box:focus {
  width: 400px;
  border-color: #1f80e0;
}

.search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 30px;
  width: 30px;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

.Subscribe {
  background: #1f80e0;
  height: 30px;
  padding: 0 20px;
  color: #fff;
  border-radius: 5px;
  border: none;
  outline: none;
  text-transform: uppercase;
  font-weight: 700px;
  font-size: 12px;
  margin: 0 10px;
}

.login-btn {
  color: #fff;
  opacity: 0.9;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700px;
  text-decoration: none;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 450px;
  padding: 20px 0;
  overflow-x: hidden;
  margin-top: 80px;
}

.carousel {
  display: flex;
  width: 92%;
  height: 100%;
  position: relative;
  margin: auto;
  overflow-x: visible;
  scroll-behavior: smooth;
}
/* banner */
.ban {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: red;
  overflow: hidden;
}

.banrap1 {
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to right, rgb(98, 97, 97) 6%,transparent,transparent, transparent,transparent); */
  position: absolute;
}

.banrap2 {
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to top, rgb(97, 95, 95) 1%, transparent); */
  position: absolute;
}

.ban-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* footer */
.foot{
  width: 100%;
  background-color: rgb(21, 21, 21);
}
.footrap{
  width: 100%;
  margin: auto;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-section{
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin-bottom: 30px;
}
.lastimg p, .connect p{
  color: white;
  font-size: 15px;
  margin-bottom: 10px;
}
.lastimg img{
  width: 10%;
  height: 30%;
}
.connect ul{
  display: flex;
  list-style: none;
  padding: 20;
}
.connect ul li{
  margin-right: 50px;
      
}
.connect ul li a{
  color: white;
  font-size: 20px;
  text-decoration: none;
}
.bottom-section{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  width: 80%;
  gap: 20px;
}
.boxz ul{
  margin-top: 10px;
}
.boxz ul p{
  color: white;
  font-size: 15px;
  margin-bottom: 10px;
}
.boxz ul a{
  display: block;
  font-size: 12px;
  margin-top: 10px;
  color: white;
  text-decoration: none;
}
.foot-panel2{
  margin-top: 20px;
  background-color: rgb(21, 21, 21);
  color: white;
  border-top: 1px solid black;
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyright ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.copyright ul p{
  color: white;
  font-size: 12px;
  margin-right: 20px;
}
.copyright ul a{
  font-size: 12px;
  color: white;
  text-decoration: none;
}
