/*
	Theme Name: Anne
	Description: Modern theme for Anne
	Version: 1.0
	Author: Kamil Pietnicki (Developer), David Cuesta & Jamie Clements (Designers)
	Author URI: http://creativerandd.com
	Tags: Minimalistic, Contemporary 
*/
/*
This CSS resource incorporates links to font software which is the valuable copyrighted
property of Monotype Imaging and/or its suppliers. You may not attempt to copy, install,
redistribute, convert, modify or reverse engineer this font software. Please contact Monotype
Imaging with any questions regarding Web Fonts:  http://www.fonts.com
*/
/* Typography */
@import url("http://fast.fonts.net/t/1.css?apiType=css&projectid=9c176b2c-2e53-4f68-a64b-bfcdcf5f1040");
@font-face {
  font-family: "Univers LT W01_45 Light1475944";
  src: url("assets/fonts/9fa24f1f-00d8-4d28-910f-78e925eaead6.woff2") format("woff2"), url("assets/fonts/d64e7bbc-e9ea-46ad-982c-6195ae4a3c61.woff") format("woff");
}
@font-face {
  font-family: "Univers LT W01_55 Roman1475956";
  src: url("assets/fonts/5c8d59c2-9c85-4a22-88e3-bf3fba01dcd8.woff2") format("woff2"), url("assets/fonts/fc51d03b-0d7d-45df-9415-3c6270c80749.woff") format("woff");
}
/* RESET */
html, body {
  height: fit-content;
  margin: 0px;
  padding: 0px;
  min-width: 320px;
  /* Suppose you want minimum width of 1000px */
  width: auto !important;
  /* Firefox will set width as auto */
  width: 320px;
  clear: both;
}

body {
  overflow-y: scroll;
}

.wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  min-height: calc(100vh - 240px);
  margin: 0 auto;
  margin-bottom: -120px;
  margin-top: 180px;
}

svg {
  height: auto;
}

h1, h2, h3, h4, h5, p, a {
  font-family: "Univers LT W01_45 Light1475944", Arial, Helvetica, sans-serif;
  font-weight: normal;
}

strong {
  font-family: "Univers LT W01_55 Roman1475956", Arial, Helvetica, sans-serif;
  font-weight: normal;
}

figure {
  margin: 0;
  padding: 0;
}

:focus {
  outline: none;
}

.hidden {
  display: none;
}

@-ms-viewport {
  width: device-width;
}
.preload-holder {
  display: none;
}

@media only screen and (max-width: 768px) {
  .wrapper {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 140px);
    margin: 0 auto;
    margin-bottom: -120px;
    margin-top: 120px;
  }
}
.header {
  display: block;
  position: fixed;
  width: 100%;
  height: 180px;
  padding-top: 50px;
  padding-bottom: 50px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: white;
  z-index: 500;
  top: 0;
  transition: height 0.5s ease-in-out;
  transition: top 0.5s ease-in-out;
  /* ONE */
}
.header .header-logo {
  display: block;
  position: relative;
  width: 300px;
  height: auto;
  margin: 0 auto;
}
.header .header-logo a {
  text-decoration: none;
  color: black;
  font-size: 28px;
}
.header .header-menu {
  display: flex;
  position: relative;
  width: calc(350px - 22px);
  height: auto;
  margin: 0 auto;
  padding-left: 54px;
  padding-right: 22px;
}
.header .header-menu a {
  display: inline-block;
  text-align: center;
  color: #000;
  text-decoration: none;
}
.header .header-menu a:hover {
  text-decoration: underline;
  cursor: pointer;
}
.header .header-menu a:active {
  text-decoration: underline;
}
.header .header-menu a h2 {
  font-size: 16px;
  margin-top: 30px;
}
.header .header-menu a #menu-link-1 {
  margin-right: 60px;
}
.header .header-menu a #menu-link-2 {
  margin-right: 60px;
}
.header .header-socials {
  display: block;
  position: absolute;
  top: 71px;
  right: 40px;
}
.header .header-socials a {
  text-decoration: none;
}
.header .header-socials img {
  width: 24px;
  height: 24px;
}
.header .header-socials img:nth-of-type(1) {
  margin-left: 20px;
}
.header .header-socials img:hover {
  filter: brightness(0);
}
.header .header-socials-mobile {
  display: none;
}
.header .hamburger {
  position: absolute;
  display: none;
  right: 20px;
  top: 50px;
  z-index: 10000;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .hamburger .line {
  width: 22px;
  height: 2px;
  background-color: black;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .line {
  display: block;
  margin: 4px auto;
}
.header .hamburger:hover {
  cursor: pointer;
}
.header .hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}
.header .hamburger.is-active .line:nth-child(1) {
  -webkit-transform: translateY(5px) rotate(45deg);
  -ms-transform: translateY(5px) rotate(45deg);
  -o-transform: translateY(5px) rotate(45deg);
  transform: translateY(5px) rotate(45deg);
}
.header .hamburger.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

@media only screen and (max-width: 768px) {
  .header {
    height: 120px;
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .header .header-logo {
    display: block;
    position: relative;
    width: 220px;
    height: auto;
    margin: 0 auto;
  }
  .header .header-logo a {
    font-size: 20px;
  }
  .header .header-socials {
    display: none;
  }
  .header .hamburger {
    display: block;
  }
  .header .header-menu {
    display: none;
    position: absolute;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    top: 120px;
    padding-left: 0;
    padding-right: 0;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 200;
  }
  .header .header-menu a {
    display: block;
    text-align: center;
    color: #000;
    text-decoration: none;
  }
  .header .header-menu a:hover {
    text-decoration: underline;
    cursor: pointer;
  }
  .header .header-menu a:active {
    text-decoration: underline;
  }
  .header .header-menu a h2 {
    font-size: 20px;
    margin-top: 30px;
  }
  .header .header-menu a #menu-link-1 {
    margin-right: 0px;
    margin-top: 60px;
  }
  .header .header-menu a #menu-link-2 {
    margin-right: 0px;
  }
  .header .header-menu .header-socials-mobile {
    display: block;
    width: 120px;
    margin: 0 auto;
    margin-top: 40px;
  }
  .header .header-menu .header-socials-mobile a {
    display: inline-block;
    text-decoration: none;
  }
  .header .header-menu .header-socials-mobile img {
    display: inline-block;
    width: 28px;
    height: auto;
  }
  .header .header-menu .header-socials-mobile img:nth-of-type(1) {
    margin-left: 20px;
  }
  .header .header-menu .header-socials-mobile img:hover {
    filter: brightness(0);
  }
}
.back-to-top {
  display: inline-block;
  position: relative;
  width: 200px;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: calc(100% - 200px);
}
.back-to-top:hover {
  cursor: pointer;
}
.back-to-top p {
  font-size: 18px;
  display: inline-block;
}
.back-to-top img {
  display: inline-block;
  width: 13px;
  height: auto;
  transform: rotate(225deg);
  margin-left: 20px;
}

.contact-top {
  display: none;
}

.push {
  height: 120px;
}

.footer {
  display: block;
  position: relative;
  bottom: 0;
  width: 100%;
  height: 120px;
  padding-top: 60px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.footer p {
  display: block;
  position: relative;
  color: #000;
  font-size: 7px;
  text-align: center;
}
.footer a {
  display: none;
  position: relative;
  font-size: 9px;
  text-align: center;
  color: #626262;
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .footer {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 47px;
  }
  .footer p {
    color: #000;
    font-size: 9px;
    text-align: center;
    margin-bottom: 4px;
  }
  .footer a {
    display: block;
    color: #626262;
    text-decoration: underline;
  }

  .contact-top {
    display: block;
  }
}
.content-about {
  width: calc(100% - 40px);
  max-width: 596px;
  height: auto;
  margin: 0 auto;
}
.content-about p {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.content-about a {
  color: #626262;
}
.content-about .wp-block-gallery .blocks-gallery-grid {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
}
.content-about .wp-block-gallery .blocks-gallery-grid .blocks-gallery-item {
  display: inline-block;
  width: 30px;
  margin: 0;
}
.content-about .wp-block-gallery .blocks-gallery-grid .blocks-gallery-item:nth-of-type(1) {
  margin-right: 30px;
}
.content-about .wp-block-gallery .blocks-gallery-grid .blocks-gallery-item img {
  width: 30px;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .content-about {
    width: calc(100% - 60px);
  }
}
.content-project {
  display: block;
  position: relative;
  width: 76%;
  height: auto;
  margin: 0 auto;
}
.content-project .title {
  display: block;
  position: relative;
  width: 100%;
  height: 90px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
}
.content-project .title h1 {
  font-size: 28px;
  margin: 0;
}
.content-project #project-title {
  height: 50px;
}
.content-project .related {
  margin-top: 40px;
}
.content-project .project-body img {
  width: 100%;
  height: auto;
}
.content-project .project-body .wp-block-image {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.content-project .project-body .wp-block-image img {
  position: absolute;
}
.content-project .project-body .wp-block-image:hover {
  cursor: url("assets/images/zoom-in.png"), auto;
}
.content-project .project-body .wp-block-image .mobile-zoom-in,
.content-project .project-body .wp-block-image .mobile-zoom-out {
  display: none;
  z-index: 200;
  width: 30px;
  height: auto;
  position: absolute;
  bottom: 10px;
  top: auto;
  right: 10px;
  left: auto;
}
.content-project .project-body p {
  display: block;
  position: relative;
  width: 100%;
  max-width: 664px;
  font-size: 18px;
  margin: 0 auto;
  margin-top: 0px;
  margin-bottom: 40px;
}
.content-project .project-body .wp-block-gallery {
  display: block;
}
.content-project .project-body .blocks-gallery-item {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  margin-bottom: 20px;
  padding-top: 56.25%;
  overflow: hidden;
}
.content-project .project-body .blocks-gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-project .project-body .blocks-gallery-item img:hover {
  cursor: url("assets/images/zoom-in.png"), auto;
}
.content-project .project-body .blocks-gallery-item .mobile-zoom-in,
.content-project .project-body .blocks-gallery-item .mobile-zoom-out {
  display: none;
  z-index: 200;
  width: 30px;
  height: auto;
  position: absolute;
  bottom: 10px;
  top: auto;
  right: 10px;
  left: auto;
}
.content-project .project-body #overlay:hover {
  cursor: url("assets/images/zoom-out.png"), auto;
}

@media only screen and (max-width: 768px) {
  .content-project {
    width: 76%;
  }
  .content-project .title {
    display: block;
    position: relative;
    width: 100%;
    height: 60px;
    text-align: center;
    margin-bottom: 0px;
  }
  .content-project .title h1 {
    font-size: 20px;
    margin: 0;
  }
  .content-project .related {
    margin-top: 10px;
  }
  .content-project .project-body .blocks-gallery-item {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 500px) {
  .content-project .project-body .blocks-gallery-item .mobile-zoom-in,
.content-project .project-body .blocks-gallery-item .mobile-zoom-out {
    display: none;
    z-index: 200;
    width: 30px;
    height: auto;
    position: absolute;
    bottom: 10px;
    top: auto;
    right: 10px;
    left: auto;
  }
}
.content-work {
  display: block;
  position: relative;
  width: 76%;
  height: auto;
  margin: 0 auto;
}
.content-work .work-item {
  display: inline-block;
  position: relative;
  width: calc(50% - 10px);
  height: auto;
  margin-bottom: 18px;
  text-align: center;
}
.content-work .work-item:nth-of-type(1) {
  margin-right: 16px;
}
.content-work .work-item:nth-child(3n+1) {
  margin-right: 16px;
}
.content-work .work-item .item-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.content-work .work-item .item-image img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s;
  filter: opacity(1);
}
.content-work .work-item a {
  text-decoration: none;
  color: black;
}
.content-work .work-item h1 {
  display: none;
  position: absolute;
  font-size: 24px;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.content-work .single-col {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1000px) {
  .work-item h1 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .content-work {
    width: 76%;
  }
  .content-work .work-item {
    margin-bottom: 15px;
    width: calc(50% - 10px);
  }
  .content-work .work-item h1 {
    font-size: 20px;
  }
  .content-work .work-item:nth-of-type(1) {
    margin-right: 12px;
  }
  .content-work .work-item:nth-child(3n+1) {
    margin-right: 12px;
  }
  .content-work .single-col {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 520px) {
  .work-item h1 {
    font-size: 16px !important;
  }
}
.content-home {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  max-height: 100vh;
  padding-top: 56.25%;
}
.content-home .blocks-gallery-item {
  display: none;
  width: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  object-fit: cover;
}
.content-home .blocks-gallery-item:nth-of-type(1) {
  display: block;
}
.content-home .blocks-gallery-item:hover {
  cursor: pointer;
}
.content-home .blocks-gallery-item figcaption {
  display: none;
}
.content-home .blocks-gallery-item figure {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}
.content-home .blocks-gallery-item img {
  width: 100%;
  height: 100%;
}

.content-home-mobile {
  display: none;
}

@media only screen and (max-width: 768px) {
  .content-home {
    display: none;
  }

  .content-home-mobile {
    display: block;
    padding-top: 0;
  }
  .content-home-mobile .wp-block-gallery {
    display: block;
  }
  .content-home-mobile .blocks-gallery-item {
    display: block;
    position: relative;
    width: 100% !important;
    height: auto;
    padding-top: 56.25%;
    margin: 0;
    margin-bottom: 15px;
    margin-right: 0 !important;
  }
  .content-home-mobile .blocks-gallery-item img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
  }
  .content-home-mobile .blocks-gallery-item:nth-of-type(1) {
    display: block;
  }
  .content-home-mobile .blocks-gallery-item:hover {
    cursor: pointer;
  }
  .content-home-mobile .blocks-gallery-item figcaption {
    display: none;
  }
}

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