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

/* Top navigation*/
nav {
  position: fixed;
  width: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  color: #fff;
  background-color: #373E3D;
  box-shadow: 0px 0px 9px 2px rgb(0 0 0 / 51%);
  z-index: 100;
  transition: 0.3s ease-in-out;
}

nav ul {
  display: flex;
  font-size: 1.1rem;
  gap: 0.5em;
  flex-wrap: wrap;
}

nav ul a {
  color: #fff;
  text-decoration: none;
}

.navbtn:hover {
  background-color: #4e5453;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

nav ul li a::after {
  content: "";
  display: block;
  margin: auto;
  height: 3px;
  width: 0;
  top: 5px;
  background: transparent;
  transition: all 0.3s;
  border-radius: 5px;
}

nav ul li a.active {
  font-weight: bold;
}

nav ul li a:hover::after, nav ul li a.active-nav::after {
  width: 100%;
  background: #B8AB1C;
}

nav ul li, .navbtn {
  padding: 0.5rem 1rem;
  list-style: none;
  transition: 0.3s ease-in-out;
}

nav .icon {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  font-size: 1.2rem;
  text-decoration: none;
  color: #fff;
}
nav a:hover{
  text-decoration: none;
}
/* end of navigation*/

.tpadding {
  padding-top: 5.1rem;
}

.jumbotron {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.icon img{
  height: 45px;
}

.toggler, .hfix {
  display: none;
}
.hfix {
  pointer-events: none;
}

.toggler span {
  display: block;
  width: 33px;
  height: 4px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;
}

.toggler span:first-child {
  transform-origin: 0% 0%;
}

.toggler span:nth-last-child(2){
  transform-origin: 0% 100%;
}

#menutoggle {
  display: none;
}

.container {
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.mt-1 {
  margin-top: 1rem !important;
}
.mr {
  margin-right: 0.4rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-row * {
  margin-right: 1rem;
}
.flex-row:last-child {
  margin-left: 0;
}

.grid-cards {
  display: grid;
  column-gap: 0.7rem;
  row-gap: 0.7rem;
}

.grid-cards .long {
  grid-column: auto / span 2;
}

.card {
  padding: 1rem;
  background-color: #BDD4DF;
  border-radius: 10px;
  transition: 0.1s ease-in-out;
  /* box-shadow: 1px 1px 12px -6px #000; */
}

.card img {
  max-width: 100%;
}

.card:hover {
  box-shadow: 0px 0px 7px -2px rgba(0,0,0,0.75);
}
.card.nohover:hover {
  box-shadow: none;
}
.card.nobg {
  background-color: initial;
}

.card .card-footer {

}
.card .card-content {
  flex-grow: 1;
}
.card.decent {
  background-color: #ccbddf14;
}

.card.flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.muted {
  font-size: 0.9em;
  color: #5a5a5a;
}

a{
  color: #2f51ff;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

.action {
  border: none;
  text-decoration: none;
  padding: 0.75rem 1.2rem 0.75rem 1.2rem;
  font-size: 1.3rem;
  border-radius: 10px;
  margin: 0.4rem;
  display: inline-block;
  background-color: #3f51b5;
  color: #fff;
  box-shadow: 1px 1px 12px -6px #000;
  cursor: pointer;
}

.action:hover {
  background-color: #5478bf;
  transition: 0.2s ease-in-out;
  text-decoration: none;
}

.action.small{
  padding: 0.3rem 0.8rem 0.3rem 0.8rem;
}
.galerie {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  justify-items: stretch;
  align-items: center;
}
.galerie img {
  max-width: 100%;
  cursor: pointer;
}
.galerie img:hover {
  opacity: 0.7;
  transition: 0.2s ease-in;
}
.main-text {
  display: grid;
  grid-template-areas: 
    "t t t i";
  align-items: start;
}

.main-text article {
  /*grid-area: t;*/
}

.main-text .infobox {
  grid-area: i;
  margin-left: 2rem;
  padding: 1rem;
  background-color: #BDD4DF;
  border-radius: 5px;
}

.big {
  font-size: 2.3rem;
}

.minor {
  margin-left: 0.4rem;
  font-size: 1.3rem
}

.text-white {
  color: white;
}
.fwrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  grid-gap: 0.5rem;
  align-items: center;
}

footer {
  background-color: #4c5a51;
  padding: 2rem;
  color: #ffffff;
}
.social a {
  padding: 1rem;
  font-size: 2rem;
  width: 4rem;
  height: 4rem;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}
.social a:hover{
  opacity: 0.7;
}

.social .fa-facebook {
  background: #3B5998;
  color: white;
}

.social .fa-twitter {
  background: #55ACEE;
  color: white;
}

.social .fa-youtube {
  background: #bb0000;
  color: white;
}

.social .fa-instagram {
  background: #ea4c89;
  color: white;
}

footer a {
  color: #00c3ff;
}

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

.headimg {
  width: 100%;
}

.priceinfo {

}
.price {
  font-size: 1.4rem;
  font-weight: bold;
}

.currency {
  margin-left: 0.3rem;
}

hr {
  display: block;
  margin: auto;
  height: 5px;
  width: 100%;
  border: none;
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, #ffc107 50%, rgba(0,0,0,0) 100%);
}
.map-cont{
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 2fr 1fr;
}
.map-cont iframe {
  width: 100%;
}
address {
  font-style: normal;
}