html {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
form.default-form > label,input {
    display:flex;
    flex-direction:column;
}
section.container {
    width: 100%;
    padding-right: calc(0 * .5);
    padding-left: calc(0 * .5);
    margin-right: auto;
    margin-left: auto;
}
nav.nav-n {
    flex-wrap: nowrap;
    justify-content: flex-start;
}
ul.nav-b {
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    padding-inline-start: 0px;
    display: flex;
    align-items: center;
}
li.nav-i {
    font-size: 18px;
    display: inline-block;
}
a.nav-l {
    color: #000000;
    display: block;
    text-decoration: none;
    background: none;
    padding: 1rem;
    transition: color .15s 
        ease-in-out, background-color .15s 
        ease-in-out;
}
a.nav-img {
    color: #000000;
    display: block;
    background: none;
    padding-right: 1rem;
}
a.nav-l:hover {
    background-color: #0C1F2E;
    color: #FFFFFF;
}

input {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    appearance: none;
    background-color: #f6fbff;
    background-clip: padding-box;
    border: 1px solid #eaf0f4;
    margin-bottom: .5rem;
    transition: border-color .15s 
        ease-in-out  
}
button.primary {
    display: inline-block;
    padding: 0.75rem 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5rem;
    color: #ffffff;
    background-color: #0C1F2E;
    transition: color .15s 
        ease-in-out, background-color .15s 
        ease-in-out;

    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 0 solid transparent;
}

button.primary:hover {
    background-color: #2a475e;
}

/* Anything higher then Mobile */
@media only screen and (min-width: 992px) {
    section.container {
        max-width: 1200px;
    }
}

/* Mobile Only Hide */
@media only screen and (max-width: 767.98px) {
    section.container {
        max-width: 100%;
    }
}
/* Tablet Only Hide */
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    section.container {
        max-width: 768px;
    }
}
/* Computer Only Hide */
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {

}
/* Large Screens and larger */
@media only screen and (min-width: 1200px) and (max-width: 1919.98px) {
}