  /* GLOBAL */
html, body{
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
  scroll-behavior: smooth;
  min-width: 320px;
  position: relative;
}

body{
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

a {
    text-decoration: none;
    color: #f01880;
    transition: color .25s;
  }

  img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    border-radius: 5px;
  }

  h1  {
    color: #f01880;
  }

  @media only screen and (min-width: 768px){
    h1{
      font-size: 2.2rem;
  }
  }

h2{
  font-size: 1.5rem;
}

.bold{
  font-weight: bold;
}

ul li {
  list-style-type: none;
}

.button.pink{
  width: auto;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  padding: 10px 20px;
  background: #f01880;
  text-decoration: none;
}

.button.yellow{
  width: auto;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  padding: 10px 20px;
  background: #f0cf1e;
  text-decoration: none;
}

  /* FORM */

label{
  width: 100%;
  display: flex;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 15px;
  cursor: pointer;
}

.input-box em{
  color: #6e6e6e;
  font-weight: 300;
  text-align: right;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 10px;
}

input:focus, form textarea:focus{
  box-shadow: 0 0 5px #f01880;
  outline: none;
}

form input[type="email"], form input[type="tel"], 
form input[type="text"], form select, form textarea{
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  margin-top: 5px;
  width: 100%;
  color: #f01880;
  font-weight: normal;
  border: 1px solid #ffffff;
}

button[type="submit"]{
  width: auto;
  font-weight: 700;
  display: inline-block;
  border-radius: 5px;
  padding: 15px 55px;
  background: #f01880;
  cursor: pointer;
  border: none;
  color: #fff;
}

.input-box.box-50{
  display: inline-block;
}


@media only screen and (min-width: 992px) {
  form textarea{
    width: calc(100% - 10px);
  }
}

.box-50{
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .box-50 {
    width: calc(50% - 10px);
    margin-right: 5px;
  }
}

.box-100{
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .rr{
    rotate: 3deg;
  }

  .rl{
    rotate:-3deg;
  }
}

.wrap{
	max-width: 1440px;
 	margin: 0 auto;
 	padding: 50px 20px;
}

@media only screen and (min-width: 992px){
	.wrap{
		padding: 120px 5rem;
	}
}

  /* HEADER */
header{
  background-color: #ffffff;
  position: fixed;
  left: 0;
  top:0;
  width: 100%;
}

header .wrap{
  display: flex;
  align-content: space-between;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo{
  width: 120px;
}

@media only screen and (min-width: 768px){
  .logo{
    min-width: 120px;
  }
}

  /* NAV */
.overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
  background: #000;
  z-index: -1;
}

#hamburger-input{
display: none;
}

#hamburger-menu {
  position: fixed;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 25px;
  display: none;
  border: none;
  padding: 0px;
  margin: 0px;
  background: linear-gradient(
    to bottom, 
    #f01880, #f01880 20%, 
    white 20%, white 40%, 
    #f01880 40%, #f01880 60%, 
    white 60%, white 80%, 
    #f01880 80%, #f01880 100%);
}

#hamburger-menu #sidebar-menu {
  visibility: hidden;
  position: fixed;
  top: 69px;
  right: -250px;
  width: 50%;
  height: 100%;
  background-color: #f01880;
  transition: 0.3s;
  padding: 0px 10px;
  box-sizing: border-box;
}

@media only screen and (max-width: 540px){
  #hamburger-menu #sidebar-menu {
    width: 100%;
  }
}

#hamburger-menu ul {
padding-left: 0px;
}

#hamburger-menu li {
list-style-type: none;
line-height: 3rem;
padding: 1rem .5rem;
text-align: center;
}

#hamburger-menu a {
color: #fff;
font-size: 1.3rem;
text-decoration: none;
font-weight: normal;
}

#hamburger-menu a:hover {
text-decoration: none;
}

#hamburger-input:checked + #hamburger-menu #sidebar-menu {
  visibility: visible;
  right: 0;
}

#hamburger-input:checked ~ .overlay{
  visibility: visible;
  opacity: 0.4;
  padding: 1rem;
}

#main-menu ul {
  width: 100%;
  height: 100%;
  margin: 0px auto;
  padding: 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: -8px;
  }
  
  #main-menu li {
  list-style-type: none;
  font-size: 2rem;
  margin-right: 2rem;
  
  }
  
  #main-menu a.active{
    color: #f01880;
    font-weight: bold;
  }

  #main-menu a {
  color: #000;
  font-size: .9rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  }

  @media screen and (min-width: 992px) {
    #main-menu a{
      font-size: 1.1rem;
    }
  }
  
  #main-menu a:hover {
  text-decoration: none;
  }

#main-menu {
  display: block;
  height: 100px;
  width: 100%;
  background: #fff;
  margin: 0px;  
  }

@media screen and (max-width: 768px) {
  #main-menu {
    display: none;
  }
  #hamburger-menu {
    display: inline;
  }
}


  /* HERO */
#hero .wrap{
  padding: 0 20px;
}

.hero {
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                    url("img/hero.jpg");
  align-self: center;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  margin-top: 75px;
  height: 50vh;
}

@media only screen and (min-width: 540px){
  .hero{
    height: 80vh;
  }
}

@media only screen and (min-width: 768px){
  #hero .wrap{
    padding: 0 5rem;
  }
}

.hero-text{
  color:#fff;
}

.hero-text h2{
  font-size: 1.5rem;
}

@media only screen and (min-width: 768px){
  .hero-text{
    max-width: 980px;
  }
}

@media only screen and (max-width: 480px){
  .hero{
    height: 45vh;
  }
}

.hero h1{
 color: #ffffff;
}

.hero p.hero-subtitle{
  font-size: .8rem;
  margin-top: 0;
  padding-bottom: 1rem;
}

@media only screen and (min-width: 540px){
  .hero-text{
    font-size: 1.9rem;
  }
  .hero-text h2{
    font-size: 2.3rem;
  }
  .hero p.hero-subtitle{
    font-size: 1.3rem;
  }
}

@media only screen and (min-width: 980px){
  .hero h2{
    font-size: 2.8rem;
  }

  .hero p.hero-subtitle{
    font-size: 2rem;
  }
}

#hero a.button.yellow{
  padding: 5px 10px;
  font-weight: normal;
  font-size: 1.1rem;
  background-color: #C0A617 !important;
}


@media only screen and (min-width: 540px){
#hero a.button.yellow{
  padding: 10px 20px;
}
}

  /* INTRO */
#intro .wrap, #thanks .content{
  display: flex;
  flex-direction: column;
}

.text-left{
  flex: 1;
}

.text-right{
  flex: 3;
}

@media only screen and (min-width: 768px){
  #intro .wrap, #thanks .content{
    flex-direction: row;
    gap: 1.6rem;
}

.text-right{
  line-height: 1.8rem;
}
}

.content{
  display: flex;
}

#thanks .content{
  background-color: #fff;
  border-radius: 5px;
}

#thanks .text-right img{
  border-radius: 0 0 5px 5px;
}

@media only screen and (min-width: 768px){
  #thanks .text-right img{
    border-radius: 5px;
  }
}

#thanks p{
  margin-top: 3rem;
}

@media only screen and (min-width: 768px){
  #thanks .content{
    background-color: transparent;
}
}


#thanks .text-left{
  background-color: #fff;
  padding: 2rem;
  border-radius: 5px;
  flex: 3;
}

  /* SERVICES CARDS */
#services{
  background-color: #f0cf18;
  background-image: url(img/bg-hero.jpg);
}

#services .wrap{
  padding: 50px 20px;
}

#services h2{
  text-transform: uppercase;
  letter-spacing: .3rem;
  color: #ffffff;
}

.cards{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

@media only screen and (min-width: 768px){
  .cards{
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
}
}

@media only screen and (max-width: 768px){
  .cards{
    flex-direction: row;
    flex-wrap: wrap;
}
}

.card{
  background: #fff;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.card a{
  color: #000000;
  text-decoration: none;
}

.card a:hover{
  box-shadow: 3px 3px 8px hsl(0, 0%, 80%);
}

.card-content{
  padding: 1.4em;
}

.card-content h2{
  margin-top: 0;
  margin-bottom: .5em;
  font-weight: bold;
}

.card-content h4{
  font-size: 1.2em;
  font-weight: bold;
}

.card-content p{
  font-size: 80%;
}

.card-img{
  object-fit: cover;
  height: 200px;
}

  /* TESTIMONIALS */
.main-text{
  margin-bottom: 2rem;
}

.testimonial-boxes{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-direction: column;
}

@media only screen and (min-width: 768px){
  .testimonial-boxes, #partneri{
    flex-wrap: nowrap;
  }
}

@media only screen and (min-width: 992px){
  .testimonial-boxes{
    flex-direction: row;
  }
}

.testimonial-box{
  background-color: #f0cf1e;
  padding: .8rem;
  box-shadow: 1px 1px 3px #8a8686;
  border-radius: 5px;
}

.testimonial-box p{
  font-style: italic;
  font-size: .9rem;
}

#testimonials .main-text h1, #testimonials .partneri h1, #portfolio .wrap h1, #services .wrap h1{
  margin-top: 0;
  color: #f01880;
}

#partneri .wrap{
  padding-top:0;
}

#partneri .works {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 65px;
}

#partneri img{
    padding-right: 2rem;
    width: 100%;
    height: 100%;
}

@media only screen and (min-width: 540px){
  #partneri .works {
    width: 400px;
  }
}


  /* PORTFOLIO */
#portfolio, #media{
    background-color: #faf0bb;
  }


  @media only screen and (max-width: 768px){
    #portfolio{
      display: none;
    }

  }

#portfolio h1{
  color: #000000;
}

.works{
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.works img{
  background-size: cover;
  max-height: 500px;
  border-radius: 5px;
}


  /* CONTACT */
#contact{
  background-color: #f4f4fb;
  background-size: 10px 10px;
  background-image: repeating-linear-gradient(-45deg, #fcebf5 0, #fcebf5 1px, #f4f4fb 0, #f4f4fb 50%);
}

#contact .wrap{
  gap: 3rem;
  justify-content: space-between;
}

@media only screen and (min-width: 768px){
  #contact .wrap{
    flex-direction: row;
  }
}

#contact ul{
  padding-left: 0;
}

#contact ul li{
  width: auto;
  display: flex;
  line-height: 2rem;;
}

#contact ul li a{
  display: block;
  color: #000;
}

#contact ul li img{
  max-width: 20px;
  height: auto;
  margin-right: .8rem;
}

.contact-text h2{
  font-weight: normal;
  color: #f01880;
}

#contact label{
  display: inline;
}

#contact .contact-form p{
  margin-top: 5px;
}

#contact .contact-form p.submit-box input{
  font-size: 1rem;
}


input[type="submit"].submit:hover{
  background-color: #a72a73;
}

  /* FOOTER */
footer, #footer a{
  background-color: #000000;
  color: #fff;
}

footer{
  position: relative;
  border-top: 1px solid #f0cf1e;
}

footer .wrap, #contact .wrap{
  padding: 50px 20px 0 20px;
  display: flex;
  flex-direction: column;
}

#contact .wrap{
  padding-bottom: 50px;
}

#footer .basic-info p, #footer .social{
  margin: .3rem 3rem .3rem 0;
}

@media only screen and (min-width: 540px){
  #footer .footer-content{
    display: flex;
    flex-direction: row;
    column-count: 2;
  }
  #footer .basic-info p{
    margin: .3rem 3rem .3rem 0;
  }
}

.social ul, .makerworld{
  margin-top: 2rem;
}

.social .makerworld img{
  width: 200px;
  height: auto;
  margin-right: 0;
}

.company-info{
  font-size: .8rem;
}

.copy{
  border-top: 1px solid #6e6e6e;
  padding-top: 10px;
}

.social ul{
  padding-left: 0;
}

.social ul li{
  margin-top: 8px; 
}

footer .social img{
  width: 15px;
  height: auto;
  margin-right: .8rem;
}

#footer .contact-item{
  display: flex;
}

.top{
  position: fixed;
  position: sticky;
  background-color: #f01880;
  color: #fff;
  border-radius: 10px;
  padding: .5rem;
  pointer-events: all;
  top: calc(100vh - 3rem);
}

.top-wrapper{
  position: absolute;
  top: 250vh;
  bottom: 5px;
  width: 15rem;
  pointer-events: none;
}

@media only screen and (min-width: 768px){
  .top-wrapper{
  display: none;
}
}

  /* O NAMA */

#general-about .wrap .text-left{
  flex: 1;
}

#general-about .wrap .text-right{
  flex: 1;
}

@media only screen and (min-width: 1440px){
  #general-about .wrap, #media .wrap{
    flex-direction: row;
}
}

#about .wrap, #media .wrap{
  display: flex;
  flex-direction: column;
}

#about .wrap .text-left, #media .wrap .text-left{
  flex: 1;
}

#about .wrap .text-right, #media .wrap .text-right{
  flex: 3;
}

@media only screen and (min-width: 992px){
  #about .wrap, #media .wrap{
    flex-direction: row;
    gap: 5rem;
    align-items: flex-start;
}
#about .wrap .text-right, #media .wrap .text-right{
  flex: 1;
}
}

#media img{
  border: 1px solid #e6dede;
  padding: 1rem;
  border-radius: 5px;
  background-color: #fff;
}

#media p{
  font-style: italic;
  line-height: 1.8rem;
  font-size: 1.2rem;
}

@media only screen and (max-width: 992px){
figure.text-right{
  margin-left:0;
  margin-right: 0;
}
}

figcaption{
  color: #454444;
  text-align: center;
}

#general-about .text-left h1{
  margin-top: 50px;
}

@media only screen and (min-width: 768px){
  #general-about .text-left h1{
    margin-top: 75px;
  }
}

#about .text-right img{
  margin-top: 2rem;
}

.portfolio-packages{
  background-color: #ffffff !important;
}

  /* CANDLES */
#intro-candles, #intro-3dprint, #thanks, #general-about, #intro-3dscan{
  background-color: #f0cf18;
  background-image: url(img/bg-hero.jpg);
}

#intro-candles .wrap, #intro-3dprint .wrap, #testimonials .wrap, #partneri .wrap, #intro-3dscan .wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#intro-candles .wrap,  #intro-3dprint .wrap, #intro-3dscan .wrap, #thanks .wrap{
  margin-top: 99px;
}

#intro-candles h1, #portfolio-candles h1, #intro-3dprint h1, #portfolio-3dprint h1{
  margin-bottom: 0;
  margin-top: 0;
}

@media only screen and (min-width: 768px) {
  #thanks .text-right .img img{
    margin-top: 2rem;
  }
}

#thanks .text-right{
  flex: 3;
}

  /* 3D SCAN */
  .image-fit{
    margin-bottom: 2rem;
    overflow: hidden;
  }

.image.fit img {
	width: 100%;
	height: auto;
}

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

.image {
  border-radius: 4px;
  border: 0;
  display: inline-block;
  position: relative;
}

  .image img {
    border-radius: 4px;
    display: block;
  }


  .image.fit {
    display: block;
    margin: 0 0 2em 0;
    width: 100%;
  }

    .image.fit img {
      width: 100%;
    }

    /* COLUMNS */
    .columns {
    
      -moz-column-count: 4;
      -webkit-column-count: 4;
      column-count: 4;
      -moz-column-gap: 1em;
      -webkit-column-gap: 1em;
      column-gap: 1em;
    }
  
      .columns .image {
        position: relative;
        display: inline-block;
        margin: 0 0 .5em;
        width: 100%;
        overflow: hidden;
      }
  
        .columns .image img {
          -moz-transition: -moz-transform 0.2s ease-in-out;
          -webkit-transition: -webkit-transform 0.2s ease-in-out;
          -ms-transition: -ms-transform 0.2s ease-in-out;
          transition: transform 0.2s ease-in-out;
          -webkit-backface-visibility: hidden;
          -webkit-transform: translate3D(0, 0, 0);
        }
  
        .columns .image:hover img {
          -moz-transform: scale(1.1);
          -webkit-transform: scale(1.1);
          -ms-transform: scale(1.1);
          transform: scale(1.1);
        }
  
      @media screen and (max-width: 736px) {
  
        .columns {
          -moz-column-count: 2;
          -webkit-column-count: 2;
          column-count: 2;
        }
  
      }
  
      @media screen and (max-width: 480px) {
  
        .columns {
          -moz-column-count: 1;
          -webkit-column-count: 1;
          column-count: 1;
        }
  
      }

    