.header {
  height: 100vh;
  z-index: 10;
}
.bg {
  height: 100vh;
   background-image: url('./images/bg4.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  position: fixed;
  width: 100%;
  z-index: -1;
}
.overlay {
  height: 100vh;
  width: 100%;
  position: absolute;
  /* background-color: black; */
  opacity: 1;
  background: linear-gradient(0deg, black, transparent);
}
.hello {
  color: white;
  max-width: 540px;
}
.logo img{
  opacity: 0.85;
  width: 255px;
  height: 255px;
}
.hello-container {
  height: 100%;
  width: 100%;
  display: flex;
  align-content: space-around;
  align-items: center;
  position: absolute;
}
.container {
  width: 80%;
}
.video img {
  display: block;
  height: auto;
  width: 100%;
}
.video iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.video .wrapper {
  float: left;
  position: relative;
}

p {
  font-size: 1.15rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

.icon-man {
  background-image: url('./images/man.svg');
  background-size: cover;
  height: 125px;
  width: 125px;
}

.icon-guitar {
  background-image: url('./images/electric-guitar.svg');
  background-size: cover;
  height: 125px;
  width: 125px;
}

.icon-microphone {
  background-image: url('./images/microphone.svg');
  background-size: cover;
  height: 125px;
  width: 125px;
}

.icon-mixer {
  background-image: url('./images/mixer.svg');
  background-size: cover;
  height: 125px;
  width: 125px;
}

.icon-rock {
  background-image: url('./images/rock-symbol.svg');
  background-size: cover;
  height: 125px;
  width: 125px;
}

.icon-speakers {
  background-image: url('./images/speakers.svg');
  background-size: cover;
  height: 125px;
  width: 125px;
}

.icon-headphones {
  background-image: url('./images/headphones.svg');
  background-size: cover;
  height: 100px;
  width: 100px;
}

.icon-vk {
  background-image: url('./images/vk.svg');
  background-size: cover;
  height: 15px;
  width: 26.25px;
  margin-right: 8px;
}

.icon-tg {
  background-image: url('./images/tg.svg');
  background-size: cover;
  height: 15px;
  width: 17.38px;
  margin-right: 8px;
}

.icon-email {
  background-image: url('./images/email.svg');
  background-size: cover;
  height: 23px;
  width: 23px;
  margin-right: 8px;
}

span.hl{
  color: #36515c;
  font-weight: 600;
}

a {
  color: blue;
  text-decoration: none;
}

/* colors */

.block-1 {
  background-color: #ffffff;
}

.block-2 {
  background: #edeef0;
}

/* fonts */
footer {
  height: 300px;
  position: relative;
}

footer .logo img {
  opacity: 0.85;
  width: 150px;
  height: 150px;
}
.links {
  z-index: 10;
  position: relative;
}
.footer-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: black;
  opacity: 0.7;
  /* height: 100%; */
  
  /* z-index: 10; */
}
footer a {
  color: white;
}
footer a:hover {
  color: #5594c7;
}


/* buttons */
.svg-wrapper {
  width: 250px;
  height: 60px;
	margin: 0 auto;
  position: relative;
  top: 50%;
}

.add-pointer {
  cursor: pointer;
}

.shape {
  fill: transparent;
  stroke-dasharray: 140 540;
  stroke-dashoffset: -365;
  stroke-width: 8px;
  stroke: #014D8C;
}

.text {
  font-weight: 600;
  color: #014D8C;
  font-size: 22px;
  letter-spacing: 3px;
  line-height: 32px;
  position: relative;
  top: -48px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes draw {
  0% {
    stroke-dasharray: 140 540;
    stroke-dashoffset: -365;
    stroke-width: 8px;
  }
  100% {
    stroke-dasharray: 760;
    stroke-dashoffset: 0;
    stroke-width: 8px;
  }
}

@keyframes leave {
  0% {
    stroke-dasharray: 760;
    stroke-dashoffset: 0;
    stroke-width: 8px;
  }
  100% {
    stroke-dasharray: 140 540;
    stroke-dashoffset: -365;
    stroke-width: 8px;
  }
}

.svg-wrapper:hover .shape {
  -webkit-animation: 0.2s draw linear forwards;
  animation: 0.2s draw linear forwards;

}

.svg-wrapper:not(:hover) .shape {
  -webkit-animation: 0.2s leave linear forwards;
  animation: 0.2s leave linear forwards;
}