/* Footer Section  */
/**{*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  box-sizing: border-box;*/
/*}*/


footer {
    width: 100%;
    position: absolute;
    /* Two color options - just comment one and leave the other one*/
    /* background: linear-gradient(to right, #00093c, #2d0b00); */
    background: linear-gradient(to right, #1c0644, #a52a01);
    color: #ffffff;
    padding: 30px 0 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    font-size: 13px;
    line-height: 20px;
    margin-top: 30px;
  }
  .footer-row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .footer-col {
    flex-basis: 24%;
    padding: 10px;
  }
  
  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    flex-basis: 15%;
  }
  .footer-logo {
    width: 80px;
    margin-bottom: 15px;
  }
  .footer-col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    font-size: 1rem;
  }
  .footer-row p {
    padding: 0;
    font-size: 14px;
    color: #fff;
  }
  .footer-contact-us a{
    font-size: 14px;
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
    text-decoration: none;
    color: #fff;
  }
  .footer-email {
      padding-left: 30%;
  }
  /*.footer-email-2{*/
  /*    padding-left: 20px;*/
  /*}*/
  .footer-li {
    list-style: none;
    margin-bottom: 12px;
  }
  .footer-li a {
    text-decoration: none;
    color: #fff;
  }
  .footer-social-icons .fa-brands {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
  }
  .footer-hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
  }
  .footer-copyright {
    text-align: center;
    color: #fff;
  }
  
  .footer-underline {
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
  }
  .footer-underline span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
  }
  .google-map{
    width: 350px;
    height: 150px;
  }
  
  /* For hr animation */
  
  @keyframes moving {
    0% {
      left: -20px;
    }
    100% {
      left: 100%;
    }
  }
  
  /* Footer Section Adjustment for Mobile Screen */
  
  @media (max-width: 1130px) {
    footer {
      bottom: unset;
    }
    .footer-col {
      flex-basis: 100%;
    }
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
      flex-basis: 100%;
    }
    .google-map{
      width: 100%;
      height: 100%;
    }
  }