.fixed-btn a {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
    padding: 10px 20px;
    background-color: #FFC107;
    border-radius: 50px;
    color: #002147;
    font-weight: 700;
    animation: bounce 2s infinite linear;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}



.fixed-social-icon ul {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 998;
}

.fixed-social-icon ul li {
    position: relative;
    transform: translateX(105px);
    transition: all 0.4s;
}

.fixed-social-icon ul li:hover {
    transform: translateX(0);
}

.fixed-social-icon ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    color: #fff;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    font-weight: 600;
}

.fixed-social-icon ul li a svg {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
}




footer {
    position: relative;
}

footer .main-footer-wrapper {
    padding: 50px 0;
    background-color: #002147;
}

footer .main-footer-wrapper h5.title {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

footer .main-footer-wrapper h5.title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #fff;
    border-radius: 5px;
}

footer .main-footer-wrapper .item-box {
    margin-bottom: 20px;
}

footer .main-footer-wrapper h6 {
    color: #FFC107;
    display: flex;
    gap: 6px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

footer .main-footer-wrapper .contact-box {
    padding-right: 40px;
}

footer .main-footer-wrapper .contact-box a {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.4s;
}

footer .main-footer-wrapper .contact-box a:hover {
    color: #FFC107;
}

footer .main-footer-wrapper .contact-box a.call {
    font-size: 18px;
}

footer .main-footer-wrapper iframe {
    width: 100%;
    border-radius: 5px;
}

footer .main-footer-wrapper .link-box a {
    display: flex;
    gap: 6px;
    align-items: center;
    color: #fff;
    font-size: 14px;
    margin-bottom: 14px;
    transition: all 0.4s;
}

footer .main-footer-wrapper .link-box a:hover {
    color: #FFC107;
}

footer .main-footer-wrapper .social-box a {
    display: flex;

    margin-bottom: 14px;
    text-align: center;
    padding: 10px 20px;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
}

a.facebook {
    background-color: #1877F2;
}

a.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

a.linkedin {
    background: #0077B5
}

a.youtube {
    background: #FF0000
}

footer .main-footer-wrapper .social-box a svg {
    width: 14px;
    height: 14px;
    padding: 6px;
    border-radius: 50%;
    background-color: #fff;
    color: #002147;
}

footer .main-footer-wrapper .social-box a span {
    margin-left: 14px;
    padding-left: 14px;
    display: block;
    border-left: 2px solid #fff;
}

footer .main-footer-wrapper .important-link {
    margin-top: 60px;
    border-top: 2px solid #FFC107;
    padding-top: 30px;
    text-align: center;
}

footer .main-footer-wrapper .important-link li {
    display: inline-block;
}

footer .main-footer-wrapper .important-link li a {
    color: #fff;
    padding: 0 13px;
    font-size: 14px;
    margin-bottom: 6px;
    display: inline-block;
    border-right: 1px solid #fff;
    transition: all 0.4s;
}

footer .main-footer-wrapper .important-link li a:hover {
    color: #FFC107;
}

footer .main-footer-wrapper .important-link li:last-child a {
    border-right: 0;
}

footer .copyright {
    background-color: #030C31;
}

footer .copyright p {
    margin-bottom: 0;
    text-align: center;
    padding: 20px 0;
    color: #fff;
    font-size: 14px;
}

footer .copyright p a {
    color: #FFC107;
    font-weight: 600;
}

@media(max-width:992px) {
    footer .main-footer-wrapper .contact-box {
        padding-right: 0;
    }

}