
  .flexbox {
    display: flex;
    flex-direction: row;
    /* grid-template-columns: repeat(12, minmax(0, 1fr)); */
    justify-content: space-around;
    width: 100%;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .flexcard {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: baseline;
    border-radius: 20px;
  }

  .flexcardNumber {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    margin: 10px 0px;
    border-radius: 0px 50px 50px 0px;
    font-family: "Nunito", sans-serif;
    color: white;
    text-shadow: 0px 3px 5px black;
    font-weight: 500;
    font-size: 20px;
    position: relative;
  }

  .flexcardTitle {
    font-family: "Nunito", sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 12px;
    width: 100%;
    display: inline-block;
  }

  .flexcardTitle.special {
    font-size: 26px;
    margin-bottom: 0px;
  }

  .flexcardText {
    font-family: "Nunito", sans-serif;
    text-align: left;
    font-weight: 300;
    margin: 0;
  }

  .flexcardNumber:before {
    content: "";
    width: 34px;
    height: 90px;
    position: absolute;
    left: -33px;
    top: 0px;
    border-radius: 50px 0px 0px 50px;
    z-index: -1;
    background: -moz-linear-gradient(bottom, #95b7a2, #a6b1e1);
  }

  .flexcardNumber:after {
    content: "";
    width: 25px;
    height: 40px;
    position: absolute;
    left: -25px;
    bottom: -40px;
    border-radius: 50px 0px 0px 50px;
    z-index: -1;
  }

  /* GREEN CARD */

  .flexcardGreen {
    background: #f9fbfa;
    box-shadow: 4px 4px 4px #a6b1e1;
  }

  .flexcardNumberGreen {
    background: #fcfcfc;
    background: -webkit-linear-gradient(right, #fcfcfc, #a6b1e1);
    background: -moz-linear-gradient(right, #fcfcfc, #a6b1e1);
    background: linear-gradient(to left, #fcfcfc, #a6b1e1);
    box-shadow: 0px 2px 2px #a6b1e1;
  }

  .flexcardNumberGreen:before {
    background: #a6b1e1;
  }

  .flexcardNumberGreen:after {
    background: #8e95b6;
  }

  /* BLUE CARD */

  .flexcardBlue {
    background: #f7ffff;
    box-shadow: 4px 8px 1px #aee2ff;
  }

  .flexcardNumberBlue {
    background: #fdfffe;
    background: -webkit-linear-gradient(right, #fdfffe, #aee2ff);
    background: -moz-linear-gradient(right, #fdfffe, #aee2ff);
    background: linear-gradient(to left, #fdfffe, #aee2ff);
    box-shadow: 0px 2px 2px #aee2ff;
  }

  .flexcardNumberBlue:before {
    background: #aee2ff;
  }

  .flexcardNumberBlue:after {
    background: #71bdbf;
  }

  /* ORANGE CARD */

  .flexcardOrange {
    background: #fdf8f3;
    box-shadow: 4px -2px 1px #febe8c;
  }

  .flexcardNumberOrange {
    background: #fdfffe;
    background: -webkit-linear-gradient(right, #fdfffe, #febe8c);
    background: -moz-linear-gradient(right, #fdfffe, #febe8c);
    background: linear-gradient(to left, #fdfffe, #febe8c);
    box-shadow: 0px 2px 2px #febe8c;
  }

  .flexcardNumberOrange:before {
    background: #febe8c;
  }

  .flexcardNumberOrange:after {
    background: #ffac4d;
  }

  /* PİNK CARD */

  .flexcardPink {
    background: #fffafd;
    position: relative;
    box-shadow: 2px 2px 1px #f7a4a4;
    border-radius: 20px 20px 0px 20px;
    box-sizing: border-box;
  }

  .flexcardPink:before {
    content: "";
    width: 0px;
    height: 50px;
    position: absolute;
    bottom: 0;
    right: 0;
    border-left: 100px solid transparent;
    border-bottom: 90px solid #f7a4a4;
  }

  .flexcardNumberPink {
    background: #fdfffe;
    background: -webkit-linear-gradient(right, #fdfffe, #f7a4a4);
    background: -moz-linear-gradient(right, #fdfffe, #f7a4a4);
    background: linear-gradient(to left, #fdfffe, #f7a4a4);
    box-shadow: 0px 2px 2px #f7a4a4;
  }

  .flexcardNumberPink:before {
    background: #f7a4a4;
  }

  .flexcardNumberPink:after {
    background: #ff5f5f;
  }

  .flexcardWrapper {
    padding: 0 24px 32px;
  }

  .flexcardWrapper ul {
    padding-left: 18px;
    list-style: disc;
  }

  @media only screen and (max-width: 1400px) {
    .flexbox {
      gap: 60px;
      max-width: 1024px;
    }

    .flexcardNumber {
      font-size: 18px;
    }
  }

  @media only screen and (max-width: 992px) {
    .flexbox {
      gap: 40px;
      max-width: calc(100% - 40px);
      flex-direction: column;
    }

    .flexcard {
      width: 100%;
    }
    .flexcardNumber {
      height: 40px;
      font-size: 16px;
    }
    .flexcardNumber:before {
      height: 76px;
    }
    .flexcardNumber:after {
      bottom: -35px;
      height: 37px;
    }
  }

  @media only screen and (max-width: 560px) {
    .flexcardTitle.special {
      font-size: 22px;
    }

    .flexcardTitle {
      font-size: 18px;
    }

    .flexcardNumber {
      font-size: 14px;
    }
    .flexcard {
      max-width: 100%;
      margin-left: 5px;
    }
  }

  .two .flexcardTitle {
    position: relative;
    text-transform: capitalize;
    flex-direction: column;
  }

  .two .flexcardTitle:before {
    position: absolute;
    left: 0;
    bottom: 28px;
    width: 15%;
    height: 2px;
    content: "";
    background-color: #c50000;
  }

  .two .flexcardTitle span {
    display: block;
    font-size: 0.5em;
    line-height: 1.3;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 2em;
    padding-left: 0.25em;
    color: rgba(0, 0, 0, 0.4);
    padding-bottom: 10px;
  }

  .alt-two .flexcardTitle {
    text-align: center;
  }

  .alt-two .flexcardTitle:before {
    left: 50%;
    transform: translateX(-50%);
  }


  .animated-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #23c1dc !important;
    border-radius: 20px;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: padding-right 0.3s ease, width 0.3s ease;
    overflow: hidden;
    background-color: transparent;
  }
	/*button */
  .animated-button .arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-left: 10px;
    white-space: nowrap;
  }

  .animated-button:hover {
    padding-right: 30px;
    background-color: #ffffff2b;
    opacity: 1;
  }

  .animated-button:hover .arrow {
    opacity: 1;
    transform: translateX(0);
  }
  .animated-button:hover span {
    color: #0a58ca;
  }

 .flexbox {
    display: flex;
    flex-direction: row;
    /* grid-template-columns: repeat(12, minmax(0, 1fr)); */
    justify-content: space-around;
    width: 100%;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .flexcard {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: baseline;
    border-radius: 20px;
  }

  .flexcardNumber {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    margin: 10px 0px;
    border-radius: 0px 50px 50px 0px;
    font-family: "Nunito", sans-serif;
    color: white;
    text-shadow: 0px 3px 5px black;
    font-weight: 500;
    font-size: 20px;
    position: relative;
  }

  .flexcardTitle {
    font-family: "Nunito", sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 12px;
    width: 100%;
    display: inline-block;
  }

  .flexcardTitle.special {
    font-size: 26px;
    margin-bottom: 16;
  }

  .flexcardText {
    font-family: "Nunito", sans-serif;
    text-align: left;
    font-weight: 300;
    margin: 0;
  }

  .flexcardNumber:before {
    content: "";
    width: 34px;
    height: 90px;
    position: absolute;
    left: -33px;
    top: 0px;
    border-radius: 50px 0px 0px 50px;
    z-index: -1;
    background: -moz-linear-gradient(bottom, #95b7a2, #a6b1e1);
  }

  .flexcardNumber:after {
    content: "";
    width: 25px;
    height: 40px;
    position: absolute;
    left: -25px;
    bottom: -40px;
    border-radius: 50px 0px 0px 50px;
    z-index: -1;
  }

  /* GREEN CARD */

  .flexcardGreen {
    background: #f9fbfa;
    box-shadow: 4px 4px 4px #a6b1e1;
  }

  .flexcardNumberGreen {
    background: #fcfcfc;
    background: -webkit-linear-gradient(right, #fcfcfc, #a6b1e1);
    background: -moz-linear-gradient(right, #fcfcfc, #a6b1e1);
    background: linear-gradient(to left, #fcfcfc, #a6b1e1);
    box-shadow: 0px 2px 2px #a6b1e1;
  }

  .flexcardNumberGreen:before {
    background: #a6b1e1;
  }

  .flexcardNumberGreen:after {
    background: #8e95b6;
  }

  /* BLUE CARD */

  .flexcardBlue {
    background: #f7ffff;
    box-shadow: 4px 8px 1px #aee2ff;
  }

  .flexcardNumberBlue {
    background: #fdfffe;
    background: -webkit-linear-gradient(right, #fdfffe, #aee2ff);
    background: -moz-linear-gradient(right, #fdfffe, #aee2ff);
    background: linear-gradient(to left, #fdfffe, #aee2ff);
    box-shadow: 0px 2px 2px #aee2ff;
  }

  .flexcardNumberBlue:before {
    background: #aee2ff;
  }

  .flexcardNumberBlue:after {
    background: #71bdbf;
  }

  /* ORANGE CARD */

  .flexcardOrange {
    background: #fdf8f3;
    box-shadow: 4px -2px 1px #febe8c;
  }

  .flexcardNumberOrange {
    background: #fdfffe;
    background: -webkit-linear-gradient(right, #fdfffe, #febe8c);
    background: -moz-linear-gradient(right, #fdfffe, #febe8c);
    background: linear-gradient(to left, #fdfffe, #febe8c);
    box-shadow: 0px 2px 2px #febe8c;
  }

  .flexcardNumberOrange:before {
    background: #febe8c;
  }

  .flexcardNumberOrange:after {
    background: #ffac4d;
  }

  /* PİNK CARD */

  .flexcardPink {
    background: #fffafd;
    position: relative;
    box-shadow: 2px 2px 1px #f7a4a4;
    border-radius: 20px 20px 0px 20px;
    box-sizing: border-box;
  }

  .flexcardPink:before {
    content: "";
    width: 0px;
    height: 50px;
    position: absolute;
    bottom: 0;
    right: 0;
    border-left: 100px solid transparent;
    border-bottom: 90px solid #f7a4a4;
  }

  .flexcardNumberPink {
    background: #fdfffe;
    background: -webkit-linear-gradient(right, #fdfffe, #f7a4a4);
    background: -moz-linear-gradient(right, #fdfffe, #f7a4a4);
    background: linear-gradient(to left, #fdfffe, #f7a4a4);
    box-shadow: 0px 2px 2px #f7a4a4;
  }

  .flexcardNumberPink:before {
    background: #f7a4a4;
  }

  .flexcardNumberPink:after {
    background: #ff5f5f;
  }

  .flexcardWrapper {
    padding: 0 24px 32px;
  }

  .flexcardWrapper ul {
    padding-left: 18px;
    list-style: disc;
  }

  @media only screen and (max-width: 1400px) {
    .flexbox {
      gap: 60px;
      max-width: 1024px;
    }

    .flexcardNumber {
      font-size: 18px;
    }
  }

  @media only screen and (max-width: 992px) {
    .flexbox {
      gap: 40px;
      max-width: calc(100% - 40px);
      flex-direction: column;
    }

    .flexcard {
      width: 100%;
    }
    .flexcardNumber {
      height: 40px;
      font-size: 16px;
    }
    .flexcardNumber:before {
      height: 76px;
    }
    .flexcardNumber:after {
      bottom: -35px;
      height: 37px;
    }
  }

  @media(max-width: 768px) {
    .animated-button{
    	padding:0px 10px;
    }
    .animated-button span{
    	font-size:9px;
    }
    .flexcardTitle.special {
      font-size: 22px;
    }
	
    .flexcardTitle {
      font-size: 18px;
      margin-bottom:0 !important;
    }

    .flexcardNumber {
      font-size: 14px;
    }
    .flexcard {
      max-width: 100%;
      margin-left: 5px;
    }
  }

  .two .flexcardTitle {
    position: relative;
    text-transform: capitalize;
    flex-direction: column;
  }

  .two .flexcardTitle:before {
    position: absolute;
    left: 0;
    bottom: 28px;
    width: 15%;
    height: 2px;
    content: "";
    background-color: #c50000;
  }

  .two .flexcardTitle span {
    display: block;
    font-size: 0.5em;
    line-height: 1.3;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 2em;
    padding-left: 0.25em;
    color: rgba(0, 0, 0, 0.4);
    padding-bottom: 10px;
  }

  .alt-two .flexcardTitle {
    text-align: center;
  }

  .alt-two .flexcardTitle:before {
    left: 50%;
    transform: translateX(-50%);
  }
