.footer{
    width: 100%;
    padding: 10vh 0vw 10vh 0vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer::before{
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    background-image: url(../images/footer.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(75%) invert(30%);
}

.footer-inner{
    width: 50%;
    position: relative;
    z-index: 1;
}

.footer-inner-top h1{
    color: var(--main-color);
    font-size: 44px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-align: center;
    line-height: 56px;
    letter-spacing: -1.85px;
}

.contact-form{
    margin-top: 4vh;
}

.contact-form input,
.contact-form textarea{
    background: #fafafa;
    border: 1px solid #eeeeee;
    box-sizing: border-box;
    padding: 0px 12px;
    line-height: 48px;
    color: rgba(0, 0, 0, .87);
    font-family: 'Open-Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    outline: none;
    transition: border .3s ease-in;
}

.contact-form input:hover,
.contact-form input:focus{
    border-color: var(--main-color);
}

.contact-form input:nth-child(1){
    width: 100%;
}

.contact-form input:nth-child(2),
.contact-form input:nth-child(3),
.contact-form input:nth-child(4),
.contact-form input:nth-child(5){
    width: 49.5%;
    margin-top: 1vh;
}

.contact-form input:nth-child(3),
.contact-form input:nth-child(5){
    float: right;
}

.contact-form textarea{
    width: 100%;
    margin-top: 1vh;
    padding: 15px 12px;
    line-height: 25px;
}

.btn-container{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1vh;
}

.btn-main{
    background: var(--main-color);
    border: none;
    padding: 0px 32px;
    line-height: 46px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: rgba(255, 255, 255, .87);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background .3s ease-in;
}

.btn-main:hover{
    cursor: pointer;
    background: #101010;
}

.footer-inner hr{
    background: #cccccc;
    color: #cccccc;
    margin-top: 3vh;
}

.footer-inner-bottom h2{
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    line-height: 1.75em;
}

.footer-bottom-split{
    width: 30%;
    float: left;
    margin-top: 1vh;
}

.footer-bottom-split:nth-child(2){
    margin-right: 5%;
}

.footer-bottom-split:nth-child(4){
    margin-left: 5%;
}

#maps{
    width: 30%;
    height: 20vh;
    box-sizing: border-box;
    transition: border .3s ease-in;
}

#maps:hover{
    cursor: pointer;
    border: 1px solid var(--main-color);
}

.ol-attribution.ol-uncollapsible{
    display: none;
}

.footer-bottom-split ul li{
    color: rgba(0, 0, 0, .87);
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75em;
    margin-left: 25px;
    text-indent: -25px;
    transition: color .3s ease-in;
}

.footer-bottom-split:nth-child(2) ul li:hover{
    cursor: pointer;
    color: var(--main-color);
}

.footer-bottom-split:nth-child(2) ul li::before{
    content: '\f3c5';
    color: var(--main-color);
    font-size: 18px;
    font-family: 'Font Awesome 5 Free';
    margin-right: 10px;
}

.footer-bottom-split:nth-child(2) ul li:nth-child(2)::before{
    content: '\f0e0';
}

.footer-bottom-split:nth-child(2) ul li:nth-child(3)::before{
    content: '\f879';   
}

.footer-bottom-split:nth-child(2) ul li:nth-child(4)::before{
    content: '\f1ac';   
}

.footer-bottom-split ul li span{
    float: right;
}

.footer-bottom{
    width: 100%;
    background: var(--main-color);
    padding: 1vh;
    z-index: 1;
    position: absolute;
    bottom: 0;
}

.footer-bottom ul{
    display: flex;
    justify-content: center;
}

.footer-bottom ul li{
    float: left;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.75em;
    padding: 0% 1% 0% 1%;
}

.footer-bottom ul li a{
    position: relative;
}

.footer-bottom ul li a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    top: 100%;
    background-color: white;
    visibility: visible;
    transform: scaleX(0);
    transition: all .3s ease-in-out 0s;
}

.footer-bottom ul li:hover a::before{
    cursor: pointer;
    transform: scaleX(1);
}

.footer-bottom ul li:nth-child(1){
    border: 1px solid #ffffff;
    border-width: 0px 1px 0px 0px;
}

/*Media Queries*/
@media only screen and (max-width: 767px){
    .footer-inner{
        width: 95%;
        margin: auto;
    }

    #maps{
        width: 100%;
    }

    .footer-bottom-split{
        width: 100%;
        float: none;
        margin: 0%;
        margin-top: 1vh;
    }

    .footer-bottom-split:nth-child(3){
        margin: 0%;
        margin-top: 1vh;
    }

    .footer-bottom-split:nth-child(4){
        width: 100%;
        margin-left: 0%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px){

}

@media only screen and (max-width: 280px){

}