:root {
  --page-transition-ms: 600ms;
  --page-transition-ease: cubic-bezier(0.22, 1, 0.36, 1);
}
body {
  font-family:
    'Gilroy',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 16px;
  font-weight: 500;
  background: #141414;
}
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
.main-wrapper .back-logo {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 42px;
  font-weight: 300;
  text-align: center;
  color: #7e7e7e;
}
.main-wrapper {
  display: flex;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.main-wrapper .slider-side {
  background: #141414;
  width: 70%;
  height: 100%;
  position: relative;
  transition:
    transform var(--page-transition-ms) var(--page-transition-ease),
    opacity var(--page-transition-ms) var(--page-transition-ease);
  will-change: transform, opacity;
  transform: translateZ(0);
}
.main-wrapper .content-side {
  position: relative;
  width: 30%;
  height: 100%;
  background: #141414;
  color: #fff;
  transition:
    transform var(--page-transition-ms) var(--page-transition-ease),
    opacity var(--page-transition-ms) var(--page-transition-ease);
  will-change: transform, opacity;
  transform: translateZ(0);
}
.swiper-slider {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-side .header {
  pointer-events: none;
  z-index: 90;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  background: linear-gradient(#141414, transparent);
  color: #fff;
  padding: 40px 60px;
}
.slider-side .header h1 {
  font-size: 26px;
  font-weight: 900;
}
.slider-side .header h1 em {
  font-size: 20px;
  font-weight: 500;
  color: #b2b2b2;
}
.slide-info {
  z-index: 90;
  position: absolute;
  bottom: 60px;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 30px 100px 30px 60px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  transition: 0.5s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.slide-info.hide {
  transform: translateX(-50px);
  opacity: 0;
}
.slide-info .next-slide {
  position: absolute;
  top: 0;
  right: 0;
  background: #007dc5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 100%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  font-size: 12px;
  border: none;
  cursor: pointer;
  color: #fff;
}
.slide-info .next-slide span {
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 5px;
  background: url(/assets/next-slide.svg) center no-repeat;
}
.slide-info h3 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 1.3s;
}
.slide-info p {
  color: #b2b2b2;
  transition: 1.3s;
}
.slide-info a.more-details {
  max-width: 140px;
  text-align: center;
  margin-top: 20px;
  background: #007dc5;
  padding: 10px 0;
  border-radius: 50px;
  transition: 1.3s;
}
.slide-info h3.hide,
.slide-info p.hide,
.slide-info a.more-details.hide {
  transform: translateY(10px);
  opacity: 0;
}
.content-side {
  padding: 40px 50px;
  position: relative;
  overflow-y: scroll;
  -ms-overflow-style: none;
}
.content-side::-webkit-scrollbar {
  display: none;
}
.search input {
  width: 100%;
  height: 39px;
  color: #fff;
  border-radius: 50px;
  border: none;
  outline: none;
  font-family:
    'Gilroy',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 16px;
  font-weight: 500;
  background: url(/assets/search-icon.svg) no-repeat;
  background-position: 15px center;
  background-color: #232323;
  padding-left: 44px;
  padding-right: 20px;
}
.section {
  margin: 40px 0;
}
.section .title {
  display: flex;
  justify-content: space-between;
  color: #b2b2b2;
  margin-bottom: 20px;
  align-items: center;
}
.section.content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}
.section.content p {
  line-height: 20px;
  margin: 10px 0;
}
.section.content p a {
  text-decoration: underline;
  font-weight: 500;
}
.section.menu ul li {
  font-size: 26px;
  font-weight: 800;
}
.section.menu ul li a {
  margin: 15px 0;
  display: block;
  transition: 0.3s;
}
.section.menu ul li a:hover {
  padding-left: 10px;
  border-left: 2px solid #007dc5;
}
.section.latest .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5rem, 1fr));
  grid-auto-rows: 1fr;
}

.section.latest .grid::before {
  content: '';
  width: 0;
  padding-bottom: 100%;
  grid-row: 1 / 1;
  grid-column: 1 / 1;
}

.section.latest .grid > *:first-child {
  grid-row: 1 / 1;
  grid-column: 1 / 1;
}

/* Just to make the grid visible */

.section.latest .grid > * {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid #141414;
  overflow: hidden;
  position: relative;
}
.grid img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section.latest .title a.show-all {
  display: flex;
  width: 72px;
  height: 28px;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  border: 1px solid #007dc5;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
}
.grid .title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  transition: 0.3s;
  transform: translateY(100%);
  opacity: 0;
}
.grid li:hover .title {
  opacity: 1;
  transform: translateY(0);
}
.grid li:hover {
  transform: scale(0.9);
}
.grid li {
  transition: 0.3s;
}
.slider-side.services {
  height: 100vh;
}
.slider-side.services ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  position: relative;
}
.slider-side.services ul li {
  width: 50%;
  height: 50%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 30px 40px;
  color: #fff;
  position: relative;
}
.slider-side.services ul li img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-side.services ul li h3 {
  position: relative;
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
}
.slider-side.services ul li p {
  margin-top: 10px;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  max-height: 0;
  transition: 0.3s;
  line-height: 20px;
}
.slider-side.services ul li .tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #007dc5;
  opacity: 0.6;
  transition: 0.3s;
}
.slider-side.services ul li.service2 .tint {
  background: #8e44ad;
}
.slider-side.services ul li.service3 .tint {
  background: #e74c3c;
}
.slider-side.services ul li.service4 .tint {
  background: #16a085;
}
.slider-side.services ul li:hover .tint {
  opacity: 0.8;
  background: #000;
}
.slider-side.services ul li:hover p {
  opacity: 1;
  transform: translateY(0);
  max-height: 200px;
}
.copyrights {
  color: #7e7e7e;
  font-size: 14px;
}
.back-link {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 800;
  color: #7e7e7e;
}
.back-link span {
  display: block;
  width: 20px;
  height: 20px;
  background: url(/assets/back-icon.svg) center no-repeat;
  background-size: 20px;
  margin-right: 10px;
}
.back-link:hover span {
  animation: back-icon 0.5s infinite;
}
@keyframes back-icon {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}
.slider-side {
  transform: translateX(-100%);
}
.content-side {
  transform: translateX(100%);
}
html.leaving .slider-side {
  transform: translateX(-100%);
  opacity: 0;
}
html.leaving .content-side {
  transform: translateX(100%);
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .main-wrapper .slider-side,
  .main-wrapper .content-side {
    transition: none !important;
  }
}
.slider-side.services.about ul li {
  height: 100%;
}
.slider-side.services.portfolio {
  height: auto;
  overflow-y: scroll;
  -ms-overflow-style: none;
}

.slider-side.services.portfolio ul {
  overflow-y: scroll;
}
.slider-side.services.portfolio ul li {
  height: 50vh;
  overflow: hidden;
}
.slider-side.services.portfolio::-webkit-scrollbar,
.slider-side.services.portfolio ul::-webkit-scrollbar {
  display: none;
}
.slider-side.services.portfolio .header {
  position: fixed;
  top: 0;
  left: 0;
}
.slider-side.services.portfolio .fade {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20vh;
  background: linear-gradient(transparent, #141414);
  pointer-events: none;
}
.slider-side.services.contact .map,
.slider-side.services.contact .map iframe {
  width: 100%;
  height: 100%;
}
.slider-side.services.contact .header {
  background: transparent;
  color: #141414;
  opacity: 0.5;
  text-align: right;
}
.section.content form {
  margin: 20px 0;
}
.section.content input,
.section.content textarea {
  width: 100%;
  height: 39px;
  color: #fff;
  border-radius: 50px;
  border: none;
  outline: none;
  font-family:
    'Gilroy',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 14px;
  font-weight: 600;
  background: #232323;
  padding: 0 20px;
  margin: 5px 0;
  appearance: none;
  -webkit-appearance: none;
}
.section.content form input[type='submit'] {
  transition: 0.3s;
}
.section.content form input[type='submit']:hover {
  background: #fff;
  color: #141414;
  cursor: pointer;
}
.section.content textarea {
  resize: none;
  padding: 10px 20px;
  height: 70px;
  border-radius: 18px;
}
.slide-info .next-slide,
.section.latest .title a.show-all {
  transition: 0.3s;
}
.slide-info .next-slide:hover {
  width: 60px;
}
.section.latest .title a.show-all:hover {
  background: #007dc5;
  transform: scale(1.1);
}
.slider-side.services.portfolio .header {
  position: fixed;
  top: 0;
  left: 0;
}
.portfolio-content > *:not(img):not(.content-image) {
  margin: 20px 40px;
  color: #fff;
}
.portfolio-content img {
  max-width: 100%;
  margin: 0 auto;
  height: auto !important;
}

.section.content h3 {
  color: #7e7e7e;
  margin: 10px 0;
}
.portfolio-content h1 {
  font-size: 42px;
}
.portfolio-content h2 {
  font-size: 36px;
}
.portfolio-content h3 {
  font-size: 28px;
}
.portfolio-content h4 {
  font-size: 22px;
}
.portfolio-content p {
  font-size: 16px;
  line-height: 20px;
}
.slider-side.services.portfolio ul li:hover .tint {
  background: linear-gradient(transparent, #141414) !important;
  opacity: 0.5 !important;
}
#searchsubmit {
  display: none;
}
.search-results {
  padding: 100px 60px 0px 60px;
  color: #fff;
  font-size: 18px;
  background: url(/assets/results-back.svg) center no-repeat;
  background-size: 80vh;
  height: 100vh;
}
.header.search {
  background: transparent;
}
.search-results a {
  font-size: 42px;
  font-weight: 800;
  transition: 0.3s;
}
.search-results a:hover {
  padding-left: 10px;
}
.search-results .item {
  margin: 20px 0;
}
.search-results .item p {
  text-transform: capitalize;
}
.search-results h1 {
  font-size: 42px;
  font-weight: 800;
}
.search-results .item p {
  margin-top: 5px;
  color: #7e7e7e;
}
@media screen and (max-width: 768px) {
  .main-wrapper {
    flex-direction: column;
    /* allow native vertical scrolling on mobile */
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
  }
  .main-wrapper .content-side {
    width: 100%;
    height: auto;
    padding: 30px;
  }
  .main-wrapper .slider-side {
    width: 100%;
    height: 330px;
    /* prevent the slider from capturing vertical scroll swipes */
    touch-action: pan-y pinch-zoom;
  }
  .main-wrapper .slider-side.contact {
    height: 300px;
  }
  .slide-info {
    bottom: 0;
    width: 100%;
    padding: 15px 30px;
    padding-right: 56px;
  }
  .slide-info h3 {
    font-size: 20px;
  }
  .slide-info p {
    font-size: 14px;
    margin-top: 5px;
  }
  .slide-info a.more-details {
    font-size: 12px;
    max-width: 110px;
    text-align: center;
    margin-top: 10px;
    padding: 8px 0;
  }
  .slider-side .header {
    height: 10vh;
    padding: 20px 30px;
  }
  .slider-side .header h1 {
    font-size: 18px;
  }
  .slider-side .header h1 em {
    font-size: 14px;
  }
  .slide-info .next-slide {
    width: 36px;
  }
  .section.content h2 {
    font-size: 32px;
  }
  .section {
    margin: 20px 0;
  }
  .slider-side.services ul li {
    padding: 10px 20px;
  }
  .slider-side.services ul li h3 {
    font-size: 22px;
    line-height: 20px;
  }
  .slider-side.services.portfolio .fade {
    display: none;
  }
  .slider-side.services.portfolio ul li {
    width: 100%;
    height: 200px;
  }
  .main-wrapper .back-logo {
    position: fixed;
    width: 200px;
    height: 50px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .slider-side.services ul li {
    width: 100%;
    z-index: 5;
    height: 25%;
  }
  .slider-side.services ul li h3 {
    padding-top: 60px;
  }
  .slider-side.services ul li:first-child h3 {
    padding-top: 100px;
  }
  .search-results {
    padding: 70px 30px 0px 30px;
    height: auto;
    background-size: 100% 100%;
  }
  .search-results h1 {
    font-size: 32px;
    font-weight: 800;
  }
  .search-results a {
    font-size: 32px;
  }
}
.content-image {
  margin-bottom: 0 !important;
}
.portfolio-content .content-image img {
  display: block !important;
}
.slider-side.services {
  height: auto;
}
