
#about_us_container{
  padding: 0px;
  margin-top: -40px;
  text-align: justify;
}

.backgroundimg{
    /* The image used */
    background-image: url("/images/about/Cargo-containers-ship-pier_1920x1080.jpg");

    /* Set a specific height */
    height: 300px;
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

  #hidden_contact{
    visibility: hidden;
  }
@media screen and (max-width: 1110px) {
 
    #hidden_contact{
      visibility: visible;
    }
  
    #about_us_container{
      margin-top: 30px;
    }

  }


/* Flip cards */
  .flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .flip-card-front {
    background-color: #e5322d;
    color: white;
    font-family: abel;
  }
  
  .flip-card-back {
    background-color: #171b26;
    color: white;
    transform: rotateY(180deg);
    font-family: abel;
    font-size: 15pt;
    padding: 20px;
  }
  /* Flip cards end */

  #boxfigure{
    width: 250px;
    padding: 20px;
    border-radius: 30px;
    -webkit-box-shadow: 0px 10px 22px -15px rgba(0,0,0,0.65);
    -moz-box-shadow: 0px 10px 22px -15px rgba(0,0,0,0.65);
    box-shadow: 0px 10px 22px -15px rgba(0,0,0,0.65);
  }