@import url("https://fonts.googleapis.com/css?family=Raleway:400,500,600,700&display=swap");
* {
  font-family: "Raleway", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #4d4d4d;
  outline: none;
  letter-spacing: 0.5px;
}

body {
  background-image: url("../assets/pattern-01.svg");
  background-size: cover;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.header-bar {
  display: flex;
  width: 100%;
  height: 100px;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .header-bar {
    height: 80px;
    box-shadow: 0px -5px 10px dimgrey;
    z-index: 3;
    padding: 0 15px;
  }
}
.header-bar .logo {
  width: 300px;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .header-bar .logo {
    width: 200px;
  }
}
.header-bar .logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.header-bar .hamburger {
  height: 40px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1023px) {
  .header-bar .hamburger {
    display: none;
  }
}
.header-bar .hamburger.active span {
  transform: rotate(45deg);
}
.header-bar .hamburger.active span::after {
  transform: rotate(-90deg) translate(7px, 0px);
}
.header-bar .hamburger.active span::before {
  transform: scale(0);
}
.header-bar .hamburger span {
  width: 100%;
  height: 2px;
  background-color: #4d4d4d;
  display: block;
  position: relative;
  transition: transform 0.3s;
}
.header-bar .hamburger span::before, .header-bar .hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: inherit;
  transition: transform 0.3s;
}
.header-bar .hamburger span::before {
  top: -7px;
}
.header-bar .hamburger span::after {
  top: 7px;
}
.header-bar .contact-links-holder {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .header-bar .contact-links-holder {
    display: none;
  }
}
.header-bar .contact-links-holder svg {
  width: 15px;
}
.header-bar .contact-links-holder a {
  cursor: pointer;
  margin: 0 10px;
  transition: transform 0.3s;
}
.header-bar .contact-links-holder a:hover {
  transform: scale(1.2);
}
.header-bar .contact-links-holder a:last-child {
  margin-right: 0;
}

.upfold-holder {
  display: flex;
  width: 100%;
  height: calc(100vh - 100px);
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}

.navigation-holder {
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.5s;
}
.navigation-holder.active {
  pointer-events: all;
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .navigation-holder {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    background-color: white;
    height: calc(100vh - 80px);
    transition: opacity 0.5s;
  }
}
.navigation-holder > div {
  width: 80%;
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .navigation-holder > div {
    width: 100%;
    padding: 0 20px;
  }
}
.navigation-holder a {
  text-decoration: none;
  display: block;
  margin: 40px 0;
  font-weight: 400;
  cursor: pointer;
  letter-spacing: 0.5px;
}
.navigation-holder a:hover, .navigation-holder a.active {
  font-weight: 600;
}
.navigation-holder .mobile-contact-links-holder {
  display: flex;
}
@media screen and (min-width: 1023px) {
  .navigation-holder .mobile-contact-links-holder {
    display: none;
  }
}
.navigation-holder .mobile-contact-links-holder svg {
  width: 15px;
}
.navigation-holder .mobile-contact-links-holder a {
  cursor: pointer;
  margin-right: 20px;
  transition: transform 0.3s;
}
.navigation-holder .mobile-contact-links-holder a:hover {
  transform: scale(1.2);
}
.navigation-holder .mobile-contact-links-holder a:last-child {
  margin-right: 0;
}

.loaded-page {
  position: relative;
  width: calc(100% - 210px);
  height: calc(100vh - 100px);
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (max-width: 1023px) {
  .loaded-page {
    width: 100%;
    height: calc(100vh - 80px);
  }
}

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