@import url("../inc/swiper/swiper-bundle.min.css");
@import url("../inc/aos/aos.css");
@import url("../inc/lity/lity.css");
@import url("../inc/modal/jquery.modal.min.css");
/* --------------------------
---------- GLOBAL -----------
-------------------------- */
body {
  background-color: #fff;
  line-height: 1.72;
}

.rk-container {
  width: 100%;
}

.fs-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #000;
}
.fs-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  bottom: 0;
  left: 0;
  background: #000;
  z-index: 1;
  position: absolute;
  opacity: 0.1;
}
.fs-bg img, .fs-bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.fs-bg video {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.fs-bg--no-tint::before {
  opacity: 0;
}
.fs-bg--less-tint::before {
  opacity: 0.25;
}
.fs-bg.op-top img {
  -o-object-position: top;
     object-position: top;
}
.fs-bg.op-bottom img {
  -o-object-position: bottom;
     object-position: bottom;
}

.img-cont {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}
.img-cont.img-cont-21 {
  padding-top: 50%;
}
.img-cont.img-cont-169 {
  padding-top: 56.25%;
}
.img-cont.img-cont-32 {
  padding-top: 66.667%;
}
.img-cont.img-cont-43 {
  padding-top: 75%;
}
.img-cont.img-cont-54 {
  padding-top: 80%;
}
.img-cont.img-cont-56 {
  padding-top: 120%;
}
.img-cont.img-cont-45 {
  padding-top: 125%;
}
.img-cont.img-cont-34 {
  padding-top: 133.333%;
}
.img-cont.img-cont-1217 {
  padding-top: 141%;
}
.img-cont.img-cont-auto {
  padding: 0;
}
.img-cont.img-cont-auto img, .img-cont.img-cont-auto video {
  position: static !important;
}
.img-cont.max-viewport {
  padding: 0;
  height: calc((100vw - var(--site-padding) * 2) * 0.5625);
  max-height: calc(100dvh - 40px);
}
.img-cont img, .img-cont video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.img-cont video {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.img-cont.op-top img {
  -o-object-position: top;
     object-position: top;
}
.img-cont.op-bottom img {
  -o-object-position: bottom;
     object-position: bottom;
}

/* --------------------------
----------- MENU ------------
-------------------------- */
.dg-site-logo {
  position: relative;
  z-index: 101;
}

.rk-mobile-menu {
  background-color: #fff;
  width: 50%;
  display: flex;
  padding: 150px 40px 60px 70px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12em;
}
@media (max-width: 991px) {
  .rk-mobile-menu {
    width: 100%;
    padding: 150px 40px 60px;
  }
}
@media (max-width: 767px) {
  .rk-mobile-menu {
    padding: 150px 25px 80px;
  }
}
.rk-mobile-menu ul {
  font-size: 19px;
}
@media (max-width: 575px) {
  .rk-mobile-menu ul {
    font-size: 16px;
  }
}
.rk-mobile-menu li {
  margin-bottom: 0.75rem;
}
.rk-mobile-menu li a {
  color: #000;
  transition: all 0.2s ease;
}
.rk-mobile-menu li a:hover {
  color: #8a8a8a;
}
.rk-mobile-menu .sub-menu {
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
}
.rk-mobile-menu .sub-menu > li:first-child {
  margin-top: 0.75rem;
}

.rk-menu-toggle span {
  background-color: #fff;
  background-color: #000;
}
.rk-menu-open .rk-menu-toggle span {
  background-color: #000;
}

.elementor-location-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background-color: transparent;
  transition: all 0.6s ease;
}
.elementor-location-header > .elementor-element {
  transition: all 0.6s ease;
}

body.scrolled .elementor-location-header {
  background-color: #fff;
}
body.scrolled .elementor-location-header > .elementor-element {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.rk-menu-curtain {
  z-index: 80;
}

.line-links a {
  display: inline-block;
  position: relative;
}
.line-links a::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -2px;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.line-links a:hover::after {
  animation: underline-pulse 1s ease forwards;
}

@keyframes underline-pulse {
  0% {
    right: 0;
    width: 100%;
  }
  49% {
    right: 0;
    width: 0%;
  }
  50% {
    right: 100%;
    width: 0%;
  }
  100% {
    right: 0;
    width: 100%;
  }
}
b, strong {
  font-weight: 600;
}

em {
  font-weight: 600;
  font-style: normal;
}

.quote-text {
  font-family: "Jaspers Handwriting", Sans-serif;
  font-size: 1.9em;
  letter-spacing: -0.05em;
  transform: rotate(-3deg);
  display: inline-block;
  font-style: normal;
  line-height: 1em;
}

/* --------------------------
------ PROJECTS SWIPER ------
-------------------------- */
@media (max-width: 767px) {
  .projects-swiper .fs-bg {
    position: relative;
    padding-top: 67%;
  }
}
.projects-swiper__project {
  position: relative;
  min-height: 95vh;
}
@media (max-width: 767px) {
  .projects-swiper__project {
    min-height: 0;
  }
}
.projects-swiper__container {
  position: relative;
  z-index: 5;
  width: 90%;
  margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 767px) {
  .projects-swiper__container {
    padding: 20px 30px;
    width: 100%;
  }
}
.projects-swiper__title {
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin: 0;
}
.projects-swiper__name {
  font-size: 16px;
  font-weight: 400;
  margin: 0.25rem 0;
}
.projects-swiper .swiper-button-next, .projects-swiper .swiper-button-prev {
  --swiper-navigation-size: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .projects-swiper .swiper-button-next, .projects-swiper .swiper-button-prev {
    top: 67vw;
    margin: 0;
    margin-top: -50px;
  }
}
.projects-swiper .swiper-button-next {
  right: -4px;
}
.projects-swiper .swiper-button-prev {
  left: -4px;
}
@media (max-width: 767px) {
  .projects-swiper .swiper-button-prev {
    left: auto;
    right: 37px;
  }
}

/* ----------------------------
------ HOME TESTIMONIALS ------
---------------------------- */
.home-testimonials {
  padding: 130px 0;
  padding-right: 60px;
}
@media (max-width: 767px) {
  .home-testimonials {
    padding: 50px 20px;
  }
}
.home-testimonials.results-1 .swiper-button-next,
.home-testimonials.results-1 .swiper-button-prev {
  display: none !important;
}
.home-testimonials .swiper-slide {
  height: auto;
}
.home-testimonials__item {
  background-color: #f8f7f5;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 767px) {
  .home-testimonials__item {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.home-testimonials__image {
  width: 50%;
  padding: 80px;
  padding: 10%;
  position: relative;
}
@media (max-width: 991px) {
  .home-testimonials__image {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .home-testimonials__image {
    width: 100%;
    padding: 0;
  }
}
.home-testimonials__image::before {
  content: "";
  width: 50%;
  height: 200%;
  display: block;
  background-color: #fff;
  position: absolute;
  top: -50%;
  left: 0;
}
@media (max-width: 767px) {
  .home-testimonials__image::before {
    top: 0;
    height: 50%;
    width: 100%;
  }
}
.home-testimonials__text {
  width: 50%;
  padding: 80px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .home-testimonials__text {
    padding: 50px;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .home-testimonials__text {
    width: 100%;
    padding: 30px;
  }
}
.home-testimonials__quote {
  width: 100%;
}
@media (max-width: 575px) {
  .home-testimonials__quote {
    font-size: 14px;
  }
}
.home-testimonials__byline {
  text-align: left;
  width: 100%;
  font-size: 19px;
  font-weight: 600;
  margin-top: 40px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0px;
}
@media (max-width: 575px) {
  .home-testimonials__byline {
    font-size: 16px;
  }
}
.home-testimonials__subtitle {
  text-align: left;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  margin-top: 0;
}
@media (max-width: 575px) {
  .home-testimonials__subtitle {
    font-size: 12px;
  }
}
.home-testimonials .swiper-button-next, .home-testimonials .swiper-button-prev {
  --swiper-navigation-size: 20px;
  background-color: transparent;
  width: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .home-testimonials .swiper-button-next, .home-testimonials .swiper-button-prev {
    top: calc(100vw - 45px);
    margin: 0;
    margin-top: 0;
    background-color: rgba(255, 255, 255, 0.9);
  }
}
.home-testimonials .swiper-button-next {
  right: 4px;
}
@media (max-width: 767px) {
  .home-testimonials .swiper-button-next {
    right: 20px;
  }
}
.home-testimonials .swiper-button-prev {
  left: 4px;
}
@media (max-width: 767px) {
  .home-testimonials .swiper-button-prev {
    left: auto;
    right: 61px;
  }
}

body .gform_wrapper.gravity-theme input[type=color], body .gform_wrapper.gravity-theme input[type=date], body .gform_wrapper.gravity-theme input[type=datetime-local], body .gform_wrapper.gravity-theme input[type=datetime], body .gform_wrapper.gravity-theme input[type=email], body .gform_wrapper.gravity-theme input[type=month], body .gform_wrapper.gravity-theme input[type=number], body .gform_wrapper.gravity-theme input[type=password], body .gform_wrapper.gravity-theme input[type=search], body .gform_wrapper.gravity-theme input[type=tel], body .gform_wrapper.gravity-theme input[type=text], body .gform_wrapper.gravity-theme input[type=time], body .gform_wrapper.gravity-theme input[type=url], body .gform_wrapper.gravity-theme input[type=week], body .gform_wrapper.gravity-theme select, body .gform_wrapper.gravity-theme textarea {
  background-color: #212322;
  border: none;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 8px 0;
  outline: none !important;
}
body ::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
body ::placeholder {
  color: #fff;
  opacity: 1;
}
body .gform_wrapper.gravity-theme .gform_footer button, body .gform_wrapper.gravity-theme .gform_footer input, body .gform_wrapper.gravity-theme .gform_page_footer button, body .gform_wrapper.gravity-theme .gform_page_footer input {
  margin: 0;
  background-color: #212322;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-top: 10px;
  padding: 0.67em 1.5em;
}
body .gform_wrapper.gravity-theme .gform_footer button:hover, body .gform_wrapper.gravity-theme .gform_footer input:hover, body .gform_wrapper.gravity-theme .gform_page_footer button:hover, body .gform_wrapper.gravity-theme .gform_page_footer input:hover {
  background-color: #fff;
  color: #212322;
}
body .swiper {
  --swiper-theme-color: #000;
}

/* ----------------------------
------- SINGLE PROJECT --------
---------------------------- */
.project-hero {
  position: relative;
  background-color: #000;
}
.project-hero__swiper .swiper-slide {
  min-height: 95vh;
}
.project-hero__logo {
  width: 500px;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 20px;
  text-align: center;
  justify-content: center;
}
.project-hero__logo img {
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 575px) {
  .project-hero__logo {
    width: 250px;
  }
}
.project-hero .swiper-button-next, .project-hero .swiper-button-prev {
  --swiper-navigation-size: 28px;
  --swiper-theme-color: #fff;
  background-color: transparent;
  width: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .project-hero .swiper-button-next, .project-hero .swiper-button-prev {
    top: auto;
    bottom: 0;
    margin: 0;
    margin-top: -50px;
    background-color: rgba(255, 255, 255, 0.9);
    --swiper-theme-color: #000;
    --swiper-navigation-size: 20px;
  }
}
.project-hero .swiper-button-next {
  right: 8px;
}
@media (max-width: 767px) {
  .project-hero .swiper-button-next {
    right: 0;
  }
}
.project-hero .swiper-button-prev {
  left: 8px;
}
@media (max-width: 767px) {
  .project-hero .swiper-button-prev {
    left: auto;
    right: 41px;
  }
}

.project-body {
  padding: 180px 40px 120px;
}
@media (max-width: 767px) {
  .project-body {
    padding: 100px 30px;
  }
}
@media (max-width: 575px) {
  .project-body {
    padding: 60px 30px;
  }
}
.project-body__container {
  max-width: 1180px;
  margin: 0 auto;
}
.project-body__intro {
  margin: 0 auto;
  max-width: 800px;
}
.project-body__section {
  padding-bottom: 150px;
}
.project-body .home-testimonials__item {
  margin-top: -60px;
}
@media (max-width: 767px) {
  .project-body .home-testimonials__item {
    margin: 0;
  }
}

.f-19 {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 19px;
}

.button {
  display: inline-block;
  margin: 0;
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-top: 10px;
  padding: 0.67em 2em;
  transition: all 0.3s ease;
  line-height: 1.2;
}
.button:hover {
  background-color: #000;
  color: #fff;
}

.project-list {
  border-top: 1px solid #000;
}
.project-list__item {
  border-bottom: 1px solid #000;
  padding: 30px 0 40px;
  display: flex;
  flex-wrap: wrap;
}
.project-list__col-1 {
  width: 45%;
}
@media (max-width: 767px) {
  .project-list__col-1 {
    color: #aaa;
  }
}
.project-list__col-1 .button {
  margin: 40px 0 0;
}
@media (max-width: 767px) {
  .project-list__col-1 .button {
    display: none;
  }
}
.project-list__col-2 {
  width: 55%;
}
.project-list__col-2 .button {
  display: none;
}
@media (max-width: 767px) {
  .project-list__col-2 .button {
    display: inline-block;
  }
}
.project-list__col-2 .f-19 {
  margin-top: 2em;
}
.project-list__col-2 .f-19:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .project-list__col-1, .project-list__col-2 {
    width: 100%;
  }
}

.dg-icon {
  text-align: center;
}
.dg-icon img {
  width: 128px;
  height: auto;
}

.dg-grid {
  padding-bottom: 120px;
}
.dg-grid__row {
  display: flex;
  flex-wrap: wrap;
}
.dg-grid__tile-1 {
  width: 67%;
  padding-right: 7%;
}
@media (max-width: 767px) {
  .dg-grid__tile-1 {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }
}
.dg-grid__tile-2 {
  width: 33%;
}
@media (max-width: 767px) {
  .dg-grid__tile-2 {
    width: 100%;
    margin-bottom: 30px;
  }
}
.dg-grid__tile-2 > div {
  padding-top: 80%;
}
@media (max-width: 767px) {
  .dg-grid__tile-2 > div {
    padding-top: 0;
  }
}
.dg-grid__tile-3 {
  width: 45%;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .dg-grid__tile-3 {
    width: 100%;
    margin-bottom: 30px;
  }
}
.dg-grid__tile-3 > div {
  transform: translateY(-40%);
}
@media (max-width: 767px) {
  .dg-grid__tile-3 > div {
    transform: translateY(0);
  }
}
.dg-grid__tile-4 {
  width: 55%;
}
@media (max-width: 767px) {
  .dg-grid__tile-4 {
    width: 100%;
  }
}
.dg-grid__tile-4 > div {
  background-color: #f8f7f5;
  padding: 120px 120px 120px 80px;
  margin-right: 30px;
  margin-top: 60px;
  position: relative;
}
@media (max-width: 991px) {
  .dg-grid__tile-4 > div {
    padding: 60px 60px 60px 40px;
  }
}
@media (max-width: 767px) {
  .dg-grid__tile-4 > div {
    margin: 0;
    padding: 40px 30px;
  }
}
.dg-grid__tile-4 > div::before {
  content: "";
  width: 120px;
  height: 100%;
  display: block;
  position: absolute;
  right: 100%;
  top: 0;
  background-color: #f8f7f5;
}
@media (max-width: 991px) {
  .dg-grid__tile-4 > div::before {
    width: 80px;
  }
}
@media (max-width: 767px) {
  .dg-grid__tile-4 > div::before {
    display: none;
  }
}
.dg-grid__tile-4 .quote-text {
  text-align: right;
  display: block;
}
@media (max-width: 767px) {
  .dg-grid__tile-4 .quote-text {
    text-align: right;
    margin-top: 1.5em;
    font-size: 1.5rem;
  }
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .project-grid {
    padding-top: 10px;
  }
}
.project-grid .img-cont {
  margin-bottom: 30px;
}
.project-grid--no-offset .project-grid__item {
  position: static !important;
  top: 0 !important;
}
.project-grid--no-offset .project-grid__title {
  margin-top: 0.5rem !important;
}
.project-grid__item {
  width: calc(50% - 35px);
}
@media (max-width: 767px) {
  .project-grid__item {
    width: 100%;
  }
}
.project-grid__item:nth-child(even) {
  position: relative;
  top: -80px;
}
@media (max-width: 767px) {
  .project-grid__item:nth-child(even) {
    top: 0;
    position: static;
  }
}
.project-grid__year {
  margin: 0;
}
.project-grid__title {
  margin-top: 2rem;
}
.project-grid__image-replace {
  border-top: 1px solid #000;
  padding-top: 60px;
}

.border-spacer {
  border-top: 1px solid #000;
  padding-bottom: 100px;
}

/* ----------------------------
---------- PROJECTS -----------
---------------------------- */
.page-id-385 .rk-menu-toggle span {
  background-color: #000 !important;
}

.dg-container {
  max-width: 1180px;
  margin: 0 auto;
}

.pp-header {
  padding: 200px 40px 170px;
  background-color: #f8f7f5;
}
@media (max-width: 767px) {
  .pp-header {
    padding: 120px 20px 40px;
  }
}
.pp-header__title-block {
  max-width: 800px;
  margin: 0 auto;
}
.pp-header__title {
  text-align: center;
  margin-bottom: 70px;
}

.pp-body {
  padding: 150px 40px;
}
@media (max-width: 767px) {
  .pp-body {
    padding: 40px 20px;
  }
}
.pp-body__section {
  padding-bottom: 100px;
}
.pp-body .project-list__col-1 a {
  display: inline-block;
}
@media (max-width: 767px) {
  .pp-body .project-list__col-1 a {
    display: none;
  }
}
.pp-body .project-list__col-2 a {
  display: none;
}
@media (max-width: 767px) {
  .pp-body .project-list__col-2 a {
    display: inline-block;
  }
}

.blog-post-body h1 {
  font-size: 1.476rem;
}
.blog-post-body h2 {
  font-size: 1.383rem;
}
.blog-post-body h3 {
  font-size: 1.296rem;
}
.blog-post-body h4 {
  font-size: 1.215rem;
}
.blog-post-body h5 {
  font-size: 1.138rem;
}
.blog-post-body h6 {
  font-size: 1.067rem;
}
.blog-post-body p {
  font-size: 1rem;
}
.blog-post-body small {
  font-size: 0.937rem;
}
.blog-post-body .small {
  font-size: 0.878rem;
}

body [data-aos=fade-up] {
  transform: translate3d(0, 30px, 0);
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
body .elementor-element.fadeInDown {
  animation-name: fadeDown;
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
body .elementor-element.fadeInLeft {
  animation-name: fadeLeft;
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
body .elementor-element.fadeInRight {
  animation-name: fadeRight;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
body .elementor-element.fadeInUp {
  animation-name: fadeUp;
}

body .blocker {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
body .modal {
  border-radius: 0;
  box-shadow: none;
  background-color: #212322;
  color: #fff;
  max-width: 500px;
  padding: 30px 50px;
  width: 100%;
}
@media (max-width: 575px) {
  body .modal {
    padding: 20px 40px;
  }
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}/*# sourceMappingURL=main.css.map */