:root{
    --primary-color: white;
    --phlay-color: black;
    --accent-color: #c56b91;
}

html, body, .main{
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    background-color: var(--accent-color);
    font-family: 'Arial', sans-serif;
}

.main{
    display: grid;
    grid-template-rows: 100%;
    background: url(img/dubai_interactive_tour_BKG_NEW.jpg);
    background-size: cover;
}

.container{
    display: flex;
    flex-direction: row;
    padding-top: 3%;
}

.content-center{
    width: 100%;
    height: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    flex: 4;
}

.content-right, .content-left{
    background-size: cover;
    display: grid;
    align-items: start;
    justify-items: center;
    flex: 1;
}
.content-left{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5.5%;
}
.content-left img{
    width: 85%;
}
.qrcode {
    width: 65%;
    margin-top: 55%;
}


.banner-container{
    width: auto;
    display: grid;
    align-items: start;
    justify-items: center;
}

.banner-mobile{
    width: 3%;
    margin: 0 auto 0 auto;
}

.phlay-container{
    align-self: start;
    justify-self: center;
    overflow: hidden;
    max-width: 740px;
    width: 100%;
    height: 100%;
    display: grid;
    margin: 0 auto;
}

.frame{
    align-self: center;
    justify-self: center;
    overflow: hidden;
    margin: auto;
    border: none;
    width: 100%;
    height: 100%;
}

.header{
    display: flex;
    width: 100%;
    background-color: var(--phlay-color);
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
    text-align: center;
    font-weight: 400;
    align-items: center;
    justify-content: center;
}
.title{
    margin-top: 1%;
    margin-block-end: 0;
    margin-block-start: 0;
    height: 80%;
    justify-self: center;
}
.subtitle{
    margin: 0;
    font-size: 1.1em;
    margin-block-end: 0;
    margin-block-start: 0;
    letter-spacing: 3px;
}

.header-img{
    width: 80%;
    margin: 0 auto;
}

.content-img{
    height: 100%;
}

.separator{
    width: 102%;
    align-self: end;
}
.cta{
    width: 100%;
    display: none;
    align-self: end;
}

.logo-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.logo{
    width: 8%;
}

.footer{
    width: 100%;
    display: none;
    align-items: center;
    justify-items: center;
}


/* MOBILE PORTRAIT */
@media only screen and (max-width: 480px){
	body{
		background: var(--accent-color);
	}
	
    .content-right, .content-left, .header, .pack-header, .countdown, #info-container{
        display: none;
    }
    
    .phlay-container{
        height: 100%;
        width: 100%;
    }

    .frame{
        width: 100%;
        height: 100%;
    }
    
    .footer{
		display: none;
	}
    
    .main{
        display: grid;
        grid-template-rows: 100%;
        overflow-y: auto;
        background: var(--accent-color);
    }
    .container{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 100%;
        padding-top: 0;
    }
    
    .logo{
        width: 18%;
    }

}


/* MOBILE/TABLET/FRAME LANDSCAPE */
@media only screen and (max-width: 1400px) and (orientation: landscape){

    .main, .container{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 100%;
        padding-top: 0;
        background: var(--accent-color);
    }
    
    .content-right, .content-left, .footer, .header, .pack-header, #info-container, .logo-container{
        display: none;
    }
    
    .content-center{
        align-items: center;
        justify-content: center;
    }
    
    .frame{
        width: 100%;
        height: 100%;
    }
    
    .phlay-container{
        width: 100%;
    	margin: auto;
    }
}


/* TABLET PORTRAIT */
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation: portrait){
    .content-right, .content-left, .header, .pack-header, .countdown, #info-container{
        display: none;
    }
  
    .main{
        grid-template-rows: 100%;
        overflow-y: auto;
        background: var(--accent-color);
    }

    .content-center{
        align-items: center;
        justify-content: center;
    }

    .phlay-container{
        width: 100%;
    	height: 100%;
    	margin: auto;
    }
    
    .logo{
        width: 12%;
    }
    
    .container{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 100%;
    }


}


