html,
body {
  height: 100%;
  margin: 0;
  /* overflow-x: hidden; */
}

body {
  /* background-color: #140032; */
  color: #140032;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

footer {
  background-color: #140032;
  color: #3C008C;
  padding: 0px 0px 48px 0px;
}

h1 {
  font-size: 40px;
  font-weight: semibold;
  margin: 0px;
  margin-bottom: 57px;
}

a {
  text-decoration: none;
}

a:link {
  color: #9B00DC;
}

a:visited {
  color: #9B00DC;
}

a:hover {
  color: #FF009B;
}

a:active {
  color: #FFFF00;
}

#navigation {
  position: fixed;
  top: 30px;
  right: 30px;
  opacity: 0;
  transition: 0.2s;
}

#navigation-icon {
  font-size: 40px;
}

#logo {
  position: fixed;
  top: 20px;
  left: 20%;
  height: 100px;
  width: 100px;
  opacity: 1;
  transition: 0.2s;
  font-size: 60px;
  font-weight: 600;
  margin: 0px;
  /* width: 100%;
  height: 100%; */
}

.top {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 500ms;
  position: relative;
  border-radius: 0px;
  height: 80vh;
}

.top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}

.footer-items {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 20px;
}

.footer-icons {
  display: grid;
  gap: 10px;
  grid-template-columns: 80px;
  grid-auto-rows: 20px;
  padding: 0px 0px 48px 0px;
  margin: 0px 0px 48px 0px;
}

.footer-icon {
  border-style: solid;
  border-color: #3C008C;
  border-width: 1px;
  text-align: center;
}

.footer-copy {
  text-align: right;
}

.grid1100 {
  max-width: 1110px;
  margin: auto;
  padding: 68px 15px 5px 15px;
}

.gridscroll {
  overflow: auto;
  white-space: nowrap;
  margin: 0px;
  margin-bottom: 100px;
}

.image-line {
  margin-bottom: 20px;
}

.gridscroll::-webkit-scrollbar {
  display: none;
}

.grey {
  background-color: #F5F5F7;
}

.white {
  background-color: #FFFCF0;
}

.cards-small {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  grid-auto-rows: 270px;
  margin-bottom: 20px;
}

.cards-big {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 520px;
  margin-bottom: 20px;
}

.cards-big-double {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  grid-auto-rows: 520px;
  margin-bottom: 20px;
}

.cards-horizontal {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 365px;
  margin-bottom: 20px;
}

.cards-double {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 740px;
  margin-bottom: 20px;
}

.cards-horizontal-double {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  grid-auto-rows: 365px;
  margin-bottom: 20px;
}

.cards-horizontal-navigation {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 365px;
  margin-bottom: 20px;
}

.cards-big-navigation {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 520px;
  margin-bottom: 20px;
}

.card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 500ms;
  position: relative;
  border-radius: 6px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.navigation-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 365px;
  margin-bottom: 20px;
}

.overlay {
  opacity: 0;
  color: white;
  text-align: center;
  background: rgba(20, 0, 50, 0.5);
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px 0px;
  border-radius: 0px 0px 6px 6px;
  transition: .5s ease;
  font-size: 0.8em;
}

.navigation {
  opacity: 1;
  color: rgb(28, 27, 27);
  text-align: center;
  position: absolute;
  top: 44%;
  font-size: 1.2em;
  width: 100%;
  padding: 12px 0px;
  border-radius: 6px;
  transition: .5s ease;
}

.card:hover {
  transform: scale(1.2) rotate(1.4deg) translate(-6px, -12px);
  transition: .5s ease;
}

.card:hover .overlay {
  opacity: 1;
}

.card:hover .navigation {
  opacity: 1;
  color: #FF009B;
}

@media screen and (max-width: 600px) {
  #logo {
    top: 20px;
    left: 5%;
  }

  #logo-img {
    width: 100%;
  }

  #message {
    position: fixed;
    top: 35px;
    left: 10px;
    height: 100px;
    opacity: 1;
    transition: 0.2s;
    font-size: 20px;
    font-weight: 600;
    margin: 0px;
  }

  .top {
    height: 25vh;
  }

  .cards-big {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    grid-auto-rows: 420px;
    margin-bottom: 20px;
  }

  .cards-horizontal {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    grid-auto-rows: 265px;
    margin-bottom: 20px;
  }

  .cards-horizontal-navigation {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 265px;
    margin-bottom: 20px;
  }

  .cards-big-navigation {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 420px;
    margin-bottom: 20px;
  }

  .cards-double {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 420px;
    margin-bottom: 20px;
  }

  .footer-items {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .footer-copy {
    text-align: center;
  }

  .footer-icons {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr;
    grid-auto-rows: 20px;
  }

  .footer-icons {
    text-align: center;
  }

  .card:hover {
    transform: rotate(0deg);
  }
}