/*colours*/
:root {
    --accent1: #9c1b22;
    --accent2: #811f24;
    --accent3: #fcf6ea;
    --background: #521418;
}

@font-face {
    font-family: 'Amiko';
    src: url('../fonts/amiko.regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Arya';
    src: url('../fonts/Arya-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
}

body {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100%;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Arya';
    font-size: 2rem;
    color: white;
    text-align: center;
}

p {
    font-family: 'Amiko';
    color: white;
}

a {
    cursor: pointer;
}

.hamburger-list a {
    cursor: pointer;
}

button {
    font-family: 'Arya';
}

input,
select {
    border-radius: 8px;
    padding: 0.2rem 0rem 0.2rem 0rem;
    margin-bottom: 0.5rem;
    width: 100%;
    border: 2px solid black;
    font-family: 'Amiko';
    text-align: center;
    background-color: #DBDBDB;
    color: #7C7B7B;
}

input:focus,
select:focus,
input:hover,
select:hover {
    outline: none;
    border: 5px solid var(--accent2);
    box-shadow: 0px 0px 8px var(--accent1);
    color: black;
    background-color: white;
    padding: 0.2rem 0rem 0.2rem 0rem;
}

.hidden {
    display: none;
}

select option {
    padding: 10px;
    background-color: var(--accent2);
    color: #ffffff;
    margin-bottom: 0.3rem;
}

option:hover {
    box-shadow: 0 0 10px 100px #1882A8 inset;
    /*NOT WORKING ?????????????????????????????????????????????????*/
}

a {
    color: white;
    font-family: 'Amiko';
}

.spotlight {
    width: 100%;
    display: flex;
    justify-content: center;
}

.spotlight-title {
    width: 80%;
    padding-bottom: 1rem;
    margin-top: 2rem;
    border-bottom: 1px solid white;
}

.responsive {
    width: 100%;
    height: auto;
    transform: scale(0.8);
}


/*Slick track*/
.slider {
    width: 80%;
    margin: auto;
    height: 20rem;
    padding-top: 3rem;
}
.slick-dots li {
    display: none;
}

.slick-slide {
    margin: 0px 10px;
}

.slick-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.slick-next:before {
    color: rgba(255, 255, 255, 0.475);
    content: ">";
    font-size: 30px;
    position: relative;
}

.slick-prev:before {
    color: rgba(255, 255, 255, 0.475);
    content: "<";
    font-size: 30px;
    position: relative;
}

.slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
}

/*end of slick track*/

.promo-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.movie-promo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;

}

.movie-promo img {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

.home-tickets {
    background-color: var(--accent1);
    font-size: 1rem;
    border-radius: 0px 0px 10px 10px;
    width: 100%;
}

.home-tickets a {
    text-decoration: none;
    font-family: 'Arya' !important;
}

.login-title {
    text-align: center;
    font-size: 1.2rem !important;
    margin-bottom: 3rem
}




.log-reg-body,
body {
    background: var(--background);
    background: linear-gradient(180deg, var(--background) 48%, rgba(0, 0, 0, 1) 100%);
}
.log-reg-body{
    height: 100vh;
    overflow-y: hidden;
}

.log-reg-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.log-reg-container  {
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100vw;
}
.already-memb{
    margin-top: 2rem;
    opacity: 0.5;
}

.log-reg-form {
    padding-top: 2rem;
    border-top: 2px solid var(--accent1);
    border-bottom: 2px solid var(--accent1);
    height: 35rem;
    border-radius: 20px;
    background-color:  #01000037;
}
.login-form{
    height: 15rem !important;
    padding: 3rem 1rem 3rem 1rem;
}

.log-reg-form h6{
    margin-bottom: 2rem;
}

.log-reg-form label{
    display: none;
}
.login-memb{
    position: absolute;
    bottom: 5px;
}

.log-in input {
    border: 2px solid rgba(255, 255, 255, 0.573);
    width: 80%;
    color: white;
    font-weight: 600;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 30px;
}
.welcome-title{
    margin-top: -5rem;
    margin-bottom: 3rem;
}
.action-img img{
    display: none;
}
.register-error{
    position: absolute;
    bottom: 100px !important;
}
.register{
    background-color:  #01000037;
    padding: 3rem;
}
.register-background{
    width: 80%;
    background-color:  #01000037;
    border-radius: 20px;
}

.reg {
    margin-top: 3rem;
}
.register-img{
    display: none;
}




header a {
    color: rgb(20, 20, 20);
}

header {
    padding: 1rem 0rem 0rem 1rem;
    background-color: var(--accent2);
    border-bottom: 1.5px solid var(--accent1);
    position: fixed;
    top: 0;
    height: 3rem;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
}

p,
a {
    font-family: 'Amiko';
}







.header-home-link {
    text-decoration: none;
}

.header-home-link h1 {
    margin-top: -0.40rem;
    font-size: 1.40rem;
    color: white;
    font-family: 'Arya';
}

nav {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent2);
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    /* Start off-screen to the right */
    transition: transform 200ms ease-in-out;
    /* Smooth transition for the animation */
}

nav ul {
    text-align: right;
    margin-top: 6rem;
    list-style: none;
}

nav li {
    text-align: right;
    margin-bottom: 2rem;
    font-family: "Arya";
    width: 50%;
    padding-bottom: 1rem;
    margin-right: 1.6rem;
    width: 15rem;
}

.mobile {
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.324); 
}
.my-account-icon{
    display: none;
}

 .hamburger-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: end;
    /* width: 100%; */
} 

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    text-align: right;
    text-transform: uppercase;
    opacity: 0;
}

/*Pseudo class check is looking to see if checkbox is checked or not*/
/*the ~ is looking for a SIBLING of nav-toggle, not a child*/
.nav-toggle:checked~nav {
    transform: translateX(0);
    /* Move nav into view */
}

.nav-toggle:checked~nav a {
    opacity: 1;
    transition: opacity 250ms ease-in-out 250ms;
}

.nav-toggle:checked~nav {
    transform: scale(1, 1);
    /*keeping width and height at 100%*/
}

.nav-toggle:checked~nav a {
    opacity: 1;
    transition: opacity 250ms ease-in-out 250ms;
}

.nav-toggle {
    display: none;
    /*hides the checkbox input*/
}

/*hamburger icon*/
.nav-toggle-label {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 2rem !important;
    /*these 3 properties will center the icon in the middle of the header.*/
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: white;
    height: 0.15rem;
    width: 1.3rem;
    border-radius: 100px;
    position: relative;
}

/*these next 3 sections display the other 2 lines of the hamburger icon*/
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    /*necessary*/
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 7px;
}

.nav-toggle-label span::after {
    top: 7px;
}




/*BOTTOM NAV BAR*/
.bottom-nav {
    position: fixed;
    overflow: hidden;
    bottom: 0;
    width: 100%;
    background-color: var(--accent2);
    height: 2.5rem;
    z-index: 999;
    padding-bottom: 0.5rem 0rem 0.5rem 0rem;
}

.bottom-nav div {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.bottom-nav p {
    color: white;
    display: inline-block;
    -webkit-transform: scale(1, 2.5);
    margin-top: 1.5rem;
}

.bottom-nav-icon {
    font-size: 1.3rem !important;
    padding: 0.5rem;
}



.welcome {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.welcome img {
    margin-top: 0;
    width: 90% !important;
    object-fit: cover;
    border-radius: 10px;
}

.home-button {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 4rem;
}

.home-button button {
    border-radius: 0px 0px 10px 10px;
    height: 3rem;
    width: 90%;
    font-size: 1.5rem;
    border: none;
    background-color: var(--accent1);
    color: white;
}

.now-showing {
    width: 100%;
}

.border-underline {
    width: 50%;
    font-family: 'Arya';
    font-size: 2rem;
    margin-top: 3rem;
    margin-left: 1rem;
    color: rgb(160, 160, 160);
    margin-bottom: 3rem;
}

.offer-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
    margin-bottom: 3rem;
    padding: 1rem;
}

.home-offer {
    background-color: rgba(0, 0, 0, 0.447);
    border-radius: 15px;
    width: 100vw;
    padding: 1.5rem;
    color: white;
    height: 17rem;
}

.offer-details p {
    text-align: center;
    color: var(--accent3);
    padding: 1rem 1rem 0rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.home-register {
    border: 3px solid var(--accent1);
    box-shadow: 0px 0px 8px var(--accent1);
    background-color: #86272c00;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    margin-bottom: 1rem;
    width: 15rem;
    font-size: 1.2rem;
}

.offer-graphic {
    display: none;
}

/*NOW SHOWING PAGE (ALLFILMS)*/
.filter-menu {
    margin-top: 6rem !important;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.filter-inner {
    width: 80%;
    text-align: center;
    display: flex !important;
    justify-content: center !important;
}

.filter-inner select{
    background-color: transparent;
    border: none;
    color: white;
    width: 10rem !important;
}


.go {
    width: 12rem !important;
    background-color: var(--accent1);
    color: white;
    border: none;
    margin-top: 1rem;
    font-weight: 600;
    font-family: 'Arya' !important;
    margin-top: 2rem;
}
.go:hover{
    background-color: transparent;
    border: 2px solid var(--accent1);
    color: white;
}
/* holds all movies - independant of loop */
.cont{
    margin-top: 5rem;
}

.movie-container {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
}

.single-movie {
    width: 20rem;
    height: 13rem;
    background-color: rgba(0, 0, 0, 0.384);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.movie-info {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}

.poster {
    width: 40%;
    height: 100%;
}

.poster img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.movie-text {
    width: 60%;
    height: 100%;
    color: white;
    font-size: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: left;
}

.movie-text h2 {
    font-weight: 400 !important;
    font-size: medium !important;
    white-space: normal;
    text-align: left;
    display: -webkit-box;               
    -webkit-box-orient: vertical;       
    -webkit-line-clamp: 1;              
    overflow: hidden;                 
    text-overflow: ellipsis;         
    line-height: 1.5em;              
    max-height: 3em;               
    width: 100%;   

}

.home-description {                  
    display: -webkit-box;               
    -webkit-box-orient: vertical;       
    -webkit-line-clamp: 4;              
    overflow: hidden;                 
    text-overflow: ellipsis;         
    line-height: 1.9em;              
    max-height: 5.6em;               
    width: 100%;                  
}         

.ratings{
    display: none;
}

.ratings {
    line-height: 0.2;
}

.no-results{
    height: 20rem;
}

.allfilms-book {
    border: 2px solid var(--accent1);
    background-color: #591a1d00;
    width: 8rem;
    color: white;
    height: 1.8rem;
    font-family: 'Arya';
    font-size: 0.8rem;
    position: absolute;
    bottom: 0.5rem;
    box-shadow: 0 0 10px var(--accent1);
    font-weight: 500;
}

/*END*/

footer {
    color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    padding-top: 3rem;
}

.section a {
    font-size: 0.8rem;
}

.section {
    margin-bottom: 2rem;
}

.border-top {
    width: 80%;
    padding-top: 2rem;
    border-top: 10px solid white;
    margin-bottom: 1rem;
}

.section a {
    text-decoration: none;
    color: white;
    margin-bottom: 0.5rem;
}

.socials {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}

.socials img {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1.5rem;
}

/*OFFERS PAGE*/
.offer-cont{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}
.of-img{
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-around;
    width: 95%;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.628);
    padding: 1rem;
    box-shadow: 0px 0px 8px var(--accent1);
}

.of-img:hover{
    transform: scale(1.05,1.05);
}

.of-img img{
    width: 8rem;
    height: 12rem;
    object-fit: cover;
    border-radius: 10px;
}
.of-details{
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.of-details h6{
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid grey;
    width: 10rem;
}
.of-details p{
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding: 0.3rem 1rem 0.3rem 1rem;
    color:rgba(255, 255, 255, 0.758);
}













/*END*/

/*HOME CAROUSEL*/
.image-carousel {
    width: 100%;
    height: 20rem;
    margin-top: 5rem;
    display: flex;
    justify-content: center;
}

.carousel-inner {
    width: 80%;
    height: 100%;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

#prevBtn,
#nextBtn {
    background-color: var(--background);
    border: none;
    color: white;
    outline: none;
}

/*HOME CAROUSEL END*/



.contact-container {
    margin-top: 6rem;
    padding: 0rem 3rem 0rem 3rem;
}

.contact-us h2 {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.715);
    margin-bottom: 3rem;
}

.contact-us p {
    text-align: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.701);
}

.contact-form {
    background-color: rgba(0, 0, 0, 0.555);
    border-radius: 10px;
    padding: 2rem;
}

.contact-form label {
    display: none;
}

textarea {
    width: 100%;
    border-radius: 10px;
    background-color: #DBDBDB;
    padding: 0.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-submit {
    background-color: var(--accent2);
    color: white;
    font-size: 800;
}

.contact-graphic {
    display: none;
}
/*END OF CONTACT PAGE*/


/*BOOKING PAGE - FILM PROFILE*/
.genres{
    margin: 2rem 0rem 2rem 0rem;
    text-align: center;
    text-transform: uppercase;
}
.pf-movie-info{
    padding: 0rem 2rem 0rem 2rem;
    text-align: justify !important;
}
.mob-movie-info{
    margin-top: 2rem;
    margin-left: 2rem;
}
.pf-movie-flex{
    margin-top: 5rem;
}
.pf-movie-flex img{
    border-radius: 20px;
}
.trailer-container{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}


.bookTickets{
    width: 100%;
    height: 2rem;
    font-size: small;
    background-color: var(--accent2);
    color: white;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    margin-top: -0.8rem;
}
.showdate{
    color: rgba(255, 255, 255, 0.658);
    text-align: center;
    margin: -1rem 0rem 1rem 0rem;
}
.bookTickets:hover{
    background-color: rgba(0, 0, 0, 0.269);
    box-shadow: 0 0 10px var(--accent1);
}


.trailer-container iframe{
    border-radius: 10px;
    width: 100%; 
    height: 100%; 
    margin-bottom: 2rem;
} 
/*END*/


/*KIDS PAGE*/
.header-container{
    width: 100%;
    height: 20rem !important;
    display: flex;
    justify-content: center;
    margin: 5rem 0rem 4rem 0rem;
}

.header-img{
    width: 90%;
}

.header-img img{
    object-fit: cover;
    width: 100%;
    height: 20rem;
}
/*END*/


/*E-TICKET PAGE*/
.ticket-container{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 8rem;
}

.ticket-flex{
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.571);;
    border-radius: 15px;
    padding: 1.5rem 1rem 1.5rem 1rem;
}
.ticket-flex img{
    border-radius: 10px;
    height: 16rem;
    object-fit: cover;
    margin-bottom: 1rem;
}

.ticket-info{
    margin-bottom: 2rem;
    text-align: center;
}
.qr-code img{
    border-radius: 15px;
    height: 8rem;
    width: 8rem;
    opacity: 0.9;
}
.print-ticket{
    text-align: center;
    margin-top: 2rem;
    padding: 0rem 0.5rem 0rem 0.5rem;
}

/*USER PROFILE PAGE*/
.pf-options{
    width: 100%;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pf-options button{
    border-radius: 5px;
    width: 20rem;
    background-color: var(--accent1);
    font-family: 'Amiko', sans-serif !important;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    outline: none;
    border: none;
    height: 4rem;
    margin-bottom: 2rem;
    box-shadow: 0px 3px rgb(196, 196, 196);
}
.hello{
    margin-top: 5rem;
    text-align: center;
}
.hello p{
    font-size: 1.5rem;
}
/*END*/

/*MYTICKETS.PHP*/
.tickets-container{
    display: flex;
    justify-content: center;
}
.access-ticket{
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
}
.access-ticket a{
    width: 90%;
    text-decoration: none;
}

.user-ticket{
    width: 100%;
    background-color:rgba(0, 0, 0, 0.447);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid var(--accent1);
}
/*END*/
.error-msg{
    text-align: center;
}

.pf-movie-search{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-carousel {
    display: none;
}
.st-display{
    margin-top: 1rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 2rem;
}
.showtimes-display{
    border: 2px solid rgba(255, 255, 255, 0.626);
    border-radius: 20px 0px 20px 0px;
    background-color: rgba(0, 0, 0, 0.454);
    min-width: 10rem;
    padding: 0.5rem;
    margin-right: 1rem;
}
.time{
    text-align: center;
    font-weight: bold;
}
.ticket-quantity{
    width: 100%;
    height: 1.5rem;
    border: 2px solid var(--accent1);
    background-color: transparent;
    color: white;
}


.pf-search-button, #searchVenue{
    color: white;
    box-shadow: 0 0 10px var(--accent1);
    background-color: rgba(74, 24, 24, 0.484);
    width: 20rem;
    padding: 0.5rem;
    font-weight: 800;
}

.pf-search-button{
    background-color: #811f24;
    margin-top: 1rem;
    border: none;
}
.pf-search-button:hover{
    background-color: rgba(0, 0, 0, 0.484);
    border: none;
    height: 2rem;
    color: white;
}
.mp-img{
    text-align: center;
    margin-bottom: 3rem;
}
.movie-header{
    display: none;
}

.image-slideshow{
    margin-top: 3rem;
}
.kids-movies{
    margin-top: 5rem;
}

#logout{
    display: none;
}
.image img{
    width: 100%;
    height: 20rem;
    object-fit: cover;
}
.banner{
    margin-top: -10rem;
    margin-bottom: 10rem;
}
.banner a{
    display: none;
}
.home-fade{
    display: none;
}
.no-mg{
    margin-top: 1rem !important;
}
.offers{
    margin-top: 7rem !important;
}
.ticket-title{
    display: flex;
    justify-content: center;
}
.ticket-heading{
    padding: 1rem;
    border: 2px solid white;
    border-radius: 30px;
    margin-top: 5rem;
    width: 80%;
    margin-bottom: 5rem;
}
.background-cont{
    background-color: rgba(0, 0, 0, 0.516);
    margin: 4rem 0rem 4rem 0rem;
    padding: 2rem 0rem 2rem 0rem;
}
#username{
    display: none;
}
.logout-mobile{
    display: block;
}


/*FOR TABLETS*/
@media screen and (min-width:600px) {
    .no-mg{
        margin-top: -5.5rem !important;
    }
    #username{
        display: block;
        color: white;
        padding: 0rem 0rem 0.1rem 0rem;
        margin-left: 1rem;
        outline: none;
        border: none;
        background-color: transparent;
    }
    .logout-mobile{
        display: none;
    }
    
    .mob-movie-info{
        font-size: 0.8rem;
    }
    .desc{
        width: 80%;
        font-size: 1rem;
    }
    .mp-img{
        display: none;
    }
    .movie-header{
        display: block;
        height: 25rem;
        margin-top: 3rem;
    }
    .movie-header img{
        border-radius: 0px;
        z-index: 0;
    }
    .movie-header p, .fader{
        color: transparent;
        background: rgb(82,20,24);
        background: linear-gradient(180deg, rgba(82,20,24,0) 41%, rgba(82,20,24,1) 91%);
        height: 15rem;
        position: relative;
        z-index: 100;
        margin-top: -14rem;
    }
     .home-fade{
    margin-top: -5rem;
    height: 5rem;
    } 
    .background-cont{
        margin: unset;
        padding: 3rem 0rem 1rem 0rem;
        border-radius: 20px;
        transform: scale(0.98);
    }
    .findTickets{
        font-size: 1.5rem;
    }
    #searchVenue, .pf-search-button{
        transform: scale(0.8);
    }
    .bookTickets{
        height: 2.5rem;
        margin-top: 0rem;
    }
    .st-display{
        margin-top: 1rem;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        overflow-x: scroll;
        scroll-behavior: smooth;
        padding: 0rem 2rem 0rem 2rem;
    }
    .showtimes-display{
        min-width: 14rem;
        margin: 0rem;
        text-align: center;
        transform: scale(0.8);
    }
    .st-display::-webkit-scrollbar {
        width: 0px;
        background-color: transparent;
      }
      
      .st-display::-webkit-scrollbar-thumb {
        background-color: transparent;
      }
    .time-flex{
        text-align: center;
    }
    .pf-movie-search{
        flex-direction: row;
        justify-content: center !important;
        align-items: center;
    }
    .pf-movie-info{
        width: 70%;
        font-size: 0.8rem;
        text-align: left !important;
    }
    .left-align h2{
        font-size: 3rem;
        margin-bottom: 2rem;
        text-transform: uppercase;
        text-shadow: 0px 2px #9c1b22;
    }
    .pf-movie-info p{
        color: rgba(255, 255, 255, 0.799);
        text-align: left !important;
    }
    .pf-movie-info h2{
        text-align: left !important;
    }
    .pf-movie-flex{
       text-align: left;
        margin-top: -2rem !important;
        padding: 3rem 1rem 3rem 1rem;
        align-items: flex-start;
    }
    .mp-img img{
        height: 20rem;
    }
 
    .bottom-nav {
        display: none;
    }

    .offer-container {
        margin-top: -5rem;
        flex-direction: row;
        align-items: flex-start;
    }

    .border-top {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .section {
        width: 20%;
    }

    .section a:hover {
        text-decoration: underline;
    }

    .socials {
        align-items: end;
        cursor: pointer;
    }

    .spotlight {
        margin-top: 4rem;
    }
    .spotlight-img{
        transition: 0.5s;
    }
    .spotlight-img:hover{
        margin-top: -0.5rem;
    }

    .slider {
        margin-top: 4rem;
    }

    .contact-form form {
        width: 30rem;
    }

    .contact-form h5 {
        margin-bottom: -1rem;
    }

    .form-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .main-form {
        width: 70%;
        background-color: rgba(0, 0, 0, 0.555);
        display: flex;
        justify-content: center;
        border-radius: 10px;
        margin-bottom: 5rem;
    }

    .contact-graphic {
        display: block;
    }

    .contact-graphic img{
        width: 100%;
        padding-top: 3rem;
    }
    /*E-TICKET PAGE*/

.ticket-flex{
    flex-direction: row;
    padding: 2rem 0rem 2rem 3rem;
    justify-content: space-between;
}
.ticket-flex img{
    margin-right: 2rem;
    padding-right: 2rem;
    height: 22rem;
    object-fit: contain;
}

.ticket-info{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
}
.qr-code{
    margin-left: 5rem;
    display: flex;
    justify-content: end;
    align-items: start;
    height: 100%;
}
.qr-code img{
    height: 6rem;
    width: 6rem;
}

.action-img img{
    display: block;
}
.login-form{
    padding: 3rem;
}

  img {
    width: 100%;
    border-radius: 15px;
  }
  .fade {
    animation-name: fade;
    animation-duration: 5s;
  }
   @keyframes fade {
    from {opacity: .5}
    to {opacity: 1}
  } 
  .search-btn-container{
    width: 20rem;
}
.pf-search-button{
    width: 100%;
    margin-top: 0rem;
}
.display-memberInfo{
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    border-radius: 30px;
    width: 80%;
}
.user-info{
    margin-top: 8rem;
    width: 50%;
    text-align: left;
}
.center{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

}

/*FOR DESKTOP*/
@media screen and (min-width: 768px) {
    .banner{
    position: absolute;
    top: 40%; right: 50%;
    transform: translate(50%,-50%);
    text-align: center;
    margin-top: -1rem;
    }
    .banner a{
        display: block;
    }
    .home-fade{
        display: block;
    }
    .banner h6{
       text-shadow: 0px 5px 5px var(--accent1);
       letter-spacing: 3px;
    }
    .banner-btn{
        margin-top: 2rem;
        background: transparent;
        color: white;
        border: 1px solid white;
        border-radius: 15px;
        padding: 1rem;
        cursor: pointer;
        text-decoration: none;
    }
    .banner-btn:hover{
        background-color: var(--accent3);
        color: var(--background);
        font-weight: 800;
    }
    .single-movie {
        width: 48rem;
        height: 25rem;
        margin-bottom: 4rem;
    }

    .poster {
        width: 40%;
        height: 100%;
    }

    .poster img {
        width: 80%;
        height: 100%;
        object-fit: fill;
    }

    .movie-text {
        width: 60%;
        height: 100%;
        padding-left: 0rem;
    }

    .movie-text h2 {
        font-size: 2.3rem !important;
        padding-bottom: 1rem;
    }

    .home-description {
        -webkit-line-clamp: 4;
        height: 9rem; 
        line-height: 1.5em;
        font-size: 0.8rem;
        margin-bottom: 5rem;
    }

    .ratings {
        font-size: 0.8rem;
    }

    .allfilms-book {
        margin-right: 50rem;
        width: 26rem;
        height: 2rem;
    }

    .allfilms-book:hover {
        background-color: var(--accent2);
    }

    .button-div {
        width: 100%;
        height: 60%;
        display: flex;
        flex-direction: row;
        justify-content: start;
    }


    /*slider images*/
    .movie-promo-img {
        width: 100%;
        height: 20rem;
        object-fit: cover;
        display: none;
        border-radius: 10px;
    }

    .slick-next::before {
        top: 200%;
    }

    .slick-prev::before {
        top: 200%;
    }

    .offer-container {
        display: flex;
        justify-content: center;
    }

    .home-offer {
        margin-top: 8rem;
        width: 80%;
    }

    .offer-flex{
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

   
    .offer-graphic{
        display: block;
    }
    

    .home-register:hover {
        background-color: var(--accent1);
    }

    .welcome img {
        width: 100%;
        object-fit: cover;
    }

    /*NOW SHOWING PAGE (ALLFILMS)*/
    .filter-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .filter-inner {
        width: 80%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background-color: #24090b;
        border-radius: 30px;
        padding: 1rem 0rem 1rem 0rem;
    }

    .filter-inner select {
        width: 20rem;
        height: 1.6rem;
        font-size: 0.8rem;
    }

    .go {
        margin-top: 2rem;
        height: 2rem;
        font-size: 0.8rem;
        width: 100% !important;
    }

    /*BOOKING PAGE*/

        
    .pf-movie-flex{
        display: flex;
        margin-top: 5rem;
    }

    .trailer-container{
        flex-direction: row !important;
        padding: 2rem 0.5rem 0.5rem 0.5rem;
        margin-top: 4rem;
    }
 .trailer-container iframe{
    height: 18rem; 
    width: 45%;
}  

.st-display{
    margin-top: 2rem;
}

.showtimes-display{
    border: 2px solid rgba(255, 255, 255, 0.466);
    padding: 1rem 2rem 1rem 2rem;
    border-radius: 20px 0px 20px 0px;
    margin-top: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: unset !important;
}

.time{
    font-size: 1.5rem;
}

/*OFFERS PAGE*/
.offer-cont{
    padding: 3rem;
    flex-direction: row;
    justify-content:space-around;
}
.of-img{
    flex-direction: column;
    justify-content: space-around;
    width: 30% !important;
    height: 25rem;
}
.of-img img{
    width: 100%;
    height: 10rem;
}
.of-details{
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.of-details h6{
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid grey;
    width: 10rem;
}
.of-details p{
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding: 0.3rem 1rem 0.3rem 1rem;
    color:rgba(255, 255, 255, 0.758);
}
.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-display{
    margin-right: -22rem;
}
.welcome-title{
    margin-right: 2rem;
    text-align: justify !important;
    margin-top: -7.2rem;

}
.welcome-title h6{
    font-size: 3rem;
    text-align: left;
}
.welcome-title h3{
    font-size: 2rem !important;
    text-align: left;
}
.log-reg-form{
    margin-top: -5rem;
    height: 28rem;
}
.log-reg-form input{
    width: 50%;
    margin-bottom: 0.3rem;
    border-radius: 30px;
    border: 2px solid var(--background);
}
.reg{
    margin-top: 1rem;
}
.register-img{
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.3;
}
.register-background form{
    margin-top: 5rem;
}
.flex-register{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.8rem;
}
.flex-register input{
    width: 25%;
}

.login-form input{
    width: 100%;
}
.action-img{
    position: absolute;
    bottom: -30px;
    left: -80px;
}
.action-img img{
    width: 30rem;
    height: 40rem;
    opacity: 0.5;
}
.ratings{
    display: block;
}
.login-unsuccessful{
    margin-top: 2rem;
    margin-left: 41.5rem;
}
.pf-options button{
    width: 50rem;
}
#logout a{
    font-size: 0.8rem;
    position: absolute;
    top: 48px;
    right: 55px;
    padding: 0rem 2rem 0rem 2rem;
    text-align: center;
}
#logout p{
    margin-bottom: 0rem;
    padding: 1rem 0rem 1rem 0rem;
}
#logout a:hover{
    background-color: #521418;
}
.my-account-icon a:hover{
    background-color: black !important
}
}

@media screen and (min-width: 900px){

    .mobile {
        border-bottom: none;
    }
    .my-account{
        display: none;
    }
    .my-account-icon{
        display: block;
    }

    .nav-toggle-label {
        display: none;
    }

    nav {
        font-family: 'Arya' !important;
        all: unset;
        display: flex;
        justify-content: flex-end;
        width: 80%;
        align-items: center;
    }


    nav a {
        all: unset;
        opacity: 1;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.562);
        background-color: var(--accent2);
        border-radius: 10px;
        padding: 0rem 0.5rem 0rem 0.5rem;
    }

    nav a:hover {
        background-color: var(--accent3);
        color: var(--background);
    }

    nav ul {
        all: unset;
        display: flex;
        justify-content: flex-end;
    }

    nav li {
        all: unset;
        margin-bottom: 0.5rem;
        padding: 0rem 1rem 0rem 1rem;
    }

    .hamburger-list{
        flex-direction: row;
    }
  
}