/* special nav css */
nav.unscrolled {
  background: none;
  box-shadow: none;
}
nav.unscrolled #menu {
  background-image: url('../images/menuwhite.png')
}
nav.unscrolled .bar {
  border-radius: 15px;
  transition: all 0.5s;
}
nav.unscrolled .bar:hover {
  background: white;
  padding: 15px 0px;
}
nav.unscrolled .bar:hover a {
  color: #b71b1b;
}
nav.unscrolled .dropdown button, nav.unscrolled .bar a {
  color: white;
}
/* Body CSS */
#container {
  height: calc(100vh - 60px);
}
#hero {
  width: 100%;
  height: 100vh;
  background: #b71b1b;
  background-image: url('../images/Hero.JPG');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10%;
  color: white;
  position: absolute;
  top: 0px;
  text-align: center;
}
#hero::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #42378f;
  background-image: linear-gradient(315deg, #42378f 0%, #f53844 74%);
  opacity: 0.65;
}
#hero h1 {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.25;
  position: relative;
  margin-bottom: 30px;
  animation: fadeIn 1s;
}
#hero h2 {
  position: relative;
  line-height: 1.5;
  animation: fadeIn 1.5s;
  font-size: 20px;
}
#preview {
  padding: 2%;
  text-align: center;
  display: flex;
  background: white;
  flex-wrap: wrap;
}
.wrapper {
  width: 33.33%;
  min-width: 350px;
  flex-grow: 1;
  height: calc(100vh - 60px);
  padding: 1%;
  display: inline-block;
}
.third {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: black;
  background: white;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
  border-radius: 15px;
  transition: all 0.5s;
}
.third:hover {
  box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.3);
}
.third img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.text {
  height: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10%;
}
.text h3 {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.text p {
  line-height: 1.5
}
.button {
  border: none;
  font-size: inherit;
  margin-top: 15px;
  display: inline-block;
  width: 150px;
  color: #b71b1b;
  padding: 15px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #b71b1b;
  transition: all 0.5s;
  text-align: center;
}
.button:hover {
  background: #b71b1b;
  color: white;
}
.current {
  height: calc(100vh - 60px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.right {
  background: white;
}
.right div {
  text-align: left;
  padding-left: 4%;
}
.left {
  background: rgba(0,0,0,0.05);
}
.left div {
  text-align: right;
  padding-right: 4%;
}
.current img {
  width: 70%;
  height: 75%;
  object-fit: cover;
}
.left img {
  clip-path: polygon(100% 0, 90% 100%, 0 100%, 0 0);
  -webkit-clip-path: polygon(100% 0, 90% 100%, 0 100%, 0 0);
}
.right img {
  clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0 0);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0 0);
}
.current h3 {
  font-size: 3vw;
  line-height: 1.25;
  font-weight: bold;
}