html, body {
    min-height: 100vh;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.z-index-1 {
    z-index: 1;
}

.bold {
    font-weight: bold;
}

.input-group-text {
    text-align: center;
    height: 100%;
    padding-left: auto;
}

.rounded-left {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.rounded-right {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.section-img {
    max-height: 500px;
    width: auto;
    border-radius: 1rem;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(66, 68, 90, 1);
    -moz-box-shadow: 2px 2px 5px 0px rgba(66, 68, 90, 1);
    box-shadow: 2px 2px 5px 0px rgba(66, 68, 90, 1);
}

.icon {
    max-width: 2rem;
}

.icon-eye {
    width: 1.4rem;
    user-select: none;
}

.form-check {
    user-select: none;
}

.text-highlighted {
    color: #636363;
    font-weight: 700;
}

.height-100 {
    height: 100%;
}

#header {
    margin: auto;
    width: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0.5rem;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(66, 68, 90, 1);
    -moz-box-shadow: 2px 2px 5px 0px rgba(66, 68, 90, 1);
    box-shadow: 2px 2px 5px 0px rgba(66, 68, 90, 1);
}

.main-section {
    text-align: center;
    height: 85vh
}

.main-section-bg-image {
    height: 85vh;
    background-size: cover;
    background-image: url('./images/Background_logo1.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.main-section h1 {
    font-size: 2rem;
}

.lead {
    color: black;
}

/*Navbar */
#navbarNav {
    overflow: hidden;
    transition: height 200ms;
}

.navbar-brand {
    color: black;
}

.nav-link {
    color: black;
}

.nav-link:hover {
    color: #52616B;
}

.menu-link {
    text-decoration: none;
    background: none;
    display: block;
    border: 0;
    color: black;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.menu-link:hover {
    color: #52616B;
}

/*Navbar button*/
.navbar-toggler,
.navbar-toggler:hover,
.navbar-toggler:active,
.navbar-toggler:visited,
.navbar-toggler:link {
    outline-color: #52616B;
    outline-style: none;
    padding: 1rem;
    border-style: none;
}

#nav-line-1,
#nav-line-2 {
    width: 30px;
    height: 2px;
    background-color: rgb(0, 0, 0);
    margin: 3px 0;
    transition: 0.2s;
}

.navbar-btn {
    background-color: #5A5A5A;
    color: white;
    height: 100%;
}

.navbar-btn:hover {
    background-color: #3D3D3D;
    color: white;
}

.btn-option {
    background-color: #5A5A5A;
    color: white;
    height: 100%;
}

.btn-option:hover {
    background-color: #3D3D3D;
    color: white;
}

.animation-left {
    -webkit-transform: rotate(-45deg) translate(0px, 0px);
    transform: rotate(-45deg) translate(-2px, 2px);
}

.animation-right {
    -webkit-transform: rotate(45deg) translate(0px, 0px);
    transform: rotate(45deg) translate(-2px, -2px);
}

.hr-text {
    display: flex;
    flex-direction: row;
}

.hr-text:before,
.hr-text:after {
    color: rgba(128, 128, 128, 0.5);
    content: "";
    flex: 1 1;
    border-bottom: 1px solid;
    margin: auto;
}

.hr-text:before {
    margin-right: 1rem;
}

.hr-text:after {
    margin-left: 1rem;
}

.site-footer {
    width: 100%;
    position: fixed;
    bottom: 0;
 }

 #filterButton { 
    height: 100%;
 }

@media only screen and (max-width: 1200px) {
    #header {
        width: 50%;
    }
}

@media only screen and (max-width: 991px) {
    .navbar-btn {
        text-align: left;
        width: 100%;
        background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
        color: black;
    }

    .navbar-btn:hover  {
        color: #52616B;
    }
}

@media only screen and (max-width: 767px) {
    #header {
        width: 60%;
        background-color: rgba(255, 255, 255, 0.9);
    }
    #filterButton { 
        height: 3rem;
        width: 40vw;
     }
    
}

@media only screen and (max-width: 576px) {
    #header {
        width: 80%;
    }

    .first-section h1 {
        font-size: 1.6rem;
    }
    .first-section {
        height: 70vh
    }
    
    .first-section-bg-image {
        height: 70vh;
    }
}
