html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 120%;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: normal;
}

ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
  box-sizing: border-box;
}

h1 {
  font-weight: 600;
  font-size: 46px;
  line-height: 110%;
}

h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 110%;
}

h3 {
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
}

h4 {
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
}

.bg-yellow {
  background: #FCD102;
}

.bg-blue {
  background: #012639;
}

.bg-grey {
  background: #ECE8E4;
}

.bg-white {
	background:#fff;
}

.f-yellow {
  color: #FCD102;
}

.f-blue {
  color: #012639;
}

.f-grey {
  color: #ECE8E4;
}

.f-white {
	color:#fff;
}

.f-uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.text-italic {
	font-style:italic;
}

.f-bold {
	font-weight:700;
}
.container {
  width: 100%;
  max-width: 800px;
  padding: 0 60px;
  margin:0 auto;
}

img {
	max-width:100%;
}

/*---------------------------------------*/


#title{
	padding:30px 0;
}

/*--------------------*/

#stories{
	padding:35px 0 20px 0;
}
#stories h2{
	padding-bottom:20px;
}
#stories p{
	padding-bottom:15px;
}
#stories .container{
	padding:0 80px;
}

/*--------------------*/

#how_we_scale{
	padding:35px 0 75px 0;
	border-bottom:1px solid #FCD102;
}
#how_we_scale h3{
	padding-bottom:35px;
}
.table_row{
	display:flex;
}
.table_cell{	
	border:1px solid #012639;
	padding:10px 5px;
	display:flex;
	align-items:center;
	justify-content: center;
}
.table_cell:nth-of-type(1){
	width:38%;
	border:1px solid #012639;
	padding:10px 5px;
}
.table_cell:nth-of-type(2){
	width:62%;
	border:1px solid #012639;
	padding:10px 5px;
}

/*--------------------*/

#why_it_matters{
	padding:35px 0;
}
#why_it_matters h3{
	padding-bottom:35px;
}
.list_wrap{
	padding-bottom:20px;
}

/*--------------------*/

.block_with_image{
	padding:50px 0 90px 0;
}
.block_with_image .image-block{
	display:flex;
}
.block_with_image .sticker{
	width:38%;
	padding:5px;
	margin-bottom:15px;
}
.block_with_image .image-block .image{
	width:38%;
}
.block_with_image .image-block .description{
	width:62%;
	padding-left:15px;
}
.block_with_image .description h4{
	padding-bottom:5px;
}
.block_with_image .description p{
	padding-bottom:20px;
}
.block_with_image .description p:last-of-type{
	padding-bottom:0;
}

/*--------------------*/

#lets_talk{
	padding:50px 0 80px 0;
}
#lets_talk h3{
	padding-bottom:15px;
}
#lets_talk p{
	padding-bottom:40px;
}
.person-wrapper{
	padding:20px 5px 40px 5px;
}
.person-wrapper h4{
	padding-bottom:5px;
}
#lets_talk .person-wrapper p{
	padding-bottom:0;
}
.person-mail a{
	display:block;
	padding:15px 0;
	text-decoration:none;
}
.person-mail a:hover{
	text-decoration:underline;
}

#video-trailer {
  padding: 25px 0 50px 0;
}

.movie-info {
  padding: 5px;
  margin-bottom: 25px;
}

.movie video {
  max-width: 100%;
}

.hide {
  display: none;
}

.poster {
  position: relative;
  width: 100%;
  height: 100%;
}

.frame {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.circle {
  transition: all linear .1s;
  border: 1px solid grey;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background: rgba(0,0,0,0.2);

  display: flex;
  align-items: center;
  justify-content: center; 
}

.circle:hover{
  transition: all linear .1s;
  width: 120px;
  height: 120px;
}

.frame:has(.circle:hover) {
  background: rgba(0,0,0,0.2);
}

/*----------------------------------------*/

@media screen and (max-width:800px){
	.container, #stories .container {
		padding:0 30px;
	}
}
@media screen and (max-width:700px){
	body {
		font-size: 18px;
	} 
	h1 {  
	  font-size: 40px;  
	}

	h2 {
	  font-size: 36px;
	}

	h3 {
	  font-size: 32px;
	}

	h4 {
	  font-size: 28px;
	}
}
@media screen and (max-width:550px){
	body {
		font-size: 16px;
	} 
	h1 {  
	  font-size: 36px;  
	}

	h2 {
	  font-size: 32px;
	}

	h3 {
	  font-size: 28px;
	}

	h4 {
	  font-size: 24px;
	}
	#how_we_scale{
		padding: 35px 0;
	}
	.block_with_image {
		padding: 50px 0;
	}
	.container, #stories .container {
		padding:0 15px;
	}
	.person-wrapper{
		padding:20px 5px;
	}
	.block_with_image .sticker{
		width:100%;
	}
}
@media screen and (max-width:400px){
	body {
		font-size: 14px;
	} 
	h1 {  
	  font-size: 32px;  
	}

	h2 {
	  font-size: 28px;
	}

	h3 {
	  font-size: 24px;
	}

	h4 {
	  font-size: 20px;
	}	
}