.navmenu {
  box-shadow: -1px 0 4px 0px #888;
  background-color: #ffffff;
  width: 220px;
  height: auto;
  left: 0;
  top: 0;
  bottom: 0;
  right: auto;
  position: fixed;
  z-index: 1030;
  overflow-y: auto;
}
.navmenu a {
  text-decoration: none;
  color: white;
}
.navmenu .title {
  padding: 20px;
  text-align: center;
  font-size: 20px;
  color: #e8696c;
}
.navmenu .navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.navmenu .navigation ul li a {
  font-size: 16px;
  display: block;
  padding: 10px 20px;
  color: #e8696c;
  text-decoration: none;
}
.navmenu .navigation ul li a img {
  width: 25px;
  margin-right: 15px;
}
.navmenu .navigation ul li a:hover {
  background-color: #f3f4f8;
}

.dropdown-menu {
  padding: 0 !important;
}

.logoutbutton {
  width: 100%;
  bottom: 0;
  color: #e8696c;
}
.logoutbutton a {
  display: block;
  font-size: 16px;
  padding: 10px 20px;
  text-decoration: none;
}
.logoutbutton a img {
  width: 25px;
  margin-right: 15px;
}
.logoutbutton a:hover, .logoutbutton a:focus {
  text-decoration: none;
  color: #e8696c;
  background-color: #f3f4f8;
}

.topmenu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  height: 75px;
  align-items: center;
  padding-right: 40px;
}
.topmenu .navbar-nav {
  float: right;
}
.topmenu .nav-link {
  display: flex;
  align-items: center;
}
.topmenu .userinfo {
  margin-right: 20px;
  text-align: right;
}
.topmenu .userinfo h1 {
  font-size: 14px;
  margin: 0;
}
.topmenu .userinfo h2 {
  font-size: 12px;
  margin: 0;
}
.topmenu .userphoto {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50px;
}
.topmenu .userphoto img {
  width: 50px;
}

.tasks form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tasks form .task-text {
  width: 500px;
}

.side-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100px;
  justify-content: space-between;
  color: #6F55E6;
  top: 50vh;
  right: 50px;
  z-index: 90;
  transition: all 1s ease;
}
.side-nav a, .side-nav a:hover, .side-nav a:active, .side-nav a:focus, .side-nav a:visited {
  color: #6F55E6;
}

.background {
  background: white;
}

.mobile-nav {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 100;
  padding: 30px 23px;
}
.mobile-nav .nav {
  display: none;
  z-index: 15;
}
.mobile-nav .nav .menu {
  width: 100%;
  height: 100%;
  color: #6F55E6;
  margin-top: 25px;
}
.mobile-nav .nav hr {
  width: 150px;
  border-top: 3px solid lightblue;
  margin-top: 0;
}
.mobile-nav .nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  text-align: left;
}
.mobile-nav .nav ul li {
  margin-bottom: 10px;
}
.mobile-nav .nav ul li a {
  margin-left: 0;
  text-decoration: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  color: #6F55E6;
}
.mobile-nav .nav ul li:hover {
  text-decoration: underline;
}
.mobile-nav .toggle-mobile {
  cursor: pointer;
  display: flex;
  width: 40px;
  flex-direction: column;
  justify-content: space-between;
  height: 35px;
  margin-right: 10px;
}
.mobile-nav .bar1, .mobile-nav .bar2, .mobile-nav .bar3 {
  width: 100%;
  height: 5px;
  background-color: #6F55E6;
  transition: 0.3s;
  border-radius: 9px;
}
.mobile-nav .bar1open {
  transform: rotate(-45deg) translate(-6px, 5px);
}
.mobile-nav .bar2open {
  opacity: 0;
}
.mobile-nav .bar3open {
  transform: rotate(45deg) translate(-15px, -15px);
}

.admin {
  background-color: #f3f4f8 !important;
}
.admin input[type=submit] {
  margin-top: 10px;
  background-color: #e8696c;
  border: 1px solid #e8696c;
  padding: 6px 12px;
  color: white;
  align-self: center;
  text-decoration: none;
  border-radius: 3px;
}
.admin input[type=submit] a {
  text-decoration: none;
}
.admin input[type=submit]:hover {
  background-color: transparent;
  color: #e8696c;
  border: 1px solid #e8696c;
}
.admin table {
  width: 100%;
  border: none;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.admin table thead {
  background: #222838;
}
.admin table thead th:nth-child(1) {
  padding-left: 40px;
}
.admin table thead th:nth-last-child {
  padding-right: 40px;
}
.admin table thead th {
  color: #fff;
  padding-left: 10px;
}
.admin table tr td {
  vertical-align: middle;
  padding: 20px 15px;
}
.admin table tr td:nth-child(1) {
  padding-left: 40px;
}
.admin table tr td:nth-last-child {
  padding-right: 40px;
}
.admin table tr:nth-child(even) {
  background: #FFF;
}
.admin table tr.label {
  background: transparent;
  color: #056A6E;
}
.admin td input[type=submit], .admin td input[type=submit]:hover, .admin td a {
  margin-top: 0;
  background: transparent;
  border: 0;
  padding: 0;
  color: #222838;
  text-decoration: underline;
}
.admin td input[type=submit]:hover, .admin td input[type=submit]:focus, .admin td a {
  background: transparent;
  color: #222838;
  border: 0;
  text-decoration: underline;
}
.admin .btn-default {
  color: white;
  border: 1px solid #e8696c;
  background: #e8696c;
}
.admin .btn-default:hover, .admin .btn-default:focus {
  color: #e8696c;
  background: transparent;
  border: 1px solid #e8696c;
}
.admin a {
  text-decoration: none;
  color: inherit;
}
.admin .offset {
  margin-left: 220px;
  color: #565964;
}
.admin .offset .header {
  margin: 10px 0 40px 0;
}
.admin .offset .header .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 28px;
  border-bottom: 1px solid #253943;
  color: #222838;
}
.admin .offset .header .title h1 {
  text-transform: capitalize;
  margin-top: 0;
}
.admin .offset .header .back {
  font-size: 18px;
}
.admin .offset .header .back img {
  width: 30px;
  height: auto;
  margin-right: 5px;
}
.admin .offset .content {
  padding: 0 30px;
}
.admin .offset .content .action-bar {
  width: 100%;
  margin-bottom: 20px;
}
.admin .offset .content .action-bar a {
  background: #056A6E;
  padding: 10px 15px;
  color: #fff;
}
.admin .offset .content .action-bar a:hover {
  opacity: 0.8;
}
.admin .offset .content .notification .error {
  color: #FFF;
  background-color: rgba(208, 4, 28, 0.7);
  border: 1px solid #D0041C;
  padding: 10px 15px;
  width: 60%;
  margin: 20px 0;
}
.admin .offset .content .notification .succes {
  color: #FFF;
  background-color: rgba(100, 177, 15, 0.7);
  border: 1px solid #64B10F;
  padding: 10px 15px;
  width: 60%;
  margin: 20px 0;
}
.admin .offset .content .notification .notice {
  font-weight: bold;
}
.admin #media_preview {
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin #media_preview img {
  max-width: 100%;
  height: auto;
}
.admin #preview {
  background: #333;
  clear: left;
  display: block;
  max-width: 400px;
}
.admin .media_thumb {
  width: 50px;
  height: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin .media_thumb img {
  width: 100%;
  height: auto;
}
.admin #image_preview {
  display: flex;
  width: 300px;
  height: 300px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.admin #image_preview img {
  width: 300px;
  height: auto;
}
.admin .td-image {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50px;
}
.admin .td-image img {
  width: 50px;
  height: auto;
}
.admin .card {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  border: none;
}
.admin .card h3 {
  margin: 0;
}

.home {
  scroll-snap-align: start;
  height: 100vh;
  padding: 0 !important;
  background-color: #15141a;
  /* Standard syntax */
}
.home img {
  max-width: 650px;
}
.home__nav {
  margin-top: 45px;
}
.home__nav nav ul {
  display: flex;
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
}
.home__nav nav ul li {
  margin-bottom: 10px;
}
.home__nav nav ul li a {
  color: #fff;
  font-size: 20px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  text-decoration: none;
  margin: 20px;
}
.home__nav nav ul li a:hover {
  text-decoration: underline;
  color: #6F55E6;
}
.home__left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.home__left h1 {
  color: #fff;
  font-size: 80px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
}
.home__left h2 {
  color: #6F55E6;
  font-size: 35px;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
}
.home__left h3 {
  color: #fff;
  font-size: 23px;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  margin-top: 20px;
}
.home__left .button-full {
  margin-top: 20px;
  background-color: #6F55E6;
  padding: 12px;
  border-radius: 30px;
  border: 2px solid #6F55E6;
  text-align: center;
}
.home__left .button-full:hover {
  background-color: #15141a;
  border: 2px solid #15141a;
}
.home__left .button-full a {
  color: white;
  font-size: 20px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
}
.home__left .button-full a:hover, .home__left .button-full a:focus {
  text-decoration: none;
}
.home__left .button-line {
  margin-top: 20px;
  background-color: transparent;
  padding: 14px 48px;
  border-radius: 30px;
  border: 1px solid #6F55E6;
  text-align: center;
  text-transform: uppercase;
  display: inline-block;
}
.home__left .button-line:hover {
  border: 1px solid #6F55E6;
  background-color: #6F55E6;
}
.home__left .button-line:hover a {
  color: #fff;
}
.home__left .button-line a {
  color: #6F55E6;
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.home__left .button-line a:hover, .home__left .button-line a:focus {
  text-decoration: none;
  color: #fff;
}
.home .icon-scroll,
.home .icon-scroll:before {
  position: absolute;
  left: 50%;
}
.home .icon-scroll {
  width: 30px;
  height: 60px;
  margin-left: -20px;
  margin-top: -35px;
  box-shadow: inset 0 0 0 1px #fff;
  border-radius: 25px;
  bottom: 40px;
}
.home .icon-scroll:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
          animation-name: scroll;
}
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(40px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(40px);
  }
}
.home h1, .home h2, .home button {
  -webkit-animation-name: example;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s;
  /* Safari 4.0 - 8.0 */
  animation-name: example;
  animation-duration: 4s;
}
@-webkit-keyframes example {
  from {
    left: 0;
  }
  to {
    left: 100px;
  }
}
@keyframes example {
  from {
    left: 0;
  }
  to {
    left: 100px;
  }
}

.footer {
  height: 50px;
  background-color: #15141a;
}

/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
.dropzone, .dropzone * {
  box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px;
}

.dropzone.dz-clickable {
  cursor: pointer;
}

.dropzone.dz-clickable * {
  cursor: default;
}

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzone.dz-started .dz-message {
  display: none;
}

.dropzone.dz-drag-hover {
  border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}

.dropzone .dz-preview:hover {
  z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
  background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
  transform: scale(1.05, 1.05);
  filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}

.dropzone .dz-preview .dz-image img {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}

.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

.aboutlw, .the_project {
  min-height: 100vh;
}
.aboutlw h1, .the_project h1 {
  margin-bottom: 20px;
}
.aboutlw .content-text, .the_project .content-text {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aboutlw .content-text .content, .the_project .content-text .content {
  padding: 100px;
  max-width: 1000px;
}
.aboutlw .content-text h1, .the_project .content-text h1 {
  color: #15141a;
  font-size: 60px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
}
.aboutlw .content-text h2, .the_project .content-text h2 {
  color: #15141a;
  font-size: 30px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
}
.aboutlw .content-text p, .the_project .content-text p {
  color: #15141a;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 25px;
}
.aboutlw .content-text a, .the_project .content-text a {
  color: #6F55E6;
}

.aboutlw .content-image {
  background: url("/images/site_images/livewall_building.jpg");
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.the_project .content-image {
  background: url("/images/site_images/office_image.jpg");
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.posts {
  height: 100vh;
}
.posts__nav {
  height: 50px;
  padding: 0 0 0 75px;
  margin-top: 50px;
}
.posts__nav nav ul {
  display: flex;
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
}
.posts__nav nav ul li {
  margin-bottom: 10px;
}
.posts__nav nav ul li a {
  color: #15141a;
  font-size: 20px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  text-decoration: none;
  margin: 20px;
}
.posts__nav nav ul li a:hover {
  text-decoration: underline;
  color: #6F55E6;
}
.posts h1.title {
  color: #15141a;
  font-size: 60px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  margin-bottom: 45px;
}
.posts .labels {
  margin-bottom: 45px;
}
.posts .labels .label {
  padding: 10px 15px;
  background: transparent;
  border: 2px solid #6F55E6;
  border-radius: 50px;
  color: #6F55E6;
  font-size: 12px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  margin: 0 10px 0 0;
}
.posts table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid rgba(136, 0, 226, 0.28);
}
.posts table th, .posts table td {
  text-align: left;
  padding: 10px 5px 5px 5px;
  border: 1px solid rgba(136, 0, 226, 0.28);
}
.posts table tr:nth-child(even) {
  background-color: rgba(198, 65, 223, 0.11);
}
.posts p, .posts li {
  font-size: 1.2em;
}
.posts .left {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.posts .left .content {
  padding: 0 100px 100px 100px;
  max-width: 100%;
}
.posts .left .content img {
  max-width: 100%;
}
.posts .left .content img:hover {
  cursor: zoom-in;
}
.posts .right {
  height: 100vh;
  position: fixed;
  right: 0;
  background-image: url("/images/homeimage.jpg");
  background-position: center;
  background-size: cover;
}

.wysiwyg-modal {
  z-index: 1;
  display: none;
  padding-top: 10px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.8);
}
.wysiwyg-modal .close {
  color: white;
  margin: 10px 30px;
  opacity: 0.75;
  font-size: 45px;
}
.wysiwyg-modal .close:hover {
  color: white;
  opacity: 1;
}

.wysiwyg-modal-content {
  margin: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wysiwyg-modal-content img {
  max-width: 95vw !important;
  max-height: 95vh !important;
}

#bottom_portfolio_nav {
  z-index: 100;
  position: fixed;
  bottom: 0;
  background: #e5eaec;
  color: #000000;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
#bottom_portfolio_nav .button-line {
  background-color: rgba(196, 187, 187, 0.58);
  padding: 7px 20px;
  border-radius: 30px;
  border: 0;
  text-align: center;
  display: inline-block;
  transition-duration: 0.4s;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  bottom: 20px;
  font-size: 1.2em;
  opacity: 0.75;
}
#bottom_portfolio_nav .button-line span {
  font-weight: 300;
  margin: 0 10px;
}
#bottom_portfolio_nav .button-line:hover {
  opacity: 1;
}
#bottom_portfolio_nav .left-button {
  margin: 0 10px;
  left: 10px;
  position: absolute;
}
#bottom_portfolio_nav .right-button {
  position: absolute;
  right: 10px;
  margin: 0 10px;
}
#bottom_portfolio_nav p {
  margin: 0;
}

.terms {
  padding-left: 110px;
}
.terms h1 {
  color: #6F55E6;
  margin-bottom: 30px;
}
.terms .term-table {
  margin-top: 45px;
}
.terms .term-table table {
  width: 100%;
  border: none;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
.terms .term-table table thead {
  background: #222838;
}
.terms .term-table table thead th:nth-child(1) {
  padding-left: 40px;
  width: 20%;
}
.terms .term-table table thead th:nth-last-child {
  padding-right: 40px;
}
.terms .term-table table thead th {
  color: #f1eeee;
  padding-left: 10px;
  border: black;
}
.terms .term-table table tr td {
  vertical-align: middle;
  padding: 20px 15px;
  border: black;
}
.terms .term-table table tr td:nth-child(1) {
  padding-left: 40px;
  width: 20%;
}
.terms .term-table table tr td:nth-last-child {
  padding-right: 40px;
}
.terms .term-table table tr:nth-child(even) {
  background: #FFF;
}
.terms .term-table table tr.label {
  background: transparent;
  color: #056A6E;
}

.col {
  display: table-cell;
}

.entry-card {
  background-color: white;
  margin-top: 20px;
}
.entry-card .entry-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 40px;
  background-color: #222838;
  border-radius: 3px 3px 0 0;
  color: white;
  padding: 0 20px;
}
.entry-card .entry-title p {
  font-size: 15px;
  margin: 0;
  text-transform: capitalize;
}
.entry-card .entry-title p:nth-child(2) {
  font-size: 13px;
}
.entry-card .entry-body {
  height: 200px;
  overflow-y: auto;
  padding: 20px;
}
.entry-card .entry-body p {
  font-size: 15px;
}
.entry-card .entry-edit {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
}
.entry-card .entry-edit p {
  font-size: 12px;
  color: #b5b5b5;
}
.entry-card .entry-edit .edit {
  display: flex;
}
.entry-card .entry-edit .edit img:nth-child(1) {
  margin-right: 10px;
}

.products {
  display: flex;
  align-items: center;
  padding: 20px 0 50px 0;
}
.products .product_title {
  display: flex;
  align-items: center;
}
.products .button-full {
  margin: 20px 0 0 20px;
  background-color: #6F55E6;
  padding: 12px;
  border-radius: 30px;
  border: 2px solid #6F55E6;
  text-align: center;
  color: white;
}
.products .button-full:hover {
  background-color: transparent;
  border: 2px solid #6F55E6;
  color: #6F55E6;
  text-decoration: none;
}
.products .container-fluid {
  width: 90%;
}
.products h1 {
  color: #15141a;
  font-size: 60px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
}
.products h4 {
  color: #6F55E6;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  text-align: center;
  margin: 0 0 80px 0;
}
.products .product-card {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
}
.products h3 {
  font-size: 22px;
}
.products h2 {
  max-width: 100%;
  font-size: 40px;
  color: #6F55E6;
}
.products .card {
  height: 200px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  filter: opacity(75%) grayscale(40%);
  transition: 0.7s ease-out;
  padding: 15px;
  text-align: center;
}
.products .card:hover {
  transform: scale(1.05);
  filter: none;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  transition: 0.7s ease-out;
}

.cards {
  position: relative;
  width: 50%;
  margin: 15px 0;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s ease;
  background-color: rgba(0, 18, 133, 0.7);
  height: 276px;
  width: 325px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cards:hover .overlay {
  opacity: 1;
}

.text {
  color: white;
  font-size: 40px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  transform: translate(-50%, -50%);
  text-align: center;
}

@media (max-width: 575.98px) {
  .side-nav {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .home__nav {
    margin-top: 0;
  }

  .toggle-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .home__left {
    height: 500px;
  }

  .home__left .home-text {
    padding: 0 20px;
  }

  .about {
    min-height: 50vh;
  }
  .about .left {
    display: none;
  }
  .about .right {
    min-height: 50vh;
    padding: 15px 0;
  }
  .about .right p {
    font-size: 1.5rem;
  }
  .about .right .content {
    padding: 40px;
  }

  .project {
    min-height: 50vh;
  }
  .project .right {
    display: none;
  }
  .project .left {
    min-height: 50vh;
    padding: 15px 0;
  }
  .project .left p {
    font-size: 1.5rem;
  }
  .project .left .content {
    padding: 40px;
  }

  .project-parts {
    min-height: 900px;
    margin-bottom: 50px;
  }
  .project-parts h2.large-number {
    font-size: 5em;
    right: -5px;
    bottom: 50px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .toggle-nav {
    display: none;
  }

  .side-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .desktop-nav {
    display: none;
  }

  .home__nav {
    margin-top: 0;
  }

  .home__left {
    height: 600px;
  }

  .home__left .home-text {
    padding: 0 45px;
  }

  .about .left {
    display: none;
  }
  .about .right {
    padding: 20px 10px;
  }
  .about .right p {
    font-size: 1.5rem;
  }

  .project .right {
    display: none;
  }
  .project .left {
    padding: 20px 10px;
  }
  .project .left p {
    font-size: 1.5rem;
  }

  .project-parts {
    min-height: 500px;
    margin-bottom: 50px;
  }
  .project-parts h2.large-number {
    font-size: 5em;
    right: -5px;
    bottom: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .side-nav {
    display: none;
  }

  .toggle-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .home__left {
    height: 800px;
  }

  .about .right {
    padding: 60px 20px;
  }
  .about .right p {
    font-size: 1.5rem;
  }

  .project .left {
    padding: 60px 20px;
  }
  .project .left p {
    font-size: 1.5rem;
  }

  .project-parts {
    min-height: 600px;
    margin-bottom: 50px;
  }
  .project-parts h2.large-number {
    font-size: 5em;
    right: -5px;
    bottom: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .side-nav {
    display: none;
  }

  .toggle-nav {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }

  .home__left {
    height: 800px;
  }

  .about .right {
    padding: 100px 40px;
  }
  .about .right p {
    font-size: 1.5rem;
  }

  .project .left {
    padding: 100px 40px;
  }
  .project .left p {
    font-size: 1.5rem;
  }

  .project-parts {
    min-height: 600px;
    margin-bottom: 50px;
  }
  .project-parts h2.large-number {
    font-size: 5em;
    right: -5px;
    bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .toggle-nav {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }
}
@supports (display: grid) {
  body,
html {
    display: block;
  }
}

.message {
  border: 1px solid #d2d0d0;
  padding: 2em;
  font-size: 1.7vw;
  box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4);
}
@supports (display: grid) {
  .message {
    display: none;
  }
}

.section {
  display: none;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 4rem;
  }
}
@supports (display: grid) {
  .section {
    display: block;
  }
}

h1 {
  font-size: 2rem;
  margin: 0 0 1.5em;
  font-family: "Raleway", sans-serif;
}

.grid {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 100px;
  grid-auto-flow: row dense;
}

.item {
  font-family: "Raleway", sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  background: #0c9a9a;
  color: #fff;
  grid-column-start: auto;
  grid-row-start: auto;
  background-size: cover;
  background-position: center;
  box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  counter-increment: item-counter;
  text-decoration: none;
}
.item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.3;
  transition: opacity 0.3s ease-in-out;
}
.item:hover {
  transform: scale(1.05);
  text-decoration: none;
}
.item:hover:after {
  opacity: 0;
}
.item--medium {
  grid-row-end: span 2;
}
.item--large {
  grid-row-end: span 3;
}
.item__details {
  position: relative;
  z-index: 1;
  padding: 15px;
  color: #fff;
  text-transform: lowercase;
  letter-spacing: 1px;
}
.item__details:before {
  content: counter(item-counter);
  font-weight: bold;
  font-size: 1.1rem;
  padding-right: 0.5em;
  color: #fff;
}
