/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::after, *::before {
  content: '';
}

body {
  font-size: 100%;
  font-family: 'Muli', sans-serif;
  font-weight: 400;
  color: #091d23;
  background-color: #5E95BA;
  opacity:0;
  transition: opacity 2s;
  -webkit-transition: opacity 2s;
  -moz-transition: all 2s;
}
body.bgclaron {
	background-color: #453b3a;
}
body.bgbiography {
	background-color: #342e5e;
}
body.bgdiscography {
	background-color: #643a73;
}
body.bgjournal {
	background-color: #903170;
}
body.bgcontact {
	background-color: #605b5c;
}
a {
	-webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
	text-decoration: none;
}
::selection {
	background: #fff;
	color: #222;
}
::-moz-selection {
	background: #fff;
	color: #222;
}
strong {
	font-weight: 800;
}

/* -------------------------------- 

Main components 

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


a#home {
	text-indent: -99999px;
	display: block;
	background: url(../img/logo.svg) no-repeat 0 0;
	background-size: 320px;
	width: 360px;
	height: 80px;
	position: fixed;
	top: 50px;
	z-index: 1;
}
#hero {
	width: 50%;
	display: block;
	float: left;
	top: 0;
	left: 0;
	position: fixed;
}
.homepage {
	background-image: url(../img/the-crow.jpg);
	background-size: cover;
}
.claron {
	background-image: url(../img/claron.jpg);
	background-size: cover;
}
.biography {
	background-image: url(../img/biography.jpg);
	background-size: cover;
}
.discography {
	background-image: url(../img/discography.jpg);
	background-size: cover;
}
.journal {
	background-image: url(../img/journal.jpg);
	background-size: cover;
}
.contact {
	background-image: url(../img/contact.jpg);
	background-size: cover;
}

section.full {
	width: 100%;
	display: block;
	padding: 80px 10px 80px 80px;
	color: #fff;
	margin-top: 180px;
	position: absolute;
	right: 0;
	top: 0;
	border-top: 1px solid rgba(255,255,255,0.2);
}

section.right {
	width: 50%;
	display: block;
	padding: 80px;
	color: #fff;
	margin-top: 120px;
	position: absolute;
	right: 0;
	top: 0;
}
section.right h1, section.full h1 {
	font-size: 60px;
	font-weight: 200;
	margin-bottom: 40px;
	line-height: 65px;
	position: relative;
	padding-bottom: 40px;
}
section.full h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 40px;
}

section.full h2 {
	padding: 0 10px;
}

/*
.videoitem {
	width: 22%;
	margin-right: 30px;
	margin-bottom: 15px;
	display: block;
	float: left;
	position: relative;
	margin-top: 0;
}
.videoitem img {
	width: 100%;
	height: 100%;
	-webkit-box-shadow: 8px 8px 0px 0px rgba(0,0,0,0.12);
	-moz-box-shadow: 8px 8px 0px 0px rgba(0,0,0,0.12);
	box-shadow: 8px 8px 0px 0px rgba(0,0,0,0.12);
}

.videoitem .view {
	position: absolute;
	z-index: 1;
	color: #fff;
	left: 15px;
	bottom: 15px;
	background: #000 url(../img/arrow-right.svg) no-repeat center center;
	background-size: 24px;
	width: 60px;
	height: 60px;
	transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
}

.videoitem .view:hover {
	width: 80px;
}

*/

.audio {
	clear: both;
    padding-top: 40px;
}
.audio p {
	margin-bottom: 10px;
	font-weight: 200;
	font-size: 18px;
}
ul.file_download_list li {
    margin-bottom: 30px;
    float: left;
    margin-right: 30px;
}

.videoitem {
	width: 22%;
	margin-right: 30px;
	margin-bottom: 30px;
	display: block;
	float: left;
	position: relative;
	margin-top: 0;
	height: 280px;
	background-color: #dace39;
	-webkit-box-shadow: 8px 8px 0px 0px rgba(0,0,0,0.12);
	-moz-box-shadow: 8px 8px 0px 0px rgba(0,0,0,0.12);
	box-shadow: 8px 8px 0px 0px rgba(0,0,0,0.12);
	transition: all 0.2s;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
}
.videoitem:hover {
	-webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.12);
	-moz-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.12);
	box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.12);
	background-color: #ecdf3c;
}

section.full .videoitem h2 {
	font-weight: 100;
	font-size: 26px;
	margin-top: 20px;
	line-height: 34px;
	color: rgba(0,0,0,0.3989126);
	margin-right: 20px;
	margin-left: 20px;
	padding: 0;
}

.videoitem .view {
	position: absolute;
	z-index: 1;
	color: #fff;
	left: 20px;
	bottom: 20px;
	background: #000 url(../img/arrow-right.svg) no-repeat center center;
	background-size: 24px;
	width: 60px;
	height: 60px;
	transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
}

.videoitem .view:hover {
	width: 80px;
}


section.right h1:after, section.full h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2px;
    width: 80px;
    height: 2px;
    background-color: #fff;
}
section.right h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
}
section.right img {
	width: 100%;
	height: 100%;
	margin-bottom: 40px;
}

section.right blockquote p {
	border-left: 2px solid rgba(255,255,255,0.2505015);
	padding-left: 20px;
	font-size: 22px;
	line-height: 34px;
	color: rgba(255,255,255,0.5);
}

section.right ul {
	
}
section.right ul li {
	margin-bottom: 18px;
	border-bottom: 1px solid rgba(255,255,255,0.1208034);
	padding-bottom: 15px;
}
section.right ul p {
	font-weight: 200;
	line-height: 26px;
	font-size: 18px;
	margin-bottom: 4px;
}
section.right ul p em {
	font-style: italic;
}
section.right ul h2 {
	font-weight: 800;
	font-size: 18px;
	margin-bottom: 5px;
	margin-top: 5px;
	line-height: 26px;
}

section.right .item {
    margin-bottom: 50px;
    margin-top: 50px;
}
section.right .item a.arrow-right {
    padding-right: 28px;
    background: url(../img/arrow-right.svg) no-repeat right 5px;
    background-size: 18px;
    border-bottom: 0px;
}
section.right .item a.arrow-right:hover {
    padding-right: 36px;
	color: #fff;
}

section.right a.leftarrow {
    padding-left: 28px;
    background: url(../img/arrow-left.svg) no-repeat left 3px;
    background-size: 18px;
    border-bottom: 0px;
    font-weight: 100;
    font-size: 18px;
    margin-top: 17px;
    display: inline-block;
    margin-left: 0px;
}
section.right a.leftarrow:hover {
    margin-left: -15px;
	color: #fff;
}

section.right .item p {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 15px;
}

section.right .item p a {
    padding-right: 0px;
    padding-left: 0px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

section.right  p {
	font-weight: 200;
	line-height: 30px;
	font-size: 17px;
	margin-bottom: 30px;
}
section.right p.date {
    font-size: 14px;
    display: inline-flex;
    padding: 3px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
}
section.right h2 a {
    color: #FFFFFF;
    display: block;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 32px;
}
section.right h4 {
	font-weight: 800;
	margin-left: -30px;
	display: block;
	margin-bottom: 20px;
	font-size: 24px;
	line-height: 32px;
	position: relative;
	padding-bottom: 15px;
}


section.right h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2px;
    width: 80px;
    height: 3px;
    background-color: #fb7d7a;
}

section.right .pagenav a {
    font-size: 15px;
    display: inline-block;
    padding: 10px 20px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
	color: rgba(255,255,255,0.6471442);
}
section.right .pagenav a:hover {
	background: rgba(0, 0, 0, 0.5);
}

section.right  .bigtype p {
	font-size: 32px;
	line-height: 58px;
}
section.right a {
	color: #fff;
}
section.right p a {
	color: #fff;
	padding-right: 3px;
	padding-left: 3px;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
section.right p a:hover {
	background-color: #fff;
	color: #333;
	border-bottom-color: #fff;
}
.swipe {
	display: none;
}
.lizzard {
	position: fixed;
	bottom: -15px;
	right: -20px;
}





/* Comments
   ========================================================================== */
  /**
 * Styling for user comments.
 *
 * Example HTML:
 *
 * <article class="comments">
 */
.comments {
    border-radius: 0.3em;
    word-wrap: break-word;
	color: #494949;
	background-color: #903170;
	margin-bottom: 1.5em;
}
article.comments {
	background: #b13d8a;
	color: #fff;
	padding: 18px;
}
article.comments p {
	margin-bottom: 0;
	margin-top: 15px;
	font-size: 16px;
	line-height: 24px;
}
.comments h5 {
	font-size: 22px;
	font-weight: 100;
}
.comments p.footnote {
	font-size: 14px;
	font-weight: 600;
}
.comments h4 .is-author {
    font-weight: normal;
}
.comments h4 .comment-anchor {
    float: right;
    font-weight: normal;
}
.comments-wrapper {
	border-top: 1px solid rgba(255,255,255,0.3);
	padding-top: 30px;
	margin-top: 40px;
}
.comments-wrapper input, .comments-wrapper textarea {
	font-family: 'Muli', sans-serif;
	border: none;
	border-radius: 3px;
	font-size: 14px;
	padding: 10px;
}

.comments-wrapper p.large {
}

.comments-wrapper textarea {
	width: 100%;
}
.comments-wrapper input.button {
	font-weight: 600;
	background-color: #3eb0d1;
	color: #fff;
	margin-right: 8px;
	padding: 12px 20px;
}
.comments-wrapper input.disabled {
	background-color: #6e2355;
	color: rgba(255,255,255,0.4);
}

.comments-author {
    
}

#cpreview {
    margin-bottom: 2px;
    padding: 1em;
    border-radius: 0.5em;
    background-color: #fff9e1;
}
  /**
 * Highlight text colour for comment errors.
 */
.error_message li {
    color: #9d261d;
  }
  /**
 * Highlighting for comment form errors.
 */
.comments_error {
    border-color: #9d261d;
    box-shadow: 0 0 4px 2px #9d261d;
  }
  /* Popup comments (can be removed if you don't use popups)
   ========================================================================== */
  /**
 * Restrict maximum width of popup container.
 */
  #popup-page .container {
    max-width: 52em;
  }






/* -------------------------------- 

Animations

-------------------------------- */

.floating {
    -webkit-animation-name: Floatingx;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: Floating;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
}

@-webkit-keyframes Floatingx{
    from {-webkit-transform:translate(0, 0px);}
    65% {-webkit-transform:translate(0, 15px);}
    to {-webkit-transform: translate(0, -0px);}  
      
}
    
@-moz-keyframes Floating{
    from {-moz-transform:translate(0, 0px);}
    65% {-moz-transform:translate(0, 15px);}
    to {-moz-transform: translate(0, -0px);}    
}


/* -------------------------------- 

Navigation

-------------------------------- */
.cd-nav-trigger {
  position: fixed;
  display: inline-block;
}

.cd-nav-trigger {
  top: 60px;
  right: 60px;
  height: 55px;
  width: 55px;
  z-index: 5;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.cd-nav-trigger .cd-icon {
  /* icon created in CSS */
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: inline-block;
  width: 18px;
  height: 3px;
  background-color: #fff;
  z-index: 10;
}
.cd-nav-trigger .cd-icon::before, .cd-nav-trigger .cd-icon:after {
  /* upper and lower lines of the menu icon */
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* apply transition to transform property */
  -webkit-transition: -webkit-transform .3s;
  -moz-transition: -moz-transform .3s;
  transition: transform .3s;
}
.cd-nav-trigger .cd-icon::before {
  -webkit-transform: translateY(-6px) rotate(0deg);
  -moz-transform: translateY(-6px) rotate(0deg);
  -ms-transform: translateY(-6px) rotate(0deg);
  -o-transform: translateY(-6px) rotate(0deg);
  transform: translateY(-6px) rotate(0deg);
}
.cd-nav-trigger .cd-icon::after {
  -webkit-transform: translateY(6px) rotate(0deg);
  -moz-transform: translateY(6px) rotate(0deg);
  -ms-transform: translateY(6px) rotate(0deg);
  -o-transform: translateY(6px) rotate(0deg);
  transform: translateY(6px) rotate(0deg);
}
.cd-nav-trigger::before, .cd-nav-trigger::after {
  /* 2 rounded colored backgrounds for the menu icon */
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
}
.cd-nav-trigger::before {
  background-color: rgba(0,0,0,0.25);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.cd-nav-trigger::after {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  transition-duration: 0s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
	background-color: #5E95BA;
}
.cd-nav-trigger.close-nav::before {
  /* user clicks on the .cd-nav-trigger element - 1st rounded background disappears */
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.cd-nav-trigger.close-nav::after {
  /* user clicks on the .cd-nav-trigger element - 2nd rounded background appears */
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.cd-nav-trigger.close-nav .cd-icon {
  /* user clicks on the .cd-nav-trigger element - transform the icon */
  background-color: rgba(255, 255, 255, 0);
}
.cd-nav-trigger.close-nav .cd-icon::before, .cd-nav-trigger.close-nav .cd-icon::after {
  background-color: #fff;
}
.cd-nav-trigger.close-nav .cd-icon::before {
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.cd-nav-trigger.close-nav .cd-icon::after {
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}

.cd-primary-nav {
  /* by default it's hidden */
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
  background-color: #efeff0;
  overflow: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s, opacity 0.3s;
  -moz-transition: visibility 0s, opacity 0.3s;
  transition: visibility 0s, opacity 0.3s;
	padding: 80px 0;
}
.cd-primary-nav li {
  margin: 1.6em 0;
  text-align: center;
  text-transform: capitalize;
}
.cd-primary-nav a {
  font-weight: 200;
  font-size: 2rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
.cd-primary-nav a.active {
	color: #5d94ba;
}
.no-touch .cd-primary-nav a:hover {
  color: #5d94ba;
}
.cd-primary-nav.fade-in {
  /* navigation visible at the end of the circle animation */
  visibility: visible;
  opacity: 1;
}
.cd-primary-nav.fade-in a {
	color: #36343b;
	text-decoration: none;
}
.cd-primary-nav.fade-in a.active {
	color: #5d94ba;
}
ul.cd-primary-nav.fade-in {
	list-style-type: none;
}



.cd-overlay-nav, .cd-overlay-content {
  /* containers of the 2 main rounded backgrounds - these containers are used to position the rounded bgs behind the menu icon */
  position: fixed;
  top: 60px;
  right: 60px;
  height: 4px;
  width: 4px;
  -webkit-transform: translateX(-20px) translateY(20px);
  -moz-transform: translateX(-20px) translateY(20px);
  -ms-transform: translateX(-20px) translateY(20px);
  -o-transform: translateX(-20px) translateY(20px);
  transform: translateX(-20px) translateY(20px);
}
.cd-overlay-nav span, .cd-overlay-content span {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.cd-overlay-nav.is-hidden, .cd-overlay-content.is-hidden {
  /* background fades out at the end of the animation */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-overlay-nav {
  /* main rounded colored bg 1 */
  z-index: 2;
}
.cd-overlay-nav span {
  background-color: #fff;
}

.cd-overlay-content {
  /* main rounded colored bg 2 */
  z-index: 4;
}
.cd-overlay-content span {
	background-color: #4F7893;
}

.cd-content {
  /* just some dummy content */
  padding: 80px 0;
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
  z-index: 1;
}
.cd-content .cd-intro {
  height: 200px;
  padding-top: 4.6em;
}
.cd-content h1 {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
}
.cd-content p {
  line-height: 1.5;
  color: #a76500;
}


/* -------------------------------- 

Hover styles

-------------------------------- */






/* -------------------------------- 

Responsive

-------------------------------- */

@media only screen and (min-width: 768px) {
  .cd-primary-nav li {
    margin: 2em 0;
  }
  .cd-primary-nav a {
    font-size: 28px;
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-primary-nav li {
    margin: 2.6em 0;
  }
  .cd-primary-nav a {
    font-size: 3.4rem;
	padding: 20px;
}
}

@media only screen and (min-width: 768px) {
  .cd-content .cd-intro {
    height: 250px;
    padding-top: 6em;
  }
  .cd-content h1 {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .cd-content p {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.8;
  }
}


@media only screen and (max-width: 1025px) {  
  
#hero {
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
	margin-top: -40px;
}
section.right {
	width: 100%;
	float: left;
	margin-top: 0;
	position: relative;
	padding: 90px 20px 60px;
}

section.right h1 {
	font-size: 45px;
	margin-bottom: 40px;
	line-height: 52px;
	margin-top: 0;
}
section.right  .bigtype p {
	font-size: 24px;
	line-height: 38px;
}

section.right  p {
	font-size: 18px;
	line-height: 30px;
}
section.right  h4 {
	margin-left: 0;
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 15px;
}
.swipe {
	display: block;
	position: absolute;
	bottom: 25px;
	right: 44%;
}
.lizzard {
	display: none;
}
body {
	background: #5d94ba url(../img/lizzard.svg) no-repeat right bottom;
	background-size: 240px;
}
 }

@media only screen and (max-width: 1100px) { 

.videoitem {
	width: 28%;
	margin-bottom: 30px;
}
section.full .videoitem h2 {
	font-size: 22px;
	line-height: 26px;
}
} 



@media only screen and (max-width: 768px) {  
  
.cd-nav-trigger {
  top: 15px;
  right: 15px;
  height: 50px;
  width: 50px;
}
.cd-overlay-nav, .cd-overlay-content {
  top: 15px;
  right: 15px;
}
a#home {
	background-size: 285px;
	left: -2px;
	top: 0;
	width: 285px;
	height: 64px;
}
section.full {
	width: 100%;
	float: left;
	margin-top: 0;
	position: relative;
	padding: 90px 20px 60px;
}
section.full h1 {
	font-size: 45px;
	margin-bottom: 40px;
	line-height: 52px;
	margin-top: 0;
}
.videoitem {
	width: 43%;

}
}

@media only screen and (max-width: 480px) {  
.videoitem {
	width: 100%;
	margin-bottom: 20px;
	height: auto;
	padding-bottom: 24px;
}
.videoitem .view {
	position: absolute;
	z-index: 1;
	color: #fff;
	left: 20px;
	bottom: 20px;
	background: #000 url(../img/arrow-right.svg) no-repeat center center;
	background-size: 20px;
	width: 36px;
	height: 36px;
	transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
}
section.full .videoitem h2 {
	margin-bottom: 50px;
}

}
