@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap");
body {
  padding: 0;
  margin: 0;
  font-family: Helvetica, "Roboto", sans-serif !important;
}

h1, h2, h3, h4, h5 {
  font-family: Helvetica, "Roboto", sans-serif !important !important;
  line-height: 1.28571429em;
  margin: calc(2rem - .1428571428571429em) 0 1rem;
  font-weight: 700;
  padding: 0;
  color: #767778;
}

p {
  font-size: 16px;
  font-weight: 300;
  color: #767778;
}

a {
  color: #202d70;
}
a:hover {
  color: #202d70;
}

.header-container {
  color: #fff;
  height: 400px;
  width: calc(100vw + 120px);
  display: flex;
  margin-left: -60px;
  transition: all 0.5s ease-out;
  max-width: unset;
  background: #000000;
}
@media only screen and (max-width: 640px) {
  .header-container {
    height: 500px;
    padding: 0;
    margin-left: 0;
    width: 100vw;
    flex-direction: column;
  }
}
.header-container .header-panel {
  width: 33.3333333%;
  height: 400px;
  overflow: hidden;
  position: relative;
  background-position: center !important;
}
@media only screen and (max-width: 640px) {
  .header-container .header-panel {
    height: 33.3%;
    width: 100%;
    transform: none;
    position: relative;
  }
}
.header-container .header-panel:before {
  filter: brightness(75%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  background-size: cover;
  background-position: left center;
}
.header-container .header-panel.one {
  background-image: url(https://images.pexels.com/photos/4350210/pexels-photo-4350210.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260);
  background-size: cover;
}
.header-container .header-panel.one:before {
  transition: all 0.5s;
  background: rgba(0, 0, 0, 0.2);
}
.header-container .header-panel.two {
  background-image: url(https://images.pexels.com/photos/935949/pexels-photo-935949.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260);
  background-size: cover;
}
.header-container .header-panel.two:before {
  transition: all 0.5s;
  background: rgba(0, 0, 0, 0.2);
}
.header-container .header-panel.three {
  background-image: url(https://images.pexels.com/photos/4065158/pexels-photo-4065158.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260);
  background-size: cover;
}
.header-container .header-panel.three:before {
  transition: all 0.5s;
  background: rgba(0, 0, 0, 0.2);
}
.header-container .header-panel.active {
  transition: all 0.5s;
  width: 50%;
}
@media only screen and (max-width: 990px) {
  .header-container .header-panel.active {
    width: 80%;
  }
}
@media only screen and (max-width: 640px) {
  .header-container .header-panel.active {
    height: 150%;
    width: 100%;
  }
}
.header-container .header-panel.active:before {
  transition: all 0.5s;
  background: rgba(0, 0, 0, 0.55);
}
.header-container .header-panel.active .content {
  z-index: 3;
}
.header-container .header-panel.active .content .subheader, .header-container .header-panel.active .content .text, .header-container .header-panel.active .content .button {
  opacity: 1;
}
.header-container .header-panel .content {
  color: #fff;
  z-index: 1;
  position: absolute;
  padding: 40px 15%;
  z-index: 0;
}
.header-container .header-panel .content .subheader, .header-container .header-panel .content .text {
  transition: all 0.5s;
  opacity: 0;
}
.header-container .header-panel .content .text {
  margin-left: 20px;
}
@media only screen and (max-width: 640px) {
  .header-container .header-panel .content .text {
    margin-top: 20px !important;
  }
}
.header-container .header-panel .content .button {
  margin-left: 40px;
  transition: all 0.5s;
  opacity: 0;
}
@media only screen and (max-width: 640px) {
  .header-container .header-panel .content h1, .header-container .header-panel .content .subheader, .header-container .header-panel .content .text {
    margin-left: 20px;
  }
}
.header-container .header-panel .content h1 {
  opacity: 0;
  color: #fff;
  font-weight: 700;
  font-size: 48px;
  max-width: 100px;
  text-transform: uppercase;
  line-height: 48px;
}
@media only screen and (max-width: 640px) {
  .header-container .header-panel .content h1 {
    font-size: 35px !important;
    line-height: 35px !important;
  }
}
.header-container .header-panel .content .subheader {
  padding-left: 50px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
}
.header-container .header-panel .content .subheader:before {
  content: "";
  height: 12px;
  width: 44px;
  position: absolute;
  display: inline-block;
  background: #103463;
  margin-left: -55px;
  margin-top: 3px;
}
.header-container .header-panel .content .text {
  display: block;
  margin-top: 50px;
  color: #fff;
  max-height: 60px;
  font-weight: 400;
  max-width: 300px;
}
.header-container .header-panel .content .actions {
  display: block;
  margin-top: 40px;
}
.header-container .header-panel .content .actions .button {
  background: #103463;
  padding: 10px 30px;
  display: inline-block;
  min-width: 206px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  transition: 0.25s all ease;
}
.header-container .header-panel .content .actions .button:hover {
  color: #103463;
  background: #fff;
  transition: 0.25s all ease;
}
.header-container .header-panel .verticalText {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  opacity: 1;
  display: none !important;
}
@media only screen and (max-width: 640px) {
  .header-container .header-panel .verticalText {
    writing-mode: initial;
    bottom: 10px !important;
    top: unset !important;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 6px;
    font-size: 18px;
  }
}
.header-container .header-panel:first-child .verticalText {
  right: 15px;
  top: 54px;
}
@media only screen and (max-width: 990px) {
  .header-container .header-panel:first-child .content {
    padding: 40px 15% 40px 30%;
  }
}
@media only screen and (max-width: 640px) {
  .header-container .header-panel:first-child .content {
    padding: 40px 5%;
  }
}
.header-container .header-panel:nth-child(2) .verticalText {
  right: 15px;
  top: 54px;
}
@media only screen and (max-width: 640px) {
  .header-container .header-panel:nth-child(2) .content {
    padding: 40px 5%;
  }
}
.header-container .header-panel:last-child .verticalText {
  left: 15px;
  bottom: 40px;
}
@media only screen and (max-width: 990px) {
  .header-container .header-panel:last-child .content {
    padding: 40px 30% 40px 15%;
  }
}
@media only screen and (max-width: 640px) {
  .header-container .header-panel:last-child .content {
    padding: 40px 5%;
  }
}
.header-container .header-panel.active .verticalText {
  opacity: 0;
}
.header-container .header-panel.active .content h1 {
  opacity: 1 !important;
}
.header-container .header-panel.active .content button {
  opacity: 1;
}

.featured-business .business-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: auto;
}
.featured-business .business-grid .business-card a.business-link {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}
.featured-business .business-grid .business-card h3, .featured-business .business-grid .business-card p {
  color: #fff;
  margin: 0 0 5px 5px;
}
.featured-business .business-grid .business-card h3 {
  font-weight: 700;
  font-size: 18px;
  font-family: "Helvetica", sans-serif;
  text-transform: uppercase;
}
.featured-business .business-grid .business-card p {
  font-weight: 400;
  font-size: 14px;
  font-family: "Helvetica", sans-serif;
}
.featured-business .business-grid > .business-card {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 1023px) {
  .featured-business .business-grid > .business-card:first-child {
    width: calc(40% - 0.5rem) !important;
  }
}
@media only screen and (max-width: 640px) {
  .featured-business .business-grid > .business-card:first-child {
    width: calc(100% - 0.5rem) !important;
  }
}
@media only screen and (max-width: 1023px) {
  .featured-business .business-grid > .business-card:nth-child(4n+2) {
    width: calc(60% - 0.5rem) !important;
  }
}
@media only screen and (max-width: 640px) {
  .featured-business .business-grid > .business-card:nth-child(4n+2) {
    width: calc(100% - 0.5rem) !important;
  }
}
@media only screen and (max-width: 1023px) {
  .featured-business .business-grid > .business-card:nth-child(4n+3) {
    width: calc(60% - 0.5rem) !important;
  }
}
@media only screen and (max-width: 640px) {
  .featured-business .business-grid > .business-card:nth-child(4n+3) {
    width: calc(100% - 0.5rem) !important;
  }
}
@media only screen and (max-width: 1023px) {
  .featured-business .business-grid > .business-card:nth-child(4n+4) {
    width: calc(40% - 0.5rem) !important;
  }
}
@media only screen and (max-width: 640px) {
  .featured-business .business-grid > .business-card:nth-child(4n+4) {
    width: calc(100% - 0.5rem) !important;
  }
}
@media only screen and (max-width: 640px) {
  .featured-business .business-grid > .business-card {
    height: 225px !important;
  }
}
.featured-business .business-grid > .business-card:first-child {
  background-image: url("https://thumbs.dreamstime.com/b/amazon-prime-lorry-motion-luton-uk-july-british-motorway-m-153326699.jpg");
  width: calc(42% - 0.5rem);
  height: 370px;
  margin: 0.25rem;
}
.featured-business .business-grid > .business-card:nth-child(2) {
  background-image: url("https://www.buildersmerchantsnews.co.uk/images/teaser//W725/resizedconstructionindustryurgednottodelayengineeringinspections_637374979967389569_75L.jpg");
  width: calc(58% - 0.5rem);
  height: 370px;
  margin: 0.25rem;
}
.featured-business .business-grid > .business-card:nth-child(3) {
  background-image: url("https://i.insider.com/5ccc63c6021b4c0ee43679ae?width=600&format=jpeg&auto=webp");
  width: calc(21% - 0.5rem);
  height: 440px;
  margin: 0.25rem;
}
.featured-business .business-grid > .business-card:nth-child(4) {
  background-image: url("https://jobdescriptionswiki.com/wp-content/uploads/2017/08/welder.jpg");
  width: calc(45% - 0.5rem);
  height: 440px;
  margin: 0.25rem;
}
.featured-business .business-grid .vertical-split {
  width: calc(34% - 0.5rem);
  height: 440px;
  margin: 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.featured-business .business-grid .vertical-split .business-card {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.featured-business .business-grid .vertical-split .business-card:nth-child(1) {
  width: 100%;
  height: calc(50% - 0.25rem);
  background-image: url("https://business.time.com/wp-content/uploads/sites/2/2012/08/107428671-e13446287357841.jpg?w=480&h=320&crop=1");
}
@media only screen and (max-width: 1023px) {
  .featured-business .business-grid .vertical-split .business-card:nth-child(1) {
    width: calc(40% - 0.5rem);
    margin: 0.25rem;
    height: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .featured-business .business-grid .vertical-split .business-card:nth-child(1) {
    width: calc(100% - 0.5rem);
    height: 225px !important;
  }
}
.featured-business .business-grid .vertical-split .business-card:nth-child(2) {
  width: 100%;
  height: calc(50% - 0.25rem);
  background-image: url("https://i.pinimg.com/originals/f1/c7/f0/f1c7f054897eb9c7c2683424bd5efd70.jpg");
}
@media only screen and (max-width: 1023px) {
  .featured-business .business-grid .vertical-split .business-card:nth-child(2) {
    width: calc(60% - 0.5rem);
    margin: 0.25rem;
    height: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .featured-business .business-grid .vertical-split .business-card:nth-child(2) {
    width: calc(100% - 0.5rem);
    height: 225px !important;
  }
}
@media only screen and (max-width: 1023px) {
  .featured-business .business-grid .vertical-split {
    width: 100%;
    margin: 0;
    flex-direction: row;
    height: 370px;
  }
}
@media only screen and (max-width: 640px) {
  .featured-business .business-grid .vertical-split {
    flex-wrap: wrap;
    height: 450px;
  }
}
.featured-business .business-card::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.featured-business .business-card.in-active::after {
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 9;
}
.featured-business .discover-more {
  margin: auto;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-business .discover-more a {
  text-decoration: none;
  max-width: 320px;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  background: #003366;
  padding: 10px 50px;
  margin: 2.5rem auto 4.5rem auto;
  border: 3px solid #003366;
  font-weight: 700;
  font-size: 16px;
  font-family: inherit;
}
.featured-business .discover-more a:hover {
  color: #003366;
  background: #fff;
}

.visit-personal {
  margin: auto;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit-personal a {
  text-decoration: none;
  max-width: 320px;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  background: #003366;
  padding: 10px 50px;
  margin: 2.5rem auto 4.5rem auto;
  border: 3px solid #003366;
  font-weight: 700;
  font-size: 16px;
  font-family: inherit;
}
.visit-personal a:hover {
  color: #003366;
  background: #fff;
}

.ui.container {
  margin-top: 50px;
  margin-bottom: 50px;
}
.ui.container h4, .ui.container p {
  color: #767778;
}
.ui.container h4 {
  font-size: 32px;
  font-weight: 700;
}
.ui.container p {
  font-size: 16px;
  font-weight: 300;
}

.blue-bg {
  background: #003366;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.blue-bg .ui.container {
  margin-top: 50px;
  margin-bottom: 50px;
}
.blue-bg .ui.container h4, .blue-bg .ui.container p {
  color: #fff !important;
}
.blue-bg .ui.container h4 {
  font-size: 32px;
  font-weight: 700;
}

.featured-business-listing {
  padding-bottom: 20px;
}
.featured-business-listing .business-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: auto;
}
.featured-business-listing .business-grid .business-card {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.featured-business-listing .business-grid .business-card a.business-link {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}
.featured-business-listing .business-grid .business-card h3, .featured-business-listing .business-grid .business-card p {
  color: #fff;
  margin: 0 0 5px 5px;
}
.featured-business-listing .business-grid .business-card h3 {
  font-weight: 700;
  font-size: 18px;
  font-family: "Helvetica", sans-serif;
  text-transform: uppercase;
}
.featured-business-listing .business-grid .business-card p {
  font-weight: 400;
  font-size: 14px;
  font-family: "Helvetica", sans-serif;
}
.featured-business-listing .business-grid .business-card:nth-child(10n+1) {
  width: calc(42% - 0.5rem);
  height: 370px;
  margin: 0.25rem;
}
.featured-business-listing .business-grid .business-card:nth-child(10n+2) {
  width: calc(58% - 0.5rem);
  height: 370px;
  margin: 0.25rem;
}
.featured-business-listing .business-grid .business-card:nth-child(10n+3) {
  width: calc(21% - 0.5rem);
  height: 440px;
  margin: 0.25rem;
}
.featured-business-listing .business-grid .business-card:nth-child(10n+4) {
  width: calc(45% - 0.5rem);
  height: 440px;
  margin: 0.25rem;
}
.featured-business-listing .business-grid .business-card:nth-child(10n+5) {
  width: calc(34% - 0.5rem);
  height: 440px;
  margin: 0.25rem;
}
.featured-business-listing .business-grid .business-card:nth-child(10n+6) {
  width: calc(58% - 0.5rem);
  height: 370px;
  margin: 0.25rem;
}
.featured-business-listing .business-grid .business-card:nth-child(10n+7) {
  width: calc(42% - 0.5rem);
  height: 370px;
  margin: 0.25rem;
}
.featured-business-listing .business-grid .business-card:nth-child(10n+8) {
  width: calc(34% - 0.5rem);
  height: 440px;
  margin: 0.25rem;
}
.featured-business-listing .business-grid .business-card:nth-child(10n+9) {
  width: calc(45% - 0.5rem);
  height: 440px;
  margin: 0.25rem;
}
.featured-business-listing .business-grid .business-card:nth-child(10n+10) {
  width: calc(21% - 0.5rem);
  height: 440px;
  margin: 0.25rem;
}
@media only screen and (max-width: 1100px) {
  .featured-business-listing .business-grid .business-card:nth-child(4n+1) {
    width: calc(40% - 0.5rem);
  }
}
@media only screen and (max-width: 640px) {
  .featured-business-listing .business-grid .business-card:nth-child(4n+1) {
    width: calc(100% - 0.5rem);
  }
}
@media only screen and (max-width: 1100px) {
  .featured-business-listing .business-grid .business-card:nth-child(4n+2) {
    width: calc(60% - 0.5rem);
  }
}
@media only screen and (max-width: 640px) {
  .featured-business-listing .business-grid .business-card:nth-child(4n+2) {
    width: calc(100% - 0.5rem);
  }
}
@media only screen and (max-width: 1100px) {
  .featured-business-listing .business-grid .business-card:nth-child(4n+3) {
    width: calc(60% - 0.5rem);
  }
}
@media only screen and (max-width: 640px) {
  .featured-business-listing .business-grid .business-card:nth-child(4n+3) {
    width: calc(100% - 0.5rem);
  }
}
@media only screen and (max-width: 1100px) {
  .featured-business-listing .business-grid .business-card:nth-child(4n+4) {
    width: calc(40% - 0.5rem);
  }
}
@media only screen and (max-width: 640px) {
  .featured-business-listing .business-grid .business-card:nth-child(4n+4) {
    width: calc(100% - 0.5rem);
  }
}
@media only screen and (max-width: 1100px) {
  .featured-business-listing .business-grid .business-card {
    height: 370px !important;
  }
}
@media only screen and (max-width: 640px) {
  .featured-business-listing .business-grid .business-card {
    height: 225px !important;
  }
}
.featured-business-listing .business-card::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.featured-business-listing .business-card.in-active::after {
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 9;
}

.ui.form .field {
  padding: 0;
}
.ui.form label {
  border: unset !important;
  clip: unset !important;
  -webkit-clip-path: unset !important;
  clip-path: unset !important;
  height: unset !important;
  overflow: unset !important;
  padding: unset !important;
  position: unset !important;
  white-space: unset !important;
  width: unset !important;
  font-size: 18px !important;
  font-family: "Helvetica Neue", "Helvetica", "Roboto", sans-serif !important;
  color: #767778 !important;
  font-weight: 400 !important;
  margin-left: 1.5rem !important;
  text-align: left !important;
  margin-bottom: 14px !important;
}
.ui.form input, .ui.form textarea, .ui.form select {
  border: 1px solid #CBCBCB !important;
  border-radius: 0 !important;
}
.ui.form textarea {
  height: 12em;
  min-height: 8em;
  max-height: 24em;
}
.ui.form .wpcf7-select {
  color: #8c8c8c;
}

button.consort-theme, .submit > input {
  background: #003366 !important;
  border-radius: 0 !important;
  color: #fff !important;
  width: 212px !important;
  margin-left: calc(50% - 106px) !important;
  font-size: 16px !important;
  font-family: "Helvetica Neue", "Helvetica", "Roboto", sans-serif !important;
  font-weight: 700 !important;
  margin-top: 2rem !important;
  min-height: 46px !important;
  border: 3px solid #003366 !important;
}
button.consort-theme:hover, .submit > input:hover {
  color: #003366 !important;
  background: #fff !important;
}

.wpcf7 .wpcf7-form .submit > input {
  border: 3px solid #003366 !important;
}

div.banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 440px;
  width: 100%;
}
@media only screen and (max-width: 990px) {
  div.banner {
    min-height: 300px;
  }
}

.ui.tabular.menu {
  border: none !important;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media only screen and (max-width: 640px) {
  .ui.tabular.menu {
    flex-wrap: wrap;
  }
}
.ui.tabular.menu:after {
  display: none !important;
}

.ui.tabular.menu .item {
  border: none !important;
  background: rgba(0, 51, 102, 0.5) !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-size: 20px !important;
  margin: 2px 2px !important;
  display: flex;
  justify-content: center;
  width: calc(25% - 4px);
}
@media only screen and (max-width: 1200px) {
  .ui.tabular.menu .item {
    font-size: 16px !important;
  }
}
@media only screen and (max-width: 990px) {
  .ui.tabular.menu .item {
    padding: 0.75rem 0.5rem;
    width: calc(50% - 4px);
  }
}
@media only screen and (max-width: 640px) {
  .ui.tabular.menu .item {
    width: 100%;
  }
}
.ui.tabular.menu .item:hover {
  background: rgba(0, 51, 102, 0.8) !important;
}

.tabs-1, .tabs-2 {
  width: calc(50% - 4px) !important;
}
@media only screen and (max-width: 990px) {
  .tabs-1, .tabs-2 {
    width: calc(50% - 4px) !important;
  }
}
@media only screen and (max-width: 640px) {
  .tabs-1, .tabs-2 {
    width: 100% !important;
  }
}

.tabs-3 {
  width: calc(33% - 4px) !important;
}
@media only screen and (max-width: 990px) {
  .tabs-3 {
    width: calc(50% - 4px) !important;
  }
}
@media only screen and (max-width: 640px) {
  .tabs-3 {
    width: 100% !important;
  }
}

.tabs-above-4 {
  width: calc(25% - 4px) !important;
}
@media only screen and (max-width: 990px) {
  .tabs-above-4 {
    width: calc(50% - 4px) !important;
  }
}
@media only screen and (max-width: 640px) {
  .tabs-above-4 {
    width: 100% !important;
  }
}

.ui.tabular.menu .active.item {
  border: none !important;
  background: #003366 !important;
  color: #fff !important;
  border-radius: 0 !important;
}

.accordion {
  border: none !important;
  box-shadow: none !important;
  border-bottom: 1px solid #979797 !important;
}
.accordion .title {
  text-align: left;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #767778 !important;
  font-family: "Helvetica", "Roboto", sans-serif !important;
  border-top: 1px solid #979797 !important;
}
.accordion .title .icon {
  float: right !important;
}
.accordion .content p {
  font-weight: 300 !important;
  font-size: 16px;
  color: #767778 !important;
  font-family: "Helvetica", "Roboto", sans-serif !important;
  text-align: left;
}

.ui.tab {
  box-shadow: none;
  border: none;
}

.contact-us {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-us a {
  max-width: 220px;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  background: #003366;
  padding: 10px 50px;
  text-decoration: none;
  margin: 1rem auto 1rem auto;
  font-size: 16px;
  font-weight: 700;
  border: 3px solid #003366;
}
.contact-us a:hover {
  color: #003366;
  background: #fff;
}

.contact-us-menu {
  position: absolute;
  bottom: 50px;
  right: 50px;
  display: none;
}
.contact-us-menu div {
  border: 2px solid #fff;
  max-width: 220px;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  background: #003366;
  padding: 10px 50px;
  margin: 0 auto 0 auto;
  font-size: 16px;
  font-weight: 700;
}
.contact-us-menu:hover div {
  background: #fff;
  color: #003366;
}

.mega-toggle-on .contact-us-menu {
  display: block;
}

footer {
  background: #333333;
}
footer .logo_menus img {
  width: 180px;
}
@media only screen and (max-width: 640px) {
  footer .logo_menus img {
    margin-left: calc(50% - 90px);
  }
}
footer .logo_menus .footer-menu h6 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Helvetica Neue", "Helvetica", "Roboto", sans-serif;
  margin: 40px 0 25px 0;
}
@media only screen and (max-width: 640px) {
  footer .logo_menus .footer-menu h6 {
    text-align: center;
  }
}
footer .logo_menus .footer-menu ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 640px) {
  footer .logo_menus .footer-menu ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .logo_menus .footer-menu ul li {
  border-left: none;
  display: list-item;
  margin: 0 10px;
  padding: 0;
}
@media only screen and (max-width: 640px) {
  footer .logo_menus .footer-menu ul li {
    margin: 10px 10px;
  }
}
footer .logo_menus .footer-menu ul li:first-child {
  margin-left: 0;
}
footer .logo_menus .footer-menu ul li a {
  color: #fff;
  position: relative;
}
footer .logo_menus .footer-menu ul li a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  transition: all 0.3s ease;
  background: #fff;
}
footer .logo_menus .footer-menu ul li a:hover:after {
  left: 0;
  width: 100%;
  transition: all 0.3s ease;
}

.footer-menu-contact h6 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Helvetica Neue", "Helvetica", "Roboto", sans-serif;
  margin: 30px 0 15px 0;
}
@media only screen and (max-width: 640px) {
  .footer-menu-contact h6 {
    text-align: center;
  }
}
.footer-menu-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu-contact ul li {
  margin-bottom: 10px;
}
.footer-menu-contact ul li:last-child {
  margin-bottom: 0;
}
.footer-menu-contact ul li a {
  color: #fff;
}

#footer {
  padding: 50px;
  align-items: flex-end;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  #footer {
    align-items: flex-start;
  }
}
#footer .logo_menus {
  margin-left: 1rem;
  margin-right: 1rem;
  width: calc((100%/16 * 8) - 2rem);
}
@media only screen and (max-width: 1024px) {
  #footer .logo_menus {
    width: 100%;
  }
}
#footer .contact-block {
  margin-left: 1rem;
  margin-right: 1rem;
  width: calc((100%/16 * 4) - 2rem);
}
@media only screen and (max-width: 1024px) {
  #footer .contact-block {
    width: calc((100%/16 * 10) - 2rem);
    margin-top: 4rem;
  }
  #footer .contact-block h6 {
    margin-top: 0;
  }
}
@media only screen and (max-width: 640px) {
  #footer .contact-block {
    width: 100%;
  }
}
#footer .map-image {
  margin-left: 1rem;
  margin-right: 1rem;
  width: calc((100%/16 * 4) - 2rem);
}
@media only screen and (max-width: 1024px) {
  #footer .map-image {
    width: calc((100%/16 * 6) - 2rem);
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 640px) {
  #footer .map-image {
    width: 100%;
  }
}

.bottom-footer {
  background: #555555;
  height: 78px;
  display: flex;
  align-items: center;
}
.bottom-footer .copy-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
.bottom-footer span {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-left: 1rem;
}

header .nav {
  display: flex;
  justify-content: flex-end;
  position: relative;
  align-items: center;
  background: #003366;
  min-height: 125px;
}
@media only screen and (max-width: 990px) {
  header .nav {
    min-height: 180px;
    flex-wrap: wrap;
  }
}
header .nav .main-logo-header {
  width: 155px;
  position: absolute;
  left: 30px;
  top: 20px;
}
@media only screen and (max-width: 1100px) {
  header .nav .main-logo-header {
    width: 110px;
    top: 30px;
  }
}
@media only screen and (min-width: 991px) {
  header .nav ul#mega-menu-main-menu {
    list-style: none !important;
    display: flex !important;
    padding-left: 0 !important;
  }
}
header .nav ul#mega-menu-main-menu > li > a.mega-menu-link {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  margin-right: 12px !important;
  margin-left: 12px !important;
  position: relative !important;
  font-family: "Helvetica", sans-serif !important;
}
@media only screen and (max-width: 1440px) {
  header .nav ul#mega-menu-main-menu > li > a.mega-menu-link {
    font-size: 15px !important;
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
}
@media only screen and (max-width: 1280px) {
  header .nav ul#mega-menu-main-menu > li > a.mega-menu-link {
    font-size: 14px !important;
    margin-right: 6px !important;
    margin-left: 6px !important;
  }
}
@media only screen and (max-width: 1200px) {
  header .nav ul#mega-menu-main-menu > li > a.mega-menu-link {
    font-size: 13px !important;
    margin-right: 3px !important;
    margin-left: 3px !important;
  }
}
header .nav ul#mega-menu-main-menu > li > a.mega-menu-link:after {
  content: "" !important;
  display: block !important;
  width: 0 !important;
  height: 4px !important;
  position: absolute !important;
  bottom: 4px !important;
  left: 50% !important;
  background: #949599 !important;
  transition: all 0.2s ease !important;
}
@media only screen and (max-width: 990px) {
  header .nav ul#mega-menu-main-menu > li > a.mega-menu-link:after {
    left: 0 !important;
    width: 0 !important;
  }
}
header .nav ul#mega-menu-main-menu > li > a.mega-menu-link:hover:after {
  width: 80% !important;
  left: 10% !important;
  transition: all 0.3s ease !important;
}
@media only screen and (max-width: 990px) {
  header .nav ul#mega-menu-main-menu > li > a.mega-menu-link:hover:after {
    left: 0 !important;
    width: 100% !important;
  }
}
header .nav ul#mega-menu-main-menu ul.mega-sub-menu li a:after {
  display: none !important;
}
header .nav ul#mega-menu-main-menu li.mega-menu-row > .mega-sub-menu > li > .mega-sub-menu > li > .mega-sub-menu > li a {
  font-size: 12px !important;
  font-family: Helvetica, "Roboto", sans-serif;
}
header .nav .icons {
  width: 230px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 1100px) {
  header .nav .icons {
    width: 180px;
  }
}
@media only screen and (max-width: 990px) {
  header .nav .icons {
    width: 100%;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 640px) {
  header .nav .icons {
    width: 100%;
    justify-content: space-evenly;
  }
}
header .nav .icons a img {
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 1100px) {
  header .nav .icons a img {
    width: 25px;
    height: 25px;
  }
}
header .nav .icons .header-search-loupe img {
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 990px) {
  header .nav .icons .header-search-loupe img {
    margin-left: 1.5rem;
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 640px) {
  header .nav .icons .header-search-loupe img {
    margin-left: 0;
  }
}
header .nav .icons .header-search-loupe img:hover {
  cursor: pointer;
}

.search-container {
  position: absolute;
  width: 0;
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: #003266;
  top: 0;
  right: 0;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 990px) {
  .search-container {
    height: 60px;
    top: 120px;
  }
}
.search-container .closeSearch {
  position: absolute;
  right: 25px;
  top: 50px;
  height: 25px;
  width: 25px;
  display: none;
}
@media only screen and (max-width: 990px) {
  .search-container .closeSearch {
    top: 20px;
  }
}
.search-container.activeSearch {
  transition: all 0.5s ease;
  width: calc(100% - 190px);
  padding: 0 75px 0 3rem;
}
@media only screen and (max-width: 1100px) {
  .search-container.activeSearch {
    width: calc(100% - 160px);
  }
}
@media only screen and (max-width: 990px) {
  .search-container.activeSearch {
    width: 100%;
  }
}
.search-container.activeSearch .closeSearch {
  display: block;
}
.search-container.activeSearch .closeSearch:hover {
  cursor: pointer;
}
.search-container #ajaxsearchlite1 {
  background: #003266;
}
.search-container #ajaxsearchlite1 div.probox {
  background: #003266;
  border-bottom: 1px solid #fff;
  width: 100%;
  max-width: 700px;
  float: right;
}
.search-container #ajaxsearchlite1 div.promagnifier {
  display: none;
}

div.asl_r.vertical {
  max-width: 690px;
  right: 75px !important;
  left: unset !important;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  background: #767778 !important;
}
@media only screen and (max-width: 990px) {
  div.asl_r.vertical {
    max-width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .ui.form {
    margin-top: 2rem !important;
  }
}

@media only screen and (max-width: 990px) {
  .claim-video {
    height: 300px;
  }
}
@media only screen and (max-width: 640px) {
  .claim-video {
    height: 225px;
  }
}

.first-business, .second-business {
  width: calc(50% - 0.5rem) !important;
}
@media only screen and (max-width: 640px) {
  .first-business, .second-business {
    width: calc(100% - 0.5rem) !important;
  }
}

.active.title .dropdown.icon {
  transform: rotate(-180deg) !important;
  transition: transform 0.3s ease, opacity 0.1s ease, -webkit-transform 0.3s ease !important;
}

.dropdown.icon {
  transition: transform 0.3s ease, opacity 0.1s ease, -webkit-transform 0.3s ease !important;
}
.dropdown.icon:before {
  content: url("/wp-content/themes/consort/build/assets/images/consortChevron.svg") !important;
}

.category-title > ul > li > a {
  font-weight: 700 !important;
  font-size: 18px !important;
  margin-bottom: 1rem !important;
}

.category-title > ul > li > ul > li > a {
  font-weight: 300 !important;
}
.category-title > ul > li > ul > li > a:hover {
  text-decoration: underline !important;
}

.text.center.container p {
  text-align: center;
}

.sub-sector-container {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}
.sub-sector-container .sub-sector-link {
  width: calc(33.33% - 2rem);
  margin: 1rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  transition: all 0.3s ease;
  min-height: 65px;
  position: relative;
}
@media only screen and (max-width: 1100px) {
  .sub-sector-container .sub-sector-link {
    width: calc(50% - 2rem);
  }
}
@media only screen and (max-width: 640px) {
  .sub-sector-container .sub-sector-link {
    width: calc(100% - 2rem);
  }
}
.sub-sector-container .sub-sector-link a {
  color: #003365 !important;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  position: absolute;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 1200px) {
  .sub-sector-container .sub-sector-link a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 640px) {
  .sub-sector-container .sub-sector-link a {
    font-size: 14px;
  }
}
.sub-sector-container .sub-sector-link:hover {
  background: #555;
  transition: all 0.3s ease;
}
.sub-sector-container .sub-sector-link:hover a {
  color: #fff !important;
  transition: all 0.3s ease;
}

.frosting {
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  width: auto;
  position: absolute;
  left: 2.5%;
  bottom: 1rem;
  border-left: 5px solid #113463;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
}

.business-card:hover .frosting {
  border-left: 10px solid #ffffff;
  transition: all 0.2s ease-in-out;
}

.claims-app-section .iframe-outer {
  max-width: 100% !important;
}
.claims-app-section .iframe-outer .iframe-wrap {
  border: none !important;
}

.store-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.store-links a {
  margin: 0.5rem 1rem 0.5rem 0;
}
.store-links a img {
  height: 40px;
}

.downloadsFlex {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  flex-direction: column;
  margin-top: 2rem;
}
.downloadsFlex a {
  position: relative;
  font-size: 16px;
  color: #113463;
  padding: 1rem;
}
.downloadsFlex a:before {
  content: "";
  width: 40px;
  height: 40px;
  left: -35px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 3px;
  position: absolute;
  background: url(/wp-content/themes/consort/build/assets/images/consortDownload.svg);
  background-position: center;
}

.downloadsFlexSectors {
  background: #003266;
  padding: 3rem 0;
  border-top: 2px solid #fff;
}
.downloadsFlexSectors .downloadsFlexContainer {
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 640px) {
  .downloadsFlexSectors .downloadsFlexContainer {
    width: 90%;
  }
}
.downloadsFlexSectors .downloadsFlexContainer a {
  position: relative;
  font-size: 16px;
  color: #fff;
  padding: 1rem;
}
.downloadsFlexSectors .downloadsFlexContainer a:before {
  content: "";
  width: 40px;
  height: 40px;
  left: -35px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 3px;
  position: absolute;
  background: url(/wp-content/themes/consort/build/assets/images/consortDownload.svg);
  background-position: center;
}
.downloadsFlexSectors .logo-block-title {
  color: #fff !important;
}

footer .icons {
  width: 120px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .icons a img {
  width: 30px;
  height: 30px;
}

.dual-col-content {
  display: flex;
}
@media only screen and (max-width: 640px) {
  .dual-col-content {
    flex-direction: column;
  }
}
.dual-col-content .col-content {
  width: calc(50% - 2rem);
}
@media only screen and (max-width: 640px) {
  .dual-col-content .col-content {
    width: calc(100% - 2rem);
  }
}
.dual-col-content .col-content:first-child {
  margin-right: 2rem;
}
@media only screen and (max-width: 640px) {
  .dual-col-content .col-content:first-child {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.dual-col-content .col-content:nth-child(2) {
  margin-left: 2rem;
}
@media only screen and (max-width: 640px) {
  .dual-col-content .col-content:nth-child(2) {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}

p, ul, ol, li {
  color: #767778 !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  font-family: "Helvetica", sans-serif !important;
}

.dual-col-content, .single-col-content, .content {
  text-align: left !important;
}
.dual-col-content p, .dual-col-content ul, .dual-col-content ol, .dual-col-content li, .single-col-content p, .single-col-content ul, .single-col-content ol, .single-col-content li, .content p, .content ul, .content ol, .content li {
  color: #767778 !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  font-family: "Helvetica", sans-serif !important;
}
.dual-col-content strong, .single-col-content strong, .content strong {
  font-weight: 600 !important;
}
.dual-col-content ol, .single-col-content ol, .content ol {
  margin-bottom: 1rem;
  margin-left: 1rem;
}
.dual-col-content ol li, .single-col-content ol li, .content ol li {
  margin: 8px 0;
  margin-left: 0.25rem;
}
.dual-col-content ul, .single-col-content ul, .content ul {
  list-style: none;
  margin-bottom: 0.5rem;
}
.dual-col-content ul li, .single-col-content ul li, .content ul li {
  margin: 8px 0;
  position: relative;
  margin-left: 1rem;
}
.dual-col-content ul li a, .single-col-content ul li a, .content ul li a {
  color: #202d70 !important;
}
.dual-col-content ul li:before, .single-col-content ul li:before, .content ul li:before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/wp-content/themes/consort/build/assets/images/Blue Arrow.svg");
  position: absolute;
  height: 12px;
  width: 12px;
  left: -18px;
  top: 2px;
}

.downloadDiv {
  margin: 0 40px;
  min-height: 60px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mega-menu-wrap-main-menu {
  margin-left: 185px;
}
@media only screen and (max-width: 1100px) {
  #mega-menu-wrap-main-menu {
    margin-left: 160px;
  }
}
@media only screen and (max-width: 990px) {
  #mega-menu-wrap-main-menu {
    margin-left: initial;
  }
}

.transparentCTA {
  background: #103463;
  padding: 10px 30px;
  display: inline-block;
  min-width: 206px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  transition: 0.25s all ease;
  opacity: 0.5;
  margin-top: 0;
  position: absolute;
  left: 50px;
  bottom: 40px;
}

.header-panel.one .transparentCTA {
  left: unset;
  right: 50px;
}

.active .transparentCTA {
  display: none;
}

@media only screen and (max-width: 990px) {
  .transparentCTA {
    left: 60px;
    font-size: 11px;
    padding: 10px 0;
    min-width: 120px;
  }
}
@media only screen and (max-width: 640px) {
  .transparentCTA {
    position: absolute;
    font-size: 14px;
    line-height: 0;
    top: 20px;
    left: calc(50% - 100px);
    min-width: 206px;
    padding: 20px 30px;
  }
}
.blockTitle {
  background: #003266;
  color: #fff;
  font-weight: 700;
  padding: 20px 40px;
  font-family: Helvetica, sans-serif;
  font-size: 40px;
  line-height: 40px;
  position: absolute;
}
@media only screen and (max-width: 990px) {
  .blockTitle {
    font-size: 30px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .blockTitle {
    font-size: 20px;
    line-height: 20px;
    padding: 20px 20px;
  }
}

.topString {
  top: calc(50% - 80px);
  left: 15%;
}
@media only screen and (max-width: 640px) {
  .topString {
    top: calc(50% - 80px);
    left: 3%;
  }
}

.bottomString {
  top: calc(50% - 5px);
  left: 18%;
}
@media only screen and (max-width: 990px) {
  .bottomString {
    top: calc(50% - 15px);
  }
}
@media only screen and (max-width: 640px) {
  .bottomString {
    top: calc(50% - 25px);
    left: 15%;
  }
}

.postid-81 div.banner {
  background-position-y: 25% !important;
  background-position-x: 0% !important;
  background-size: 115%;
}

a.whiteOutlineExpand {
  height: 30px;
  width: 30px;
  border: 1px solid #fff;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #003366;
}
a.whiteOutlineExpand img {
  width: 20px !important;
  height: 20px !important;
}
a.whiteOutlineExpand p {
  display: none;
  color: #fff !important;
  margin-left: 5px;
  margin-right: 10px;
  margin-bottom: 0;
  font-size: 11px !important;
  line-height: 11px !important;
  opacity: 0;
}
@media only screen and (min-width: 1025px) {
  a.whiteOutlineExpand.activeIcon {
    width: 150px;
  }
}
@media only screen and (min-width: 1025px) {
  a.whiteOutlineExpand.activeIcon p {
    display: block !important;
    opacity: 1;
    transition-delay: 0.3s;
    transition: 0.2s opacity ease;
  }
}

@media only screen and (min-width: 1025px) {
  .nav .icons a {
    margin: 0 3px !important;
  }
}

/*# sourceMappingURL=index.css.map */
