body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: white;
    background: black;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    font-family: montserrat;
}
h1,h2,h3,h4,h5,h6{
    font-family: "the season";
    font-weight: lighter;
}

.hero-container {
    position: fixed;
    width: 100%;
    height: 100vh; /* Full viewport height */
	top: 0; 
	left: 0;
	overflow: scroll;
}

.video-background {
	position: absolute;
   width: 100%;
    height: 100%;
    object-fit: cover !important; /* Cover the container */
	display:block;
    background: rgba(0,0,0,0.9) !important;
	top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* <-- Your overlay color and opacity */
  z-index: 1;
}

.hero-overlay {
    width: 100%;
    height: 100vh;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2; /* Ensure it's above the video */
}

/* .hero-overlay h1 {
    font-size: 3em;
    margin: 0.1em 0;
    transform: translateY(-420px);
    top:10% !important;

} */

.msrlogo-container{
    width: 100%;
    height: 15vh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 150px;
}

.logo-front{
    width: 55%;
}


.enter-button {
    font-size: 1.5em;
    margin: 20px 0;
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    color: white;
    background:transparent;
    border:1px solid white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s, color 0.3s;
    transform: translateY(350px) !important; 
    max-width: 70%;
    margin: auto !important;
	margin-bottom:0px !important;
}

.enter-button:hover {
    background-color: rgba(255, 255, 255);
    color: black;
}

.overlay-menu{
    min-width: 100%;
    min-height: 150%;
    background: white;
    position: absolute;
    top:0%;
    opacity: 0;
    display: none;
    z-index: 2;
    transition: opacity 2s ease-in-out;
}
.menuitems{
    width: 100%;
    height: 100vh;
    background: transparent;
    top:15%;
    position: absolute;
    display: none;
    z-index: 3;
    font-size: 50px;
}
.menuitems ul{
    list-style-type: none !important;
    text-align: center;
}
.menuitems ul li{
    font-family: "helvetica", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 40px;
}
.menuitems ul li a{
    text-decoration: none;
    color: black;
    font-size: 80px;
    text-transform: uppercase;
}

.menuitems ul li a:hover{
    background: black;
    color: white;
}

@keyframes transup{
    from{
        top:100%;
        opacity: 0;
    }
    to{
        top:15%;
        opacity: 1;
    }
}

.menu-close-button{
    position: absolute;
    z-index: 100;
    top:5%;
    left:92%;
    cursor: pointer;
    display: none;
    font-size: 15px;
    border: 1.5px solid black;
    padding: 0px 15px;
}
.menu-close-button p{
    color: black;
}
.menu-close-button:hover{
    color: white;
    background: black;
    transition: 0.5s ease;
}
.menu-close-button:hover p{
    color: white;
}

.overlay-menu h1{
    text-align: center;
    font-size: 150px;
    margin: 10px 0px;
}
/* PHOTOSET CODE */
/* .photoset{
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.set{
    width: 100%;
    height: 100%;
    background: red;
    border: 2px solid white;
}
.set img{
    width: 100%;
    height: 90vh;
} */

.footer{
    width: 100%;
    height: 40vh;
    background: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.set{
    height: 100%;
    /* background: grey; */
    border: 2px solid white;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.7px solid rgb(56, 56, 56, 0.1);
}
.set1{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content:center
}
.set1 a{
    font-size: 15px;
    color: rgb(56, 56, 56);
    text-decoration: none;
    padding: 5px 0px;
}
.set2{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.footerlogo{
    width: 50%;
}
.textbelowlogo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
    width: 100%;
}
.copyright-text{
    font-size: 15px;
}
.implinks a{
    font-size: 15px;
    color: rgb(56, 56, 56);
    padding: 5px 15px;
}
.set3{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center !important;
}
.socialhead p{
    margin: 0;
    font-size: 15px;
    color: rgb(56, 56, 56);
}
.socials{
    display: flex;
}
.socialiconcontainer{
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    margin: 5px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid grey;
    cursor: pointer;
}
.socialiconcontainer svg{
    filter: grayscale(100%);
    width: 25px;
    height: 25px;
}

.socialiconcontainer:hover svg{
    filter: grayscale(0%);
    transition: 0.4s ease;
}

.overlaymenubuttons{
    width: 20%;
    height: 10vh;
    display: none;
    /* background: red !important; */
    position: absolute;
    top:10%;
    left: 5%;
    justify-content: space-around;
    transform: scale(1.3);
    z-index: 100;
}
.apply-button{
    
    
    
    font-size: 15px;
    display: none;
}
/* .apply-button a, .talk-to-counsellor-button a{
    color: white;
    text-decoration: none;
    border: 1px solid white;
    padding: 10px 10px;
}
.apply-button a:hover, .talk-to-counsellor-button a:hover{
    color: black;
    background: white;
    transition: 0.4s ease;
} */

.apply-button a, .talk-to-counsellor-button a{
    color: black;
    text-decoration: none;
    border: 0.5px solid black;
    padding: 10px 10px;
    background: white;
}
.apply-button a:hover, .talk-to-counsellor-button a:hover{
    color: white;
    background: black;
    transition: 0.4s ease;
}

.talk-to-counsellor-button{
   
    z-index: 100;
    
    font-size: 15px;
    display: none;
}

.custom-spacer{
    width: 100%;
    height: 10vh;
}
.footer-mobile{
    display: none;
}