.container-price {
    display: flex;
    flex-flow: row wrap;
    align-content: stretch;
    max-width: 900px;
    margin: 10px auto;
    margin-top: 20px;
    justify-content: space-around;
  }
  
  .enterprise h3 {
    color: #310631;
  }
  
  
  .card-price {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-right: 10px;
    background: #fff;
    border: #e8e9eb 4px solid!important;
    text-align: center!important;
    padding-top: 10px;
    border-radius: 8px;
    padding-bottom: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    position: relative;
    /* ANIMATION SLIDE_IN FROM LEFT TO RIGHT */
    /*  left: -1500px; 
 -webkit-animation: 1.5s cubic-bezier(0.53, 0.2, 0.54, 1.33) 0s 1 slidein;
    animation: 1.5s cubic-bezier(0.53, 0.2, 0.54, 1.33) 0s 1 slidein;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;*/ 
    /* ON HOVER TRANSITION */
    /* -webkit-transition: transform 300ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
    -moz-transition: transform 300ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
    -o-transition: transform 300ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
    -ms-transition: transform 300ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
    transition: transform 300ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease; */
    
  }
  
  .solo {
    background: linear-gradient(to bottom right, #86dffd 0%, #eef2f7 100%);
  }
  
  .teams {
    background: linear-gradient(to bottom right, #86fdb4 0%, #f5f7fa 100%);
  }
  
  .free-tier {
    background: linear-gradient(to bottom right, #fad0a1 0%, #f9f9fa 100%);
  }
  
  .enterprise {
    background: linear-gradient(to bottom right, #f0b2f0 0%, #f9f9fa 100%);
  }
  
  .card-price:last-of-type {
    margin-right: 20px;
  }
  
  .card-price:nth-of-type(2) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-duration: 1.75s;
    animation-duration: 1.75s;
  }
  
  .card-price:nth-of-type(3) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
  }
  
  
  
  @-webkit-keyframes slidein {
    from {
      left: -1500px;
    }
    to {
      left: 0;
    }
  }
  
  @keyframes slidein {
    from {
      left: -1500px;
    }
    to {
      left: 0;
    }
  }
  
  @-moz-keyframes slidein {
    from {
      left: -1500px;
    }
    to {
      left: 0;
    }
  }
  
  @-o-keyframes slidein {
    from {
      left: -1500px;
    }
    to {
      left: 0;
    }
  }
  
  
  
  a:hover:after {
    -webkit-transform: translateX(250px) skewX(-25deg);
    transform: translateX(250px) skewX(-25deg);
  }
  
  .ul-price {
    list-style-type: none;
    padding: 0px 0 5px 0;
  }
  
  .li-price {
    text-align: left;
    font-size: 13px;
    padding-bottom: 0px;
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .first {
    padding-top: 15px;
  }
  
  .price {
    width: 100%;
    background: #ecedf0;
  }
  
  
  #period {
    font-size: 13px;
    font-weight: bold;
    padding-top: 0px;
  }
  
  .space-lg {
    display: block;
    height: 32px;
    border-width: 1px;
    border-color: #66615B;
    padding-top: 1px;
    padding-bottom: 0px;
    font-size: 22px;
    opacity: 1;
    z-index: 1000;
  }
  
  
  .price-container {
    width: 90%;
    max-width: 1170px;
    margin: 4em auto;
  }
  
  .space-div {
    height: 1.5px;
    fill: none;
  }
  
  .price-container .full-width {
    width: 100%;
    max-width: none;
  }
  
  .price-switcher {
    text-align: center;
  }
  
  .price-switcher .fieldset {
    display: inline-block;
    position: relative;
    padding: 2px;
    border-radius: 50em;
    border: 2px solid #2d3e50;
    background-color: #4293f0;
  }
  
  .price-switcher input[type="radio"] {
    position: absolute;
    opacity: 0;
  }
  
  .price-switcher label {
    position: relative;
    z-index: 1;
    display: inline-block;
    /* float: left; */
    width: 90px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0px !important;
  }
  
  .price-switcher .switch {
    position: absolute;
    top: 2px;
    left: 2px;
    height: 40px;
    width: 90px;
    background-color: #2d3e50;
    border-radius: 50em;
    -webkit-transition: -webkit-transform 0.5s;
    -moz-transition: -moz-transform 0.5s;
    transition: transform 0.5s;
  }
  
  .price-switcher input[type="radio"]:checked+label+.switch, .price-switcher input[type="radio"]:checked+label:nth-of-type(n)+.switch {
    -webkit-transform: translateX(90px);
    -moz-transform: translateX(90px);
    -ms-transform: translateX(90px);
    -o-transform: translateX(90px);
    transform: translateX(90px);
  }
  
  .no-js .price-switcher {
    display: none;
  }
  
  .fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
  }
  
  .gst-price {
    padding-left: 135px;
    margin-top: -10px;
  }
  
  .gst-price-top {
    padding-left: 120px;
    margin-top: 20px;
  }
  
  .h1-style{
    font-size: 32px;
      padding-top: 0px;
      padding-bottom: 00px
  }
  
    .title-price {
    margin-bottom: 0px;
    margin-top: 10px;
    text-align: center;
    font-weight: 900;
    color: #0943af !important;
  }
  
  .sub-header {
  margin-top:7px;
  margin-bottom: 10px;
  font-size: 13px;
  text-align: center;
  }
  
  .subtitle {
    margin-top: 13px;
    font-size: 15px;
    font-weight: 500;
  }
  
    .rate-year {
    display: block;
    height: 80px;
    border-width: 1px;
    border-color: rgb(85, 81, 76);
    padding-top: 13px;
    padding-bottom: 13px;
    margin-bottom: 5px;
    font-size: 22px;
    opacity: 1;
    z-index: 1000;
  }
  
  .rate-month {
    display: block;
    height:80px;
  
    border-width: 1px;
    border-color: #66615B;
    padding-top: 13px;
    padding-bottom: 0px;
    font-size: 22px;
    opacity: 1;
    z-index: 1000;
  }
  
  
  
  .subheader-container {
    height: 55px;
  }
  
  .circle-list {
    list-style-type: disc;
   
  }
  .circle-list li {
  padding-left: 0px;
  margin-left: -20px;
  }
  
  .btn-try-free{
    position: relative;
    font-weight: 600;
    font-size: 14px;
    background: rgb(7, 58, 170);
    color: #fff !important;
    text-decoration: none;
    text-transform: capitalize;
    margin-bottom: 0px;
    margin-top: 5px;
    align-self: center;
    padding:5px 20px;
    /* border-bottom: 3px rgb(8, 25, 100); */
    border-radius: 5px;
  }
  
  
  /* MEDIA for PRICE Page */
  
  @media screen and (max-width: 678.9px) {
    .container-price {
      display: flex !important;
      flex-direction: column !important;
      flex: 1;
      margin-right: 0px;
      margin-left: 0px;
      margin-top: 0px;
      
    }

    .card-price{
      margin-bottom: 20px;
    }
    .gst-price {
      padding-left: 105px !important;
      margin-top: 0px !important;
      font-size: 100%;
    }
    .gst-price-top {
      padding-left: 0px;
      /* margin-left: -30px; */
      margin-top: 20px;
      font-size: 100%;
    }
  }
  
  @media screen and (min-width:668px) {
    .gst-price {
      padding-left: 20px;
      margin-top: -10px;
      font-size: 100%;
    }
    .gst-price-top {
      padding-left: 0px;
      margin-left: -60px;
      margin-top: 0px;
      font-size: 100%;
    }
  
  
    .rate-year {
      height: 90px;
      padding-top: 5px;
      padding-bottom: 5px;
      margin-bottom: 5px;
      margin-top: 17px;
    }
    .rate-month {
      height: 90px;
      padding-top: 5px;
      padding-bottom: 5px;
      margin-bottom: 5px;
    }
  }
  
  