/* 
=======================================
AMOIRÉ ::: Portfolio Ayleen Sanhueza R.
created by Natuchasca ::: 2018
github.com/natuchasca
=======================================
*/


/* 
=======================================
COLORS
=======================================
*/
.primary-color { color: #009688; }
.bg-primary { background-color: #009688; }

.background-cyan { background-color: #68e4ae; }
.background-blue { background-color: #5bcdc3; }
.background-orange { background-color: #ff9b07; }
.background-red { background-color: #f24632; }
.background-magenta { background-color: #df5265; }
.background-yellow { background-color: #f9e932; }
.cyan { color: #68e4ae; }
.blue { color: #5bcdc3; }
.orange { color: #ff9b07; }
.red { color: #f24632; }
.magenta { color: #df5265; }
.yellow { color: #f9e932; }

button.btn-pantone {
  color: #ffffff;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  padding: 10px;
}
.pantone-cyan {
  color: #fff;
  background-color: #009688;
  border: 1px dashed #009688;
}
button.btn-pantone.cyan {
  box-shadow: none;
  color: #00796B;
  background-color: #ffffff;
  border-color: #00796B;
}
button.btn-pantone.cyan:hover,
button.btn-pantone.cyan.active {
  color: #ffffff;
  background-color: #009688;
  border: 1px solid #009688;
}

.pantone-blue {
  color: #fff;
  background-color: #5bcdc3;
  border: 1px dashed #5bcdc3;
}
button.btn-pantone.blue {
  color: #5bcdc3;
  background-color: #ffffff;
  border: 1px solid #5bcdc3;
}
button.btn-pantone.blue:hover,
button.btn-pantone.blue.active {
  box-shadow: none;
  color: #ffffff;
  background-color: #5bcdc3;
  border-color: #5bcdc3;
}

.pantone-orange {
  color: #fff;
  background-color: #ff9b07;
  border: 1px dashed #ff9b07;
}
button.btn-pantone.orange {
  color: #ff9b07;
  background-color: #ffffff;
  border: 1px solid #ff9b07;
}
button.btn-pantone.orange:hover,
button.btn-pantone.orange.active {
  box-shadow: none;
  color: #ffffff;
  background-color: #ff9b07;
  border-color: #ff9b07;
}

.pantone-red {
  color: #fff;
  background-color: #f24632;
  border: 1px dashed #f24632;
}
button.btn-pantone.red {
  color: #f24632;
  background-color: #ffffff;
  border: 1px solid #f24632;
}
button.btn-pantone.red:hover,
button.btn-pantone.red.active {
  box-shadow: none;
  color: #ffffff;
  background-color: #f24632;
  border-color: #f24632;
}

.pantone-magenta {
  color: #fff;
  background-color: #df5265;
  border: 1px dashed #df5265;
}
button.btn-pantone.magenta {
  color: #df5265;
  background-color: #ffffff;
  border: 1px solid #df5265;
}
button.btn-pantone.magenta:hover,
button.btn-pantone.magenta.active {
  box-shadow: none;
  color: #ffffff;
  background-color: #df5265;
  border-color: #df5265;
}

.pantone-yellow {
  color: #fff;
  background-color: #f9e932;
  border: 1px dashed #f9e932;
}
button.btn-pantone.yellow {
  color: #f9e932;
  background-color: #ffffff;
  border: 1px solid #f9e932;
}
button.btn-pantone.yellow:hover,
button.btn-pantone.yellow.active {
  box-shadow: none;
  color: #ffffff;
  background-color: #f9e932;
  border-color: #f9e932;
}



/* 
=======================================
FONTS
Titles -> Wox
Subtitles -> Rio
Parrafes -> Vegur
=======================================
*/
@font-face {
  font-family: 'Vegur-Light';
    src: url('../fonts/original_Vegur-Light.eot?#iefix') format('embedded-opentype'), 
         url('../fonts/original_Vegur-Light.woff') format('woff'),
         url('../fonts/original_Vegur-Light.ttf') format('truetype'),
         url('../fonts/original_Vegur-Light.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'woxmodelist_demoregular';
  src: url('../fonts/wox_modelist_regular-webfont.woff2') format('woff2'),
       url('../fonts/wox_modelist_regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}


/* 
=======================================
BASICS & HELPERS
=======================================
*/
body {
  -webkit-font-smoothing: subpixel-antialiased;
  background: #111111;
  font-family: 'Vegur-Light';
  font-size: 18px;
  overflow: hidden;
}
body.is-loaded {
  overflow: auto;
}
.wrapper {
  max-width: 100%;
  overflow: hidden;
  background: #ffffff;
  -webkit-transition: all .55s ease-out;
  transition: all .55s ease-out;
  opacity: 0;
}
.is-loaded .wrapper {
  opacity: 1;
}
.wrapper.blur {
  -webkit-filter: blur(2px);
          filter: blur(2px);
  opacity: .55;
}
a {
  color: #ffffff;
  font-weight: 600;
}
a:hover {
  color: #00796B;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'woxmodelist_demoregular', Arial, sans-serif;
  font-weight: 600;
}
p {
	font-family: 'Vegur-Light';
	line-height: 1;
  font-size: 16px;
}
.padding-sections {
  padding: 70px 0;
}
.no-padding {
  padding-left: 0;
  padding-right: 0;
}
hr.creative {
  width: 30%;
  overflow: visible; /* For IE */
  padding: 0;
  border: none;
  border-top: medium double #333;
  color: #333;
  text-align: center;
}
hr.creative:after {
  content: "*";
  display: inline-block;
  position: relative;
  top: -0.7em;
  font-size: 1.5em;
  padding: 0 0.25em;
  background: #ffffff;
}



/* 
=======================================
CENTER NAV 
=======================================
*/
.navbar-inverse {
  background-color: #111111;
  border-color: #111111;
}
.navbar-brand.navbar-brand-centered {
  position: absolute;
  left: 50%;
  display: block;
  width: 200px;
  text-align: center;
  background-color: transparent;
  padding: 0;
  overflow: visible;
}
.navbar-brand-centered a img {
  height: 100px;
  width: auto;
}
.navbar>.container .navbar-brand-centered, 
.navbar>.container-fluid .navbar-brand-centered {
  margin-left: -150px;
}
.nav.navbar-nav.navbar-left {
  margin-left: 50px;
}
.nav.navbar-nav.navbar-right {
  margin-right: 50px;
}
.navbar-brand {
  overflow: hidden;
}
.nav.navbar-nav li {
  width: 100px;
  text-align: center;
  font-size: 2rem;
}
.contact-bar li {
  min-width: 200px;
}
.contact-bar li a {
  display: inline-block;
}


/* 
=======================================
HEADER FADE CARRUSEL
=======================================
*/
header {
  background-color: #000000;
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 100vh;
}


.fondo{
  background-size: cover;
}
.fondo-fixed{
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
}
.fondo-1 {
  background-image: url("https://static.domain.com.au/domainblog/uploads/2017/12/08102016/2_h012om.jpg");
  opacity: 0.5;
  background-size: cover;
}
.fondo-2 {
  background-image: url("http://www.radclyffeprinters.co.uk/images/services/service12.jpg");
  opacity: 0.5;
  background-size: cover;
}
.modulo-alto {
  padding: 1em;
  min-height: 100vh;
  text-align: center;
}
.big-module {
  padding: 1em;
  min-height: 120vh;
  text-align: center;
}
.poligon-module {
  -webkit-clip-path: polygon(0 39%, 100% 0, 100% 63%, 0 100%);
  clip-path: polygon(0 39%, 100% 0, 100% 63%, 0 100%);
  background-color: #000000;
}
.big {
  font-size: 3em;
}
header h1 {
  margin: 0;
}
h1.big-title {
  font-size: 40px;
  font-size: 5em;
  font-weight: 600;
}
header h1 {
  font-size: 2.5em;
}
header p {
  font-size: 2rem;
}
.sider-title {
  position: absolute;
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  height: 100%;
  bottom: 0;
  color: #000000;
  background-color: #ffffff;
  width: 40%;
  padding: 70px 100px;
  word-break: break-word;
  margin: 0;
  z-index: 999;
}
.sider-text-box {
  width: 70%;
  height: auto;
}
.header-logo {
  width: 100%;
  height: 100%;
  border-radius: 200px;
  margin: 10px auto;
}

/* Fade Carousel */
.carousel,
.carousel-inner,
.carousel-inner .item {
  height: 100%;
}
.carousel {
  padding: 0;
}
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}
.item, .item.active {
  height: 100%;
}
.carousel-inner .item img {
  opacity: 0.5;
  height: 100vh;
  width: 100%;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-fade .carousel-inner > .item.next,
  .carousel-fade .carousel-inner > .item.active.right {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.prev,
  .carousel-fade .carousel-inner > .item.active.left {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.next.left,
  .carousel-fade .carousel-inner > .item.prev.right,
  .carousel-fade .carousel-inner > .item.active {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}


/* ScrollDown button header */
header .scroll-down {
  position: absolute;
  width: 100%;
  bottom: 10%;
  text-align: right;
  right: 5%;
  z-index: 999;
}
header .scroll-down .btn {
  height: 50px;
  width: 50px;
  border: 2px solid #ffffff;
  border-radius: 100% !important;
  line-height: 50px;
  padding: 0;
  letter-spacing: normal;
  color: #ffffff;
  font-size: 30px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
header .scroll-down .btn:hover {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}


/* BIO */
.bio-icon {
	font-size: 50px;
	margin-top: 15px;
}


/* 
=======================================
WORKS
=======================================
*/
/* Works Nav */
/*ul.nav.nav-pills {
  max-width: 500px;
  margin: 0 auto;
}
ul.nav.nav-pills li a {
  color: #ffffff;
  background-color: #009688;
  border: 1px solid #009688;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
ul.nav.nav-pills li a:hover {
  color: #fff;
  background-color: #00796B;
  border-color: #ffffff;
}*/
.works-buttons {
  margin: 10px auto;
}

/* Pantone Card */
.works-container-flex {
  display: flex;
}
.work-container {
	margin: 10px 0;
/*  background-color: #f5f6fa;
  background-color: #ffffff;
  color: #000000;*/
  /*-moz-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.3);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.3);
  box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.3);
  -webkit-transition: all 800ms ease-in-out;
  -moz-transition: all 800ms ease-in-out;
  -ms-transition: all 800ms ease-in-out;
  -o-transition: all 800ms ease-in-out;
  transition: all 800ms ease-in-out;*/
  background: none;
  /*border: 0;*/
  /*border: 2px solid rgba(0,0,0,0.21);*/
  box-sizing: border-box;
  /*padding: 1em 2em;*/
  /*box-shadow: inset 0 0 0 2px rgba(0,0,0,0.21);*/
  /*color: #f45e61;*/
  font-size: inherit;
  /*font-weight: 700;*/
  position: relative;
  /*vertical-align: middle;*/
  box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.work-container a {
  text-decoration: none;
}
.work-container::before, .work-container::after {
  box-sizing: inherit;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}
.work-container:hover {
  transform: scale(1.05);
  -webkit-box-shadow: 0 10px 6px -6px #777;
  -moz-box-shadow: 0 10px 6px -6px #777;
  box-shadow: 0 10px 6px -6px #777;
}

/*.draw {
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}
.draw::before, .draw::after {
  border: 2px solid transparent;
  width: 0;
  height: 0;
}
.draw::before {
  top: 0;
  left: 0;
}
.draw::after {
  bottom: 0;
  right: 0;
}
.draw:hover {
  color: #60daaa;
}
.draw:hover::before, .draw:hover::after {
  width: 100%;
  height: 100%;
}
.draw:hover::before {
  border-top-color: #60daaa;
  border-right-color: #60daaa;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
.draw:hover::after {
  border-bottom-color: #60daaa;
  border-left-color: #60daaa;
  -webkit-transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}*/
/*.work-container:hover {
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 150, 136, 0.3);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 150, 136, 0.3);
  box-shadow: 2px 2px 5px 1px rgba(0, 150, 136, 0.3);
}*/
.work-item {
  height: 250px;
  width: 100%;
  overflow: hidden;
  /*background-color: #ffffff;*/
  text-align: center;
}
.work-item img {
  display: inline-block;
  vertical-align: middle;
  /*max-height: 100%;*/
  /*  height: 250px;*/
  width: 100%;
}
.work-description {
  height: 100%;
  width: 100%;
  position: absolute;
	padding: 10px;
  color: #fff;
  background-color: rgba(0, 150, 136, 0.9);
  top: 0;
  opacity: 0;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.work-description h3 {
  text-transform: uppercase;
  margin: 0;
  /*font-size: 16px;*/
}
.work-description h3 span {
  font-family: 'Vegur-Light';
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 300;
}
span.subtle {
	font-family: 'Vegur-Light';
}
.work-container .work-description:hover {
  opacity: 1;
}


/* 
=======================================
BIO
=======================================
*/
.bio-img {
  margin-top: 50px;
  width: 90%;
}


/* 
=======================================
FOOTER
=======================================
*/
footer {
	background-color: #111111;
	color: #ffffff;
	padding: 20px 0 10px 0;
}



/* 
=======================================
SCROLL TO TOP BUTTON
=======================================
*/
.scrollToTop {
  color: #fff;
  position: fixed;
  bottom: 5px;
  right: 5px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1005;
  display: none;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.scrollToTop i {
  line-height: 45px;
  font-size: 24px;
}
.scrollToTop:hover {
  background-color: rgba(0, 0, 0, 0.6);
}



/* WORKS EXPANDED */
/*
 * ==== hexagon
 */
.full-work-item {
  position: relative;
}
.works-details {
  width: 100%;
  height: 100%;
  /*position: absolute;
  bottom: 10%;*/
}
dt {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  margin-top: 10px;
}
.hexa, .hexa div {
  margin: 0 auto;
  transform-origin: 50% 50%;
  overflow: hidden;
  width: 300px;
  height: 300px;
}

.hexa {
  width: 325px;
  height: 230px;
}
.hexa div {
  width: 100%;
  height: 100%;
}
.hexa {
  transform: rotate(120deg);
}
.hex1 {
  transform: rotate(-60deg);
}
.hex2 {
  transform: rotate(-60deg);
}

.hexa.big {
  width: 100%;
  height: 100%;
}
.hexa.pull-right {
  margin-top: -230px;
}
.hexa.pull-left {
  margin-top: 230px;
}



/* img grid */
.wrapper-grid {
  margin: 40px;
  display: grid;
  grid-gap: 5px;
  grid-template-columns: 32% 32% 32%;
  background-color: #fff;
  color: #444;
}

.box {
  /*background-color: #444;*/
  color: #fff;
  /*border-radius: 5px;
  padding: 20px;*/
  /*font-size: 150%;*/
  /*max-height: 300px;*/
  overflow: hidden;
  color: #000;
  border: 1px dashed #000000;
}
.box img {
  width: 100%;
  height: 100%;
}

.a {
  grid-column: 1 / 3;
  grid-row: 1;
}
.b {
  grid-column: 3 ;
  grid-row: 1 / 3;
}
.c {
  grid-column: 1 ;
  grid-row: 2 ;
}
.d {
  grid-column: 2;
  grid-row: 2;
}




/* 
=======================================
SIDR MOBILE MENÚ
=======================================
*/
#sidr {
  background: #111111;
  box-shadow: none !important;
}
.sidr {
  z-index: 9 !important;
}
.sidr ul {
  border-bottom: 1px solid transparent !important;
}
.sidr ul li {
  border-top: 1px solid transparent !important;
}
.sidr ul li a, 
.sidr ul li span {
  font-weight: 300;
}
.sidr ul li a i {
  margin-right: 10px;
}
#sidr li.logo img.sidr-logo {
  height: 100px;
  width: 100px;
  border-radius: 100px;
  margin: 30px auto;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}



.work-image {
  height: 300px;
  height: auto;
  display: inline;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

#parallelogram {
  width: 250px;
  min-height: 630px;
  height: 100%;
  -webkit-transform: skew(20deg);
     -moz-transform: skew(20deg);
       -o-transform: skew(20deg);
  /*background: red;*/
  overflow: hidden;
}

.back-image {
  background-image: url("carousel1.jpg");
  background-size: cover;
  background-position: center;
}

.img {
  background-image: url("http://www.radclyffeprinters.co.uk/images/services/service12.jpg");
}



.hexagon {
  position: relative;
  width: 200px;
  height: 115.47px;
  background-color: #ffffff;
  /*background: linear-gradient(-45deg, rgb(8, 174, 234) 0%, rgb(42, 245, 152) 100%);*/
  margin: 70px auto;
  border-left: solid 2px #009688;
  border-right: solid 2px #009688;
}
.hexagon:before,
.hexagon:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 141.42px;
  height: 141.42px;
  -webkit-transform: scaleY(0.5774) rotate(-45deg);
  -ms-transform: scaleY(0.5774) rotate(-45deg);
  transform: scaleY(0.5774) rotate(-45deg);
  background-color: inherit;
  left: 27.2893px;
}
.hexagon:before {
  top: -70.7107px;
  border-top: solid 2.8284px #009688;
  border-right: solid 2.8284px #009688;
}
.hexagon:after {
  bottom: -70.7107px;
  border-bottom: solid 2.8284px #009688;
  border-left: solid 2.8284px #009688;
}
.text{
  position: absolute;
  z-index: 1000;
  width: 100%;
  top: 0px;
  text-align: center;
}
.hexagon .text h3 {
  margin-top: 5px;
}
.hexagon i.fa {
  color: #009688;
  position: absolute;
  top: -90px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  width: 60px;
  background: #fff;
}




/* 
=======================================
WORKS EXPANDED
=======================================
*/
.work-expanded {
  padding-top: 50px;
  min-height: 90vh;
}
.fixed-work-description {
  height: 100%;
  /*min-height: 90vh;*/
  padding: 1.5rem 10px;
  position: fixed;
  width: inherit;
}
.fixed-work-description h1 {
  font-family: 'Vegur-Light';
}
.work-images-grid {
  height: 100%;
  /*min-height: 90vh;*/
}
.work-images-grid img {
  /*width: 90%;*/
  height: auto;
  margin-bottom: 50px;
}



/* 
=======================================
MEDIA QUERIES
=======================================
*/
/* Small devices (tablets, phones less than 767px) */
@media (max-width: 767px) {
  /*button.navbar-toggle span.icon-bar {
    width: 15px;
    height: 4px;
    border-radius: 0;
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -ms-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
  }
  button.navbar-toggle:focus,
  button.navbar-toggle:hover {
    background-color: #ffffff;
  }
  button.navbar-toggle:focus span.icon-bar,
  button.navbar-toggle:hover span.icon-bar {
    background-color: #333;
  }
*/
  .navbar-transparent {
    background-color: transparent;
    border-color: transparent;
  }
  #mobile-menu-toggle {
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

    border: none;
    /*background: transparent !important;*/
    float: none;
    position: absolute;
    top: 20%;
    right: 2%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    z-index: 10;
  }
  /*#mobile-menu-toggle.is-open {
    right: 49%;
  }*/
  #mobile-menu-toggle:hover {
    /*background: transparent !important;*/
    background-color: rgba(0, 0, 0, 0.6);
  }
  #mobile-menu-toggle .icon-bar {
    width: 20px;
    height: 4px;
    border-radius: 0px;
    background-color: #FFF;
    transition: all 0.2s;
    margin: 3px auto;
  }
  #mobile-menu-toggle.is-open .top-bar {
    transform: rotate(45deg);
    transform-origin: 0% 90%;
  }
  #mobile-menu-toggle.is-open .middle-bar {
    opacity: 0;
  }
  #mobile-menu-toggle.is-open .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 5% 10%;
  }
  #mobile-menu-toggle .top-bar {
    transform: rotate(0);
  }
  #mobile-menu-toggle .middle-bar {
    opacity: 1;
  }
  #mobile-menu-toggle .bottom-bar {
    transform: rotate(0);
  }


  .scrollToTop {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .scrollToTop i {
    line-height: 35px;
    font-size: 20px;
  }
  header .scroll-down {
    bottom: 5%;
  }
  .sider-title {
    width: 60%;
    padding: 20px 40px;
    height: 100vh;
  }
  .sider-text-box {
    position: absolute;
    left: 10%;
    bottom: 20%;
    width: 70%;
    height: auto;
  }
  .big {
    font-size: 2em;
  }
  header p {
    font-size: 2rem;
  }
  .btn-pantone {
    display: block;
    width: 100%;
    margin: 2px;
  }
  .wrapper-grid {
    margin: 10px;
  }
  .a {
    grid-column: 1 / 4;
    grid-row: 2;
  }
  .b {
    grid-column: 1 / 4;
    grid-row: 3;
  }
  .c {
    grid-column: 1 / 4;
    grid-row: 1 ;
  }
  .d {
    grid-column: 1 / 4;
    grid-row: 4;
  }

  .fixed-work-description {
    position: relative;
    display: block;
  }
  .work-images-grid img {
    margin-left: auto;
    margin-right: auto;
  }
  .bio-img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .about h1 {
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

}
/* 767px and Up */
@media (min-width: 767px) {
  .navbar>.container .navbar-brand-centered, 
  .navbar>.container-fluid .navbar-brand-centered {
      margin-left: -120px;
  }
}

@media (max-width: 1000px) {
  header h1 {
    font-size: 4rem;
  }
  .sider-title {
    width: 60%;
    padding: 40px 40px;
    height: 100vh;
  }
}


/* 
=======================================
LOADING
=======================================
*/
.loading-circle {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  height: 300px;
  top: 40%;
}
.loading-circle p {
  font-size: 2em;
  color: #009688;
  -moz-animation: pulse 1s infinite ease-in-out;
  -webkit-animation: pulse 1s infinite linear;
}
.load-circle {
  background-color: rgba(0,0,0,0);
  border:5px solid rgb(0, 150, 136);
  opacity:.9;
  border-right:5px solid rgba(0,0,0,0);
  border-left:5px solid rgba(0,0,0,0);
  border-radius:50px;
  box-shadow: 0 0 35px #009688;
  width: 100px;
  height: 100px;
  margin:0 auto;
  -moz-animation:spinPulse 1s infinite ease-in-out;
  -webkit-animation:spinPulse 1s infinite linear;
}
.load-circle1 {
  background-color: rgba(0,0,0,0);
  border:5px solid rgb(0, 150, 136);
  opacity:.9;
  border-left:5px solid rgba(0,0,0,0);
  border-right:5px solid rgba(0,0,0,0);
  border-radius:50px;
  box-shadow: 0 0 15px #009688; 
  width: 50px;
  height: 50px;
  margin:0 auto;
  position:relative;
  top: -75px;
  -moz-animation:spinoffPulse 1s infinite linear;
  -webkit-animation:spinoffPulse 1s infinite linear;
}
@-moz-keyframes spinPulse {
  0% { -moz-transform:rotate(160deg); opacity:0; box-shadow:0 0 1px #009688;}
  50% { -moz-transform:rotate(145deg); opacity:1; }
  100% { -moz-transform:rotate(-320deg); opacity:0; }
}
@-moz-keyframes spinoffPulse {
  0% { -moz-transform:rotate(0deg); }
  100% { -moz-transform:rotate(360deg);  }
}
@-webkit-keyframes spinPulse {
  0% { -webkit-transform:rotate(160deg); opacity:0; box-shadow:0 0 1px #009688; }
  50% { -webkit-transform:rotate(145deg); opacity:1;}
  100% { -webkit-transform:rotate(-320deg); opacity:0; }
}
@-webkit-keyframes spinoffPulse {
  0% { -webkit-transform:rotate(0deg); }
  100% { -webkit-transform:rotate(360deg); }
}
