@charset "utf-8";

/* CSS Document */
* CSS Document */ *, ::before, ::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --cat-color: #f16110;
  --link-color: rgba(126, 196, 250, 0.70);
  --bg-color: rgba(241, 97, 16, 0.38);
  --primary-color: rgba(41, 0, 161, 0.85);
  --overlay-color: rgba(24, 39, 51, 0.85);
  --menu-speed: 0.75s;
}

a {
  text-decoration: none;
}

html {
  background-color: #13171a;
}

body {
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
}

h4 {
  color: rgb(196, 196, 196);
  letter-spacing: 0.2em;
  font-weight: normal;
}

h5 {
  padding: 5px;
  color: rgb(196, 196, 196);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  font-weight: normal;
  writing-mode: vertical-rl;
  text-orientation: upright;
  align-self: center;
}

.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr minmax(200px, 1fr) 1fr 1.5fr;
  grid-template-rows: auto;
  grid-gap: 5px;
  grid-auto-flow: row;
}

img {
  width: 100%;
  height: 100%;
}

.row1 {
  grid-column: 1/-1;
  grid-row: 1/2;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.row1 p a {
  color: var(--cat-color);
}

.row1 p a:hover {
  color: #ffffff;
}

.prodport {
  grid-column: 1/2;
  grid-row: 2/3;
  align-self: center;
  display: flex;
  flex-direction: column;
}

.prodport h4:hover {
  background-color: var(--bg-color);
  border-radius: 5px;
}

.instport {
  grid-column: 3/4;
  grid-row: 1/3;
  display: flex;
  flex-direction: row;
}

.instport a {
  align-self: center;
}

.instport h5:hover {
  background-color: var(--bg-color);
  border-radius: 5px;
}

.artport {
  grid-column: 5/6;
  grid-row: 2/4;
  align-self: center;
  display: flex;
  flex-direction: column;
}

.artport a {
  text-align: right;
}

.artport h4:hover {
  background-color: var(--bg-color);
  border-radius: 5px;
}

.dbslogo {
  opacity: 0.24;
  width: 100%;
  max-width: 800px;
  grid-column: 1/-1;
  grid-row: 3/5;
  align-self: end;
  justify-self: center;
}

.showport {
  grid-column: 1/2;
  grid-row: 5/6;
  justify-self: center;
  align-self: center;
  padding-left: 15px;
  display: flex;
  flex-direction: row;
}

.showport a {
  padding: 3px;
}

.showport h5:hover {
  background-color: var(--bg-color);
  border-radius: 5px;
}

.persport {
  grid-column: 4/5;
  grid-row: 5/7;
  align-self: start;
  display: flex;
  flex-direction: column;
}

.persport a {
  text-align: center;
}

.persport h4:hover {
  background-color: var(--bg-color);
  border-radius: 5px;
}

.movie {
  grid-column: 4/6;
  grid-row: 5/7;
  align-self: center;
  text-align: center;
  width: 100%;
height: auto;
}

/* Burger Overlay Menu */
.menu-wrap {
  /* display: none; */
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

.menu-wrap .toggler {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 0.3rem;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger line */
.menu-wrap .hamburger>div {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in;
}

/* Top and bottom lines */
.menu-wrap .hamburger>div:before, .menu-wrap .hamburger>div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}

.menu-wrap .hamburger>div:after {
  top: 10px;
}

/* Toggler animate */
.menu-wrap .toggler:checked+.hamburger>div {
  transform: rotate(135deg);
}

/* Turn lines into X */
.menu-wrap .toggler:checked+.hamburger>div:before, .menu-wrap .toggler:checked+.hamburger>div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate on hover when checked */
.menu-wrap .toggler:checked:hover+.hamburger>div {
  transform: rotate(225deg);
}

/* Show menu */
.menu-wrap .toggler:checked~.menu {
  visibility: visible;
  z-index: 1;
}

.menu-wrap .toggler:checked~.menu>div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked~.menu>div>div {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .menu>div {
  background: var(--overlay-color);
  border-radius: 50%;
  width: 200vw;
  height: 200vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}

.menu-wrap .menu>div>div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu>div>div>ul>li {
  list-style: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 1rem;
}

.menu-wrap .menu>div>div>ul>li>a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}

/* End Overlay menu */
/* New Modal Styling without Bootstrap */
.modalDialog {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
  overflow-y: scroll;
}

.modalDialog:target {
  opacity: 1;
  pointer-events: auto;
}

.modalDialog>div {
  width: 80vw;
  position: relative;
  margin: 10% auto;
  padding: 5px 20px 13px 20px;
  border-radius: 10px;
  /* background: #fff;
	background: -moz-linear-gradient(#fff, #999);
	background: -webkit-linear-gradient(#fff, #999);
	background: -o-linear-gradient(#fff, #999); */
  background: #eae77e;
  /* Old browsers */
  background: -moz-linear-gradient(left, #eae77e 1%, #53cbf1 58%, #05abe0 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #eae77e 1%, #53cbf1 58%, #05abe0 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #eae77e 1%, #53cbf1 58%, #05abe0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eae77e', endColorstr='#05abe0', GradientType=1);
  /* IE6-9 */
}

.modalDialog p {
  text-align: center;
  margin-top: 20px;
}

.modalDialog p a {
  padding: 10px;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #000000;
  text-shadow: 1px 1px #401b1b;
  box-shadow: 0 1px 4px rgba(41, 0, 161, 1.00), 0 0 20px rgba(255, 253, 253, 0.1) inset;
  -webkit-transition: color 5000ms linear;
  -ms-transition: color 5000ms linear;
  transition: color 5000ms linear;
}

.modalDialog p a:hover {
  padding: 10px;
  color: blanchedalmond;
  text-decoration: underline;
}

.modal-title {
  color: #000000;
  box-shadow: 0 1px 4px rgba(41, 0, 161, 1.00), 0 0 20px rgba(255, 253, 253, 0.1) inset;
}

.newclose {
  background: #000000;
  color: #f16110;
  line-height: 25px;
  /* position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px; */
  position: absolute;
  top: 0.5vh;
  right: 1vw;
  text-align: center;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  z-index: 99999;
}

.newclose:hover {
  background: #00d9ff;
}

.accordian-item {
  background-color: red;
  border-radius: .4ren;
  margin-bottom: 1rem;
  padding: 1rem;
  box-shadow: .5rem 2px .5rem rgba(0, 0, 0, 0.1);
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.accordion-link {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  background-color: #283042;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.answer {
  max-height: 0;
  overflow: hidden;
  position: relative;
  background-color: #212838;
}

.answer::before {
  content: "";
  position: absolute;
  width: .6rem;
  height: 90%;
  background-color: #8fc460;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.answer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  padding: 2rem;
}

.accordion-item:target .answer {
  max-height: 20rem;
}
/* End of new modal styling */


.contactItemList {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

.contactItemList ul {
  margin: 10px 25px 20px 0;
  text-align: center;
  list-style: none;
  width: 30%;
  box-sizing: border-box;
}

.contactItemList ul lh {
  font-size: 18px;
  font-weight: bold;
  text-transform: capitalize;
  line-height: 1.5em;
}

.contactItemList ul li {
  font-weight: normal;
  /* text-shadow: 0 -2px 2px #000000; */
}


/* Media Queries */
@media (max-width: 800px) {
  .wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(200px, 1fr) 1fr;
    grid-template-rows: auto;
    grid-gap: 5px;
    grid-auto-flow: row;
  }

  .prodport {
    grid-column: 1/2;
    grid-row: 1/2;
    align-self: center;
    display: flex;
    flex-direction: column;
  }

  .prodport h4:hover {
    background-color: var(--bg-color);
    border-radius: 5px;
  }

  .instport {
    grid-column: 2/5;
    grid-row: 1/3;
    display: flex;
    flex-direction: row;
  }

  .instport a {
    align-self: center;
  }

  .instport h5:hover {
    background-color: var(--bg-color);
    border-radius: 5px;
  }

  .artport {
    grid-column: 1/2;
    grid-row: 2/3;
    align-self: center;
    display: flex;
    flex-direction: column;
  }

  .artport a {
    text-align: right;
  }

  .artport h4:hover {
    background-color: var(--bg-color);
    border-radius: 5px;
  }

  .dbslogo {
    display: none;
  }

  .showport {
    grid-column: 1/2;
    grid-row: 3/4;
    justify-self: center;
    align-self: center;
    padding-left: 15px;
    display: flex;
    flex-direction: row;
  }

  .showport a {
    padding: 3px;
  }

  .showport h5:hover {
    background-color: var(--bg-color);
    border-radius: 5px;
  }

  .persport {
    grid-column: 4/5;
    grid-row: 3/4;
    align-self: start;
    display: flex;
    flex-direction: column;
  }

  .persport a {
    text-align: center;
  }

  .persport h4:hover {
    background-color: var(--bg-color);
    border-radius: 2px;
  }

  h4 {
    color: rgb(196, 196, 196);
    letter-spacing: 0.2em;
    font-weight: normal;
  }
}
