

/* Background Color */
.hero {
    background-color: #7177A9;
    color: white;
    text-align: center;
    position: relative;
    /* height: 90vh; */
}

/* Vector Images */
.vector {
    position: absolute;
    max-width: 250px;
    display: none;
}
@media (min-width: 768px) {
    .vector {
        display: block;
    }
}
.vector-one {
    top: 380px;
    left: 20%;
}

.vector-two {
    top: 220px;
    right: 1200px;
}

@media (min-width: 768px) {
    .vector-two {
        /* top: ; */
        right: 20%;
    }
}

/* Hero Content */
.hero-content {
    /* padding-top: ; */
    padding: 9rem 2rem 5rem 2rem;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    /* background-color: aqua; */
}
@media (min-width: 800px) {
    .hero-content {
        padding: 12rem 16rem 5rem 16rem;
    }
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    /* margin-top: 100px; */
}
@media (min-width: 768px) {
   .hero-title{ font-size: 2.5rem;}

}

.subtitle {
    font-size: 1.2rem;
    margin-top: 5rem;
}
