a{
        text-decoration: none;
}
body{
        margin:0;
        padding: 0;
        
}

.bg-light{
        background-color:#FFF !important;
}

.boxWithIcon > button{
background-color: #FFF !important;
margin-right: 0.5em;
}


.blobimage img{
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70% !important;
       
}

.block {
        top:10px;
        position:relative;
        width: 100%;
        z-index: 9999;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70% !important;
        box-shadow: inset -10px -10px 10px 20px white;
    }

nav{
        margin-top:1em !important;
        margin-bottom:2em !important;
        height: 61px !important;
        background: #FFF !important;
}
.navbar-brand{
        position: absolute;
        z-index: 1;
        overflow: visible;
        left: 0px;
        top: -24px;
        height: 100px !important;
       
}

@media (max-width: 575.98px) {
        .navbar-collapse{
                position: absolute;
                width:100% !important;
                padding:2vw;
                top:4em;
                left:0;
                margin: 0 !important;
                z-index: 999 !important;
                background-color: #FFF !important;
        }

        .blobimage{
                overflow: hidden;
        }

        .blobimage img{
                margin-left: -5%;
                padding:0 !important;
                max-height:-moz-fit-content;
                max-height:fit-content;
                max-width: 110% !important;
                border-radius: 0!important;
               
        }
}

@media (max-width: 767.98px) { 
        .navbar-collapse{
                z-index: auto;
                background-color: #FFF !important;
        }

        .blobimage img{
                margin-left: -5%;
                padding:0 !important;
                max-height:-moz-fit-content;
                max-height:fit-content;
                max-width: 110% !important;
                border-radius: 0!important;
               
        }

}

.square{
        display: flex;
        padding:1em;
        max-width: 250px !important;
        min-height: 250px !important;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1/1;
        text-align: center; 
        border: dashed #ccc;
        margin: 1em 0;
}
      
.dropzone{
 display: flex;
 padding:1em;
 width: 100% !important;
 align-items: center;
 justify-content: center;
 aspect-ratio: 4/1;
 text-align: center; 
 border: dashed #ccc;
 margin: 1em 0;
}


@media (min-width: 992px) { 

 }

@media (min-width: 1200px) {  }


@keyframes circular-fade-in {
        0% {
                opacity: 1;
                -webkit-clip-path: circle(50% at 0% 0%);
                        clip-path: circle(50% at 0% 0%);
              }
              50% {
                opacity: 1;
                -webkit-clip-path: circle(100% at 0% 0%);
                        clip-path: circle(100% at 0% 0%);
              }
              100% {
                opacity: 1;
                -webkit-clip-path: circle(200% at 0% 0%);
                        clip-path: circle(200% at 0% 0%);
              }
      }

@keyframes pulse {
        0% {
            transform: scale(0.8);
            opacity: 0.5;
        }
        50% {
            transform: scale(1);
            opacity: 1;
        }
        100% {
            transform: scale(0.8);
            opacity: 0.5;
        }
    }
    
      

    .pulse-animation {
        animation: pulse 1.5s ease-in-out infinite;
      }
      
      @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.2);
        }
        100% {
          transform: scale(1);
        }
      }
      


      .removeLastChildPaddingBottom {
        padding-top: 0;
        padding-bottom: 0;
      }
      
      .removeLastChildPaddingBottom:last-child {
        padding-bottom: 0;
      }

      .card-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-gap: 20px;
      }
      
      .grid-item {
        grid-column-end: span 1;
        grid-row-end: span 1;
      }


      @keyframes borderAnimation {
        0% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
        100% {
          background-position: 0% 50%;
        }
      }
.container {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
  height: 210px;
  width:100% !important;
}

.animated-img {
  min-width: 200px !important;
  height: 200px !important;
  background-color: lightgray;
  background-image: url('https://via.placeholder.com/200');
  background-repeat: no-repeat;
  animation: scrollImages 150s ease-in-out infinite;
  position: relative;
}

.animated-img-bottom {
  min-width: 200px !important;
  height: 200px !important;
  background-color: lightgray;
  background-image: url('https://via.placeholder.com/200');
  background-repeat: no-repeat;
  animation: scrollImagesReverse 150s ease-in-out infinite;
  position: relative;
}

@keyframes scrollImages {
  0%, 100% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-100%);
  }
}

@keyframes scrollImagesReverse {
  0%, 100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
}

.animated-img:nth-child(odd) {
  margin: 0 10px;
}

.animated-img:nth-child(even) {
  margin: 0px !important;
}

.animated-img-bottom:nth-child(odd) {
  margin: 0 10px;
}

.animated-img-bottom:nth-child(even) {
  margin: 0px !important;
}


