body {
  margin: 0px;
}
#banner {
  position: relative;
  display: block;
  width: 968px;
  height: 248px;
  background: url(../images/ow-logo.svg) 430px 212px no-repeat;
  background-size: 110px 17px;
  overflow: hidden;
  border: #d9d9d9 1px solid;
}

#ad {
  display: flex;
  overflow: hidden;
  width: 968px;
  height: 248px;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #2d2d39;
  font-family: Arial, sans-serif;
}

.hl-bold {
  color: #199730;
  font-weight: bold;
}
.headline {
  font-family: Georgia, serif;
  font-size: 30px;

  color: #2d2d39;
  line-height: 41px;
  margin-top: 44px;
}

.image-placeholder-wrapper {
  width: 290px;
  height: 220px;
  display: flex;
}
.vector-image {
  margin: auto;
  width: 134px;
}

.ad-col {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-left: 4px;
}

form {
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
label {
  font-size: 15px;
  line-height: 16px;
  letter-spacing: -0.03px;

  text-transform: uppercase;
  margin: 32px 0px 4px;
}
.text_input {
  background: #ffffff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 25px;
  padding: 0 5px;

  letter-spacing: 0.26px;

  width: 393px;
  height: 42px;

  border-radius: 4px;
  border: solid 1px #fccf33;
  outline: none;
}
button {
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 18px;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  border-radius: 3px;
}
.button {
  width: 141px;
  height: 42px;
  cursor: pointer;
  margin-left: 26px;

  position: relative;
  overflow: hidden;
  background-image: linear-gradient(-75deg, #179c2f 0%, #208732 100%);
  z-index: 1;
}
.button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-image: linear-gradient(-75deg, #1b722b 0%, #208732 100%);
  transition: all 0.3s;
  z-index: -1;
}
.button:hover:before {
  width: 100%;
}

/* SVG-ANIMATION-START */

.curve-line-vector-group path {
  stroke-dasharray: 1000;
  animation: curvepath-anim 7s linear forwards;
}
.circle-vector-group {
  animation: circle-anim 7s linear forwards;
}
.home-vector-group {
  animation: home-anim 7s linear forwards;
}
@keyframes curvepath-anim {
  0% {
    stroke-dashoffset: 1000;
  }
  70% {
    stroke-dashoffset: 0;
  }
}
@keyframes circle-anim {
  0%,
  15%,
  19%,
  22% {
    opacity: 0;
  }
  17%,
  21%,
  24%,
  100% {
    opacity: 1;
  }
}
@keyframes home-anim {
  0%,
  25% {
    opacity: 0;
  }
  35%,
  100% {
    opacity: 1;
  }
}
/* SVG-ANIMATION-END */
