.language-switcher img {
  width: auto;
}

.hero-bg a {
  font-size: 24px;
}

/* === Home === */
.typing-block {
    font-size: 39px;
  }

 /*===Player===*/
 .home-player-container {
  padding-top: 0px;
}
.margin-top-40{
	margin-top: 40px;
}

/* === Gallery === */
.gallery {
	margin-bottom: 50px;
}

/* === Newsletter === */
.subscribe-text {
    font-size: 25px;
  }

/*=== Application ===*/
.img-border {
	border:1px solid #b5b4b4;
}

/*== Elevator ==*/
.page-scroll {
  font-size: 1.5em;

  position: fixed;
  z-index: 100;
  right: 15px;
  bottom: 20px;

  display: block;

  width: 42px;
  height: 42px;
  margin: 0 5px;
  padding-top: 6px;

  cursor: pointer;
  -webkit-transition: all .3s ease;
     -moz-transition: all .3s ease;
          transition: all .3s ease;
  text-align: center;

  color: #fff;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  background: #26B04C;

  -webkit-animation-name:drop;
  -webkit-animation-duration:2s;
  -webkit-animation-timing-function:linear;
  -webkit-animation-delay:0s;
  -webkit-animation-iteration-count:infinite; 
  -webkit-animation-play-state:running;   
  animation-name:drop;
  animation-duration:2s;
  animation-timing-function:linear;
  animation-delay:0s;
  animation-iteration-count:infinite; 
  //animation-play-state:running;
}
    
@-webkit-keyframes drop {
    0%   { opacity: 0;}
    30% { opacity: 1;}
    100% { opacity: 0;}
}
    
@keyframes drop {
    0%   { opacity: 0;}
    30% { opacity: 1;}
    100% { opacity: 0;}
}

.page-scroll:link,
.page-scroll:visited,
.page-scroll:hover,
.page-scroll:active {
  color: white;
}

/*== Parallax ==*/
/* background setup */
.background {
    background-repeat:no-repeat;
    /* custom background-position */
    background-position:50% 50%;
    /* ie8- graceful degradation */
    background-position:50% 50%\9 !important;
}

/* fullscreen setup */
html, body {
    /* give this to all tags from html to .fullscreen */
    height:100%;
}
.fullscreen,
.content-a {
    width:100%;
    min-height:100%;
}
.not-fullscreen,
.not-fullscreen .content-a,
.fullscreen.not-overflow,
.fullscreen.not-overflow .content-a {
    height:100%;
    overflow:hidden;
}

/* content centering styles */
.content-a {
  display:table;
}
.content-b {
  display:table-cell;
  position:relative;
  vertical-align:middle;
  text-align:center;
  font-size: 60px;
  color: white;
  line-height: 70px;
  cursor: pointer;
}

.content-b > a,
.content-b > a:focus,
.content-b > a:hover,
.content-b > a:active,
.content-b > a:visited {
  color: white;
  text-decoration: none;
}

/*== Pace ==*/
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

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

.pace .pace-activity {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: #26B04C;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: translateX(100%) translateY(-100%) rotate(45deg);
  transform: translateX(100%) translateY(-100%) rotate(45deg);
  pointer-events: none;
}

.pace.pace-active .pace-activity {
  -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
  transform: translateX(50%) translateY(-50%) rotate(45deg);
}

.pace .pace-activity::before,
.pace .pace-activity::after {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    bottom: 30px;
    left: 50%;
    display: block;
    border: 5px solid #fff;
    border-radius: 50%;
    content: '';
}

.pace .pace-activity::before {
    margin-left: -40px;
    width: 80px;
    height: 80px;
    border-right-color: rgba(0, 0, 0, .2);
    border-left-color: rgba(0, 0, 0, .2);
    -webkit-animation: pace-theme-corner-indicator-spin 3s linear infinite;
    animation: pace-theme-corner-indicator-spin 3s linear infinite;
}

.pace .pace-activity::after {
    bottom: 50px;
    margin-left: -20px;
    width: 40px;
    height: 40px;
    border-top-color: rgba(0, 0, 0, .2);
    border-bottom-color: rgba(0, 0, 0, .2);
    -webkit-animation: pace-theme-corner-indicator-spin 1s linear infinite;
    animation: pace-theme-corner-indicator-spin 1s linear infinite;
}

@-webkit-keyframes pace-theme-corner-indicator-spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(359deg); }
}
@keyframes pace-theme-corner-indicator-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(359deg); }
}