
.cm-review-container{
    width: 100vw;
    display: flex;
    justify-content: center;
    background-color: #1A391F;
  }
  
  .cm-review-content{
    width: 40%;
    margin-top: 40px;
  }
  
  .cm-review-text-container{
    width: 100%;
    height: 60vh;
  }
  
  .cm-review-text-content{
    display: none;
    opacity: 0;
    transition: all 0.5s;
  }
  
  .cm-review-text-content-active {
    display: block;
    opacity: 1;
  }
  
  .cm-review-text{
    width: 100%;
    height: calc(65vh*0.7);
    overflow: scroll;
    font-family: 'Roboto',sans-serif;
    color: #FFF;
  }
  
  .cm-review-author {
    margin-top: 10px;
    color: #799A09;
    font-family: 'Roboto',sans-serif;
  }
  
  .cm-review-marker-container{
    width: 100%;
    margin-top: 10px;
    display: flex;
  }
  
  .cm-review-marker {
    width: 9px;
    height:9px;
    background-color: #AAA;
    border-radius: 100px; 
    margin: 0 2px;
    transition: all 0.5s;
  }
  
  .cm-review-marker:hover {
    background-color: #CCC;
  }
  
  .cm-review-marker-active{
    background-color: #FFF;
  }
  
  .cm-review-view-more{
    text-decoration: none;
    width: 200px;
    height: 50px;
    display: flex;
    background-color: #FFF;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s;
  }
  
  .cm-review-view-more:hover{
    background-color: #799A09;
  }
  
  .cm-review-view-more:active{
    background-color: #FFF;
  }
  
  .cm-review-view-more p{
    color: #1A391F;
    font-family: 'Roboto',sans-serif;
    
  }
  
  .cm-review-view-more:hover p{
    color: #FFF;
  }
  
  .cm-review-view-more:active p{
    color: #1A391F;
  }
  
  .cm-review-image-container{
    position: relative;
    width: 30%;
    height: calc(80vh - 40px);
    margin-top: 40px;
  }
  
  .cm-review-image-base {
    width: 100%;
    height: 100%;
    background-image: url('../resources/testimonial-image@2x.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  
  .cm-review-image-top{
    position: absolute;
    top: 0;
    right: -5vw;
    width: 20vw;
    height: calc(20vw/8.82);
    background: url('../resources/wave_element.svg') no-repeat center;
  }
  
  @media screen and (max-width: 1024px)
    and (min-width: 767px){
      .cm-review-image-top{
        display: none;
      }
  }
  
  @media screen and 
    (max-width: 767px){
      .cm-review-container{
        flex-direction: column-reverse;
        align-items: center;
      }
      
      .cm-review-content{
        width: 90%;
      }
      
      .cm-review-image-container{
        width: 90%;
      }
      
      .cm-review-image-top{
        display: none;
      }

      .cm-review-view-more{
        margin: 20px auto;
      }
  }