  :root {
    --footer_blue: #003366;
    --footer_gold: #FFCC00;
    --footer-gradient_gold_1: linear-gradient(to right, #FCE701, #FFCC00);
}

.main_footer {
    background-color: var(--footer_blue);
    color: white;
    padding: 60px 0 180px 0;
}

.main_footer .container-fluid {
    width: 96%;
    max-width: 1700px;
    margin: 0 auto;
}

.footer-title {
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    margin: 60px 0 14px 0;
    font-weight: 600;
}

.footer-logo img {
    width: 100%;
    max-width: 250px;
}

.footer-social a {
    display: inline-block;
    font-size: 26px;
    color: white;
    text-decoration: none;
    margin: 4px 12px;
    transition: 0.2s;
}

.footer-social a:hover,
.footer-social a:focus {
    color: var(--footer_gold);
}

.footer-search-container {
    display: flex;
}

.footer-search-container button {
    height: 70px;
    background-color: var(--footer_blue);
    background-image: none !important;
    color: white;
    box-shadow: none;
    padding: 0 20px;
    margin-left: -5px;
    border: 1px solid white;
    border-left: none;
    border-radius: 0px !important;
    font-size: 16px;
    cursor: pointer;
}

.footer-search {
    background-color: var(--footer_blue);
    color: white;
    padding: 20px;
    width: 70%;
    max-width: 380px;
    height: 70px;
    border: 1px solid white;
    border-right: none;
    border-radius: 0 !important;
}

.footer-search:focus {
    outline: none;
    color: var(--footer_gold);
}

.footer-search::placeholder {
    font-size: 16px;
    color: white;
    opacity: 1;
    line-height: 1;
}

.footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    line-height: 2.2;
    transition: 0.2s;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--footer_gold);
}

.footer-az a {
    display: inline-block;
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    padding-right: 20px;
    line-height: 2.2;
    transition: 0.2s;
}

.footer-az a:hover,
.footer-az a:focus {
    color: var(--footer_gold);
}

.footer-address a {
    display: block;
    color: white;
    text-transform: capitalize;
    text-decoration: none;
    margin-bottom: 20px;
    transition: 0.2s;
}

.footer-address a:hover,
.footer-address a:focus {
    color: var(--footer_gold);
}

.footer-info {
    font-size: 20px;
    text-align: center;
    margin-bottom: 150px;
}

.footer-info a {
    color: var(--footer_gold);
}

.footer-copyright, .footer-copyright a {
  color: white;
  margin-top: 50px;
  text-decoration: none !important;
}

.footer-btn {
    position: relative;
    display: inline-block;
    background: var(--footer-gradient_gold_1);
    color: var(--footer_blue);
    padding: 15px 70px 15px 15px;
    text-transform: uppercase;
    text-decoration: none !important;
}

.footer-btn::after {
    position: absolute;
    background-color: var(--footer_gold);
    content: '\2192';
    font-size: 1.2rem;
    padding: 10px 15px 14px 15px;
    right: 0;
    top: 0;
}

.footer-btn:hover,
.footer-btn:focus,
.footer-btn:visited {
    background: var(--footer_gold);
}

.footer-border-bottom {
    display: block;
    background: var(--footer-gradient_gold_1);
    width: 100%;
    height: 1.5rem;
}

@media (max-width: 991.5px) {
    .main_footer {
        padding: 60px 0 60px 0;
    }

    .footer-info {
        text-align: left;
        margin-bottom: 0;
    }

    .footer-title {
        margin-top: 50px;
    }

    .footer-logo,
    .footer-social {
        display: block;
        margin-top: 50px;
    }

    .footer-search-container {
        margin-top: 50px;
    }

    .footer-search-container button,
    .footer-search {
        padding: 10px 20px;
    }

    .footer-search {
        width: 200px;
    }
}