/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/

*, *::after, *::after {
	box-sizing: border-box;
}

img {
	max-width: 100%;
}


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1820px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 750px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   {
  width: 30.6667%;
}
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.4;
  font-weight: 400;
  font-family: "Poppins", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222; }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 650px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

p {
  margin-top: 0;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
}



/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1EAEDB; }
a:hover {
  color: #0FA0CE; }


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 40px;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: capitalize;
  text-decoration: none;
  white-space: nowrap;
  background-color: #EFAE0B;
  border-radius: 0px;
  xborder: 1px solid #EFAE0B;
  cursor: pointer;
  box-sizing: border-box;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #fff;
  border-color: #EFAE0B;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: black;
  border-color: black; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


@media (max-width:750px) {
	h1,h2,h3,h4,p {
		text-align: center;
	}
	.button {
		width:250px;
		margin: 0 auto;
		display: block;
	}
}


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }

/* General Classes 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.resize {
	width: 100%;
	height: auto;
}

.height-size {
  height: 100%;
  width: auto;
}
.dark-yellow-bg {
	background-color: #EFAE0B;
}
.grey-bg {
	background-color: #ebeaeb;
}
.dark-grey-bg {
	background-color: #b7b2ae;
}
.black-bg {
	background-color: #000000;
}
.general-padding {
	padding: 2% 0;
}
.large-padding {
	padding: 4% 0;
}
@media (max-width: 650px){

	.large-padding {
		padding:8% 0;
	}
}

.padding-image {
	padding: 0.5em;
}

.dark-yellow{
	color: #ffffff;
}
.center {
	display:block; 
	margin-left:auto;
	margin-right:auto;
}

.center-image {
	display: block;
	margin: auto;
}

.text-center {
	text-align: center;
}

.v-align-divs {
	display:flex;
	align-items: center;
}

.reverse {
	display:flex;
	align-items: center;
}

@media (max-width: 750px){
  .reverse {
    flex-direction: column-reverse;
    
  }
}

.flex {
  display: flex;
}

.white {
	color: #ffffff;
}
.black {
	color: #000000;
}

@media (max-width: 750px){

	.v-align-divs, .flex {
		display:inherit;
	}
}
/* Animations 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
[aos="fade"] {
  opacity: 0;
  transition-property: opacity;
}

[aos="fade"] .aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

/* Pre-header
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.pre-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background:  rgba(134,211,255,0.75);
	padding: 1rem 10% 1rem 5%;
	min-height: 4vh;
	position: fixed;
	z-index: 111;
	box-shadow: 10px 10px 100px black;
}


.nav-icon {
	font-size: max(23px, 1.9vw);
}

@media (max-width:650px) {
	.pre-header {
		background: #86d3ff;
		position: relative;
		padding: 1rem 6%;
	}
}

/* Header/Hero
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.hero-image {
	width:100%;
	

	xheight:650px;
min-height:880px;
	overflow:hidden;
	
	
	/*Text stuff*/
	text-align:center;
	color:#ffffff;
	
	/*Background*/
	/*background-image: url("../images/hero-unearthauniverse-of-movies.png");*/
	background-size: cover; 
	background-position: center center;
	background-repeat: no-repeat;
}




.hero-title {
	text-align: left;
	color:#fff;
	padding:8% 0;
}
.hero-title h1 {
	font-size: 5.0rem;
	font-weight: 600;
  padding-left: 5%;
}
.hero-title h2 {
	font-size: calc(28px + (33 - 28) * ((100vw - 300px) / (1600 - 300)));
	font-weight: 300;
  padding-left: 5%;
}
@media (max-width: 650px){

	.hero-title {
		padding:40% 0;
	}
}

.hero-image-ig {
	width:100%;
	xheight:650px;
	overflow:hidden;
	
	
	/*Text stuff*/
	text-align:center;
	color:#EFAE0B;
	
	/*Background*/
	xbackground-image: url("../images/hero-unearthauniverse-of-movies.png");
	background-size: cover; 
	background-repeat: no-repeat;
	
}
@media (max-width: 650px){

	.hero-image-ig {
		height:auto;
	}
}
@media (min-width: 1400px){

	.hero-image-ig {
		min-height:880px;
		background-position:center;
	}
}
@media (min-width: 1920px){

	.hero-image-ig {
		min-height:880px;
		background-position:center;
	}
}
.hero-title-ig {
	text-align: left;
	color:#fff;
	padding:8% 0;
}
.hero-title-ig h1 {
	font-size: 5.0rem;
	font-weight: 600;
  padding-left: 5%;
}
.hero-title-ig h2 {
	font-size: calc(28px + (33 - 28) * ((100vw - 300px) / (1600 - 300)));
	font-weight: 300;
  padding-left: 5%;
}

@media (min-width: 1280px){
	.hero-title-ig {
		margin-left:-30px;
	}
}
@media (min-width: 1450px){
	.hero-title-ig {
		margin-left:-50px;
	}
}


/* Header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header {
/*	background-image: url("../images/hero-unearthauniverse-of-movies-rev.png");*/
	background-position: center;
	background-size: cover;
	xheight: 100vh;
	xheight: 100%;
    min-height: 880px;
	xheight: 880px;

}




@media (min-width: 1025px) {
    .header {
	    background-image: url("../images/hero-unearthauniverse-of-movies-rev.png");
   }
}

/*@media (min-width: 400px) and (max-width:10224px) {*/

@media (max-width:1024px) {
    .header {
        background-image: url("../images/movieology-mobile-header.png");
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		min-height: 100vw;
    }
}

@media (max-width: 650px) {
	.header {
		background-size: contain;
		background-position: top;
	}
}

@media (orientation: landscape) and (max-width:1024px) {
	 .header{
		 background-image: url("../images/hero-unearthauniverse-of-movies-rev.png");
		 background-size: contain;
		 background-position: top;
		 margin-bottom: -400px;
		 
	}
}

@media (orientation: landscape) and (max-width:780px) {
	 .header{
		 background-image: url("../images/hero-unearthauniverse-of-movies-rev.png");
		 background-size: contain;
		 background-position: top;
		 margin-bottom: -300px;
		 
	}
}

.navbar {
	padding: 2% 0;
	text-align:right;
	overflow: hidden;
	
}
.navbar a {
	color:#000;
	padding: 1%;
	font-size: calc(12px + (17 - 12) * ((100vw - 300px) / (1600 - 300)));
	text-decoration: none;
	font-weight:600;
	background: none;
	padding: 5px 10px;
}
.navbar a:hover {
	color: #333;
}

.navbar1 {
	padding: 2% 0;
	text-align:right;
	overflow: hidden;
	
}
.navbar1 a {
	color:#000;
	padding: 1%;
	font-size: calc(12px + (17 - 12) * ((100vw - 300px) / (1600 - 300)));
	text-decoration: none;
	font-weight:600;
	background: none;
	padding: 5px 10px;
}
.navbar1 a:hover {
	color: #333;
}

.logo {
	max-width: 170px;
	float:left;
}
@media (max-width: 650px){

	.logo {
		margin-top: 5%;
		max-width: 16vw;
	}
}
.logo-navbar {
	padding: 2% 0;
	text-align:right;
	overflow: hidden;
}
.navbar-button {
	padding:3% 0;
	float:right;
}
.navbar .icon {
	display:none;
	font-size:18px;
}

.navbar1 .icon {
	display:none;
	font-size:18px;
}

.icons {
	text-align:center;
}
.icons a {
	font-size: 13px; 
	color:#ffffff;
	text-decoration:none;
}
.icons a:hover { 
	color:#EFAE0B;
}
.social-icons {
	text-align:left;
	padding:1% 0;
}
.social-icons a {
	font-size: 18px; 
	color:#ffffff;
	text-decoration:none;
}
.social-icons a:hover { 
	color:#EFAE0B;
}


@media screen and (max-width: 4650px) {
  .navbar a
	{display: none;}
  .navbar a.icon {
    float: right;
    display: block;
  }
  .navbar1 a
	{display: none;}
  .navbar1 a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 4650px) {
  .navbar.responsive {
	position: relative;
	padding: 3.5% 0 1%;
	display: flex;
	}
  .navbar.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .navbar.responsive a {
    float: none;
    display: inline-block;
	  text-align: center;}
   .navbar1.responsive {
	position: relative;
	padding: 3.5% 0 1%;
	display: flex;
	 justify-content: flex-end;
	}
  .navbar1.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .navbar1.responsive a {
    float: none;
    display: inline-block;
    text-align: center;  
  }
}
@media screen and (max-width:4650px) {
	.navbar-button {
	float:none;
	display:none;
}
	
}
#sticky-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 99;
  animation-name: fadeIn;
  animation-duration: 0.25s;   
  visibility: visible !important;
  border-bottom: 1px solid #333;
}

@media screen and (max-width:650px) {
	.navbar.responsive {
	padding: 8% 0 0;
	}
	.navbar1.responsive {
	padding: 8% 0 0;
	}
 
}

@media screen and (max-width:420px) {
	.navbar.responsive {
	display: block;
	padding: 10% 0 0;
	}
	.navbar.responsive a {
    display: block;
    text-align: right;
  
  }
	.navbar1.responsive {
	display: block;
	padding: 10% 0 0;
	}
	.navbar1.responsive a {
    display: block;
    text-align: right;
  
  }
}


@keyframes fadeIn {
    0% {
        opacity: 0.0;       
    }
    100% {
        opacity: 1; 
    }       
}  

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
}

/* Header Nav 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.center {
	display: block;
	margin: auto;
	width: 20%;
}

@media screen and (max-width: 768px){
	.header-nav {
		display: none;
	}
	.center {
		padding-top: 30px;
		width: 40%;
	}
}


/* Main Programs Sections 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.main {
	color: #000000;
}
.main h2 {
	font-size: calc(30px + (38 - 30) * ((100vw - 300px) / (1600 - 300)));
	font-weight: 700;
	line-height: 1.2;
}
.main h4 {
	font-size: calc(20px + (28 - 20) * ((100vw - 300px) / (1600 - 300)));
	font-weight: 700;
}
.main p {
	font-size: calc(15px + (18 - 15) * ((100vw - 300px) / (1600 - 300)));
}
.main ul { 
	list-style-position: outside;
	margin-left: 4%;
}
.main li {
	font-size: calc(15px + (18 - 15) * ((100vw - 300px) / (1600 - 300)));
	margin-left: 0; padding-left: 0px;
}
.email {
	text-decoration: none;
	color:#000;
	font-weight:700; 
}


/* Quote 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.quote {
	color: #000000;
}
.quote h4 {
	font-size: calc(30px + (35 - 30) * ((100vw - 300px) / (1600 - 300)));
	font-weight: 700;
}
.quote q {
	font-size: calc(16px + (30 - 16) * ((100vw - 300px) / (1600 - 300)));
}

/* Program Details 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.program-padding {
	padding: 0 0 2% 0;
}
.program-image {
	padding-bottom: 2%;
}
/* Main Programs Sections 
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Schedule 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.centerwrapper {
  display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

/* Slideshow container */
.slideshow-container {
  max-width: 920px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #000000;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #000000;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Program Cost  
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.cost {
	color: #EFAE0B; 
	padding: 2% 2%;
}
.cost h2 {
	font-size: calc(40px + (45 - 40) * ((100vw - 300px) / (1600 - 300)));
	font-weight: 700;
    color: #EFAE0B;
}
.program-box{
        width: 48%;
        height: 100%;            
        position: absolute;
        top: 0;
        left: 0;
        box-sizing: border-box;
    }
.stack-top{
        z-index: 9;
        margin: 20px; /* for demo purpose  */
    }

/* Services Section
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.services {
	background: #ff4c04;
	padding: 10vh 0;
}

.service-div {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	width: 75%;
	margin:  10vh auto;
	
}

.services img {
	border: 2px solid black;
	width: 100%;
	box-sizing: border-box;
}

.service-img {
	flex-basis: 60%;
}

.service-text {
	padding: 25px 40px;
	background: #a8d4fc;
	border: 2px solid black;
	flex-basis: 40%;
	box-sizing: border-box;
}


.service-text h2 {
	font-weight: bold;
	font-size: 25px;
}

.service-text p {
	font-weight: 500;
	font-size: 15px;
}

.service-text a {
	font-weight: 200;
}

@media screen and (max-width:1450px) {
	.service-text h2 {
		font-size: 20px;
	}
	.service-text p {
		font-size: 13px;
	}
}

@media screen and (max-width:1000px) {
	.service-div {
		flex-direction: column;
	}
	.service-div--reverse {
		flex-direction: column-reverse;
	}
	.service-text h2 {
		font-size: 23px;
	}
	.service-text p {
		font-size: 15px;
	}
	.services {
		padding: 5px 0;
	}
}


/* About
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Highlights
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width:800px) {
	.film-header img {
		width: 80%;
	}
}


.filmhighlights {
	background: #a8d4fc;
	padding: 5vh 20px;
	text-align: center;
	font-family: 'Poppins', 'Helvetica Neue', sans-serif;
}

.film-studies-flex {
	display: flex;
	width: 100%;
	justify-content: center;
	gap: 5%;
}

.film {
	display: flex;
	flex-direction: column;
	flex-basis: 20%;
	align-items: stretch;
}

.filmhighlights h6 {
	font-weight: bold;
	font-size: 15px;
	margin-bottom: -2px
}

.filmhighlights h2 {
	font-weight: bold;
	font-size: 32px;
}

.film-studies-img {
	width: 100%;
	height: auto;
	border-radius: 50%;
	border: 3px solid black;
	margin: auto;
	z-index: 5;
}

.film-textbox {
	background: white;
	padding: 20px 10px;
	border: 2px solid #ea6d43;
	text-align: center;
	margin-top: -50px;
	padding-top: 60px;
	flex: 1;
}

.film a {
	position: relative;
	bottom: 20px;
	width: 50%;
	margin: auto;
}

@media screen and (max-width: 1200px) {
	.film {flex-basis: 25%;}
}

@media screen and (max-width: 1000px) {
	.film-studies-flex {
		flex-direction: column;
	}
	.film-studies-img {
		width: 40%;
	}
	.film-textbox {
		width: 80%;
		margin-left: auto;
		margin-right: auto;
		padding: 60px 20px 20px 20px;
	}
	.film {
		margin-bottom: 5vh;
	}
	.film a {
		width: 45%;
	}
}


/* Testimonial slider
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.slideshow {
  min-height: 500px;
  display: flex;
  align-items: center;
}

.slideshow img{
	max-width: 500px;
}

@media (max-width: 768px){
	.slideshow {
		display: inline-grid;
	}
	
}

@media (max-width: 650px){
	.v-align-divs {
		display:inherit;
	}
	
}

/* Slides */
.mySlides-testimonials {
  display: none;
  padding: 25px 30px;
  text-align: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}
@media (max-width: 650px){
	.prev, .next { 
		 padding: 5px;
	}
	
}
@media (max-width: 650px){
	.next { 
		 margin-right: 2%;
	}
	
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}

/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
  padding: 20px;
  background: #fff;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
  background-color: #717171;
}

/* Add an italic font style to all quotes */
q {font-style: italic;}

/* Add a blue color to the author */
.author {color: #000000;}

/* Spotlight 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.joe-image {
	width:100%;
	height:100%;
	max-width:600px;
	float:right;
}
.spotlight-padding {
	padding: 4% 0 2% 0;
}
@media (max-width: 650px){
  .spotlight-padding {
	padding: 8% 0 2% 0;
    
  }
}
.bio-padding {
	padding: 0 0 4% 0;
}
.reverse-joe {
	display:relative;
}

@media (max-width: 650px){
  .reverse-joe {
	display:flex;
	align-items: center;
    flex-direction: column-reverse;
    
  }
}
/* Footer 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.footer-icons {
	padding:1% 0;
}
.footer-icons a {
	font-size: 15px; 
	color:#000000;
	text-decoration:none;
}
.footer-icons a:hover { 
	color:#EFAE0B;
}
.small {
	font-size: 12px;
}
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}

