@font-face{
    font-family: robo;
    src: url(./fonts/Roboto_Slab/static/RobotoSlab-Regular.ttf);
}

html
{
    scroll-behavior: smooth;
    color: white;
}

body{
    font-family: 'Poppins';
}
body{
    background: black;
}

@font-face{
    font-family: play;
    src: url(./fonts/Playfair_Display/static/PlayfairDisplay-Regular.ttf);
}

@font-face {
    font-family: mont;
    src: url(./fonts/Montserrat/static/Montserrat-Regular.ttf);
}

.logosite{
    width: 40px;
    margin-right: 5px;
    display: flex;
}

a
{
    text-decoration: none;
    color: white;
    font-weight: 600;
}

.logo
{
    display: flex;
}

.navbar
{
    display: flex;
    padding: 15px;
    text-shadow: 0 0 15px yellow;
    font-weight: 600;
    gap: 50px;
}

.home,.about{
    margin-right: 20px;
}

.home,.about,.contact{
    font-size: 25px;
    font-family: 'Poppins';
    color: white;
}

.top
{
    display: flex;
    justify-content: center;
    margin-top: -50px;
}

.streamixx{
    font-size: 30px;
    font-family: 'Poppins';
    color: white;
    display: flex;
    letter-spacing: 5px;
}

.welcome{
    color: white;
    height: 300px;
    font-size: 8vw;
    font-family: 'Poppins';
    text-align: center;
    margin-top:140px;
    font-weight: 700;
    text-shadow: 0 0 15px #ff3131;
}

.welcomepage
{
    height: 300px;
}

.allimage
{
    height: 600px;
    position: absolute;
    top: 0px;
    z-index: -1;
    width: 99%;
    overflow: hidden;
}

.image1
{
    height: 150px;
    width: 100%;
    background-image: url(./Data/welsnip/Long1.png);
    background-size: cover;
    z-index: -1;
    position: absolute;
    top: 150px;
    animation-name: example1;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.image2
{
    height: 150px;
    width: 100%;
    background-image: url(./Data/welsnip/Long1.png);
    background-size: cover;
    z-index: -1;
    position: absolute;
    top: 150px;
    animation-name: example2;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.image3
{
    height: 150px;
    width: 100%;
    background-image: url(./Data/welsnip/Long2.png);
    background-size: cover;
    z-index: -1;
    position: absolute;
    top: 300px;
    animation-name: example3;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.image4
{
    height: 150px;
    width: 100%;
    background-image: url(./Data/welsnip/Long2.png);
    background-size: cover;
    z-index: -1;
    position: absolute;
    top: 300px;
    animation-name: example4;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.welcomemessage
{
    display: flex;
    justify-content: center;
    color: rgb(0, 255, 251);
    font-size: 40px;
    text-shadow: 0 0 15px yellow;
}



#dropdown {
    position: relative;
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.9s ease;
}
#dropdown:hover {
    background-color: #ff3131;
}

#dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    animation-name: fade-in;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    transform-origin: top;
    opacity: 0;
}

#dropdown:hover #dropdown-content {
    display: block;
    animation-name: slide-down;
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
.cont{
    display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
    margin-bottom: 200px;
    margin-top:25px;
}
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slide-down {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); opacity: 1; }
}


@keyframes example1 {
    0%   {background-color:red; left: -100%;}
    100%  {background-color:yellow; left: 0%;}
}

@keyframes example2 {
    0%   {background-color:red; left: 0%;}
    100%  {background-color:yellow; left: 100%;}
}

@keyframes example3 {
    0%   {background-color:red; left: 100%;}
    100%  {background-color:yellow; left: 0%;}
}

@keyframes example4 {
    0%   {background-color:red; left: 0%;}
    100%  {background-color:yellow; left: -100%;}
}

.reveal {
    position: relative;
    opacity: 0;
  }
  
  .reveal.active {
    opacity: 1;
  }
  .active.fade-bottom {
    animation: fade-bottom 1s ease-in;
  }
  .active.fade-left {
    animation: fade-left 1s ease-in;
  }
  .active.fade-right {
    animation: fade-right 1s ease-in;
  }
  @keyframes fade-bottom {
    0% {
      transform: translateY(50px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes fade-left {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fade-right {
    0% {
      transform: translateX(100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

.aboutsection
{
    display: grid;
    justify-content: center;
    align-items: center;
    height: auto-fit;
}

.aboutline
{
    color: rgb(114, 215, 208);
    text-align: center;
    font-size: 5vw;
    font-weight: 800;
}

.nameaboutcontainer
{
    color: white;
    display: flex;
    gap: 200px;
    margin-top: 100px;
    font-weight: 600;
    margin-bottom: 30px;
}

.aboutuscontainer
{
    display: flex;
}

.iconstore1
{
    display: flex;
    width: max-content;
    flex-direction: column;
    justify-items: center;
    gap: 20px;
    opacity: 0%;
    margin-top: 10px;
    margin-left: 90px;
}

.iconstore2
{
    display: flex;
    width: max-content;
    flex-direction: column;
    gap: 20px;
    opacity: 0%;
    margin-top: 10px;
    margin-left: 100px;
}

.iconstore3
{
    display: flex;
    width: max-content;
    flex-direction: column;
    gap: 20px;
    opacity: 0%;
    margin-top: 10px;
    margin-left: 100px;
}

.instac
{
    width: 50px;
    height: 50px;
    background-image: url(./Data/aboutus/instaicon.png);
    background-size: cover;
}

.linkedinc
{
    width: 50px;
    height: 50px;
    background-image: url(./Data/aboutus/linkedin.png);
    background-size: cover;
}

.harshitsingla
{
    background-image: url(./Data/aboutus/has.jpg);
    border-radius: 50%;
    overflow: hidden;
    width: 250px;
    height: 250px;
    margin-bottom: 20px;
    background-size:cover;
}

.harshits{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.harshitabansal
{
    background-image: url(./Data/aboutus/habs.jpeg);
    border-radius: 50%;
    overflow: hidden;
    width: 250px;
    height: 250px;
    margin-bottom: 20px;
    background-size:cover;
}

.harshitab{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.harshpreetsingh
{
    background-image: url(./Data/aboutus/hspr.jpeg);
    border-radius: 50%;
    overflow: hidden;
    width: 250px;
    height: 250px;
    margin-bottom: 20px;
    background-size:cover;
}

.harshpreets{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.harshits:hover > .iconstore1
{
    opacity: 100%;
}

.harshitab:hover > .iconstore2
{
    opacity: 100%;
}

.harshpreets:hover > .iconstore3
{
    opacity: 100%;
}

.contactuspage
{
    height: 700px;
}

.contactname
{
    color: rgb(212, 72, 72);
    text-align: center;
    font-size: 4vw;
    font-weight: 600;
    margin-bottom: 50px;
}

.topicon
{
    background-image: url(./Data/extras/OIP.png);
    background-size: cover;
    color: white;
    position: fixed;
    z-index: 1;
    right: 50px;
    bottom: 50px;
    width: 70px;
    height: 70px;
    font-weight: 900;
}

label
{
    margin-left: 20px;
    display: block;
}

.feedimage
{
    display: flex;
    background-image: url(./Data/extras/Feedback.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 540px;
    height: 540px;
}

.contactuscontainer
{
    display: flex;
    gap: 150px;
    margin-left: 30px;

}

.formitem
{
    font-size: 20px;
}

.inputbox
{
    width: 300px;
    margin-top: 10px;
    margin-left: 20px;
    height: 30px;
}


.name
{
    display: flex;
    margin-top: 20px;
}

.submit-button
{
    width: 100px;
    height: 30px;
    margin-top: 30px;
    margin-left: 20px;
    font-weight: 700;
    font-size: 1vw;
    color: black;
    background-color: yellow;
    border: 2px solid red;
}

.email-class
{
    margin-top: 30px;
}

#mailclas
{
    width: 628px;
    height: 30px;
    margin-bottom: 10px;
}

.message{
    margin-top: 30px;
}

#mesa
{
    width: 628px;
    height: 120px;
    margin-left: 20px;
    margin-top: 10px;
    font-size: 20px;
}

.submit-button{
    color: black;
    font-size: 15px;
}

.action-genre
{
    height: 400px;
    overflow: hidden;
    display: flex;
}

.action-genre video {
    object-fit: cover;
}

.action-genre1
{
    height: 400px;
    overflow: hidden;
    display: flex;
}

.action-genre1 video {
    object-fit: cover;
}

.genre-content
{
    display: block;
    height: max-content;
    align-self: center;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    border: 2px solid white;
}


.feedbackform
{
    display: flex;
    flex-direction: column;
}

h1
{
    font-size: 60px;
    font-weight: 700;
}

p
{
    font-size: 20px;
}

#rdnpick{
    display: inline-block;
    font-family: 'Poppins';
    border-radius: 4px;
    background-color: #ff3131;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 17px;
    padding: 16px;
    width: 250px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

#rdnpickx{
    display: inline-block;
    font-family: 'Poppins';
    border-radius: 4px;
    background-color: #ff3131;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 17px;
    padding: 16px;
    width: 250px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

#rdnpick span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

#rdnpick span:after {
    content: '»';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -15px;
    transition: 0.5s;
   }
   
#rdnpick:hover span {
    padding-right: 15px;
   }

   
#rdnpick:hover span:after {
    opacity: 1;
    right: 0;
   }


@media screen and (max-width:768px){
    .top
    {
        flex-direction: column;
    }

    .inputbox
    {
        width: 250px;
    }

    #mailclas,#mesa
    {
        width: 250px;
    }

    h1
    {
        font-size: 30px;
    }

    p
    {
        font-size: 15px;
    }

    .contactname
    {
        font-size: 50px;
    }

    .action-genre video {
        object-fit: cover;
    }

    .action-genre1 video {
        object-fit: cover;
    }

    .action-genre
    {
        flex-direction: column;
        height: max-content;
    }

    .action-genre1
    {
        flex-direction: column-reverse;
        height: max-content;
    }

    .name
    {
        flex-direction: column;
    }

    .last-name{
        margin-top: 10px;
    }

    .navbar
    {
        margin-top: 70px;
        justify-content: center;
        gap: 0px;
    }

    .home,.about
    {
        margin-bottom: 20px;
        margin-right: 40px;
    }

    .home,.about,.contact
    {
        margin-left: -10px;
    }

    .streamixx
    {
        justify-content: center;
    }

    .welcomepage
    {
        align-content: center;
    }

    .image1
    {
        height:25%;
        width: 88%;
    }
    
    .image2
    {
        height: 25%;
        width: 88%;
    }

    .image3
    {
        height:25%;
        width: 88%;
    }
    
    .image4
    {
        height: 25%;
        width: 88%;
    }

    .welcome
    {
        display: flex;
        position: absolute;
        top: 0px;
        font-size: 70px;
        text-align: center;
        align-items: center;
    }

    .welcomemessage{
        font-size: 35px;
        text-align: center;
    }

    .nameaboutcontainer{
        flex-direction: column;
    }

    .harshits
    {
        margin-top: -250px;
    }
    .harshitab
    {
        margin-top: -150px;
    }

    .harshpreets
    {
        margin-top: -150px;
    }

    .aboutsection
    {
        height: 1600px;
    }

    .harshits .iconstore1
    {
        flex-direction: row;
        margin-left: 64px;
    }

    .harshitab .iconstore2
    {
        flex-direction: row;
        margin-left: 64px;
    }

    .harshpreets .iconstore3
    {
        flex-direction: row;
        margin-left: 64px;
    }

    .aboutsection .aboutline{
        font-size: 60px;
    }
}