

/* Smartphone browser @ 320 x 480 pixels (portrait) resolution */
@media screen and (max-width:559px) and (min-width:290px) and (orientation:portrait){
    /* Your portrait smartphone styles here */
    .footerContainer{
        flex-direction: column-reverse; 
        align-items: center;  
    }
    .leftFooter{
      width: 90%;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 30px;
      justify-content: space-around;
    }
    .rightFooter{
        width:90%;
        /* margin-bottom: 20px; */
      }

      .degreeIcons{
        width: 50%;
      }
      .textContiner{
        text-align: center;
  }

  .contactFooter{
    text-align: center;
    margin-bottom: 20px;
  }
    
}

/* Tablets (portrait) */
@media screen and (max-width:759px) and (min-width:600px)   {
    .footerContainer{
        flex-direction: row;   
    }
    .leftFooter{
      width: 90%;
    }
    .rightFooter{
        width:20%;
      }
      .degreeIcons{
        width: 20%;
      }
  }
  


  /* Tablets (landscape) */
  @media screen and (max-width:991px) and (min-width:760px) {
    .footerContainer{
        flex-direction: row;   
    }
    .leftFooter{
      width: 60%;
    }
    .rightFooter{
        width: 20%;
      }
      .degreeIcons{
        width: 20%;
      }
  }
  


  /* Desktops and larger screens (portrait) */
  @media screen and (max-width:1200px) and (min-width:992px) {
    .footerContainer{
        flex-direction: row;   
    }
    .leftFooter{
      width: 60%;
    }
    .rightFooter{
        width: 20%;
      }
      .degreeIcons{
        width: 20%;
      }
  }
  

  @media screen and (min-width:1200px) {
    .footerContainer{
        flex-direction: row;   
    }
    .leftFooter{
      width: 60%;
    }
    .rightFooter{
        width: 20%;
      }
      .degreeIcons{
        width: 20%;
      }

  }
