* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #2b2121;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Montserrat", Arial, sans-serif;
  transition: opacity 0.5s ease-in-out;
  position: relative;
}

::-webkit-scrollbar {
  height: 0;
  width: 10px;
}
::-webkit-scrollbar-track {
  background: black;
}
::-webkit-scrollbar-thumb {
  background: #155389;
}
::-webkit-scrollbar-thumb:hover {
  background: #1963a4;
}

.active {
  cursor: grabbing;
}

.preloader {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2b2121;
  display: grid;
  place-items: center;
  z-index: 100000;
  transition: opacity 0.4s ease-out;
}
.preloader div {
  position: relative;
  border: 3px solid #5c4949;
  border-radius: 50%;
  box-shadow: 0 0 10px 0 black;
  animation: animate1 2s linear infinite;
}
.preloader div img {
  display: block;
}
.preloader div:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -3px;
  left: -3px;
  border: 3px solid transparent;
  border-top: 3px solid #155389;
  border-right: 3px solid #155389;
  border-radius: 50%;
  animation: animate2 1s linear infinite;
}

nav {
  position: fixed;
  top: 0;
  left: 40px;
  width: 200px;
  height: 56px;
  display: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  box-shadow: 0 0 10px 0 black;
  z-index: 100;
}
nav a {
  text-decoration: none;
  color: white;
  margin: 0 5px;
}
nav a img {
  display: block;
  width: 36px;
}
nav a:hover {
  transform: scale(1.05);
}
nav .logo {
  width: 70px;
}

main {
  width: 100%;
  max-width: 1100px;
  height: 100vh;
}
main hr {
  margin: 20px auto;
  width: 900px;
  display: block;
  height: 1px;
  border: 0;
  border-top: 2px solid #155389;
}
main header {
  width: 100%;
  height: 90px;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.5);
  background: #155389;
  border-radius: 7px;
  margin: 0 0 20px;
  display: flex;
  padding: 0 40px;
}
main header a {
  text-decoration: none;
  color: white;
  margin: auto 10px;
  position: relative;
}
main header a img {
  display: block;
  width: 45px;
}
main header a.iconHover:hover {
  transform: scale(1.05);
}
main header a:nth-child(2) {
  margin-left: auto;
}
main header .logo {
  border-radius: 7px;
}
main header .logo img {
  width: 70px;
}
main header .logo:hover {
  transform: scale(1);
}
main header .emailMenuIcon .emailTag {
  position: absolute;
  top: 62px;
  left: -170px;
  background-color: #791818;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  padding: 8px;
  width: 225px;
  height: 35px;
  z-index: 50;
  border-radius: 8px;
  transition: opacity 0.3s ease-in-out;
  text-align: center;
}
main header .emailMenuIcon .emailTag:after {
  content: "";
  position: absolute;
  top: -30px;
  left: 178px;
  border: 15px solid transparent;
  border-bottom: 15px solid #791818;
  transition: opacity 0.1s ease-out;
}
main .hero {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 350px;
  margin: 0 auto 20px;
  border-radius: 7px;
}
main .hero .heroImg {
  border-radius: 7px;
  overflow: hidden;
  display: grid;
  justify-content: center;
}
main .hero .heroImg img {
  display: block;
  pointer-events: none;
}
main .sliderCont {
  overflow: hidden;
  height: 351px;
  margin-bottom: 15px;
}
main .sliderCont .slider {
  position: relative;
  width: 1100px;
  transition: 0s ease-in;
}
main .sliderCont .slider .featured {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
}
main .sliderCont .slider .featured div {
  width: 351px;
  height: 351px;
  border-radius: 7px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}
main .sliderCont .slider .featured div img {
  display: block;
  width: 100%;
}
main .sliderCont .slider .featured div a {
  all: unset;
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}
main .sliderCont .slider .featured div a img {
  width: 20px;
  margin-left: 7px;
  filter: invert(1);
  flex-shrink: 0;
}
main .partners {
  width: 100%;
  margin-bottom: 30px;
  background-color: #4d3e3e;
  border-radius: 7px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  padding: 10px 30px;
}
main .partners p {
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-decoration: underline;
}
main .partners .platforms {
  padding: 20px 0;
}
main .partners .platforms img {
  width: 99%;
  display: block;
}
main .artistsDetails {
  background: #ececec;
  border-radius: 7px;
  width: 100%;
  padding: 10px;
  margin: 15px auto;
  color: #155389;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .artists,
main .topArtists {
  width: 100%;
  display: grid;
  justify-content: center;
  grid-template: auto/repeat(3, 351px);
  gap: 23px;
}
main .artists a,
main .topArtists a {
  text-decoration: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  width: 351px;
}
main .artists .artist,
main .topArtists .artist {
  background: #155389;
  display: grid;
  grid-template: 53% 47%/90px 1fr;
  border-radius: 7px;
  padding: 10px 0 10px 10px;
  color: white;
  transition: background 0.2s;
}
main .artists .artist .image,
main .topArtists .artist .image {
  grid-column: 1/2;
  grid-row: 1/3;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  background-color: grey;
  margin: 0 auto;
  overflow: hidden;
}
main .artists .artist .image img,
main .topArtists .artist .image img {
  width: 100%;
  display: block;
}
main .artists .artist .name,
main .topArtists .artist .name {
  grid-column: 2/3;
  grid-row: 1/2;
  font-weight: 600;
  font-size: 16px;
  margin-top: auto;
}
main .artists .artist .generalDetails,
main .topArtists .artist .generalDetails {
  grid-column: 2/3;
  grid-row: 2/3;
  font-size: 12px;
  margin-top: 5px;
}
main .artists .artist:hover,
main .topArtists .artist:hover {
  background: #a50f0f;
}

footer {
  width: 100%;
  margin-top: 50px;
}
footer .loader {
  width: 60px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0);
  transition: opacity 0.2s ease;
  opacity: 0;
  display: flex;
  justify-content: space-between;
}
footer .loader div {
  width: 14px;
  height: 14px;
  background-color: white;
  border-radius: 50%;
  animation: jump 1s ease-in-out infinite;
}
footer .loader .loader2 {
  animation-delay: 0.2s;
}
footer .loader .loader3 {
  animation-delay: 0.4s;
}

.mathenahorevis {
  display: flex;
  justify-content: center;
}
.mathenahorevis img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  margin: 0 10px;
}
.mathenahorevis p {
  width: 100%;
  max-width: 500px;
  margin: 0;
  color: #ffd573;
  padding: 30px;
  border-radius: 10px;
  background-color: #155389;
  text-shadow: 0px 0px #ffd573;
  margin: 0 10px;
}
.mathenahorevis p title {
  font-size: 20px;
  font-weight: bold;
}
.mathenahorevis p .bold {
  font-weight: bold;
}

@keyframes animate1 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes animate2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@media only screen and (max-width: 1200px) {
  main .artists,
  main .topArtists {
    grid-template: auto/repeat(2, 351px);
  }
}
@media only screen and (max-width: 1100px) {
  main .sliderCont .slider {
    pointer-events: none;
  }
}
@media only screen and (max-width: 880px) {
  main .partners .platforms img {
    content: url("../icons/Partners1.png");
    margin: 0 auto;
    max-width: 550px;
  }
  main .artists,
  main .topArtists {
    grid-template: auto/repeat(1, 351px);
  }
}
@media only screen and (max-width: 850px) {
  main .mathenahorevis {
    padding: 20px;
    flex-direction: column;
    align-items: center;
  }
  main .mathenahorevis img {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 600px) {
  main .artistsDetails {
    flex-direction: column;
  }
  main .artistsDetails .slash {
    display: none;
  }
  main .artistsDetails span {
    margin: 5px auto;
  }
}
@media only screen and (max-width: 530px) {
  main header {
    padding: 0 20px;
  }
  main header a img {
    width: 40px;
  }
  main header .logo img {
    width: 50px;
    margin-right: 15px;
  }
  main header .emailMenuIcon .emailTag {
    left: -172px;
    top: 58px;
  }
}
@media only screen and (max-width: 500px) {
  main .hero,
  main .heroImg img,
  main .sliderCont {
    height: 260px;
  }
  main .sliderCont .slider {
    width: 820px;
  }
  main .sliderCont .slider .featured div {
    width: 260px;
    height: 260px;
  }
  main .sliderCont .slider .featured div a {
    font-size: 14px;
    padding: 8px;
  }
  main .sliderCont .slider .featured div a img {
    transform: translate(-1px, -1px);
    width: 15px;
  }
}/*# sourceMappingURL=home.css.map */