@font-face {
  font-family: AllertaNormal;
  src: url(../fonts/Allerta/Allerta-Regular.ttf);
}

@font-face {
  font-family: QuicksandNormal;
  src: url(../fonts/Quicksand/Quicksand-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: QuicksandSemiBold;
  src: url(../fonts/Quicksand/Quicksand-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: QuicksandBold;
  src: url(../fonts/Quicksand/Quicksand-Bold.ttf);
  font-weight: 700;
}

body {
  margin: 0;
  background-color: #fff;
  letter-spacing: 1px;
  font-family: QuicksandNormal;
  font-weight: 700;
}

/***** Helper Classes *****/
.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.no-padding-left {
  padding-left: 0;
}

.no-padding-right {
  padding-right: 0;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.flex-around {
  display: flex;
  justify-content: space-around;
}

hr {
  border-top: none;
}

hr.small {
  width: 3.5%;
}

hr.medium {
  width: 7%;
}

hr.large {
  width: 15%;
}

hr.top {
  margin-top: 10px;
  margin-bottom: 5px;
}

hr.bottom {
  margin-top: 0;
}

hr.underline {
  border-bottom: 3px solid #CF2028;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.text-normalised {
  text-align: center;
  line-height: 2;
}

.mobile-only {
  display: none;
}

.view-container {
  padding: 0 5%;
}

/***** Color Theme *****/
.dark-red {
  background-color: #711418;
}

.dark-red-texture {
  background-color: transparent;
  background: url('../images/Red_Blueprint.jpg') center center no-repeat;
  background-size: cover;
}

.bright-red {
  background-color: #CF2028;
}

.gray {
  background: url('../images/Gray_Wood.jpg') center center no-repeat;
  background-size: cover;
}

/***** Modal Styling *****/
.show .modal-dialog {
  width: 65vw;
  max-width: 65vw;
}

.modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.close:hover {
  color: #CF2028;
  opacity: 1;
}

.modal-body {
  text-align: center;
  padding: 1rem 2rem 2rem;
}

.modal-body .arrow {
  position: absolute;
  cursor: pointer;
  top: 35%;
  width: 27.5px;
  height: 27.5px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.modal-body .arrow.left {
  left: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.modal-body .arrow.right {
  right: 0;
  background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'><path d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/></svg>");
}

.modal-image {
  max-width: 100%;
  max-height: 65vh;
}

.selection-container {
  overflow: hidden;
}

.selection-container {
  overflow: hidden;
  padding: 0 15px;
}

.selection-container .col-12 {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 1rem 0;
}

.selection-container .selection-item:first-child {
  margin-left: 8px;
}

.selection-container .selection-item {
  height: 50px;
  width: 50px;
  min-width: 50px;
  margin-left: 10px;
  cursor: pointer;
}

.selection-item.active {
  box-shadow: 0 0 10px 3px #CF2028;
}

.modal-footer .btn {
  color: #fff;
}

/***** Top Banner *****/
.banner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 65px;
  position: relative;
}

.mobile-icons {
  justify-content: space-around;
  align-items: center;
}

.mobile-icons svg {
  height: 25px;
}

.mobile-icons .cls-1 {
  fill: #fff;
}

.banner .info-box {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 15px;
  color: #fff;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: all .34s ease-in-out;
}

.banner .info-box.show {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.info-box .nav-text {
  display: inline;
  color: #fafafa;
}

.info-box .info-link {
  color: #fff;
  text-decoration: underline;
}

.banner .icon {
  color: #fff;
  font-size: 25px;
}

/***** Navbar Styling *****/
.main-nav .nav-info {
  padding: 35px 0;
  border-bottom: 1.5px solid #CF2028;
}

.main-nav .logo {
  height: 75px;
}

.main-nav .slogan {
  font-size: 1.5em;
  font-family: AllertaNormal;
  color: #711418;
}

.main-nav .icon-container {
  display: flex;
  align-items: center;
  padding: 5px 0px;
}

.main-nav .icon-column {
  display: flex;
  align-items: center;
}

.main-nav .nav-icon {
  min-height: 25px;
  max-height: 35px;
  min-width: 25px;
  max-width: 35px;
  margin-right: 25px;
}

.main-nav .nav-icon[data-name="navMail"] {
  min-height: 30px;
  min-width: 30px;
}

.nav-text,
.nav-text a {
  font-size: 12px;
  color: #333;
}

.nav-text a:hover {
  color: #0056b3;
}

.nav-text.address {
  display: flex;
  align-items: center;
}

.main-nav .column-links  {
  padding-left: 0;
}

.main-nav .nav-list {
  display: flex;
  margin-top: 20px;
  margin-bottom: 0;
}

.nav-list .nav-link {
  color: #000;
  padding: 0;
  font-size: 16px;
  text-transform: uppercase;
  margin-right: 35px;
  padding-bottom: 5px;
}

.nav-list .nav-link.active {
  border-bottom: 3px solid #CF2028;
}

.nav-list .nav-link:hover {
  border-bottom: 3px solid #CF2028;
}

/***** Carousel Styling *****/
.carousel-item .carousel-img {
  margin: 0;
  width: 100%;
}

.carousel-indicators li {
  height: 20px;
  width: 20px;
  cursor: pointer;
  border-radius: 100%;
  background-color: transparent;
  border: 1px solid #fff;
}

.carousel-indicators li.active {
  background-color: #fff;
}

/***** What We Do Styling *****/
h1.title {
  font-size: 48px;
  letter-spacing: 3px;
  margin: 45px 0;
  text-align: center;
  font-family: AllertaNormal;
  font-weight: 700;
}

.thumbnail-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.thumbnail-column:first-child {
  padding-left: 30px;
}

.thumbnail-column:last-child {
  padding-right: 30px;
}

.thumbnail-column .wwd-thumbnail {
  width: 100%;
}

.thumbnail-column .column-title {
  margin: 30px 0;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: QuicksandBold;
  font-weight: 700;
  text-transform: uppercase;
}

.thumbnail-column .wwd-description {
  padding: 0 15px;
}

/***** Home Page Bottom Banner *****/
.home-bottom-banner .banner {
  height: auto;
  justify-content: center;
  margin-top: 45px;
}

.banner .action-title {
  text-transform: uppercase;
  text-align: center;
  margin: 35px 0;
  color: #fff;
  letter-spacing: 2px;
  font-family: QuicksandBold;
  font-weight: 700;
}

.banner .action-button {
  border: 1px solid #fff;
  border-radius: 5px;
  background-color: transparent;
  display: inline-block;
  margin-left: 25px;
  padding: 0;
}

.banner .action-link {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 4px 18px;
}

.banner .action-button:hover .action-link {
  background-color: #9B9B9B;
}

/***** Footer styles *****/
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 45px;
}

footer .footer-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-container .footer-column {
  display: inline-block;
  color: #000;
}

.footer-column:first-child {
  text-align: center;
  margin-right: 45px;
}

.footer-column:first-child .fa:last-child {
  margin-right: 0;
}

footer .logo {
  height: 100px;
}

footer .fa {
  font-size: 28px;
  margin-right: 35px;
  margin-top: 20px;
}

.footer-column .footer-content {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 35px;
}

.footer-column .footer-content:first-child {
  margin-top: 0;
}

.footer-content .nav-icon {
  height: 25px;
  width: 25px;
  margin-right: 15px;
}

.footer-content .nav-icon[data-name="navMail"] {
  height: 30px;
  width: 30px;
}

.footer-content .nav-text {
  letter-spacing: .5px;
}


/***** Phones *****/
@media only screen and (max-width: 599px) {
  hr.small {
    width: 13.5%;
  }

  hr.medium {
    width: 20%;
  }

  h1.title {
    font-size: 36px;
    margin: 25px 0;
  }

  .mobile-icons.mobile-only {
    display: flex;
  }

  .main-nav .icon-container {
    margin-bottom: 15px;
  }

  .nav-list .nav-link {
    text-transform: initial;
    margin-bottom: 25px;
    flex: initial;
  }

  .thumbnail-column:first-child {
    padding-left: 15px;
  }

  .thumbnail-column:last-child {
    padding-right: 15px;
  }

  .thumbnail-column .column-title {
    margin: 15px 0;
    height: initial;
  }

  .home-bottom-banner .banner {
    margin-top: 0;
  }

  .icon-container.hide-mobile,
  .hide-mobile {
    display: none;
  }

  .mobile-only, .show-large-only.mobile-only {
    display: block;
  }

  .show-large-only {
    display: none;
  }

  .main-nav .logo {
    height: 85px;
  }

  .logo-column {
    text-align: center;
    margin-bottom: 25px;
  }
  .icon-container {
    display: none;
  }

  .modal.show .modal-dialog {
    width: 95vw;
    max-width: 95vw;
  }

  .modal-body {
    padding-bottom: 0;
  }

  .modal-body .arrow {
    top: 27.5%;
  }

  .modal-image {
    max-height: 65vh;
  }

  .selection-container {
    flex-flow: row nowrap;
    overflow-x: scroll;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .selection-container .selection-item {
    height: 100px;
    margin: 15px 0 15px 10px;
  }

  .modal-footer {
    padding-top: 0;
  }

  .logo-column {
    margin: 15px 0;
  }

  .icon-column {
    margin: 5px 0;
  }

  .banner {
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .banner .action-title {
    letter-spacing: 1.5px;
    font-size: 28px;
    margin: 15px 0;
  }

  .banner .action-button {
    margin-left: 0;
    margin-bottom: 15px;
  }

  p.text-normalised {
    padding: 0 5%;
  }

  footer {
    padding: 15px;
  }

  footer .footer-container {
    flex-flow: row wrap;
  }

  .footer-column:first-child {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-column .footer-content {
    justify-content: center;
  }

  footer .fa {
    font-size: 20px;
  }

  footer .logo {
    height: 65px;
  }
}

/***** Tablets/Small Devices *****/
@media only screen and (min-width: 600px) and (max-width: 1199px) {
  .show-large-only {
    display: none;
  }

  .main-nav {
    padding-top: 25px;
  }

  .nav-text {
    font-size: 14px;
  }

  .logo-column {
    text-align: center;
    margin-bottom: 25px;
  }

  .icon-column {
    margin-bottom: 25px;
  }

  .thumbnail-column {
    flex: initial
  }

  .thumbnail-column:first-child {
    padding-left: 15px;
  }

  .thumbnail-column:last-child {
    padding-right: 15px;
  }

  .show .modal-dialog {
    width: 85vw;
    max-width: 85vw;
  }
}

@media only screen and (min-width: 1200px) {
  .hide-large-only {
    display: none;
  }

  .show-large-only {
    display: initial;
  }

  .logo-column {
    text-align: left;
    padding-left: 0;
  }
}