.leftfooter {
    width: 200px;
    
    float: left;
    background-color: #1749b3;
}
.leftfooter img {
    width: 100%; /* or any custom size */
    height: 100%; 
    object-fit: contain;
}

.next {
    float: left;
    width: 60%;
    text-align: left;
    background-color: #1749b3;
    color: white;
    font-size: 20px;
    height: 250px;
}
.next p {
    margin-top: 0;
    padding-top: 0;
    padding-left: 20px;
    vertical-align: top;
}
.next div {
    border-top: 3px solid white; 
    height: 10px;
    margin-left: 20px;
    width: 30%;
}
.right {
    float: left;
    width: 20%;
    text-align: left;
    background-color: #1749b3;
    color: white;
    height: 250px;
}
.right p {
    font-size: 20px;
}
@media only screen and (max-width: 620px) {
    /* For mobile phones: */
    .left, .next, .right {
      width: 100%;
    }
    .leftfooter {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    .right {
        display: none;
    }
  }

  @media only screen and (max-width: 450px) {
    
  }