/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins'); 

/* Global */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

a {
    text-decoration: none;
    color: whitesmoke;
}
ul{
    list-style: none;
}
.active{
    color: #fc036b;
    text-decoration: underline;
    font-weight: bold;
}
body, html{
    overflow-x: hidden;
}
/* navbar */
.navbar{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 20px;
    color: whitesmoke;
}
/* .nav-links{
    display: flex;
    align-items: center;
}
.nav-links li{
    margin: 0 30px;
} */
header{
    width: 100vw;
    height: 100vh;
    background-image: url('../img/header-bg1.jpg');
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height:100%;
  background:linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../img/header-bg1.jpg');
  background-size:cover;
}

.header-content{
    margin-bottom: 350px;
    color: whitesmoke;
    margin: auto;
}
form{
    width: 400px;
    margin: auto;
}
.header-content p{
    text-align: center;
    font-size: 25px;
    padding-top: 10px;
    color: white;
}

.header-content h2{
    font-size: 7vmin;
    color: white;
    text-align: center;
}
span{
    font-family: 'Sacramento', cursive;
    font-size: 12vmin;
    font-weight: normal;
}
.purple{
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 27px;
    font-weight:900;
}
select{
    width: 400px;
    height: 45px;
}

.line{
    width: 150px;
    height: 4px;
    background: #ba193d;
    margin: 10px auto;
    border-radius: 5px;
}
.header-content h1{
    font-size: 7vmin;
    margin-top: 50px;
    margin-bottom: 30px;
}
.ctn{

    padding: 8px 15px;
    background: #ba193d;
    border-radius: 0px;
    color: whitesmoke;
}
header .ctn{
    width: 100%;
    padding: 15px 15px;
    background: #ba193d;
    border-radius: 0px;
    border: none;
    color: whitesmoke;
    margin-top: 20px;
    font-size: 5vmin;
}
.menu-btn{
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    cursor: pointer;
    display: none;

}

/* events */
section{
    width: 80%;
    margin: 80px auto;
}
.title{
    text-align: center;
    font-size: 4vmin;
    color: #ba193d;
}
.row{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.row .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 2px solid #ba193d;
}
.events .row{
    margin-top: 50px;
}
h4{
    font-size: 3vmin;
    color: #484872;
    margin: 20px auto;
}
p{
    color: #7c7c7c;
    padding: 0px 40px;
}
.events .ctn{
    margin-top: 30px;
}


.content-col{
    width: 50%;
}
.image-col{
    width: 50%;
}


.content-col .line{
    margin-left: -1px;
}
.content-col p{
    padding: 0;
    margin: 30px auto;
}
.content-col .ctn{
    margin-left: -100px;
}

/* mobile device */
@media only screen and (max-width:850px){
    .menu-btn{
        display: hidden;
    }
    .navbar{
        padding: 0;
        display: flex;
        flex-direction: row-reverse;

    }
    .logo{
        position: absolute;
        top: 30px;
        left: 30px;
    }

    .mobile-menu{
        margin-top: 0px;
        border-bottom-right-radius: 30% ;
    }
    /* .nav-links li{
        margin: 10% auto;
        padding: 10px;
    } */
    header{
      background-position:center;
    width: 100vw;
    height: 100vh;
    }
    .header-content h2{
        font-size: 18vmin ;
    }
    header .ctn{
        padding: 15px 15px;
        font-size: 8vmin;
    }

    span{
        font-size: 20vmin;
    }
    .title{

        font-size: 8vmin;

    }
    /* events */
    .row{
        flex-direction: column;
    }
    .row .col{
        margin: 20px auto;
    }
    .col img{
        max-width: 90%;
    }


}
/* animations */
img{
    transition: transform .3s ease;
}
img:hover{
    transform: scale(1.1);
}
.ctn:hover{
    background: whitesmoke;
    color:#ba193d;
    box-shadow: 2px 2px 5px #00000056;
}
li a:hover{
  color: #ba193d;  
}