@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Slab", sans-serif;
}

body {
    overflow-x: hidden;
}

.eventBG {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 105vh;
}

nav img {
    width: 100px;
    padding-left: 20px;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    margin: 20px 30px;
}

.left-container {
    width: 60%
}

.left-container h1 {
    color: white;
    font-size: 60px;
}

.sub-para {
    margin: 20px 0;
}

.sub-para p {
    color: white;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 2px;
}

.schedule-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.schedule {
    display: flex;
    align-items: center;
    text-align: center;
}

.schedule-img {
    margin-right: 20px;
    background-color: #ED1C24;
    color: white;
    padding: 10px 15px;
}

.schedule-img i {
    font-size: 25px;
    text-align: center;
}

.right {
    width: 5px;
    height: 50px;
    background-color: white;
    margin: 0 30px;
}

.schedule-desc {
    color: white;
    font-size: 18px;
}

.time-running {
    margin-top: 40px;
}

.time-para {
    color: white;
    text-align: center;
    font-size: 25px;
}

.time-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.count {
    background: rgb(255,255,255);
    background: linear-gradient(55deg, rgba(255,255,255,0.9304971988795518) 0%, rgba(164,162,181,0.7428221288515406) 45%);
    margin: 20px;
    text-align: center;
    width: 70px;
    padding: 10px 0;
    border-radius: 10px;
    color: white;
}

.booking-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(237,28,36);
    background: linear-gradient(90deg, rgba(237,28,36,0.8128501400560224) 50%, rgba(255, 253, 253, 0.04) 85%);
    height: 100px;
    margin-top: 10px;
    margin-left: -30px;
}

.booking-para {
    display: flex;
    align-items: center;
    color: white;
}

.booking-para i {
    font-size: 25px;
    margin: 0 10px;
}

.right-container {
    width: 50%;
}

.form-container {
    border: 1px solid #ED1C24;
    width: 80%;
    margin-left: 70px;
    height: 100%;
    box-shadow: inset 0 0 15px rgba(237,28,36,0.8128501400560224);
    display: flex;
    align-items: center;
    justify-content: center;
}

input {
    width: 100%;
    height: 60px;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    transition: .5s;
}

input::placeholder {
    color: white;
}

input:focus {
    box-shadow: inset 0 0 15px rgba(237,28,36,0.8128501400560224) ;
    border-color: #ED1C24;
}

form {
    margin: 0 35px;
}

form button {
    width: 100%;
    margin-top: 20px;
    height: 60px;
    text-align: center;
    font-size: 16px;
    background-color: #ED1C24;
    color: white;
    border: none;
    box-shadow: 0px 0px 5px rgba(237,28,36,0.8128501400560224);
    cursor: pointer;
    transition: .4s;
}

form button:hover {
    box-shadow: 7px 7px 4px rgba(237,28,36,0.8128501400560224);
    border-radius: 10px;
}

.tab {
    display: none;
}

.book-now {
    display: none;
}

/*  */
@media (max-width: 1210px) {
    .left-container h1 {
        font-size: 45px;
    }
}

@media (max-width: 768px) {
    .right-container {
        display: none;
    }
    
    .left-container {
        width: 100%;
        margin: 0 20px;
    }

    .left-container h1 {
        font-size: 45px;
        letter-spacing: 6px;
    }

    .sub-para p {
        font-size: 20px;
        letter-spacing: 0;
    }

    .schedule-container {
        margin-top: 35px;
    }

    .schedule-img {
        padding: 10px 15px;
    }
    
    .schedule-img i {
        font-size: 20px;
    }
    
    .schedule-desc {
        font-size: 15px;
    }

    .time-running {
        margin-top: 30px;
    }

    .lap {
        display: none;
    }

    .tab {
        display: flex;
        margin-top: 40px;
        margin-left: -55px;
        margin-right: -50px;
    }

    .booking-para p {
        font-size: 20px;
    }

    .time-para p {
        font-size: 30px;
    }

    .time-container {
        margin-top: 10px;
    }

    .count {
        width: 90px;
        padding: 15px 0;
        font-size: 17px;
    }

    .book-now {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

    .book-now button {
        width: 300px;
        padding: 20px 0;
        font-size: 20px;
        font-weight: 600;
        background-color: #ED1C24;
        border: none;
        color: white;
        transition: .5s ease-in-out;
    }

    .book-now button:hover {
        transform: scale(.9);
    }
}

@media (max-width: 640px) {

    .left-container {
        margin: 0 0px;
    }

    .left-container h1 {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .sub-para {
        margin-top: 10px;
    }

    .sub-para p {
        font-size: 17px;
    }

    .tab {
        margin-top: 30px;
        margin-left: -30px;
        margin-right: -30px;
    }
}

@media (max-width: 539px) {
    .left-container h1 {
        font-size: 40px;
        letter-spacing: 1px;
    }

    .sub-para {
        margin-top: 20px;
    }

    .schedule-desc p {
        font-size: 13px;
    }

    .tab {
        margin-top: 50px;
    }
}

@media (max-width: 495px) {
    .left-container h1 {
        font-size: 35px;
        letter-spacing: 1px;
    }

    .sub-para p {
        font-size: 15px;
    }

    .booking-para i {
        font-size: 17px;
    }

    .booking-para p {
        font-size: 17px;
    }

    .schedule-img i {
        font-size: 17px;
    }

    .schedule-img {
        padding: 5px 10px;
    }

    .right {
        margin: 0 20px;
    }

    .count {
        width: 70px;
        font-size: 15px;
    }
}

@media (max-width: 425px) {
    .left-container h1 {
        font-size: 30px;
        letter-spacing: 0;
    }

    .sub-para p {
        width: 330px;
    } 

    .wrapper {
        margin: 20px 20px;
    }

    .tab {
        margin-top: 30px;
        margin-left: -30px;
        margin-right: -20px;
    }

    .booking-para i {
        margin-left: 15px;
    }

    .booking-para p {
        font-size: 15px;
    }

    .count {
        padding: 10px 10px;
    }
}

@media (max-width: 390px) {

    .schedule {
        margin-left: -15px;
    }

    .schedule-desc {
        margin-right: 0;
    }
}

@media (max-width: 350px) {
    .left-container h1 {
        font-size: 25px;
    }

    .sub-para p {
        width: 300px;
    }

    .schedule-desc {
        margin-left: -10px;
    }

    .count {
        margin: 10px;
        padding: 5px 10px;
    }

    .book-now button {
        width: 250px;
    }
}

@media (max-width: 320px) {
    .wrapper {
        margin-top: 70px;
    }

    .sub-para p {
        font-size: 13px;
    }

    .right {
        height: 40px;
        margin-left: 15px;
    }
}

.login{
    background-color: black;
    background-position: center;
    background-size: cover;
}




/* 
@media (min-width: 768px) {
    .login {
        display: none;
    }    
}

@media (max-width: 768px) {
    .login form input {
        width: 500px;
    }    
}

@media (max-width: 530px) {
    .login form input {
        width: 400px;
    }
}

@media (max-width: 410px) {
    .login form input {
        width: 320px;
    }
    
}

@media (max-width: 321px) {
    .login form input {
        width: 250px;
    }
} */
@media (max-width: 321px) {
    .container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 90vh;
    }
    .login nav{
        padding-top: 10%;
    }
    .login form input {
        width: 250px;
    }
    .loginbuton{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .loginBtn{
        width: 150px !important;
    }
} 
@media (min-width:321px) and (max-width: 376px) {
    .container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 90vh;
    }
    .login nav{
        padding-top: 10%;
    }
    .login form input {
        width: 350px;
    }
    .loginbuton{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .loginBtn{
        width: 150px !important;
    }
} 
@media (min-width:376px) and (max-width: 426px) {
    .container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 90vh;
    }
    .login nav{
        padding-top: 10%;
    }
    .login form input {
        width: 350px;
    }
    .loginbuton{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .loginBtn{
        width: 150px !important;
    }
} 
@media(min-width:427px) and (max-width:2560px){
    .container{
        display: none;
    }
    .login{
        display: none;
    }
}

.loginBtn {
    background-color: #ED1C24;
    border-radius: 35px 10px 35px 10px;
}
