body {
  font-family: "Didactic Medium", sans-serif;
  overflow-x: hidden;
}

.navbar-brand {
  position: absolute;
  left: 25px;
}

.navbar {
  background-color: #1d2634;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  min-height: 10vh;
  box-shadow: 1px 1px 15px 1px #000000;
}

.nav-link {
  text-decoration: none;
}
.nav-link:hover {
  color: #ffffff;
}
.nav-link::before {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  top: 25px;
  left: 0;
  background-color: #ffffff;
  transform-origin: top left;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover::before {
  transform: scaleX(1);
}

.constImage {
  position: relative;
  box-sizing: border-box;
  display: block;
  padding: 0px;
  margin-bottom: 50px;
  height: 50vh;
  width: 100%;
  object-fit: cover;
  object-position: 0% 20%;
}

.textContainer {
  padding: 80px 180px 80px 180px; /* top right bottom left */
  text-align: center;
}

.contentContainer {
  font-size: 1.5em;
  margin-bottom: 5vh;
}

.boldText {
  font-family: "Raleway", sans-serif;
  font-size: 2em;
  font-weight: 500;
}

.offerCard {
  display: flex;
  justify-content: center;
  gap: 5vw;
  padding: 20px;
  background-color: rgba(128, 128, 128, 0.377);
  border-radius: 0.5%;
}

.carousel-inner {
    object-fit: cover;
    object-position: 0% 50%;
    max-height: 20vh;
}

.card-text {
  text-align: left;
}

.showMap {
  margin-left: 2vw;
  padding-left: 5vw;
  padding-right: 5vw;
}

table {
  margin: 40px;
  margin-right: 5vw;
}

.tableHead {
  color: #000000;
  font-weight: bold;
}

th {
  font-weight: lighter;
  color: #0000007e;
}

td {
  font-weight: normal;
}

.hrefLink {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.795);
}
.hrefLink:hover {
  color: white;
  text-decoration: underline;
}

.footer {
  background: #1D2634;
  color: white;
  position: static;
  left: 0;
  bottom: 0;
  width: 100%;
}
.footer .links ul {
  list-style-type: none;
}
.footer .links li a {
  color: white;
  transition: color 0.2s;
}
.footer .links li a:hover {
  text-decoration: none;
  color: #4180cb;
}
.footer .about-company i {
  font-size: 25px;
}
.footer .about-company a {
  color: white;
  transition: color 0.2s;
}
.footer .about-company a:hover {
  color: #4180cb;
}
.footer .location i {
  font-size: 18px;
  color: white;
}
.footer .copyright p {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Monitor */
@media screen and (min-width: 1921px)  {
  body {zoom: 125%;}
  .constImage {max-height: 60vh;}
}
/* Desktop */
@media screen and (min-width: 993px) and (max-width: 1920px) {
  .navbar-brand {
    position: relative;
    left: 15px;
  }
.constImage {
  top: 10vh;
  height: 20vh;
  margin-bottom: 2em;
}
.textContainer {
  font-size: 42px;
  padding: 80px 40px 10px 40px; /* top right bottom left */
}
.boldText {
  font-size: 2em;
}
.contentContainer {
  font-size: 0.4em;
  margin-bottom: 30px;
}
.offerCard {
  font-size: 14px;
  padding: 20px;
  padding-right: 50px;
}
.carousel-inner {
  object-fit: cover;
  max-height: 30vh;
}
.btn {
  height: 35px;
  margin-bottom: 5px;
  width: 100%;
}
table {
  font-size: 14px;
  margin-right: 0px;
  margin-left: 20px;
}
}
/* Tablet */
@media screen and (min-width: 768px) and (max-width: 992px) {
  .navbar-brand {
    position: relative;
    left: 15px;
  }
.constImage {
  top: 10vh;
  height: 20vh;
  margin-bottom: 2em;
}
.textContainer {
  font-size: 42px;
  padding: 80px 40px 10px 40px; /* top right bottom left */
}
.boldText {
  font-size: 2em;
}
.contentContainer {
  font-size: 0.4em;
  margin-bottom: 30px;
}
.offerCard {
  font-size: 12px;
  padding: 20px;
  padding-right: 60px;
}
.carousel-inner {
  object-fit: cover;
  max-height: 17vh;
}
.btn {
  height: 35px;
  margin-bottom: 2px;
  width: 100%;
}
table {
  font-size: 12px;
  margin-right: 0px;
  margin-left: 20px;
}
}


/* Handy */
@media screen and (max-width: 767px) {
  .navbar-brand {
    position: relative;
    left: 15px;
  }
.constImage {
  top: 10vh;
  height: 20vh;
  margin-bottom: 1em;
}
.textContainer {
  font-size: 42px;
  padding: 80px 10px 10px 10px; /* top right bottom left */
}
.boldText {
  font-size: 2em;
}
.contentContainer {
  font-size: 0.4em;
  margin-bottom: 30px;
}
.offerCard {
  font-size: 12px;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.carousel-inner {
  object-fit: cover;
}
.card {
  width: 20rem !important;
}
.btn {
  height: 35px;
  margin-bottom: 2px;
  width: 100%;
}
table {
  font-size: 12px;
  margin-right: 0px;
  margin-left: 0px;
}
}