.circle-card-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.circle-card-container {
  position: relative;
}

.card-group{
  width: 450px;
  height: 450px;
}

.display-text{
      position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    color: white;
    text-align: center;
}

.box {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: linear-gradient(45deg, #65cac9, #14a3db); */
  color: white;
  border: 0.5px solid grey;
  /*box-shadow: inset -11px 8px 6px 0px #ffffff63;*/
}

.card-group .box:nth-child(2){
    background: #bb945d;
}

.card-group .box:nth-child(3){
    background: #a07221;
}

.card-group .box:nth-child(4){
    background: #21a072;
}

.card-group .box:nth-child(5){
    background: #2145a0;
}

.card-group .box:nth-child(6){
    background: #6221a0;
}

.card-group .box:nth-child(7){
    background: #37a021;
}

.card-group .box:nth-child(8){
    background: #9821a0;
}

.card-group .box:nth-child(9){
    background: #2155a0;
}

.card-group .box:nth-child(10){
    background: #21a06a;
}

.card-group .box:nth-child(11){
    background: #a02143;
}

.box-anim{
  box-shadow: inset -11px 8px 6px 0px #ffffff63;
  transition: all 0.5s ;
}

.box p:nth-child(1){
    font-size: 9px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    /*rotate: 90deg;*/
}
.box p:nth-child(2){
  display: none;
}

.box p:nth-child(3){
	display: none;
}

.display-brief{
  font-size: 25px;
    width: 50%;
    color: white;
    font-weight: 100;
    text-align: center;
    line-height: 2;
    
}


@keyframes bounceIn {
  0% {
      opacity: 0;
      transform: translateY(100%);
  }
  50% {
      opacity: 1;
      transform: translateY(-50%);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.button-container{
    display: flex;
    align-items: center;
    justify-content: end;
    position: absolute;
    right: 0;
    top: 45px;
}

.button-left{
    color: #1c85d6;
    width: 55px;
    height: 55px;
    border: 1px solid #1c85d6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 7.5px;
    cursor: pointer;
}

.button-right{
    color: #1c85d6;
    width: 55px;
    height: 55px;
    border: 1px solid #1c85d6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
     margin: 0 7.5px;
     cursor: pointer;
}

.display-sub-title{
	font-weight: 500;
    margin-bottom: 15px;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .button-container{
        top: -5px;
    }
    
    .circle-card-wrapper {
        display: block;
    }
    
    .circle-card-container {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
    }
    
    .card-group {
        width: 80vw;
        height: 80vw;
    }
    
    .box {
        width: 75px;
        height: 75px;
    }
    
    .display-brief{
        width: 100%;
        font-size: 19px;
        margin-top: 100vw;
    }
    
    .display-text{
        font-size: 16px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023.98px) {
    .button-container{
        top: -5px;
    }
    
    .circle-card-wrapper {
        display: block;
    }
    
    .circle-card-container {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
    }
    
    .card-group {
        width: 60vw;
        height: 60vw;
    }
    
    .box {
/*         width: 80px;
        height: 80px; */
    }
    
    .display-brief{
        width: 100%;
        font-size: 19px;
        margin-top: 60vw;
    }
    
    .display-text{
        font-size: 16px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1399.98px) {
	.display-brief {
		font-size: 18px;
	}
	
	.airo-container .airo-card .face.face1{
		padding: 10px;
	}
	
	.airo-container .airo-card .face.face1 h2 {
		font-size: 15px;
	}
	
	.airo-container .airo-card:hover .face.face2 h2{
		font-size: 1em;
	}
}