:root {
    --orange: #cb553f;
    --grey: #505961;
    --grey-disabled: #f7f7f7;
    --black: #333333;
    --black-2: #555555;
}

@font-face {
    font-family: "Galeb-Bold";
    src: url("fonts/GalebBold.otf") format('opentype');
}

@font-face {
    font-family: "Galeb-Light";
    src: url("fonts/GalebLight.otf") format('opentype');
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    font-size: 13px;
    
}

body {
    font-family: Galeb-Light, sans-serif;
}


@media (min-width: 768px) {
    html {
        font-size: 14px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

@media screen and (max-width:768px) {
    html{
        position: unset;
    }
    body{
        margin-bottom: 0;
    }
    main{
        margin-bottom: 0;
    }
}

main {
    
}

.title {
    color: var(--orange);
    font-size: 20px;
    font-family: Galeb-Bold, sans-serif;
}

.btn-orange {
    background-color: var(--orange);
    font-weight: bold;
    border: none;
    color: white;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 32px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s;
}

    .btn-orange:hover {
        background-color: var(--black);
    }

button:disabled{
    background-color: var(--grey-disabled);
}
button:hover:disabled {
    background-color: var(--grey-disabled);
}

.validate-input {
    position: relative;
}

.wrap-input100 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: 100%;
    height: 40px;
    position: relative;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    margin-bottom: 10px;
}

.container-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.navbar-brandl-white{
    padding-left: 10em;
}
@media screen and (max-width:768px) {
    .navbar-brandl-white{
        padding-left: 2em;
    }
}

form {
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.input100:focus + .focus-input100 {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.focus-input100 {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    pointer-events: none;
    border: 1px solid #cb553f;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s;
}

.input100:focus + .focus-input100 + .label-input100 {
    top: 14px;
    font-size: 13px;
}

.label-input100 {
    font-size: 14px;
    color: #999999;
    line-height: 1.2;
    display: block;
    position: absolute;
    pointer-events: none;
    width: 100%;
    padding-left: 24px;
    left: 0;
    top: 8px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}



.input100 {
    display: block;
    width: 100%;
    height: 40px;
    background: transparent;
    font-size: 14px;
    color: var(--black-2);
    line-height: 1.2;
    padding: 0 16px 0;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    outline: none;
    font-family: sans-serif;
}

    .input100:focus {
        border: 1px solid #cb553f;
    }

.bg-footer-dark {
    background-color: var(--grey);
    color: white;
}

.footer-info {
    height: 100%;
}

.footer ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    text-align: left !important;
}

    .footer ul li {
        padding: 2px 0;
        font-size: 10px;
        font-weight: 500;
        line-height:1.5;
    }

.footer-link {
    text-decoration: none;
    outline: none;
    color: white !important;
}

    .footer-link:hover {
        color: var(--orange) !important;
    }

.footer-img-container{
    width:100%;
    display:flex;
    justify-content: center;
    padding: 2em;
}

.footer-img {
    width: 170px;
    height: auto;
    vertical-align:middle;

}

.footer {
    position: relative;
    bottom: 0;
    /* width: 100%; */
    white-space: nowrap;
    line-height: 60px;
}

@media screen and (max-width:768px){
    .footer {
        position: unset !important;
    }
}