
* {
  transition: all 0.3s ease-out;
}

.containerC {
  width: 1200px !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin-right: auto;
  margin-left: auto;
}
  
.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60px;
  height: 50px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #e83b3b;
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
  scale: 3;
}

  


.info-cardsC {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 30px;
  @media screen and (max-width: 991px) {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.container-titleC {
  text-align: center;
  padding: 0 !important;
  margin-bottom: 25px;
}

.cardC {
  display: block;
  top: 0px;
  position: relative;
  max-width: 550px;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  margin: 12px;
  text-decoration: underline solid #fff !important;
  z-index: 0;
  overflow: hidden;
  border: 1px solid #f2f8f9;

  &:hover {
    transition: all 0.2s ease-out;
    box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
    top: -4px;
    border: 1px solid #cccccc;
    background-color: white;
    text-decoration: underline solid #fff !important;
  }

  &:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: #e83b3b;
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(2);
    transform-origin: 50% 50%;
    transition: transform 0.15s ease-out;
  }

  &:hover:before {
    transform: scale(2.15);
  }
}
 

.container-cardC {
  position: relative;
  border-radius: 15px;
  background: white;
  background-clip: padding-box;
  border-radius: 15px;
  padding: 40px;
  height: inherit !important;
/*   border: 1px solid #e9e9e9; */
   }
}


  

.card-titleC {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 40px;
  font-style: normal;
  font-size: 28px;
  padding-bottom: 8px;
}

.card-descriptionC {
/*   font-weight: 600; */
  line-height: 32px;
/*   font-size: 16px; */
  max-width: 470px;
}

/* 
  @media screen and (min-width: 992px) and (max-width: 1439px) {
    max-width: 1279px !important;
    padding: 0 !important;
    margin: 0 80px !important;
    width: auto !important;
  }

  @media screen and (max-width: 991px) {
    max-width: 959px !important;
    margin: 0 16px !important;
    padding: 0 !important;
    width: auto !important;
  }
 */
