footer {
    background: #F8F6EF;
    float: left;
    width: 100%;
    color: #FFF;
}

footer .footer-newsletter {
    margin-top: 100px;
    background: #133C85;
    padding: 30px;
    border-radius: 10px;
}

footer .footer-newsletter h3 {
    font-size: 34px;
    line-height: 46px;
}

footer .footer-newsletter p {
    font-size: 16px;
    line-height: 24px;
}

footer .footer-newsletter h3,
footer .footer-newsletter p,
footer p a {
    color: #FFF;
}

footer p a:hover {
    color: #E56D0B;
}

footer p {
    color: #FFF;
    font-size: 13px;
    line-height: 20px;
    font-weight: 300;
}

footer .footer-newsletter .footer-newsletter-form {
    display: flex;
    background: #FFF;
    border-radius: 7px;
    overflow: hidden;
}

footer .footer-newsletter .footer-newsletter-form .form-control {
    border: none !important;
    line-height: 50px;
    height: 50px;
    font-size: 14px;
}

footer .footer-newsletter .footer-newsletter-form .submit-btn {
    border: none !important;
    background: #FFF;
    font-size: 14px;
    font-weight: 600;
    padding: 0px 20px;
    color: #194B98;
    line-height: 50px;
	cursor: pointer;
	text-align: center;
	max-width: 120px;
    height: 50px;
    transition: all 0.3s ease;
}

footer .footer-newsletter .footer-newsletter-form .submit-btn:hover {
    border: none !important;
    background: #E56D0B;
    color: #FFF;
    transition: all 0.3s ease;
}

footer h4 {
    margin-top: 40px;
    color: #FFF;
    margin-bottom: 10px;
}

footer ul.footer-links {
    margin: 0;
    padding: 0;
}

footer ul.footer-links li {
    list-style: none;
}

footer ul.footer-links li a {
    display: block;
    padding: 5px 5px 5px 0px;
    position: relative;
    font-size: 13px;
    font-weight: 300;
    color: #FFF;
    transition: all 0.3s ease;
}

footer ul.footer-links li.active a {
    color: #51cf02;
    padding: 5px 5px 5px 20px;
    transition: all 0.3s ease;
}

footer ul.footer-links li a:before {
    position: absolute;
    left: -5px;
    top: 5px;
    opacity: 0;
    content: "\f105";
    font-family: FontAwesome;
    color: #FFF;
    transition: all 0.3s ease;
}

footer ul.footer-links li a:hover:before {
    opacity: 1;
    left: 5px;
    transition: all 0.3s ease;
}

footer ul.footer-links li.active a:before {
    opacity: 1;
    left: 5px;
    color: #51cf02;
    transition: all 0.3s ease;
}

footer ul.footer-links li a:hover {
    padding: 5px 5px 5px 20px;
    transition: all 0.3s ease;
}

footer ul.footer-socials {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

footer ul.footer-socials li {
    list-style: none;
    margin: 0px 3px;
}

footer ul.footer-socials li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 15px;
    background: #FFF;
    color: #194B98;
}

footer ul.footer-socials li a:hover {
    background: #D31217;
    color: #FFF;
}

footer .footer-bottom {
    margin-top: 50px;
    padding: 20px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

footer .footer-bottom p {
    color: #FFF;
    margin-bottom: 0px;
}

footer .footer-bottom p a {
    font-weight: 600;
    color: #FFF;
}

@media (max-width:992px) {

    footer .footer-newsletter p.mb-0 {
        margin-bottom: 20px !important;
    }

    footer .footer-bottom p,
    footer .footer-bottom p.text-end {
        text-align: center !important;
    }
}

@media (max-width: 760px) {
    footer .footer-newsletter {
        margin-top: 50px;
    }


    footer .footer-newsletter h3 {
        font-size: 24px;
        line-height: 36px;
    }

    footer .footer-newsletter h3,
    footer .footer-newsletter p {
        text-align: center;
    }
}