*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 130%; }

html {
  font-size: 62.5%;
  max-width: 100%;
  min-height: 100vh;
  position: relative;
  background-color: #fff; }

body {
  box-sizing: border-box;
  font-family: "Sen", sans-serif;
  font-size: 18px;
  color: #000;
  max-width: 100vw;
  margin: 0 auto; }

main {
  margin: 80px 0px; }
  @media (max-width: 900px) {
    main {
      margin: 100px 0 50px 0; } }
  @media (max-width: 760px) {
    main {
      margin: 75px 0 50px 0; } }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Sen", sans-serif;
  font-weight: 800; }

h1 {
  margin: 0 0 20px 0; }

h1 {
  font-size: calc(18px + 1vw); }

h2 {
  margin: 0 0 15px 0; }

h3, h4, h5, h6 {
  font-size: 18px;
  margin: 0 0 10px 0; }

h2 {
  font-size: calc(14px + 1vw); }

p {
  font-weight: 400;
  margin: 0 0 10px 0; }

a {
  text-decoration: none;
  color: #000;
  transition: all 0.2s ease-in-out; }
  a:hover {
    color: #94ae89; }

img {
  max-width: 100%; }

.btn {
  padding: 8px 30px;
  background: #94ae89;
  color: #fefdc5;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all .5s; }
  .btn:hover {
    color: black;
    background: #fefdc5;
    border-radius: 5px;
    letter-spacing: 1.5px; }

.cta {
  line-height: 50px;
  height: 50px;
  text-align: center;
  width: 100%;
  cursor: pointer; }
  .cta a {
    padding: 10px; }
  .cta .cta-btn {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative; }
    .cta .cta-btn span {
      transition: all 0.3s; }
    .cta .cta-btn::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      opacity: 0;
      transition: all 0.3s;
      border-top-width: 1px;
      border-bottom-width: 1px;
      border-top-style: solid;
      border-bottom-style: solid;
      border-top-color: rgba(148, 174, 137, 0.5);
      border-bottom-color: rgba(148, 174, 137, 0.5);
      transform: scale(0.1, 1); }
    .cta .cta-btn:hover span {
      letter-spacing: 1px; }
    .cta .cta-btn:hover::before {
      opacity: 1;
      transform: scale(1, 1); }
    .cta .cta-btn:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      transition: all 0.3s;
      background-color: rgba(255, 255, 255, 0.1); }
    .cta .cta-btn:hover::after {
      opacity: 0;
      transform: scale(0.1, 1); }

.link-line {
  display: inline; }
  .link-line span.link {
    display: inline;
    transition: all 0.2s ease-in-out;
    position: relative; }
    .link-line span.link:before, .link-line span.link:after {
      content: "";
      position: absolute;
      bottom: -10px;
      width: 0px;
      height: 2px;
      margin: 5px 0 0;
      transition: all 0.2s ease-in-out;
      transition-duration: 0.3s;
      opacity: 0;
      background-color: #a2b898; }
    .link-line span.link.effect:before {
      left: 50%; }
    .link-line span.link.effect:after {
      right: 50%; }
  .link-line:hover {
    cursor: pointer; }
    .link-line:hover span.link:before, .link-line:hover span.link:after {
      width: 100%;
      opacity: 1; }
    .link-line:hover span.link.effect:before, .link-line:hover span.link.effect:after {
      width: 50%; }

footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-top: 150px;
  padding: 10px;
  font-size: 14px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center; }
  footer p {
    margin: 5px 0; }

/* width */
::-webkit-scrollbar {
  width: 15px; }

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; }

/* Handle */
::-webkit-scrollbar-thumb {
  background: #191e28; }

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #13171f; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-moz-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fade-in {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.hidden {
  overflow: hidden; }

.none {
  display: none; }

.center {
  text-align: center; }

.left {
  text-align: left; }

.slant {
  font-style: italic; }

.home .title {
  background-image: url("../imgs/door.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  height: 90vh; }
  @media (max-width: 950px) {
    .home .title {
      background-position: right; } }
  .home .title .content {
    width: 40%;
    margin: 0px 0 50px 50px;
    color: white;
    padding: 200px 0; }
    @media (max-width: 760px) {
      .home .title .content {
        width: 60%; }
        .home .title .content h1 {
          background: rgba(0, 0, 0, 0.1);
          padding: 5px; } }
    @media (max-width: 600px) {
      .home .title .content {
        width: 80%;
        margin: 0 auto; } }

#works .intro {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  line-height: 140%; }
  #works .intro h2 {
    margin: 50px 0 20px 0; }
    #works .intro h2 img {
      width: 25px; }
  #works .intro ul {
    list-style: inside url("../imgs/055.png"); }
    #works .intro ul li {
      margin: 20px 0; }
      #works .intro ul li p, #works .intro ul li h3 {
        display: inline; }
      #works .intro ul li p {
        font-size: 18px; }
  @media (max-width: 760px) {
    #works .intro {
      padding: 0 5%; } }

#partners h2 {
  max-width: 600px;
  margin: 0 auto; }
@media (max-width: 760px) {
  #partners {
    padding: 0 5%; } }

.partner-grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: center; }
  .partner-grid img {
    width: 100%;
    max-width: 24vw;
    object-fit: contain;
    padding: 5vw;
    transition: all 0.3s ease; }
    .partner-grid img:hover {
      transform: scale(1.05); }
  @media (max-width: 760px) {
    .partner-grid {
      flex-flow: row wrap; }
      .partner-grid img {
        max-width: 45%; } }
  @media (max-width: 600px) {
    .partner-grid img {
      padding: 20px; } }

.highlight {
  background: #fffeed;
  padding: 30px 0;
  margin: 50px 0; }
  .highlight p {
    max-width: 600px;
    margin: 0 auto; }
    @media (max-width: 760px) {
      .highlight p {
        padding: 0 5%; } }

#contact {
  max-width: 600px;
  margin: 50px auto;
  text-align: center; }
  @media (max-width: 760px) {
    #contact {
      padding: 0 5%; } }

.hide {
  display: none; }

.underline {
  background: linear-gradient(to bottom, #fefdc5 0%, #fefdc5 100%);
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 4px 4px;
  color: #000;
  text-decoration: none;
  transition: background-size .2s; }
  .underline:hover {
    background-size: 4px 50px; }

.quick.open {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8); }
  .quick.open .modalWrapper {
    background: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    padding: 20px;
    max-height: calc(100vh - 210px);
    overflow-y: auto;
    border-radius: 3px;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.14);
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.14); }
    .quick.open .modalWrapper h2, .quick.open .modalWrapper div {
      width: 60vw; }
    .quick.open .modalWrapper h2 {
      margin: 0 0 10px 0; }
    .quick.open .modalWrapper .closeQuick {
      font-weight: 800;
      display: block;
      text-align: right;
      margin: 10px; }

header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 99;
  transition: 0.3s;
  padding: 10px 10%; }
  header .header-wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center; }
  header .logo #logo {
    width: calc(120px + 1vw);
    transition: 0.5s; }
    header .logo #logo:hover {
      filter: brightness(135%); }
  header nav#nav {
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    transition: all 0.3s ease; }
    header nav#nav a {
      display: inline;
      margin: 0 10px;
      font-weight: 700; }
    @media (max-width: 850px) {
      header nav#nav a.link-line {
        display: none; } }
    header nav#nav a.btn {
      background: black;
      padding: 8px; }
      header nav#nav a.btn:hover {
        background: #94ae89;
        letter-spacing: 1px; }

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