.topBar {
  background-color: #56250d;
  padding: 10px;
}

.topBar .getQuote {
  background-image: -webkit-gradient(linear, left top, right top, from(#142a51), to(#56250d));
  background-image: linear-gradient(90deg, #142a51, #56250d);
  color: #fff;
  border-radius: 20px;
}

.topBar .phoneIcon {
  color: rgba(255, 255, 255, 0.95);
}

.topBar .contactLink {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  display: inline-block;
}

.topBar .contactLink:not(:last-child) {
  margin-right: 15px;
}

.topBar .contactLink:hover {
  text-decoration: none;
}

.topBar .social {
  display: inline-block;
}

.topBar .social a {
  margin-right: 5px;
  display: inline-block;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  border: 1px solid #fff;
  font-size: 13px;
  text-align: center;
  padding: 1px 0;
}

header nav {
  background-color: #fff;
}

header .navbar-dark .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  padding: 4px 14px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
}

header .navbar-dark .navbar-nav .nav-link:hover, header .navbar-dark .navbar-nav .nav-link:focus {
  color: #000;
}

header .navbar-dark .navbar-nav .nav-item.active .nav-link {
  background-color: #56250d;
  color: #fff !important;
}

@media screen and (max-width: 991px) {
  header .navbar-dark .navbar-nav .nav-item.active .nav-link {
    background-color: #56250d;
    color: #fff !important;
    border-radius: 0;
  }
}

header .navbar-dark .navbar-nav .nav-item:not(:last-child) {
  margin-right: 35px;
}

header .navShadow {
  display: none;
}

header .navMenu {
  position: relative;
}

header .navMenu > a::after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-left: 10px;
  font-size: 18px;
}

header .navMenu .menu {
  display: none;
  position: absolute;
  top: calc(100%);
  z-index: 99;
}

header .navMenu .menu ul {
  margin-top: 15px;
  list-style: none;
  background-color: #fff;
  padding: 10px;
  min-width: 300px;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}

header .navMenu .menu li a {
  display: block;
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: 500;
}

header .navMenu .menu li a:hover {
  color: #56250d;
}

@media screen and (min-width: 992px) {
  header .navMenu:hover .menu {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  header .navMenu {
    position: relative;
  }
  header .navMenu .menu {
    position: static;
  }
  header .navMenu .menu ul {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  header .navMenu > a::after {
    position: absolute;
    right: 15px;
    content: "\f067";
    font-weight: 400;
  }
  header .navMenu.active > a::after {
    content: "\f068";
  }
  header .navMenu.active .menu {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  header .navShadow {
    display: block;
  }
  header .navShadow::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 9998;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  header .navbar-nav-cont.open .navShadow::before {
    right: 0;
  }
  header .navbar-nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    background: #fff;
    height: 100%;
    z-index: 9999;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  header .navbar-nav .nav-item {
    margin-right: 0 !important;
  }
  header .navbar-nav .nav-item .nav-link {
    color: #222 !important;
    padding: 10px 15px !important;
    border-bottom: 1px solid #ccc;
  }
  header .navbar-nav .closeToggleNav + .nav-item .nav-link {
    border-top: 1px solid #ccc;
  }
  header .navbar-nav-cont.open .navbar-nav {
    left: 0;
  }
}

.navbar-brand img {
  width: 130px;
}

.closeToggleNav {
  text-align: right;
}

.closeToggleNav i {
  padding: 8px 16px;
  color: #333;
  font-size: 30px;
}

@media screen and (min-width: 992px) {
  .closeToggleNav {
    display: none;
  }
}

#toggleNav {
  display: inline-block;
  width: 45px;
  height: 35px;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 20px;
}

@media screen and (min-width: 992px) {
  #toggleNav {
    display: none;
  }
}

#toggleNav span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #232c4e;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#toggleNav span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

#toggleNav span:nth-child(2) {
  top: 15px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

#toggleNav span:nth-child(3) {
  top: 29px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

#toggleNav.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
  left: 8px;
}

#toggleNav.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#toggleNav.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 34px;
  left: 8px;
}
/*# sourceMappingURL=navbar.css.map */