* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    background-color: #000;
    font-family: "Poppins";
}

.section-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Poppins";
    position: relative;
    padding: 1rem 0 3rem 0;
    color: rgb(255, 255, 255);
    
}

.section-container .hero-img {
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
	filter: brightness(27%);
    
}


.headingTag {
    font-size: 3rem;
    font-weight: bold;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 0.2rem #FFD700;
}

.card-main-div {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-shadow: 2px 2px 2px #212121;
}

.card-div {
    position: relative;
    width: 18rem;
    height: 18rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFD700;
    padding: 1%;
    margin: 5%;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.card-div:hover{
    background: rgba(0, 0, 0, 0.771);
}

.animation-card-1 {
    width: 100%;
    height: 90%;
    z-index: 10;
    position: absolute;
    color: #FFD700;
    object-fit: cover;
     background-color: #b41b1b; 
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    background-image: url('tech.jpeg');
    opacity: 0.;
}

.card-div:hover .animation-card-1 {
    top: -25%;
    border-radius: 5px;
}

.animation-card-2 {
    width: 100%;
    height: 90%;
    z-index: 10;
    position: absolute;
    color: #FFD700;
    object-fit: cover;
    background-color: #1b1b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    background-image: url('non-tech.png');
}

.card-div:hover .animation-card-2 {
    top: -25%;
    border-radius: 5px;
}

.card {
    width: 100%;
    height: 100%;
    display: flex;
    color: #FFD700;
    
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.wrap0 {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
.button000 {
	margin-top: 185px;
	width: 130px;
	height: 40px;
	font-family: 'Roboto', sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	font-weight: bolder;
	color: #000;
	background-color: #fff;
	border: none;
	border-radius: 45px;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease 0s;
	cursor: pointer;
	outline: none;
}
.button000:hover {
	background-color: #FFD700;
	box-shadow: 0px 15px 20px #FFD70044;
	color: black;
	transform: translateY(-7px);
  }

/* pop-up */

.pop-up-div {
    width: 100%;
    height: 100vh;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;
    justify-content: center;
    overflow: scroll;
    z-index: 6000;
}

.pop-up-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.pop-up-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: scroll;
    justify-content: start;
}

.pop-up-card::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.pop-up-text {
    position: relative;
    font-family: "Poppins";
    color: white;
    margin: 2rem 0;
    width: 75%;
    text-align: left;
}

.heading-pop-up {
    font-family: "Poppins";
    font-size: 2rem;
    color: rgb(4, 183, 207);
    text-shadow: 0 0 0.5rem rgb(4, 183, 207);
    margin: 2rem 0;
    text-align: center;
}

.pop-up-close {
    position: absolute;
    right: 5%;
    top: 5%;
    cursor: pointer;
    background: #fff;
    color: #000;
    font-size: 30px;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@media (max-width: 400px) {
    .headingTag {
        font-size: 2rem;
        width: 75%;
    }
    .btn {
        width: 70%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .heading-pop-up {
        width: 75%;
        text-align: center;
    }
}

/* home */
/* events */
/* register */
/* contact */
/* guidelines */
