#hero {
width: 100%;
height: 50vh;
background: #37517e;
}

#hero .container {
padding-top: 20px;
}

#hero h1 {
margin: 0 0 20px 10px;
font-size: 48px;
font-weight: 700;
line-height: 40px;
color: #fff;
}

#hero h2 {
color: rgba(255, 255, 255, 0.6);
margin: 0 0 20px 10px;
font-size: 18px;
}

#hero .btn-get-started {
font-family: "Jost", sans-serif;
font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
display: inline-block;
padding: 10px 15px 11px 28px;
border-radius: 50px;
transition: 0.5s;
margin: 10px 0 0 10px;
color: #fff;
background: #47b2e4;
}

#hero .btn-get-started:hover {
background: #209dd8;
}

#hero .btn-watch-video {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 15px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 10px;
    color: #fff; 
}

#hero .btn-watch-video i {
line-height: 0;
color: #fff;
font-size: 32px;
transition: 0.3s;
margin-right: 8px;
}

#hero .btn-watch-video:hover i {
color: #47b2e4;
}

#hero .animated {
animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
#hero {
height: 110vh;
text-align: center;
}

#hero .animated {
animation: none;
}

#hero .hero-img {
text-align: center;
}

#hero .hero-img img {
width: 50%;
}
}

@media (max-width: 768px) {
#hero h1 {
font-size: 28px;
line-height: 36px;
}

#hero h2 {
font-size: 18px;
line-height: 24px;
margin-bottom: 30px;
}

#hero .hero-img img {
width: 70%;
}
}

@media (max-width: 575px) {
#hero .hero-img img { 
margin-top: 30px;
width: 80%;
}

#hero .btn-get-started {
font-size: 16px;
padding: 10px 20px 11px 20px;
}
}

@keyframes up-down {
0% {
transform: translateY(10px);
}

100% {
transform: translateY(-10px);
}
}