.footer {
    float:left;
    width:100%;
    margin-top:30px;
}
.top-footer {
    float:left;
    width: 100%;
    background: #002E99;
    padding:20px;
    box-sizing:border-box;
}
.social-icons {
    display:flex;
    gap:10px;
}
.social-icons a {
    display: inline-block;
}
.top-footer-info {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-links {
    float:left;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin:30px 0px;
}
.footer-links .footer-link {
    font-size:20px;
    font-weight: 700;
    text-transform: uppercase;
    color:#fff;
}
.footer-links .footer-link:hover {
    color:#EB1426;
}
.red-footer {
    float:left;
    width:100%;
    background: #004DFF;
    padding:15px 0px;
    box-sizing:border-box;
}
.red-footer-links {
    float:left;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.red-footer-links .r-link {
    font-size:16px;
    font-weight: 700;
    color:#fff;
    text-transform: uppercase;
}
.red-footer-links .r-link:hover {
    text-decoration: underline;
}
.copy-right-section {
    float:left;
    width:100%;
    background: #002E99;
    padding:15px 0px;
    box-sizing:border-box;
}
.flex-position {
    float:left;
    width:100%;
    display:flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.flex-position .info {
    color:#fff;
    font-size:12px;
}
.soc-icon {
    width:30px;
    height: 30px;
}
.soc-icon img {
    width:100%;
}
.scroll-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  background: #e30613;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 9999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.scroll-to-top:hover {
  background: #c5000f;
  transform: translateY(-3px);
}
