/*------------------------------------------------------------------
[CTA.CSS - Call to action shortcode styles]
[Table of contents]

1. Shared styles, layout
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
	1. Shared styles, layout
-------------------------------------------------------------------*/
.call-to-action {
  background-color: #28282c;
  padding-top: 45px;
  padding-bottom: 45px;
}
.call-to-action .icon svg {
  width: 70px;
  height: 70px;
}
.call-to-action .icon svg path {
  fill: #ff9e11;
}
.call-to-action .icon i.fa {
  font-size: 70px;
  color: #ff9e11;
}
.call-to-action h2 {
  color: #ffffff;
  margin-bottom: 0;
  font-weight: normal;
  margin-bottom: 8px;
}
.call-to-action .desc {
  font-size: 20px;
  line-height: 1.35em;
}
.call-to-action .row {
  display: table;
}
.call-to-action .col {
  display: table-cell;
  vertical-align: middle;
  float: none;
}
.call-to-action .button {
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 992px) {
  .call-to-action {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .call-to-action h2 {
    font-size: 28px;
    line-height: 1.25em;
  }
  .call-to-action .desc {
    font-size: 16px;
    line-height: 1.35em;
  }
  .call-to-action .row,
  .call-to-action .col {
    display: block;
  }
  .call-to-action .col-icon {
    display: none;
  }
  .call-to-action .button {
    width: auto;
    white-space: normal;
  }
  .call-to-action .col-button {
    margin-top: 18px;
  }
}
@media screen and (max-width: 767px) {
  .call-to-action .col-icon {
    display: none;
  }
  .call-to-action .col-button {
    margin-left: 0;
  }
}
