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

html {
    /* background-color: #1c1614; */
}

/* =10px */

.row {
  margin-left: 0;
  margin-right: 0;
}

body {
  position: relative;
  /* background-color: #1c1614; */
}

p {
  font-size: 1.3vmax;
  font-family: 'Open Sans Condensed', sans-serif;
  letter-spacing: .1em;
  color: white;
  line-height: 200%;
  letter-spacing: .1em;
  text-align: justify;
}

p>a:link, p>a:visited  {
	color: #444;
	text-decoration: underline;
	transition: color 0.2s;
}

p>a:hover {
	color: #c1272d;

}



h1 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 1.5vmax;
  /* =24px */
  letter-spacing: .2em;
  color: #fff;
  float: inherit;
  margin-top: 0;
  text-align: center;
}


h4 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 1.5vmax;
  letter-spacing: 5px;
  text-align: center;
  color: #fff;
  
}


@media (max-width: 900px) {
  h1 {
    font-size: 2.5vmax;
  }
  h4 {
    font-size: 2.5vmax;
  }
  p {
    font-size: 2.5vmax;
  }
}

.boxing {
  padding-top: 20px;
  /* padding-bottom: 30px; */
}

.boxed {
  display: inline-grid;
  width: auto;
  border: 0.5px solid #fff;
  text-align: center;
  padding-right: 10px;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 100;
  letter-spacing: 8px;
}

.boxedB {
  display: inline-grid;
  width: auto;
  border: 0.5px solid #000;
  text-align: center;
  padding-right: 10px;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #000;
  font-weight: 100;
  letter-spacing: 8px;
}

.boxedBtn {
  display: inline-grid;
  width: auto;
  color: #fff;
  border: none;
  border-radius: 2px;
  background-color: #c1272d;
  text-align: center;
  padding-right: 10px;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 100;
  letter-spacing: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.boxedBtn:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}


.content-center {
  margin: 0 auto;
  justify-content: center;
  display: block;
  margin-left: auto;
  margin-right: auto
}
.projectbox {
  /* padding-top: 30px; */
  padding-bottom: 30px;
  width: 100%;
  margin-left: 0 auto;
  margin-right: 0 auto;
}

.projectback {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 30px;
  overflow: auto;
}

/*Scaling Anim*/

.Gallerycenter img {
  padding-top: 20px;
}

/* Still Image Gallery Hover Action */

.imggallery:hover .Gallerycenter img:first-child {
  opacity: 1;
  z-index: 900;
  /* background-color: #000; */
}

.imggallery:hover .Gallerycenter img:last-child {
  opacity: 0.5;
  z-index: 900;
  /* background-color: #000; */
}

.Gallerycenter img:first-child {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}



/* End of Still Image Gallery Hover Action */

.Info {
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 100;
  font-size: 1.2vmin;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  background-color: none;
  overflow: hidden;
}
.margin {
  margin-top: 20px;
  margin-bottom: 20px;
}


/*Navbar Section*/

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 1px;
  margin-top: 2px;
  border-radius: 0px
}

.navbar {
  font-size: 20px;
  font-family: 'Open Sans Condensed', sans-serif;
  border-radius: 0px;
  border: none;
  color: white;
  margin-bottom: 0;
  letter-spacing: 5px;
  background-color: #c1272d;
}

.navbar-brand img {
  padding-left: 30px;
  margin-top: -5px;
  height: 25px;
}

.navbar button {
  padding-right: 30px;
}

.navbar-toggle {
  border: 0px;
}

.activeli {
  background-color: #000;
  color: #fff;
}

.icon-bar {
  color: white;
  background-color: white;
}

/*fill animation*/

.fill ul li a {
  position: relative;
}

.fill ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '';
  color: transparent;
  background-color: #fff;
  height: 1px;
}

.fill ul li a {
  color: white;
  font-size: 13px;
  letter-spacing: 5px;
  transition: all 1s;
}

.fill ul li a:hover {
  color: #c1272d;
  z-index: 1;
}

.fill ul li a:hover:after {
  z-index: -10;
  animation: fill 1s forwards;
  -webkit-animation: fill 1s forwards;
  -moz-animation: fill 1s forwards;
  opacity: 1;
}

/* Keyframes */

@-webkit-keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

/*animation over*/

/*Navbar over*/

.icons {
  padding-top: 10px;
  padding-bottom: 10px;
}

.icons a {
  padding-left: 20px;
  padding-right: 20px;
}

.Ihover img:last-child {
  display: none;
}

.Ihover:hover img:first-child {
  display: none;
}

.Ihover:hover img:last-child {
  display: inline-block;
}

.overlay {
  position: relative;
  width: 100%;
  /* height: 500px; */
  overflow: hidden;
}

.overlay p {
  padding-top: 10px;
  padding-bottom: 30px;
  font-family: 'Open Sans Condensed', sans-serif;
  letter-spacing: .1em;
  color: #fff;
  line-height: 180%;
  letter-spacing: .1em;
  text-align: justify;
  padding-left: 25px;
  padding-right: 25px;
}
.placement_bar {
  display: inline-block;
  width: 100%;
  height: 1px;
  margin-top: 30px;
  border-radius: 0px;
  background-color: #c1272d;
  margin-bottom: 20px;
}

.profile {
  font-family: 'Open Sans Condensed', sans-serif;
  position: relative;
  padding-bottom: 25px;
  padding-top: 20px;
}

.profile img {
  height: auto;
  width: auto;
  max-height: 150px;
  margin: auto;
  margin: 0 auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.profile:hover img {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.profile p {
  font-family: 'Open Sans Condensed', sans-serif;
  letter-spacing: .1em;
  color: white;
  padding-top: 20px;
  /* margin-bottom: -30px; */
  letter-spacing: .1em;
  text-align: center;
}

.title h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: none;
  line-height: 150%;
  color: #fff
}

@media (min-width: 1000px) {
  .title h4 {
    font-size: 1.3vmax;
    letter-spacing: none;
  }
  .profile p {
    font-size: 1vmax;
    letter-spacing: none;
  }
}

.title:hover {
  font-style: italic;
  color: #c1272d;
  text-decoration: none;
}

/* Credit Area */

.accordion {
  background-color: #000;
  color: #fff;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  height: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  transition: 0.4s;
  margin: 0 auto;
  vertical-align: middle;
  display: inline-block;
}

.accordion img {
  float: right;
  height: 20px;
  margin: 0 auto;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 700px) {
  .accordion img {
    height: 10px;
  }
}

.active, .accordion:hover {
  background-color: #888888;
}

.accordion:after {
  /* content: '\002B'; */
  color: #888888;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active img {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Safari 3-8 */
  /* content: "\2212"; */
}

.panel {
  padding: 0 18px;
  background-color: #000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  overflow-y: scroll !important;
}

table {
  width: 100%;
}

.creditroles {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  line-height: 150%;
  font-size: 1.2vmax;
  text-align: center;
  padding: 10px;
  vertical-align: top;
  color: #fff;
}

td:first-child {
  font-weight: 500;
  text-align: right;
}

td {
  width: 50%;
}

td, th {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  text-decoration: none;
  line-height: 150%;
  font-size: 1.2vmax;
  text-align: left;
  padding: 10px;
  vertical-align: top;
  color: #fff;
}


@media (max-width: 900px) {
td, th{
    font-size: 2vmax;
}
 .creditroles {
  font-size: 2vmax;
  }
}

/* End of Credit area */

/* .pimg {
  width: auto;
  max-height: 150px;
  margin: auto;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 20px;
} */

.sponsorlogos {
  padding-top: 20px;
  vertical-align: middle;
  display: flex;
  width: 100%
  /* height: 100%; */
}

@media (max-width: 900px) {
  .sponsorlogos {
    display: inline-block;
  }
}

.sponsor {
  color: #000;
}

.logo {
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 20px;
  justify-content: center;
  vertical-align: middle;
}

.logobox {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

.bg-6 {
  background-color: #000;
  font-family: 'Open Sans Condensed', sans-serif;
  padding-top: 20px;
  text-align: center;
  font-size: 20px;
  color: white;
  padding-bottom: 20px;
}


.disclaimer{
font-size: 13px;
float:left;
text-decoration: none;
vertical-align: baseline;
}

.disclaimer:hover{
  color: #c1272d;
  text-decoration: none;
}
