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

@font-face {
  font-family: twk;
  src: url(../fonts/TWKLausanne-200.woff2);
}

.awardsdiv{
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 200px;
}

.awardsinnerdiv{
  width: 90vw;
  height: auto;
  display: flex;
  flex-direction: column;
}

.awardsimgdiv{
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  gap: 50px;
  margin-top: 100px;
}

#awardscard{
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#awimg{
  width: 200px;
  filter: grayscale(1);
  transition: all 250 ms ease-in-out;
}

#awimg:hover{
  width: 200px;
  filter: grayscale(0);
  cursor: pointer;
}



















.wrapper {
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: 0.5s background-color;
}

.imgsc {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

a,
p {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  transition: 0.5s color;
}

.gallery {
  position: relative;
  width: 100%;
  display: flex;
  z-index: 0;
}

.images {
  position: relative;
  top: 0;
  width: 75%;
}

.item {
  position: relative;
  width: 400px;
  height: 600px;
  overflow: hidden;
  margin: 50px auto;
}

.item-img {
  width: 400px;
  height: 550px;
}

.item-copy {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  text-transform: uppercase;
}

.item-preview {
  position: relative;
  width: 100px;
  height: 125px;
  padding: 10px;
  overflow: hidden;
}

.hero-img {
  margin-bottom: 2em;
}

.wrapper.dark-theme,
.wrapper.wrapper.dark-theme .minimap {
  background-color: #636363;
}

.wrapper.dark-theme a,
.wrapper.dark-theme p,
.wrapper.dark-theme h1 {
  color: #000;
}

@media (max-width: 900px) {
  .item {
    width: 400px;
    height: 500px;
  }
}


@media screen and (min-width: 300px) and (max-width:500px){
  .wrapper{
    width: 100vw;
  }
  .gallery{
    width: 100%;
  }
  .images{
    width: 100%;
  }
  .item{
    width: 50%;
    height: 300px;
  }
  .item-img img{
    width: auto;
    height: 50%;
  }

  .awardsimgdiv{
    display: grid;
    grid-template-columns: repeat(1,1fr);

  }

  footer{
    margin-left: 50px !important;
  }
}