.footer-wrap {
    border-bottom: 1px solid rgba(10, 3, 29, 0.07);
    padding-bottom: 16px;
    padding-top: 32px;
    margin-top: 32px;
}

.footer-area {
    z-index: 1;
    border-bottom: 5px solid #0575BC;
    background-color: #153165;
}

.footer-area .footer-shape {
    bottom: 100%;
    z-index: -1;
}

.footer-area.footer-margin {
    margin-top: 200px;
}

.footer-area {
    border-bottom: unset;
}

.footer-area .single-widget .footer-title h4 {
    color: #fff;
}

.footer-area .contact-info .contact-info-details h5 {
    color: #fff;
}


.footer-area .contact-info .contact-info-details h3 {
    color: #fff;
}

.footer-area .footer-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.single-widget {
    margin-bottom: 30px;
}

.single-widget .footer-title h4 {
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding-bottom: 17px;
    margin-bottom: 27px;
}

.single-widget .footer-title h4::before {
    width: 30px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #0575BC;
    content: "";
}

.single-widget .footer-title h4::after {
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    bottom: -2px;
    background: #0575BC;
    content: "";
    -webkit-animation: foot 2s linear infinite alternate;
    animation: foot 2s linear infinite alternate;
}

.single-widget .footer-logo p {
    line-height: 30px;
    font-weight: 600;
}

.single-widget .footer-logo a {
    display: inline-block;
    margin-top: 40px;
}

.single-widget .footer-link ul li {
    margin-bottom: 24px;
}

.single-widget .footer-link ul li:last-child {
    margin-bottom: 0;
}

.single-widget .footer-link ul li a {
    font-weight: 600;
    text-decoration: underline;
    display: inline-block;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    -webkit-transition: all .5s;
    transition: all .5s;
    color: #819eb5;
}

.single-widget .footer-link ul li a:hover {
    -webkit-text-decoration-color: #0575BC;
    text-decoration-color: #0575BC;
    color: #0575BC;
}

.single-widget .footer-link ul.useful-2 {
    padding-right: 40px;
}

.single-widget .footer-address h3 {
    font-weight: 500;
    font-size: 18px;
    color: #b5dbfa;
    line-height: 30px;
}

.contact-info .contact-info-details h5 {
    font-weight: 500;
    font-size: 14px;
}

.contact-info .contact-info-details h2 {
    font-weight: 500;
    font-size: 14px;
}

.contact-info .contact-info-details a {
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #0575BC;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.contact-info.menu-contact-info .contact-info-details h5 {
    color: #fff;
}

.contact-info.menu-contact-info .contact-info-details h2 {
    color: #fff;
}


@-webkit-keyframes foot {
    100% {
        -webkit-transform: translateX(calc(30px - 100%));
        transform: translateX(calc(30px - 100%));
    }
}

@keyframes foot {
    100% {
        -webkit-transform: translateX(calc(30px - 100%));
        transform: translateX(calc(30px - 100%));
    }
}

.copy-social li {
    display: inline-block;
    margin-right: 26px;
}

.copy-social li:last-child {
    margin-right: 0;
}

.copy-social li a {
    display: block;
    color: #A7ADB9;
    font-size: 16px;
    -webkit-transition: .4s;
    transition: .4s;
}

.copy-social li a:hover {
    color: #0575BC;
}

.copy-area {
    background: #161029;
}

.copy-text p {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.copy-text p a {
    color: #0575BC;
}



.fixed-bar {
    position: fixed;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.fixed-bar .bar-item {
    margin: 5px 2px;
    background-color: #007bff;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.fixed-bar .bar-item:hover {
    background-color: #0056b3;
}

.fixed-bar .bar-item .tooltip {
    z-index: 100;
    display: none;
    position: absolute;
    right: 50px;
    color: white;
    background-color: #007bff;
    margin-right: 8px;
    padding: 8px;
    border-radius: 5px;
    white-space: nowrap;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    opacity: 1;
}

.fixed-bar .bar-item .tooltip img {
    width: 100px;
    height: 100px;
    max-width: 100px;
    border-radius: 5px;
}

.fixed-bar .bar-item:hover .tooltip {
    display: block;
}