/**
 * Registration CTA Block CSS
 */

.register {
  padding: 100px 0;
  text-align: center;
}

.register h2 {
  color: #fff;
  margin-bottom: 30px;
}

.register p {
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
}

.register a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  width: 300px;
  background: #00C2CB;
  display: inline-block;
  text-decoration: none;
  padding: 17px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  margin-top: 40px;
  transition: all .3s;
  /* margin: 70px 0 100px; */
}

.register a:hover {
  background-color: #000928;
  transition: all .3s;
}

.register .row {
  margin-inline: 30px;
}

.register .row {
  margin-top: 70px;
  justify-content: center;
}

.register .row > div + div {
  border-left: 2px solid #00C2CB;
}

.register .text {
  max-width: 340px;
  margin: 0 auto;
  padding: 5px 0;
}

/* Center boxes when there are less than 3 items */
@media (min-width: 768px) {
  .register .col-md-4:only-child {
    width: 33.33333333%;
    margin: 0 auto;
  }

  .register .col-md-4:first-child:nth-last-child(2),
  .register .col-md-4:first-child:nth-last-child(2) ~ .col-md-4 {
    width: 33.33333333%;
  }
}

.register .text h3 {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  margin-top: 6px;
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .register p {
    font-size: 20px;
  }
  .register .text h3 {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .register {
    padding: 70px 0;
  }
  .register a {
    margin: 60px 0 80px;
  }
}

@media (max-width: 767px) {
  .register .row > div + div {
    border-top: 2px solid #00C2CB;
    border-left: 0;
  }
  .register .text {
    padding: 15px 0;
  }
  .register a {
    margin: 60px 0;
  }
}
