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

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

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;
}

.homepg-but {
  font-size: 26px;
  border-radius: 5px;
}

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

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

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

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

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

/* Services */

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

.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;
  padding: 10px 0 0 0;
}

.services {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .services {
    margin-bottom: 30px;
  }
}

.services h2 {
  font-size: 22px;
  font-weight: 600;
}

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

@media (min-width: 992px) {
  .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;
}

/* Carousels */

.carousel-item > img {
  object-fit: contain;
  object-position: center;
  max-height: 630px;
  overflow: hidden;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  margin-top: -12px;
  margin-right: 2px;
  margin-left: 2px;
}

.carousel-indicators {
  position: relative;
  right: 0;
  bottom: -12px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 10px;
  margin-bottom: 0px;
  margin-left: 10px;
  list-style: none;
}

.carousel-control-next-icon {
  background-image: url("../../assets/img/right-arrow.svg");
}

.carousel-control-prev-icon {
  background-image: url("../../assets/img/left-arrow.svg");
}

.carousel-control-next:focus, carousel-control-prev:focus {
  opacity: .4;
}

.carousel-control-next, .carousel-control-prev {
  bottom: 16px;
  opacity: 0.4;
}

.carousel-control-next:hover, .carousel-control-prev:hover {
  bottom: 16px;
  opacity: 1;
}

.carousel-control-prev {
  justify-content: start;
}

.carousel-control-next {
  justify-content: end;
}

@media (min-width: 1200px) {
  .carousel-control-next, .carousel-control-prev {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .carousel-control-next-icon, .carousel-control-prev-icon {
    width: 50px;
    height: 50px;
  }
}

#towns h3 {
  font-size: 18px;
}

@media (min-width: 768px) {
  #towns h3 {
    font-size: 20px;
  }
}

