@charset "UTF-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 5px;
}

html, body {
height: 100%;
margin: 0;
color: #0000ca;
background-color: white;
font: 1em "Karla", sans-serif;
}

a   {
	color: gray;
	text-decoration: none;
}
a:hover {
	cursor: pointer;
	color: #0000ca;
	text-decoration: none;
	}
a:active {
	background-color: #fff;
		}

a:visited {
	color: gray;
	text-decoration: none;
	}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

.dropdown {
	z-index: 2;
}

@media only screen and (min-width: 768px) {
.dropdown{
    position: fixed;
    display: inline-block;
	clear: both;
	top: 40px;
	left: 20px;
	padding-left: 20px;
	z-index: 2;
}}

/**
    Hide the checkbox itself. Checking and unchecking 
    it we will be done via the label element.
*/

input[type=checkbox]{
    display: none;
}

label{
    display: inline-block;
    width: 100%;
    cursor: pointer;
	text-align: center;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

ul{
    position: absolute;
    list-style: none;
    text-align: left;
    width: 100%;
    z-index: 3;
	top:80px;
	left:0;
    margin:0;
    padding:0;
	background-color:rgba(255, 255, 255, 0.95);

    display: none;
}
@media only screen and (min-width: 768px) {
ul{
    position: absolute;
    list-style: none;
    text-align: left;
    width: 100%;
	max-height: 80vh;
    z-index: 3;
	top:120px;
	left:0;
    margin:0;
    padding:0;
	background-color:white;
	overflow-y: scroll;

    display:none;
}}	

.noscrollbar::-webkit-scrollbar {
    display: none;
}
.noscrollbar {
  -ms-overflow-style: none;
}

ul li{
    padding-top: 10px;
	padding-left: 20px;
    cursor: pointer;
}
@media only screen and (min-width: 768px) {
ul li{
    padding-top: 10px;
	padding-left: 0;
    cursor: pointer;
}}

ul li a{
    color: gray;
    text-decoration: none;
	font-size: 0.8em;
}
ul li a:hover{
    color: #0000ca;
    text-decoration: none;
}

input[type=checkbox]:checked ~ label {
}
input[type=checkbox]:checked ~ ul {
    display: block;
}

.mochu {
  margin: 0;
  padding: 0;
  color: #0000ca;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
.mochu {
  position: absolute;
  top: 84px;
  left: 20;
  width: 106px;
  height: 54px;
  text-align: center;
  color: #0000ca;
  z-index: 2;
}}

@media only screen and (max-width: 767px) {
.logo {
	width: 60px;
	height: 44px;
	margin-bottom: 0;
	padding-top: 4px;
}}
@media only screen and (min-width: 768px) {
.logo {
	width: 110px;
	height: 74px;
	margin-bottom: 0;
	padding:0;
}}

.conversations {
	margin-top: 30px;
	}
.info {
	margin-bottom: 14px;
	}
@media only screen and (min-width: 768px) {
.info {
	margin-bottom: 20vh;
	}}
.container{
  position: relative;
  z-index: 1;
	}

@media only screen and (min-width: 768px) {
.container{
  position: relative;
  padding-top: 10px;
  padding-left: 220px;
  padding-right: 40px;
  z-index: 1;
}}

.container img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.centered {
  position: absolute; /* or absolute */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
.indexsize img{
	max-height: 20vh;
}}
@media only screen and (min-width: 768px) {
.indexsize img{
	width: 285px;
	height: 190px;
}}

.works {
	margin: 0;
	padding: 20px 10px 20px 10px;
}

.works img{
	margin: 0;
	padding: 0;
}

.works-title {
	text-align: center;
}

.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	overflow: hidden;
	max-width: 100%; height: auto;
}

.embed-container iframe, .embed-container object, .embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.title {
	max-width: 460px;
	color: #0000ca;
	margin-top: 0px;
	margin-bottom: 0px;
}

@media only screen and (min-width: 768px) {
.title {
	max-width: 740px;
	color: #0000ca;
	margin-top: 0px;
	margin-bottom: 0px;
	}}

.description {
	max-width: 460px;
	color: #0000ca;
	margin: 10px 0px;
}

@media only screen and (min-width: 768px) {
.description {
	max-width: 740px;
	color: #0000ca;
	margin-top: 10px;
	margin-bottom: 24px;
}}

div.description-info {
	color: #0000ca;
	margin: 10px 0px 10px 0px;
}

@media only screen and (min-width: 768px) {
div.description-info {
	max-width: 800px;
	color: #0000ca;
	margin: 10px 0px 24px 0px;
}}

h1 {
	display: block;
	font-weight: bold;
	font-size: 1.2em;
	margin: 0em 0em 0.2em 0em;
}

@media only screen and (min-width: 768px) {
h1 {
	display: block;
	font-weight: bold;
	font-size: 2em;
	margin: 0.3em 0em 0.2em 0em;
}}

h2 {
	display: block;
	font-weight: bold;
	font-size: 1.2em;
	padding-top: 1.2em;
	margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
h2 {
	display: block;
	font-weight: bold;
	font-size: 1.4em;
	padding-top: 1.4em;
	margin-bottom: 0;
}}

h3{margin: 10px 0px 10px 0px;
}

h4{
	font-size: 0.8em;
	font-weight: normal;
	text-decoration: none;
	}

p  {
	display: block;
	margin-bottom: 10px;
}

div.trophies{
	max-width: 1860px;
	}

.container-conversations {
	position: absolute;
	width: 100vw;
	padding:0px 0px 0px 10px;
	overflow-wrap: break-word;
	z-index: 1;
}
@media only screen and (min-width: 768px) {
.container-conversations {
  position: absolute;
  padding: 0px 40px 0px 220px;
  z-index: 1;
}}

.full-height img{
	height: 90vh;
	float: right;
	}
@media only screen and (min-width: 768px) {
.full-height img{
	height: 100vh;
	float: right;
	}	}