/* ================================
    Forms
================================ */
.bm-form {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.bm-form .col-1 {grid-column: span 1;}
.bm-form .col-2 {grid-column: span 2;}
.bm-form .col-3 {grid-column: span 3;}
.bm-form .col-4 {grid-column: span 4;}
.bm-form .col-5 {grid-column: span 5;}
.bm-form .col-6 {grid-column: span 6;}
.bm-form .col-7 {grid-column: span 7;}
.bm-form .col-8 {grid-column: span 8;}
.bm-form .col-9 {grid-column: span 9;}
.bm-form .col-10 {grid-column: span 10;}
.bm-form .col-11 {grid-column: span 11;}
.bm-form .col-12 {grid-column: span 12;}

:focus {
    outline: none;
}

::placeholder {
    color: #000;
}

::-ms-input-placeholder {
    color: #fff;
}

input[type=week],
input[type=url],
input[type=time],
input[type=date],
input[type=datetime-local],
input[type=password],
input[type=search],
input[type=number],
input[type=color],
input[type=month],
input[type=text],
input[type=email],
input[type=tel] {
    width: 100%;
    color: #fff;
    height: 40px;
    padding: 0 20px;
    border: unset;
    background: #f6f6f6;
    font-family: "", sans-serif;
}

select {
    width: 100%;
    color: #fff;
    height: 40px;
    padding: 0 20px;
    border: unset;
    background: #f6f6f6;
    font-family: "", sans-serif;
}

textarea {
    width: 100%;
    color: #fff;
    height: 80px;
    padding: 20px;
    border: unset;
    background: #f6f6f6;
    resize: vertical;
    font-family: "", sans-serif;
}

button {
    font-size: 18px;
    background-color: blue;
    color: #fff;
    line-height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    border: unset;
    cursor: pointer;
    font-family: "", sans-serif;
    transition: background-color .2s ease;
}

button:hover {
    background-color: red;
}

/* ================================
    @media's
================================ */
@media screen and (max-width: 1600px) {

}

@media screen and (max-width: 1400px) {

}

@media screen and (max-width: 1199px) {

}

@media screen and (max-width: 991px) {

}

@media screen and (max-width: 767px) {

}