.navbar-brand img{
    max-width: 100px;
}
.logos{
    margin: 30px 0 0;
}

/* Form
------------------------------------*/
.formOverlay {
    display:none;
    position:fixed;
    z-index: 99;
    top:0;
    right:0; 
    left:0;
    bottom:0;
    background:rgba(0, 0, 0, 0.7);
}

.popupForm {
    position: absolute;
    z-index: 100;
    width: 312px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 7px;
    padding: 30px;
    margin: 10px 0 0;
}

.popupForm .btnForm{
    font: 400 18px/24px 'Rubik';
    text-transform: uppercase;
    color: #333;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    border: 1px solid #279b37;
    border-radius: 5px;
    padding: 20px 0;
    margin: 0;
    -webkit-transition: all ease .8s;
    transition: all ease .8s;
}

.popupForm .btnForm:hover{
    background: #279b37;
    color: #333333;
}

.closePopup {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    -webkit-transition: background ease-in-out .6s;
    transition: background ease-in-out .6s;
}

.closePopup:hover {
    background: #279b37;
}

.closePopup:before {
    position: absolute;
    height: 1px;
    width: 16px;
    top: 10px;
    left: 2px;
    background: #333;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    content: '';
}

.closePopup:after {
    position: absolute;
    height: 1px;
    width: 16px;
    top: 10px;
    left: 2px;
    background: #333;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    content: '';
}

.popupForm input[type="text"]{
    width: 100%;    
    background: rgba(0, 0, 0, 0);
    color: #555;
    font: 400 20px/26px 'Rubik';
    border: 1px solid transparent;
    border-bottom: 1px solid #279b37;
    outline: none;
    padding: 20px 15px;
    margin: 0 0 10px 0;
}

.popupForm input[type="text"]:hover, .popupForm input[type="text"]:active, .popupForm input[type="text"]:focus{
    border: 1px solid #279b37;
    background: #279b37;
}

.popupForm input[type="text"]:last-of-type{
    margin: 0 0 20px 0;
}

.popupForm ::-webkit-input-placeholder{
    font: 400 18px/26px 'Rubik';
    color: #555;
}
.popupForm ::-moz-placeholder{
    font: 400 18px/26px 'Rubik';
    color: #555;
}/* Firefox 19+ */
.popupForm :-moz-placeholder{
    font: 400 18px/26px 'Rubik';
    color: #555;
}/* Firefox 18- */
.popupForm :-ms-input-placeholder{
    font: 400 18px/26px 'Rubik';
    color: #555;
}