/* scroll to top */

:root {
    --primary-color: #eb1c24;
    --secondary-color: #0e4f91;
}
.scroll-to-top {
    position: fixed;
    z-index: 98;
    bottom: -60px;
    right: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    color: white;
    background: var(--primary-color);
    cursor: pointer;
    transition: 0.5s;
}

.scroll-to-top:before {
    content: "";
    position: absolute;
    top: -7px;
    right: -7px;
    bottom: -7px;
    left: -7px;
    border-width: 1px;
    border-style: dashed;
    border-radius: inherit;
    border-color: var(--primary-color);
    animation: cspine 20s linear infinite;
}
@keyframes cspine {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.scroll-to-top.top-arrow {
    bottom: 60px;
}

.scroll-to-top:hover {
    background: var(--primary-color);
}

/* end scroll to top */
.footer {
    position: relative;
    padding-top: 80px;
    background-color: #1a1a1a;
}

.footer .container {
    position: relative;
}

.footer p {
    color: #ddd;
}

.footer h5 {
    padding-bottom: 30px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    font-size: 22px;
    line-height: 22px;
    font-family: "Oswald"
}
.footer h5::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 6px;
}
.footer h5::after {
    content: "";
    position: absolute;
    left: 13px;
    bottom: 1px;
    width: 29px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer a {
    color: #ddd;
    text-decoration: none !important;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

.footer ul.social li {
    padding: 3px 0;
}

.footer ul.social li a i {
    margin-right: 5px;
    font-size: 25px;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.footer ul.social li:hover a i {
    font-size: 30px;
    margin-top: -10px;
}

.footer ul.social li a,
.footer ul.quick-links li a {
    color: #ddd;
}

.footer ul.social li a:hover {
    color: #fff;
}

.footer ul.quick-links li {
    padding: 3px 0;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.footer ul.quick-links li:hover {
    padding: 3px 0;
    margin-left: 5px;
    font-weight: 700;
}

.footer ul.quick-links li a:hover {
    color: var(--primary-color);
}

.footer ul.quick-links li i {
    margin-right: 5px;
    color: #ddd;
}
.footer ul.quick-links li:hover i {
    color: var(--primary-color);
}

.footer ul.quick-links li:hover i {
    font-weight: 700;
}

.borderstyle {
    border-top: 1px solid rgb(172 161 161 / 27%);
}

.a_hover:hover {
    color: #fff;
}

/* social link css */
.footer-social-links {
    overflow: hidden;
    float: left;
    padding-inline-start: 0 !important;
}

.footer-social-links li {
    display: inline-block;
    margin-right: 10px;
}

.footer-social-links li a i {
    height: 40px;
    width: 40px;
    border: 1px solid #5a5a5a;
    display: block;
    border-radius: 50%;
    color: #ddd;
    font-size: 14px;
    text-align: center;
    line-height: 38px;
    transition: all 500ms ease;
    background: #202125;
}

.footer-social-links li a:hover i {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

footer a,
footer a:hover,
footer a:active,
footer a:focus {
    transition: all 0.5s ease 0s;
    text-decoration: none;
    outline: none;
    color: #fff !important;
}

.borderstyle p {
    font-size: 14px;
    font-weight: 400;
}

.circle-map {
    position: absolute;
    top: 20%;
    right: 18%;
    z-index: -1;
}

@media (max-width: 767px) {
    .footer h5 {
        margin-bottom: 10px;
    }
}
