@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
.navbar {
  display: flex;
  background: #02021E;
  height: 150px;
  box-shadow: 0 0 10px 1px black;
  position: relative;
  transition: 500ms;
  z-index: 50;
}
.navbar__logo {
  max-width: 100vw;
  overflow: hidden;
}
.navbar__logo img {
  max-width: 100%;
  height: 100%;
}
.navbar__text {
  flex: 10;
  color: #CC3300;
  position: relative;
}
.navbar__text__center {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.navbar__text__center span {
  display: block;
}
.navbar__text__center__big {
  font-size: 24px;
  letter-spacing: 8px;
}
.navbar__text__center__small {
  letter-spacing: 3px;
}
.navbar__hamburger {
  display: none;
  cursor: pointer;
}
@media only screen and (max-width: 700px) {
  .navbar {
    height: 100px;
  }
  .navbar__text {
    display: none;
  }
  .navbar__hamburger {
    display: block;
    position: absolute;
    top: 50%;
    right: 0px;
    color: white;
    transform: translate(-50%, -50%);
    font-size: 50px;
  }
}

@media only screen and (min-width: 700px) {
  .sidebar__container {
    display: flex;
  }

  .sidebar {
    transition: 500ms;
    flex-basis: 200px;
    color: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.5);
  }
  .sidebar a {
    color: black;
    text-decoration: none;
  }
  .sidebar__item {
    padding: 20px;
    transition: 500ms;
  }
  .sidebar__item:hover {
    background: #ccc;
  }
  .sidebar__item__active {
    color: #CC3300;
    background: #cccccc82;
  }
}
@media only screen and (max-width: 700px) {
  .sidebar {
    position: fixed;
    top: 100px;
    bottom: 0;
    left: -200px;
    width: 200px;
    background: white;
    z-index: 10;
    transition: 500ms;
    color: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.5);
  }
  .sidebar a {
    color: black;
    text-decoration: none;
  }
  .sidebar__item {
    padding: 20px;
    transition: 500ms;
  }
  .sidebar__item:hover {
    background: #ccc;
  }
  .sidebar__item__active {
    color: #CC3300;
    background: #cccccc82;
  }
  .sidebar__open {
    left: 0;
  }
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: 500ms;
  z-index: 100;
}
.modal__image-to-click {
  position: relative;
}
@media only screen and (max-width: 750px) {
  .modal__image-to-click {
    padding-top: 20px;
  }
}
.modal__image-to-click__image img {
  height: 225px;
}
.modal__image-to-click__image i {
  width: 30px;
  height: 30px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  font-size: 30px;
  color: white;
}
.modal__image-to-click__video i {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  animation: pulse 5s ease-in-out infinite;
  color: white;
}
.modal__container {
  background: white;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  max-width: 80%;
  padding: 20px;
}
.modal__container__heading {
  color: #CC3300;
  font-size: 30px;
  position: relative;
  border-bottom: 1px solid grey;
  padding-bottom: 10px;
}
.modal__container__heading__close {
  color: black;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
}
.modal__container__content {
  margin-top: 20px;
}
.modal__container__content video {
  width: 100%;
}
.modal__close {
  background: rgba(0, 0, 0, 0);
  top: 200vh;
}

@keyframes pulse {
  20% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  30% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
}
.open-modal {
  cursor: pointer;
}

.home__container {
  max-width: 800px;
  margin: 0 auto;
}
.home__container__preface {
  padding-bottom: 20px;
}
.home__container__item {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
}
.home__container__item:nth-child(odd) {
  flex-direction: row-reverse;
}
.home__container__item__text {
  overflow: auto;
}
.home__container__item__table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}
.home__container__item__table tr td {
  padding: 5px;
}
.home__container__item__table tr td:first-child {
  font-weight: bold;
}
.home__container__item__table tr:nth-child(odd) {
  background: #ccc;
}
.home__container__item__list {
  list-style-position: inside;
}
.home__container__item__gallary {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.home__container__item__gallary__image {
  text-align: center;
  flex: 1;
  width: 100%;
}
.home__container__item__media {
  max-width: 300px;
  margin: 0 auto;
  overflow: hidden;
  display: inline-block;
}
.home__container__item__media:hover img {
  transform: scale(1.1);
}
.home__container__item__media img {
  transition: 500ms;
  max-width: 100%;
}
@media only screen and (min-width: 750px) {
  .home__container__item:nth-child(odd) .home__container__item__text {
    padding-left: 20px;
  }
  .home__container__item:nth-child(even) .home__container__item__text {
    padding-right: 20px;
  }
  .home__container__item__text {
    flex: 1;
  }
  .home__container__item__media {
    flex: 1;
  }
}

* {
  padding: 0;
  margin: 0;
  font-family: "Roboto", Times, serif;
}

.content {
  flex: 1;
  padding: 30px;
  background: #f3f3f3;
  color: #484848;
  height: calc(100vh - 150px - 60px);
  overflow-y: auto;
}
@media only screen and (max-width: 700px) {
  .content {
    min-height: calc(100vh - 100px - 60px);
  }
}
@media only screen and (min-width: 700px) {
  .content {
    min-height: calc(100vh - 150px - 60px);
  }
}

.big-heading {
  color: #CC3300;
}

.small-heading {
  color: #CC3300;
}

.divider {
  height: 20px;
}

.pre-line {
  white-space: pre-line;
}

.no-padding {
  padding: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/*# sourceMappingURL=style.css.map */
