@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans:wght@1;100;200;300;400;600;700;800;900;1000&display=swap");

:root {
  --background: #191920;
  --yellow: #f0b823;
  --red: #bd1919;
  --gray: #302f3c;
  --grayw: #586a6a;
  --grayww: #cbecfb;
  --green: #008148;
  --darkblue: #344040;
}

body {
  background-color: var(--background);
}
header {
  width: 100%;
  height: 900px;
  background-image: url(./asset/hero/RNAP-factory.jpg);
  background-position: center;
  background-size: cover;
}
.overlayer {
  position: absolute;
  width: 100%;
  height: 900px;
  background-color: #1182ec9c;
}
.nav {
  position: relative;
  z-index: 20;
  display: flex;
  height: 60px;
  justify-content: end;
  align-items: center;
  padding: 0px 29px;
  background: rgba(40, 38, 38, 0.767);
  box-shadow: 0px 1px 6px 3px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(11px);
}
.logo {
  margin-right: auto;
  cursor: pointer;
}
.nav__link {
  list-style: none;
}
.nav__link li {
  display: inline-block;
  margin: 5px 15px;
}
.nav__link li a:hover {
  color: var(--green);
}
.nav__link li a {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
}
.nav__link li a.active {
  color: var(--green);
  border-bottom: 2px solid var(--green);
}
.search input[type="text"] {
}

.search-box {
  position: relative;
  display: inline-block;
}

.search-box input[type="text"] {
  background: rgba(217, 217, 217, 0.12);
  border: 0.25px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0px 2px 3px 1px rgba(0, 0, 0, 0.25);
  border-radius: 34px;
  width: 236px;
  height: 31px;
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  padding-left: 10px;
}

.search-box input[type="text"]:focus {
  outline-style: none;
  outline-color: var(--green);
}

.search-box button[type="submit"] {
  position: absolute;
  top: 0;
  right: 12px;
  width: 30px;
  height: 35px;
  background: transparent;
  border: none;
  background-image: url(./search.svg);
  background-size: cover;
  background-position: center;
  filter: invert(100%) contrast(300%);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 93%;
  z-index: 1000;
  position: relative;
}
.hero__text h1 {
  color: #faf9f8;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.625rem, 1.0179rem + 3.0357vw, 3.75rem);
  font-weight: 700;
}

.hero__text p {
  color: #faf9f8;
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(1rem, 0.8036rem + 0.9821vw, 1.6875rem);
  font-weight: 300;
  text-align: center;
  margin-top: 20px;
}
.containerr {
  max-width: 1920px;
  margin: 0 auto;
}
.aboutsection {
  display: flex;
  flex-direction: column;
  background-color: #ff9505;
  width: 100%;
  height: auto;
  padding: 30px 0;
}
.aboutsection h2 {
  color: #f5f5f5;
  font-family: "Titillium Web", sans-serif;
  font-size: 50px;
  text-align: center;
}

.aboutsection .about-sec-body {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 80px;
}
.sec-para {
  width: 702px;
}
.aboutsection p {
  color: #ffffff;
  font-family: "Titillium Web", sans-serif;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  line-height: 1.4;
  background: #b8530110;
  padding: 15px;
  border-radius: 12px;
}
.sec-video {
  width: 650px;
  height: 380px;
  border: 1px solid #edf0f3;
  border-radius: 12px;
  animation: shimmer 1.7s infinite;

  background-image: linear-gradient(
    90deg,
    #dbdada 0px,
    rgb(238, 238, 238) 40px,
    #dbdada 80px
  );
  background-size: 300%;
}
@keyframes shimmer {
  to {
    background-position: -100% 50%;
  }
}
iframe {
  border-radius: 12px;
}
.gallery-section {
  background-color: #1182ec;
  width: 100%;

  position: relative;
  padding: 20px;
}
.row {
  margin: 15px;
}

@media only screen and (max-width: 829px) {
}
@media only screen and (max-width: 683px) {
}
