﻿.announcement-bar {
  width: 100%;
  background-color: var(--announcement-bar-bg-color);
  font-family: Oswald, sans-serif;
  color: var(--announcement-bar-color);
  font-size: 18px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5px;
}
.announcement-bar > div {
  margin-left: 10px;
  margin-right: 10px;
}
.announcement-bar > div > a:link {
  color: var(--announcement-bar-color);
  text-decoration: none;
}
.announcement-bar > div > a:hover {
  color: var(--announcement-bar-color);
  text-decoration: underline;
}
.announcement-bar > div a:visited {
  color: var(--announcement-bar-color);
  text-decoration: none;
}
.announcement-bar > div a:active {
  color: var(--announcement-bar-color);
  text-decoration: none;
}
.footer-row {
  background-color: var(--footer-bg-color);
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer-row .details {
  padding: 20px;
  margin-top: 25px;
  background-color: var(--footer-detail-bg-color);
  color: var(--footer-detail-text-color);
  border-radius: 8px;
  max-width: 1200px;
}
.footer-row .details a {
  color: var(--footer-detail-text-color);
}
.blueTitleBar {
  padding: 5px 5px;
  text-align: center;
  background-color: var(--title-bar-bg-color);
  border-radius: 9px;
  font-size: 1.5em;
  font-family: Oswald;
  color: var(--title-bar-text-color);
  -webkit-box-shadow: 2px 5px 4px 0 #898992;
  box-shadow: 2px 5px 4px 0 var(--title-bar-shadow-color);
  border: thin solid var(--title-bar-border-color);
}
.nav-fostrap {
  display: block;
  margin: 0;
  background: var(--menu-bar-bg-color);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  border-radius: 3px;
  z-index: 999;
  position: relative;
}
.nav-fostrap .menu-trigger {
  padding: 15px 20px;
  display: block;
  cursor: pointer;
  color: #def1f0;
  font-size: 12px;
  font-weight: 400;
}
.nav-fostrap .menu-trigger a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.nav-fostrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.nav-fostrap ul li {
  list-style: none;
  display: inline-block;
  position: relative;
}
.nav-fostrap ul li:hover {
  background: var(--menu-bar-highlight-bg-color);
}
.nav-fostrap ul li:hover > .menu-trigger {
  color: var(--menu-bar-highlight-text-color) !important;
}
.nav-fostrap ul li:hover > .menu-trigger .arrow-down {
  border-top: 5px solid #fff;
}
.nav-fostrap ul li:hover > ul.dropdown {
  display: block;
}
.nav-fostrap ul li:hover > ul.dropdown.full-width {
  display: flex;
}
.nav-fostrap ul.dropdown {
  position: absolute;
  display: none;
  width: 200px;
  background: var(--menu-bar-highlight-bg-color);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  z-index: 1000;
}
.nav-fostrap ul.dropdown.full-width {
  position: fixed;
  display: none;
  left: 0;
  right: 0;
  width: 100vw;
  padding: 20px;
  flex-wrap: wrap;
  background: var(--menu-bar-highlight-bg-color);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  z-index: 1000;
}
.nav-fostrap ul.dropdown.full-width li {
  display: block;
  width: 200px;
  max-width: 200px;
}
.nav-fostrap ul.dropdown li {
  display: block;
  width: 100%;
}
.nav-fostrap ul.dropdown li a {
  display: block;
  padding: 15px 20px;
  color: var(--menu-bar-highlight-text-color) !important;
  text-decoration: none;
}
.nav-fostrap ul.dropdown li a:hover {
  background: var(--menu-bar-dropdown-item-hover-bg-color);
}
.arrow-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #def1f0;
  position: relative;
  top: 10px;
  right: -5px;
  content: '';
}
.title-mobile {
  display: none;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
.nav-bg-fostrap {
  z-index: 1000;
}
.onlineQuoteBarTopDiv {
  background-color: var(--quote-bar-bg-color);
  text-align: center;
  color: white;
  padding: 5px;
  margin-top: 0;
}
.onlineQuoteBarTopDiv .free-quote-online {
  margin: 10px;
}
.onlineQuoteBarTopDiv .jsm {
  color: white;
}
.onlineQuoteBarTopDiv .relax-and-rest {
  margin: 10px;
}
@media only screen and (max-width: 768px) {
  .nav-fostrap {
    background: #fff;
    width: 200px;
    height: 100%;
    display: block;
    position: fixed;
    left: -200px;
    top: 0px;
    -webkit-transition: left 0.25s ease;
    -moz-transition: left 0.25s ease;
    -ms-transition: left 0.25s ease;
    -o-transition: left 0.25s ease;
    transition: left 0.25s ease;
    margin: 0;
    border: 0;
    border-radius: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nav-fostrap ul {
    padding-top: 50px;
  }
  .nav-fostrap ul li a {
    color: black;
  }
  .nav-fostrap li {
    display: block;
    z-index: 1000;
  }
  .nav-fostrap li a {
    display: block;
    color: #505050;
    font-weight: 600;
  }
  .nav-fostrap li:first-child:hover a {
    border-radius: 0;
  }
  .nav-fostrap li ul.dropdown {
    position: relative;
    z-index: 1000;
  }
  .nav-fostrap li ul.dropdown li a {
    background: #fff !important;
    border-bottom: none;
    color: var(--menu-bar-bg-color) !important;
    padding: 10px 10px 10px 30px;
  }
  .nav-fostrap li ul.dropdown li:hover a {
    background: rgba(0, 0, 0, 0.1) !important;
    color: var(--menu-bar-text-color) !important;
  }
  .nav-fostrap li:hover a {
    background: #03A9F4;
    color: var(--menu-bar-text-color) !important;
  }
  .nav-fostrap li:hover .arrow-down {
    border-top: 5px solid var(--menu-bar-text-color);
  }
  .title-mobile {
    position: fixed;
    display: block;
    top: 10px;
    font-size: 20px;
    left: 100px;
    right: 100px;
    text-align: center;
    color: var(--menu-bar-text-color);
  }
  .nav-fostrap.visible {
    left: 0px;
    -webkit-transition: left 0.25s ease;
    -moz-transition: left 0.25s ease;
    -ms-transition: left 0.25s ease;
    -o-transition: left 0.25s ease;
    transition: left 0.25s ease;
  }
  .nav-bg-fostrap {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    height: 50px;
    margin: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    background: var(--menu-bar-bg-color);
    padding: 12px 0 0 10px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    -ms-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    -o-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  }
  .navbar-fostrap {
    display: inline-block;
    vertical-align: middle;
    height: 50px;
    cursor: pointer;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    padding: 12px;
  }
  .navbar-fostrap span {
    height: 2px;
    background: var(--menu-bar-text-color);
    margin: 5px;
    display: block;
    width: 20px;
  }
  .navbar-fostrap span:nth-child(2) {
    width: 20px;
  }
  .navbar-fostrap span:nth-child(3) {
    width: 20px;
  }
  .arrow-down {
    border-top: 5px solid #505050;
    position: absolute;
    top: 20px;
    right: 10px;
  }
  .cover-bg {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.blue-section {
  margin-top: 25px;
  margin-bottom: -100px;
  background-color: var(--home-page-service-grid-bg-color);
  color: var(--home-page-service-grid-text-color);
  transform: skewY(-3deg);
}
.blue-section .contents {
  transform: skewY(3deg);
}
.blue-section .contents .view-all-button {
  margin: 25px 0 20px 0;
}
.blue-section .div-block {
  padding-right: 10px;
  padding-bottom: 30px;
  padding-left: 10px;
  border-radius: 5px;
  height: 450px;
  max-width: 310px;
  background-color: var(--home-page-service-grid-card-bg-color);
  color: var(--home-page-service-grid-card-text-color);
  margin-bottom: 10px;
}
.blue-section .div-block .card-inner {
  height: 410px;
}
.blue-section .div-block .card-inner img {
  margin-top: 10px;
  width: 100%;
  max-width: 290px;
  height: 100%;
  max-height: 145px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: 1px solid #888;
}
.blue-section .div-block a {
  width: 100%;
}