/*@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Roboto: 100,400,900');
@import url('https://fonts.googleapis.com/css2?family=Anton');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:400,700');

* {
    box-sizing: border-box;
}

html {
	height: 100%;
}

body {
    /*font-family: 'Montserrat', sans-serif;*/
    margin: auto;
	height: 100%;
}

ul,
ol {
    list-style: none;
    list-style-image: none;
	padding:0;
	margin:0;
}

a[href^=tel] { color: inherit; text-decoration: none; }

.centered {
	text-align: center;
	display: block;
	background-color:inherit;
	font-weight: bold;
    width: 100%;
    color: #000;
    
}


.btn {
	color: #000;
	font-weight: bold;
	margin: 0 1em;
	padding: 0.2em 0.5em;
}

.el13 {
    font-size: smaller;
}

.el3 {
	grid-area: main1a;
	padding: 1rem;
  	border-radius: 5px;
	font-size: smaller;
	}

.el8 {
	grid-area: main1b;
	padding: 1rem;
  	border-radius: 5px;
}

.el9 {
	grid-area: main1c;
	padding: 1rem;
  	border-radius: 5px;
}

.el6 {
	grid-area: main1d;
	padding: 1rem;
  	border-radius: 5px;
}

.el6:hover {
	filter: none;
	background-image: url(images/vj_inaugural.PNG);
	background-size: cover;	
}

.el10 {
	grid-area: main2;
	padding: 1rem;
  	border-radius: 5px;
	display: flex;
	align-items:flex-start;
	justify-content: center;
	filter: grayscale(50%);
}

.el10:hover {
	filter: none;
	background-image: url(images/filming.jpg);
	background-size: cover;	
}

.el11 {
	grid-area: main2;
	padding: 1rem;
  	border-radius: 5px;
	display: flex;
	align-items:flex-start;
	justify-content: center;
	filter: grayscale(50%);
}

.el11:hover {
	filter: none;
	background-image: url(images/studio_3.jpg);
	background-size: cover;	
}

.el7 {
	background: white;
	grid-area: side;
	padding: 1rem;
  	border-radius: 5px;
}


.el20 {
	grid-area: more;
	margin: 0 auto 5em auto;
}

.panel {
    background-color: #EBF7E1;
}

/* MOBILE */
@media (max-width: 40rem) {
	.container {
        display: grid;
		column-gap: 0;
		row-gap: 15px;
		grid-template-columns: 95%;
		grid-template-rows: [row-1-start] minmax(3rem, auto) [row-1-end row-2-start] minmax(3rem, auto) [row-2-end row-3-start] minmax(3rem, auto) [row-3-end row-4-start] auto [row-4-end row-5-start] auto [row-5-end row-6-start] auto [row-6-end row-7-start] auto [row-7-end row-8-start] auto [row-8-end row-9-start] auto [row-9-end row-10-start] auto [row-10-end row-11-start] auto [row-11-end row-12-start] auto [row-12-end row-13-start] auto [row-13-end row-14-start] auto [row-14-end row-15-start] auto [row-15-end row-16-start] auto [row-16-end] ;	
		
		grid-template-areas: "header-left"
							 "main1c"
							 "main1a"
							 "main1b";
							     
    }
/*NO TOP MENU*/
	.el2 {
	  display: none;
	}

/*NO BOTTOM MENU*/
	.el4 {
	  display: none;
	}
	
	.centered {
		font-size: 0.8em;
	}
	
	.centered_white {
		font-size: 0.8em;
	}
	
	.centered_white_margin {
		font-size: 0.8em;
	}
}

/*
LARGER MOBILE DEVICES
This is for mobile devices with a bit larger screens.
*/
@media only screen and (min-width: 481px)
{
.container {
    background-color: white;
    width: 90%;
    margin: 20px auto;
	display: grid;
	grid-column-gap: 3rem;
	grid-row-gap: 1.5rem;
    grid-template-columns: 25% 41% 25%;
	grid-template-rows: [row-1-start] 8rem [row-1-end row-2-start] 4rem [row-2-end row-3-start] minmax(30rem, auto) [row-3-end row-4-start] 50px [row-4-end];
	grid-template-areas: "header-left . . "
						 "mnu mnu mnu "
						 "main1a main1b main1c"
						 "footer footer footer";
	
	justify-items: stretch;
	align-items: stretch;
}


    
.accordion {
    background-color: #EBF7E1;
    width: 100%;
    margin: 1rem auto;
    border-radius: 10px;    
    }
    
.active, .accordion:hover {
    background-color: #EBF7E1;
    color: #7D9DB0;
}

.panel {
    border-radius: 10px;
    margin: 0 auto 1rem auto;
    width: 100%;
    }
}

/*
TABLET & SMALLER LAPTOPS
The average viewing window and preferred media query for those is 768px.
But I think that some more breathing space is good:)
*/
@media only screen and (min-width: 920px)
{
.container {
    width: 90%;
    margin: 20px auto;
	display: grid;
	grid-column-gap: 3rem;
	grid-row-gap: 1.5rem;
    grid-template-columns: 22% 48% 25%;
	grid-template-rows: [row-1-start] 8rem [row-1-end row-2-start] 4rem [row-2-end row-3-start] minmax(30rem, auto) [row-3-end row-4-start] 50px [row-4-end];
	grid-template-areas: "header-left . . "
						 "mnu mnu mnu "
						 "main1a main1b main1c"
						 "footer footer footer";
	
	justify-items: stretch;
	align-items: stretch;
}

.contained {
     font-size: 1.2rem;       
    }

.mobile-nav {
	  display: none;
}

.mobile-nav__items {
	display: none;	
}

.toggle-button {
	display: none;
    }
}
/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 1030px)
/* DESKTOP */
{
.contained {
     font-size: 1.2rem;       
    }

}
/*END DESKTOP*/

/*
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*/
@media only screen and (min-width: 1240px) {

}

@media only screen and (min-width: 1430px) {

}






