body {
    color: #ffffff;
    /* color: #444444; */
    font-weight: 400;
    /* background: #ffffff; */
    background: #121212;
    font-family: 'Barlow', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
    /* color: #202C45; */
}

a {
    color: #21130d;
    transition: .1s;
}

a:hover,
a:active,
a:focus {
    color: #E81C2E;
    outline: none;
    text-decoration: none;
}

.btn.btn-custom {
    padding: 10px 30px 12px 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background: #E81C2E;
    border: none;
    border-radius: 60px;
    box-shadow: inset 0 0 0 0 #202C45;
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
}

.btn.btn-custom:hover {
    color: #E81C2E;
    background: #202C45;
    box-shadow: inset 200px 0 0 0 #202C45;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
}


#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #E81C2E;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* DropDown Menu */
/* 🔻 Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-button {
    background-color: #E81C2E;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 180px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    z-index: 999;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #E81C2E;
    color: white;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* 🔼 Back to Top Button */
.back-to-top {
    position: fixed;
    display: none;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: 0.5s;
    background: #E81C2E;
    border-radius: 44px;
    z-index: 999;
}

.back-to-top i {
    color: #ffffff;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #202C45;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .dropdown-button {
        width: 100%;
        font-size: 14px;
        padding: 8px 15px;
    }

    .dropdown-menu {
        position: absolute;
        /* Prevent overflow cut-off on small screens */
        /* width: 100%; */
        box-shadow: none;
        border-radius: 0;
    }

    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 14px;
        background-color: #fff;
        /* width: 100%; */
        font-size: 0.8rem;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
        /* Disable hover on mobile */
    }

    .dropdown.active .dropdown-menu {
        display: block;
        /* Trigger via JS for mobile (if used) */
    }

    .dropdown-button:focus,
    .dropdown-button:active {
        outline: none;
        box-shadow: none;
        transform: none;
    }


    .back-to-top {
        width: 36px;
        height: 36px;
        font-size: 18px;
        bottom: 10px;
        right: 10px;
    }

    .back-to-top i {
        padding-top: 9px;
    }
}



/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    background: #21130d;
}

.nav-bar.nav-sticky {
    position: relative;
    width: 100%;
    top: 50px;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}

.nav-bar .navbar {
    padding: 20px 0;
    background: #21130d !important;
    transition: 0.1s;
}

.nav-bar.nav-sticky .navbar {
    padding: 5px 0;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 15px 20px;
    transition: 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #E81C2E;
}

.nav-bar .dropdown-menu {
    margin-top: 1px;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn.btn-custom {
    color: #ffffff;
    background: #ffffff;
    box-shadow: inset 0 0 0 0 #E81C2E;
    transition: all 0.3s ease-in-out;
}

.nav-bar .btn:hover {
    color: #ffffff;
    background: #E81C2E;
    box-shadow: inset 200px 0 0 0 #E81C2E;
}

/* 💻 Desktop only */
@media (min-width: 992px) {
    .nav-bar .navbar-brand {
        display: none;
    }
}

/* 📱 Mobile Styling */
@media (max-width: 991.98px) {

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        padding: 10px 15px;
        font-size: 14px;
    }

    .nav-bar .dropdown-menu {
        box-shadow: none;
        background-color: #21130d;
    }

    .nav-bar .btn {
        display: none;
    }

    .nav-bar .navbar {
        padding: 10px;
    }

    .navbar-collapse {
        background: #21130d;
    }

    .navbar-toggler {
        border: none;
        background-color: transparent;
        outline: none;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28 255, 255, 255, 1 %29)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/ %3E%3C/svg%3E");
    }
}



/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 992px;
    padding: 0 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h3 {
    color: #E81C2E;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.carousel .carousel-text h1 {
    color: #ffffff;
    font-size: 90px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.carousel .carousel-text p {
    max-width: 500px;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 40px;
}

.carousel .btn.btn-custom {
    padding: 20px 45px 22px 45px;
    color: #ffffff;
}

.carousel .btn.btn-custom:hover {
    color: #E81C2E;
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 50px;
    top: calc(50% - 25px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 50px;
    background: rgba(256, 256, 256, .2);
    font-size: 22px;
    transition: .1s;
}

.carousel .owl-nav .owl-prev {
    margin-left: 30px;
}

.carousel .owl-nav .owl-next {
    margin-right: 30px;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #E81C2E;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@media (max-width: 991.98px) {
    .carousel .carousel-text h3 {
        margin-bottom: 5px;
    }

    .carousel .carousel-text h1 {
        font-size: 60px;
    }

    .carousel .carousel-text p {
        font-size: 16px;
    }

    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-text h3 {
        font-size: 18px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .carousel .carousel-text h1 {
        font-size: 45px;
    }

    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h3 {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .carousel .carousel-text h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .carousel .carousel-text p {
        margin-bottom: 25px;
    }

    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}

/* 👇 Make carousel-text more adaptive on all screens */
@media (max-width: 991.98px) {
    .carousel .carousel-text {
        padding: 0 10px;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-text h1 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .carousel .carousel-text p {
        font-size: 14px;
        padding: 0 10px;
    }

    .carousel .carousel-text {
        align-items: center;
        text-align: center;
    }

    .carousel .owl-nav {
        height: auto;
        top: auto;
        bottom: 10px;
        justify-content: center;
        gap: 20px;
    }

    .carousel .owl-nav .owl-prev,
    .carousel .owl-nav .owl-next {
        margin: 0;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-item {
        min-height: 300px;
    }

    .carousel .carousel-img {
        min-height: 300px;
    }

    .carousel .carousel-text h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .carousel .carousel-text h3 {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .carousel .carousel-text p {
        font-size: 13px;
    }

    .carousel .carousel-text .btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}


.car-categories {
    padding: 20px;
    margin-top: 100px;
}

.category {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    align-items: center;
}

.text {
    text-align: center;
}

.text strong {
    font-weight: bold;
    font-size: 1.5rem;
    /* color: #000; */
    color: #ffffff;
}

.car-categories .contact-btn {
    background-color: #E81C2E;
    color: #fff;
    padding: 15px 50px;
    border: none;
    margin-top: 35px;
    margin-bottom: 60px;
}

hr {
    width: 90%;
    background-color: #000;
    margin-bottom: 70px;
}



.after-hr {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 70px;
}

.after-hr h2 {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    line-height: 3rem;
}




.black-section {
    display: flex;
    justify-content: space-evenly;
    background-color: #21130d;
    align-items: center;
    padding: 30px;
    margin-bottom: 10px;
    overflow: auto;
}

.block {
    padding: 1rem;
}

.black-section h3 {
    color: #fff;
}

.block img {
    /* width: 400%;
    height: 250px; */
    margin-bottom: 20px;
}

.block h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

.block p {
    color: #ccc;
}

@media (max-width: 991.98px) {

    .category,
    .after-hr,
    .black-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .car-categories {
        padding: 10px;
        margin-top: 60px;
    }

    .car-categories .contact-btn {
        padding: 12px 30px;
        font-size: 14px;
        margin-top: 25px;
        margin-bottom: 40px;
    }

    .after-hr h2 {
        font-size: 20px;
        line-height: 2.2rem;
        padding: 0 10px;
    }

    .block {
        padding: 1rem 0.5rem;
    }

    .block img {
        width: 100%;
        height: auto;
    }

    .block h3 {
        font-size: 1.25rem;
    }

    .block p {
        font-size: 14px;
    }

    hr {
        width: 95%;
        margin-bottom: 50px;
    }
}

@media (max-width: 575.98px) {
    .text strong {
        font-size: 1.2rem;
    }

    .black-section {
        padding: 20px 10px;
    }

    .car-categories .contact-btn {
        width: 100%;
        padding: 10px;
        font-size: 13px;
    }

    .after-hr h2 {
        font-size: 18px;
    }
}



/*******************************/
/********** About CSS **********/
/*******************************/
/* .about {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 30px;
}

.about .about-content {
    margin-bottom: 30px;
}

.about .about-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 25px;
}

.about .about-content ul li {
    margin-bottom: 5px;
}

.about .about-content ul li i {
    margin-right: 8px;
    color: #E81C2E;
} */

/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #E81C2E;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
    border-color: #E81C2E;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #202C45;
    background: none;
    border-radius: 0;
    border: none;
    transition: .1s;
}

.sidebar .search-widget .btn:hover {
    color: #E81C2E;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills {
    border-radius: 5px;
    overflow: hidden;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #202C45;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #E81C2E;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px;
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0;
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
    font-weight: 500;
    letter-spacing: 1px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #E81C2E;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    text-align: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #202C45;
    border: 1px solid #202C45;
    border-radius: 5px;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: #E81C2E;
    border-color: #E81C2E;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    border-radius: 5px;
    transition: .1s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


.last-section {
    margin-bottom: 100px;
}

.find-map-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0px;
    flex-wrap: wrap;
    padding: 20px;
}

.find-map-container>div {
    flex: 1 1 300px;
    max-width: 600px;
}

.map-responsive {
    aspect-ratio: 4 / 3;
    /* Controls height-to-width ratio */
    width: 100%;
    max-width: 500px;
    /* Optional: controls how wide it gets */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.map-responsive iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


@media (max-width: 768px) {
    .find-map-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .map-responsive {
        width: 90%;
        aspect-ratio: 16 / 9;
        margin-top: 20px;
    }
}



/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 15px;
    padding-top: 10px;
    background: #21130d;
}

.footer .footer-contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer .footer-contact .footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer .container .row {
    margin-left: 3px;
    margin-right: 3px;
    justify-content: center;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #E81C2E;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    width: 100%;
}

.footer .footer-link a {
    display: flex;
    margin-bottom: 5px;
    color: #ffffff;
    transition: .1s;
}

.footer .container .row {
    max-width: 100vw;
}

.footer .footer-link {
    align-items: center;
    text-align: left;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.footer .footer-link a::before {
    position: relative;
    /* content: "\f105"; */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 3px;
}

.footer .footer-link a:hover {
    color: #E81C2E;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 5px;
    display: flex;
}

.footer .footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: #21130d;
    background: #ffffff;
    border: 1px solid;
    border-radius: 40px;
    margin-right: 5px;
    transition: .5s;
}

.footer .footer-social a:hover {
    color: #ffffff;
    background: #E81C2E;
}

/* 
.footer .footer-newsletter form {
    position: relative;
    width: 50%;
}

.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 45px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

.footer .footer-newsletter label {
    margin-top: 5px;
    color: #777777;
    font-size: 14px;
    letter-spacing: 2px;
}

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    color: #202C45;
    background: #ffffff;
    box-shadow: inset 0 0 0 0 #E81C2E;
}

.footer .footer-newsletter .btn:hover {
    color: #ffffff;
    background: #E81C2E;
    box-shadow: inset 200px 0 0 0 #E81C2E;
} */

.footer .copyright {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 15px;
    border: solid 3px #E81C2E;
    border-radius: 10px;
    width: 100vw;
    background-color: rgba(10, 10, 10, 50);
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright p a {
    color: #E81C2E;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .footer .footer-contact {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .footer .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer .footer-link {
        padding: 0 1rem;
        text-align: center;
    }

    .footer .footer-link a {
        justify-content: center;
    }

    .footer .footer-contact p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer .footer-contact h2,
    .footer .footer-link h2,
    .footer .footer-newsletter h2 {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .footer .footer-social a {
        margin: 5px;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 10px 10px 20px;
    }

    .footer .footer-contact,
    .footer .footer-link,
    .footer .footer-newsletter {
        padding: 0 10px;
        text-align: center;
    }

    .footer .footer-contact p,
    .footer .footer-link a {
        font-size: 13px;
    }

    .footer .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .footer .copyright {
        font-size: 13px;
        padding-top: 10px;
        width: 100%;
        border-width: 2px;
        border-radius: 6px;
    }

    .footer .copyright p {
        padding: 0 5px;
        word-break: break-word;
    }
}