<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&amp;display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  
}
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo
{
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}
.toggle
{
  position: relative;
  width: 60px;
  height: 60px;
  background: url(https://i.ibb.co/HrfVRcx/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
}
.toggle.active
{
  background: url(https://i.ibb.co/rt3HybH/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}
.showcase
{
  position: absolute;
  right: 0;
  width: 100%;
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*background: #111;*/
  transition: 0.5s;
  z-index: 2;
}
.showcase.active
{
  right: 175px;
}

.showcase video
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.overlay
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*height: 100%; */
  background: url(img/music_.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  mix-blend-mode: overlay;
}
 
.banner{
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.banner .slider{
    position: absolute;
    width: 200px;
    height: 250px;
    top: 27.5%;
    left: calc(50% - 100px);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRun 30s linear infinite;
}

@keyframes autoRun{
    from{
        transform: perspective(1000px) rotatex(-10deg) rotateY(0deg);
    }to{
        transform: perspective(1000px) rotatex(-10deg) rotateY(360deg);
    }
}

.banner .slider .item{
    
    position: absolute;
    inset: 0 0 0 0;
    transform:
       rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
       translateZ(425px);
}

.banner .slider .item img{
    background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75));
    width: 80%;
    height: 80%;
    object-fit: cover;
    cursor: pointer;
    border-radius: 15px;
    border: 2px solid #fff;
    transition: 0.75s;
    /*box-shadow: 4px 4px 1px #000;*/
}
.banner .slider .item img:hover{
   transform: scale(1.125);
   transition: 0.75s;
}
.banner .content{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1400px, 100vw);
    height: max-content;
    padding-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.banner .content h1{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 16em;
    line-height: 1em;
    color: #25283B;
}

.social
{
  position: absolute;
  z-index: 10;
  left: 100px;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social li
{
  list-style: none;
  margin-left: 0px;
}
.social li a
{
  display: inline-block;
  margin-right: 0px;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover
{
  transform: scale(0.5) translateY(-15px);
}
.menu
{
  position: absolute;
  top: 0;
  right: 0;
  width: 175px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(img/bg_right.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid #444;
}
.menu ul
{
  position: relative;
}
.menu ul li
{
  list-style: none;
}
.menu ul li a
{
  text-decoration: none;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  font-style: italic;
  font-family: 'Times New Roman', Times, serif;
  text-shadow: 0.5px 0.5px 0.5px #000;
}
.menu ul li a:hover
{
  color: #555; 
}

 </pre></body></html>