/* 
----------------------------------------------
TABLE OF CONTENTS:
----------------------------------------------

01) Colours
02) Globals
03) Hero Banner
04) Section: What We Do
05) Section: Who We Are
06) Section: Gallery
07) Section: Location
08) Section: Get In Touch (Contact Form)
09) Footer
10) Main Navigation
11) Secondary Navigation
12) Responsive Media Queries
  a) Max-width: 450px
  b) Max-width: 768px
  c) Max-width: 990px
  d) Min-width: 768px AND Max-width: 1199px
  e) Min-width: 768px
  f) Min-width: 1200px
  g) Min-width: 1440px
*/

/* 
----------------------------------------------
01
COLOURS
----------------------------------------------

Orange (main)       = #F04A22
Orange (secondary)  = #ef7a5d

Dark Blue #1        = #19232e
Dark Blue #2        = #1e2731
Navy                = #212e62

Dark grey           = #2d3946
Grey #1             = #73787e
Grey #2             = #8e949b
Light grey #1       = #aeaeae
Light grey #2       = #cbcbcb
Light grey #3       = #eaecef
*/

/* 
----------------------------------------------
02
Globals 
----------------------------------------------
*/

html {
  background-color: #19232e;
  font-size: 15px;
  font-family: "Manrope", sans-serif;
  padding: 0px;
  margin: 0px;
  scroll-behavior: smooth;
}
h1 {
  font-family: laski-slab, sans-serif;
  font-weight: 200;
}
h2 {
  font-size: 3.5em;
  margin: 0px;
  font-family: laski-slab, sans-serif;
  font-weight: 400;
}
h3 {
  margin: 0 0 20px 0;
  font-size: 1.6em;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
}
h3.orange {
  color: #f04a22;
}
h4 {
  margin: 0px 0px !important;
  font-family: "Manrope", sans-serif;
}
.preHeader {
  color: #f04a22;
  font-size: 1em;
  margin-bottom: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
p {
  line-height: 30px;
  font-family: "Manrope", sans-serif;
}
.button {
  font-weight: 500;
  outline: none;
  text-align: center;
  background-color: #212e62;
  color: white;
  height: 50px;
  border: none;
  border-radius: 4px;
  transition: ease all 0.3s;
  font-family: "Manrope", sans-serif;
}
.button:hover {
  outline: none;
  background: #f04a22;
}
.button:active {
  outline: none;
  background-color: #8e949b;
}
.button a {
  width: 100%;
  height: 100%;
  padding: 0;
  text-decoration: none;
}
section {
  padding: 60px 30px;
}

.pageBreak {
  height: 30px;
  width: 100%;
  background-color: #eaecef;
}

.sectionImg {
  height: 550px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}
a.anchor {
  display: block;
  position: relative;
  visibility: hidden;
  top: -100px;
}
#whoWeAre a.anchor,
#location a.anchor {
  top: -80px;
}

ul,
li,
a {
  font-family: "Manrope", sans-serif;
}

.textHeader {
  margin-bottom: 20px;
}
.hdrBar {
  padding: 0px;
  margin: 15px 0;
}
.orangeHdrBar {
  height: 4px;
  width: 5.2em;
  background-color: #f04a22;
  padding: 0px;
  display: inline-block;
}
.drkBlueHdrBar {
  height: 4px;
  width: 2em;
  background-color: #212e62;
  margin-left: 0.5em;
  display: inline-block;
}

/* 
----------------------------------------------
03
Hero Banner 
----------------------------------------------
*/

#heroBanner {
  padding: 0;
}

.carousel-inner {
  max-height: 100%;
}

.carousel-caption {
  max-width: 800px;
  margin: 0 auto;

  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.carousel-control-next,
.carousel-control-prev {
  top: 15%;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 40px;
  height: 40px;
}
#heroBanner h2 {
  font-family: laski-slab, sans-serif;
  font-weight: 200;
  line-height: 1em;
  font-size: 2em !important;
}
#heroBanner .heroText {
  color: #ffffff;
  padding: 2em 0 0 0;
}

#heroBanner .preHeader {
  margin-bottom: 0;
  color: #ef7a5d;
}

#heroBanner button.btn-orange {
  background: #ef7a5d;
  color: #ffffff;
  border: 2px solid #ef7a5d;
}
#heroBanner button.btn-outline {
  background: none;
  color: #ffffff;
  border: 2px solid #ffffff;
}
#heroBanner button:hover {
  background: #f04a22;
  border: 2px solid #f04a22;
}

.heroText button {
  background-color: transparent;
  border: solid 2px white;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 40px;
}
.heroText button:hover {
  /* border-color: #f04a22; */
  background-color: transparent;
  border: solid 2px white;
  cursor: auto;
}

/* 
----------------------------------------------
04
Section: What We Do 
----------------------------------------------
*/

.panel {
  margin-top: 40px;
}
.infoPanel {
  padding: 30px;
  height: 100%;
  border-top: 10px solid #212e62;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#whatWeDo .infoPanel {
  background-color: white;
}
.infoPanel.heightFix .row {
  height: 100%;
}
.infoPanel ul {
  list-style: none;
  padding: 0 0 0 25px;
}
.infoPanel ul li::before {
  content: "\2022";
  color: #f04a22;
  font-weight: bold;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  margin-top: 10px;
}
.infoPanel li {
  line-height: 30px;
}
.panelIcon {
  position: relative;
  height: 90px;
  width: 80px;
  margin: 0 auto 30px auto;
  vertical-align: middle;
}
.panelIconLarge {
  width: 100px;
}
.panelIcon img {
  max-width: 100%;
  margin: 0 auto;

  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.serviceImg {
  margin: 30px 0 20px 0;
  width: 100%;
}

/* 
----------------------------------------------
05
Section: Who We Are 
----------------------------------------------
*/

#whoWeAre {
  background-color: #eaecef;
  padding: 0 0 60px 0;
}

#whoWeAre .sectionImg {
  height: 350px;
  background: url(../img/photos/who-we-are.jpg);
  background-repeat: no-repeat;
  background-position: top;
}

#whoWeAre .container {
  margin-top: -250px;
}

#whoWeAre .textHeader h2 {
  color: #ffffff;
}

#whoWeAre .preHeader {
  color: #ef7a5d;
}

#whoWeAre .orangeHdrBar,
#whoWeAre .drkBlueHdrBar {
  background-color: #ef7a5d;
}

.promoText {
  color: #ffffff;
  background-color: #212e62;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 0px;
  margin: 0 0 50px 0;
  padding: 50px 30px;
}
.promoText p {
  font-family: "Manrope", sans-serif;
  font-weight: 100;
  font-size: 1em;
  font-style: italic;
  line-height: 25px !important;
  letter-spacing: 1px;
  margin: 0px;
  text-align: center;
}
.whoWeAreTxt h2 {
  padding: 0px;
  margin: 40px 0px 30px 0;
  font-size: 1.2em;
}

/* 
----------------------------------------------
06
Section: Gallery 
----------------------------------------------
*/

#gallery {
  padding: 0 0 60px 0;
}

#gallery .sectionImg {
  height: 350px;
  background: #19232e;
}

#gallery .container {
  margin-top: -280px;
}

#gallery h2 {
  color: #ffffff;
}

#gallery .preHeader {
  color: #ef7a5d;
}

#gallery .orangeHdrBar,
#gallery .drkBlueHdrBar {
  background: #ef7a5d;
}

#gallery .flex-column {
  width: 100%;
}

#gallery .flex-column a {
  margin: 5px;
  position: relative;
}

#gallery i.fas {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2em;
  text-align: center;
  margin-left: -15px;
  margin-top: -15px;
  color: #ffffff;
}

#gallery .flex-column a:hover {
  cursor: pointer;
  background: #212e62;
}

#gallery .flex-column a:hover img {
  opacity: 0.25;
  transition: 0.4s;
}

#gallery .flex-column a:hover i {
  opacity: 1;
  transition: 0.4s;
}

/* 
----------------------------------------------
07
Section: Location 
----------------------------------------------
*/

#location {
  position: relative;
  padding: 0;
}
.locationHeader {
  position: relative;
  z-index: 101;
  background-color: white;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  padding-bottom: 20px;
}
.locationHeader p {
  font-size: 0.75em;
  text-align: center;
  margin-bottom: 0 !important;
}
.locationHeader .row div {
  border-right: 1px solid #cbcbcb;
}
.locationHeader .row div:first-of-type {
  font-weight: 800;
  text-align: left;
  border: none;
}
.locationHeader .row div:last-of-type {
  border: none;
}
.locationHeader ul li:first-of-type {
  font-weight: 700;
  letter-spacing: 2px;
}
.locationHeader ul div {
  height: 20px;
  position: relative;
  bottom: -5px;
}

#location {
  height: 600px;
  overflow: hidden;
}
#location iframe {
  position: relative;
  top: -140px;
}

.mapButtonWrap {
  display: inline-flex;
  justify-content: center;
  position: relative;
  top: -260px;
  width: 100%;
  padding: 0 10px;
}
.btMap {
  background-color: white;
  transition: ease all 0.4s;
  border: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px 20px 30px 20px;
  margin: 10px;
  border-top: 10px solid #212e62;
  max-height: 135px;
  position: relative;
}
.btMap:first-of-type {
  margin-right: 0;
}
.btMap:last-of-type {
  margin-left: 0;
}

.btMap:hover {
  cursor: pointer;
  border-top: 10px solid #f04a22;
}
.btMap:last-of-type {
  margin-left: 0px;
}
.mapText {
  font-size: 0.7em;
  color: #19232e;
  display: inline-flex;
}
.ho {
  list-style: none;
  padding-left: 0px;
  width: 100%;
  margin-bottom: 0;
}
.ho li:first-of-type {
  font-weight: 500;
  letter-spacing: 1px;
  font-weight: 800;
}
.ho li:last-of-type {
  font-weight: 800;
}
.iconMap {
  display: none;
  width: 20px;
}
.iconMap img {
  width: 100%;
}

/* Map Button Animations and adjust */
.btMapActive {
  width: 55%;
}
.btMapInactive {
  width: 35%;
  border-top: 10px solid #8e949b;
}
.btMapInactive .mapText {
  color: #73787e;
}
.btMapInactive li {
  opacity: 0;
  transition: ease all 0.4s;
}
.btMapInactive li:first-of-type {
  opacity: 1;
}

.btMapActive li {
  opacity: 1;
  transition: ease all 0.4s;
}
.btMapInactive .iconActive {
  display: none;
}
.btMapActive .iconInactive {
  display: none;
}
.btMapActive .barMap {
  background-color: #212e62;
}
.btMapInactive .barMap {
  background-color: grey;
}

#MapStyleSelector,
#LocateMeButton {
  display: none;
}
#MicrosoftNav {
  margin-top: 40px;
}

/* 
----------------------------------------------
08
Section: Get In Touch (Contact Form) 
----------------------------------------------
*/
.formSelection {
  margin: auto;
}
.formSelectBtn {
  border: none;
  width: 100%;
  padding: 0;
  margin: 0 0 20px 0;
  border-bottom: 10px solid #212e62;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: ease all 0.4s;
  outline: none !important;
}
.formSelectBtn:active {
  outline: none;
}

.formSelectBtn div {
  width: 100%;
  background-color: white;
  border: solid 1px #eaecef;
  border-bottom: none;
  padding: 20px 0 15px 0;
}
.formSelectBtn h3 {
  font-size: 1em;
  font-weight: 500;
  margin: 0;
  letter-spacing: 1px;
}
.formSelectBtn p {
  font-size: 0.8em;
  margin-bottom: 0;
}
.formSelectBtn.inactive {
  color: #8e949b;
  border-bottom: 10px solid #8e949b;
}
.formSelectBtn:hover {
  border-bottom: 10px solid #f04a22;
}
.optionalInput {
  color: #8e949b;
  font-size: 0.6em;
  padding: 0px;
}
form input {
  border: solid 1px #aeaeae;
  margin-bottom: 35px;
  height: 65px;
  outline: none;
  transition: ease all 0.4s;
  font-size: 0.8em;
}
form input:focus,
form textarea:focus {
  border: solid 1px #73787e;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: ease all 0.4s;
}
form textarea {
  outline: none;
  border: solid 1px #aeaeae;
  height: 200px;
  margin-bottom: 35px;
  padding-top: 20px;
  font-size: 0.8em;
}
.rowInputFields {
  padding: 0px 15px;
  margin: 20px -15px;
}
.inputTitle {
  padding: 0px;
  margin-bottom: 10px;
  color: #1e2731;
}
.code {
  font-size: 0.8em;
  color: rgba(225, 0, 0, 1);
  margin-top: -30px;
}
.sentCode {
  background: rgb(1, 86, 5);
  background: linear-gradient(
    90deg,
    rgba(1, 86, 5, 1) 0%,
    rgba(1, 83, 5, 1) 35%,
    rgba(0, 158, 3, 1) 100%
  );
  text-align: center;
  color: white;
  padding-top: 2.5px;
  margin: -30px 0px 5px 0px;
  border-radius: 5px;
  display: none;
}
.invalidInput {
  background-color: rgba(225, 0, 0, 0.2);
  border: solid 2px rgb(200, 0, 0);
  border-radius: 5px;
}

/* 
----------------------------------------------
09
Footer 
----------------------------------------------
*/
footer {
  min-height: 100px;
  background-color: #19232e;
  color: #73787e;
  padding: 60px 30px 40px 30px;
}
footer p a {
  color: #8e949b;
  font-weight: bold;
}
footer p a:hover {
  text-decoration: none;
  color: #ef7a5d;
}
.ftRight {
  text-align: right;
}

/* 
----------------------------------------------
10
Main Navigation  
----------------------------------------------
*/
.navSpacer {
  height: 120px;
}
nav {
  position: fixed;
  z-index: 110;
  width: 100%;
  background-color: white;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-top: 10px solid #212e62;
  padding: 10px 40px 5px 40px;
}
nav ul {
  margin-bottom: 0;
}
.logo img {
  width: 150px;
}
.logoPhoneNumber{
  font-size: 0.6rem;
  padding-left: 5px;
}
.menuButtonWrap {
  float: right;
}
.menuLine {
  height: 3px;
  width: 19px;
  margin-top: 3px;
  background-color: #212e62;
  transition: all ease 0.4s;
}
.menuItemsWrap {
  height: 0px;
  overflow: hidden;
  position: fixed;
  top: 77px;
  left: 0;
  padding: 0px;
}
.menuItems {
  background-color: rgb(255, 255, 255);
  border-top: 1px solid #eaecef;
  width: 100%;
  left: 0px;
  text-align: center;
  list-style: none;
  padding-left: 0px;
  z-index: 105;
  padding: 0;
  transition: all ease 0.5s;
}
.menuItems li {
  margin: 0px;
}
.menuItems li a {
  display: block;
  color: #19232e;
  padding: 20px 30px;
  text-decoration: none;
}
.menuItems li a:hover {
  color: #19232e;
  background: #eaecef;
  border-radius: 2px;
}

.menuItems button {
  padding: 0px 20px;
  width: 80%;
  margin-bottom: 20px;
}
.menuButton.buttonOpen .lineOne {
  transform: matrix(0.8, -0.8, 1, 1, 0, 6);
  background-color: #f04a22;
}
.menuButton.buttonOpen .lineTwo {
  opacity: 0;
}
.menuButton.buttonOpen .lineThree {
  transform: matrix(0.8, 0.8, -1, 1, 0, -6);
  background-color: #f04a22;
}
.contactButton {
  margin: 0;
}

/* 
----------------------------------------------
11
Secondary Navigation 
----------------------------------------------
*/
.secondNavWrap {
  position: fixed;
  z-index: 100;
  height: 0px;
  overflow: hidden;
  top: 79px;
  width: 100%;
  transition: ease all 0.3s;
}
.secondNav {
  background-color: #1e2731;
  color: white;
  text-align: center;
  width: 100%;
  position: relative;
  right: 0;
  top: 0;
  overflow: hidden;
  transition: all ease-out 0.5s !important;
  z-index: 103;
  max-height: 800px;
}
.snMenuItems {
  list-style: none;
  margin: 0px;
  padding: 0;
  position: relative;
  z-index: 103;
}
.snMenuItems li a {
  display: block;
  color: white;
  text-decoration: none;
  width: 100%;
  padding: 20px 0;
}
.snMenuItems li a:hover {
  background: #2d3946;
}

.secondNavButton {
  margin: 0 !important;
  background-color: #19232e;
  width: 100%;
  padding: 20px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  color: #8e949b;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 200;
}

.secondNavButton p {
  margin: 0 20px;
}

.plusButton {
  padding-top: 4px;
  transition: all ease 0.4s;
}
.plusButton .lineOne {
  transform: matrix(0, 1, -1, 0, 0, 6);
}
.buttonOpen .plusButton .lineOne {
  transform: matrix(1, 0, 0, 1, 0, 6);
}
.plusButton .menuLine {
  height: 3px;
  width: 14px;
  margin-top: 3px;
  background-color: #8e949b;
  transition: all ease 0.4s;
}

/* 
----------------------------------------------
12
Responsive Media Queries 
----------------------------------------------
*/

/* 
--------------------------
Media Query:
MAX WIDTH: 450px
--------------------------
*/
@media screen and (max-width: 450px) {
  .locationHeader ul li:first-of-type {
    margin-right: 0%;
  }
  .locationHeader span {
    width: initial;
  }
  .btMap {
    padding: 10px;
  }
}

/* 
--------------------------
Media Query:
MAX WIDTH: 768px
--------------------------
*/
@media screen and (max-width: 768px) {
  /* Set height for mobile */
  #heroBanner,
  .carousel-item,
  .carousel-item img {
    height: 600px;
  }

  #heroBanner button {
    margin-bottom: 20px;
  }
}

/* 
--------------------------
Media Query:
MAX WIDTH: 990px
--------------------------
*/
@media screen and (max-width: 990px) {
  .snMenuItems li a {
    padding: 20px 20px !important;
  }
  .alignEnd {
    align-self: flex-end !important;
  }
}

/* 
--------------------------
Media Query:
MIN WIDTH: 768px AND MAX WIDTH: 1199px
--------------------------
*/
@media screen and (min-width: 768px) and (max-width: 1199px) {
  /* Set height for tablet */
  #heroBanner,
  .carousel-item,
  .carousel-item img {
    height: 700px;
  }
}

/* 
--------------------------
Media Query:
MIN WIDTH: 768px
--------------------------
*/
@media screen and (min-width: 768px) {
  a.anchor {
    top: -160px;
  }
  #whoWeAre a.anchor,
  #location a.anchor {
    top: -140px;
  }
  #heroBanner h2 {
    font-size: 4em !important;
  }
  .carousel-caption {
    padding: 0 1.5em;
  }
  #gallery .flex-column {
    max-width: 390px;
  }
  .btMap {
    padding: 20px;
  }

  .btMapInactive {
    width: 30%;
  }
  .btMapActive {
    width: 40%;
  }
  .btMapActive li,
  .btMapInactive li {
    opacity: 1;
  }

  .mapText {
    font-size: 0.8em;
  }
  a.anchor {
    display: block;
    position: relative;
    top: -220px;
    visibility: hidden;
  }

  .menuItems li a.current {
    border-bottom: 3px solid #ef7a5d;
  }
  .promoText p {
    line-height: 40px !important;
    font-size: 1.5em;
    letter-spacing: 2px;
    padding-left: 20%;
    padding-right: 20%;
  }
  /* nav Desktop */
  .nav {
    height: 118px;
  }

  .menuItemsWrap {
    height: auto !important;
    position: relative;
    top: auto;
  }
  .menuItems {
    height: 70px;
    max-height: 118px;
    position: initial;
    border: none;
    text-align: right;
    transition: none;
  }
  .menuItems li {
    display: inline-block;
  }
  .menuItems li:last-of-type {
    padding: 0px !important;
    margin: 0px;
    right: 40px;
  }
  .menuItems li.contactButton {
    margin-left: 20px;
  }
  .menuItems .button {
    width: 100%;
  }

  /* SecondNav */
  .secondNavWrap {
    position: relative;
    height: initial;
    max-height: initial;
    top: 0;
    transition: none !important;
  }
  .snMenuItems {
    text-align: center;
  }
  .snMenuItems li {
    display: inline-flex;
    padding: 0px !important;
  }
  .snMenuItems li:last-of-type {
    margin-right: 0;
  }
  .snMenuItems li a {
    padding: 20px 40px;

    font-weight: 300;
  }
  .snMenuItems li:first-of-type {
    margin-right: 4%;
    padding-right: 4% !important;
    color: #8e949b;
    padding-right: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 200;
    border-right: solid 1px #8e949b;
  }

  .secondNavWrap {
    height: 64px;
    z-index: 105;
  }
  .snNavStick {
    position: fixed;
    z-index: 103;
    top: 95px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  /* end:NavDesktop */

  /* form */
  .formSelectBtn {
    margin: 0;
  }
  .arrow-down {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #212e62;
    margin: 0 auto 20px auto;
    transition: ease all 0.4s;
  }
  .formSelectBtn:hover + .arrow-down {
    border-top: 10px solid #f04a22;
  }
  .formSelection .arrow-down.inactive {
    display: none;
  }
}

/* 
--------------------------
Media Query:
MIN WIDTH: 1200px
--------------------------
*/
@media screen and (min-width: 1200px) {
  #heroBanner h2 {
    font-size: 5em !important;
  }

  #heroBanner img {
    width: 100%;
    overflow: hidden;
  }

  .carousel-caption {
    padding: 0 2em;
  }

  .carousel-inner {
    max-height: 800px;
  }
  .mapButtonWrap {
    justify-content: left !important;
    display: inline-block;
    top: -450px;
    left: 5%;
    width: 50%;
    padding: 0;
  }
  .btMap {
    max-width: 500px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    font-size: 1em;
    margin: 0;
  }
  .btMap:first-of-type {
    margin-bottom: 20px;
  }

  /* btMap animations @ desktop size */
  .btMapActive {
    width: 100%;
  }
  .btMapActive li,
  .btMapInactive li {
    display: block;
    opacity: 1;
    font-size: 1em;
    line-height: 20px;
  }
  .btMapInactive {
    width: 100%;
  }
  .btMap .ho {
    margin: 0 0 0 15px;
  }
  .btMapInactive .mapText {
    display: flex;
  }
  .btMap .iconMap {
    display: block;
  }
  .btMapInactive .iconMap {
    padding-top: 0px;
    margin: 5px 0 0 15px;
  }
  .btMapActive .iconMap {
    padding-top: 0px;
    margin: 5px 0 0 15px;
  }
  .btMap img {
    width: 20px;
    left: -30px;
  }
  .distroCenter {
    margin-bottom: 20px;
  }
  /* End:btMap Animations */

  .locationHeader {
    position: absolute;
    top: 10%;
    left: 5%;
    max-width: 500px;
    height: 70px;
    background-color: white;
    width: 100%;
    padding: 20px 0px;
    margin: auto;
  }

  .locationHeader .row {
    max-width: 100%;
    margin-left: 5px;
  }

  .locationHeader p {
    font-size: 0.75em;
  }
  /* secondNav */
  .snMenuItems li a {
    padding: 20px 60px;
  }
}

/* 
--------------------------
Media Query:
MIN WIDTH: 1440px
--------------------------
*/
@media screen and (min-width: 1440px) {
  a.anchor {
    top: -230px;
  }
  #whoWeAre a.anchor,
  #location a.anchor {
    top: -170px;
  }
  nav img {
    width: 200px !important;
  }
  .locationHeader {
    left: 10%;
  }
  .mapButtonWrap {
    left: 10%;
  }
  nav img {
    width: 250px !important;
  }
  nav {
    padding: 20px 40px 15px 40px;
  }
  .snNavStick {
    top: 128px;
  }
  .logoPhoneNumber{
    font-size: 0.8rem;
    padding-left: 45px;
  }
}
