* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
}

a.active {
  padding-bottom: 4px;
  border-bottom: 4px solid white;
}

h1, h2, h3, h4, h5, h6 {
  color: #890e31;
}

@media screen and (max-width: 576px) {
  h1 {
    font-size: 1.5rem;
    padding: 1rem 0;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  ul, ol {
    padding: 0 1rem;
  }

  .g-recaptcha {
    transform: scale(0.87);
    transform-origin: 0 0;
  }
}
.languages {
  position: absolute;
  right: 0;
  display: flex;
  align-items: baseline;
  padding: 1rem 1rem 0 1rem;
  justify-content: flex-end;
}
.languages a {
  margin: 0 0.2rem;
}
.languages img {
  width: 30px;
  height: 20px;
}

#sideMenu .side-nav-container .languages {
  justify-content: center;
  left: 50%;
  transform: translate(-50%, 0);
}

#pagination .pagination {
  margin: 2rem 0;
}
#pagination a {
  color: #890e31;
}

.form-container {
  padding: 4%;
  max-width: 600px;
  margin: 0 auto;
  border: 1px dotted grey;
  border-radius: 1rem;
}
.form-container h1 {
  text-align: center;
  margin-bottom: 1rem;
}
.form-container ._form-el {
  text-align: left;
  font-size: 1rem;
  margin: 1rem 0;
}
.form-container ._form-el .rc-anchor-container {
  border-width: thin;
  border-radius: 0.5rem;
  border-color: grey;
}
.form-container ._form-el label {
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.form-container ._form-el input, .form-container ._form-el textarea, .form-container ._form-el select {
  margin-top: 0.5rem;
  border-width: thin;
  border-radius: 0.5rem;
  border-color: grey;
  line-height: 2rem;
  width: 100%;
  transition: 0.5s;
}
.form-container ._form-el input:focus, .form-container ._form-el textarea:focus, .form-container ._form-el select:focus {
  outline: none;
  box-shadow: 3px 3px grey;
  transition: 0.5s;
}
.form-container ._form-el .hasError {
  border: 2px solid red;
}
.form-container ._form-el .error-message {
  color: red;
  font-weight: 700;
}
.form-container ._form-el select {
  padding: 0.8rem 0;
}
.form-container ._form-el #inputCV {
  background-color: transparent;
}
.form-container ._form-el #inputCV.hasError {
  border: none;
}
.form-container ._form-el button {
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  border-width: thin;
  background-color: grey;
}
.form-container ._form-el button:hover {
  cursor: pointer;
}
.form-container ._form-el.cv input {
  background-color: transparent;
}
.form-container ._form-el.cv #cvFile.hasError {
  border: none;
}
.form-container ._checkboxes {
  display: flex;
}
.form-container ._checkboxes .--check {
  margin-right: 0.8rem;
}
.form-container ._checkboxes .--check input:focus {
  box-shadow: none;
}
.form-container #recaptcha iframe {
  border-radius: 0.8rem;
  background-color: grey;
  box-shadow: none;
  border-width: thin;
  border-color: transparent;
}
.form-container #recaptcha-msg {
  visibility: hidden;
}
.form-container #alert-msg {
  font-size: 1rem;
  font-weight: 700;
}
.form-container #alert-msg.success {
  color: green;
}
.form-container #alert-msg.error {
  color: red;
}
.form-container .small-style {
  font-weight: 700;
}

#btn-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background-color: #890e31;
  border-radius: 50%;
  z-index: 5;
  visibility: hidden;
}
#btn-top svg {
  fill: white;
  transition: 0.5s;
}
#btn-top:hover svg {
  fill: lightgrey;
  transition: 0.5s;
}

#burger {
  position: fixed;
  transition-property: background-color;
  transition: 1s;
  animation-delay: 0.5s;
  background-color: #890e31;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 10;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
#burger svg {
  width: 30px;
  height: 30px;
  fill: white;
  transition-property: fill;
  transition: 0.5s;
  margin: 9px 10px;
}
#burger:hover svg {
  fill: lightgrey;
  transition: 0.5s;
  cursor: pointer;
}
@media screen and (min-width: 991px) {
  #burger {
    display: none;
  }
}

#slider .slide {
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#slider .slide h2 {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 567px) {
  #slider .slide h2 {
    font-size: 1.3rem;
  }
}

#navMenu .accessibility svg {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
#navMenu .accessibility svg circle {
  transition: 0.5s;
}
#navMenu .accessibility svg path {
  fill: #890e31;
}
#navMenu .accessibility svg:hover {
  cursor: pointer;
}
#navMenu .accessibility svg:hover circle {
  fill: lightgrey;
  transition: 0.5s;
}

#sideMenu .accessibility svg {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
#sideMenu .accessibility svg circle {
  transition: 0.5s;
}
#sideMenu .accessibility svg path {
  fill: #890e31;
}
#sideMenu .accessibility svg:hover {
  cursor: pointer;
}
#sideMenu .accessibility svg:hover circle {
  fill: lightgrey;
  transition: 0.5s;
}

#header .banner {
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 576px) {
  #header .banner {
    height: 300px;
  }
}

.main-container .header {
  background-color: #890e31;
}

@media screen and (max-width: 992px) {
  #navMenu .languages {
    display: none;
  }
}
#navMenu .main-nav .logo {
  padding: 1rem;
  max-width: 200px;
}
#navMenu .main-nav .logo svg {
  fill: white;
  stroke: white;
  stroke-miterlimit: 10;
  stroke-width: 5px;
}
#navMenu .main-nav ul.first-ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding-bottom: 1rem;
  justify-content: center;
}
#navMenu .main-nav ul.first-ul li {
  padding: 1rem 0;
  margin: 0 1rem;
}
#navMenu .main-nav ul.first-ul li a {
  color: white;
  font-size: 1.1rem;
  transition: 0.5s;
}
#navMenu .main-nav ul.first-ul li a:hover {
  color: lightgrey;
  transition: 0.5s;
  text-decoration: none;
}
#navMenu .main-nav ul.first-ul li a.dropdown-item {
  font-size: 0.9rem;
}
#navMenu .main-nav ul.first-ul li a.dropdown-item:hover {
  color: #890e31;
}
#navMenu .main-nav ul.first-ul li a.dropdown-item.active {
  background-color: #b71342;
  border: none;
}
#navMenu .main-nav .dropdown-menu {
  background-color: #890e31;
  border: 1px solid white;
}
@media screen and (max-width: 992px) {
  #navMenu {
    display: none;
  }
}

#sideMenu {
  overflow: hidden;
}
#sideMenu .side-nav-container {
  width: 100%;
  height: 100vh;
  overflow-y: hidden;
  background-color: #890e31;
  position: fixed;
  top: 0;
  left: -100%;
  transition-property: left;
  transition: 1s;
  z-index: 8;
}
#sideMenu .side-nav-container .logo {
  max-width: 150px;
  margin: 1.5rem auto 1rem auto;
}
#sideMenu .side-nav-container .logo svg path {
  stroke: white;
  stroke-width: 5px;
}
#sideMenu .side-nav-container #accordion2 {
  margin: 2rem;
}
#sideMenu .side-nav-container #accordion2 .card, #sideMenu .side-nav-container #accordion2 .card-header {
  background-color: #890e31;
  border: 0;
  text-align: center;
  padding: 0.5rem 0;
}
#sideMenu .side-nav-container #accordion2 .card a, #sideMenu .side-nav-container #accordion2 .card-header a {
  color: white;
  text-decoration: none;
}
#sideMenu .side-nav-container #accordion2 .card a:hover, #sideMenu .side-nav-container #accordion2 .card-header a:hover {
  text-decoration: none;
  border-bottom: 4px solid #b71342;
}
#sideMenu .side-nav-container.show {
  left: 0;
  transition: 1s;
}

#footer {
  background-color: #890e31;
  color: white;
  padding: 2rem 0;
  text-align: center;
}
#footer .logo {
  max-width: 150px;
  margin: auto;
}
#footer .logo svg {
  fill: white;
  stroke: white;
  stroke-miterlimit: 10;
  stroke-width: 5px;
}
#footer a {
  color: white;
  font-size: 1.1rem;
  transition: 0.5s;
}
#footer a:hover {
  color: lightgrey;
  transition: 0.5s;
  text-decoration: none;
}
#footer .wai-aaa {
  bottom: 1rem;
  display: none;
}

#sampleList ul.category {
  justify-content: center;
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}
#sampleList ul.category li {
  margin: 0 1rem;
}
#sampleList .list_items {
  display: block;
}
#sampleList .list_items .item {
  display: flex;
  padding: 1rem 0;
  border-bottom: 2px solid #890e31;
}
#sampleList .list_items .item .image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100px;
  height: 100px;
}
#sampleList .list_items .item .text {
  padding: 1rem;
  align-self: center;
}
#sampleList .list_items .item .text h5 a {
  color: #890e31;
}

#singleListItem .img-fluid {
  float: left;
  margin: 0 1rem 1rem 0;
}
@media screen and (min-width: 576px) {
  #singleListItem .img-fluid {
    max-width: 350px;
  }
}
#singleListItem ul, #singleListItem ol {
  padding-left: 1rem;
}
#singleListItem .btn-back {
  background-color: transparent;
  color: #890e31;
  text-decoration: underline;
  border: none;
  margin-bottom: 2rem;
}
#singleListItem .btn-back:hover {
  font-style: italic;
}

#home .cell-item:hover a.menu-title {
  background-color: lightgrey;
  transition: 0.5s;
  text-decoration: none;
  cursor: pointer;
}
#home a.menu-title {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  color: #890e31;
  text-align: center;
  transition: 0.5s;
}
#home a.menu-title:hover {
  background-color: lightgrey;
  transition: 0.5s;
  text-decoration: none;
  cursor: pointer;
}
#home .item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 200px;
}
#home .spacer {
  background-color: lightgrey;
}

#gallery #lightgallery {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#gallery .photo {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 200px;
  height: 200px;
  margin: 1rem;
  transition: 0.3s;
}
#gallery .photo:hover {
  transition: 0.3s;
  border: 5px solid #890e31;
  cursor: pointer;
}

#partners .partners {
  justify-content: center;
}
#partners .partners .item {
  margin: 1rem;
  height: 200px;
  width: 200px;
  border: 1px solid grey;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-size: contain;
}

#clients .clients {
  justify-content: center;
}
#clients .clients .item {
  margin: 1rem;
  height: 200px;
  width: 200px;
  border: 1px solid grey;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-size: contain;
}

#onlineServices .btn.btn-link {
  color: #890e31;
}

#apartments .apartment {
  margin: auto;
  max-width: 200px;
}
#apartments .apartment a:hover {
  text-decoration: none;
}
#apartments .photo {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 200px;
  height: 200px;
  border: 3px solid #890e31;
  border-radius: 8px;
  transition: 0.5s;
}
#apartments .photo:hover {
  border-color: #b71342;
  transition: 0.5s;
  transform: scale(1.1);
}

.map-container {
  width: 100%;
  height: 100%;
}
.map-container #map {
  height: 400px;
}

#accessibility .panel .colors {
  display: block;
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0;
  border-radius: 8px;
}
#accessibility .panel .colors:hover {
  text-decoration: none;
}
#accessibility .panel .colors .purple {
  background-color: #413b62;
  color: lightgrey;
  transition: 0.5s;
}
#accessibility .panel .colors .purple:hover {
  background-color: #615892;
  transition: 0.5s;
}
#accessibility .panel .colors .yellow {
  background-color: #fff000;
  color: #336633;
  transition: 0.5s;
}
#accessibility .panel .colors .yellow:hover {
  background-color: #b3a800;
  transition: 0.5s;
}
#accessibility .panel .colors .blue {
  background-color: #09173e;
  color: white;
  transition: 0.5s;
}
#accessibility .panel .colors .blue:hover {
  background-color: #133081;
  transition: 0.5s;
}
#accessibility .accessibility svg {
  height: 50px;
  width: 50px;
}
#accessibility .logo {
  padding: 1rem;
  width: 100%;
}
#accessibility .logo svg {
  max-width: 200px;
}
#accessibility .logo svg path {
  stroke: black;
  stroke-width: 5px;
}

/*# sourceMappingURL=main.css.map */
