html,
html body {
  font-family: "Cleanvertising", Helvetica, sans-serif;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
p {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

html, html body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}
section {
  position: relative;
  padding: 40px 0;
}
.section-header h2 {
  text-align: center;
  font-size: 36px;
}
.section-header p {
  font-size: 24px;
  text-align: center;
}
#overflow {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  z-index: 500;
}
#overflow-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
}
#overflow-content > div {
  display: none;
  position: relative;
  min-width: 320px;
  max-width: 450px;
  min-height: 200px;
  background: #fff;
}
#overflow-content .close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  width: 15px;
  height: 15px;
  font-size: 15px;
  text-align: center;
  color: #555;
  cursor: pointer;
  transition: all 300ms;
}
#overflow-content .close-button:hover {
  color: #000;
}
.button-overflow {
  cursor: pointer;
}
#recall {
  display: none;
  border: 2px solid #2f89ae;
  border-radius: 10px;
  padding: 48px;
}
#recall .webform-confirmation {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  line-height: 100%;
  color: #2f89ae;
}
#recall .webform-component-textfield input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #555;
  border-radius: 5px;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
}
#recall .webform-component-textfield input.error {
  box-shadow: 0 0 5px 2px red;
}
#recall .form-actions {
  text-align: center;
}
#recall .form-actions input {
  display: inline-block;
  margin: 0 auto -5em auto;
  background: #2f89ae;
  padding: 7px 12px;
  color: #fff;
  border: none;
  border-radius: 5px;
}
#top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 100;
}
#top > .container {
  padding: 30px 0 10px;
}
#top .logo {
  height: 150px;
  text-align: center;
}
#top .logo .img-line {
  display: none;
}
#top .logo .img {
  display: inline-block;
  height: auto;
  width: 100%;
}
@media all and (max-width: 767px) {
  #top .logo .img {
    max-width: 220px;
  }
}
#top .menu {
  height: 100%;
}
#top .menu nav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media all and (max-width: 767px) {
  #top .menu nav {
    flex-wrap: wrap;
  }
}
#top .menu .links {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-top: 30px;
}
@media all and (max-width: 767px) {
  #top .menu .links {
    justify-content: center;
    flex: 0 0 100%;
    margin-top: 0px;
  }
}
#top .menu .links a {
  display: block;
  height: 30px;
  font-weight: 300;
  line-height: 20px;
  color: #fff;
  border: 1px solid transparent;
  transition: all 500ms ease-in;
}
#top .menu .links a:hover, #top .menu .links a.active-menu {
  border: 1px solid #fff;
}
@media all and (max-width: 991px) {
  #top .menu .links a {
    padding: 3px 5px;
  }
}
@media all and (min-width: 992px) {
  #top .menu .links a {
    padding: 3px 15px;
  }
}
#top .menu .contacts {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
}
@media all and (max-width: 767px) {
  #top .menu .contacts {
    justify-content: center;
    flex: 0 0 100%;
    margin-top: 0px;
  }
}
#top .menu .contacts a {
  display: block;
  height: 30px;
  font-weight: 300;
  line-height: 20px;
  color: #fff;
}
@media all and (max-width: 991px) {
  #top .menu .contacts a {
    padding: 3px 0;
  }
}
@media all and (min-width: 992px) {
  #top .menu .contacts a {
    padding: 3px 0;
  }
}
#top .menu .contacts a img {
  width: 20px;
}
#top .menu .contacts .button-overflow {
  font-weight: 300;
  line-height: 20px;
  color: #fff;
  border: 1px solid #fff;
  transition: all 500ms ease-in;
}
@media all and (max-width: 991px) {
  #top .menu .contacts .button-overflow {
    padding: 3px 5px;
  }
}
@media all and (min-width: 992px) {
  #top .menu .contacts .button-overflow {
    padding: 3px 15px;
  }
}
#top .button {
  display: inline-block;
  float: right;
}
#top .button a {
  color: #fff;
  font-weight: bold;
}
#top .button span {
  color: #fff;
  font-size: 0.8em;
  cursor: pointer;
}
#top .button span:hover {
  text-decoration: underline;
}
#top.stick {
  position: fixed;
  background: rgba(0,0,0,0.5);
}
@media all and (max-width: 767px) {
  #top.stick {
    display: none;
  }
}
#top.stick > .container {
  padding: 10px 0;
}
#top.stick .logo {
  height: 40px;
  text-align: center;
}
#top.stick .logo .img {
  display: none;
}
#top.stick .logo .img-line {
  display: inline-block;
  height: auto;
  width: 100%;
}
#top-map {
  height: 800px;
  width: 100%;
  background-color: #2f89ae;
  background-image: url(/assets/images/bg2.jpg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
  box-shadow: 0 0 10px #000;
  z-index: 5;
}
#top-map .slogan {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
}
#top-map .slogan p {
  text-align: center;
  font-size: 2em;
  font-weight: 300;
  color: #ffffff;
}
#experience article {
  text-align: center;
}
@media all and (min-width: 992px) {
  #experience article {
    padding: 50px 0;
  }
}
@media all and (max-width: 991px) {
  #experience article {
    padding: 15px 0;
  }
}
#experience article span {
  display: inline-block;
  color: #2f89ae;
  text-shadow: 3px 3px 3px #999;
}
@media all and (min-width: 992px) {
  #experience article span {
    padding: 30px 0;
    font-size: 120px;
  }
}
@media all and (max-width: 991px) {
  #experience article span {
    padding: 15px 0;
    font-size: 60px;
  }
}
#experience article h3 {
  font-weight: 400;
}
@media all and (min-width: 992px) {
  #experience article h3 {
    font-size: 36px;
  }
}
@media all and (max-width: 991px) {
  #experience article h3 {
    font-size: 14px;
  }
}
#experience article p {
  padding: 0 20%;
}
@media all and (min-width: 992px) {
  #experience article p {
    font-size: 18px;
  }
}
@media all and (max-width: 991px) {
  #experience article p {
    font-size: 12px;
  }
}
.buttons-wrap {
  padding: 0 0 0 15px;
}
.services {
  background: #2f89ae;
  box-shadow: 0 0 10px #000;
  color: #ffffff;
}
.services header {
  margin: 0 0 50px;
}
.services .tab-wrap {
  padding: 20px;
  margin: 0 0 100px;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 0 5px #eee;
  color: #000;
}
.services .service-btn {
  position: relative;
  margin: 0 -1px 15px;
  padding: 8px 5px 8px 15px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 6px 0 0 6px;
  font-size: 16px;
  cursor: pointer;
}
.services .service-btn span {
  border: 1px solid transparent;
  transition: all 300ms ease-out;
}
.services .service-btn.active-tab {
  border-color: #2f89ae;
  border-right: none;
  box-shadow: -3px 0 3px rgba(0,0,0,0.4);
  z-index: 500;
}
.services .service-btn:hover span, .services .service-btn.active-tab span {
  color: #2f89ae;
}
.services .service-desc {
  height: 0;
  padding: 0 15px;
  border-left: 1px solid #2f89ae;
  overflow: hidden;
}
.services .service-desc.active-tab-content {
  height: auto;
}
.services .description-wrap {
  padding: 0;
}
.services .description-wrap h3 {
  margin: 0 0 25px;
  color: #2f89ae;
  font-size: 24px;
  font-weight: 700;
}
.mobile-services-wrap .service-btn {
  margin: 0 0 5px;
  border: 1px solid #2f89ae;
  border-radius: 6px;
}
.mobile-services-wrap .service-btn .tab-open-button {
  display: block;
  text-align: center;
  color: #2f89ae;
}
.mobile-services-wrap .service-btn .tab-content {
  display: none;
  font-size: 14px;
}
.mobile-services-wrap .service-btn .tab-content h3 {
  color: #2f89ae;
}
.mobile-services-wrap .service-btn .tab-content .tab-close-button {
  display: block;
  background: #2f89ae;
  padding: 5px;
  border-radius: 6px;
  text-align: center;
  color: #fff;
}
.clients-wrap .view-content {
  width: 100%;
  padding: 40px 0;
  text-align: center;
}
.clients-wrap a, .clients-wrap span {
  display: inline-block;
  margin: 0 20px 30px;
}
#map-wrap {
  height: 400px;
  padding: 0;
}
#map-wrap .contact-wrap {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 320px;
  background: rgba(255,255,255,0.7);
  padding: 30px;
  overflow-y: scroll;
  z-index: 100;
}
#map {
  width: 100%;
  height: 100%;
}
table {
  width: 100%;
}
table tr td {
  border: 1px solid #000;
  padding: 5px 10px;
}
table tr td p {
  margin: 0;
}
.banner-wrap {
  padding: 10px;
  margin: 15px 15px 15px 0;
  background: #75d7ff;
  border: 1px solid #2F89AE;
  border-radius: 5px;
  text-align: center;
  font-size: 1.2em;
}
 
