/*-------------------FOOTER SECTION-------------------*/
.footer {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* background-color: var(--primary-red); */
    background-color: #FDCFD6;
    position: relative;
  }
  .footer .footer-mask {
    position: absolute;
    z-index: 0;
    right: 0px;
    bottom: 70px;
    width: 150px;
  }
  .footer .main {
    display: flex;
    width: min(1400px, 95%);
    margin: 0 auto;
    padding: 30px 0px;
  }
  .footer .main .col-1 {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .footer .main .col-1 .logo {
    display: flex;
    align-items: center;
    padding: 0px;
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-red);
  }
  .footer .main .col-1 .logo img {
    height: 50px;
    width: auto;
  }
  
  .footer .main .col-1 .foot-text {
    width: min(90%, 500px);
    text-align: left;
    color: var(--primary-red);
    font-size: 18px;
    font-weight: 600;
  }
  .footer .main .col-2,
  .footer .main .col-3 {
    padding: 20px 0px;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer .foot {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-red-dark);
    width: 100%;
    color: var(--secondary-red);
    font-size: 17px;
    font-weight: 600;
  }
  .foot-icons {
    color: white;
    font-size: 25px;
  }
  .foot-icons img{
    height: 25px;
    width: 25px;
  }
  .fab {
    cursor: pointer;
  }
  
  @media only screen and (max-width: 850px) {
    .footer .main {
      flex-wrap: wrap;
    }
    .footer .main .col-1 {
      width: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .footer .main .col-2,
    .footer .main .col-3 {
      width: 50%;
    }
  
    .footer .main .col-1 .foot-text {
      text-align: center;
    }
  }
  
  @media only screen and (max-width: 650px) {
    .footer .main {
      flex-wrap: wrap;
    }
    .footer .main .col-1 {
      width: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .footer .main .col-2,
    .footer .main .col-3 {
      width: 100%;
    }
  
    .footer .main .col-1 .foot-text {
      text-align: center;
    }

    .footer .footer-mask {
      width: 150px;
    }
  }
  
  .footer .btn-foot {
      cursor: pointer;
      font-size: 17px;
      font-weight: 600;
      height: 45px;
      color: var(--primary-red);
      border-radius: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-transform: capitalize;
      font-weight: 600;
      /* box-shadow: 0px 0px 30px rgba(255, 73, 113, 0.25); */
    }

  /*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/