body{
    background: #f7f9fe !important;
    color: #6a6a6a;
    font-size: 1.5em;
}
body,
h1,h2,h3{
    font-family: 'Nunito', sans-serif;
}
h1,h2,h3{
    color: #00428b !important;
}
h3{
    font-size: 2rem;
}
.p-100{
    padding-top: 100px;
}
.pb-100{
    padding-bottom: 100px;
}
.hidden{
    display: none;
}
.error{
	border: 1px solid red;
	color: red !important;
}
.error::placeholder{
	color: red !important;
}

#hero{
    height: 100vh;
    background-image: url('/img/wave-1.svg');
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
}
#hero h1{
    font-size: 4em;
}
p{
    font-size: 1.4em;
}
#hero h2{
    font-size: 1.1em;
    text-align: center;
    font-weight: 400;
    letter-spacing: 5px;
}
.octopusTitle{
    letter-spacing: 3px;
}
#hero img{
    width: 50%;
    z-index: 2;

    animation: moveIt 2.5s ease-in-out infinite;
}
#backVideo,
#back {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
#backVideo video,
#back video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#back{
    background-color: #c8dbff80;
    z-index: 0;
}
.relative{
    position: relative;
}
.arrow-1{
    position: absolute;
    right: -22%;
    top: 24%;
}
.arrow-2{
    position: absolute;
    right: -12%;
    top: 16%;
}
.arrow-3{
    position: absolute;
    right: -12%;
    top: 43%;
}
#footer{
    background-image: url('/img/wave-footer.svg');
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    height: 50vh;
}
#footer img{
    opacity: 0.6;
}
.form-control{
    padding: 10px 5px !important;
    font-size: 1.8rem;
}
input[type="submit"]{
    background-color: #00428b;
    color: #FFF;
    border: 0;
    border-radius: 3px;
    padding: 5px 20px !important;
    font-size: 1.8rem;

}
@keyframes moveIt {
    0%, 100% {
      transform: rotate(5deg);
    }
    50% {
      transform: rotate(-5deg);
    }
  }


@media (max-width: 545px) {
    .arrow-1{
        width: 35%;
    }
    .arrow-2,
    .arrow-3{
        width: 25%;
    }
    .section-title h2 {
        line-height: 1.3em;
    }
    footer{
        height: 20vh;
    }
}