* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: #000;
  background-color: #eee;
}

a {
  text-decoration: none;
  color: inherit;
}

a.decoration:hover {
  text-decoration: underline;
}

table.table {
  width: 100%;
  border-collapse: collapse;
}

table.table th {
  border: 1px solid #ddd;
  padding: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #19e0e6;
}

table.table td {
  border: 1px solid #ddd;
  padding: 8px;
}

table.table tr:nth-child(even) {
  background-color: #f2f2f2;
}

table.table tr:hover {
  background-color: #ddd;
}

.container {
  padding: 0 5%;
}

.row {
  margin: 25px 0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.main-button {
  background-color: #19e0e6;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  display: inline-block;
}

.main-button:hover {
  background-color: #09d0d6;
  cursor: pointer;
}

.green-button {
  background-color: #00DD00;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 20px;
}

.green-button:hover {
  background-color: #00BB00;
  cursor: pointer;
}

.red-button {
  background-color: #FF0000;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 20px;
}

.red-button:hover {
  background-color: #DD0000;
  cursor: pointer;
}

.disabled {
  color: #bbb;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clear {
  clear: both;
}

.clickable {
  cursor: pointer;
}

/* Start Image gallery */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.slideshow-slides {
  display: none;
}

.slideshow-slides img {
  width: 100% !important;
  height: auto !important;
  cursor: zoom-in;
}

img.image-gallery {
  width: 100%;
  height: auto;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.img-active, .dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
/* Stop Image gallery */

/* Start Modal */
#fullscreen-image {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#fullscreen-image:hover {
  opacity: 0.7;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  cursor: zoom-out;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.nav-buttons {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  cursor: pointer;
  color: #f1f1f1;
  font-size: 25px;
}

.prev-image {
  width: 49%;
  text-align: left;
  display: inline-block;
}

.next-image {
  width: 50%;
  text-align: right;
  display: inline-block;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}
/* Stop Modal */

/* Start Popup-alert */
.popup-alert {
	position: fixed;
	top: 0;
	right: 0;
	margin: 10px;
	z-index: 9999;
	border-radius: 10px;
  padding: 10px;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
}
/* End Popup-alert */

/* Start Header */
.navbar {
  background-color: #232323;
  color: #fff;
  padding: 10px 5%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.logofont {
  font-size: 30px;
}

.logofont a {
  text-decoration: none;
  color: #fff;
}

.navbar-nav {
  list-style: none;
  display: flex;
  font-size: 16px;
}

.navbar-nav li {
  padding: 10px;
}

.navbar-nav li:hover,
.navbar-nav .active {
  color: #ddd;
  text-decoration: underline;
}

.navbar-toggler {
  background: none;
  color: #fff;
  border: none;
  font-size: 25px;
  cursor: pointer;
  display: none;
}

.navbar-toggler:hover {
  color: #ddd;
}

.navbar-collapse {
  display: block;
}
/* End Header */

/* Start Cover wrapper */
.cover-wrapper {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/cover-small-comp.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  width: 100%;
  color: #fff;
  text-align: center;
}

.cover-content {
  padding: 150px 20px;
}

.cover-title {
  font-size: 60px;
  font-weight: bold;
}

.cover-slogan {
  font-size: 30px;
}
/* End Cover wrapper */

/* Start Module */
.module {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 25px;
  width: 100%;
  box-shadow: 0 2px 4px rgb(0 0 0 / 4%);
}

.module-nobg {
  background-color: transparent;
  margin-bottom: 25px;
  width: 100%;
}

.module-small {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 25px;
  float: left;
  width: 49%;
  box-shadow: 0 2px 4px rgb(0 0 0 / 4%);
}

.module-small:nth-child(even) {
  margin-left: 2%;
}

.module-small .module-body-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: inherit;
}

.module-small .module-cover img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.module-header {
  margin-bottom: 15px;
}

.module-cover {
  margin: 0 -15px;
}

.module-cover img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.module-title {
  font-size: 30px;
  padding: 0 10px;
}

.module-body {
  padding: 0 10px;
  color: #000;
}

.module-body img {
  max-width: 100%;
  height: auto;
}

.module-footer {
  margin-top: 15px;
}

.article-preview {
  color: #676767;
  padding: 0 25px;
}

.article-map iframe {
  width: 100%;
}

.module-body-header {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  font-size: inherit;
}

.module-body-header .infobox {
  color: #000;
}
/* End Module */

/* Start Forms */
.form-group {
  margin-bottom: 20px;
  width: auto;
  font-size: 16px;
}

.form-group label {
  font-weight: bold;
  display: block;
  text-align: left;
}

.form-group-small {
  margin-bottom: 20px;
  width: 49%;
  font-size: 16px;
}

.form-group-small label {
  font-weight: bold;
  display: block;
  text-align: left;
}

.form-input {
  width: 100%;
  padding: 15px;
  border: 1px solid grey;
  border-radius: 5px;
  font-size: inherit;
}
/* End Forms */

/* Start Main wrapper */
.main-wrapper {
  float: left;
  width: 70%;
  padding-right: 20px;
}

.main-wrapper.full-width {
  width: 100%;
  padding-right: 0;
}

.main-wrapper-header,
.main-wrapper-footer {
  text-align: center;
  width: 100%;
}

.main-wrapper-body {
  width: 100%;
}

.main-wrapper-footer {
  margin-bottom: 25px;
}
/* End Main wrapper */

/* Start Sidebar wrapper */
.sidebar-wrapper {
  float: left;
  width: 30%;
  padding-left: 20px;
}

.sidebar-wrapper .module img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
/* End Sidebar wrapper */

/* Start Footer */
.footer {
  background-color: #232323;
  color: #ddd;
  padding: 10px 5%;
  text-align: center;
  font-size: 12px;
}
/* End Footer */

@media (max-width: 1199px) {
  .cover-title {
    font-size: 50px;
  }

  .cover-slogan {
    font-size: 23px;
  }

  .module-body-header {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  /* Start Header */
  .navbar-collapse {
    background-color: rgba(0,0,0,0.8);
    text-align: center;
    border-top: 1px solid #e7e7e7;
    flex-basis: 100%;
    display: none;
    margin: 5px 0;
  }

  .navbar-collapse.show {
    display: block;
  }

  .navbar-nav {
    flex-direction: column;
  }

  .navbar-toggler {
    display: block;
  }
  /* End Header */

  /* Start Cover wrapper */
  .cover-title {
    font-size: 40px;
  }

  .cover-slogan {
    font-size: 18px;
  }
  /* End Cover wrapper */

  /* Start Main wrapper */
  .main-wrapper {
    width: 100%;
    padding: 0;
  }
  /* End Main wrapper */

  /* Start Sidebar wrapper */
  .sidebar-wrapper {
    width: 100%;
    padding: 0;
  }
  /* End Sidebar wrapper */

  /* Start Module */
  .module-body-header {
    font-size: inherit;
  }
  /* End Module */
}

@media (min-width: 767px) {

}

@media (max-width: 767px) {
  /* Start Cover wrapper */
  .cover-title {
    font-size: 30px;
  }
  /* End Cover wrapper */

  /* Start Module */
  .module-title {
    font-size: 25px;
  }

  .module-body {
    font-size: 14px;
  }

  .module-body-header {
    font-size: 14px;
  }

  .module-small {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 25px;
    float: left;
    width: 100%;
    box-shadow: 0 2px 4px rgb(0 0 0 / 4%);
  }

  .module-small:nth-child(even) {
    margin-left: 0;
  }
  /* End Module */
}

@media (max-width: 640px) {
  .module-cover img  {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .module-title {
    font-size: 20px;
  }

  .module-body-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: inherit;
  }

  .form-group-small {
    margin-bottom: 20px;
    width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 480px) {

}

@media (max-width: 360px) {
  .cover-content {
    padding: 20px 20px;
  }
}

@media (max-width: 320px) {

}
