.open-button {
    color: #fff;
    background-color: #6f42c1;
    border-color: #6f42c1;
    border-radius: 10px;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    right: 30px;
    top: 20px;
    font-size: medium;
    font-weight: 600;
    width: 160px;
}

.open-button:hover {
    background-color: #9206d8
}

.bg-holder {
    width: 50%;
}

.form-popup {
    display: none;
    position: fixed;
    top: 20px;
    left: 15px;
    border: 3px solid #f1f1f1;
    z-index: 9;

}

.form-container {
    max-width: 450px;
    padding: 10px;
    background-color: #fff;
}

.form-container input[type=text],
.form-container input[type=password] {
    width: 100%;
    padding: 15px;
    background-color: #f1f1f1;
    margin: 5px 0 22px 0;
    border: none;
}

.form-control.form-control-sm {
    background-color: #f1f1f1;
}

.form-container input[type=text]:focus
.form-container input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

.form-container .btn {
    background-color: #04aa6d;
    color: #fff;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    opacity: 0.8;
}

.navbar a {
    font-size: 20px; /* or any other size you prefer */
  }

h1 {
    color: #234e92;
}

.form-container .btn:hover, .open button:hover {
    opacity: 1;
}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .bg-holder{
        width: 100%;
        min-height: 100%;
    }
    .locationMap{
        width:400px;
        height:300px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .bg-holder{
        width: 100%;
        min-height: 100%;
    }
     .locationMap{
        width:400px;
        height:300px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .bg-holder{
        width: 100%;
        min-height: 100%;
    }
     .locationMap{
        width:400px;
        height:300px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .bg-holder{
        width: 100%;
        min-height: 72%;
    }
     .locationMap{
        width:450px;
        height:300px;
    }
}