@import url('https://fonts.googleapis.com/css2?family=Manrope&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: "Manrope", sans-serif;
    color: #023346;
}
p, a, li {
    font-family: "Manrope",sans-serif;
}

.navbar-brand {
    font-family: "Manrope",sans-serif;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 1px;
    color: #023346;
    margin-top: 3px;
}
.hero {
    width: 100%;
    height: 100vh;
    background: url(../img/bg.png) top center no-repeat;
    background-size: cover;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    color: #023346;
}

.hero h2 {
    color: #444444;
    margin: 15px 0 0 0;
    font-size: 26px;
}

.hero .btn {
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #05668D;
    box-shadow: 0px 5px 30px rgba(6,109,150,0.4);
}

.hero .btn span {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
}

.hero .btn i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.hero .btn:hover i {
    transform: translateX(5px);
}

.hero .hero-img {
    text-align: right;
}

.navbar-band:hover {
    color: #023346 !important;
}

@media (min-width: 1024px) {
    .hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    .hero {
        height: auto;
        padding: 120px 0 60px 0;
    }

    .hero .hero-img {
        text-align: center;
        margin-top: 80px;
    }

    .hero .hero-img img {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero .hero-img img {
        width: 100%;
    }
}