@font-face {
  font-family: "Open";
  src: url(../fonts/OpenSansCondensed-Regular.woff), url(../fonts/OpenSansCondensed-Regular.woff2);
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Regular.woff), url(../fonts/Roboto-Regular.woff2);
}
*, *::before, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5 {
  line-height: 1.1;
}

body, html {
  font-size: inherit;
  line-height: 1.5;
  font-family: "Open", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.nav1 {
  background-color: #000;
}

.nav1 {
  position: fixed;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 9999;
  padding-inline: 90px;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.09), 0 4px 2px rgba(0, 0, 0, 0.09), 0 8px 4px rgba(0, 0, 0, 0.09), 0 16px 8px rgba(0, 0, 0, 0.09), 0 32px 16px rgba(0, 0, 0, 0.09);
  display: flex;
  padding: 1rem 10vw;
  justify-content: space-between;
}
.nav1 a {
  color: #fff;
}
.nav1 ul {
  display: flex;
  list-style: none;
}
.nav1 ul li {
  margin-left: 3rem;
}
.nav1 input[type=checkbox] {
  display: none;
}
.nav1 .face {
  position: relative;
  overflow: hidden;
  height: 2.5rem;
}
.nav1 .face:hover span {
  transform: translateY(-2em);
}
.nav1 span {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 2em;
  transition: 0.3s;
  padding: 0 0.25em;
  color: #fff;
  text-shadow: 0 2em 0 #fff;
}

.hidden {
  transform: translateY(-100%);
}

.main-container {
  min-height: 100%;
  height: 2000px;
  display: grid;
  grid-template-columns: 10vw minmax(300px, 1fr) 10vw;
  grid-template-rows: 816px min-content;
}
.main-container > * {
  grid-column: 2/3;
}
.main-container .hero {
  margin-top: 5rem;
  max-height: 720px;
  position: relative;
}
.main-container .hero .logo {
  position: absolute;
  bottom: 0;
  right: 0;
}
.main-container .hero .image-stack {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.09), 0 4px 2px rgba(0, 0, 0, 0.09), 0 8px 4px rgba(0, 0, 0, 0.09), 0 16px 8px rgba(0, 0, 0, 0.09), 0 32px 16px rgba(0, 0, 0, 0.09);
}
.main-container .hero .fade-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation-name: sequential-fade;
  animation-duration: 9s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@keyframes sequential-fade {
  0% {
    opacity: 0;
  }
  11% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  44% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.main-container .hero .img1 {
  animation-delay: 0s;
}
.main-container .hero .img2 {
  animation-delay: 3s;
}
.main-container .hero .img3 {
  animation-delay: 6s;
}
.main-container .sub-nav {
  background-color: #222;
  width: 100%;
  height: 80px;
  /*ul{
     height: 100%;
     display: flex;
     list-style: none;
     justify-content: flex-end;
     align-items:center ;
     padding-inline: 3em;
     li{margin-left: 3rem;
         margin-left: 2em;
     a{
         color:#fff;
     }
         }*/
}
.main-container .search-box {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 0;
  margin-left: auto;
  border-radius: 3px;
}
.main-container .search-box input {
  width: 100%;
  font-size: 1.125rem;
  padding: 1em;
  border: none;
  outline: none;
}
.main-container main {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 1rem;
  margin-block: 3rem;
}
.main-container .ul-container {
  position: relative;
}
.main-container .side-menu {
  box-shadow: 5px 0 10px rgba(11, 8, 184, 0.15);
  border-radius: 5px;
  align-self: start;
  padding-bottom: 2em;
  position: sticky;
  margin-right: 1rem;
  top: 48%;
}
.main-container .side-menu h2 {
  font-size: 2rem;
  background-color: rgb(11, 8, 184);
  color: #fff;
  font-weight: 300;
  width: 100%;
  padding: 0.25em 1rem;
}
.main-container .side-menu ul, .main-container .side-menu li {
  display: block;
}
.main-container .side-menu li {
  display: flex;
  align-items: center;
  margin-top: 1em;
}
.main-container .side-menu li input[type=checkbox] {
  -webkit-appearance: none; /* For older Safari */
  -moz-appearance: none;
       appearance: none;
  display: inline-block;
  margin-inline: 0 1rem;
  height: 1.5rem;
  width: 1.5rem;
  border: 0.15em solid #ccc;
  box-shadow: 0 0 10px rgba(153, 153, 153, 0.58);
  border-radius: 0.15em;
  /* Center the checkmark pseudo-element */
  display: grid;
  place-content: center;
}
.main-container .side-menu li input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  box-shadow: inset 1em 1em rgb(11, 8, 184);
  transform: scale(0);
  transition: 120ms transform ease-in-out;
}
.main-container .side-menu li input[type=checkbox]:checked::before {
  transform: scale(1.5);
}
.main-container .side-menu li label {
  display: inline-block;
  font-size: 1.25rem;
}
.main-container .greeting {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 3vw;
}
.main-container .greeting h1 {
  flex: 100%;
  display: block;
  color: darkblue;
  font-size: clamp(3vw, 4rem, 3vw);
  text-transform: uppercase;
  padding: 5px;
  letter-spacing: -1%;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.main-container .greeting h1::after {
  content: "";
  position: absolute;
  inset: -0.5rem;
  z-index: -1;
  background: conic-gradient(from 0deg, darkblue 0%, #fff 25%, #fff 50%, #fff 75%, darkblue 100%);
  animation: rotate 4s linear infinite; /* Applies the rotation animation */
}
@keyframes rotate {
  100% {
    transform: rotate(1turn); /* Rotates the element 360 degrees */
  }
}
.main-container .greeting p {
  margin-bottom: 3rem;
  max-width: 62ch;
  font-size: 1.25rem;
}
.main-container .greeting > * {
  flex: 1;
}
.main-container #results {
  grid-column: 2/4;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: auto;
}
.main-container #results a {
  color: #333;
}
.main-container #results figure, .main-container #results figcaption, .main-container #results img {
  display: block;
  max-width: 100%;
}
.main-container #results figure {
  padding: 1rem 2rem;
  transition: all 250ms ease-in-out;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
.main-container #results figure:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  background-color: rgb(68, 68, 126);
  transition: all 250ms ease-in-out;
}
.main-container #results figure:hover > * {
  color: #fff;
}
.main-container #results figure h3 {
  font-size: 1.15rem;
  padding-block: 0.5em;
  font-weight: 600;
  color: #444;
  height: 2lh;
}
.main-container #results figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-container #results figcaption {
  padding: 0.5em 0;
  height: 3lh;
  color: #777;
  font-size: 1.125rem;
  font-weight: 600;
}
.main-container #results figcaption p:nth-child(3) {
  font-size: 0.85em;
  font-weight: 300;
}
.main-container .pagination {
  grid-column: 2/4;
}
.main-container .pagination button {
  padding: 0.5em 1em;
  background-color: rgb(11, 8, 184);
  color: #fff;
}/*# sourceMappingURL=index.css.map */