/* #map {
    height: 600px;
    width: 100%;
  } */

.text-logo{
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  color: white;
}

.text-logo small{
  text-transform: uppercase;
  
}


/* Hero style */
.hero-bg {
    position: relative;
    background: url("../img/hero/school_girls.jpg")
        center center/cover no-repeat;

    min-height: 100vh;

    display: flex;
    align-items: center;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 25, 48, 0.72);
}

.hero-bg .container {
    position: relative;
    z-index: 2;
}

.hero-bg h1,
.hero-bg p {
    color: #fff;
}

.hero-bg .btn-get-started {
    margin-top: 15px;
}