body {
  font-size: 18px;
  line-height: 1.4;
  font-family: 'Roboto Condensed';
  color: #000;
}

@media (min-width: 1200px) {
  body {
    font-size: 20px;
  }
}

/* Hide tooltips globally by default */

.tooltip {
  display: none !important;
}

/* Only enable them on devices where hover states actually make sense */

@media (hover: hover) and (pointer: fine) {
  .tooltip {
    display: block !important;
  }
}

.svg-drop-shadow {
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 1));
}

.flip-x {
  transform: scaleX(-1);
}

.hero-border {
  border-bottom: 15px solid #dadbff;
}

.nospam {
  font-size: 15px;
}

p {
  text-align: justify;
  hyphens: auto;
}

body a {
  text-decoration: none;
}

.bg-md-blue {
  background: #0007b0;
}

.bg-dk-blue {
  background: #000576;
}

.text-dk-blue {
  color: #000576;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* Button Styling */

.btn {
  transition: all .3s ease-in-out !important;
  line-height: 1.2;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.btn-responsive {
  --bs-btn-padding-x: 15px;
  --bs-btn-padding-y: 10px;
  --bs-btn-font-size: 22px;
}

@media (min-width: 576px) {
  .btn-responsive {
    --bs-btn-padding-x: 20px;
    --bs-btn-padding-y: 10px;
    --bs-btn-font-size: 22px;
  }
}

@media (min-width: 992px) {
  .btn-responsive {
    --bs-btn-font-size: 26px;
  }
}

.btn-quote {
  font-size: 26px;
  border-radius: 5px;
}

@media (min-width: 576px) {
  .btn-quote {
    font-size: 30px;
  }
}

@media (min-width: 992px) {
  .btn-quote {
    font-size: 36px;
  }
}

.scroll-margin {
  scroll-margin: 175px;
}

@media (min-width: 768px) {
  .scroll-margin {
    scroll-margin: 135px;
  }
}

@media (min-width: 992px) {
  .scroll-margin {
    scroll-margin: 200px;
  }
}

.modal-text {
  font-size: calc(23px + 3.0vw);
  line-height: 1.2;
  color: #000576;
  margin-bottom: 0;
  font-weight: 900;
  width: auto;
}

@media (min-width: 576px) {
  .modal-text {
    font-size: 40px;
  }
}

/* Services Boxes */

.bg-lt-blue {
  background-color: #dae2ff;
}

.box {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  transition: all .5s;
  border-radius: 5px;
}

.box img {
  max-width: 100%;
  transition: all 0.3s;
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
}

.box:hover img {
  transform: scale(1.05);
  transition: all .5s;
}

.box .heading {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,5,118,0.5);
  text-shadow: 1px 1px 0px #000;
  color: #ffffff;
  text-align: center;
}

.services h2 {
  font-size: calc(3px + 3.5vw);
  font-weight: 600;
  margin: 5px 0px 4px 0;
}

@media (min-width: 576px) {
  .services h2 {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .services h2 {
    font-size: 22px;
  }
}

@media (min-width: 1200px) {
  .services h2 {
    font-size: 26px;
  }
}

.services p {
  text-align: justify;
  font-size: 18px;
  padding: 0px 10px;
  hyphens: auto;
}

/* Services list styling */

.list-services {
  line-height: 1.3;
  font-size: 18px;
  column-count: 1;
  width: 220px;
}

@media (min-width: 450px) {
  .list-services {
    column-count: 2;
    column-gap: 40px;
    margin-left: -15px;
    width: auto;
  }
}

@media (min-width: 576px) {
  .list-services {
    column-count: 2;
    column-gap: 70px;
  }
}

@media (min-width: 768px) {
  .list-services {
    column-count: 3;
  }
}

@media (min-width: 992px) {
  .list-services {
    column-gap: 100px;
  }
}

@media (min-width: 1200px) {
  .list-services {
    column-count: 5;
    column-gap: 54px;
    margin-left: 0px;
  }
}

@media (min-width: 1400px) {
  .list-services {
    column-gap: 75px;
    font-size: 19px;
  }
}

.list-services li {
  margin-bottom: 6px;
}

/* Towns list styling */

.list-towns {
  line-height: 1.3;
  font-size: 16px;
  column-count: 2;
  column-gap: Calc(0px + 15vw);
}

@media (min-width: 576px) {
  .list-towns {
    column-count: 3;
    column-gap: 70px;
  }
}

@media (min-width: 768px) {
  .list-towns {
    column-count: 4;
  }
}

@media (min-width: 992px) {
  .list-towns {
    column-count: 5;
    column-gap: 70px;
  }
}

@media (min-width: 1200px) {
  .list-towns {
    column-count: 5;
    column-gap: 100px;
  }
}

.list-towns li {
  margin-bottom: 10px;
}

