﻿.banner {
  position: relative;
  height: 432px;
}
@media (max-width: 767px) {
  .banner {
    height: 220px;
  }
}
.banner .image-block {
  background-repeat: no-repeat;
  background-size: cover;
}
.banner .text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}
@media (max-width: 767px) {
  .banner .text {
    align-items: center;
    text-align: center;
  }
}
.banner .text .heading {
  font-size: 48px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .banner .text .heading {
    font-size: 19px;
    margin-bottom: 15px;
  }
}
.banner .text p {
  font-size: 21px;
  font-family: "museo-slab";
  font-weight: 300;
  color: inherit;
}
@media (max-width: 767px) {
  .banner .text p {
    font-size: 14px;
  }
}
.banner.bg-blue .image-block .has-bg-image {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  width: auto;
  height: calc(100% - 65px);
  right: calc((100% - 1320px) / 2);
}
@media (max-width: 1399px) {
  .banner.bg-blue .image-block .has-bg-image {
    right: calc((100% - 1140px) / 2);
  }
}
@media (max-width: 1199px) {
  .banner.bg-blue .image-block .has-bg-image {
    right: calc((100% - 960px) / 2);
  }
}
@media (max-width: 991px) {
  .banner.bg-blue .image-block .has-bg-image {
    right: calc((100% - 720px) / 2);
  }
}
@media (max-width: 767px) {
  .banner.bg-blue .image-block .has-bg-image {
    right: unset;
    height: unset;
    width: 100%;
  }
}
