#toast {
    visibility: hidden;
    max-width: 200px;
    height: 50px;
    line-height: 50px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    padding: 16px;
}

#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

.servicesimg-class {
    position: relative;
    height: auto;
    transition: all 0.3s ease; /* Optional: Adds a transition effect for hover effects. Remove if not desired. */
    margin-right: 20px;
    margin-left: 20px;
}

.servicesimg:hover {
    box-shadow: 0px 20px 20px 0px rgba(59,62,72,0.2);
}

.flex-container {
    display: flex;
    flex-direction: row; /* By default, display as row */
  }
  
  @media screen and (max-width: 768px) {
    /* When the screen size is 768px or less, switch to column layout */
    .flex-container {
      flex-direction: column;

    }
  }
  @media screen and (max-width: 768px) {
    /* When the screen size is 768px or less, add padding to the bottom of the image */
    .flex-container img {
      padding-bottom: 25px; /* Adjust this value to your needs */
      width: 80%;
    }
  }

.fiverr-icon {
    width: 70px;
    
    display: block;
    margin: 5px auto;  /* Adjust margin as per your needs to position the icon */
    margin-top: 30px;
}
  @media screen and (max-width: 768px) {
    /* When the screen size is 768px or less, add padding to the bottom of the image */
      width: 54px;
    
  }