p {
  margin-bottom: 15px; }
  p:last-child {
    margin-bottom: 0; }

.master-wrapper-page {
  background-color: white; }
  @media (max-width: 1000px) {
    .master-wrapper-page {
      margin-top: 205px; } }

.header {
  margin-bottom: 0; }

.container-sm {
  display: block;
  width: 100%;
  margin: 0 auto; }
  @media (min-width: 1001px) {
    .container-sm {
      max-width: 600px; } }

.container {
  display: block;
  width: 100%;
  margin: 0 auto; }
  @media (min-width: 1001px) {
    .container {
      max-width: 980px; } }
  @media (min-width: 1281px) {
    .container {
      max-width: 1200px; } }

.container-lg {
  display: block;
  width: 100%;
  margin: 0 auto; }
  @media (min-width: 1001px) {
    .container-lg {
      max-width: 980px; } }
  @media (min-width: 1281px) {
    .container-lg {
      max-width: 1200px; } }
  @media (min-width: 1441px) {
    .container-lg {
      max-width: 1400px; } }

.p-x-sm {
  padding-left: 15px;
  padding-right: 15px; }

.m-lg {
  margin-top: 45px;
  margin-bottom: 45px; }

.m-t-lg {
  margin-top: 45px; }

.m-b-lg {
  margin-bottom: 45px; }

.btn-outline {
  text-transform: uppercase !important;
  background-color: transparent !important; }
  .btn-outline-lg {
    padding: 6px 30px;
    font-size: 18px; }
  .btn-outline-white {
    color: white;
    border: 2px solid white !important; }

.banner {
  background-size: cover;
  background-position: center; }
  .banner__content {
    position: relative;
    width: 100%;
    color: white;
    padding: 120px 15px;
    background-color: rgba(49, 92, 136, 0.9);
    text-align: center; }
    @media (min-width: 576px) {
      .banner__content {
        width: 50%;
        text-align: left; } }
    .banner__content:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      width: 200px;
      height: 100%;
      transform: translateX(100%);
      background: linear-gradient(to right, rgba(49, 92, 136, 0.9), rgba(49, 92, 136, 0)); }
    .banner__content--right {
      margin-left: auto; }
      @media (min-width: 576px) {
        .banner__content--right {
          text-align: right; } }
      .banner__content--right:after {
        left: 0;
        right: initial;
        transform: translateX(-100%);
        background: linear-gradient(to left, rgba(49, 92, 136, 0.9), rgba(49, 92, 136, 0)); }
    .banner__content p {
      opacity: 0.6; }
    .banner__content .btn {
      margin-top: 30px; }
  .banner__container {
    max-width: 350px;
    margin: 0 auto; }
  .banner__heading {
    font-size: 40px;
    margin-bottom: 30px;
    color: white;
    text-transform: uppercase; }

.service-intro {
  text-align: center; }
  .service-intro__heading {
    font-size: 40px;
    margin-bottom: 30px;
    color: #474747;
    text-transform: uppercase; }

.cta {
  text-decoration: none; }
  .cta img {
    display: block;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 45px; }

.services__heading {
  color: #474747;
  text-align: center;
  margin-bottom: 45px; }

.services .item-grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: center; }

.service-item {
  display: block;
  margin-bottom: 45px; }
  .service-item__img {
    position: relative;
    box-shadow: 0 1px 29px rgba(0, 0, 0, 0.09); }
    .service-item__img img {
      display: block;
      width: 100%;
      height: auto; }
  .service-item__overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(49, 92, 136, 0.6);
    opacity: 0;
    transition: opacity 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px; }
    .service-item__overlay .btn {
      padding: 10px 30px;
      font-size: 18px; }
  .service-item__caption {
    padding: 15px 15px 0 15px;
    text-align: center; }
  .service-item__title {
    font-size: 18px;
    text-transform: uppercase;
    transition: color 300ms ease; }
  .service-item:hover .service-item__overlay {
    opacity: 1; }
  .service-item:hover .service-item__title {
    color: #c63893; }
