

/*
* Circle image
*/


.ct-stage-image {
    width:100%;height:100%;
  }

.ct-stage-image{
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
  }
  
  /* wrapper fills the cell */
.ct-stage-image{
    width: 100%;
    height: 100%;

    position:relative;
    
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 0;
  }
  
  .ct-circle-image-1{
    width:60%;
    height:auto;

    aspect-ratio: 1 / 1;
    
    
    overflow: hidden;

    background: #d9d9d9;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    border-radius: 50%;
    border: 6px solid #38c24d;
    
    outline: 4px solid #0a4b85;
    outline-offset: -10px;
  }

  .ct-circle-image-2{
    width: 30%;
    height: auto;

    position:absolute;top:15%;right:15%;

    overflow: hidden;
    aspect-ratio: 1 / 1;
    
    border-radius: 50%;
    
    background: #d9d9d9;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border: 6px solid #38c24d;
    outline: 4px solid #0a4b85;
    outline-offset: -10px;
  }

  @media screen and (max-width:1230px){
    .ct-circle-image-1 {
      max-width:300px;
    }

    .ct-circle-image-2 {
      max-width:250px;
    }
  }

  @media screen and (max-width:520px){

    

    .ct-circle-image-2 {
      display:none;
    }

    #typeDescription{
      height:70px;
    }

    .ct-stage-image {
      height:350px;
    }