@font-face {
  font-family: comfortaa_regular;
  src: url(comfortaa/Comfortaa-Regular.ttf);
}

@font-face {
  font-family: comfortaa_bold;
  src: url(comfortaa/Comfortaa-Bold.ttf);
}

@font-face {
  font-family: comfortaa_light;
  src: url(comfortaa/Comfortaa-Light.ttf);
}

* {
  box-sizing: border-box;
  margin: 0;
  font-family: comfortaa_regular;
}

header {
  width: 100%;
  height: 86px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
  background-color: #111F2F;
  position: fixed;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
  z-index: 999;
}

header .header_center {
  max-width: 960px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .header_center .logotyp {
  width: 150px;
  cursor: pointer;
}

header .header_center--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .header_center--menu nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .header_center--menu nav .menu_button {
  margin: 0 15px;
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  font-family: comfortaa_light;
  cursor: pointer;
}

header .header_center--menu nav .menu_button:hover {
  color: #5c97a0;
}

header .header_center--menu nav .menu_button span {
  font-family: comfortaa_bold;
}

header .header_center--menu .socialmedia_button img {
  width: 38px;
}

header .header_center--menu .instagram_button {
  margin-left: 10px;
}

#home {
  width: 100%;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #111F2F;
}

#home .center {
  max-width: 1920px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#home .center img {
  width: 100%;
    z-index: 101;
}

#home .center h1 {
  position: absolute;
  font-family: 'Helvetica', Sans-Serif;
  color: #fff;
  font-size: 6.5vw;
  letter-spacing: -2px;
  z-index: 101;
}

#home .center .button_play {
  bottom: 15%;
  left: 50%;
  position: absolute;
  width: 60px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
  opacity: 0.2;
  transform: translate(-50%, 0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}

#home .center .button_play:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation: pulse 3s infinite;
  animation: pulse 3s infinite;
}

#info {
  max-width: 500px;
  width: 100%;
  background-color: #111F2F;
  padding: 20px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 150px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  position: fixed;
  z-index: 110;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
  display: none;
}

#info .info_headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 2px solid #fff;
  margin: 0 25px 25px;
  position: relative;
  height: 100px;
}

#info .close {
  position: absolute;
  right: 0;
  top: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#info .close img {
  width: 30px;
}

#info h2 {
  width: auto;
  text-align: center;
  color: #5c97a0;
  font-size: 30px;
  font-weight: normal;
  font-family: comfortaa_light;
}

#info h2 span {
  font-family: comfortaa_bold;
}

#info p {
  width: 100%;
  font-size: 16px;
  color: #5c97a0;
  text-align: center;
  font-weight: bold;
  margin-bottom: 25px;
  font-family: Helvetica;
  padding: 0 25px;
}

#info button {
  float: right;
  margin-top: 10px;
  width: 108px;
  height: 43px;
  border: 1px solid #5C97A0;
  background: none;
  color: #5C97A0;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}

#info button:hover {
  border: 1px solid #fff;
  color: #fff;
}

#info .hidden_p {
  display: none;
}

#portfolio {
  background-color: #111F2F;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#portfolio .center {
  max-width: 1920px;
  width: 100%;
  background-color: #111F2F;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#portfolio .thumbnail {
  width: 33.333%;
  cursor: pointer;
  position: relative;
}

#portfolio .thumbnail:hover img {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

#portfolio .thumbnail img {
  width: 100%;
  height: 100%;
}

#portfolio .thumbnail p {
  position: absolute;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: none;
  text-align: center;
  line-height: 1.5em;
}

#portfolio .thumbnail p span {
  text-decoration: underline;
}

#portfolio .thumbnail:hover p {
  display: block;
}

#kontakt {
  background-color: #111F2F;
  padding: 100px 20px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#kontakt div {
  max-width: 400px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#kontakt div article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-family: comfortaa_light;
  margin-top: 30px;
}

#kontakt div article h3 {
  font-weight: 100;
  font-size: 18px;
  width: 100%;
  text-align: left;
  font-family: comfortaa_light;
}

#kontakt div article h4 {
  font-weight: 100;
  font-size: 12px;
  width: 100%;
  text-align: left;
  font-family: comfortaa_light;
  margin: 5px 0 10px;
}

#kontakt div article p {
  margin: 5px 0;
  font-weight: 100;
  font-size: 14px;
  width: 100%;
  text-align: left;
  font-family: comfortaa_light;
}

#kontakt h2 {
  max-width: 300px;
  width: 100%;
  border-bottom: 2px solid #fff;
  padding-bottom: 25px;
  text-align: center;
  color: #5c97a0;
  font-size: 30px;
  font-family: comfortaa_light;
  font-weight: 300;
}

#kontakt h2 span {
  font-weight: bold;
}

#kontakt form {
  display: none;
  max-width: 760px;
  width: 100%;
}

#kontakt form input {
  width: 100%;
  margin: 10px 0;
  height: 30px;
  padding: 10px;
  background: none;
  color: #C4C4C4;
  border: 1px solid #fff;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

#kontakt form div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#kontakt form div input {
  width: 49%;
}

#kontakt form div input:focus {
  border-top: 0;
}

#kontakt form p {
  margin-top: 20px;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 1;
  font-style: italic;
  color: #C4C4C4;
  padding: 5px;
}

#kontakt a {
  color: #fff;
  text-decoration: none;
}

#kontakt form textarea {
  width: 100%;
  background: none;
  resize: none;
  border: 1px solid #fff;
  color: #C4C4C4;
  padding: 10px;
}

#kontakt form button {
  float: right;
  margin-top: 10px;
  width: 100px;
  height: 33px;
  border: 1px solid #5C97A0;
  background: none;
  color: #5C97A0;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

#kontakt form button:hover {
  border: 1px solid #fff;
  color: #fff;
}

#kontakt .social_media_box {
  display: none;
  margin-top: 25px;
  max-width: 300px;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
  display: none;
  z-index: 9999;
}

.popup .close {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;

}

.popup .close img {
  width: 100%;

}

.popup .video_box {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.popup .video_box video {
  width: 100%;
  height: 100vh;
}



.slider-wrap {
  width: 100%;
  position: relative;
}

.single-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  animation: slider-animation;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  background-size: cover;
  z-index: 100;
  top: 0;
}

#slide-1 {
  background-image: url(../images/slide1.jpg);
}

#slide-2 {
  animation-delay: 5s;
  background-image: url(../images/slide2.jpg);
}

#slide-3 {
  animation-delay: 10s;
  background-image: url(../images/slide3.jpg);
}

#slide-4 {
  animation-delay: 15s;
  background-image: url(../images/slide4.jpg);
}

@keyframes slider-animation {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
