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

body{
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: roboto, sans-serif;
  padding-top: 100px;
}

main{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}




/*nav bar styles*/
#mainNav {
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  position: fixed;
  width: 100%;
  top: 0;
  background: #eee;
  transition: background 0.4s;
  text-transform: uppercase;
  z-index: 3;
}

#mainNav.is-sticky {
  background: #333;
}

#mainNav.is-sticky a {
  color:#eee;
}

#mainNav.is-sticky .logo img {
  width:64px;
  transform: rotate(90deg);
}

#mainNav .logo img {
  height: 84px;
  margin: 5px;
  transition: height 0.4s;
}

#mainNav ul {
  list-style: none;
  display: flex;
  align-items: center;
  width: 400px;
  justify-content: space-around;
}
#mainNav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.4s;
}


/*title styles*/
.container{
  text-align: center;
  height: 120px;
}

.container span{
  text-transform: uppercase;
  display: block;
}

.text1{
  color: white;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 8px;
  margin-bottom: 20px;
  background: black;
  position: relative;
  animation: title 3s 1;
}

.text2{
  font-size: 30px;
  color: #9d2933;
}

@keyframes title {
  0%{
    color: black;
    margin-bottom: -40px;
  }
  30%{
    letter-spacing: 25px;
    margin-bottom: -40px;
  }
  85%{
    letter-spacing: 8px;
    margin-bottom: -40px;
  }
}


/*spinner styles*/
#app {
  /*transform: translate(-50%, -50%);*/
  width: 400px;
  height: 400px;
  /*position: absolute;*/
  /*left: 50%;*/
  /*top: 54%;*/
}

.marker {
  position: relative;
  width: 60px;
  left: 172px;
  top: 40px;
  z-index: 2;
}

.wheel {
  width: 100%;
  height: 100%;
}

.button {
  display: block;
  width: 250px;
  margin: 40px auto;
  cursor: pointer;
}

.button:hover {
  opacity: 0.8;
}

.blur {
  animation: blur 5s;
}

@keyframes blur {
  0% {
    filter: blur(1.5px);
  }
  80% {
    filter: blur(1.5px);
  }
  100% {
    filter: blur(0px);
  }
}

/*modal styles*/
.modal{
  background: white;
  width: 500px;
  height: 200px;
  overflow: hidden;
  background: #34495e;
  transform: translate(-50%, 0);
  position: fixed;
  bottom: -300px;
  left: 50%;
  z-index: 5;
  transition: 1s;
}

.modal img{
  width: 200px;
  height: 200px;
  float: left;
}

.modal .content{
  height: 100%;
  width: 300px;
  padding: 20px;
  float: left;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content h1{
  text-transform: uppercase;
  font-size: 20px;
}

.content p{
  font-size: 15px;
}

.content a{
  /* display: inline-block; */
  background: #9d2933;
  width: 120px;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  color: white;
  margin-top: 3px;
  text-decoration: none;
}

#modBut{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hide{
  position: absolute;
  z-index: 999;
  top: 14px;
  right: 14px;
  font-size: 20px;
  color: black;
  opacity: 0.7;
  transition: 0.3s;
  cursor: pointer;
}

.hide:hover{
  transform: rotate(90deg);
  opacity: 1;
}

/*Walking tour styles*/
/*------------------------------------------------------------------*/
.tab-menu ul{
  margin-top: 50px;
  display: flex;
}

.tab-menu ul li{
  width: 100px;
  border: 1px solid #000;
  margin-right: 25px;
  position: relative;
}

.tab-menu ul li:last-child{
  margin-right: 0;
}

.tab-menu ul li a{
  text-decoration: none;
  text-align: center;
  color: white;
  font-size: 18px;
}

.tab-menu ul li a .icon{
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  background: #9d2933;
  line-height: 60px;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 3px 6px rgba(62, 88, 113, 0.8);
}

.tab-menu ul li.active a .icon{
  background: white;
  color: #9d2933;
}

.tab-menu ul li.active a{
  color: #9d2933;
}

.tab-content{
  border-radius: 30px;
  background: white;
  color: black;
  width: 60%;
  margin: 20px auto 0 auto;
  display: none;
  padding: 30px;
}

.active-content{
  display: block;
  color: red;
}

.stories h2{
  font-style: italic;
}

/*About page styles*/
/*------------------------------------------------------------------*/

.profiles{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.profile{
  color: white;
  background: #9d2933;
  text-align: center;
  width: 300px;
  box-shadow: 0 0 10px rgba(62, 88, 113, 0.8);
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
}

.profile img{
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.profile h1{
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 5px;
}

.profile h2{
  margin-bottom: 20px;
}

.profile .detail {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
}

.profile .detail p{
  margin-left: 5px;
}

