:root{
    --bd-color-bg: #67BCA9;
    --bd-hover-bg: #5eab9b;
    --bd-active-bg: #509687;
  }
  
.btn-bd-primary {
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-color-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bd-hover-bg);
    --bs-btn-hover-border-color: var(--bd-hover-bg);
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: var(--bd-active-bg);
    --bs-btn-active-border-color: var(--bd-active-bg);
    --bs-btn-border-radius: 24px;
}

.nav-dark{
    --bs-nav-link-color: #000000;
    --bs-nav-link-hover-color: #666666;

}


.form-signin {
    max-width: 330px;
    padding: 1rem;
}

.form-recovery {
    max-width: 330px;
    padding: 1rem;
}

.form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.form-signin input[type="text"] {
    margin-bottom: -1px;
    border-radius: 0;
}

.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.is-invalid{
    margin-bottom: 0px !important;
}

.card-hero-img {
    padding-top: 60%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.logo{
    max-height: 50px;
}

.nav-link, .btn-modal, .btn-action{
    cursor: pointer;
}

.crop-img{
    width: 100%;
    object-fit: cover;
}

.hero-container{
    padding: 0px 0px 15px 0px;
}

.hero-section{
    width: 100%;
    background-color: #FAFAFA;
    display: flex;
}

.hero-box{

    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-box h1{
    font-size: 32px;
}

.hero-image{
    min-height: 400px;
}


@media screen and (max-width: 1050px) {
    .hero-box h1{
      font-size: 3.05vw;
    }
    .hero-box{
      padding: 4.75vw 4.75vw 7vw 4.75vw;

    }

  }

  @media screen and (max-width: 740px) {
    .hero-box h1{
      font-size: 1.5rem;
    }
    .hero-section{
      flex-direction: column-reverse;
    }
    .hero-box{
      text-align: center;
    }

    .hero-image{
      min-height: 360px;
    }

    .hero-container{
      padding: 0px 0px 15px 0px;
    }
  }

  @media screen and (max-width: 375px) {
    .hero-image{
      min-height: 270px;
    }

  }