[data-component-id="dafr_b5_sub:block_full_v1"] {
  /* @todo Add your styles here. */
}



.block_full_v1 .left {  
  height: auto;
  display: flex;
  align-items: start;        
}

.block_full_v1 .block-image {
  width: 100%;
  margin: 40px;
  margin-left: 0;
  height: auto;
  border-radius: 0px 800px 800px 0px;  
  border: 5px solid #F6D469;
  background-color: #EFECE7;
  border-left: 0;
  opacity: 0;
}

.block_full_v1 .block-image .shape {
  background-image: url('/sites/default/files/theme/shape1.png');
  background-size: cover;  
  background-repeat: no-repeat;
  background-position: right;

}
.block_full_v1 .block-image .shape .image {
  display: flex;  
  justify-content: end;  
  padding: 40px;
}


.block_full_v1 .block-image img {
  max-width: 500px;
  border-radius: 100%;
  margin: 0;
}


.block-content {
  padding: 20px;
}

@media screen and (min-width: 2200px) {
  .block_full_v1 .right {
    max-width: 1000px;  
  }
}

@media screen and (max-width: 650px) {
  .block_full_v1 .block-image img{
    max-width: 300px;
  }
  .block_full_v1 .right {
    max-width: 100%;
    padding: 0 25px;
    
  }
}
  


@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}


.fade-in {
  animation: fadeIn 1s ease-in-out 0.5s 1 normal forwards;
}

.fade-in-left {
  animation: fadeInFromLeft 2s ease-in-out 1s 1 normal forwards;
}

.fade-in-down {
  animation: fadeInFromBottom 2s ease-in-out 0.5s 1 normal forwards;
}

.fade-in-down2 {
  animation: fadeInFromBottom 2s ease-in-out 1s 1 normal forwards;
}
