/*!
 * Yoursite vCard Resume
 * © scrils
*/

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

Primary style

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

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  color: #343642;
  background-color: #ffffff;
}

a {
  color: #982b3c;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  outline: none;
  font-size: 1.6rem;
}

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

Images block

-------------------------------- */
.cd-image-block {
  position: relative;
}
.cd-image-block::before {
  /* this is the layer used to cover the .cd-image-block when the content block becomes visible - mobile only */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(52, 54, 66, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.cd-image-block.content-block-is-visible::before {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
@media only screen and (min-width: 768px) {
  .cd-image-block::before {
    display: none;
  }
}

.cd-images-list::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}
.cd-images-list > li {
  height: 500px;
/*  background: #979c9c url(../img/img-1.jpg) no-repeat center center;*/
  background-size: cover;
  padding-top:90px;
}
.cd-images-list > li:nth-of-type(2) {
/*  background: #343642 url(../img/img-5.jpg) no-repeat center center;*/
  background-size: cover;
}
.cd-images-list > li:nth-of-type(3) {
/*  background: #982b3c url(../img/img-6.jpg) no-repeat center center;*/
  background-size: cover;
}
.cd-images-list > li:nth-of-type(4) {
/*  background: #338899 url(../img/img-4.jpg) no-repeat center center;*/
  background-size: cover;
}
.cd-images-list > li > a {
  /* used to vertically align the h2 child -  mobile version only */
  display: table;
  height: 100%;
  width: 100%;
}
.cd-images-list img{
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
  border-radius: 50%;
  border: 5px solid #ffc300;
  display: block;
}
.cd-images-list h2 {
  /* used to vertically align h2 -  mobile version only */
  text-align: center !important;
  vertical-align: middle;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 40px !important;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
}
.cd-images-list .quote{
  margin-top: 50px;
  padding: 40px;
}
.cd-images-list p{
  font-family: "Gentium Basic", sans-serif;
  color:#fff;
  letter-spacing: 0.04em;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.cd-images-list .quote h6{
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #ffc300;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
}
.cd-images-list .quote span{
  font-size: 30px;
  color: #ffc300;
}
.cd-intro{
  margin-top: -20px !important;
}
h1.cd-headline span{
  font-size: 20px !important;
  font-family: "Gentium Basic", sans-serif !important;
  letter-spacing: 1px;
  text-align: center !important;
  color: #ffc300;
  font-style: normal !important;
  font-weight: normal !important;
}
@media only screen and (min-width: 768px) {
  .cd-images-list::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
  .cd-images-list > li > a {
    display: block;
    padding: 4em 3em;
    cursor: default;
    pointer-events: none;
  }
}

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

Content block

-------------------------------- */
.cd-content-block {
  /* move the block outside the viewport (to the right) - mobile only */
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-content-block.is-visible {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cd-content-block > ul {
  height: 100%;
}
.cd-content-block > ul > li {
  position: absolute;
  height: 100%;
  padding: 2em;
  overflow-y: scroll;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
}
.cd-content-block > ul > li.is-selected {
  /* this is the selected content */
  position: relative;
  opacity: 1;
  visibility: visible;
  -webkit-overflow-scrolling: touch;
}

/*--------------------------------------------------
  Section Title
---------------------------------------------------*/

.cd-content-block .sectionTitle h2 {
  font-weight: 700;
  line-height: 38px;
  font-size: 30px !important;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Open Sans", sans-serif;
  color:#111;
  letter-spacing: 0.04em;
}
.cd-content-block .sectionTitle h2 span{
  color:#ffc300;
}
.cd-content-block .sectionTitle hr{
  border: 0;
  background-color: #ffc300;
  width: 10%;
  float: left;
  height: 3px;
}
.sectionTitle{
  padding-bottom: 40px;
}

/*--------------------------------------------------
  End Section Title
---------------------------------------------------*/

/*--------------------------------------------------
  Right Box About
---------------------------------------------------*/

.about{
  margin-bottom: 35px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
}
.about p{
  color:#777;
  font-size: 16px;
  font-family: "Gentium Basic", sans-serif;
  letter-spacing: 0.04em;
}
.profile p{
  font-size: 16px;
  margin-bottom: 14px !important;
  font-family: "Gentium Basic", sans-serif;
  padding: 4px 12px;
  background-color: #f9f7f8;
  letter-spacing: 0.04em;
}
b.profileLeft{
  text-align: left;
  font-family: "Open Sans", sans-serif;
  color:#111;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
b.profileLeft span{
  font-size: 11px;
  margin-right: 6px;
  color:#ffc300;
}
span.profileRight{
  float: right;
}

/*--------------------------------------------------
  End Right Box About
---------------------------------------------------*/

/*--------------------------------------------------
  Right Box Resume
---------------------------------------------------*/

h2.resumeTitle{
  margin-top: 150px !important;
}
.education{
  padding-bottom: 25px;
  border-bottom: 2px solid #eee;
  margin-bottom: 50px;
}
.resumeLine{
  background: #f9f7f8;
  padding: 15px 25px;
  padding-top: 35px;
  margin-bottom: 30px;
}
.resumeLine h4{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color:#111;
  letter-spacing: 0.04em;
  font-size: 18px;
  margin-bottom: 10px;
}
.date{
  margin-bottom: 15px;
  color: #ffc300 !important;
}
.date span{
  font-size: 11px;
  margin-right: 6px;
}
.date b{
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  margin-bottom: 15px !important;
  font-weight: 700;
  letter-spacing: 0.02em
}
.resumeLine p{
  color:#777;
  font-size: 16px;
  font-family: "Gentium Basic", sans-serif;
  letter-spacing: 0.04em;
}
.skills{
  padding-bottom: 25px;
  border-bottom: 2px solid #eee;
  margin-bottom: 50px;
}
.progress {
  height: 20px;
  overflow: hidden;
  background-color:#f9f7f8;
  margin-bottom: 20px;
  border-radius: 1px;
}
.progress-bar {
  border-radius: 1px; 
  float: left;
  width: 0;
  height: 100%;
  font-size: 11px;
  line-height: 18px;
  color: #fff;
  text-align: left;
  padding-left: 20px;
  background-color: #ffc300;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: "Open Sans", sans-serif;
}
.progress-bar span{
  float: right;
  padding-right: 15px;
}
.services{
  padding-bottom: 50px;
  border-bottom: 2px solid #eee;
  margin-bottom: 50px;
}
.services ul{
  margin-bottom: 200px;
}
li.servicesRow{
  text-align: center;
  background: #f9f7f8;
  padding: 30px;
  width: 33.3%;
  float: left;
  color:#111;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
}
li.servicesRow:hover{
  background: #ffc300;
  color:#fff;
}
li.servicesRow span{
  font-size: 20px;
  position: relative;
  top:-5px;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
}
li.servicesRow h3{
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  bottom: -5px;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
}
li.servicesRow:hover span{
  top:-10px;
  color:#fff;
}
li.servicesRow:hover h3{
  bottom: -10px;
  color:#fff;
}

/*--------------------------------------------------
  End Right Box Resume
---------------------------------------------------*/

/*--------------------------------------------------
  Right Box Portfolio 
---------------------------------------------------*/

.portfolioTitle{
  margin-bottom: 5px;
}
.worksItem {
    display: none;
    padding: 20px;
    padding-left: 0px;
    overflow: hidden;
    position: relative;
    height: auto;
    text-align: center;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}
.worksItem a{
  display: block;
  position: relative;
  overflow: hidden;
}
.worksItem img {
  width: 100%;
  height: auto;
  -webkit-transition: all .25s ease-out;
  transition: all .25s ease-out;
}
.worksItem:hover img{
  -webkit-transform: scale3d(1.1,1.1,1.1);
  transform: scale3d(1.1,1.1,1.1);  
}
.worksItem .itemCaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  opacity: 0;
-webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
-moz-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
-ms-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
-o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    transform: scale(1);
}
.worksItem:hover .itemCaption {
  opacity: 1;
}
.captionContent {
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  background-color: rgba(0,0,0,0.8);
  padding-top: 30%;
}
.itemCaption h3 {
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  padding: 0;
  color: #fff;
}
.itemCaption p {
  font-size: 14px;
  font-family: "Gentium Basic", sans-serif;
  letter-spacing: 0.04em;
  color:#ffc300 !important;
  font-weight: 700;
}


/* ====WORKS FILTERS==== */
.worksFilters {
    -webkit-padding-start:0px;
}
.worksFilters {
    margin: 0 auto;
    text-align: left;
    margin-bottom: 40px;
}
.worksFilters li {
    display: inline-block;
    cursor: pointer;
    padding: 8px 16px;
    margin:0 5px;
    background: #f9f7f8;
    margin-left: 0px;
    font-weight: 600;
    font-size: 12px;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    letter-spacing: 0.04em;
    border:1px solid #fff;
    font-family: "Open Sans", sans-serif;
    color:#777;
}
.current-filter {
  color:#fff !important;
  background: #ffc300 !important;
}

.modal-box {
  max-width: 550px;
  background: #fff;
  position: relative!important;
  margin: 0 auto;
  left: 0!important;
}
.modal-box img {
  width: 100%;
  height: 100%;
}
.modal-box-content {
  padding: 25px;
}
.modal-box-content h2 {
  font-size: 22px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  color:#111;
  margin-bottom: 15px;
}
.modal-box-content p {
  color: #777;
  line-height: 21px;
  letter-spacing: 0.04em;
  font-family: "Gentium Basic", sans-serif;
  font-size: 13px;
}
.modal-box ul li{
	margin-left: 20px;
	padding-left: 20px;
	font-size: 13px;
	color: rgb(119,119,119);
}
.modal-box h4 {
	padding-top: 20px;
	color: rgb(119,119,119);
}
.modal-box em, .modal-box li em {
	font-style: italic;
}

.contactForm {margin: 0 0 50px 0;}
.contactForm h1 {
    letter-spacing: 5px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 30px;
}

/*--------------------------------------------------
  End Right Box Portfolio 
---------------------------------------------------*/

/*--------------------------------------------------
  Right Box Contact
---------------------------------------------------*/

.interSection{
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  height: 10px;
  width: 100%;
  float:center;
}
.Col3{
  width: 50%;
  float: left;
}
.mapBox{
  padding-bottom: 30px;
  border-bottom: 2px solid #eee;
}
#map {
  width: 100%;
  height: 300px;
}
input, textarea, select {
  background:#eee;
  vertical-align: top;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  margin: 0;
  padding: 20px;
  width: 100%;
  height: 100%;
  border: 0;
  border-bottom:0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color:#777;
  font-family: "Open Sans", sans-serif;
}

textarea{
  min-height: 150px;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  position: relative;
  z-index: 5;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
}

input.submit {
  width: auto;
  cursor: pointer;
  position: relative;
  background: #111;
  color: #fff;
  border:none;
  margin-top: 5px;
  padding: 15px 30px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: "Open Sans", sans-serif;
}
input.submit:hover{
  background:#ffc300;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #777;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #777;
}
#contactform input[type="submit"][disabled] { background:#777; cursor: default; }
#contactform div {margin: 20px 0;}
.contactForm fieldset { padding:0;border:0; }
.contactForm label {
  font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* ====MESSAGE FOR SUCCES==== */

#message { 
  margin: 1em 0; 
  padding: 0; 
  display: block; 
  background: transparent none; 
}
#message h1 {
  letter-spacing: 0.04em;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  text-align: left;
  font-weight: 700;
  color: #ffc300;
  margin-top: 30px;
}

#message p {
    margin-top: -15px !important;
    font-size: 14px;
    text-align: left;
    color:#777;
    font-family: "Gentium Basic", sans-serif;
}

/* ====MESSAGE FOR ERROR==== */
.errorMessage { 
    display: block;
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    color: #ffc300;
    letter-spacing: 0.04em;
    padding: 20px 0 0 0;
}

ul.errorMessages { padding: 10px 0 0 0; }
ul.errorMessages li { 
    font-size: 14px;
    font-family: "Gentiun Basic", sans-serif !important;
    letter-spacing: 0.04em;
    text-align: left;
    color: #777;
    list-style: none;
    line-height: 25px;
}

/*--------------------------------------------------
  End Right Box Contact
---------------------------------------------------*/

/*--------------------------------------------------
  Footer
---------------------------------------------------*/

footer{
  margin-top: 20px;
  padding-top: 50px;
  border-top: 2px solid #ededed;
}
.footerLeft{
  float: left;
  font-family: "Gentium Basic", sans-serif;
  color:#111;
  letter-spacing: 0.04em;
}
.footerLeft span{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color:#ffc300;
  font-size: 14px;
}
.footerRight{
  float: right;
}
.footerRight a span{
  color:#ffc300;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}
.footerRight a span:hover{
  color:#111;
}

/*--------------------------------------------------
  End Footer
---------------------------------------------------*/

.cd-content-block p {
  margin-bottom: 1.5em;
  line-height: 1.6;
  color: #85868d;
}
.cd-content-block .cd-close {
  /* 'X' icon to close the content block -  mobile only */
  position: fixed;
  top: 0;
  right: 0;
  height: 44px;
  width: 44px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  transition: transform 0.2s;
}
.cd-content-block .cd-close::after, .cd-content-block .cd-close::before {
  /* these are the 2 lines of the 'X' icon */
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 24px;
  background-color: #343642;
  /* Force Hardware Acceleration */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}
.cd-content-block .cd-close::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.cd-content-block .cd-close::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.cd-content-block .cd-close.is-scaled-up {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.no-touch .cd-content-block .cd-close.is-scaled-up:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
@media only screen and (min-width: 768px) {
  .cd-content-block {
    /* reset style */
    position: static;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-content-block > ul > li {
    /* reset style */
    opacity: 1;
    visibility: visible;
    padding: 4em 3em;
  }
  .cd-content-block > ul > li.overflow-hidden {
    /* this class is used during the animation (slider change) to hide the scrolling bar */
    overflow: hidden;
  }
  .cd-content-block h2 {
    font-size: 3rem;
  }
  .cd-content-block .cd-close {
    display: none;
  }
}

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

Desktop slider - both image and content blocks

---------------------------------------------- */
@media only screen and (min-width: 768px) {
  .cd-image-block,
  .cd-content-block {
    /* slider style - desktop version only */
    width: 50%;
    float: left;
    height: 100vh;
    overflow: hidden;
  }
  .cd-image-block > ul,
  .cd-content-block > ul {
    position: relative;
    height: 100%;
  }
  .cd-image-block > ul > li,
  .cd-content-block > ul > li {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Force Hardware Acceleration */
    -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;
    /* by default, the items are moved to the right - relative to their parent elements */
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s;
    -moz-transition: -moz-transform 0.5s;
    transition: transform 0.5s;
  }
  .cd-image-block > ul > li.is-selected,
  .cd-content-block > ul > li.is-selected {
    /* this is the visible item */
    position: absolute;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-image-block > ul > li.move-left,
  .cd-content-block > ul > li.move-left {
    /* this is the item hidden on the left */
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* -------------------------------- 

Slider navigation

-------------------------------- */
.block-navigation {
  /* this is the slider navigation - desktop version only */
  display: none;
}
@media only screen and (min-width: 768px) {
  .block-navigation {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50%;
  }
  .block-navigation::after {
    clear: both;
    content: "";
    display: table;
  }
  .block-navigation li {
    width: 50%;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: rgba(0, 0, 0, 1);
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
  }
  .block-navigation li button{
    font-family: "Open Sans", sans-serif;
    font-size: 12px; 
    letter-spacing: 0.08em !important;
    text-transform: uppercase; 
  }
  .block-navigation li:hover {
    background-color: #ffc300;
  }
  .block-navigation li:first-of-type {
    float: left;
  }
  .block-navigation li:last-of-type {
    float: right;
  }
  .block-navigation button {
    display: block;
    height: 100%;
    width: 100%;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .block-navigation button.inactive {
    opacity: .3;
    cursor: not-allowed;
  }
}

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

Javascript disabled

-------------------------------- */
@media only screen and (min-width: 768px) {
  .no-js .cd-content-block {
    display: none;
  }

  .no-js .cd-image-block {
    width: 100%;
    overflow: visible;
  }

  .no-js .cd-images-list::after {
    clear: both;
    content: "";
    display: table;
  }

  .no-js .cd-images-list > li {
    position: static;
    width: 50%;
    float: left;
    height: 400px;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .no-js .cd-images-list > li.is-selected {
    position: static;
  }

  .no-js .cd-images-list > li > a {
    cursor: pointer;
    pointer-events: auto;
  }

  .no-js .block-navigation {
    display: none;
  }
}

/*--------------------------------------------------
  Responsive
---------------------------------------------------*/

@media (max-width: 480px){
  .cd-images-list h2 {
    font-size: 30px !important;
    margin-bottom: 30px;
  }
}