*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
}

body p {
  font-size: 1.3em;
}

body h1 {
  font-size: 4em;
}

@media screen and (max-width: 800px) {
  body h1 {
    font-size: 2em;
  }
}

body h2 {
  font-size: 3em;
}

.dreamcolor-cake {
  padding-top: 100%;
  position: relative;
  display: block;
}

.dreamcolor-cake-container {
  max-width: 400px;
  padding: 2px;
  background: rgb(238, 174, 202);
  background: linear-gradient(191deg, #fff 0%, rgba(148, 187, 233, 1) 100%);
  border-radius: 50%;
  box-shadow: 5px 5px 15px 3px rgba(0, 0, 0, 0.3);
}

.dreamcolor-cake-circle {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50%;
  overflow: hidden;
}

.dreamcolor-cake-flex-parent {
  height: calc(100% + 2px);
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  margin-left: -5px;
  margin-right: -5px;
  margin-top: -1px;
  margin-bottom: -1px;
}

.dreamcolor-cake-circle .col {
  background-color: #ccc;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  transition: background-color 1000ms ease;
  position: relative;
  box-shadow: 0 0 7px 3px rgba(88, 88, 88, 0.1) inset;
}

.dreamcolor-cake-circle .col::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: url("./images/texture.png");
  background-position: center;
  background-size: 120%;
  content: "";
}

.dreamcolor-cake-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url("./images/deksel.png");
  background-position: center;
  background-size: contain;
  border-radius: 50%;
  opacity: 1;
  transition: opacity 200ms ease;
}

.dreamcolor-cake:hover .dreamcolor-cake-overlay {
  opacity: 0;
}

.header {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  background-image: url("./images/header.jpg");
  background-size: cover;
}

.header h1 {
  text-transform: uppercase;
}

.cake-col {
  max-width: 400px;
  margin-left: 20px;
}

.header-overlay {
  background-color: #1b6875d8;
  min-height: 700px;
  padding-top: 100px;
}

.header-overlay .container {
  display: flex;
  min-height: 100%;
  flex-wrap: wrap;
}

.header-overlay .container > .col {
  align-items: center;
  position: relative;
  align-self: center;
  color: #fff;
  width: 50%;
}

@media screen and (max-width: 1000px) {
  .header-overlay .container > .col {
    width: 100%;
    text-align: center;
    margin: auto;
    margin-bottom: 50px;
  }
}

.container {
  padding: 15px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  color: #fff;
  animation: navbarAnimation 400ms ease;
  z-index: 99000;
}

.navbar.sticky {
  animation: stickyNavbar 600ms ease;
}

@keyframes stickyNavbar {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 60px;
}

.navbar img {
  flex-grow: 0;
  flex-shrink: 0;
  height: 60px;
}

.dropdown {
  position: relative;
}

.navbar .dropdown {
  margin-left: auto;
  list-style: none;
  padding: 0;
}

.navbar ul li {
  display: inline-block;
  margin-left: 20px;
}

.navbar ul li.active {
  font-weight: bold;
}

.navbar a {
  color: #fff;
  text-decoration: none;
}

#menu-button {
  width: 31px;
  font-size: 0;
  height: 19px;
  position: relative;
  z-index: 8000;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 1000px) {
  #menu-button {
    display: block;
  }

  .dropdown-content {
    position: absolute;
    min-width: 160px;
    z-index: 1;
    right: 0;
    top: 22px;
    max-height: 0px;
    transition: all 500ms ease;
    overflow: hidden;
  }

  .dropdown-content::before {
    content: "";
    display: block;
    margin-top: 15px;
  }

  .dropdown-content::after {
    content: "";
    display: block;
    margin-top: 20px;
  }

  .navbar ul.dropdown-content li {
    display: block;
    margin-top: 8px;
    font-size: 1.5em;
    padding-right: 30px;
  }

  /* Show the dropdown menu on hover */
  .dropdown.open .dropdown-content {
    display: block;
    max-height: 300px;
    background-color: rgba(27, 104, 117, 0.847);
  }

  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover #menu-button {
  }
}

#menu-button span {
  display: block;
  position: absolute;
  z-index: 60;
  height: 3px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#menu-button span {
  background: #fff;
}

#menu-button span:nth-child(1) {
  top: 0;
}

#menu-button span:nth-child(2) {
  top: 7px;
}

#menu-button span:nth-child(3) {
  top: 14px;
}

#menu-button.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

#menu-button.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#menu-button.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

@keyframes navbarAnimation {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.grid-item,
.grid-sizer {
  width: 100%;
}

.grid-item--width2 {
  width: 400px;
}

.grid-item img {
  width: 100%;
}

#masonry-colour-overview .grid-item {
  padding: 10px;
  float: left;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
  .grid-item,
  .grid-sizer {
    width: 50%;
  }
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
  .grid-item,
  .grid-sizer {
    width: 25%;
  }
}

.grid-item:focus {
  border: 2px solid #1b6875d8;
  border-radius: 3px;
}

.flip-book-container {
  height: 100vh;
}

.youtube-vid-container {
  position: relative;
  padding-top: 56.25%;
}

.youtube-vid {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
}

.lightbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  display: none;
  background: #7f8c8d;
  perspective: 1000;
  left: 0;
  z-index: 2000;
}

.filter {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(20px);
  opacity: 0.5;
  background-position: center;
  background-size: cover;
}

.lightbox img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(0deg);
  max-height: 95vh;
  max-width: calc(95vw - 100px);
  transition: 0.8s cubic-bezier(0.7, 0, 0.4, 1);
  transform-style: preserve-3d;
}

/*.lightbox:hover img{
  transform: translate(-50%, -50%) rotateY(180deg);
}*/

[class^="arrow"] {
  height: 200px;
  width: 50px;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

[class^="arrow"]:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 15px;
  height: 15px;
}

.arrowr {
  right: 0;
}

.arrowr:after {
  border-right: 1px solid white;
  border-bottom: 1px solid white;
}

.arrowl {
  left: 0;
}

.arrowl:after {
  border-left: 1px solid white;
  border-top: 1px solid white;
}

.close {
  position: absolute;
  right: 0;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.4);
  margin: 20px;
  cursor: pointer;
}

.close:after,
.close:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #1b6875;
}

.close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.title {
  font-size: 20px;
  color: #000;
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
}

.clearfix {
  clear: both;
}

.btn {
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 45px;
  margin: 0 0 2em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
}
@media (min-width: 600px) {
  .btn {
    margin: 0 1em 2em;
  }
}
.btn:hover {
  text-decoration: none;
}

.btn-1 {
  background: #e02c26;
  font-weight: 100;
}
.btn-1 svg {
  height: 45px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.btn-1 rect {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 422, 0;
  -webkit-transition: all 0.35s linear;
  transition: all 0.35s linear;
}

.btn-1:hover {
  background: rgba(225, 51, 45, 0);
  font-weight: 900;
  letter-spacing: 1px;
}
.btn-1:hover rect {
  stroke-width: 5;
  stroke-dasharray: 15, 310;
  stroke-dashoffset: 48;
  -webkit-transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-2 {
  letter-spacing: 0;
}

.btn-2:hover,
.btn-2:active {
  letter-spacing: 5px;
}

.btn-2:after,
.btn-2:before {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0);
  bottom: 0px;
  content: " ";
  display: block;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all 280ms ease-in-out;
  transition: all 280ms ease-in-out;
  width: 0;
}

.btn-2:hover:after,
.btn-2:hover:before {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-color: #fff;
  -webkit-transition: width 350ms ease-in-out;
  transition: width 350ms ease-in-out;
  width: 70%;
}

.btn-2:hover:before {
  bottom: auto;
  top: 0;
  width: 70%;
}

.btn-3 {
  background: #e3403a;
  border: 1px solid #da251f;
  box-shadow: 0px 2px 0 #d6251f, 2px 4px 6px #e02a24;
  font-weight: 900;
  letter-spacing: 1px;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}

.btn-3:hover {
  background: #e02c26;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
  color: #ec817d;
  text-decoration: none;
  text-shadow: -1px -1px 0 #c2211c;
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
}

.btn-4 {
  border: 1px solid;
  overflow: hidden;
  position: relative;
}
.btn-4 span {
  z-index: 20;
}
.btn-4:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}

.btn-4:hover:after {
  left: 120%;
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-5 {
  border: 0 solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  outline: 1px solid;
  outline-color: rgba(255, 255, 255, 0.5);
  outline-offset: 0px;
  text-shadow: none;
  -webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-5:hover {
  border: 1px solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(255, 255, 255, 0.2);
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  text-shadow: 1px 1px 2px #427388;
}

.btn {
  background: #1b6875d8;
  padding: 15px 40px;
  margin: 0;
}

@media screen and (max-width: 1000px) {
  .btn {
    padding: 5px 20px;
    font-size: 0.8em;
  }
}

.footer {
  background-color: #313036;
  color: #eeeeee;
}

.footer-logo {
  width: 100%;
  max-width: 240px;
}

.social-media {
  font-size: 27px;
  display: inline-block;
  margin-top: 0;
}

.social-media li {
  display: inline-block;
  margin-right: 10px;
  padding: 0;
}

.social-media li a {
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 42px;
  height: 42px;
  text-align: center;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
}

.social-media li a .fa {
  vertical-align: middle;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 800px) {
  .footer-flex {
    display: flex;
    flex-wrap: nowrap;
  }
}

.footer-flex .col {
  flex-grow: 1;
}

.footer-flex .fb-col {
  flex-grow: 0;
  min-width: 300px;
  width: 300px;
}

.footer-flex .fb-container {
  min-width: 300px;
  width: 300px;
}

.footer {
  margin-top: 150px;
}

.full-width {
  width: 100%;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.header .btn {
  background-color: transparent;
}

ul.unstyled {
  list-style: none;
}

.unstyled a {
  text-decoration: underline;
  color: inherit;
}

@media screen and (max-width: 450px) {
  .footer .col {
    width: 100%;
  }

  .navbar {
    height: 130px;
  }

  .navbar .container {
    height: 130px;
  }
}

.footer ul li {
  padding: 3px 0;
}

.pages-col {
  width: 50%;
}

blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
  color: #ccc;
  content: "“";
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}

.dreamcolour-content-container {
  min-height: 400px;
}

.dreamcolor-cake-container blockquote {
  min-height: 175px;
}

.dreamcolour-content-container blockquote {
  min-height: 200px;
}

@media screen and (max-width: 1200px) {
  .dreamcolour-content-container blockquote {
    min-height: 100px;
  }

  .dreamcolour-content-container {
    min-height: 240px;
  }
}

#pictures {
  overflow: hidden;
}

#pictures .grid-item:hover {
  transition: all 200ms ease;
  transform: scale(1.5);
  z-index: 100000;
}

@media screen and (max-width: 1200px) {
  #pictures .grid-item:hover {
    transition: all 200ms ease;
    transform: scale(1.1);
    z-index: 100000;
  }
}

#brochure-flipbook {
  height: 60vw;
  max-height: calc(100vh - 100px);
  min-height: 80vh;
}

#brochure-flipbook {
  background: #efefef;
}

.tutorial-card {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  width: 50%;
  border-bottom-right-radius: 40px;
}

.tutorial-card .image {
  height: 300px;
  background-position: center;
  background-size: cover;
}

/* On mouse-over, add a deeper shadow */
.tutorial-card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

/* Add some padding inside the card container */
.tutorial-card-container {
  padding: 2px 16px;
  padding-bottom: 10px;
}

.pictures-item {
  width: 33%;
  float: left;
}

@media screen and (max-width: 800px) {
  .pictures-item {
    width: 100%;
  }
}

.pictures-item img {
  width: 100%;
}

.tutorial-card {
  margin: 10px;
  float: left;
  width: calc(33.3% - 20.5px);
}

@media screen and (max-width: 800px) {
  .tutorial-card {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
}

.tutorial-card {
  text-decoration: inherit;
  color: inherit;
  transition: all 400ms ease;
  background-color: white;
  position: relative;
}

.tutorial-card h4 {
  font-size: 2em;
  margin: 10px 0;
}

.tutorial-card:hover {
  transform: scale(1.2);
  z-index: 1000;
}

.w-100 {
  width: 100%;
  overflow-x: hidden;
}

blockquote{
  font-size: 1.4em;
  font-family:Open Sans;
  font-style:italic;
  color: #555555;
  padding:1em 20px 1em 45px;
  border-left:8px solid #427388 ;
  position: relative;
  background:#EDEDED;
}

blockquote::before{
  font-family:Arial;
  content: "\201C";
  color:#427388;
  font-size:4em;
  position: absolute;
  left: 0px;
  top: 40px;
}

blockquote::after{
  content: '';
}

