.row-ar {
    flex-direction: row-reverse;
    justify-content: end;
    text-align: end;
}

.balls-loading {
    position: relative;
    bottom: 20px;
    width: 80px;
    background: transparent;
    z-index: 9999;
    display: none;
    z-index: 99;
}

.scroll-to-top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #b8967e;
    border: solid 3px #f1f1f1;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    right: 0;
    cursor: pointer;
    z-index: 99999999;
}

.scroll-to-top img {
    width: 20px;
}

.scroll-to-top:hover {
    background-color: #0a1e35;
}

.footer {
    background-color: #f1f1f1;
    width: 100%;
}

.logo-and-name {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 50px;
}

.footer-logo-container {
    width: 100px;
    display: block;
    background: transparent;
}

.footer-logo-container img {
    width: 100%;
    object-fit: contain;
}

.logo-and-name h1 {
    color: #0a1e35;
    font-size: 50px;
    letter-spacing: .015in;
    font-family: 'dragon-serialregular';
    text-transform: uppercase;
    padding-left: 25px;
}

.footer-links {
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-links h3 {
    color: #b8967e;
    font-size: 25px;
    letter-spacing: .015in;
    font-family: 'dragon-serialregular';
    text-transform: capitalize;

}

.footer-links ul {
    padding-top: 20px;
}

.footer-links ul li {
    list-style: none;
    padding: 10px 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: #0a1e35;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 12px;
    text-transform: capitalize;
}

.support h3 {
    margin-right: 10px;
}

a.email {
    text-transform: lowercase !important;
}

.subscribe h1 {
    color: #0a1e35;
    font-size: 50px;
    letter-spacing: .04in;
    font-family: 'dragon-serialregular';
    text-transform: uppercase;
    text-align: left;
    padding-bottom: 10px;
}

.intouch {
    color: #0a1e35;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 15px;
    text-transform: capitalize;
    text-align: left;
    padding-top: 50px;
}

.subscribe-form {
    padding: 30px 0 50px;
    width: 100%;
    display: flex;
}

.subscribe-form input {
    display: block;
    width: 90%;
    height: 40px;
    border: none;
    border-bottom: solid 1px #0a1e35;
    outline: none;
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 18px;
}

.subscribe-form input::placeholder {
    color: #b8967e;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 15px;
    text-transform: capitalize;
}

.submit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #b8967e;
}

.submit-btn img {
    width: 20px;
}

.submit-btn:hover {
    background-color: #f1f1f1;
    border: solid 1px #0a1e35;
}

.submit-btn:hover .submit-icon {
    content: url(../icons/right-blue.png);
}


.footer hr {
    width: 95%;
    margin: auto;
}

.footer small {
    padding: 10px;
    display: block;
    width: fit-content;
    margin: auto;
    color: #0a1e35;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 12px;
    text-transform: capitalize;
}

@media screen and (max-width: 768px) {
    .footer-links {
        flex-wrap: wrap;
    }

    .footer-logo-container {
        width: 75px;
        height: 75px;
    }

    .logo-and-name {
        padding: 35px;
    }

    .logo-and-name h1 {
        font-size: 35px;
    }

    .footer-links h3 {
        font-size: 18px;
    }

    .footer-links ul li a {
        font-size: 10px;
    }

    .subscribe {
        flex-basis: 100%;
        margin-top: 20px;
    }

    .subscribe h1 {
        font-size: 35px;
    }

    .intouch {
        font-size: 12px;
        padding-top: 35px;
    }

    .subscribe-form input {
        height: 30px;
        font-size: 14px;
    }

    .submit-btn {
        width: 30px;
        height: 30px;
    }

    .footer small {
        font-size: 10px;
    }

}

@media screen and (max-width: 425px) {

    .footer-links {
        padding: 0 20px;
    }

    .logo-and-name h1 {
        font-size: 30px;
    }

    .subscribe h1 {
        font-size: 30px;
        padding: 10px 0;
    }

    .subscribe-form {
        padding: 30px 0 50px;
    }

    .footer-links ul {
        padding: 0 0 20px;
    }
}