@media (max-width: 767px) {
  .hide-on-med-and-down {
        display: none !important;
  }
  .rb-title-list {
    margin-bottom: 0px;
  }
  .grid-sizer, .grid-item {
        width: 100%;
  }
  .container {
    margin-top: 16px;
  }

  .rb-icons {
    height: 32px;
  }
  ion-icon {
    font-size: 32px;
  }
  #menu {
    position: absolute;
  }
}

@media (min-width: 768px) { 
  .grid-sizer, .grid-item {
        width: 50%;
  }
  .rb-icons {
      position: absolute;
      top: 40px;
      right: 40px;
      height: 24px;
  }
  .rb-title-list {
    margin-bottom: 30px;
  }
  ion-icon {
    font-size: 24px;
  }
  #menu {
    display: none;
  }
 }

@media (min-width: 992px) { 
  .grid-sizer, .grid-item {
        width: 33.333%;
  }
 }

@media (min-width: 1200px) { 
  .grid-sizer, .grid-item {
        width: 25%;
  }
}

.grid-item img {
  display: block;
  max-width: 100%;
  padding: 5px;
  transition: transform .2s; /* Animation */
}

.grid {
  animation-duration: 0.6s;
  margin-top: 20px;
}

.grid-item img:hover {
  transform: scale(1.03); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.rb-title {
    font-family: 'Poppins', sans-serif;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #000000;
}

.rb-copyright {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

body {
  min-height: 100vh;
  position: relative;
  margin: 0;
  padding-bottom: 100px;
  background-color: #FFFFFF;
}

.list-inline-item {
  font-size: 20px;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.modal-title {
  font-family: 'Poppins', sans-serif;
}

ion-icon {
  color: black;
}

ion-icon:hover {
  color: #404040;
}

#icon-back {
  font-size: 36px;
  position: absolute;
  margin-top: 12px;
}

a:hover {
  color: #404040;
}

a, a:hover ,a:visited, a:focus {
  text-decoration:none;
}

a {
  color: #000000;
  font-family: 'Poppins', sans-serif;
}

h1 {
  font-family: 'Poppins', sans-serif;
  color: #000000;
}

.list-inline-item {
  margin-right: 20px;
  margin-left: 20px;
}

.card-img {
  height: 300px;
  width: 250px;
  object-fit: cover;
}

.card-title {
  color: #FFFFFF;
}

.card {
  border: 0px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -15%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -10%, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}


.portfolio-card img {
  opacity: 0.9;
  transition: opacity 0.4s;
}

.portfolio-card:hover img {
  opacity: 1;
}

#sidebar.open {
  margin-left: 0px;
}

#sidebar {
      width: 250px;
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      z-index: 999;
      background: #fff;
      color: #000 !important;
      transition: all 0.3s;
      margin-left: -250px;
}

#close {
  position: absolute;
  right: 16px;
  top: 16px;
}

#menu {
  z-index: 100
}

p {
  font-family: 'Poppins', sans-serif;
}

.justify {
  text-align: justify; 
}