@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Futura PT Book";
  font-style: normal;
  font-weight: normal;
  src: local("Futura PT Book"), url("../../fonts/futura-pt/FuturaCyrillicBook.woff") format("woff");
}
@font-face {
  font-family: "Futura PT Light";
  font-style: normal;
  font-weight: normal;
  src: local("Futura PT Light"), url("../../fonts/futura-pt/FuturaCyrillicLight.woff") format("woff");
}
@font-face {
  font-family: "Futura PT Medium";
  font-style: normal;
  font-weight: normal;
  src: local("Futura PT Medium"), url("../../fonts/futura-pt/FuturaCyrillicMedium.woff") format("woff");
}
@font-face {
  font-family: "Futura PT Demi";
  font-style: normal;
  font-weight: normal;
  src: local("Futura PT Demi"), url("../../fonts/futura-pt/FuturaCyrillicDemi.woff") format("woff");
}
@font-face {
  font-family: "Futura PT Heavy";
  font-style: normal;
  font-weight: normal;
  src: local("Futura PT Heavy"), url("../../fonts/futura-pt/FuturaCyrillicHeavy.woff") format("woff");
}
@font-face {
  font-family: "Futura PT Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Futura PT Bold"), url("../../fonts/futura-pt/FuturaCyrillicBold.woff") format("woff");
}
@font-face {
  font-family: "Futura PT Extra Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Futura PT Extra Bold"), url("../../fonts/futura-pt/FuturaCyrillicExtraBold.woff") format("woff");
}
/**
 * Breakpoint Mixins
 *
 * 1. media-breakpoint-up($name) - applies styles for the given breakpoint and up
 * 2. media-breakpoint-down($name) - applies styles for the given breakpoint and down
 * 3. media-breakpoint-only($name) - applies styles for the given breakpoint only
 * 
 * Example Usage:
 *  @include media-breakpoint-up(md) {
 *     // styles for medium breakpoint and up
 *  }
 *  @include media-breakpoint-down(sm) {
 *     // styles for small breakpoint and down
 *  }
 *  @include media-breakpoint-only(lg) {
 *     // styles for large breakpoint only
 *  }
 * 
 * @param {string} $name - the breakpoint name (xs, sm, md, lg, xl)
 * @param {map} $breakpoints - the breakpoints map (optional)
 */
.swiper-button-next, .swiper-button-prev {
  color: #fff !important;
  font-size: 2rem !important;
}

body {
  overflow-x: hidden !important;
  padding-left: 20px;
  padding-right: 20px;
}

h1, h2, h3, h4, h5, h6 {
  color: #fff !important;
}

.hnz-btn {
  transition: all 0.2s ease-in-out;
  pointer-events: auto;
  padding: 10px 20px;
  text-transform: uppercase;
  width: fit-content;
  letter-spacing: 2px;
  border-radius: 5px;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  line-height: normal;
  color: #fff;
  gap: 8px;
  font-size: 1rem;
}
.hnz-btn svg {
  transition: all 0.2s ease-in-out;
}
.hnz-btn:hover, .hnz-btn:active, .hnz-btn:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.hnz-btn:hover svg, .hnz-btn:active svg, .hnz-btn:focus svg {
  transform: scale(120%);
}
.hnz-btn--outline {
  border: solid 1px #fff;
  color: #fff;
}
.hnz-btn--outline:hover, .hnz-btn--outline:active, .hnz-btn--outline:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.hnz-btn--outline:hover svg, .hnz-btn--outline:active svg, .hnz-btn--outline:focus svg {
  transform: scale(120%);
}
.hnz-btn--gototop {
  position: fixed;
  bottom: 2rem;
  opacity: 0;
  border: solid 1px #fff;
  display: none;
  height: 45px;
  width: 45px;
  right: 2rem;
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 10px;
}
.hnz-btn--gototop svg {
  height: 20px;
  width: 20px;
}
.hnz-btn--rounded {
  border-radius: 24px;
}
.hnz-btn--no-border {
  font-size: 1.2rem;
  border: none;
  background: none;
  color: #fff;
}
.hnz-btn--no-border:hover, .hnz-btn--no-border:active, .hnz-btn--no-border:focus {
  background-color: transparent;
}

a {
  text-decoration: none;
  color: #fff;
}
a:hover, a:active, a:focus {
  color: unset;
}

.p-auto {
  padding-left: 20px;
  padding-right: 20px;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

body {
  overflow: auto;
  font-family: Futura PT Light;
  background: #000000;
  color: #fff;
  margin: 0;
  padding: 0;
}

p {
  line-height: 28px;
  font-size: 1rem;
  font-family: "Montserrat", "Arial", sans-serif;
}

.swiper-pagination {
  bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.swiper-pagination-bullet {
  width: 40px !important;
  height: 3px !important;
  border-radius: 0 !important;
  background-color: #fff;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  background-color: #fff !important;
  opacity: 1;
}
.swiper-pagination-fraction {
  color: #fff;
}
.swiper-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem;
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.swiper button {
  pointer-events: auto;
  transition: all 0.2s ease-in-out;
  padding: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.swiper button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.swiper button:hover svg {
  transform: scale(120%);
}

nav {
  backdrop-filter: blur(10px);
  background: linear-gradient(to left, rgba(0, 0, 0, 0.9215686275), transparent);
}
nav .nav-item {
  display: flex;
  justify-content: right;
  gap: 1.3rem;
  align-items: baseline;
  position: relative;
}
nav .nav-item::after {
  transition: all 300ms ease;
  display: flex;
  content: "";
  position: relative;
  top: 0;
  left: 0;
  width: 0px;
  height: 3px;
  background: #fff;
}
nav .nav-item:hover::after, nav .nav-item:active::after, nav .nav-item:focus::after {
  transition: all 300ms ease;
  display: flex;
  content: "";
  position: relative;
  top: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: #fff;
}
nav .nav-link {
  position: relative;
  color: #fff;
}
nav .nav-link:hover, nav .nav-link:active, nav .nav-link:focus {
  color: #fff !important;
}
nav .navbar-nav {
  height: 100vh;
}
nav .navbar-nav li a {
  font-family: "Futura PT Book", "Futura", "Arial", sans-serif;
  font-weight: 500;
  font-size: 30px;
  text-align: right;
  text-transform: uppercase;
}
nav .navbar-toggler {
  background-color: transparent;
  border: none;
  width: 60px;
  height: auto;
  cursor: pointer;
  display: flex;
  padding: 0;
  border: none !important;
  background: none !important;
}
nav .navbar-toggler .line {
  fill: none;
  stroke: white;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
nav .navbar-toggler .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
nav .navbar-toggler .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
nav .navbar-toggler .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
nav .navbar-toggler.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
nav .navbar-toggler.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
nav .navbar-toggler.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
nav .navbar-toggler:hover, nav .navbar-toggler:active, nav .navbar-toggler:focus {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.sectionTitle {
  font-family: "Futura PT Book", "Futura", "Arial", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 60px;
  width: fit-content;
  margin-left: auto;
  white-space: nowrap;
  margin-right: auto;
  text-transform: uppercase;
}
.sectionTitle_sidebar {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .sectionTitle {
    font-size: 2rem;
    white-space: normal;
    text-align: center;
  }
}
.sectionTitle-blog__author {
  font-size: 1.4rem;
  text-decoration: underline;
}
.sectionTitle.underline {
  display: flex;
  width: fit-content;
  --underline-width: 0%;
  --underline-direction: left;
  align-items: baseline;
  gap: 0.5rem;
}
.sectionTitle.underline::before {
  content: "";
  display: inline-block;
  width: var(--underline-width);
  position: relative;
  height: 4px;
  left: 0;
  background: #fff;
  margin-top: 10px;
  transition: all 0.5s ease-in-out;
}

.embla {
  overflow: hidden;
}

.embla__container {
  display: flex;
}

.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.playbutton {
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.playbutton.playing {
  opacity: 0;
  display: none;
  transition: all 0.2s ease-in-out;
}
.playbutton.paused {
  opacity: 1;
  display: block;
  transition: all 0.2s ease-in-out;
}
.playbutton.loading button {
  pointer-events: none;
  animation: loading 1s ease-in-out infinite;
}
.playbutton.loading button svg path:nth-child(2) {
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.playbutton.loading button path:nth-child(1) {
  stroke: white;
}
.playbutton svg {
  transition: all 0.2s ease-in-out;
}
.playbutton:hover svg {
  transform: scale(0.9);
}
.playbutton:active svg {
  transform: rotate(10deg);
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.heroSection {
  /* Custom styles */
}
.heroSection .playbutton {
  z-index: 8;
}
.heroSection_videoSlide {
  width: 100%;
  cursor: pointer;
  height: 100vh;
}
@media (max-width: 768px) {
  .heroSection_videoSlide {
    height: 50vh;
    aspect-ratio: 16/14;
  }
}
.heroSection_videoSlide__pausebtn {
  position: absolute;
  bottom: 1rem;
  font-size: 2rem;
  aspect-ratio: 1/1;
  left: 1rem;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
.heroSection_videoSlide__pausebtn button {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.heroSection_videoSlide__pausebtn i {
  color: white;
}
.heroSection_videoSlide__pausebtn.paused {
  opacity: 1;
  display: block;
  transition: all 0.2s ease-in-out;
}
.heroSection_videoSlide__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.heroSection_videoSlide__overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heroSection_videoSlide iframe {
  width: 100%;
  height: 100%;
  pointer-events: none !important;
  cursor: none;
}

.featuredSection {
  padding: 120px 0px;
}
.featuredSection__swiper {
  width: 100%;
}
@media (max-width: 768px) {
  .featuredSection_main {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .featuredSection {
    padding: 60px 0px !important;
  }
}
.featuredSection__masonry {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .featuredSection__masonry {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .featuredSection__masonry {
    flex-direction: column;
  }
}
.featuredSection__project {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 13/9;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.featuredSection__project:hover .featuredSection__project__content {
  opacity: 0;
}
.featuredSection__project.tall {
  grid-row: span 2;
}
.featuredSection__project.nowPlaying {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 16/9;
}
.featuredSection__project.big {
  grid-column: span 2;
  grid-row: span 2;
}
.featuredSection__project__video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 5px;
}
.featuredSection__project__video .thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.featuredSection__project__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.featuredSection__project__content {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  transition: all 0.4s ease-in-out;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.featuredSection__project__content p {
  font-family: "Montserrat", "Arial", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: normal;
}

.latestNews {
  padding: 120px 0px;
}
@media (max-width: 768px) {
  .latestNews {
    padding: 60px 0px !important;
  }
}
.latestNews__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  grid-auto-flow: dense;
  justify-content: center;
  align-items: top;
}
@media (max-width: 992px) {
  .latestNews__container {
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  }
}
@media (max-width: 768px) {
  .latestNews__container {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }
}
@media (max-width: 576px) {
  .latestNews__container {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}
.latestNews__item {
  cursor: pointer;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  position: relative;
}
.latestNews__item:hover img {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .latestNews__item {
    height: fit-content;
  }
}
.latestNews__item:hover .latestNews__item__content__title {
  opacity: 0.6;
}
.latestNews__item__image {
  aspect-ratio: 3/2;
  overflow: hidden;
  object-fit: cover;
  object-position: center center;
  border-radius: 0px;
  width: 100%;
  height: 100%;
}
.latestNews__item__image img {
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.latestNews__item__content {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  text-align: left;
  margin-top: 15px;
}
.latestNews__item__content__date {
  font-size: 0.9rem;
  font-family: "Montserrat", "Arial", sans-serif;
  font-weight: 500;
  line-height: normal;
  color: #fff;
}
.latestNews__item__content__title {
  font-size: 1.1rem;
  margin: 0;
  transition: all 0.4s ease-in-out;
  line-height: 28px;
  font-family: "Montserrat", "Arial", sans-serif;
  font-weight: 400;
  color: #fff;
}

.getInTouch {
  padding: 250px 0px;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .getInTouch {
    padding: 60px 0px !important;
    padding-bottom: 120px !important;
  }
}
.getInTouch .sectionTitle {
  font-size: 4.2rem;
}
@media (max-width: 768px) {
  .getInTouch .sectionTitle {
    font-size: 3rem;
  }
}
.getInTouch p {
  color: #fff;
  width: 60%;
  opacity: 0.8;
}

.button-contact {
  font-size: 1rem;
  font-family: "Montserrat", "Arial", sans-serif;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 1.8rem;
  color: #fff;
  border: solid 1px #fff;
  transition: all 0.2s ease-in-out;
}
.button-contact:hover, .button-contact:active, .button-contact:focus {
  background: rgba(255, 255, 255, 0.123);
  color: #fff;
}

.breadcrumb-item.active {
  color: #fff;
}

.featuredMain {
  height: fit-content;
  padding: 120px 0px;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (max-width: 768px) {
  .featuredMain {
    padding: 60px 0px !important;
  }
}
.featuredMain::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.281);
}
.featuredMain[type=our-story] {
  background-image: url("../../media/images/our-story-bg.jpg");
}
.featuredMain[type=our-work] {
  background-image: url("../../media/images/featured-bg.jpg");
}
.featuredMain[type=news] {
  background-image: url("../../media/images/news-bg.jpg");
}
.featuredMain[type=blog] {
  background-image: url("../../media/images/news-bg.jpg");
}
.featuredMain[type=blog] .sectionTitle {
  padding: 0px 20px;
}
@media (max-width: 768px) {
  .featuredMain[type=blog] .sectionTitle {
    font-size: 1.5rem;
  }
}
.featuredMain__content {
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.featuredMain .sectionTitle {
  font-size: 5.2rem;
  margin: 0;
  font-family: "Futura PT Book", "Futura", "Arial", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  text-transform: uppercase;
}
.featuredMain .sectionTitle-blog {
  font-size: 2rem;
  text-transform: capitalize;
  width: 70%;
  white-space: pre-wrap;
}
@media (max-width: 768px) {
  .featuredMain .sectionTitle-blog {
    width: 100%;
  }
}

.featuredProjectsAll {
  padding: 120px 0px;
}
@media (max-width: 768px) {
  .featuredProjectsAll {
    padding: 60px 0px !important;
  }
}
.featuredProjectsAll__masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-auto-flow: dense;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .featuredProjectsAll__masonry {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}
.featuredProjectsAll__project {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.featuredProjectsAll__project:nth-child(3n) {
  grid-column: 1/-1; /* span full width */
  aspect-ratio: 16/9;
}
.featuredProjectsAll__project__image {
  width: 100%;
  height: 100%;
}
.featuredProjectsAll__project__image img {
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.featuredProjectsAll__project__content {
  opacity: 1;
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.featuredProjectsAll__project__content h3 {
  z-index: 3;
  position: relative;
}
.featuredProjectsAll__project__content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.4s ease-in-out;
}
.featuredProjectsAll__project:hover img {
  transform: scale(1.1);
}
.featuredProjectsAll__project:hover .featuredProjectsAll__project__content {
  opacity: 1;
}
.featuredProjectsAll__project:hover .featuredProjectsAll__project__content h3::after {
  width: 100%;
}
.featuredProjectsAll__project::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.projectSingle {
  padding: 120px 0px;
}
.projectSingle__testimonial {
  padding: 120px 0px;
}
@media (max-width: 768px) {
  .projectSingle__testimonial {
    padding: 60px 0px !important;
  }
}
.projectSingle__nextPrevContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 9;
}
@media (max-width: 768px) {
  .projectSingle__nextPrevContainer {
    width: 100%;
    justify-content: center;
    bottom: 10px;
    left: 0;
  }
}
.projectSingle__nextPrevContainer span {
  width: 1px;
  height: 2rem;
  background: #fff;
}
.projectSingle__nextPrevContainer a {
  padding: 0.1rem 2rem;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.projectSingle__nextPrevContainer a:hover {
  color: #fff;
  transform: translateY(-5px);
}
.projectSingle__content_info ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.projectSingle__content_info ul li {
  font-size: 1.2rem;
  list-style: none;
}
.projectSingle__content_info ul li:not(:last-child) {
  border-bottom: solid 2px rgba(51, 46, 46, 0.8117647059);
  padding-bottom: 5px;
}
.projectSingle__content_info ul li span {
  text-transform: uppercase;
  margin-right: 5px;
}
@media (max-width: 768px) {
  .projectSingle {
    padding: 60px 0px !important;
  }
}
.projectSingle__mainvideo {
  aspect-ratio: 16/9;
  position: relative;
}
.projectSingle__mainvideo iframe {
  width: 100%;
  height: 100%;
}
.projectSingle__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  grid-auto-rows: 200px;
}
.projectSingle__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.projectSingle__gallery-item.tall {
  grid-row: span 2;
}
.projectSingle__gallery-item.wide {
  grid-column: span 2;
}
.projectSingle__gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.projectSingle__gallery-item.medium {
  grid-row: span 1.5;
}

.blogSection {
  padding: 120px 0px;
  gap: 20px;
}
.blogSection .wp-block-image {
  aspect-ratio: 16/9;
  margin-bottom: 50px;
  margin-top: 50px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.blogSection .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 768px) {
  .blogSection {
    padding: 60px 0px !important;
  }
}
.blogSection__toc {
  position: sticky;
  top: 100px; /* adjust this offset for your header height */
  max-height: calc(100vh - 100px); /* prevent overflow if TOC is tall */
  overflow-y: auto;
  border-right: solid 1px rgba(51, 46, 46, 0.8117647059);
  border-bottom: none;
}
@media (max-width: 768px) {
  .blogSection__toc {
    border-right: none;
    border-bottom: solid 1px rgba(51, 46, 46, 0.8117647059);
  }
}
.blogSection__toc__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.blogSection__toc__list {
  padding: 0 !important;
  list-style: none;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 500;
}
.blogSection__toc__list li a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
.blogSection__toc__list li a::before {
  content: "";
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  display: block;
  height: 2px;
  background: #fff;
  transition: all 0.4s ease-in-out;
}
.blogSection__toc__list li a.active::before {
  width: 30px;
}
.blogSection__toc__list a {
  margin: 0;
  padding: 0;
}
.blogSection__toc__list__item__link {
  text-decoration: none;
  color: #fff;
}
.blogSection__title {
  font-size: 2.7rem;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 768px) {
  .blogSection__title {
    font-size: 2rem;
  }
}
.blogSection__image {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.blogSection__blockquote p {
  width: 80%;
  font-style: italic;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .blogSection__blockquote p {
    font-size: 1rem;
  }
}
.blogSection__content {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .blogSection__content {
    font-size: 1rem;
  }
}

.headerSection {
  padding-top: 100px;
}

.ourStorySection {
  padding: 120px 0px;
  text-align: center;
}
@media (max-width: 768px) {
  .ourStorySection {
    padding: 60px 0px !important;
  }
}
.ourStorySection__content {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ourStorySection__content p {
  font-size: 1.5rem;
  width: 80%;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .ourStorySection__content p {
    font-size: 1rem;
  }
}
@media (max-width: 992px) {
  .ourStorySection__content p {
    width: 100%;
  }
}

.ourClientsSection {
  padding: 120px 0px;
  text-align: center;
}
@media (max-width: 768px) {
  .ourClientsSection {
    padding: 60px 0px !important;
  }
}
.ourClientsSection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-column-gap: 65px;
  grid-row-gap: 65px;
  grid-auto-flow: dense;
  place-content: center;
  place-items: center;
}
@media (max-width: 768px) {
  .ourClientsSection__grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }
}
@media (max-width: 992px) {
  .ourClientsSection__grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
.ourClientsSection__grid__item {
  width: 100%;
  padding: 10px;
  aspect-ratio: 1/1;
  height: 100%;
}
.ourClientsSection__grid__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.awardSection {
  padding: 120px 0px;
  text-align: center;
}
@media (max-width: 768px) {
  .awardSection {
    padding: 60px 0px !important;
  }
}
.awardSection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-column-gap: 65px;
  grid-row-gap: 65px;
  grid-auto-flow: dense;
  place-content: center;
  place-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .awardSection__grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }
}
@media (max-width: 992px) {
  .awardSection__grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
.awardSection__grid__item {
  width: 100%;
  padding: 10px;
  aspect-ratio: 1/1;
  height: 100%;
}
.awardSection__grid__item:nth-last-child(-n+2):nth-child(4n-1) {
  grid-column: 2/span 1;
}
.awardSection__grid__item:nth-last-child(-n+2):nth-child(4n) {
  grid-column: 3/span 1;
}
.awardSection__grid__item--small {
  max-width: 150px;
  height: auto;
}
.awardSection__grid__item--small img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center center;
}
@media (max-width: 992px) {
  .awardSection__grid__item--small {
    max-width: 100px;
  }
}
@media (max-width: 768px) {
  .awardSection__grid__item--small {
    max-width: 100px;
  }
}
@media (max-width: 576px) {
  .awardSection__grid__item--small {
    max-width: 70px;
  }
}
.awardSection__grid__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

[id^=heading-] {
  scroll-margin-top: 100px; /* Match your header height */
}

.author-info {
  background-color: #111111;
  padding: 1rem;
}
.author-info .author-avatar {
  display: flex;
  aspect-ratio: 1/1;
  border-radius: 50%;
  max-width: 40px;
  max-height: 40px;
  overflow: hidden;
}
.author-info .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.author-info .author-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.author-info .author-details .author-name {
  font-size: 1.3rem;
  font-weight: 600;
}
.author-info .author-details .author-bio {
  font-size: 1rem;
  opacity: 0.8;
}

.footer-section {
  background: #111111;
  padding: 150px 0px 0px 0px;
}
.footer-section ul li {
  list-style: none;
}
.footer-section .social-list {
  margin-top: 2rem;
}
.footer-section .social-list ul {
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex;
  gap: 30px;
}
.footer-section h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: "Montserrat", "Arial", sans-serif;
}
.footer-section p {
  font-size: 0.8rem;
  opacity: 0.8;
}
.footer-section span {
  font-size: 1rem;
  opacity: 1;
}
.footer-section .footer-logo img {
  width: 150px;
  margin-bottom: 1rem;
}
.footer-section .footer-logo p {
  opacity: 0.8;
  font-size: 0.8rem !important;
  line-height: 20px;
  width: 70%;
}
.footer-section .additional_links ul li {
  list-style: none;
  color: #fff;
  opacity: 0.8;
}
.footer-section .additional_links ul li a {
  color: #fff;
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}
.footer-section .additional_links ul li a:hover, .footer-section .additional_links ul li a:active, .footer-section .additional_links ul li a:focus {
  opacity: 1;
}
.footer-section .quick-links ul li {
  list-style: none;
  color: #fff;
  font-size: 1rem;
  opacity: 0.8;
}
.footer-section .quick-links ul li a {
  color: #fff;
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}
.footer-section .quick-links ul li a:hover, .footer-section .quick-links ul li a:active, .footer-section .quick-links ul li a:focus {
  opacity: 1;
}

.contactForm {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 0px;
}
.contactForm .contact-details {
  margin-bottom: 2rem;
}
.contactForm .contact-details a {
  font-size: inherit;
}
.contactForm .contact-info {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .contactForm__form {
    margin: 120px 0px;
  }
}
.contactForm .contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.contactForm .contact-info p {
  display: flex;
  flex-direction: column;
}
.contactForm .contact-info p .underline {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contactForm .contact-info p .underline::before {
  content: "";
  position: relative;
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  margin-top: 10px;
}

.form-control {
  background: transparent;
  border: solid 1px rgba(51, 46, 46, 0.8117647059);
  height: 50px;
  color: #fff;
}
.form-control:focus {
  outline: none;
  border-color: #000000;
  border: solid 1px #000000;
  background: transparent;
  color: #fff;
}
.form-control:focus-visible {
  outline: none;
  border-color: #000000;
  border: solid 1px #000000;
  background: transparent;
  color: #fff;
}

.termsConditions {
  padding-top: 120px;
}
.termsConditions__container p {
  margin-bottom: 2rem;
}
.termsConditions__container a {
  text-decoration: underline;
}

.letter-spacer {
  letter-spacing: 6px;
  font-size: 12px !important;
  font-family: "Futura PT Light" !important;
}
.letter-spacer p {
  font-size: 12px !important;
  font-family: "Futura PT Light" !important;
  letter-spacing: 6px;
}

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