﻿@charset "UTF-8";
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  outline: none;
  color: #EF7303;
}

.is-focused {
  transition: none !important;
  outline: 3px solid #000 !important;
}

input[type=submit], button {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  outline: none;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

sup {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
}

input[type=search] {
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

/*select {
	outline: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: "";
	-webkit-appearance: none;

	&::-ms-expand {
		display: none;
	}
}*/
header {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
}
header.solid-white {
  background: white;
}
header#main-header {
  position: fixed;
  z-index: 1000;
  margin: 0;
  width: 100%;
  top: 0;
}
header.simple-header {
  position: absolute;
  display: block;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  top: 30px;
}
header.simple-header .logo {
  margin-left: 50px;
  display: inline-block;
}
header.simple-header .logo img {
  height: auto;
  width: 100%;
}
header .mobile-nav {
  position: absolute;
  right: 30px;
  top: 9px;
  display: flex;
  column-gap: 10px;
  z-index: 200;
}
@media (min-width: 901px) {
  header .mobile-nav {
    display: none;
  }
}
header .mobile-nav .search-button-expander {
  display: block;
  padding: 2.5px;
  border-radius: 2px;
  background-color: transparent;
  transition: background-color 0.3s;
}
@media (max-width: 550px) {
  header .mobile-nav .search-button-expander {
    z-index: 105;
  }
}
@media (min-width: 901px) {
  header .mobile-nav .search-button-expander {
    display: none;
  }
}
header .mobile-nav .search-button-expander img {
  width: 23px;
}
header .mobile-nav .menu-btn {
  cursor: pointer;
  padding: 13px 10px;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F0801B;
}
header .mobile-nav .menu-btn .toggle {
  display: block;
  cursor: pointer;
}
header .mobile-nav .menu-btn .toggle input {
  display: none;
}
header .mobile-nav .menu-btn .toggle input + div {
  width: 20px;
  height: 14px;
  position: relative;
}
header .mobile-nav .menu-btn .toggle input + div div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.5s ease;
}
header .mobile-nav .menu-btn .toggle input + div div span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
}
header .mobile-nav .menu-btn .toggle input + div div span:first-child {
  top: 0;
}
header .mobile-nav .menu-btn .toggle input + div div span:first-child:before, header .mobile-nav .menu-btn .toggle input + div div span:first-child:after {
  top: 0;
}
header .mobile-nav .menu-btn .toggle input + div div span:last-child {
  bottom: 0;
}
header .mobile-nav .menu-btn .toggle input + div div span:last-child:before, header .mobile-nav .menu-btn .toggle input + div div span:last-child:after {
  bottom: 0;
}
header .mobile-nav .menu-btn .toggle input + div div span:before, header .mobile-nav .menu-btn .toggle input + div div span:after {
  content: "";
  display: block;
  width: 47%;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  position: absolute;
  -webkit-backface-visibility: hidden;
  transition: transform 0.5s ease, border-radius 0.3s ease;
}
header .mobile-nav .menu-btn .toggle input + div div span:before {
  left: 0;
  transform-origin: 0 50%;
  transform: translate(1px, 0) scaleX(1.1);
}
header .mobile-nav .menu-btn .toggle input + div div span:after {
  right: 0;
  transform-origin: 100% 50%;
  transform: translate(-1px, 0) scaleX(1.1);
}
header .mobile-nav .menu-btn .toggle input + div svg {
  display: block;
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
  width: 44px;
  height: 44px;
  stroke-linecap: round;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -22px 0 0 -22px;
  stroke-dasharray: 0 82.801 8 82.801;
  stroke-dashoffset: 82.801;
  transform-origin: 50% 50%;
  -webkit-backface-visibility: hidden;
  transform: scale(1);
  transition: stroke-dashoffset 0.5s ease, stroke-dasharray 0.6s ease, transform 0.5s ease;
}
header .mobile-nav .menu-btn .toggle input + div svg:nth-child(3) {
  transform: rotate(180deg) scale(1);
}
header .mobile-nav .menu-btn .toggle input:checked + div div {
  transform: rotate(90deg);
}
header .mobile-nav .menu-btn .toggle input:checked + div div span:first-child:before {
  transform: rotate(45deg) translate(2.2px, -3px) scaleX(1.05);
}
header .mobile-nav .menu-btn .toggle input:checked + div div span:first-child:after {
  transform: rotate(-45deg) translate(-2.2px, -3px) scaleX(1.05);
}
header .mobile-nav .menu-btn .toggle input:checked + div div span:last-child:before {
  transform: rotate(-45deg) translate(2.2px, 3px) scaleX(1.05);
}
header .mobile-nav .menu-btn .toggle input:checked + div div span:last-child:after {
  transform: rotate(45deg) translate(-2.2px, 3px) scaleX(1.05);
}
header .mobile-nav .menu-btn .toggle input:checked + div svg {
  stroke-dashoffset: 62;
  stroke-dasharray: 0 82.801 62 82.801;
  transform: rotate(90deg);
}
header .mobile-nav .menu-btn .toggle input:checked + div svg:nth-child(3) {
  transform: rotate(270deg);
}
@media (max-width: 900px) {
  header .mobile-nav .menu-btn.active {
    background: transparent;
  }
  header .mobile-nav .menu-btn.active .toggle input + div div span:before, header .mobile-nav .menu-btn.active .toggle input + div div span:after {
    background: #000;
  }
  header .mobile-nav .menu-btn.active .toggle input + div svg {
    stroke: #000;
  }
}
header .header-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  header .header-contents {
    height: 60px;
  }
}
header .header-contents .logo {
  width: 280px;
  display: inline-block;
  margin: 9px 0;
}
@media (max-width: 1080px) {
  header .header-contents .logo {
    width: 200px;
    margin-top: 12px;
  }
}
header .header-contents .logo img {
  height: auto;
  width: 100%;
}
@media (max-width: 900px) {
  header .header-contents .right {
    width: 100%;
    padding-top: 0;
    height: 0px;
  }
}
header .header-contents .right .call-now {
  margin: 10px 0 14px;
}
@media (max-width: 1180px) {
  header .header-contents .right .call-now {
    margin-bottom: 34px;
  }
}
@media (max-width: 900px) {
  header .header-contents .right .call-now {
    display: none;
  }
}
header .header-contents .right .call-now strong {
  color: #EF7303;
}
header .header-contents .right nav {
  margin: 20px 0 0 0;
}
@media (max-width: 1180px) {
  header .header-contents .right nav {
    margin-right: 0;
  }
}
header .header-contents .right nav > ul {
  padding: 0;
  margin: 0;
}
header .header-contents .right nav > ul > li {
  display: inline-block;
  margin-left: 1px;
}
header .header-contents .right nav > ul > li.menu-search-btn {
  margin-left: 40px;
}
header .header-contents .right nav > ul > li > a {
  display: inline-block;
  color: #000;
  padding: 12px 10px 22px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  height: 60px;
  font-size: 16px;
  font-size: 1rem;
  -moz-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}
@media (max-width: 1220px) {
  header .header-contents .right nav > ul > li > a {
    font-size: 15px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 1190px) {
  header .header-contents .right nav > ul > li > a {
    font-size: 14px;
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (max-width: 1080px) {
  header .header-contents .right nav > ul > li > a {
    font-size: 12px;
    padding-left: 4px;
    padding-right: 4px;
    height: 47px;
  }
}
@media (min-width: 901px) {
  header .header-contents .right nav > ul > li > a:hover {
    background: #EF7303;
    color: #fff;
  }
}
header .header-contents .right nav > ul > li .dropdown {
  background: #EF7303;
  position: absolute;
  z-index: 110;
  width: 100%;
  top: 100%;
  left: 0;
  text-align: left;
  font-size: 0;
  padding: 40px 50px;
  opacity: 0;
  z-index: -1;
  display: none;
  border-bottom: 1px solid #384042;
  box-shadow: 0 15px 20px -10px #384042;
  -moz-transition: opacity 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}
@media (max-width: 901px) {
  header .header-contents .right nav > ul > li .dropdown {
    border-bottom: none;
    box-shadow: none;
  }
}
header .header-contents .right nav > ul > li .dropdown .container {
  text-align: center;
  display: table;
  padding: 0;
}
header .header-contents .right nav > ul > li .dropdown .second-lvl, header .header-contents .right nav > ul > li .dropdown > ul {
  padding: 10px 24px 0;
  margin: 0;
  width: 20%;
  display: table-cell;
  vertical-align: top;
  text-align: left;
  border-right: 1px solid #e86e00;
}
header .header-contents .right nav > ul > li .dropdown .second-lvl:first-child, header .header-contents .right nav > ul > li .dropdown > ul:first-child {
  padding-left: 0;
}
header .header-contents .right nav > ul > li .dropdown .second-lvl:last-child, header .header-contents .right nav > ul > li .dropdown > ul:last-child {
  border-right: none;
}
header .header-contents .right nav > ul > li .dropdown .second-lvl > li, header .header-contents .right nav > ul > li .dropdown > ul > li {
  display: block;
}
header .header-contents .right nav > ul > li .dropdown .second-lvl > li a.more, header .header-contents .right nav > ul > li .dropdown > ul > li a.more {
  display: inline-block;
  padding: 4px 33px;
  min-width: 145px;
}
@media (max-width: 900px) {
  header .header-contents .right nav > ul > li .dropdown .second-lvl > li a.more, header .header-contents .right nav > ul > li .dropdown > ul > li a.more {
    margin-left: 20px;
  }
}
header .header-contents .right nav > ul > li .dropdown .second-lvl > li > div.introtitle, header .header-contents .right nav > ul > li .dropdown > ul > li > div.introtitle {
  display: inline-block;
  font-size: 19px;
  line-height: 1.3em;
  color: white;
  padding: 4px 10px;
  font-weight: 700;
  margin-bottom: 20px;
  background-color: #384042;
  border: 2px solid #384042;
  width: min-content;
  min-width: 145px;
}
header .header-contents .right nav > ul > li .dropdown .second-lvl > li > div.introsummary, header .header-contents .right nav > ul > li .dropdown > ul > li > div.introsummary {
  font-size: 16px;
  padding-top: 20px;
  padding-bottom: 13px;
  line-height: 1.3em;
}
header .header-contents .right nav > ul > li .dropdown .second-lvl > li > a, header .header-contents .right nav > ul > li .dropdown > ul > li > a {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 19px;
  font-size: 1.1875rem;
  background: #384042;
  border: 2px solid #384042;
  color: #fff;
  padding: 4px 10px;
  font-weight: 700;
  text-decoration: none;
  -moz-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}
header .header-contents .right nav > ul > li .dropdown .second-lvl > li > a:hover, header .header-contents .right nav > ul > li .dropdown > ul > li > a:hover {
  background: #fff;
  color: #384042;
}
header .header-contents .right nav > ul > li .dropdown .second-lvl > li > a.alt, header .header-contents .right nav > ul > li .dropdown > ul > li > a.alt {
  background: #fff;
  color: #384042;
}
header .header-contents .right nav > ul > li .dropdown .second-lvl > li > a.alt:hover, header .header-contents .right nav > ul > li .dropdown > ul > li > a.alt:hover {
  background: #384042;
  color: #fff;
}
header .header-contents .right nav > ul > li .dropdown .third-lvl, header .header-contents .right nav > ul > li .dropdown > ul > li > ul {
  padding: 0 9px;
  margin: 0;
}
header .header-contents .right nav > ul > li .dropdown .third-lvl > li, header .header-contents .right nav > ul > li .dropdown > ul > li > ul > li {
  display: block;
  margin-bottom: 10px;
}
header .header-contents .right nav > ul > li .dropdown .third-lvl > li > a, header .header-contents .right nav > ul > li .dropdown > ul > li > ul > li > a {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
}
@media (min-width: 901px) {
  header .header-contents .right nav > ul > li .dropdown .third-lvl > li > a:hover, header .header-contents .right nav > ul > li .dropdown > ul > li > ul > li > a:hover {
    text-decoration: underline;
  }
}
@media (min-width: 901px) {
  header .header-contents .right nav > ul > li.active > a {
    background: #EF7303;
    color: #fff;
  }
  header .header-contents .right nav > ul > li.active .dropdown {
    opacity: 1;
    display: block;
  }
}
header .header-contents .right nav > ul > li.menu-search-btn span {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url("/images/search-icon.svg");
  background-size: cover;
  padding-top: 3px;
  cursor: pointer;
}
@media (max-width: 900px) {
  header .header-contents .right nav {
    text-align: left;
    opacity: 0;
    padding: 20px 25px 30px;
    background: #fff;
    position: fixed;
    z-index: 100;
    left: -100%;
    top: 34px;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  header .header-contents .right nav.open {
    opacity: 1;
  }
  header .header-contents .right nav.on-screen {
    left: 0;
    z-index: 105;
  }
  header .header-contents .right nav > ul > li {
    position: relative;
  }
  header .header-contents .right nav > ul > li > a {
    padding-right: 40px !important;
  }
  header .header-contents .right nav > ul > li .drop-arrow {
    cursor: pointer;
    position: absolute;
    top: 11px;
    right: 0;
    background: url(/Images/orange-arrow-down.png) no-repeat center;
    background-size: 30px 30px;
    height: 30px;
    width: 30px;
  }
  header .header-contents .right nav > ul > li .drop-arrow.active {
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
  }
  header .header-contents .right nav ul li {
    display: block;
    border-bottom: 1px solid #DDDEDF;
  }
  header .header-contents .right nav ul li:last-child {
    border-bottom: none;
  }
  header .header-contents .right nav ul li a {
    padding: 14px 0;
    font-size: 18px;
    font-size: 1.125rem;
  }
  header .header-contents .right nav ul li .dropdown {
    display: none;
    background: #fff;
    padding-left: 12px;
    padding: 0;
    opacity: 1;
    z-index: 1;
    position: relative;
  }
  header .header-contents .right nav ul li .dropdown .container {
    display: block;
  }
  header .header-contents .right nav ul li .dropdown ul, header .header-contents .right nav ul li .dropdown .second-lvl, header .header-contents .right nav ul li .dropdown .third-lvl {
    display: block;
    float: none;
    width: 100%;
  }
  header .header-contents .right nav ul li .dropdown ul li a, header .header-contents .right nav ul li .dropdown .second-lvl li a, header .header-contents .right nav ul li .dropdown .third-lvl li a {
    color: #000;
  }
  header .header-contents .right nav ul li .dropdown .second-lvl {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    border-right: none;
  }
  header .header-contents .right nav ul li .dropdown .second-lvl > li {
    border-bottom: none;
    margin: 16px 0;
  }
  header .header-contents .right nav ul li .dropdown .second-lvl > li > a {
    color: #fff;
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 12px;
  }
  header .header-contents .right nav ul li .dropdown .third-lvl {
    padding-left: 12px;
  }
  header .header-contents .right nav ul li .dropdown .third-lvl > li {
    padding-bottom: 10px;
  }
}
header #searchBarForm {
  display: none;
  padding: 5px 0 10px 0;
}
header #searchBarForm .searchbar {
  display: flex;
  justify-content: center;
  position: relative;
}
header #searchBarForm .searchbar .main-inputs {
  height: 30px;
  width: 100%;
  display: flex;
}
@media (min-width: 900px) {
  header #searchBarForm .searchbar .main-inputs {
    max-width: 300px;
  }
}
header #searchBarForm .searchbar .main-inputs input {
  height: 100%;
  width: 100%;
  padding: 6px 12px;
  color: #555;
  border-radius: 0;
  font-family: sans-serif, arial;
}
header #searchBarForm .searchbar .main-inputs .fa-search {
  background: #000;
  color: #fff;
  height: 100%;
  vertical-align: top;
  width: 30px;
  margin-left: -1px;
  padding: 0;
}
header #searchBarForm .searchbar .main-inputs .fa-search:hover {
  color: #EF7303;
}
header #searchBarForm .searchbar .dropdown {
  width: 300px;
  position: absolute;
  text-align: left;
}
@media (max-width: 900px) {
  header #searchBarForm .searchbar .dropdown {
    width: 100%;
  }
}
header #searchBarForm .searchbar .dropdown .ui-autocomplete {
  left: 0 !important;
}

@media (max-width: 767px) {
  .visible-xs {
    margin-top: 82px;
  }
}
.date-form-container {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.date-form-container select {
  flex-grow: 1;
  margin: 0 2px;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
}

header .header-contents .right #searchBarForm.show-search .searchbar div {
  text-align: center;
}

/*.container-fluid.bodyContainer.content.noheader {
	margin-top: 80px;

	@media (max-width: $tablet) {
		margin-top: 60px;
	}
}*/
.desktop-menu-close-btn {
  width: 28px;
  height: 28px;
  background: red;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 94px;
  right: 10px;
  z-index: 111;
  background: url(/images/menu-close-btn.jpg) no-repeat center center;
}
@media (max-width: 1080px) {
  .desktop-menu-close-btn {
    top: 80px;
  }
}

body {
  margin: 0;
  padding: 0;
  color: #1D1D1B;
  background-color: #fff;
  font-family: sans-serif, arial;
  font-weight: normal;
  overflow-x: hidden;
  font-size: 16px;
  font-size: 1rem;
}

div#hs-eu-cookie-confirmation {
  width: 287px !important;
  left: 160px !important;
  bottom: 10px !important;
  top: unset !important;
  border: 1px solid #cbd6e2 !important;
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner {
  padding: 10px !important;
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p {
  margin: 0px !important;
}

.container {
  max-width: 1250px;
  padding: 0 40px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }
}
.container.home-intro .lead {
  margin: 0;
  padding: 14px 0;
}

.inner-container + .inner-container {
  clear: both;
  padding: 10px 0 0;
}

.row {
  margin: 0;
}
.row:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}

p {
  font-weight: 400;
  line-height: 26px;
  line-height: 1.625rem;
}

.text-center {
  text-align: center;
}
.text-center .third {
  float: none;
  display: inline-block;
}

.text-right {
  text-align: right;
}

.padding-block {
  padding: 0 15px;
}

.btn-orange, .moreBox {
  position: relative;
  display: inline-block;
  margin-top: 0;
  overflow: hidden;
  background-color: #EF7303;
  color: #fff;
  border: 2px solid #EF7303;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 16px 10px;
  -moz-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}
@media (max-width: 1024px) {
  .btn-orange, .moreBox {
    font-size: 16px;
    font-size: 1rem;
    padding: 6px 12px 7px;
  }
}
@media (max-width: 550px) {
  .btn-orange, .moreBox {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.btn-orange:hover, .moreBox:hover {
  text-decoration: none;
  background-color: #fff;
  color: #F0801B;
}
.btn-orange.large, .moreBox.large {
  font-size: 20px;
  font-size: 1.25rem;
  padding: 10px 50px;
}
.btn-orange.round, .moreBox.round {
  border-radius: 6px;
  border-top: 3px solid #ffa14b;
  border-bottom: 3px solid #ca6202;
  border-left: 3px solid #ffa14b;
  border-right: 3px solid #ca6202;
}

.btn-grey, .readMore, .findOutMore, #homeQuoteRequestForm button[type=submit] {
  position: relative;
  display: inline-block;
  margin-top: 0;
  overflow: hidden;
  background-color: #384042;
  color: #fff;
  border: 2px solid #384042;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 16px 10px;
  -moz-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}
@media (max-width: 1024px) {
  .btn-grey, .readMore, .findOutMore, #homeQuoteRequestForm button[type=submit] {
    font-size: 16px;
    font-size: 1rem;
    padding: 6px 12px 7px;
  }
}
@media (max-width: 550px) {
  .btn-grey, .readMore, .findOutMore, #homeQuoteRequestForm button[type=submit] {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.btn-grey:hover, .readMore:hover, .findOutMore:hover, #homeQuoteRequestForm button[type=submit]:hover {
  text-decoration: none;
  background-color: #fff;
  color: #384042;
}

.btm-logos {
  padding: 44px 0;
  text-align: center;
  padding-bottom: 30px;
}
.btm-logos h2 {
  display: inline-block;
  margin: 0 0 10px;
  padding-bottom: 6px;
  font-size: 30px;
  font-size: 1.875rem;
  text-transform: none;
  font-weight: 600;
  color: #353535;
  border-bottom: 3px solid #EF7303;
}
@media (max-width: 900px) {
  .btm-logos h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media (max-width: 550px) {
  .btm-logos h2 {
    font-size: 26px;
    font-size: 1.625rem;
    padding-bottom: 4px;
  }
}
.btm-logos .accred-logos {
  padding-top: 30px;
}
@media (max-width: 480px) {
  .btm-logos .accred-logos {
    display: grid;
    grid-template-columns: 95px 95px;
    justify-content: center;
  }
}
.btm-logos a, .btm-logos span {
  display: inline-block;
  margin: 0 14px;
  overflow: hidden;
  margin-bottom: 15px;
}
@media (max-width: 550px) {
  .btm-logos a, .btm-logos span {
    margin: 0 10px;
    margin-bottom: 15px;
  }
}
.btm-logos a img, .btm-logos span img {
  max-height: 68px;
}
@media (max-width: 900px) {
  .btm-logos a img, .btm-logos span img {
    max-height: 50px;
  }
}
@media (max-width: 550px) {
  .btm-logos a img, .btm-logos span img {
    max-height: 38px;
  }
}

.btn-rounded {
  border-radius: 5px !important;
}

.bodyContainer {
  /*padding-top: 20px;*/
  padding-bottom: 20px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .bodyContainer {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.bodyContainer a.fakeHeading:hover {
  color: #EF7303;
}
.bodyContainer.content .container {
  position: relative;
  min-height: 265px;
  padding-bottom: 0px;
  background-color: #fff;
}
.bodyContainer main article img {
  max-width: 100%;
  height: auto;
}

.pagination .pagePrev, .pagination .pageNext {
  color: #1D1D1B;
  background-color: #DDDEDF;
  border: none;
  margin: 0 2px;
  font-weight: bold;
}
.pagination .pageItem {
  color: #1D1D1B;
  background-color: #DDDEDF;
  border: none;
  margin: 0 2px;
  font-weight: bold;
}
.pagination .pageItem.pageCurrent {
  color: #fff;
  background-color: #EF7303;
}
.half {
  width: 50%;
  float: left;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .half {
    width: 100%;
    float: none;
    padding: 0;
  }
}
.half .row {
  margin-left: -15px;
  margin-right: -15px;
}
@media (max-width: 767px) {
  .half .row {
    margin-left: 0;
    margin-right: 0;
  }
}
.half .button-right {
  position: relative;
  padding-right: 160px;
}
@media (max-width: 767px) {
  .half .button-right {
    padding-right: 0;
  }
}
.half .button-right button[type=submit] {
  top: 0;
  right: 0;
}

.third {
  width: 33.333%;
  float: left;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .third {
    width: 100%;
    float: none;
    padding: 0;
  }
}

.fifth {
  position: relative;
  width: 20%;
  float: left;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .fifth {
    width: 100%;
    float: none;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .hidden-sm {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none;
  }
}
.form-area {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px 20px;
}
@media (max-width: 767px) {
  .form-area {
    margin: 0 -25px;
    padding: 20px 25px 20px;
  }
}
.form-area .columnHeading {
  font-size: 14px;
  font-size: 0.875rem;
}
.form-area .pad-sides {
  padding: 0 15px;
}
@media (max-width: 767px) {
  .form-area .pad-sides {
    padding: 0;
  }
}
.form-area .button-wrapper {
  max-width: 240px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .form-area .button-wrapper {
    max-width: 100%;
  }
}
.form-area .half .half .row {
  margin: 0 -15px;
}
.form-area .half .half .half {
  padding: 0 15px;
  width: 50%;
  float: left;
}
.form-area .form-wrap {
  margin: 0;
}
.form-area .form-wrap .row .half:nth-child(1) {
  padding-right: 40px;
  border-right: 1px solid #ef7303;
}
@media (max-width: 767px) {
  .form-area .form-wrap .row .half:nth-child(1) {
    padding: 0;
    border-right: none;
  }
}
.form-area .form-wrap .row .half:nth-child(2) {
  padding-left: 40px;
}
@media (max-width: 767px) {
  .form-area .form-wrap .row .half:nth-child(2) {
    padding: 0;
  }
}
.form-area .form-wrap .btn-orange {
  margin-top: 30px;
}
.form-area .material-list h2 {
  padding-left: 15px;
}
@media (max-width: 767px) {
  .form-area .material-list h2 {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .form-area .material-list .half .half {
    width: 100%;
    float: none;
  }
  .form-area .material-list .half .half .half {
    width: 50%;
    float: left;
    text-align: left;
  }
}
.form-area .packName .hidden-sm {
  padding: 5px 0 !important;
}
.form-area #packageContainer:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
@media (max-width: 767px) {
  .form-area #packageContainer {
    margin: 0 -15px;
  }
}
@media (max-width: 767px) {
  .form-area .package {
    margin-bottom: 30px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.grecaptcha-badge {
  bottom: 96px !important;
}

.visible-sm2 {
  display: none;
}
@media (max-width: 992px) {
  .visible-sm2 {
    display: block;
  }
}

@media (max-width: 992px) {
  .ratesBox {
    text-align: left !important;
  }
}
.formContentQuoteOuter .edit-my-quote-btn a {
  display: none;
}

.formContentQuoteOuterAddPad {
  min-height: 85px;
}
@media (max-width: 1080px) {
  .formContentQuoteOuterAddPad {
    min-height: 50px;
  }
}

@media (max-width: 767px) {
  .formContentQuoteOuter {
    margin-bottom: 0px !important;
    min-height: 0px !important;
  }
  .formContentQuoteOuter.force-mobile-form-closed #FormContentQuoteWrap .edit-my-quote-btn a {
    background-color: #EF7303;
    color: #fff !important;
    padding: 5px 0 2px 0;
    display: block;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: bold;
    transition: text-shadow ease 0.5s;
    border-top: 3px solid #ffa14b;
    border-bottom: 3px solid #ca6202;
    border-left: 3px solid #ffa14b;
    border-right: 3px solid #ca6202;
  }
  .formContentQuoteOuter.force-mobile-form-closed #FormContentQuoteWrap .form-outer {
    display: none;
    /*				form {
    	margin-top: 15px !important;
    }*/
  }
  .quoteTabs {
    margin-top: 0px !important;
  }
}
.container-outer-two-column .row .container {
  display: flex;
  flex-direction: column; /* do not change this, slick slider does not work if row, cannot determine width */
  gap: 40px;
}
.container-outer-two-column .row .container:has(> :nth-child(2)) {
  flex-direction: row;
}
@media (max-width: 900px) {
  .container-outer-two-column .row .container {
    flex-direction: column;
  }
}
.container-outer-two-column .row .container main {
  flex: 1;
}
.container-outer-two-column .row .container main .titlesplit {
  display: flex;
  align-items: center;
}
.container-outer-two-column .row .container main .titlesplit .contactbutton {
  display: block;
  width: 290px;
  margin-top: 0px;
}
@media (max-width: 900px) {
  .container-outer-two-column .row .container main .titlesplit .contactbutton {
    display: none;
  }
}
.container-outer-two-column .row .container main .titlesplit .contactbutton a {
  width: 100%;
  text-align: center;
  margin: auto;
  max-width: 259px;
  display: flex;
  padding-left: 47px;
  padding-right: 52px;
  font-size: 1.125rem;
  padding-top: 18px;
  padding-bottom: 20px;
}
.container-outer-two-column .row .container main .titlesplit .contactbutton a svg {
  width: 100px;
  height: 50px;
  fill: #fff;
  margin-bottom: 0px;
}
.container-outer-two-column .row .container main .contactbutton {
  display: none;
  margin-top: 25px;
}
@media (max-width: 900px) {
  .container-outer-two-column .row .container main .contactbutton {
    display: block;
  }
}
.container-outer-two-column .row .container main .contactbutton a {
  width: 90%;
  text-align: center;
  margin: auto;
  max-width: 450px;
  display: block;
}
.container-outer-two-column .row .container main .contactbutton a svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-bottom: -4px;
}
.container-outer-two-column .row .container main .contactbutton a:hover svg {
  fill: #EF7303;
}
.container-outer-two-column .row .container .side-contact-form {
  width: 350px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .container-outer-two-column .row .container .side-contact-form {
    display: none;
  }
}
.container-outer-two-column .row .container .side-contact-form .form-area {
  padding: 20px 35px;
}
.container-outer-two-column .row .container .side-contact-form .form-area > .row {
  padding: 0px;
}
.container-outer-two-column .row .container .side-contact-form .form-area > .row .form-wrap {
  padding: 0;
  margin: 0;
}
.container-outer-two-column .row .container .side-contact-form .form-area > .row .form-wrap .half {
  width: 100%;
  float: none;
  padding: 0px;
  border: none;
}
.container-outer-two-column .row .container .side-contact-form .form-area > .row .form-wrap .half h2 {
  margin: 0 0 10px 0;
}

.businessQuoteForm .col-xs-6 {
  width: 120px !important;
  padding-right: 8px !important;
}
@media (max-width: 991px) {
  .businessQuoteForm .col-xs-6 {
    padding-left: 0px;
    padding-right: 0px !important;
  }
}
@media (max-width: 767px) {
  .businessQuoteForm .col-xs-6 {
    width: 140px !important;
  }
}
@media (min-width: 767px) {
  .businessQuoteForm .col-xs-12.direct-pad h3 {
    padding-left: 15px;
  }
  .businessQuoteForm .col-xs-12.direct-pad .col-sm-4 {
    padding-left: 64px;
  }
}
@media (max-width: 991px) {
  .businessQuoteForm .col-xs-6 {
    padding-left: 0px !important;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .businessQuoteForm .col-sm-8, .businessQuoteForm .col-sm-4 {
    padding-left: 0px !important;
  }
}

.row-flex-two.packages-and-weight-fields {
  display: flex;
  column-gap: 30px;
  align-items: stretch;
}
@media (max-width: 550px) {
  .row-flex-two.packages-and-weight-fields {
    flex-direction: column;
  }
}
.row-flex-two.packages-and-weight-fields.landing-version {
  margin: 0;
}
@media (max-width: 767px) {
  .row-flex-two.packages-and-weight-fields.landing-version {
    flex-direction: column;
  }
}
.row-flex-two.packages-and-weight-fields.landing-version div span {
  top: 25px;
  font-size: 15px;
}
@media (max-width: 550px) {
  .row-flex-two.packages-and-weight-fields:not(.landing-version) div:first-child {
    margin-bottom: 10px;
  }
}
.row-flex-two.packages-and-weight-fields div {
  flex: 1;
  position: relative;
}
.row-flex-two.packages-and-weight-fields div span {
  position: absolute;
  left: 40px;
  top: 4px;
  color: black;
  display: none;
  font-size: 14px;
}

input[type=date] {
  font-family: sans-serif, arial;
}

.copy-details-holder {
  position: relative;
}
.copy-details-holder .copy-details {
  position: absolute;
  right: 16px;
}
@media (max-width: 767px) {
  .copy-details-holder .copy-details {
    right: 0;
  }
}

.sectionexplain {
  margin-top: -20px;
  margin-bottom: 20px;
}

.pull-right {
  float: right;
}

.destinations-page-copy-outer {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .destinations-page-copy-outer {
    flex-direction: column;
    gap: 0px;
  }
}
.destinations-page-copy-outer .destinations-page-copy-form .contactbutton {
  display: none;
}
@media (max-width: 900px) {
  .destinations-page-copy-outer .destinations-page-copy-form .contactbutton {
    display: block;
    margin-top: 0px !important;
  }
}

.side-col-text-flow-outer .side-col-text-flow-col {
  float: right;
  margin: 0 0 10px 10px !important;
}
@media (max-width: 900px) {
  .side-col-text-flow-outer .side-col-text-flow-col {
    display: none;
  }
}

.whatsapp-icon {
  width: 64px;
  height: 64px;
  background: transparent url("/images/whatsapp-logo-online.png") no-repeat center bottom;
  background-size: cover;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  transition: background-position 250ms;
}
.whatsapp-icon:hover {
  background-position: center top;
}
.whatsapp-icon.whatsapp-icon-offline {
  background-image: url("/images/whatsapp-logo-offline.png");
}

.whatsapp-chat {
  border-radius: 18px;
  background-image: url("/images/whatsapp-background.jpg");
  width: 450px;
  position: fixed;
  bottom: 95px;
  right: 20px;
  z-index: 9999;
  overflow: hidden;
  transition: all 500ms;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  filter: drop-shadow(3px 3px 10px #5c5c5c);
}
@media (max-width: 550px) {
  .whatsapp-chat {
    width: unset;
    left: 20px;
  }
}
.whatsapp-chat.is-visible {
  opacity: 1;
  visibility: visible;
  bottom: 105px;
}
.whatsapp-chat .whatsapp-chat-header {
  background: #008069;
  justify-content: space-between;
  display: flex;
}
.whatsapp-chat .whatsapp-chat-header .whatsapp-chat-header-main {
  margin: 20px;
  display: flex;
  gap: 10px;
}
.whatsapp-chat .whatsapp-chat-header .whatsapp-chat-header-main > img {
  flex-shrink: 0;
}
.whatsapp-chat .whatsapp-chat-header .whatsapp-chat-header-main > div {
  display: flex;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.whatsapp-chat .whatsapp-chat-header .whatsapp-chat-header-main > div div {
  font-weight: bold;
}
.whatsapp-chat .whatsapp-chat-header .whatsapp-chat-header-main > div span {
  font-size: 80%;
}
.whatsapp-chat .whatsapp-chat-header .whatsapp-chat-close {
  display: flex;
  align-items: flex-start;
  padding: 10px;
}
.whatsapp-chat .whatsapp-chat-header .whatsapp-chat-close button {
  background: transparent;
  color: white;
  font-size: 16px;
  opacity: 0.7;
  transition: opacity 250ms;
}
.whatsapp-chat .whatsapp-chat-header .whatsapp-chat-close button:hover {
  opacity: 1;
}
.whatsapp-chat .whatsapp-chat-messages {
  padding: 20px;
}
.whatsapp-chat .whatsapp-chat-messages > div {
  display: flex;
}
.whatsapp-chat .whatsapp-chat-messages > div span {
  background: url("/images/whatsapp-speech-corner.png");
  width: 12px;
  height: 25px;
  display: block;
  flex-shrink: 0;
}
.whatsapp-chat .whatsapp-chat-messages > div div {
  background: white;
  border-radius: 20px;
  border-start-start-radius: 0px;
  padding: 10px;
}
.whatsapp-chat .whatsapp-chat-messages > div div p {
  margin: 0;
}
.whatsapp-chat .whatsapp-chat-messages > div div p:not(:last-child) {
  margin-bottom: 10px;
}
.whatsapp-chat .whatsapp-chat-messages > div div a {
  text-decoration: underline;
}
.whatsapp-chat .whatsapp-chat-messages > div div a:hover {
  text-decoration: none;
}
.whatsapp-chat .whatsapp-chat-input {
  background: white;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  gap: 10px;
}
.whatsapp-chat .whatsapp-chat-input input {
  border: none;
  font-size: 14px;
  flex: 1;
}
.whatsapp-chat .whatsapp-chat-input input:focus {
  outline: none;
}
.whatsapp-chat .whatsapp-chat-input button {
  background: url("/images/whatsapp-send.jpg") no-repeat center bottom;
  width: 35px;
  height: 37px;
  transition: all 250ms;
  flex-shrink: 0;
}
.whatsapp-chat .whatsapp-chat-input button:hover {
  background-position: center top;
}

.screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-home-element p {
  font-size: 17px !important;
  line-height: 1.5rem;
}
.top-home-element h2 {
  font-size: 35px;
}

.home-banners-outer {
  display: flex;
  flex-direction: column;
  background-color: #EF7303;
  /*background-repeat: no-repeat;
  background-image: url(/images/fromourblog.png);
  background-size: auto;
  background-position-y: bottom;
  background-position-x: right;*/
}
.home-banners-outer .ship-for-business-banner {
  background-color: #eee;
}
@media (min-width: 901px) {
  .home-banners-outer .ship-for-business-banner {
    background-image: none !important;
  }
}
.home-banners-outer .ship-for-business-banner .imagecontainer {
  padding: 100px 0 15px 20px;
  /*@media (max-width: $tablet) {
  	padding-top: 10px;
  	padding-bottom: 10px;
  }*/
}
@media (max-width: 1024px) {
  .home-banners-outer .ship-for-business-banner .imagecontainer {
    padding-top: 90px;
  }
}
@media (max-width: 900px) {
  .home-banners-outer .ship-for-business-banner .imagecontainer {
    padding-top: 70px;
  }
}
.home-banners-outer .shipping-search-image {
  padding-top: 10px;
  padding-bottom: 10px;
  /*@media (max-width: $tablet) {
  	padding-top: 60px;
  }*/
}

.banner-content {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 900px) {
  .banner-content {
    background-position: 67% 0;
  }
}
@media (min-width: 901px) {
  .banner-content {
    padding-bottom: 31%;
    position: relative;
  }
}
.banner-content.ship-for-business-banner .videocontainer {
  display: none;
}
.banner-content.ship-for-business-banner .videocontainer video {
  width: 100%;
  position: absolute;
  top: 0px;
}
.banner-content.ship-for-business-banner .videocontainer .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
}
.banner-content.ship-for-business-banner .videocontainer .overlay .titleholder {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 55px;
  line-height: 4rem;
  margin: 0 auto;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  margin-top: 10%;
}
.banner-content.ship-for-business-banner .videocontainer .overlay .titleholder a {
  color: #fff;
}
.banner-content.ship-for-business-banner .videocontainer .overlay .titleholder a:hover {
  border-bottom: 6px solid #fff;
}
.banner-content.ship-for-business-banner .videocontainer .overlay .raqouter {
  display: inline-block;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1%;
}
.banner-content.ship-for-business-banner .videocontainer .overlay .raqouter a svg {
  width: 25px;
  height: 25px;
  fill: #fff;
  margin-bottom: -4px;
}
.banner-content.ship-for-business-banner .videocontainer .overlay .raqouter a:hover svg {
  fill: #EF7303;
}
.banner-content.ship-for-business-banner .videocontainer .overlay .raqouter .raq {
  display: inline-block;
}
.banner-content.ship-for-business-banner .imagecontainer h2 {
  text-transform: uppercase;
  margin-bottom: 130px;
}
.banner-content.ship-for-business-banner .imagecontainer:before {
  position: absolute;
  background: rgba(0, 0, 0, 0.15);
  top: 0;
  left: 0;
  content: " ";
  display: block;
  height: 100%;
  width: 100%;
}
@media (min-width: 901px) {
  .banner-content.ship-for-business-banner .imagecontainer {
    display: none;
  }
  .banner-content.ship-for-business-banner .videocontainer {
    display: block;
  }
}
.banner-content.ship-for-business-banner .container .text {
  position: relative;
}
@media (max-width: 550px) {
  .banner-content.ship-for-business-banner .container .text {
    max-width: 300px;
  }
  .banner-content.ship-for-business-banner .container .text p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.banner-content.ship-for-business-banner .btn-orange {
  margin-right: 10px;
}
.banner-content + .banner-content {
  background-position: top center;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
}
.banner-content + .banner-content #homeQuoteRequestForm .row .selectdiv {
  display: block;
}
.banner-content + .banner-content #homeQuoteRequestForm .row .selectdiv select {
  width: 100%;
  height: 34px;
  background: #fff;
  border: none;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  font-size: 1rem;
  font-family: sans-serif, arial;
  color: #383838;
}
.banner-content + .banner-content.shipping-search-image {
  background-image: url(/images/skyline.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: auto;
}
.banner-content + .banner-content.shipping-search-image .container .text h2 {
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px 0;
  padding: 0 10px 0 0;
  font-weight: 600;
  text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
}
@media (min-width: 901px) {
  .banner-content + .banner-content.shipping-search-image .container .text h2 {
    font-size: 53px;
    text-align: center;
    padding: 3px 0 14px 0px;
  }
}
.banner-content + .banner-content.shipping-search-image .container .text h2 a {
  color: #fff;
}
.banner-content + .banner-content.shipping-search-image .container .text h2 a:hover {
  border-bottom: 5px solid #fff;
}
@media (max-width: 550px) {
  .banner-content {
    min-height: 0;
  }
}
.banner-content .container:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
.banner-content .text {
  color: #fff;
}
.banner-content .text .popover {
  color: #1D1D1B;
  max-width: 330px;
}
.banner-content .text p {
  margin-top: 0;
  padding-right: 20px;
  font-size: 20px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .banner-content .text p {
    padding-right: 0;
  }
}
.banner-content .text h2 {
  margin-bottom: 14px;
}
.banner-content .form-block-wrap {
  max-width: 710px;
}
@media (min-width: 901px) {
  .banner-content .form-block-wrap {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
  }
}
@media (max-width: 550px) {
  .banner-content .form-block-wrap {
    width: 100%;
  }
}
.banner-content .form-block-wrap .explore {
  margin-top: 20px;
  display: none;
}
@media (max-width: 900px) {
  .banner-content .form-block-wrap .explore {
    display: inline-block;
    background-color: white;
    color: #EF7303;
  }
}
.banner-content .form-block-wrap .explore:hover {
  background-color: #EF7303;
  color: white;
}
.banner-content .form-block {
  background: #d9d9d9;
  padding: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  text-align: left;
}
@media (max-width: 550px) {
  .banner-content .form-block {
    margin-top: 0;
  }
}
.banner-content .form-block h3 {
  text-align: left;
  margin-top: 0;
  margin-bottom: -6px;
  font-weight: 400;
}
@media (min-width: 1180px) {
  .banner-content .form-block h3 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.banner-content .form-block input[type=text], .banner-content .form-block input[type=email], .banner-content .form-block input[type=number] {
  width: 100%;
  height: 28px;
  background: #fff;
  border: none;
  padding-left: 10px;
  padding-right: 10px;
  font-family: sans-serif, arial;
  color: #000;
}
.banner-content .form-block input[type=text]::-webkit-input-placeholder, .banner-content .form-block input[type=email]::-webkit-input-placeholder, .banner-content .form-block input[type=number]::-webkit-input-placeholder {
  color: #303030;
}
.banner-content .form-block input[type=text]:-moz-placeholder, .banner-content .form-block input[type=email]:-moz-placeholder, .banner-content .form-block input[type=number]:-moz-placeholder {
  color: #303030;
}
.banner-content .form-block input[type=text]::-moz-placeholder, .banner-content .form-block input[type=email]::-moz-placeholder, .banner-content .form-block input[type=number]::-moz-placeholder {
  opacity: 1;
  color: #303030;
}
.banner-content .form-block input[type=text]:-ms-input-placeholder, .banner-content .form-block input[type=email]:-ms-input-placeholder, .banner-content .form-block input[type=number]:-ms-input-placeholder {
  color: #303030;
}
.banner-content .form-block input[type=text]::placeholder, .banner-content .form-block input[type=email]::placeholder, .banner-content .form-block input[type=number]::placeholder {
  color: #303030;
}
.banner-content .form-block input[type=submit] {
  width: 157px;
  float: right;
  text-transform: uppercase;
  height: 28px;
  padding: 0 12px;
  border: 2px solid #384042;
  line-height: 24px;
  font-weight: 700;
  font-family: sans-serif, arial;
  font-size: 14px;
  border-radius: 6px;
  border-top: 2px solid #728489;
  border-left: 2px solid #728489;
  border-bottom: 2px solid #010101;
  border-right: 2px solid #010101;
}
.banner-content .form-block .row {
  margin-bottom: 12px;
}
.banner-content .form-block .row:last-child, .banner-content .form-block .row.last {
  margin-bottom: 0;
}
.banner-content .form-block .row:last-child input[type=text], .banner-content .form-block .row:last-child input[type=email], .banner-content .form-block .row.last input[type=text], .banner-content .form-block .row.last input[type=email] {
  width: calc(100% - 185px);
}
@media (max-width: 767px) {
  .banner-content .form-block .half {
    margin-bottom: 15px;
  }
}
.banner-content .form-block .half:nth-child(1) {
  padding-left: 0;
}
.banner-content .form-block .half:nth-child(2) {
  padding-right: 0;
}
.banner-content h2 {
  text-transform: none;
  color: #fff;
  margin: 0 0 28px;
  /*@include font-size(50);*/
  font-weight: 600;
  text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1366px) {
  .banner-content h2 {
    /*@include font-size(42);*/
  }
}
@media (max-width: 1024px) {
  .banner-content h2 {
    /*@include font-size(44);*/
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 900px) {
  .banner-content h2 {
    /*@include font-size(36);*/
    margin-bottom: 20px;
  }
}
@media (max-width: 550px) {
  .banner-content h2 {
    /*@include font-size(30);*/
  }
}
@media (max-width: 480px) {
  .banner-content h2 {
    /*@include font-size(26);*/
  }
}
.banner-content p {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
@media (max-width: 480px) {
  .banner-content p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}
.banner-content .popover p {
  text-shadow: none;
  margin-bottom: 10px;
}
.banner-content .container {
  position: relative;
  z-index: 100;
}
.banner-content .btn-orange {
  /*margin-top: 20px;*/
  text-transform: uppercase;
}
@media (max-width: 1366px) {
  .banner-content .btn-orange {
    margin-top: 10px;
  }
}
@media (max-width: 1024px) {
  .banner-content .btn-orange {
    margin-top: 5px;
  }
}

.lead {
  /*margin: 80px 0;*/
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 44px;
  line-height: 2.75rem;
  font-weight: 400;
  color: #353535;
  text-align: center;
}
@media (max-width: 1366px) {
  .lead {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 36px;
    line-height: 2.25rem;
  }
}
@media (max-width: 1024px) {
  .lead {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 32px;
    line-height: 2rem;
    /*margin: 40px 0;*/
  }
}
@media (max-width: 900px) {
  .lead {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 28px;
    line-height: 1.75rem;
  }
}
@media (max-width: 480px) {
  .lead {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
    margin: 30px 0;
  }
}

.tile-blocks {
  display: table;
  width: 100%;
}
.tile-blocks:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
@media (max-width: 900px) {
  .tile-blocks {
    display: block;
  }
}
.tile-blocks .half {
  display: table-cell;
  vertical-align: top;
  height: 100%;
  padding: 0;
  width: 50%;
  background: #EF7303;
}
@media (max-width: 900px) {
  .tile-blocks .half {
    width: 100%;
    display: block;
    background: #fff;
  }
  .tile-blocks .half:last-child a:last-child {
    margin-bottom: 0;
  }
}
.tile-blocks .half a {
  position: relative;
  display: block;
  color: #fff;
  min-height: 326px;
  overflow: hidden;
  -moz-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}
.tile-blocks .half a:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
@media (max-width: 1180px) {
  .tile-blocks .half a {
    min-height: 290px;
  }
}
@media (max-width: 900px) {
  .tile-blocks .half a {
    background: #EF7303;
  }
}
@media (max-width: 550px) {
  .tile-blocks .half a {
    min-height: 250px;
  }
}
.tile-blocks .half a:hover {
  background-color: #f28500;
}
.tile-blocks .half a:hover:before {
  opacity: 1;
}
.tile-blocks .half a:before {
  opacity: 0;
  display: block;
  content: " ";
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  -moz-transition: opacity 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}
.tile-blocks .half a .text {
  position: relative;
  z-index: 10;
  padding: 50px;
  width: 50%;
  text-align: center;
}
@media (max-width: 1280px) {
  .tile-blocks .half a .text {
    padding: 40px;
  }
}
@media (max-width: 1180px) {
  .tile-blocks .half a .text {
    padding: 30px;
  }
}
@media (max-width: 550px) {
  .tile-blocks .half a .text {
    padding: 25px;
  }
}
.tile-blocks .half a .text h3 {
  font-size: 26px;
  font-size: 1.625rem;
  text-transform: none;
  margin: 0 0 20px;
  font-weight: 600;
}
@media (max-width: 1280px) {
  .tile-blocks .half a .text h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .tile-blocks .half a .text h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media (max-width: 550px) {
  .tile-blocks .half a .text h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media (max-width: 350px) {
  .tile-blocks .half a .text h3 {
    word-break: break-all;
  }
}
.tile-blocks .half a .text p {
  line-height: 30px;
  line-height: 1.875rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 20px;
  margin: 10% 0 0;
}
@media (max-width: 900px) {
  .tile-blocks .half a .text p {
    line-height: 26px;
    line-height: 1.625rem;
    font-size: inherit;
  }
}
.tile-blocks .half a .image {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.tile-blocks .half a + a .text {
  float: right;
}
.tile-blocks .half a + a .image {
  right: auto;
  left: 0;
}

.map-strip {
  background: #EEE;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0;
}
@media (max-width: 1024px) {
  .map-strip {
    padding: 40px 0;
  }
}
.map-strip .text {
  position: relative;
  padding-right: 54%;
}
@media (max-width: 900px) {
  .map-strip .text {
    padding: 0;
  }
}
.map-strip .text .summary {
  margin-bottom: 20px;
  padding-right: 20px;
}
@media (max-width: 900px) {
  .map-strip .text .summary {
    text-align: center;
  }
}
.map-strip .text .summary h2 {
  margin: 0 0 20px;
  font-size: 32px;
  font-size: 2rem;
  text-transform: none;
  font-weight: 400;
  color: #353535;
}
@media (max-width: 900px) {
  .map-strip .text .summary h2 {
    font-size: 26px;
    font-size: 1.625rem;
    font-weight: 600;
  }
}
@media (max-width: 550px) {
  .map-strip .text .summary h2 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.map-strip .text .summary a {
  font-weight: 700;
}
.map-strip .text .stats {
  position: absolute;
  width: 55%;
  top: 0;
  right: 0;
}
.map-strip .text .stats:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
@media (max-width: 900px) {
  .map-strip .text .stats {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
  }
}
.map-strip .text .stats .stat-item {
  float: left;
  text-align: center;
  width: 50%;
}
.map-strip .text .stats .stat-item:nth-child(2) {
  border-left: 2px solid rgba(255, 255, 255, 0.6784313725);
}
@media (min-width: 901px) {
  .map-strip .text .stats .stat-item:nth-child(1) {
    border-left: 2px solid rgba(255, 255, 255, 0.6784313725);
  }
}
.map-strip .text .stats .stat-item strong {
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 300;
  color: #EF7303;
}
@media (max-width: 1180px) {
  .map-strip .text .stats .stat-item strong {
    font-size: 46px;
    font-size: 2.875rem;
  }
}
@media (max-width: 1024px) {
  .map-strip .text .stats .stat-item strong {
    font-size: 38px;
    font-size: 2.375rem;
  }
}
.map-strip .text .stats .stat-item p {
  font-weight: 400;
  color: #353535;
  margin-left: auto;
  margin-right: auto;
  line-height: 20px;
  line-height: 1.25rem;
}
@media (max-width: 1024px) {
  .map-strip .text .stats .stat-item p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 18px;
    line-height: 1.125rem;
  }
}
@media (max-width: 550px) {
  .map-strip .text .stats .stat-item p {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 16px;
    line-height: 1rem;
  }
}

.white-content-centered, .orange-content-centered {
  background: #fff;
  padding: 24px 0;
  text-align: center;
}
@media (max-width: 900px) {
  .white-content-centered, .orange-content-centered {
    padding: 24px 0;
  }
  .white-content-centered.industries, .orange-content-centered.industries {
    padding: 24px 0 0 0;
  }
}
.white-content-centered h2, .orange-content-centered h2 {
  display: inline-block;
  margin: 0 0 10px;
  padding-bottom: 6px;
  font-size: 30px;
  font-size: 1.875rem;
  text-transform: none;
  font-weight: 600;
  color: #353535;
  border-bottom: 3px solid #EF7303;
}
@media (max-width: 900px) {
  .white-content-centered h2, .orange-content-centered h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media (max-width: 550px) {
  .white-content-centered h2, .orange-content-centered h2 {
    font-size: 26px;
    font-size: 1.625rem;
    padding-bottom: 4px;
  }
}
.white-content-centered h2 a, .orange-content-centered h2 a {
  color: #353535;
}
.white-content-centered .split-list, .orange-content-centered .split-list {
  text-align: left;
  padding-top: 40px;
  font-size: 0;
  text-align: center;
}
.white-content-centered .split-list:after, .orange-content-centered .split-list:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
@media (max-width: 550px) {
  .white-content-centered .split-list, .orange-content-centered .split-list {
    margin: 0 -12px;
  }
}
.white-content-centered .split-list .list-item, .orange-content-centered .split-list .list-item {
  position: relative;
  display: inline-block;
  width: 33.333%;
  margin-bottom: 30px;
  min-height: 100px;
}
@media (max-width: 900px) {
  .white-content-centered .split-list .list-item, .orange-content-centered .split-list .list-item {
    padding: 0 12px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .white-content-centered .split-list .list-item, .orange-content-centered .split-list .list-item {
    width: 50%;
  }
}
.white-content-centered .split-list .list-item .icon, .orange-content-centered .split-list .list-item .icon {
  display: inline-block;
  margin-bottom: 18px;
  -moz-transition: transform 0.15s ease-in-out;
  -o-transition: transform 0.15s ease-in-out;
  -webkit-transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out;
}
.white-content-centered .split-list .list-item .icon img, .orange-content-centered .split-list .list-item .icon img {
  max-height: 90px;
  max-width: 110px;
  margin: 0 auto;
}
@media (max-width: 1180px) {
  .white-content-centered .split-list .list-item .icon img, .orange-content-centered .split-list .list-item .icon img {
    max-height: 70px;
    max-width: 90px;
  }
}
@media (max-width: 550px) {
  .white-content-centered .split-list .list-item .icon img, .orange-content-centered .split-list .list-item .icon img {
    max-height: 60px;
    max-width: 80px;
  }
}
.white-content-centered .split-list .list-item:nth-child(3n+1), .orange-content-centered .split-list .list-item:nth-child(3n+1) {
  clear: left;
}
.white-content-centered .split-list .list-item a, .orange-content-centered .split-list .list-item a {
  display: block;
}
.white-content-centered .split-list .list-item h3, .orange-content-centered .split-list .list-item h3 {
  margin: 0 0 20px;
  font-size: 24px;
  font-size: 1.5rem;
  text-transform: none;
  font-weight: 600;
  color: #EF7303;
}
@media (max-width: 1180px) {
  .white-content-centered .split-list .list-item h3, .orange-content-centered .split-list .list-item h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media (max-width: 550px) {
  .white-content-centered .split-list .list-item h3, .orange-content-centered .split-list .list-item h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.white-content-centered .split-list .list-item:hover, .orange-content-centered .split-list .list-item:hover {
  text-decoration: underline;
}
.white-content-centered .split-list .list-item:hover .icon, .orange-content-centered .split-list .list-item:hover .icon {
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.orange-content-centered {
  background: #EF7303;
}
.orange-content-centered h2 {
  color: #fff;
  border-bottom-color: #fff;
}
.orange-content-centered .split-list .list-item {
  color: #fff;
}
.orange-content-centered .split-list .list-item h3 {
  color: #fff;
}

.light-grey-content-centered {
  background: #eee;
  padding: 30px 0 40px 0;
  text-align: center;
}
.light-grey-content-centered h2 {
  display: inline-block;
  margin: 0 0 10px;
  padding-bottom: 6px;
  font-size: 30px;
  font-size: 1.875rem;
  text-transform: none;
  font-weight: 600;
  color: #353535;
  border-bottom: 3px solid #EF7303;
}
@media (max-width: 900px) {
  .light-grey-content-centered h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media (max-width: 550px) {
  .light-grey-content-centered h2 {
    font-size: 26px;
    font-size: 1.625rem;
    padding-bottom: 4px;
  }
}
.light-grey-content-centered .three-post-split {
  text-align: left;
  margin: 0 -30px 30px;
}
.light-grey-content-centered .three-post-split:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
@media (max-width: 900px) {
  .light-grey-content-centered .three-post-split {
    margin: 0 0 20px;
  }
}
.light-grey-content-centered .three-post-split .post-item {
  width: 33.333%;
  float: left;
  padding: 0 30px;
  color: #353535;
}
@media (max-width: 900px) {
  .light-grey-content-centered .three-post-split .post-item {
    width: 100%;
    float: none;
    margin-bottom: 40px;
    padding: 0;
  }
}
.light-grey-content-centered .three-post-split .post-item h3 {
  font-size: 23px;
  font-size: 1.4375rem;
  text-transform: none;
  font-weight: 600;
}
@media (max-width: 1180px) {
  .light-grey-content-centered .three-post-split .post-item h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media (max-width: 1024px) {
  .light-grey-content-centered .three-post-split .post-item h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.light-grey-content-centered .three-post-split .post-item p {
  font-size: 14px;
  font-size: 0.875rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.light-grey-content-centered .three-post-split .post-item a {
  font-weight: 700;
}
.light-grey-content-centered .three-post-split .post-item a h3 {
  color: #353535;
}
.light-grey-content-centered .three-post-split .post-item small {
  float: right;
  padding: 2px;
  color: #a0a0a0;
}

h1, .fakeHeading {
  display: inline-block;
  text-transform: none;
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #1D1D1B;
  margin: 0 auto 15px auto;
}
@media (max-width: 767px) {
  h1, .fakeHeading {
    font-size: 1.8rem;
    margin: 0 auto 0 auto !important;
  }
}
h1.largeHeading, .fakeHeading.largeHeading {
  display: block;
  margin-bottom: 5px !important;
  font-size: 3em;
  text-transform: uppercase;
  color: #384042;
}

h2 {
  font-size: 21px;
  font-size: 1.3125rem;
  color: #EF7303;
  text-transform: uppercase;
  margin-top: 8px;
}

a {
  color: #EF7303;
}
a:hover {
  color: #EF7303;
}

.media-heading {
  font-size: 1.6em;
}

.destinationBackButton {
  color: #fff;
  background-color: #ef7303;
  padding: 7px 15px;
  border-radius: 4px;
  margin-bottom: -62px;
  display: block;
  width: auto;
  margin-top: 9px;
  float: left;
}
@media (max-width: 767px) {
  .destinationBackButton {
    margin-bottom: 20px;
    width: 100%;
  }
}
.destinationBackButton:hover {
  color: #fff;
}

#calculateVolumetricButton {
  border-radius: 0;
  background-color: #EF7303;
  border-color: #EF7303;
  color: #fff;
}
#calculateVolumetricButton:hover {
  background-color: #F0801B;
  border-color: #EF7303;
}

.hide-responsive {
  display: block;
}
@media (max-width: 767px) {
  .hide-responsive {
    display: none;
  }
}

.responsive-only {
  display: none;
}
@media (max-width: 767px) {
  .responsive-only {
    display: block;
  }
}

@media (max-width: 767px) {
  .homeQuote {
    padding-left: 0;
    padding-right: 0;
  }
}
.homeQuote row {
  position: relative;
  z-index: 10;
}

.banner-shadow, .homeQuote {
  position: relative;
}

.homeQuote, .pageHeaderImage {
  position: relative;
  /*min-height: 471px;*/
  min-height: 250px;
  background-color: #fff;
  background-position: top center;
  padding-top: 80px;
}
@media (max-width: 1080px) {
  .homeQuote, .pageHeaderImage {
    padding-top: 67px;
  }
}
@media (max-width: 900px) {
  .homeQuote, .pageHeaderImage {
    padding-top: 55px;
  }
}
.homeQuote .getAQuote, .pageHeaderImage .getAQuote {
  position: relative;
  /*padding-top: 215px;*/
  padding-top: 48px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .homeQuote .getAQuote, .pageHeaderImage .getAQuote {
    padding: 0;
    padding-top: 4px;
  }
}
.homeQuote .getAQuote .homeHeader, .pageHeaderImage .getAQuote .homeHeader {
  display: block;
  margin-bottom: 10px;
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 15px #000;
  text-transform: uppercase;
}
@media (max-width: 1280px) {
  .homeQuote .getAQuote .homeHeader, .pageHeaderImage .getAQuote .homeHeader {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .homeQuote .getAQuote .homeHeader, .pageHeaderImage .getAQuote .homeHeader {
    font-size: 26px;
    font-size: 1.625rem;
    margin-bottom: 0;
    padding-top: 20px;
    text-shadow: none;
    color: #fff;
    background: #F0801B;
  }
}
.homeQuote .getAQuote .homeHeader:hover, .pageHeaderImage .getAQuote .homeHeader:hover {
  text-decoration: none;
}
.homeQuote .getAQuote .formContainer, .pageHeaderImage .getAQuote .formContainer {
  width: 100%;
  height: 100%;
  padding: 5px 20px 20px 20px;
  background-color: rgba(56, 64, 66, 0.8);
}
@media (max-width: 767px) {
  .homeQuote .getAQuote .formContainer, .pageHeaderImage .getAQuote .formContainer {
    background-color: #fff;
  }
}
.homeQuote .getAQuote .formContainer #homeQuoteRequestForm .form-control, .pageHeaderImage .getAQuote .formContainer #homeQuoteRequestForm .form-control {
  border-radius: 0;
  height: 40px;
  margin-top: 15px;
  margin-bottom: 0;
  background-color: #fff;
  color: #384042;
  border: none;
  box-shadow: none;
  font-size: 15px;
  font-size: 0.9375rem;
}
.homeQuote .getAQuote .formContainer #homeQuoteRequestForm .form-control::-webkit-input-placeholder, .pageHeaderImage .getAQuote .formContainer #homeQuoteRequestForm .form-control::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #384042;
}
.homeQuote .getAQuote .formContainer #homeQuoteRequestForm .form-control:-moz-placeholder, .pageHeaderImage .getAQuote .formContainer #homeQuoteRequestForm .form-control:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #384042;
  opacity: 1;
}
.homeQuote .getAQuote .formContainer #homeQuoteRequestForm .form-control::-moz-placeholder, .pageHeaderImage .getAQuote .formContainer #homeQuoteRequestForm .form-control::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #384042;
  opacity: 1;
}
.homeQuote .getAQuote .formContainer #homeQuoteRequestForm .form-control:-ms-input-placeholder, .pageHeaderImage .getAQuote .formContainer #homeQuoteRequestForm .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #384042;
}
@media (max-width: 767px) {
  .homeQuote .getAQuote .formContainer #homeQuoteRequestForm .form-control, .pageHeaderImage .getAQuote .formContainer #homeQuoteRequestForm .form-control {
    border: 1px solid #222;
  }
}
.homeQuote .getAQuote .formContainer #homeQuoteRequestForm button[type=submit], .pageHeaderImage .getAQuote .formContainer #homeQuoteRequestForm button[type=submit] {
  position: relative;
  display: inline-block;
  float: left;
  width: 100%;
  height: 38px;
  margin-top: 15px;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .homeQuote .getAQuote .formContainer #homeQuoteRequestForm button[type=submit], .pageHeaderImage .getAQuote .formContainer #homeQuoteRequestForm button[type=submit] {
    font-size: 0.9em;
  }
}
.homeQuote + .articleHeader, .pageHeaderImage + .articleHeader {
  margin-top: -95px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .homeQuote + .articleHeader h1, .pageHeaderImage + .articleHeader h1 {
    padding: 0;
  }
}

#FormContentQuoteWrap {
  margin-bottom: 20px;
}
#FormContentQuoteWrap .edit-my-quote-btn a {
  display: none;
}
@media (min-width: 768px) {
  #FormContentQuoteWrap.sticky {
    position: fixed;
    z-index: 100;
    margin: 0;
    width: 100%;
    top: 46px;
    left: 0;
    right: 0;
  }
  #FormContentQuoteWrap.sticky #contentQuoteRequestForm #quoteTitle {
    display: none;
  }
  #FormContentQuoteWrap.sticky .qinp label {
    display: none;
  }
}
#FormContentQuoteWrap #contentQuoteRequestForm {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #EF7303;
}
#FormContentQuoteWrap #contentQuoteRequestForm #quoteTitle {
  margin: 0 15px;
  margin-top: 5px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid orange;
}
#FormContentQuoteWrap #contentQuoteRequestForm #quoteTitle #quoteTypeToggle {
  background-color: white;
  display: grid;
  grid-auto-flow: column;
  width: 220px;
  border-radius: 25px;
  padding: 5px;
}
#FormContentQuoteWrap #contentQuoteRequestForm #quoteTitle #quoteTypeToggle #ind {
  background-color: #f6af6f;
  padding: 6px;
  border-radius: 20px;
  font-weight: bold;
  text-align: center;
  cursor: default;
}
#FormContentQuoteWrap #contentQuoteRequestForm #quoteTitle #quoteTypeToggle #ind a {
  color: white;
}
#FormContentQuoteWrap #contentQuoteRequestForm #quoteTitle #quoteTypeToggle #bus {
  padding: 6px;
  font-weight: bold;
  text-align: center;
}
#FormContentQuoteWrap #contentQuoteRequestForm #quoteTitle #quoteTypeToggle #bus a {
  color: black;
}
#FormContentQuoteWrap #contentQuoteRequestForm #NumberOfPackages::after {
  content: "kg";
  display: block;
}
#FormContentQuoteWrap #contentQuoteRequestForm .qinp {
  position: relative;
  padding: 0 15px;
}
#FormContentQuoteWrap #contentQuoteRequestForm .qinp label {
  font-weight: bold;
  color: #fff;
}
#FormContentQuoteWrap #contentQuoteRequestForm .form-control {
  border-radius: 0;
  height: 35px;
  margin-top: 0;
  margin-bottom: 0;
  background-color: #fff;
  color: #000;
  border: none;
  box-shadow: none;
  font-size: 1.1em;
  width: calc(100% + 15px);
  font-size: 15px;
  font-size: 0.9375rem;
}
#FormContentQuoteWrap #contentQuoteRequestForm .form-control::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #384042;
}
#FormContentQuoteWrap #contentQuoteRequestForm .form-control:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #384042;
  opacity: 1;
}
#FormContentQuoteWrap #contentQuoteRequestForm .form-control::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #384042;
  opacity: 1;
}
#FormContentQuoteWrap #contentQuoteRequestForm .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #384042;
}
@media (max-width: 767px) {
  #FormContentQuoteWrap #contentQuoteRequestForm .form-control {
    width: 100%;
    margin-bottom: 10px;
  }
}
#FormContentQuoteWrap #contentQuoteRequestForm button[type=submit] {
  position: relative;
  display: inline-block;
  float: left;
  width: 100%;
  height: 34px;
  margin-top: 0;
  overflow: hidden;
  border: none;
  font-size: 14px;
  font-size: 0.875rem;
  background: #384042;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  -moz-transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
  -webkit-transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}
#FormContentQuoteWrap #contentQuoteRequestForm button[type=submit]:hover {
  text-decoration: none;
  background-color: #fff;
  color: #F0801B;
}
#FormContentQuoteWrap #contentQuoteRequestForm button[type=submit]:before {
  top: 0;
  background-color: #000;
  color: #fff;
  z-index: 9;
}
#FormContentQuoteWrap #contentQuoteRequestForm button[type=submit]:after {
  top: 47px;
  background-color: #fff;
  color: #EF7303;
}
#FormContentQuoteWrap #contentQuoteRequestForm h2 {
  display: none;
}
#FormContentQuoteWrap #contentQuoteRequestForm .button-right {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  align-items: end;
}
#FormContentQuoteWrap #contentQuoteRequestForm .button-right:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
@media (max-width: 767px) {
  #FormContentQuoteWrap #contentQuoteRequestForm .button-right {
    grid-auto-flow: row;
  }
}
#FormContentQuoteWrap #contentQuoteRequestForm button[type=submit] {
  width: 130px;
  border-radius: 6px;
  border-top: 2px solid #728489;
  border-left: 2px solid #728489;
  border-bottom: 2px solid #010101;
  border-right: 2px solid #010101;
}

.homeQuote .getAQuote .formContainer {
  background: #F0801B;
}
.homeQuote .getAQuote .formContainer #homeQuoteRequestForm button[type=submit] {
  height: 41px;
  padding: 4px;
}
.homeQuote .getAQuote .formContainer #homeQuoteRequestForm button[type=submit]:before {
  background-color: #384042;
  border-color: #384042;
}
.homeQuote .getAQuote .formContainer #homeQuoteRequestForm button[type=submit]:after {
  background-color: #F0801B;
}

.homeQuote .getAQuote .formContainer #homeQuoteRequestForm button[type=submit] {
  position: absolute;
  margin-top: 0;
  width: 132px;
  float: none;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .homeQuote .getAQuote .formContainer #homeQuoteRequestForm button[type=submit] {
    width: 130px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .homeQuote .getAQuote .formContainer #homeQuoteRequestForm button[type=submit] {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .homeQuote .getAQuote .formContainer #homeQuoteRequestForm button[type=submit] {
    width: 100%;
    position: relative;
    margin: 15px 0 10px;
  }
}

.businesslandingtop {
  margin-bottom: 20px;
}
.businesslandingtop .businesslandingcommon {
  overflow: hidden;
  position: relative;
  background-position: center;
  background-size: cover;
}
@media (min-width: 901px) {
  .businesslandingtop .businesslandingcommon {
    padding-bottom: 31%;
    background: none !important;
  }
}
.businesslandingtop .businesslandingcommon .vidbg {
  display: none;
}
@media (min-width: 901px) {
  .businesslandingtop .businesslandingcommon .vidbg {
    display: block;
  }
}
.businesslandingtop .businesslandingcommon video {
  width: 100%;
  position: absolute;
  top: 0;
}
.businesslandingtop .businesslandingcommon .overlay {
  padding-left: 20px;
}
@media (min-width: 901px) {
  .businesslandingtop .businesslandingcommon .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
  }
}
.businesslandingtop .businesslandingcommon .overlay .titleholder {
  width: 100%;
  text-transform: uppercase;
  font-size: 35px;
  line-height: 2rem;
  margin: 0px auto;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  margin-top: 80px;
  margin-bottom: 70px;
}
@media (min-width: 901px) {
  .businesslandingtop .businesslandingcommon .overlay .titleholder {
    text-align: center;
    font-size: 55px;
    line-height: 4rem;
    margin: 0px auto;
    margin-top: 10%;
  }
}
.businesslandingtop .businesslandingcommon .overlay .titleholder a {
  color: #fff;
}
.businesslandingtop .businesslandingcommon .overlay .raqouter {
  display: inline-block;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
@media (min-width: 901px) {
  .businesslandingtop .businesslandingcommon .overlay .raqouter {
    margin-bottom: 1%;
  }
}
.businesslandingtop .businesslandingcommon .overlay .raqouter a svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-bottom: -4px;
}
@media (min-width: 901px) {
  .businesslandingtop .businesslandingcommon .overlay .raqouter a svg {
    width: 25px;
    height: 25px;
  }
}
.businesslandingtop .businesslandingcommon .overlay .raqouter a:hover svg {
  fill: #EF7303;
}

.businesslandingbody h1 {
  width: 100%;
  text-align: center;
}

.businesslandingresources {
  display: flex;
  flex-direction: row;
  grid-gap: 12px;
  margin-top: 25px;
}
@media (max-width: 900px) {
  .businesslandingresources {
    flex-direction: column;
  }
}
.businesslandingresources .inner-tile {
  height: 300px;
  background-color: #000;
  overflow: hidden;
  width: 50%;
  position: relative;
}
@media (max-width: 900px) {
  .businesslandingresources .inner-tile {
    height: 260px;
    width: 100%;
  }
}
.businesslandingresources .inner-tile a .bgimg {
  height: 100%;
  max-width: unset;
  opacity: 0.7;
  background-size: cover;
  background-position: center;
}
.businesslandingresources .inner-tile a .overlay {
  position: absolute;
  top: 8px;
  width: 100%;
  color: white;
  text-align: center;
}
.businesslandingresources .inner-tile a .overlay .intro {
  margin: auto;
  max-width: 70%;
}
.businesslandingresources .inner-tile a .overlay .btn-orange {
  margin-top: 30px;
  font-size: 15px;
}
.businesslandingresources .inner-tile a .overlay.left {
  max-width: 565px;
  right: 0px;
}
@media (max-width: 900px) {
  .businesslandingresources .inner-tile a .overlay.left {
    max-width: unset;
  }
}
.businesslandingresources .inner-tile a .overlay.right {
  max-width: 600px;
  left: 0px;
}
@media (max-width: 900px) {
  .businesslandingresources .inner-tile a .overlay.right {
    right: 0;
    max-width: unset;
  }
}
.businesslandingresources .inner-tile a .overlay.right .intro {
  margin-left: auto;
}
.businesslandingresources .inner-tile a .overlay h3 {
  font-size: 30px;
  border-bottom: 3px solid #ef7303;
  display: inline-block;
  padding-bottom: 6px;
}
@media (max-width: 900px) {
  .businesslandingresources .inner-tile a .overlay h3 {
    margin-top: 10px;
  }
}
.businesslandingresources .inner-tile a::before {
  content: "";
  display: block;
  position: absolute;
  border: 3px solid transparent;
  width: 100%;
  height: 100%;
  transition: border 0.3s ease-out;
  z-index: 1;
}

.pageHeaderImage {
  background-repeat: no-repeat;
  background-size: cover;
  /*min-height: 380px;*/
  padding-top: 80px;
  background-position: center;
}

.whiteImage {
  /* Makes the icons grey */
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  /* Firefox 10+, Firefox on Android */
  filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
  /* IE6-9 */
  -webkit-filter: brightness(0) invert(1);
  /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  filter: brightness(0) invert(1);
}

.quoteTabs .nav-tabs, .quoteTabs .tabs-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.quoteTabs .nav-tabs:after, .quoteTabs .tabs-list:after {
  content: "";
  clear: both;
  display: table;
}
.quoteTabs .nav-tabs li.active a, .quoteTabs .tabs-list li.active a {
  border: 1px solid #EF7303;
  background: #EF7303;
  color: #fff;
}
.quoteTabs .nav-tabs li:last-of-type a, .quoteTabs .tabs-list li:last-of-type a {
  margin: 0;
}
.quoteTabs .nav-tabs li a, .quoteTabs .tabs-list li a {
  display: inline-block;
  border-radius: 4px 4px 0 0;
  padding: 16px 40px;
  border: 1px solid #DDDEDF;
  background-color: #DDDEDF;
  color: #32373B;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 0 10px;
  background: #c1c2c4; /* Old browsers */
  background: -moz-linear-gradient(top, #c1c2c4 0%, #adaeb0 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #c1c2c4 0%, #adaeb0 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #c1c2c4 0%, #adaeb0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#c1c2c4", endColorstr="#adaeb0",GradientType=0 ); /* IE6-9 */
}
@media (max-width: 480px) {
  .quoteTabs .nav-tabs li a, .quoteTabs .tabs-list li a {
    padding: 10px 10px !important;
  }
}
@media (max-width: 767px) {
  .quoteTabs .nav-tabs li a, .quoteTabs .tabs-list li a {
    padding: 10px 15px;
    margin: 0 0 0 5px;
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .quoteTabs .nav-tabs li a, .quoteTabs .tabs-list li a {
    padding: 16px 24px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.quoteTabs .tab-content {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-style: solid;
  border-width: 1px;
  float: left;
  width: 100%;
  border-color: #EF7303;
  border-width: 0 1px 1px 1px;
}
.quoteTabs .tab-content .tab-pane, .quoteTabs .tab-content .tab-item {
  position: absolute;
  float: left;
  width: 100%;
  opacity: 0;
  left: -100%;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.quoteTabs .tab-content .tab-pane.active, .quoteTabs .tab-content .tab-item.active {
  position: relative;
  opacity: 1;
  left: 0;
}
.quoteTabs .tab-content .tab-pane .destinationLocationTitle, .quoteTabs .tab-content .tab-item .destinationLocationTitle {
  color: #1d1d1b;
  text-decoration: underline;
}
@media (max-width: 991px) {
  .quoteTabs .tab-content .tab-pane .destinationLocationTitle, .quoteTabs .tab-content .tab-item .destinationLocationTitle {
    display: inline-block;
    width: 100%;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    color: #333;
    margin-top: 10px;
  }
}
.quoteTabs .tab-content .tab-pane .quoteTopBar, .quoteTabs .tab-content .tab-item .quoteTopBar {
  margin-bottom: 30px;
  padding: 30px 30px;
  background-color: #EF7303;
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
}
@media (max-width: 767px) {
  .quoteTabs .tab-content .tab-pane .quoteTopBar, .quoteTabs .tab-content .tab-item .quoteTopBar {
    padding: 20px 15px;
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.quoteTabs .tab-content .tab-pane .quoteTopBar.noMargin, .quoteTabs .tab-content .tab-item .quoteTopBar.noMargin {
  margin-bottom: 0;
  font-style: italic;
}
.quoteTabs .tab-content .tab-pane .quoteTopBar.noMargin img, .quoteTabs .tab-content .tab-item .quoteTopBar.noMargin img {
  margin-top: 10px;
  margin-left: 10px;
}
.quoteTabs .tab-content .tab-pane .quoteTopBar.noMargin .fakeHeading, .quoteTabs .tab-content .tab-item .quoteTopBar.noMargin .fakeHeading {
  font-size: 2.6em;
}
.quoteTabs .tab-content .tab-pane .quoteTopBar.noService p, .quoteTabs .tab-content .tab-item .quoteTopBar.noService p {
  line-height: 2rem;
}
.quoteTabs .tab-content .tab-pane .quoteTopBar.noService a, .quoteTabs .tab-content .tab-item .quoteTopBar.noService a {
  color: #fff;
  text-decoration: underline;
}
.quoteTabs .tab-content .tab-pane .quoteTopBar .fakeHeading, .quoteTabs .tab-content .tab-item .quoteTopBar .fakeHeading {
  font-family: "Courgette", cursive;
  color: #fff;
  font-size: 2em;
  font-weight: normal;
}
.quoteTabs .tab-content .tab-pane .quoteHold, .quoteTabs .tab-content .tab-item .quoteHold {
  padding: 0 30px;
}
@media (max-width: 767px) {
  .quoteTabs .tab-content .tab-pane .quoteHold, .quoteTabs .tab-content .tab-item .quoteHold {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .quoteTabs .tab-content .tab-pane .quoteHold .listDestName, .quoteTabs .tab-content .tab-item .quoteHold .listDestName {
    font-weight: bold;
    text-decoration: underline;
    text-align: center !important;
    font-size: 1.2em;
  }
}
@media (max-width: 767px) {
  .quoteTabs .tab-content .tab-pane .quoteDetailsContainer, .quoteTabs .tab-content .tab-item .quoteDetailsContainer {
    text-align: center;
  }
}
.quoteTabs .tab-content .tab-pane .quoteDetailsContainer .row, .quoteTabs .tab-content .tab-item .quoteDetailsContainer .row {
  width: 100%;
}
.quoteTabs .tab-content .tab-pane .quoteDetailsContainer .quoteSection, .quoteTabs .tab-content .tab-item .quoteDetailsContainer .quoteSection {
  width: 50%;
  margin-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
}
.quoteTabs .tab-content .tab-pane .quoteDetailsContainer .quoteSection.contact, .quoteTabs .tab-content .tab-item .quoteDetailsContainer .quoteSection.contact {
  margin-top: 20px;
  font-weight: bold;
  width: 100%;
}
.quoteTabs .tab-content .tab-pane .largeOrange, .quoteTabs .tab-content .tab-item .largeOrange {
  font-size: 1.1em;
  color: #EF7303;
  font-weight: bold;
}
.quoteTabs .tab-content .tab-pane .quoteOuterwhite, .quoteTabs .tab-content .tab-item .quoteOuterwhite {
  float: left;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  line-height: 30px;
  font-size: 1.5em;
  margin-bottom: 0px;
  width: 100%;
}
.quoteTabs .tab-content .tab-pane .quoteSection, .quoteTabs .tab-content .tab-item .quoteSection {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .quoteTabs .tab-content .tab-pane .quoteSection, .quoteTabs .tab-content .tab-item .quoteSection {
    text-align: center;
  }
  .quoteTabs .tab-content .tab-pane .quoteSection .text-right, .quoteTabs .tab-content .tab-item .quoteSection .text-right {
    text-align: center;
  }
}
.quoteTabs .tab-content .tab-pane .quoteSection.noBottom, .quoteTabs .tab-content .tab-item .quoteSection.noBottom {
  margin-bottom: 0;
}
.quoteTabs .tab-content .tab-pane .quoteSection.bookNow, .quoteTabs .tab-content .tab-item .quoteSection.bookNow {
  margin-top: 10px;
}
.quoteTabs .tab-content .tab-pane .quoteSection .tallText, .quoteTabs .tab-content .tab-item .quoteSection .tallText {
  line-height: 30px;
}
.quoteTabs .tab-content .tab-pane .quoteSection .bookNowButton, .quoteTabs .tab-content .tab-item .quoteSection .bookNowButton {
  background-color: #EF7303;
  color: #fff;
  line-height: 55px;
  display: block;
  padding: 0 15px;
  text-align: center;
  text-decoration: none;
  border-radius: 15px;
  text-transform: uppercase;
  font-weight: bold;
  transition: text-shadow ease 0.5s;
  border-top: 3px solid #ffa14b;
  border-bottom: 3px solid #ca6202;
  border-left: 3px solid #ffa14b;
  border-right: 3px solid #ca6202;
}
.quoteTabs .tab-content .tab-pane .quoteSection .bookNowButton:hover, .quoteTabs .tab-content .tab-item .quoteSection .bookNowButton:hover {
  text-shadow: rgba(255, 255, 255, 0.7) 0 0 15px;
}
.quoteTabs .tab-content .tab-pane img, .quoteTabs .tab-content .tab-item img {
  max-width: 100%;
  height: auto;
}
.quoteTabs .tab-content .tab-pane .breakdownContainer, .quoteTabs .tab-content .tab-item .breakdownContainer {
  float: left;
  width: 100%;
  padding: 15px;
  background-color: #DDDEDF;
  border-radius: 5px;
  font-size: 1em;
}
@media (max-width: 900px) {
  .quoteTabs .tab-content .tab-pane .breakdownContainer .tallText, .quoteTabs .tab-content .tab-item .breakdownContainer .tallText {
    text-align: center;
  }
}
.quoteTabs .tab-content .tab-pane .breakdownContainer .priceValue, .quoteTabs .tab-content .tab-item .breakdownContainer .priceValue {
  font-size: 1.3em;
  font-weight: bold;
}
.quoteTabs .tab-content .tab-pane .breakdownContainer .priceValue.small, .quoteTabs .tab-content .tab-item .breakdownContainer .priceValue.small {
  font-size: 1em;
}
.quoteTabs .tab-content .tab-pane .breakdownContainer .priceValue.orange, .quoteTabs .tab-content .tab-item .breakdownContainer .priceValue.orange {
  font-size: 1.4em;
  color: #EF7303;
}
@media (max-width: 991px) {
  .quoteTabs .tab-content .tab-pane .breakdownContainer .quoteSection .col-xs-12, .quoteTabs .tab-content .tab-item .breakdownContainer .quoteSection .col-xs-12 {
    text-align: center !important;
  }
}
.quoteTabs .tab-content .tab-pane .breakdownContainer .quoteInfo, .quoteTabs .tab-content .tab-item .breakdownContainer .quoteInfo {
  position: relative;
  margin-top: 10px;
  padding: 10px;
  background-color: #fff;
  border: 2px solid #EF7303;
  border-radius: 5px;
  font-size: 0.85em;
}
.quoteTabs .tab-content .tab-pane .breakdownContainer .quoteInfo ::before, .quoteTabs .tab-content .tab-item .breakdownContainer .quoteInfo ::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 59%;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #EF7303;
}
@media (max-width: 767px) {
  .quoteTabs .tab-content .tab-pane .breakdownContainer .quoteInfo ::before, .quoteTabs .tab-content .tab-item .breakdownContainer .quoteInfo ::before {
    left: 50%;
  }
}
.quoteTabs .tab-content .tab-pane .breakdownContainer .quoteInfo i, .quoteTabs .tab-content .tab-item .breakdownContainer .quoteInfo i {
  font-size: 15px;
  font-weight: 700;
}
.quoteTabs .tab-content .tab-pane .ratesBox, .quoteTabs .tab-content .tab-item .ratesBox {
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .quoteTabs .tab-content .tab-pane .ratesBox, .quoteTabs .tab-content .tab-item .ratesBox {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .quoteTabs .tab-content .tab-pane .ratesBox, .quoteTabs .tab-content .tab-item .ratesBox {
    text-align: left !important;
  }
}
.quoteTabs .tab-content + div {
  margin-top: 30px;
  float: left;
}

hr {
  margin-top: 0px;
  border: 0;
  height: 0;
  border-top: 2px solid #EF7303;
}

.ui-helper-hidden-accessible {
  display: none;
}

.ui-autocomplete {
  border: solid 1px #384042;
  margin: 0;
  padding: 2px;
  max-height: 200px;
  width: 100% !important;
  max-width: 300px !important;
  overflow: auto;
  background-color: #fff;
  z-index: 9999;
}
@media (max-width: 767px) {
  .ui-autocomplete {
    width: calc(100% - 77px) !important;
    max-width: calc(100% - 77px) !important;
  }
}
.ui-autocomplete .ui-menu-item {
  cursor: pointer;
  padding: 2px 5px;
}
.ui-autocomplete .ui-menu-item:hover, .ui-autocomplete .ui-menu-item:focus {
  background-color: #DDDEDF;
  color: #000;
}
.ui-autocomplete .ui-state-focus, .ui-autocomplete .ui-state-active {
  background: #DDDEDF;
}

.continentDestinationBox {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: solid 3px #EF7303;
}
.continentDestinationBox:hover {
  border: solid 3px white;
}
.continentDestinationBox img {
  /* Makes the icons grey */
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
  filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray; /* IE6-9 */
  -webkit-filter: brightness(0) invert(1); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  filter: brightness(0) invert(1);
}
.continentDestinationBox a {
  position: relative;
  display: block;
  width: 100%;
  height: 200px;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  background-color: #EF7303;
  text-align: center;
  padding-top: 15px;
}
.continentDestinationBox .destinationTitle {
  font-size: 20px;
  font-size: 1.25rem;
}
.continentDestinationBox .destinationImage {
  display: block;
}
.continentDestinationBox .destinationImage img {
  margin: 0 auto;
}

.continentsContainer {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  gap: 15px;
}
@media (max-width: 767px) {
  .continentsContainer {
    display: block;
  }
}

.destinationBoxSmall {
  width: 16.666%;
  float: left;
  padding: 0 15px;
}
@media (min-width: 1200px) {
  .destinationBoxSmall:nth-child(6n+1) {
    clear: both;
  }
  .destinationBoxSmall:nth-child(6n+1):after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .destinationBoxSmall {
    width: 25%;
  }
  .destinationBoxSmall:nth-child(4n+1) {
    clear: both;
  }
  .destinationBoxSmall:nth-child(4n+1):after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
  }
}
@media (max-width: 767px) {
  .destinationBoxSmall {
    width: 50%;
  }
  .destinationBoxSmall:nth-child(2n+1) {
    clear: both;
  }
  .destinationBoxSmall:nth-child(2n+1):after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
  }
}
.destinationBoxSmall:hover a {
  color: #1D1D1B;
  text-decoration: none;
}
.destinationBoxSmall:hover .destinationImage {
  background-color: #9A9A9A;
  color: #000;
  filter: none;
  transform: scale(1.1);
}
.destinationBoxSmall .destinationTitle {
  position: relative;
  display: block;
  height: 50px;
  padding: 5px 15px 0 15px;
  color: #1D1D1B;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  line-height: 16px;
  line-height: 1rem;
}
.destinationBoxSmall .destinationTitle:hover {
  color: #1D1D1B;
  text-decoration: none;
}
.destinationBoxSmall .destinationImage {
  position: relative;
  display: block;
  background-color: #DDDEDF;
  text-align: left;
  padding: 0;
  background-size: cover;
  text-align: center;
  transition: transform 0.2s ease;
  border: 1px solid #ccc;
}
.destinationBoxSmall .destinationImage:hover {
  background-color: #9A9A9A;
  color: #000;
  filter: none;
  border-color: #999;
}

.homeTop {
  background-color: #F0801B;
}
@media (max-width: 767px) {
  .homeTop {
    padding-left: 0;
    padding-right: 0;
  }
}
.homeTop .howItWorks {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .homeTop .howItWorks {
    background: #33383B;
  }
}
.homeTop .howItWorks .fakeHeading {
  margin-bottom: 30px;
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 600;
  color: #fff;
  font-family: "Opens Sans", Verdana, sans-serif;
  text-transform: none;
  text-decoration: underline;
}
@media (max-width: 1280px) {
  .homeTop .howItWorks .fakeHeading {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .homeTop .howItWorks .fakeHeading {
    font-size: 26px;
    font-size: 1.625rem;
    margin-bottom: 15px !important;
    color: #F0801B;
  }
}
.homeTop .howItWorks .fakeHeading:hover {
  color: #fff !important;
}
@media (max-width: 767px) {
  .homeTop .howItWorks .fakeHeading:hover {
    color: #F0801B !important;
  }
}
.homeTop .howItWorks .row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 769px) and (max-width: 800px) {
  .homeTop .howItWorks .row {
    gap: 3px;
  }
}
.homeTop .howItWorks .howItWorksStep {
  position: relative;
  color: #EF7303;
  padding: 10px;
  font-size: 16px;
  font-size: 1rem;
  text-transform: none;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  min-width: 100px;
  font-weight: bold;
}
.homeTop .howItWorks .howItWorksStep img {
  max-width: 100px;
  padding-top: 8px;
}
@media (max-width: 1024px) {
  .homeTop .howItWorks .howItWorksStep img {
    max-width: 65px;
  }
}
.homeTop .howItWorks .howItWorksStep .dotnumber {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 13px;
  background-color: #EF7303;
  color: white;
  display: none;
}
@media (max-width: 767px) {
  .homeTop .howItWorks .howItWorksStep .dotnumber {
    display: block;
  }
}
.homeTop .howItWorks svg {
  margin-top: auto;
  margin-bottom: auto;
  color: #fff;
}
@media (max-width: 767px) {
  .homeTop .howItWorks svg {
    display: none;
  }
}

.homeContent {
  padding: 50px 0;
}
@media (max-width: 767px) {
  .homeContent {
    padding: 30px 0;
  }
}
.homeContent .industry-panel .carousel-list {
  border-bottom: none;
}

.bottom-links {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .bottom-links {
    margin-bottom: 0;
    padding-top: 10px;
  }
  .bottom-links .third {
    margin-bottom: 30px;
  }
}
.bottom-links .clearfix:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
.bottom-links a {
  display: inline-block;
}
.bottom-links h4 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0;
}
.bottom-links h4 b {
  font-weight: 400;
}
.bottom-links h4:hover {
  text-decoration: underline;
}
.bottom-links .hidden-xs {
  margin-top: 6px;
}

.homeBody {
  overflow: hidden;
  padding: 20px 0 0 0;
  background-color: #EEEEEE;
}
.homeBody h2 {
  font-size: 30px;
  font-size: 1.875rem;
  text-transform: capitalize;
}
.homeBody .newsBox .newsItem {
  border-bottom: 1px solid #bbb;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.homeBody .newsBox .newsItem:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.homeBody .newsBox .newsItem .newsHeader {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 20px;
  font-size: 1.25rem;
}
.homeBody .newsBox .newsItem .newsHeader:hover {
  text-decoration: underline;
}
.homeBody p {
  font-weight: 400;
}
.homeBody .col-xs-12 {
  position: relative;
  z-index: 9;
}
.homeBody .darkGrey {
  background: #33383B;
  padding: 20px 0 60px;
  margin: 50px 0 30px;
}
.homeBody .homeDestinationBox {
  margin-bottom: 30px;
  padding: 30px 30px 172px 30px;
  background-image: url("/Images/OurDestinations.jpg");
  background-color: #fff;
  background-position: center bottom;
  background-repeat: repeat-x;
  text-align: center;
  display: flex;
  column-gap: 80px;
}
@media (max-width: 900px) {
  .homeBody .homeDestinationBox {
    flex-direction: column;
  }
}
.homeBody .homeDestinationBox .body {
  flex: 1;
  /*@media (max-width: $large-mobile) {
  	flex:unset;
  }*/
}
.homeBody .homeDestinationBox .select-your-destination {
  width: 300px;
  text-align: left;
}
@media (max-width: 900px) {
  .homeBody .homeDestinationBox .select-your-destination {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.homeBody .homeDestinationBox .select-your-destination h3 {
  color: #EF7303;
}
.homeBody .blogBox {
  height: 330px;
  margin-bottom: 30px;
  padding: 30px;
  background-image: url("/Images/FromOurBlog.png");
  background-color: #fff;
  background-size: auto auto;
  background-position: right bottom;
  background-repeat: no-repeat;
}
@media (min-width: 768px) and (max-width: 991px) {
  .homeBody .blogBox {
    height: 360px;
  }
}
@media (max-width: 767px) {
  .homeBody .blogBox {
    height: auto;
    margin-bottom: 0;
    padding: 15px;
    padding-bottom: 60px;
  }
}
.homeBody .blogBox .homeBlogPost {
  margin-bottom: 15px;
}
.homeBody .blogBox .homeBlogPost .postHeading {
  color: #EF7303;
  font-weight: bold;
  font-size: 1.3em;
}
@media (min-width: 768px) and (max-width: 991px) {
  .homeBody .blogBox .homeBlogPost .postHeading {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.homeBody .blogBox .readMore {
  position: relative;
  display: inline-block;
  float: left;
  margin-top: 0;
  overflow: hidden;
}
.homeBody .fakeHeading {
  display: block;
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
  color: #F0801B;
  font-size: 46px;
  font-size: 2.875rem;
  font-family: sans-serif, arial;
}
@media (max-width: 1280px) {
  .homeBody .fakeHeading {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .homeBody .fakeHeading {
    font-size: 31px;
    font-size: 1.9375rem;
  }
}
@media (max-width: 767px) {
  .homeBody .fakeHeading {
    font-size: 26px;
    font-size: 1.625rem;
    margin: 15px 0 !important;
  }
}
.homeBody .moreBox {
  position: relative;
  display: inline-block;
  float: left;
  margin-top: 0;
  overflow: hidden;
  width: 100%;
}

.homeBottom {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .homeBottom {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 80px;
  }
}
.homeBottom h1 {
  color: #F0801B;
  font-weight: 600;
}
.homeBottom .fakeHeading {
  color: #F0801B;
  text-align: center;
  font-size: 36px;
  font-size: 2.25rem;
}
@media (max-width: 1280px) {
  .homeBottom .fakeHeading {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  .homeBottom .fakeHeading {
    margin-bottom: 15px !important;
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.homeBottom p {
  font-weight: 400;
}
.homeBottom a {
  color: #F0801B;
  text-decoration: none;
}
.homeBottom a:hover {
  text-decoration: underline;
}
.homeBottom + .homeContent {
  margin-top: -60px;
}

.quoteBox, .faqBox {
  padding: 15px;
  min-height: 300px;
  background-color: #fff;
  margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .quoteBox, .faqBox {
    height: 236px;
    min-height: 236px;
  }
}
.quoteBox iframe, .faqBox iframe {
  float: left;
  margin-bottom: 15px;
  background-color: #000;
}
@media (min-width: 768px) and (max-width: 991px) {
  .quoteBox iframe, .faqBox iframe {
    width: 190px;
    height: 115px;
  }
}
.quoteBox .quoteImageBox, .quoteBox .faqImageBox, .faqBox .quoteImageBox, .faqBox .faqImageBox {
  position: relative;
  width: 100%;
  height: 232px;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;
}
.quoteBox .quoteImageBox:hover .quoteImage, .quoteBox .quoteImageBox:hover .quoteBGImage, .quoteBox .quoteImageBox:hover .faqImage, .quoteBox .quoteImageBox:hover .faqBGImage, .quoteBox .faqImageBox:hover .quoteImage, .quoteBox .faqImageBox:hover .quoteBGImage, .quoteBox .faqImageBox:hover .faqImage, .quoteBox .faqImageBox:hover .faqBGImage, .faqBox .quoteImageBox:hover .quoteImage, .faqBox .quoteImageBox:hover .quoteBGImage, .faqBox .quoteImageBox:hover .faqImage, .faqBox .quoteImageBox:hover .faqBGImage, .faqBox .faqImageBox:hover .quoteImage, .faqBox .faqImageBox:hover .quoteBGImage, .faqBox .faqImageBox:hover .faqImage, .faqBox .faqImageBox:hover .faqBGImage {
  -webkit-filter: blur(2px) brightness(1.1);
  -moz-filter: blur(2px) brightness(1.1);
  -ms-filter: blur(2px) brightness(1.1);
  -o-filter: blur(2px) brightness(1.1);
  filter: blur(2px) brightness(1.1);
  width: 100%;
  height: 100%;
  transform: scale(1.2);
}
.quoteBox .quoteImageBox .quoteImage, .quoteBox .quoteImageBox .quoteBGImage, .quoteBox .quoteImageBox .faqImage, .quoteBox .quoteImageBox .faqBGImage, .quoteBox .faqImageBox .quoteImage, .quoteBox .faqImageBox .quoteBGImage, .quoteBox .faqImageBox .faqImage, .quoteBox .faqImageBox .faqBGImage, .faqBox .quoteImageBox .quoteImage, .faqBox .quoteImageBox .quoteBGImage, .faqBox .quoteImageBox .faqImage, .faqBox .quoteImageBox .faqBGImage, .faqBox .faqImageBox .quoteImage, .faqBox .faqImageBox .quoteBGImage, .faqBox .faqImageBox .faqImage, .faqBox .faqImageBox .faqBGImage {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(1);
  z-index: 9;
  background-position: center;
  background-size: cover;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.quoteBox .quoteImageBox .quoteBGImage, .quoteBox .quoteImageBox .faqBGImage, .quoteBox .faqImageBox .quoteBGImage, .quoteBox .faqImageBox .faqBGImage, .faqBox .quoteImageBox .quoteBGImage, .faqBox .quoteImageBox .faqBGImage, .faqBox .faqImageBox .quoteBGImage, .faqBox .faqImageBox .faqBGImage {
  transform: scale(1.1);
}
.quoteBox .quoteImageBox .quoteVideoIcon, .quoteBox .quoteImageBox .faqVideoIcon, .quoteBox .faqImageBox .quoteVideoIcon, .quoteBox .faqImageBox .faqVideoIcon, .faqBox .quoteImageBox .quoteVideoIcon, .faqBox .quoteImageBox .faqVideoIcon, .faqBox .faqImageBox .quoteVideoIcon, .faqBox .faqImageBox .faqVideoIcon {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  text-align: center;
  font-size: 4.2em;
  line-height: 186px;
  color: #fff;
  text-shadow: 0 0 20px #000;
  -moz-transition: font-size 0.5s ease, background-color 0.3s ease, color 0.3s ease;
  -o-transition: font-size 0.5s ease, background-color 0.3s ease, color 0.3s ease;
  -webkit-transition: font-size 0.5s ease, background-color 0.3s ease, color 0.3s ease;
  transition: font-size 0.5s ease, background-color 0.3s ease, color 0.3s ease;
}
@media (min-width: 768px) and (max-width: 991px) {
  .quoteBox .quoteImageBox .quoteVideoIcon, .quoteBox .quoteImageBox .faqVideoIcon, .quoteBox .faqImageBox .quoteVideoIcon, .quoteBox .faqImageBox .faqVideoIcon, .faqBox .quoteImageBox .quoteVideoIcon, .faqBox .quoteImageBox .faqVideoIcon, .faqBox .faqImageBox .quoteVideoIcon, .faqBox .faqImageBox .faqVideoIcon {
    line-height: 125px;
  }
}
.quoteBox .quoteImageBox .quoteVideoIcon a, .quoteBox .quoteImageBox .faqVideoIcon a, .quoteBox .faqImageBox .quoteVideoIcon a, .quoteBox .faqImageBox .faqVideoIcon a, .faqBox .quoteImageBox .quoteVideoIcon a, .faqBox .quoteImageBox .faqVideoIcon a, .faqBox .faqImageBox .quoteVideoIcon a, .faqBox .faqImageBox .faqVideoIcon a {
  display: inline-block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
.quoteBox .quoteImageBox .quoteVideoIcon a:hover, .quoteBox .quoteImageBox .faqVideoIcon a:hover, .quoteBox .faqImageBox .quoteVideoIcon a:hover, .quoteBox .faqImageBox .faqVideoIcon a:hover, .faqBox .quoteImageBox .quoteVideoIcon a:hover, .faqBox .quoteImageBox .faqVideoIcon a:hover, .faqBox .faqImageBox .quoteVideoIcon a:hover, .faqBox .faqImageBox .faqVideoIcon a:hover {
  text-decoration: none;
}
.quoteBox .quoteImageBox, .faqBox .quoteImageBox {
  margin-bottom: 18px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .quoteBox .quoteImageBox, .faqBox .quoteImageBox {
    height: 125px;
  }
}
.quoteBox .modal iframe, .faqBox .modal iframe {
  width: 100%;
  height: 319px;
}
.quoteBox .modal .quoteImageBox, .faqBox .modal .quoteImageBox {
  height: 319px;
}
.quoteBox .modal .faqVideoIcon, .faqBox .modal .faqVideoIcon {
  line-height: 319px;
}
.quoteBox .quoteText, .faqBox .quoteText {
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 15px;
  font-style: italic;
}

.faqIframe {
  width: 100%;
  max-width: 100%;
  height: 320px;
}
@media (max-width: 767px) {
  .faqIframe {
    height: 220px;
  }
}

.testimonialBox iframe {
  float: left;
  margin-bottom: 15px;
  background-color: #000;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonialBox iframe {
    width: 190px;
    height: 115px;
  }
}
.testimonialBox a {
  display: inline-block;
  color: #000;
  margin-bottom: 10px;
  height: 36px;
}
.testimonialBox .testimonialImageBox {
  position: relative;
  width: 100%;
  height: 184px;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonialBox .testimonialImageBox {
    height: 150px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonialBox .testimonialImageBox {
    height: 160px;
  }
}
.testimonialBox .testimonialImageBox:hover .testimonialImage {
  -webkit-filter: blur(2px) brightness(1.1);
  -moz-filter: blur(2px) brightness(1.1);
  -ms-filter: blur(2px) brightness(1.1);
  -o-filter: blur(2px) brightness(1.1);
  filter: blur(2px) brightness(1.1);
  width: 100%;
  height: 100%;
  transform: scale(1.2);
}
.testimonialBox .testimonialImageBox .testimonialImage, .testimonialBox .testimonialImageBox .testimonialBGImage {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(1);
  z-index: 9;
  background-position: center;
  background-size: cover;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.testimonialBox .testimonialImageBox .testimonialVideoIcon {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  text-align: center;
  font-size: 4.2em;
  line-height: 186px;
  color: #fff;
  text-shadow: 0 0 20px #000;
  -moz-transition: font-size 0.5s ease, background-color 0.3s ease, color 0.3s ease;
  -o-transition: font-size 0.5s ease, background-color 0.3s ease, color 0.3s ease;
  -webkit-transition: font-size 0.5s ease, background-color 0.3s ease, color 0.3s ease;
  transition: font-size 0.5s ease, background-color 0.3s ease, color 0.3s ease;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonialBox .testimonialImageBox .testimonialVideoIcon {
    line-height: 150px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonialBox .testimonialImageBox .testimonialVideoIcon {
    line-height: 160px;
  }
}
.testimonialBox .testimonialImageBox .testimonialVideoIcon a {
  display: inline-block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
.testimonialBox .testimonialImageBox .testimonialVideoIcon a:hover {
  text-decoration: none;
}
.testimonialBox .modal iframe {
  width: 100%;
  height: 319px;
}
.testimonialBox .modal .testimonialImageBox {
  height: 319px;
}
.testimonialBox .modal .testimonialVideoIcon {
  line-height: 319px;
}
.testimonialBox .quoteText {
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 15px;
  font-style: italic;
}

main article:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}

.faq-item {
  width: 25%;
  float: left;
  padding: 0 15px;
}
@media (max-width: 992px) {
  .faq-item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .faq-item {
    width: 100%;
  }
}
.faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 30px;
}
@media (max-width: 1180px) {
  .faq-item h3 {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 1080px) {
  .faq-item h3 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.faqBox {
  display: block;
  min-height: 0;
  margin-top: 15px;
  margin-bottom: 0;
  padding: 15px;
  border: 1px solid #EF7303;
  transition: background-color 0.1s ease;
  font-weight: bold;
  height: 68px;
  text-align: center;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .faqBox {
    font-size: 13px;
    font-size: 0.8125rem;
    height: 85px;
  }
}
.faqBox:hover {
  background-color: #EF7303;
  color: #fff;
}
.faqBox iframe {
  max-width: 100%;
}
.faqBox .faqHeadings {
  min-height: 45px;
}

.faqPage img {
  float: right;
  margin: 0 0 10px 10px;
}

div[itemprop=articleBody] img {
  max-width: 100%;
  height: auto;
}

.home-box {
  background-color: #EF7303;
  color: #fff;
  border: 5px solid #fff;
  padding: 4px;
  min-height: 300px;
  /*
  position: relative;*/
}
.home-box .inner-box {
  padding: 20px;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
.home-box .inner-box .fakeHeading {
  display: block;
  margin-top: 0;
  text-align: center;
  color: #fff;
  font-family: sans-serif, arial;
  font-weight: 600;
  font-size: 30px;
  font-size: 1.875rem;
}
@media (max-width: 1280px) {
  .home-box .inner-box .fakeHeading {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home-box .inner-box .fakeHeading {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.home-box .inner-box .fakeHeading:hover {
  color: #fff !important;
  text-decoration: underline;
}
.home-box .inner-box .bgbtm {
  aspect-ratio: 2.225;
  margin-bottom: 20px;
  margin-top: 10px;
}
.home-box .inner-box .readwrap {
  aspect-ratio: 2.225;
  position: absolute;
  bottom: 0px;
  width: 100%;
  margin-bottom: 20px;
}
.home-box .inner-box .readwrap .read {
  display: inline-block;
  padding: 5px 10px;
  background-color: #384042;
  color: #fff;
  font-size: 1em;
  font-weight: bold;
}
.home-box .inner-box a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}
.home-box .inner-box a:hover {
  text-decoration: underline;
}

.articleHeader {
  background: none;
  position: relative;
  height: 75px;
  padding: 15px;
}
@media (max-width: 767px) {
  .articleHeader {
    margin-top: 0;
    height: auto;
  }
}
.articleHeader h1 {
  display: inline-block;
  font-size: 28px;
  font-size: 1.75rem;
  color: #fff;
  text-shadow: 0 0 18px #000;
  background-color: rgba(0, 0, 0, 0.7);
  margin: 24px auto 15px auto;
  padding: 10px 40px;
}
@media (max-width: 767px) {
  .articleHeader h1 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.articleHeader div[itemprop=description] {
  font-size: 1.2em;
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 0 0 1px #000;
  /*@include responsive(xs) {
            text-align: left;
        }*/
}

.bodyText {
  font-size: 1.05em;
  margin-top: 20px;
}

form label {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: normal;
  color: #384042;
}
form h2 {
  margin: 40px 0 30px 0;
}
form h2 small {
  text-transform: none;
}
form .form-control {
  margin-bottom: 15px;
  border-radius: 0;
}
form textarea {
  min-height: 180px;
}

.animatedButton {
  position: relative;
  display: inline-block;
  width: 250px;
  max-width: 100%;
  height: 38px;
  margin-top: 15px;
  overflow: hidden;
  border: none;
}
.animatedButton.large {
  font-size: 1.5em;
  height: 48px;
}
.animatedButton.large:hover {
  text-decoration: none;
  color: #F0801B;
}
.animatedButton.complete:before, .animatedButton.complete:after {
  content: "Complete Booking";
}
.animatedButton:hover {
  text-decoration: none;
  color: #F0801B;
}
.animatedButton:hover:before {
  top: 100%;
}
.animatedButton:hover:after {
  top: 0;
}
.animatedButton:before, .animatedButton:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "Submit";
  padding: 7px 18px;
  text-transform: uppercase;
  font-size: 1.1em;
  font-weight: bold;
  border: 2px solid #F0801B;
  transition: top 0.15s ease;
}
.animatedButton:before {
  top: 0;
  background-color: #F0801B;
  color: #fff;
  z-index: 9;
}
.animatedButton:after {
  top: -100%;
  background-color: #fff;
  color: #EF7303;
}
.animatedButton.darkGrey:after {
  background-color: #33383B;
}

.shippersInventoryForm, .bookingForm, .getAQuoteForm, .packingMaterialForm {
  background-color: #FCDABE;
  color: #9A9A9A;
  /*button[type=button] {
         width: 100%;
         margin-bottom: 15px;

         &:before, &:after {
             content: "Add another Package";
         }
     }*/
}
.shippersInventoryForm .columnHeading, .bookingForm .columnHeading, .getAQuoteForm .columnHeading, .packingMaterialForm .columnHeading {
  display: inline-block;
  padding-bottom: 3px;
  font-style: italic;
  color: #666;
}
@media (max-width: 991px) {
  .shippersInventoryForm .columnHeading, .bookingForm .columnHeading, .getAQuoteForm .columnHeading, .packingMaterialForm .columnHeading {
    margin-top: 10px;
  }
}
.shippersInventoryForm .priceLabel, .bookingForm .priceLabel, .getAQuoteForm .priceLabel, .packingMaterialForm .priceLabel {
  font-weight: bold;
  margin-bottom: 0;
}
.shippersInventoryForm .priceBox, .bookingForm .priceBox, .getAQuoteForm .priceBox, .packingMaterialForm .priceBox {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  font-weight: bold;
}
@media (max-width: 991px) {
  .shippersInventoryForm .priceBox, .bookingForm .priceBox, .getAQuoteForm .priceBox, .packingMaterialForm .priceBox {
    text-align: left;
  }
}
.shippersInventoryForm > .row, .bookingForm > .row, .getAQuoteForm > .row, .packingMaterialForm > .row {
  padding-top: 30px;
}
@media (min-width: 1200px) {
  .shippersInventoryForm > .row, .bookingForm > .row, .getAQuoteForm > .row, .packingMaterialForm > .row {
    padding-top: 45px;
  }
}
.shippersInventoryForm .packHeading, .bookingForm .packHeading, .getAQuoteForm .packHeading, .packingMaterialForm .packHeading {
  margin-top: 15px;
  margin-bottom: 5px;
  font-style: italic;
  font-size: 0.9em;
}
.shippersInventoryForm .packHeading span, .bookingForm .packHeading span, .getAQuoteForm .packHeading span, .packingMaterialForm .packHeading span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: normal;
  font-style: normal;
  color: #1D1D1B;
  text-transform: uppercase;
}
.shippersInventoryForm .package, .bookingForm .package, .getAQuoteForm .package, .packingMaterialForm .package {
  float: left;
  width: 100%;
  -moz-transition: height 0.3s ease;
  -o-transition: height 0.3s ease;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  overflow: hidden;
}
.shippersInventoryForm .package .packName b, .bookingForm .package .packName b, .getAQuoteForm .package .packName b, .packingMaterialForm .package .packName b {
  display: inline-block;
  color: #000;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .shippersInventoryForm .package .packName span b, .bookingForm .package .packName span b, .getAQuoteForm .package .packName span b, .packingMaterialForm .package .packName span b {
    display: none;
  }
}
@media (max-width: 767px) {
  .shippersInventoryForm .package .inventoryValue, .bookingForm .package .inventoryValue, .getAQuoteForm .package .inventoryValue, .packingMaterialForm .package .inventoryValue {
    text-align: left !important;
  }
}
.shippersInventoryForm h2, .bookingForm h2, .getAQuoteForm h2, .packingMaterialForm h2 {
  margin: 32px 0 20px 0;
}
@media (max-width: 767px) {
  .shippersInventoryForm h2, .bookingForm h2, .getAQuoteForm h2, .packingMaterialForm h2 {
    margin: 20px 0 20px 0;
  }
}
.shippersInventoryForm .shippersInventoryTermsHold, .shippersInventoryForm .bookOnlineTermsHold, .bookingForm .shippersInventoryTermsHold, .bookingForm .bookOnlineTermsHold, .getAQuoteForm .shippersInventoryTermsHold, .getAQuoteForm .bookOnlineTermsHold, .packingMaterialForm .shippersInventoryTermsHold, .packingMaterialForm .bookOnlineTermsHold {
  padding: 30px;
  background-color: #F8BB84;
  color: #1D1D1B;
  margin-bottom: 30px;
}
.shippersInventoryForm .shippersInventoryTermsHold h2, .shippersInventoryForm .bookOnlineTermsHold h2, .bookingForm .shippersInventoryTermsHold h2, .bookingForm .bookOnlineTermsHold h2, .getAQuoteForm .shippersInventoryTermsHold h2, .getAQuoteForm .bookOnlineTermsHold h2, .packingMaterialForm .shippersInventoryTermsHold h2, .packingMaterialForm .bookOnlineTermsHold h2 {
  margin-top: 0;
  color: #1D1D1B;
}
.shippersInventoryForm .bookingBox, .bookingForm .bookingBox, .getAQuoteForm .bookingBox, .packingMaterialForm .bookingBox {
  height: 89px;
  font-size: 2.5em;
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 87px;
}
@media (max-width: 767px) {
  .shippersInventoryForm .bookingBox, .bookingForm .bookingBox, .getAQuoteForm .bookingBox, .packingMaterialForm .bookingBox {
    margin-bottom: 15px;
  }
}
.shippersInventoryForm .bookingBox span, .bookingForm .bookingBox span, .getAQuoteForm .bookingBox span, .packingMaterialForm .bookingBox span {
  color: #ef7303;
  font-weight: bold;
}

.bookingForm .row .pad-sides .bookOnlineTermsHold .text-center .btn-orange {
  margin: 15px 0 0;
}

.packingMaterialForm .row {
  padding-top: 0;
}
@media (max-width: 991px) {
  .packingMaterialForm .col-xs-6.text-center {
    text-align: left;
  }
}

.contactHold span.textRight {
  display: block;
  float: left;
}
.contactHold span.contactHeader {
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 5px;
  color: #EF7303;
  font-size: 24px;
  font-size: 1.5rem;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .contactHold span.contactHeader {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.contactHold a {
  color: #000;
}
.contactHold a:hover {
  color: #000;
}
.contactHold .fa, .contactHold .social-link {
  display: block;
  float: left;
  width: 45px;
  height: 45px;
  line-height: 45px;
  margin-right: 10px;
  margin-top: 15px;
  font-size: 2.5em;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  color: #EF7303;
  /*@include responsive(xs) {
  	display: none;
  }*/
}
.contactHold .fa.social-link, .contactHold .social-link.social-link {
  background: black no-repeat center center;
  background-size: 28px;
}
.contactHold .fa.facebook, .contactHold .social-link.facebook {
  background-image: url(/images/social-logo-white-facebook.png);
}
.contactHold .fa.linkedin, .contactHold .social-link.linkedin {
  background-image: url(/images/social-logo-white-linkedin.png);
}
.contactHold .third {
  padding: 0 2px;
}
.contactHold .third span.contactHeader {
  width: 125px;
}
@media (max-width: 992px) {
  .contactHold .third {
    float: left;
  }
}
.contactHold img {
  max-height: 306px;
  width: auto;
}

.google-map {
  width: 100%;
  height: 500px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .google-map {
    margin-top: 20px;
    margin-bottom: 0px;
  }
}

.socialShareButtons {
  width: 100%;
  height: 65px;
  margin-top: 15px;
}
.socialShareButtons:hover div.shareTitle {
  color: #000;
}
.socialShareButtons div.shareTitle {
  display: block;
  margin: 0 0 5px 0;
  font-weight: bold;
  color: #384042;
  -moz-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.socialShareButtons > a.shareButton i {
  position: relative;
  display: inline-block;
  float: left;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 50%;
  line-height: 21px;
  text-align: center;
  background-color: #384042;
  color: #fff;
  overflow: hidden;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.socialShareButtons > a.shareButton i:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: height 0.15s ease;
}
.socialShareButtons > a.shareButton i:before {
  position: relative;
  z-index: 999;
}
.socialShareButtons > a.shareButton i:hover {
  text-decoration: none;
}
.socialShareButtons > a.shareButton i:hover:after {
  height: 100%;
}
.socialShareButtons > a.shareButton.shareFacebook i:after {
  background-color: #3b5998;
}
.socialShareButtons > a.shareButton.shareTwitter i:after {
  background-color: #4099FF;
}
.socialShareButtons > a.shareButton.shareGooglePlus i:after {
  background-color: #d34836;
}
.socialShareButtons > a.shareButton.shareDigg i:after {
  background-color: #ff6600;
}
.socialShareButtons > a.shareButton.shareReddit i:after {
  background-color: #ff6600;
}
.socialShareButtons > a.shareButton.shareLinkedIn i:after {
  background-color: #0976b4;
}
.socialShareButtons > a.shareButton.sharePinterest i:after {
  background-color: #cb2027;
}
.socialShareButtons > a.shareButton.shareStumble i:after {
  background-color: #f74425;
}
.socialShareButtons > a.shareButton.shareEmail i:after {
  background-color: #00bd66;
}

.twitterFeed {
  float: left;
  width: 240px;
}
.twitterFeed a {
  color: #4099FF;
  text-decoration: none;
}
.twitterFeed > .titleContainer {
  float: left;
  width: 240px;
  height: 50px;
  margin: 10px 0 0 0;
}
.twitterFeed > .titleContainer > a > img {
  float: left;
}
.twitterFeed > .titleContainer > .title {
  float: left;
  padding: 5px 0 0 10px;
  width: 110px;
  font-size: 0.9em;
}
.twitterFeed > .titleContainer > .title > a {
  color: #000;
  text-decoration: none;
}
.twitterFeed > .tweet {
  float: left;
  width: 240px;
  margin: 10px 0 0 0;
}
.twitterFeed > .tweet > .actionsContainer {
  float: left;
  width: 100%;
  padding: 8px 0 0 0;
  line-height: 25px;
  font-size: 0.8em;
}
.twitterFeed > .tweet > .actionsContainer > .actions {
  float: right;
  width: auto;
  height: 25px;
}
.twitterFeed > .tweet > .actionsContainer > .actions > a {
  font-size: 1.3em;
  text-decoration: none;
}
@media (max-width: 991px) {
  .twitterFeed > .tweet > .actionsContainer > .actions > a {
    font-size: 1.8em;
    margin-right: 20px;
  }
}
.twitterFeed > .tweet > .actionsContainer > .actions > a > i:hover {
  color: #384042;
}

@media (max-width: 767px) {
  input[type=text], input[type=date], input[type=number], input[type=telephone], input[type=email], select, option, textarea, .form-control {
    font-size: 16px;
  }
}

form#contactForm label {
  margin-top: 15px;
}
form#contactForm label.checkboxLabel {
  float: left;
  width: calc(100% - 26px);
}
form#contactForm input[type=checkbox] {
  float: left;
  width: 20px;
  margin: 18px 3px 0 0;
  padding: 0;
}
form#contactForm input[type=submit] {
  margin-top: 15px;
}

.validation-summary-valid {
  display: none;
}

.validation-summary-errors {
  color: #a00;
  background-color: #c22;
  color: #fff;
  margin: 0 15px;
  padding: 15px 0;
}
.validation-summary-errors::before {
  content: "Please correct the following:";
  display: block;
  font-weight: bold;
  font-size: 1.1em;
  width: 100%;
  margin-bottom: 10px;
  padding-left: 15px;
}

input[type=checkbox].input-validation-error {
  box-shadow: 0px 0px 0px 3px #a00;
}

.input-validation-error {
  color: #fff !important;
  background-color: #c00 !important;
}
.input-validation-error::-webkit-input-placeholder {
  color: #fff !important;
}
.input-validation-error:-moz-placeholder { /* Firefox 18- */
  color: #fff !important;
}
.input-validation-error::-moz-placeholder { /* Firefox 19+ */
  color: #fff !important;
}
.input-validation-error:-ms-input-placeholder {
  color: #fff !important;
}

.smartLister .smartListItem {
  height: auto;
}
.smartLister .smartListItem:hover .listItemBody {
  background-color: #EF7303;
  color: #fff;
}
.smartLister .smartListItem:hover .listItemBody .listItemTitle {
  color: #fff;
}
.smartLister .smartListItem:hover .listItemBody .listItemTitle:hover {
  color: #fff;
  text-decoration: underline;
}
.smartLister .smartListItem .listItemBody {
  display: block;
  height: 228px;
  padding: 15px;
  border: 1px solid #EF7303;
  margin-bottom: 20px;
  transition: background-color 0.1s ease, color 0.1s ease;
  text-decoration: none;
  color: #1d1d1b;
}
@media (max-width: 767px) {
  .smartLister .smartListItem .listItemBody {
    height: auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .smartLister .smartListItem .listItemBody {
    height: 200px;
  }
}
.smartLister .smartListItem .listItemBody .listItemTitle {
  display: inline-block;
  color: #EF7303;
  text-decoration: none;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 15px;
  width: 86%;
  /*&:hover {
                  color: $colorPaletteOrange;
                  text-decoration: underline;
              }*/
}
.smartLister .smartListItem .listItemBody .listItemTitle .date {
  display: block;
  padding-top: 5px;
  font-size: 12px;
  color: #333;
}
@media (max-width: 767px) {
  .smartLister .smartListItem .listItemBody .listItemTitle .date {
    width: 100%;
    text-align: left;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .smartLister .smartListItem .listItemBody .listItemTitle .date {
    width: 100%;
    text-align: left;
  }
}
.smartLister .smartListItem .listItemBody .date {
  font-size: 14px;
  font-size: 0.875rem;
  padding-top: 5px;
}
.smartLister .smartListItem .listItemBody p {
  font-size: 14px;
  font-size: 0.875rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.clear {
  margin: 0;
  padding: 0;
  height: 0;
  clear: both;
}

.mobileClear {
  display: none;
}

@media (max-width: 991px) {
  .mobileClear {
    display: block;
    margin: 0;
    padding: 0;
    height: 0;
    clear: both;
  }
}
#cd-timeline {
  position: relative;
  margin-top: 2em;
  margin-bottom: 2em;
}
#cd-timeline::before {
  /* this is the vertical line */
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  height: calc(100% - 100px);
  width: 4px;
  background: #DDDEDF;
  left: 50%;
  margin-left: -2px;
}
@media (max-width: 991px) {
  #cd-timeline::before {
    left: 34px;
    margin-left: 0;
  }
}

.cd-timeline-block {
  position: relative;
  margin: 4em 0;
}
.cd-timeline-block a {
  color: #fff;
  text-decoration: none;
}
.cd-timeline-block a:hover {
  color: #fff;
  text-decoration: underline;
}
.cd-timeline-block:hover .cd-timeline-img {
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin-top: -5px;
  margin-left: -35px;
  box-shadow: 3px 3px 3px #666;
}
.cd-timeline-block:hover .cd-timeline-content {
  box-shadow: 4px 4px 6px #777;
}
.cd-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-block:first-child {
  margin-top: 0;
}
.cd-timeline-block:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cd-timeline-block {
    margin: 2em 0;
  }
}
.cd-timeline-block:nth-child(even) .cd-timeline-content {
  float: right;
}
@media (max-width: 991px) {
  .cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: none;
  }
}
.cd-timeline-block:nth-child(even) .cd-timeline-content::before {
  top: 24px;
  left: auto;
  right: 100%;
  border-color: transparent;
  border-right-color: #EF7303;
}
@media (max-width: 991px) {
  .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
    top: 16px;
    left: auto;
    right: 100%;
  }
}
.cd-timeline-block .cd-timeline-content {
  position: relative;
  display: block;
  background: #EF7303;
  border-radius: 0.25em;
  width: 45%;
  padding: 1.6em;
  box-shadow: 0 3px 0 #DDDEDF;
  margin-left: 0;
  transition: box-shadow 0.2s ease;
}
@media (max-width: 991px) {
  .cd-timeline-block .cd-timeline-content {
    margin-left: 60px;
    padding: 1em;
    width: auto;
  }
}
.cd-timeline-block .cd-timeline-content::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 100%;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid #fff;
  border-left-color: #EF7303;
}
@media (max-width: 991px) {
  .cd-timeline-block .cd-timeline-content::before {
    top: 16px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: #EF7303;
  }
}
.cd-timeline-block .cd-timeline-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-block .cd-timeline-content h2 {
  color: #fff;
  margin: 0;
}
.cd-timeline-block .cd-timeline-content p {
  margin-top: 15px;
  margin-bottom: 0;
  color: #fff;
  font-style: italic;
  line-height: 1.2em;
}
.cd-timeline-block .cd-timeline-content:hover {
  text-decoration: none;
}
.cd-timeline-block .cd-timeline-content:hover h2 {
  text-decoration: underline;
}
.cd-timeline-block .cd-timeline-img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 2em;
  border-radius: 50%;
  background-color: #384042;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
  margin-left: -30px;
  transition: width 0.2s ease, height 0.2s ease, line-height 0.2s ease, margin-left 0.2s ease, margin-top 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 991px) {
  .cd-timeline-block .cd-timeline-img {
    line-height: 40px;
    left: 30px;
    width: 40px;
    height: 40px;
    font-size: 1.8em;
  }
}

@media (max-width: 767px) {
  .padRightXs {
    margin-right: 10px;
  }
}

.youtube {
  background-color: #000;
  margin-bottom: 30px;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}

.youtube img {
  width: 100%;
  top: -16.84%;
  left: 0;
  opacity: 0.7;
}

.youtube .play-button {
  width: 90px;
  height: 60px;
  background-color: #333;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
}

.youtube .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent #fff;
}

.youtube img,
.youtube .play-button {
  cursor: pointer;
}

.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
  position: absolute;
}

.youtube .play-button,
.youtube .play-button:before {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.youtube iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.breadcrumbs {
  background: white;
  padding: 10px 0 0 0;
  overflow: hidden;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (max-width: 992px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs ul {
  padding: 0;
}
.breadcrumbs ul:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
.breadcrumbs .container {
  padding: 0 50px;
}

.breadcrumbs li {
  float: left;
  list-style-type: none;
  margin-right: 10px;
}

.image-bg-slider {
  background: #DDDEDF;
  position: absolute !important;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .image-bg-slider {
    display: none !important;
  }
}
.image-bg-slider .item {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.image-bg-slider div {
  min-height: 380px;
}
.image-bg-slider div .container {
  position: relative;
}
.image-bg-slider div .text-block {
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 34px;
  min-height: 0;
  max-width: 75%;
  display: inline-block;
  font-size: 22px;
  font-size: 1.375rem;
  color: #fff;
  background-color: rgba(238, 114, 2, 0.9);
  margin: 0 auto 15px auto;
  padding: 20px;
}
@media (max-width: 900px) {
  .image-bg-slider div .text-block {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.image-bg-slider div .text-block.clear-background {
  background: none;
  font-size: 22px;
}
.image-bg-slider div .text-block .bannerTitle {
  font-size: 28px;
  font-weight: bold;
}

.form-wrap {
  padding: 14px 0 24px;
}
@media (min-width: 1200px) {
  .form-wrap {
    margin: 0 -40px;
  }
}
@media (max-width: 1200px) {
  .form-wrap {
    padding: 50px 0 24px;
  }
}
.form-wrap:after {
  display: block;
  content: " ";
  clear: both;
}
@media (min-width: 768px) {
  .form-wrap > div > .col-sm-6:first-child {
    border-right: 1px solid #ef7303;
    padding-right: 40px;
  }
  .form-wrap > div > .col-sm-6:first-child + div {
    padding-left: 40px;
  }
  .form-wrap > div > .col-sm-6 .col-xs-12:first-child h2:first-of-type {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .form-wrap {
    padding: 20px 0 24px;
  }
}

.testimonial-item {
  float: left;
  width: 25%;
  padding: 0 15px;
}
@media (max-width: 992px) {
  .testimonial-item {
    width: 33.333%;
  }
}
@media (max-width: 767px) {
  .testimonial-item {
    width: 100%;
    padding: 0;
  }
}
.testimonial-item b {
  font-size: 13px;
  font-size: 0.8125rem;
}

.text-col-item {
  width: 25%;
  float: left;
}
@media (max-width: 992px) {
  .text-col-item {
    width: 100%;
  }
}

.detail-col-item {
  width: 75%;
  float: left;
}
@media (max-width: 992px) {
  .detail-col-item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .detail-col-item {
    width: 50%;
  }
}

.label-col-item {
  width: 100%;
  float: left;
}
@media (max-width: 767px) {
  .label-col-item {
    width: 50%;
  }
}

.detailBox {
  width: 33.333%;
  float: left;
}
@media (max-width: 767px) {
  .detailBox {
    width: 100%;
  }
}

.service-list {
  margin: 60px 0;
}
@media (max-width: 550px) {
  .service-list {
    margin: 40px 0;
  }
}
.service-list .half {
  position: relative;
  padding-left: 250px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .service-list .half {
    width: 100%;
    float: none;
    min-height: 140px;
  }
}
@media (max-width: 550px) {
  .service-list .half {
    padding-left: 0;
    margin-bottom: 30px;
    min-height: 0;
  }
}
.service-list .half:nth-child(2n+1) {
  clear: left;
}
.service-list .half .image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
@media (max-width: 550px) {
  .service-list .half .image {
    display: none;
  }
}
.service-list .half h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-size: 1.375rem;
}
.service-list .half a:not(.image):hover {
  text-decoration: underline;
}
.service-list .half p {
  margin: 0;
}

.industry-panel h2 {
  text-align: center;
  margin: 0 0 20px;
  color: #000;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  text-transform: none;
  overflow: hidden;
}
@media (max-width: 992px) {
  .industry-panel h2 {
    display: none;
  }
}
.industry-panel .carousel-list {
  display: none;
  margin: 0 -15px;
  padding: 40px 36px;
  border-top: 3px solid #EF7303;
  border-bottom: 3px solid #EF7303;
}
@media (max-width: 992px) {
  .industry-panel .carousel-list {
    margin: 0;
  }
}
.industry-panel .carousel-list.slick-initialized {
  display: block;
}
.industry-panel .carousel-list .item {
  padding: 0 15px;
}
.industry-panel .carousel-list .item a:not(.image) {
  font-size: 20px;
  font-size: 1.25rem;
}
.industry-panel .carousel-list .item a:not(.image):hover {
  text-decoration: underline;
}
.industry-panel .carousel-list .item .image {
  margin-top: 14px;
  margin-bottom: 4px;
  display: block;
  width: 100%;
}
.industry-panel .carousel-list .item .image img {
  display: block;
  width: 100%;
}
.industry-panel .carousel-list .slick-dots {
  padding: 0;
  margin: 0;
  text-align: center;
}
.industry-panel .carousel-list .slick-dots li {
  display: inline-block;
  margin: 0 7px;
}
.industry-panel .carousel-list .slick-dots li button {
  padding: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #C3CBC8;
  text-indent: -9999px;
}
.industry-panel .carousel-list .slick-dots li.slick-active button {
  background: #869791;
}
.industry-panel .carousel-list .slick-arrow {
  position: absolute;
  top: 0;
  height: 100%;
  width: 30px;
  text-indent: -9999px;
  background: #fff;
}
.industry-panel .carousel-list .slick-arrow.slick-prev {
  left: -20px;
  background-image: url(/Images/arrow-left.png);
  background-size: 30px 53px;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1280px) {
  .industry-panel .carousel-list .slick-arrow.slick-prev {
    left: -10px;
  }
}
@media (max-width: 992px) {
  .industry-panel .carousel-list .slick-arrow.slick-prev {
    left: -2px;
    background-size: 20px 35px;
  }
}
@media (max-width: 550px) {
  .industry-panel .carousel-list .slick-arrow.slick-prev {
    left: -5px;
  }
}
.industry-panel .carousel-list .slick-arrow.slick-next {
  right: -20px;
  background-image: url(/Images/arrow-right.png);
  background-size: 30px 53px;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1280px) {
  .industry-panel .carousel-list .slick-arrow.slick-next {
    right: -10px;
  }
}
@media (max-width: 992px) {
  .industry-panel .carousel-list .slick-arrow.slick-next {
    right: -2px;
    background-size: 20px 35px;
  }
}
@media (max-width: 550px) {
  .industry-panel .carousel-list .slick-arrow.slick-next {
    right: -5px;
  }
}

.service-panel {
  margin-top: 36px;
}
.service-panel h2 {
  text-align: center;
  margin: 0 0 20px;
  color: #000;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  text-transform: none;
  overflow: hidden;
}
@media (max-width: 992px) {
  .service-panel h2 {
    display: none;
  }
}
.service-panel .service-list {
  margin: 0 -15px;
  padding: 40px 0;
  border-top: 3px solid #EF7303;
  border-bottom: 3px solid #EF7303;
}
.service-panel .service-list:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
@media (max-width: 900px) {
  .service-panel .service-list {
    margin-top: 40px;
  }
}
.service-panel .service-list .service-item {
  padding: 0 15px;
  float: left;
  width: 25%;
}
@media (max-width: 992px) {
  .service-panel .service-list .service-item {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .service-panel .service-list .service-item {
    width: 100%;
  }
  .service-panel .service-list .service-item:last-child {
    margin-bottom: 0;
  }
}
.service-panel .service-list .service-item a:not(.image) {
  font-size: 20px;
  font-size: 1.25rem;
}
.service-panel .service-list .service-item a:not(.image):hover {
  text-decoration: underline;
}
.service-panel .service-list .service-item .image {
  margin-top: 14px;
  margin-bottom: 4px;
  display: block;
  width: 100%;
}
.service-panel .service-list .service-item .image img {
  display: block;
  width: 100%;
}

.resource-split {
  padding: 20px 0;
}
.resource-split:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
@media (max-width: 767px) {
  .resource-split .half {
    margin-bottom: 32px;
  }
  .resource-split .half:last-child {
    margin-bottom: 0;
  }
}
.resource-split h1, .resource-split h2, .resource-split h3 {
  text-transform: none;
  color: #000;
  border-bottom: 1px solid #EF7303;
  padding-bottom: 6px;
  margin-top: 0;
}
.resource-split a {
  position: relative;
  margin-bottom: 12px;
  padding: 14px 0;
  padding-left: 72px;
  min-height: 73px;
  display: block;
}
.resource-split a:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
.resource-split a:nth-child(odd) {
  background: rgba(238, 238, 238, 0.5);
}
.resource-split a img {
  position: absolute;
  padding: 4px;
  background: #fff;
  border: 1px solid rgba(238, 238, 238, 0.5);
  top: 0;
  left: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

.content-left {
  width: calc(100% - 360px);
  padding-right: 40px;
  float: left;
}
@media (max-width: 1180px) {
  .content-left {
    width: calc(100% - 280px);
  }
}
@media (max-width: 900px) {
  .content-left {
    width: 100%;
    float: none;
  }
}

.latest-news-right {
  width: 360px;
  float: right;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (max-width: 1180px) {
  .latest-news-right {
    width: 280px;
  }
}
@media (max-width: 900px) {
  .latest-news-right {
    width: 100%;
    float: none;
    margin-top: 40px;
  }
  .latest-news-right .newsBox {
    margin: 0 -15px;
  }
  .latest-news-right .newsBox:after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
  }
  .latest-news-right .newsBox .newsItem {
    display: inline-block;
    float: left;
    vertical-align: top;
    width: 50%;
    padding: 0 15px;
  }
}
@media (max-width: 900px) and (max-width: 550px) {
  .latest-news-right .newsBox .newsItem {
    width: 100%;
    float: none;
    margin-bottom: 5px;
  }
}
@media (max-width: 900px) {
  .latest-news-right .newsBox .newsItem:nth-child(2n+1) {
    clear: left;
  }
}
.latest-news-right h2 {
  color: #F0801B;
  margin-bottom: 36px;
}
@media (max-width: 900px) {
  .latest-news-right h2 {
    margin-bottom: 20px;
  }
}
.latest-news-right a {
  font-weight: 700;
}
.latest-news-right p {
  margin-top: 6px;
  margin-bottom: 16px;
}
.latest-news-right .container {
  padding: 0;
}

.formQuote {
  background: #f2f2f2;
  margin: 40px 0;
  padding: 20px 15px 50px;
}
.formQuote .inner {
  max-width: 740px;
  margin: 0 auto;
}
.formQuote h2 {
  margin-top: 20px;
}
.formQuote h3 {
  color: #EF7303;
}
.formQuote input[type=submit] {
  background-color: #ee7202;
  color: #fff;
  height: 48px;
  width: 100%;
  margin: 15px 0;
  font-weight: 600;
  font-size: 1.3em;
  border: 0;
}
.formQuote .delLine {
  display: inline-block;
  float: left;
  width: 100%;
  height: 34px;
  line-height: 24px;
  background-color: #ee7202;
  padding: 5px 10px;
  color: #fff;
  text-decoration: none;
}
.formQuote .totalRow {
  margin: 20px 0 10px;
  float: left;
  width: 100%;
  background-color: #343434;
  padding: 10px 0 20px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.3em;
}
.formQuote .totalShow {
  display: inline-block;
  height: 30px;
  margin-left: 5px;
  color: #ee7202;
  background-color: #343434;
  border: 0;
  font-size: 1.1em;
}
@media (min-width: 992px) {
  .formQuote #packageContainer .col-md-2 {
    width: 20%;
    padding-left: 0;
  }
}

.text-hightlight {
  font-weight: bold;
}

.searchResult {
  padding: 10px 0;
  border-bottom: 1px solid #DDDEDF;
}
.searchResult:last-child {
  border-bottom: none;
}
.searchResult h2 a {
  margin-right: 10px;
}
.searchResult h2 .typeHolder {
  display: inline-block;
  position: relative;
  top: -2px;
}
.searchResult h2 .typeHolder .typeTag {
  background-color: #ef7303;
  border-radius: 6px;
  padding: 0 5px;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  text-transform: none;
}

#searchForm {
  position: relative;
  margin: 0 0 15px;
  padding: 10px 15px;
  background-color: #EF7303;
}
#searchForm button[type=submit] {
  position: relative;
  display: inline-block;
  width: 130px;
  height: 36px;
  margin-top: 0;
  overflow: hidden;
  border: none;
  font-size: 14px;
  font-size: 0.875rem;
  background: #000;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  -moz-transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
  -webkit-transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}
#searchForm button[type=submit]:hover {
  text-decoration: none;
  background-color: #fff;
  color: #F0801B;
}
#searchForm button[type=submit]:before {
  top: 0;
  background-color: #000;
  color: #fff;
  z-index: 9;
}
#searchForm button[type=submit]:after {
  top: 47px;
  background-color: #fff;
  color: #EF7303;
}
@media (max-width: 480px) {
  #searchForm button[type=submit] {
    width: 100%;
  }
}
#searchForm .form-control {
  height: 35px;
  margin-top: 0;
  margin-bottom: 0;
  border: none;
  box-shadow: none;
  font-size: 1.1em;
  width: calc(100% - 135px);
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
}
#searchForm .form-control::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #384042;
}
#searchForm .form-control:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #384042;
  opacity: 1;
}
#searchForm .form-control::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #384042;
  opacity: 1;
}
#searchForm .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #384042;
}
@media (max-width: 480px) {
  #searchForm .form-control {
    width: 100%;
    margin-bottom: 10px;
  }
}

[itemprop=description] {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 3px solid #EF7303;
  display: inline;
  line-height: 1.6em;
}
@media (max-width: 767px) {
  [itemprop=description] {
    font-size: 1.2em;
    margin-bottom: 0;
  }
}

.volume-container .volume-row label {
  display: inline-block;
  min-width: 75px;
  height: 34px;
  padding: 6px 8px 6px 6px;
  font-size: 14px;
  line-height: 1.42857143;
  font-weight: 700;
  text-align: left;
}
@media (max-width: 550px) {
  .volume-container .volume-row label {
    display: block;
  }
}
.volume-container .volume-row input {
  display: inline-block;
  width: auto;
  min-width: 100px;
}
.volume-container .volume-row input.extra-margin-left {
  margin-left: 72px;
}
@media (max-width: 550px) {
  .volume-container .volume-row input.extra-margin-left {
    margin-left: 0px;
  }
}
.volume-container .volume-row p {
  display: inline-block;
  min-width: 50px;
  text-align: left;
  height: 34px;
  padding: 6px;
  font-size: 14px;
  line-height: 1.42857143;
}
@media (max-width: 550px) {
  .volume-container .volume-row p {
    display: inline-block;
  }
}
.volume-container .half-width {
  max-width: 50%;
}
@media (max-width: 900px) {
  .volume-container .half-width {
    max-width: 100%;
  }
}

#volumetricForm .input-required {
  box-shadow: 1px 2px 5px 0px green;
}

.header-items-holder {
  display: flex;
  width: 100%;
  flex-direction: column;
  min-height: 80px;
}
@media (max-width: 992px) {
  .header-items-holder {
    margin-bottom: 20px;
  }
}
.header-items-holder h2 {
  display: none;
}
.header-items-holder .main-content.header-has-title .articleHeader {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .header-items-holder .main-content {
    padding: 0px;
    padding-top: 80px;
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  #FormContentQuoteWrap #contentQuoteRequestForm {
    margin-top: 0px;
  }
  #FormContentQuoteWrap #contentQuoteRequestForm #quoteTitle {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
  }
  #FormContentQuoteWrap #contentQuoteRequestForm h2 {
    color: white;
    padding: 0;
    margin: 0 0 0 0;
    text-align: left;
    display: block;
  }
  #FormContentQuoteWrap #contentQuoteRequestForm .button-right {
    position: static;
    padding-right: 0;
  }
  #FormContentQuoteWrap #contentQuoteRequestForm button[type=submit] {
    position: relative;
    width: 100%;
    top: unset;
    right: unset;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  #FormContentQuoteWrap #contentQuoteRequestForm input {
    padding-left: 12px !important;
  }
  #FormContentQuoteWrap #contentQuoteRequestForm select {
    padding-left: 8px !important;
  }
}
.row-flex-two {
  display: flex;
  column-gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 550px) {
  .row-flex-two {
    flex-direction: column;
    align-items: center;
  }
}
.row-flex-two > input {
  flex: 1;
}
.row-flex-two > input:last-child {
  margin-bottom: 0px;
}
@media (max-width: 550px) {
  .row-flex-two > input {
    flex: none;
    margin-bottom: 12px;
  }
}
.row-flex-two > input[type=submit] {
  flex: none;
}
.row-flex-two > input[type=email] {
  width: 200px;
}
@media (max-width: 550px) {
  .row-flex-two > input[type=email] {
    width: 100% !important;
  }
}

.image-and-text-carousel, .list-services {
  margin-bottom: 40px;
  margin-top: 20px;
  display: none;
}
.image-and-text-carousel.image-and-text-carousel-home, .list-services.image-and-text-carousel-home {
  padding: 0 25px;
}
@media (max-width: 550px) {
  .image-and-text-carousel.image-and-text-carousel-home, .list-services.image-and-text-carousel-home {
    padding: 0;
  }
}
@media (max-width: 900px) {
  .image-and-text-carousel.image-and-text-carousel-home, .list-services.image-and-text-carousel-home {
    margin-bottom: 0;
  }
}
.image-and-text-carousel .inner-tile, .list-services .inner-tile {
  background-color: #000;
  position: relative;
  height: 150px;
  overflow: hidden;
}
@media (max-width: 550px) {
  .image-and-text-carousel .inner-tile, .list-services .inner-tile {
    height: 140px;
  }
}
.image-and-text-carousel a .bgimg, .list-services a .bgimg {
  width: 100%;
  filter: none;
  opacity: 0.5;
  transition: filter 0.3s ease-out, opacity 0.3s ease-out;
  height: 150px;
  background-size: cover;
  background-position: center;
}
.image-and-text-carousel a .bgcol, .list-services a .bgcol {
  opacity: 1;
}
.image-and-text-carousel a:hover .bgimg, .list-services a:hover .bgimg {
  opacity: 0.2;
}
.image-and-text-carousel a:hover::before, .list-services a:hover::before {
  border: 1px solid #EF7303;
}
.image-and-text-carousel a:hover .bgcol, .list-services a:hover .bgcol {
  opacity: 1;
  filter: brightness(150%);
}
.image-and-text-carousel a::before, .list-services a::before {
  content: "";
  display: block;
  position: absolute;
  border: 3px solid transparent;
  width: 100%;
  height: 100%;
  transition: border 0.3s ease-out;
  z-index: 1;
}
.image-and-text-carousel.business-landing a .bgimg, .list-services.business-landing a .bgimg {
  width: 100%;
  max-width: unset;
  height: 120px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 899px) {
  .image-and-text-carousel.business-landing a .bgimg, .list-services.business-landing a .bgimg {
    height: 100%;
  }
}
.image-and-text-carousel .overlay, .list-services .overlay {
  position: absolute;
  top: 0px;
  padding: 0px 20px;
  color: white;
  width: 100%;
  height: 100%;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0px;
}
.image-and-text-carousel .overlay h3, .list-services .overlay h3 {
  width: fit-content;
  text-align: center;
  font-size: 27px;
  padding: 0;
  margin: 0 0 0 0;
  padding-bottom: 8px;
  border-bottom: 3px solid #EF7303;
}
@media (max-width: 550px) {
  .image-and-text-carousel .overlay h3, .list-services .overlay h3 {
    margin: 0;
  }
}
.image-and-text-carousel .overlay p, .list-services .overlay p {
  text-align: center;
}
.image-and-text-carousel.articles .inner-tile, .list-services.articles .inner-tile {
  height: 70px;
  border: 2px solid #EF7303;
}
@media (max-width: 550px) {
  .image-and-text-carousel.articles .overlay, .list-services.articles .overlay {
    padding-top: 5px;
  }
}
.image-and-text-carousel.articles .overlay h3, .list-services.articles .overlay h3 {
  font-size: 20px;
  margin: 0;
}
.image-and-text-carousel .slick-track, .list-services .slick-track {
  display: flex !important;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 550px) {
  .image-and-text-carousel .slick-track, .list-services .slick-track {
    display: block !important;
  }
}
.image-and-text-carousel .slick-slide, .list-services .slick-slide {
  height: inherit !important;
  margin: 0 10px;
}
@media (max-width: 550px) {
  .image-and-text-carousel .slick-slide, .list-services .slick-slide {
    height: unset !important;
  }
}
@media (max-width: 550px) {
  .image-and-text-carousel .slick-slide, .list-services .slick-slide {
    margin: 10px 0;
  }
}
.image-and-text-carousel .slick-list, .list-services .slick-list {
  margin: 0 -10px;
}
@media (max-width: 550px) {
  .image-and-text-carousel .slick-list, .list-services .slick-list {
    margin: 0;
  }
}
.image-and-text-carousel .slick-arrow, .list-services .slick-arrow {
  background: url(/images/carousel-arrow-black-left.png) no-repeat center center;
  position: absolute;
  width: 20px;
  height: 50px;
  top: 50%;
  margin-top: -25px;
  text-indent: -9999px;
  z-index: 999;
  background-size: contain;
}
.image-and-text-carousel .slick-prev, .list-services .slick-prev {
  left: 0;
}
.image-and-text-carousel .slick-next, .list-services .slick-next {
  right: 0;
  background-image: url(/images/carousel-arrow-black-right.png);
}

.highlight-icon-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  margin: 20px auto 0 auto;
}
@media (max-width: 900px) {
  .highlight-icon-links {
    grid-template-columns: repeat(3, 1fr);
    max-width: 550px;
  }
}
@media (max-width: 550px) {
  .highlight-icon-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 350px) {
  .highlight-icon-links {
    grid-template-columns: repeat(1, 1fr);
  }
}
.highlight-icon-links a {
  display: inline-block;
  text-align: center;
}
.highlight-icon-links a:nth-child(10) {
  display: none;
}
@media (min-width: 901px) {
  .highlight-icon-links a:nth-child(10) {
    display: block;
  }
}
@media (min-width: 351px) and (max-width: 550px) {
  .highlight-icon-links a:nth-child(10) {
    display: block;
  }
}
.highlight-icon-links a div {
  height: 70px;
}
.highlight-icon-links a div img {
  max-height: 70px;
  margin: 0 auto;
}
.highlight-icon-links a h3 {
  padding: 0;
  margin: 10px 0 0 0;
}
.highlight-icon-links.highlight-icon-links-orange a {
  background: #EF7303;
  color: white;
}
.highlight-icon-links.highlight-icon-links-orange a:nth-child(6) {
  display: none;
}
@media (min-width: 351px) and (max-width: 900px) {
  .highlight-icon-links.highlight-icon-links-orange a:nth-child(6) {
    display: block;
  }
}

.highlight-icon {
  box-shadow: 0 2px 5px 0 rgba(142, 154, 173, 0.6);
  border-radius: 10px;
  padding: 10px;
  transition: box-shadow 0.3s ease-out;
}
.highlight-icon img {
  transition: transform 0.3s ease-out;
}
.highlight-icon:hover {
  box-shadow: 0 0px 1px 3px rgb(239, 115, 3);
  transition: box-shadow 0.3s ease-out;
}
.highlight-icon:hover img {
  transform: scale(1.15);
  transition: transform 0.3s ease-out;
}

.home-news-outer {
  padding: 0 40px;
}
.home-news-outer .home-news-inner .post-item {
  text-align: left;
}
.home-news-outer .home-news-inner .post-item h3 {
  min-height: 51px;
  margin-bottom: 0px;
}
@media (max-width: 900px) {
  .home-news-outer .home-news-inner .post-item h3 {
    min-height: 78px;
  }
}
@media (max-width: 550px) {
  .home-news-outer .home-news-inner .post-item h3 {
    min-height: 51px;
  }
}
.home-news-outer .home-news-inner .post-item p {
  height: 110px;
  margin-top: 6px;
  overflow: hidden;
}
.home-news-outer .home-news-inner .post-item .details {
  display: flex;
  justify-content: space-between;
}
.home-news-outer .home-news-inner .slick-slide {
  margin: 0 30px;
}
.home-news-outer .home-news-inner .slick-list {
  margin: 0 -30px;
}
.home-news-outer .home-news-inner .slick-arrow {
  background: url(/images/carousel-arrow-black-left.png) no-repeat center center;
  position: absolute;
  width: 20px;
  height: 50px;
  top: 50%;
  margin-top: -25px;
  text-indent: -9999px;
  z-index: 999;
  background-size: contain;
}
.home-news-outer .home-news-inner .slick-prev {
  left: -40px;
}
.home-news-outer .home-news-inner .slick-next {
  right: -40px;
  background-image: url(/images/carousel-arrow-black-right.png);
}

.services-list, .image-and-text-carousel:not(.image-and-text-carousel-home) {
  padding: 0 40px;
  display: none !important;
}
.services-list.slick-initialized, .image-and-text-carousel:not(.image-and-text-carousel-home).slick-initialized {
  display: block !important;
}
.services-list .slick-arrow, .image-and-text-carousel:not(.image-and-text-carousel-home) .slick-arrow {
  background: url(/images/carousel-arrow-orange-left.png) no-repeat center center;
  position: absolute;
  width: 20px;
  height: 50px;
  top: 50%;
  margin-top: -25px;
  text-indent: -9999px;
  z-index: 999;
  background-size: contain;
}
.services-list .slick-prev, .image-and-text-carousel:not(.image-and-text-carousel-home) .slick-prev {
  left: 0px;
}
.services-list .slick-next, .image-and-text-carousel:not(.image-and-text-carousel-home) .slick-next {
  right: 0px;
  background-image: url(/images/carousel-arrow-orange-right.png);
}

.list-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 550px) {
  .list-services {
    flex: unset;
    display: block;
  }
}
@media (min-width: 900px) {
  .list-services.business-landing {
    flex-direction: column;
    flex-wrap: unset;
    justify-content: unset;
  }
}
.list-services > div {
  flex: 0 0 calc(33% - 20px);
  margin: 10px;
}
@media (max-width: 900px) {
  .list-services > div {
    flex: 0 0 calc(50% - 20px);
  }
}
@media (max-width: 550px) {
  .list-services > div {
    flex: unset;
  }
}
.list-services > div a .bgimg {
  opacity: 0.6;
}
.list-services > div a:hover .bgimg {
  opacity: 0.3;
}
.list-services > div a:hover .bgcol {
  opacity: 1;
  filter: brightness(150%);
}
.list-services > div a .bgcol {
  opacity: 1;
}
.list-services > div a .overlay h3 {
  border-bottom: 3px solid #EF7303;
}

.sibling-carousel {
  margin: 20px 0 40px 0;
}

.businesslandingsplit .side-col-text-flow-col-blocks {
  float: right;
  width: 40%;
  margin: 0 0 0 10px !important;
}
.businesslandingsplit .side-col-text-flow-col-blocks > div {
  margin-top: 0px;
  margin-bottom: 0px;
}
.businesslandingsplit .side-col-text-flow-col-blocks > div > div:first-child, .businesslandingsplit .side-col-text-flow-col-blocks > div > div:last-child {
  margin-top: 0px;
}
@media (max-width: 900px) {
  .businesslandingsplit {
    display: flex;
    flex-direction: column-reverse;
  }
  .businesslandingsplit .side-col-text-flow-col-blocks {
    width: 100%;
    margin: 0 !important;
  }
  .businesslandingsplit .side-col-text-flow-col-blocks .list-services {
    gap: 20px;
  }
}
@media (max-width: 900px) and (max-width: 550px) {
  .businesslandingsplit .side-col-text-flow-col-blocks .list-services div {
    margin-bottom: 20px !important;
  }
  .businesslandingsplit .side-col-text-flow-col-blocks .list-services div:last-child {
    margin-bottom: 0px !important;
  }
}
@media (max-width: 900px) {
  .businesslandingsplit .side-col-text-flow-col-blocks .list-services div {
    flex: 0 0 calc(50% - 10px);
    margin: 0px;
  }
}

footer {
  background: #292929;
  color: #fff;
  padding: 40px 0;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (max-width: 900px) {
  footer {
    padding-bottom: 80px;
  }
}
footer .container {
  position: relative;
}
@media (max-width: 900px) {
  footer .container {
    position: static;
  }
}
footer a:hover {
  text-decoration: underline;
}
footer .footer-links:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
@media (max-width: 900px) {
  footer .footer-links {
    padding-right: 0;
  }
}
footer .footer-links > ul {
  width: calc(33.333% - 115px);
  float: left;
  padding: 0;
  padding-right: 30px;
  margin: 0;
}
@media (min-width: 901px) {
  footer .footer-links > ul:first-child {
    width: 75px;
  }
  footer .footer-links > ul:nth-child(2) {
    width: 110px;
  }
  footer .footer-links > ul:nth-child(3), footer .footer-links > ul:nth-child(4) {
    min-width: 150px;
  }
  footer .footer-links > ul:nth-child(5) {
    min-width: 210px;
  }
  footer .footer-links > ul:last-child {
    min-width: 80px;
  }
}
@media (max-width: 900px) {
  footer .footer-links > ul {
    margin-bottom: 20px;
  }
  footer .footer-links > ul:nth-child(2n+1) {
    width: 60%;
  }
  footer .footer-links > ul:nth-child(2n) {
    width: 40%;
  }
  footer .footer-links > ul:nth-child(2n+1) {
    clear: left;
  }
}
footer .footer-links > ul.social {
  padding-right: 0px;
  width: 100px;
}
footer .footer-links > ul.social h3 {
  display: block;
  margin: 0 0 12px;
  font-weight: 700;
  color: #EF7303;
  font-size: 15px;
  font-size: 0.9375rem;
  text-transform: uppercase;
}
footer .footer-links > ul.social li {
  display: block;
  border: none;
}
footer .footer-links > ul.social li a {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  background: #eee;
  text-indent: -9999px;
  border-radius: 50%;
  margin: 8px 20px;
  background: white no-repeat center center;
  background-size: 32px;
  transition: border 0.3s ease-out;
}
footer .footer-links > ul.social li a:hover {
  border: 2px solid #EF7303;
}
footer .footer-links > ul.social li a.facebook {
  background-image: url(/images/social-logo-dark-grey-facebook.png);
}
footer .footer-links > ul.social li a.linkedin {
  background-image: url(/images/social-logo-dark-grey-linkedin.png);
}
footer .footer-links > ul > li {
  display: block;
}
footer .footer-links > ul > li > a {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 700;
  color: #EF7303;
  font-size: 15px;
  font-size: 0.9375rem;
  text-transform: uppercase;
}
footer .footer-links > ul > li ul {
  padding: 0;
  margin: 0;
}
footer .footer-links > ul > li ul li {
  display: block;
  margin-bottom: 4px;
}
footer .footer-links > ul > li ul li a {
  color: #fff;
}
@media (max-width: 480px) {
  footer .footer-links > ul > li ul li a {
    padding-top: 5px;
    padding-bottom: 5px;
    display: inline-block;
  }
}
footer .footer-links > ul > li ul li address {
  font-style: normal;
}
footer .btm {
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 900px) {
  footer .btm {
    position: relative;
  }
}
footer .btm ul {
  display: inline-block;
  padding: 0;
  margin: 0;
  margin-right: 10px;
  margin-bottom: 10px;
}
footer .btm ul li {
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #fff;
  line-height: 14px;
  line-height: 0.875rem;
}
footer .btm ul li:last-child {
  border-right: none;
}
footer .btm ul li a {
  color: #fff;
}
footer .btm div {
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 10px;
}

.contact-request .top-segment {
  background-image: url(/Images/globes.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  padding: 120px 0 30px;
}
.contact-request .top-segment h1 {
  font-size: 2.75em;
}
@media (min-width: 900px) {
  .contact-request .top-segment h1 {
    max-width: 55%;
  }
}
.contact-request .top-segment h4 {
  font-size: 1.75em;
}
@media (min-width: 900px) {
  .contact-request .top-segment h4 {
    max-width: 55%;
  }
}
@media (min-width: 900px) {
  .contact-request .lower-segment {
    display: flex;
  }
}
.contact-request .lower-segment .text-detail p {
  margin: 20px 0;
}
.contact-request .lower-segment .form-container {
  padding: 30px 0;
  margin: 20px 0;
  background: rgb(232, 119, 32);
  background: linear-gradient(180deg, rgb(232, 119, 32) 0%, rgb(188, 79, 7) 100%);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 2px 0px #a2a2a2;
  margin-top: -8px;
}
@media (min-width: 900px) {
  .contact-request .lower-segment .form-container {
    margin-left: 30px;
    transform: translate(0, -55%);
  }
}
.contact-request .lower-segment .form-container div {
  margin: 10px 0;
}
.contact-request .lower-segment .form-container div label {
  display: block;
  width: 90%;
  margin: 0 auto;
  color: #fff;
  font-size: 0.8em;
  padding: 2.5px 0;
}
.contact-request .lower-segment .form-container div input, .contact-request .lower-segment .form-container div textarea {
  display: block;
  width: 90%;
  margin: 0 auto;
  border-radius: 4px;
  border: none;
  box-shadow: inset 0px 2px 2px 0px #a2a2a2;
  padding: 8px;
}
.contact-request .lower-segment .form-container div .field-validation-error {
  width: 90%;
  margin: 5px auto 0;
  font-weight: 900;
  color: black;
  display: block;
}
.contact-request .lower-segment .form-container div.tick-box-container {
  margin-top: 20px;
  display: flex;
}
.contact-request .lower-segment .form-container div.tick-box-container label {
  font-size: 0;
  visibility: hidden;
  position: absolute;
  left: -9999999999px;
}
.contact-request .lower-segment .form-container div.tick-box-container small {
  width: 90%;
  margin: 0 5% 0 2.5%;
  display: block;
  color: #fff;
  font-weight: 800;
}
.contact-request .lower-segment .form-container div.tick-box-container input[type=checkbox] {
  box-shadow: none;
  width: auto;
  margin: auto auto auto 20px;
}
.contact-request .lower-segment .form-container div.tick-box-container .field-validation-error {
  width: 100%;
  margin: auto auto auto 5px;
}
.contact-request .lower-segment .form-container button {
  margin: 20px auto;
  display: block;
  padding: 3px 35px;
  border-radius: 20px;
  background: #fff;
  color: #ff6a00;
  color: rgb(232, 119, 32);
  font-weight: 900;
  font-size: 1.25em;
  transition: background 0.3s, color 0.3s;
}
.contact-request .lower-segment .form-container button:hover {
  background: black;
  color: #fff;
}
.contact-request .lower-segment .form-container .form-details h3 {
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
.contact-request .lower-segment .form-container .form-details p {
  display: block;
  color: #fff;
  width: 90%;
  margin: 10px auto 20px;
  text-align: center;
}

.umb-block-grid__area-container {
  display: flex;
  gap: 20px;
}
@media (max-width: 1024px) {
  .umb-block-grid__area-container {
    flex-direction: column;
  }
}
.umb-block-grid__area-container > div {
  flex: 0.5;
}

.google-reviews-outer {
  display: flex;
  justify-content: space-between;
}
.google-reviews-outer.slick-initialized .google-reviews-item:nth-child(n+4) {
  display: block;
}
.google-reviews-outer .google-reviews-item {
  background: #DDDEDF;
  padding: 10px;
  border-radius: 12px;
  width: 32.6%;
}
.google-reviews-outer .google-reviews-item:nth-child(n+4) {
  display: none;
}
.google-reviews-outer .google-reviews-item:nth-child(n+4) {
  display: none;
}
.google-reviews-outer .google-reviews-item div .google-reviews-item-header {
  display: flex;
  column-gap: 10px;
  margin-bottom: 10px;
}
.google-reviews-outer .google-reviews-item div .google-reviews-item-header .google-reviews-item-header-icon {
  width: 40px;
  height: 40px;
}
.google-reviews-outer .google-reviews-item div .google-reviews-item-header .google-reviews-item-header-details-date {
  font-size: 12px;
}
.google-reviews-outer .google-reviews-item div .google-reviews-item-stars {
  margin-bottom: 10px;
  height: 16px;
}
.google-reviews-outer .google-reviews-item div .google-reviews-item-stars i {
  color: #EF7303;
  height: 16px;
  width: 16px;
}
.google-reviews-outer .google-reviews-item div .google-reviews-item-comment {
  min-height: 86px;
}
.google-reviews-outer .google-reviews-item div .google-reviews-item-comment > div {
  overflow: hidden;
  transition: all 500ms;
  max-height: 67px;
}
.google-reviews-outer .google-reviews-item div .google-reviews-item-comment > span {
  margin-top: 5px;
  color: grey;
  cursor: pointer;
  display: none;
}
.google-reviews-outer .slick-slide {
  margin: 0 5px;
}
.google-reviews-outer .slick-list {
  margin: 0 -5px;
}
.google-reviews-outer .slick-track {
  display: flex !important;
}
.google-reviews-outer .slick-slide {
  height: inherit !important;
}

.recaptcha-error-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
}
.recaptcha-error-message > div {
  background: white;
  flex-direction: column;
  gap: 8px;
  padding: 15px;
  margin: 0 20px;
  align-items: flex-end;
  max-width: 520px;
  display: none;
  border: 2px solid #EF7303;
}
.recaptcha-error-message > div p {
  margin: 0 0 10px 0;
  line-height: 22px;
}
.recaptcha-error-message > div p:last-child {
  margin-bottom: 0px;
}
.recaptcha-error-message > div > a {
  position: fixed;
  cursor: pointer;
  margin: -32px -32px 0 0;
  background: #EF7303;
  color: white;
  padding: 4px 8px;
  border-radius: 50%;
  font-size: 22px;
}
.recaptcha-error-message > div > a i {
  color: white;
}
.recaptcha-error-message > div > a:hover {
  background: #F0801B;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  outline: none;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 992px) {
  .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
    float: left;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
    float: left;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn.focus,
.btn:focus,
.btn:hover {
  color: #333;
  text-decoration: none;
}

.btn.active,
.btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}

.close:focus,
.close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}

button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.modal-header {
  min-height: 16.43px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  filter: alpha(opacity=0);
  opacity: 0;
}

.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: left;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.popover.top {
  margin-top: -10px;
}

.popover.right {
  margin-left: 10px;
}

.popover.bottom {
  margin-top: 10px;
}

.popover.left {
  margin-left: -10px;
}

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover > .arrow {
  border-width: 11px;
}

.popover > .arrow:after {
  content: "";
  border-width: 10px;
}

.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}

.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}

.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}

.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.breadcrumb > li {
  display: inline-block;
}

.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/ ";
}

.breadcrumb > .active {
  color: #777;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}

.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

.pager li {
  display: inline;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.pager li > a:focus,
.pager li > a:hover {
  text-decoration: none;
  background-color: #eee;
}

.pager .next > a,
.pager .next > span {
  float: right;
}

.pager .previous > a,
.pager .previous > span {
  float: left;
}

.pager .disabled > a,
.pager .disabled > a:focus,
.pager .disabled > a:hover,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}

.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}

textarea.form-control {
  height: auto;
}

input[type=search] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=date],
  input[type=time],
  input[type=datetime-local],
  input[type=month] {
    line-height: 34px;
  }
  .input-group-sm input[type=date],
  .input-group-sm input[type=time],
  .input-group-sm input[type=datetime-local],
  .input-group-sm input[type=month],
  input[type=date].input-sm,
  input[type=time].input-sm,
  input[type=datetime-local].input-sm,
  input[type=month].input-sm {
    line-height: 30px;
  }
  .input-group-lg input[type=date],
  .input-group-lg input[type=time],
  .input-group-lg input[type=datetime-local],
  .input-group-lg input[type=month],
  input[type=date].input-lg,
  input[type=time].input-lg,
  input[type=datetime-local].input-lg,
  input[type=month].input-lg {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}

.checkbox,
.radio {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.checkbox label,
.radio label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.radio input[type=radio],
.radio-inline input[type=radio] {
  position: absolute;
  margin-top: 4px \9 ;
  margin-left: -20px;
}

.checkbox + .checkbox,
.radio + .radio {
  margin-top: -5px;
}

.checkbox-inline,
.radio-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}

.checkbox-inline + .checkbox-inline,
.radio-inline + .radio-inline {
  margin-top: 0;
  margin-left: 10px;
}

fieldset[disabled] input[type=checkbox],
fieldset[disabled] input[type=radio],
input[type=checkbox].disabled,
input[type=checkbox][disabled],
input[type=radio].disabled,
input[type=radio][disabled] {
  cursor: not-allowed;
}

.checkbox-inline.disabled,
.radio-inline.disabled,
fieldset[disabled] .checkbox-inline,
fieldset[disabled] .radio-inline {
  cursor: not-allowed;
}

.checkbox.disabled label,
.radio.disabled label,
fieldset[disabled] .checkbox label,
fieldset[disabled] .radio label {
  cursor: not-allowed;
}

.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}

.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}

.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-sm {
  height: 30px;
  line-height: 30px;
}

select[multiple].input-sm,
textarea.input-sm {
  height: auto;
}

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.form-group-sm .form-control {
  height: 30px;
  line-height: 30px;
}

select[multiple].form-group-sm .form-control,
textarea.form-group-sm .form-control {
  height: auto;
}

.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

select.input-lg {
  height: 46px;
  line-height: 46px;
}

select[multiple].input-lg,
textarea.input-lg {
  height: auto;
}

.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

select.form-group-lg .form-control {
  height: 46px;
  line-height: 46px;
}

select[multiple].form-group-lg .form-control,
textarea.form-group-lg .form-control {
  height: auto;
}

.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.has-feedback {
  position: relative;
}

.has-feedback .form-control {
  padding-right: 42.5px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

.input-lg + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

.input-sm + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.has-success .checkbox,
.has-success .checkbox-inline,
.has-success .control-label,
.has-success .help-block,
.has-success .radio,
.has-success .radio-inline,
.has-success.checkbox label,
.has-success.checkbox-inline label,
.has-success.radio label,
.has-success.radio-inline label {
  color: #3c763d;
}

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}

.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .checkbox,
.has-warning .checkbox-inline,
.has-warning .control-label,
.has-warning .help-block,
.has-warning .radio,
.has-warning .radio-inline,
.has-warning.checkbox label,
.has-warning.checkbox-inline label,
.has-warning.radio label,
.has-warning.radio-inline label {
  color: #8a6d3b;
}

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}

.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
  color: #a94442;
}

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 25px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .form-control,
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .checkbox,
  .form-inline .radio {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .checkbox label,
  .form-inline .radio label {
    padding-left: 0;
  }
  .form-inline .checkbox input[type=checkbox],
  .form-inline .radio input[type=radio] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .checkbox,
.form-horizontal .checkbox-inline,
.form-horizontal .radio,
.form-horizontal .radio-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}

.form-horizontal .checkbox,
.form-horizontal .radio {
  min-height: 27px;
}

.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.33px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
  }
}
.visible-lg,
.visible-md,
.visible-sm,
.visible-xs {
  display: none !important;
}

.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  td.visible-xs,
  th.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  td.visible-sm,
  th.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  td.visible-md,
  th.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  td.visible-lg,
  th.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  td.visible-print,
  th.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
  font-weight: 400;
  line-height: 1;
  color: #777;
  font-size: 14px;
}

@font-face {
  font-family: "Glyphicons Halflings";
  src: url(/css/fonts/glyphicons-halflings-regular.eot);
  src: url(/css/fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(/css/fonts/glyphicons-halflings-regular.woff2) format("woff2"), url(/css/fonts/glyphicons-halflings-regular.woff) format("woff"), url(/css/fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(/css/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg");
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
  content: "*";
}

.glyphicon-plus:before {
  content: "+";
}

.glyphicon-eur:before,
.glyphicon-euro:before {
  content: "€";
}

.glyphicon-minus:before {
  content: "−";
}

.glyphicon-cloud:before {
  content: "☁";
}

.glyphicon-envelope:before {
  content: "✉";
}

.glyphicon-pencil:before {
  content: "✏";
}

.glyphicon-glass:before {
  content: "\e001";
}

.glyphicon-music:before {
  content: "\e002";
}

.glyphicon-search:before {
  content: "\e003";
}

.glyphicon-heart:before {
  content: "\e005";
}

.glyphicon-star:before {
  content: "\e006";
}

.glyphicon-star-empty:before {
  content: "\e007";
}

.glyphicon-user:before {
  content: "\e008";
}

.glyphicon-film:before {
  content: "\e009";
}

.glyphicon-th-large:before {
  content: "\e010";
}

.glyphicon-th:before {
  content: "\e011";
}

.glyphicon-th-list:before {
  content: "\e012";
}

.glyphicon-ok:before {
  content: "\e013";
}

.glyphicon-remove:before {
  content: "\e014";
}

.glyphicon-zoom-in:before {
  content: "\e015";
}

.glyphicon-zoom-out:before {
  content: "\e016";
}

.glyphicon-off:before {
  content: "\e017";
}

.glyphicon-signal:before {
  content: "\e018";
}

.glyphicon-cog:before {
  content: "\e019";
}

.glyphicon-trash:before {
  content: "\e020";
}

.glyphicon-home:before {
  content: "\e021";
}

.glyphicon-file:before {
  content: "\e022";
}

.glyphicon-time:before {
  content: "\e023";
}

.glyphicon-road:before {
  content: "\e024";
}

.glyphicon-download-alt:before {
  content: "\e025";
}

.glyphicon-download:before {
  content: "\e026";
}

.glyphicon-upload:before {
  content: "\e027";
}

.glyphicon-inbox:before {
  content: "\e028";
}

.glyphicon-play-circle:before {
  content: "\e029";
}

.glyphicon-repeat:before {
  content: "\e030";
}

.glyphicon-refresh:before {
  content: "\e031";
}

.glyphicon-list-alt:before {
  content: "\e032";
}

.glyphicon-lock:before {
  content: "\e033";
}

.glyphicon-flag:before {
  content: "\e034";
}

.glyphicon-headphones:before {
  content: "\e035";
}

.glyphicon-volume-off:before {
  content: "\e036";
}

.glyphicon-volume-down:before {
  content: "\e037";
}

.glyphicon-volume-up:before {
  content: "\e038";
}

.glyphicon-qrcode:before {
  content: "\e039";
}

.glyphicon-barcode:before {
  content: "\e040";
}

.glyphicon-tag:before {
  content: "\e041";
}

.glyphicon-tags:before {
  content: "\e042";
}

.glyphicon-book:before {
  content: "\e043";
}

.glyphicon-bookmark:before {
  content: "\e044";
}

.glyphicon-print:before {
  content: "\e045";
}

.glyphicon-camera:before {
  content: "\e046";
}

.glyphicon-font:before {
  content: "\e047";
}

.glyphicon-bold:before {
  content: "\e048";
}

.glyphicon-italic:before {
  content: "\e049";
}

.glyphicon-text-height:before {
  content: "\e050";
}

.glyphicon-text-width:before {
  content: "\e051";
}

.glyphicon-align-left:before {
  content: "\e052";
}

.glyphicon-align-center:before {
  content: "\e053";
}

.glyphicon-align-right:before {
  content: "\e054";
}

.glyphicon-align-justify:before {
  content: "\e055";
}

.glyphicon-list:before {
  content: "\e056";
}

.glyphicon-indent-left:before {
  content: "\e057";
}

.glyphicon-indent-right:before {
  content: "\e058";
}

.glyphicon-facetime-video:before {
  content: "\e059";
}

.glyphicon-picture:before {
  content: "\e060";
}

.glyphicon-map-marker:before {
  content: "\e062";
}

.glyphicon-adjust:before {
  content: "\e063";
}

.glyphicon-tint:before {
  content: "\e064";
}

.glyphicon-edit:before {
  content: "\e065";
}

.glyphicon-share:before {
  content: "\e066";
}

.glyphicon-check:before {
  content: "\e067";
}

.glyphicon-move:before {
  content: "\e068";
}

.glyphicon-step-backward:before {
  content: "\e069";
}

.glyphicon-fast-backward:before {
  content: "\e070";
}

.glyphicon-backward:before {
  content: "\e071";
}

.glyphicon-play:before {
  content: "\e072";
}

.glyphicon-pause:before {
  content: "\e073";
}

.glyphicon-stop:before {
  content: "\e074";
}

.glyphicon-forward:before {
  content: "\e075";
}

.glyphicon-fast-forward:before {
  content: "\e076";
}

.glyphicon-step-forward:before {
  content: "\e077";
}

.glyphicon-eject:before {
  content: "\e078";
}

.glyphicon-chevron-left:before {
  content: "\e079";
}

.glyphicon-chevron-right:before {
  content: "\e080";
}

.glyphicon-plus-sign:before {
  content: "\e081";
}

.glyphicon-minus-sign:before {
  content: "\e082";
}

.glyphicon-remove-sign:before {
  content: "\e083";
}

.glyphicon-ok-sign:before {
  content: "\e084";
}

.glyphicon-question-sign:before {
  content: "\e085";
}

.glyphicon-info-sign:before {
  content: "\e086";
}

.glyphicon-screenshot:before {
  content: "\e087";
}

.glyphicon-remove-circle:before {
  content: "\e088";
}

.glyphicon-ok-circle:before {
  content: "\e089";
}

.glyphicon-ban-circle:before {
  content: "\e090";
}

.glyphicon-arrow-left:before {
  content: "\e091";
}

.glyphicon-arrow-right:before {
  content: "\e092";
}

.glyphicon-arrow-up:before {
  content: "\e093";
}

.glyphicon-arrow-down:before {
  content: "\e094";
}

.glyphicon-share-alt:before {
  content: "\e095";
}

.glyphicon-resize-full:before {
  content: "\e096";
}

.glyphicon-resize-small:before {
  content: "\e097";
}

.glyphicon-exclamation-sign:before {
  content: "\e101";
}

.glyphicon-gift:before {
  content: "\e102";
}

.glyphicon-leaf:before {
  content: "\e103";
}

.glyphicon-fire:before {
  content: "\e104";
}

.glyphicon-eye-open:before {
  content: "\e105";
}

.glyphicon-eye-close:before {
  content: "\e106";
}

.glyphicon-warning-sign:before {
  content: "\e107";
}

.glyphicon-plane:before {
  content: "\e108";
}

.glyphicon-calendar:before {
  content: "\e109";
}

.glyphicon-random:before {
  content: "\e110";
}

.glyphicon-comment:before {
  content: "\e111";
}

.glyphicon-magnet:before {
  content: "\e112";
}

.glyphicon-chevron-up:before {
  content: "\e113";
}

.glyphicon-chevron-down:before {
  content: "\e114";
}

.glyphicon-retweet:before {
  content: "\e115";
}

.glyphicon-shopping-cart:before {
  content: "\e116";
}

.glyphicon-folder-close:before {
  content: "\e117";
}

.glyphicon-folder-open:before {
  content: "\e118";
}

.glyphicon-resize-vertical:before {
  content: "\e119";
}

.glyphicon-resize-horizontal:before {
  content: "\e120";
}

.glyphicon-hdd:before {
  content: "\e121";
}

.glyphicon-bullhorn:before {
  content: "\e122";
}

.glyphicon-bell:before {
  content: "\e123";
}

.glyphicon-certificate:before {
  content: "\e124";
}

.glyphicon-thumbs-up:before {
  content: "\e125";
}

.glyphicon-thumbs-down:before {
  content: "\e126";
}

.glyphicon-hand-right:before {
  content: "\e127";
}

.glyphicon-hand-left:before {
  content: "\e128";
}

.glyphicon-hand-up:before {
  content: "\e129";
}

.glyphicon-hand-down:before {
  content: "\e130";
}

.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

.glyphicon-globe:before {
  content: "\e135";
}

.glyphicon-wrench:before {
  content: "\e136";
}

.glyphicon-tasks:before {
  content: "\e137";
}

.glyphicon-filter:before {
  content: "\e138";
}

.glyphicon-briefcase:before {
  content: "\e139";
}

.glyphicon-fullscreen:before {
  content: "\e140";
}

.glyphicon-dashboard:before {
  content: "\e141";
}

.glyphicon-paperclip:before {
  content: "\e142";
}

.glyphicon-heart-empty:before {
  content: "\e143";
}

.glyphicon-link:before {
  content: "\e144";
}

.glyphicon-phone:before {
  content: "\e145";
}

.glyphicon-pushpin:before {
  content: "\e146";
}

.glyphicon-usd:before {
  content: "\e148";
}

.glyphicon-gbp:before {
  content: "\e149";
}

.glyphicon-sort:before {
  content: "\e150";
}

.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

.glyphicon-sort-by-order:before {
  content: "\e153";
}

.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

.glyphicon-unchecked:before {
  content: "\e157";
}

.glyphicon-expand:before {
  content: "\e158";
}

.glyphicon-collapse-down:before {
  content: "\e159";
}

.glyphicon-collapse-up:before {
  content: "\e160";
}

.glyphicon-log-in:before {
  content: "\e161";
}

.glyphicon-flash:before {
  content: "\e162";
}

.glyphicon-log-out:before {
  content: "\e163";
}

.glyphicon-new-window:before {
  content: "\e164";
}

.glyphicon-record:before {
  content: "\e165";
}

.glyphicon-save:before {
  content: "\e166";
}

.glyphicon-open:before {
  content: "\e167";
}

.glyphicon-saved:before {
  content: "\e168";
}

.glyphicon-import:before {
  content: "\e169";
}

.glyphicon-export:before {
  content: "\e170";
}

.glyphicon-send:before {
  content: "\e171";
}

.glyphicon-floppy-disk:before {
  content: "\e172";
}

.glyphicon-floppy-saved:before {
  content: "\e173";
}

.glyphicon-floppy-remove:before {
  content: "\e174";
}

.glyphicon-floppy-save:before {
  content: "\e175";
}

.glyphicon-floppy-open:before {
  content: "\e176";
}

.glyphicon-credit-card:before {
  content: "\e177";
}

.glyphicon-transfer:before {
  content: "\e178";
}

.glyphicon-cutlery:before {
  content: "\e179";
}

.glyphicon-header:before {
  content: "\e180";
}

.glyphicon-compressed:before {
  content: "\e181";
}

.glyphicon-earphone:before {
  content: "\e182";
}

.glyphicon-phone-alt:before {
  content: "\e183";
}

.glyphicon-tower:before {
  content: "\e184";
}

.glyphicon-stats:before {
  content: "\e185";
}

.glyphicon-sd-video:before {
  content: "\e186";
}

.glyphicon-hd-video:before {
  content: "\e187";
}

.glyphicon-subtitles:before {
  content: "\e188";
}

.glyphicon-sound-stereo:before {
  content: "\e189";
}

.glyphicon-sound-dolby:before {
  content: "\e190";
}

.glyphicon-sound-5-1:before {
  content: "\e191";
}

.glyphicon-sound-6-1:before {
  content: "\e192";
}

.glyphicon-sound-7-1:before {
  content: "\e193";
}

.glyphicon-copyright-mark:before {
  content: "\e194";
}

.glyphicon-registration-mark:before {
  content: "\e195";
}

.glyphicon-cloud-download:before {
  content: "\e197";
}

.glyphicon-cloud-upload:before {
  content: "\e198";
}

.glyphicon-tree-conifer:before {
  content: "\e199";
}

.glyphicon-tree-deciduous:before {
  content: "\e200";
}

.glyphicon-cd:before {
  content: "\e201";
}

.glyphicon-save-file:before {
  content: "\e202";
}

.glyphicon-open-file:before {
  content: "\e203";
}

.glyphicon-level-up:before {
  content: "\e204";
}

.glyphicon-copy:before {
  content: "\e205";
}

.glyphicon-paste:before {
  content: "\e206";
}

.glyphicon-alert:before {
  content: "\e209";
}

.glyphicon-equalizer:before {
  content: "\e210";
}

.glyphicon-king:before {
  content: "\e211";
}

.glyphicon-queen:before {
  content: "\e212";
}

.glyphicon-pawn:before {
  content: "\e213";
}

.glyphicon-bishop:before {
  content: "\e214";
}

.glyphicon-knight:before {
  content: "\e215";
}

.glyphicon-baby-formula:before {
  content: "\e216";
}

.glyphicon-tent:before {
  content: "⛺";
}

.glyphicon-blackboard:before {
  content: "\e218";
}

.glyphicon-bed:before {
  content: "\e219";
}

.glyphicon-apple:before {
  content: "\f8ff";
}

.glyphicon-erase:before {
  content: "\e221";
}

.glyphicon-hourglass:before {
  content: "⌛";
}

.glyphicon-lamp:before {
  content: "\e223";
}

.glyphicon-duplicate:before {
  content: "\e224";
}

.glyphicon-piggy-bank:before {
  content: "\e225";
}

.glyphicon-scissors:before {
  content: "\e226";
}

.glyphicon-bitcoin:before {
  content: "\e227";
}

.glyphicon-btc:before {
  content: "\e227";
}

.glyphicon-xbt:before {
  content: "\e227";
}

.glyphicon-yen:before {
  content: "¥";
}

.glyphicon-jpy:before {
  content: "¥";
}

.glyphicon-ruble:before {
  content: "₽";
}

.glyphicon-rub:before {
  content: "₽";
}

.glyphicon-scale:before {
  content: "\e230";
}

.glyphicon-ice-lolly:before {
  content: "\e231";
}

.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

.glyphicon-education:before {
  content: "\e233";
}

.glyphicon-option-horizontal:before {
  content: "\e234";
}

.glyphicon-option-vertical:before {
  content: "\e235";
}

.glyphicon-menu-hamburger:before {
  content: "\e236";
}

.glyphicon-modal-window:before {
  content: "\e237";
}

.glyphicon-oil:before {
  content: "\e238";
}

.glyphicon-grain:before {
  content: "\e239";
}

.glyphicon-sunglasses:before {
  content: "\e240";
}

.glyphicon-text-size:before {
  content: "\e241";
}

.glyphicon-text-color:before {
  content: "\e242";
}

.glyphicon-text-background:before {
  content: "\e243";
}

.glyphicon-object-align-top:before {
  content: "\e244";
}

.glyphicon-object-align-bottom:before {
  content: "\e245";
}

.glyphicon-object-align-horizontal:before {
  content: "\e246";
}

.glyphicon-object-align-left:before {
  content: "\e247";
}

.glyphicon-object-align-vertical:before {
  content: "\e248";
}

.glyphicon-object-align-right:before {
  content: "\e249";
}

.glyphicon-triangle-right:before {
  content: "\e250";
}

.glyphicon-triangle-left:before {
  content: "\e251";
}

.glyphicon-triangle-bottom:before {
  content: "\e252";
}

.glyphicon-triangle-top:before {
  content: "\e253";
}

.glyphicon-console:before {
  content: "\e254";
}

.glyphicon-superscript:before {
  content: "\e255";
}

.glyphicon-subscript:before {
  content: "\e256";
}

.glyphicon-menu-left:before {
  content: "\e257";
}

.glyphicon-menu-right:before {
  content: "\e258";
}

.glyphicon-menu-down:before {
  content: "\e259";
}

.glyphicon-menu-up:before {
  content: "\e260";
}

@media print {
  .noPrint {
    display: none !important;
  }
}
