/** CSS **/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

:root {
  --inter: "Inter", sans-serif;
  --orange: #f06724;
  --white: #ffffff;
  --black: #4A4A4A;
  --xsmall: 10px;
  --small: 20px;
  --medium: 40px;
  --large: 80px;
  --header-height: 80px;
  --pageLabel: 60px;
}

body {
  font-family: var(--inter);
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--inter) !important;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.subHeading {
  font-weight: 300;
  line-height: 120%;
  font-size: 22px;
}

.head {
  display: block;
  font-size: 20px;
  text-align: left;
  padding: 0 0 10px 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.bold,
b {
  font-weight: 600 !important;
}

p {
  line-height: 130%;
}

img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.g1 {
  width: 8.33%;
}

.g2 {
  width: 16.67%;
}

.g3 {
  width: 25%;
}

.g4 {
  width: 33.33%;
}

.g5 {
  width: 41.67%;
}

.g6 {
  width: 50%;
}

.g7 {
  width: 58.33%;
}

.g8 {
  width: 66.67%;
}

.g9 {
  width: 75%;
}

.g10 {
  width: 83.33%;
}

.g11 {
  width: 91.67%;
}

.g12 {
  width: 100%;
}

.g1,
.g2,
.g3,
.g4,
.g5,
.g6,
.g7,
.g8,
.g9,
.g10,
.g11,
.g12 {
  display: flex;
}

.gap {
  gap: var(--medium);
}

body {
  padding-top: var(--header-height);
}

._btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--orange);
  text-align: center;
  color: var(--white);
  height: 40px;
  padding: 0 var(--small);
  cursor: pointer;
  transition: 0.5s ease-in-out !important;
  border: 1px solid var(--white);
  border-radius: 10px;
}
@media (hover: hover) {
  ._btn:hover {
    background-color: var(--black);
  }
}

header {
  height: var(--header-height);
}

.row,
.flex {
  display: flex;
}
.row.wrap,
.flex.wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.column {
  display: flex;
  flex-direction: column;
}

#page-studio .banner-holder,
#page-sustainability .banner-holder,
#page-team .banner-holder {
  width: 100%;
}
#page-studio .banner-holder img,
#page-sustainability .banner-holder img,
#page-team .banner-holder img {
  width: 100%;
}
#page-studio .banner-holder .bottomNoteHolder,
#page-sustainability .banner-holder .bottomNoteHolder,
#page-team .banner-holder .bottomNoteHolder {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  padding-bottom: var(--medium);
  z-index: 2;
}
#page-studio .banner-holder .bottomNoteHolder p,
#page-sustainability .banner-holder .bottomNoteHolder p,
#page-team .banner-holder .bottomNoteHolder p {
  bottom: 40px;
  font-size: 24px;
  color: #fff;
  z-index: 2;
  font-weight: 400;
}

.paraHolder {
  width: 100%;
  height: 40vh;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

.blackLine {
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--black);
}

.ticky-holder {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  gap: 20px;
  animation: slide 35s linear infinite;
}

.ticky-holder:hover {
  animation-play-state: paused;
}

.slide {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  gap: 20px;
}

.icon-tile {
  width: 33.33%;
  padding: 0 2.5vw;
  color: #fff;
  gap: 20px;
}
.icon-tile img {
  display: block;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon-circle {
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}

@keyframes slide {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}
.mt100svh {
  margin-top: 100svh;
}

.acknowledgement {
  text-align: center;
  font-size: 12px;
  width: 60em;
  max-width: 100%;
  margin: auto;
}

.galleryGridHolder {
  display: block;
  min-height: 100svh;
  width: 100%;
  position: relative;
}

.innerUl {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding-top: 10px;
}
.innerUl li {
  list-style: none;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 20px;
}
.innerUl li ol {
  padding: 0 0 var(--xsmall) 0;
}
.innerUl li ol:nth-child(2) {
  padding-top: var(--xsmall) !important;
}
.innerUl li ol li {
  list-style: initial !important;
  display: list-item;
  display: flex;
  align-items: center;
}
.innerUl li ol li::before {
  content: "";
  width: 12px;
  height: 3px;
  border-radius: 1px;
  background-color: var(--orange);
  margin-right: 0.5em;
}
.innerUl li ol li .btnCategories.active {
  font-weight: 400;
}

.btnCategories.active {
  color: var(--orange);
  font-weight: 600;
}

.popUp {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(74, 74, 74, 0.95);
  display: none;
}
.popUp .popUpHolder {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: var(--small);
}
.popUp .popUpHolder button {
  background-color: transparent;
  color: var(--orange);
  border: 0 none;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 1px;
  display: block;
  margin-bottom: var(--xsmall);
  text-transform: uppercase;
  cursor: pointer;
  font-size: 18px;
}
.popUp .popUpHolder .column {
  width: 600px;
  max-width: 100%;
  background-color: var(--white);
  padding: var(--small);
  border-radius: var(--xsmall);
}
.popUp .popUpHolder .column p {
  font-size: 12px;
}
.popUp .popUpHolder .column .input-holder label {
  font-size: 12px;
}
.popUp .popUpHolder .column .b_submit {
  cursor: pointer;
  color: rgba(74, 74, 74, 0.8);
}

.b_submit {
  cursor: pointer;
}

input,
select {
  border: 1px solid rgba(74, 74, 74, 0.5);
}

.flex-control-nav {
  z-index: 2;
}

.link {
  display: flex;
  width: 31.333%;
  margin: 1%;
}

.innerUl li {
  margin-bottom: 6px;
}
.innerUl li ol {
  padding-bottom: 10px;
  display: none;
}
.innerUl li ol li {
  margin-bottom: 6px;
}
.innerUl li ol li:last-child {
  margin-bottom: 0;
}
.innerUl li:has(a.active) ol {
  display: block;
  padding-bottom: 10px;
}

#nav {
  right: var(--small);
}

.mainlogo {
  left: var(--small);
}

.input-holder label {
  text-align: left;
}

.checkbox-holder {
  display: flex;
  width: 23%;
  padding-right: 2%;
  position: relative;
  margin-bottom: var(--xsmall);
}
.checkbox-holder input {
  display: flex;
  width: 1em;
  height: 1em;
  position: absolute;
  left: 0;
}
.checkbox-holder input:checked {
  background-color: var(--white);
}
.checkbox-holder label {
  padding-left: 2em;
}

.g12:has(> .checkbox-holder) {
  padding-left: 166px;
}

.centerPosition {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 1px;
}

.new_accredit img {
  max-height: 60px;
}

.Copyright,
.privacy-policy,
.pipe {
  font-size: 12px;
}

.acknowledge {
  font-size: 14px;
  max-width: 60em;
  margin: 0 auto;
}

.lazyFade {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.lazyFade.fadeIn {
  opacity: 1;
}

.pipe {
  display: inline-block;
  margin: 0 10px;
  color: rgba(74, 74, 74, 0.5);
}

.container {
  max-width: 1320px;
  padding-left: var(--medium);
  padding-right: var(--medium);
}

.pageLabel {
  padding-bottom: var(--small);
}

#page-home .banner-holder {
  height: calc(100svh - var(--header-height));
  overflow: hidden;
}

.abs-b {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--large);
  font-size: 24px;
  color: #fff;
  z-index: 2;
  font-weight: bold;
}

.abs-b span {
  display: block;
  font-weight: normal;
  font-size: 20px;
  padding-top: 5px;
}

.full-height {
  height: calc(100vh - var(--header-height));
  background-size: cover;
  position: relative;
}

#download form label {
  color: var(--white);
}
#download form input {
  color: var(--white);
  border: 1px solid var(--white);
  width: calc(100% - 200px);
}
#download form input.b_submit {
  padding: var(--xsmall) var(--small);
  width: -moz-max-content;
  width: max-content;
}
#download form p {
  color: var(--white);
}

.downloadImage {
  position: absolute;
  width: 100%;
  max-width: calc((100% - 1320px) / 2 + 440px);
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

._br1px {
  padding: 0 var(--large);
  border-right: 1px solid var(--white);
  line-height: initial;
}
._br1px.noborder {
  border-right: 0;
}

.center-align-p p {
  text-align: center;
}

#page-team .landing {
  height: calc(100svh - var(--header-height));
}
#page-team .landing .banner-holder {
  height: calc(100% - var(--pageLabel));
}
#page-team .landing .banner-holder img {
  height: 100%;
}

#filter {
  display: none;
}

#filterSection .close {
  display: none;
}

#instagram_feeds span.details {
  width: 100%;
  max-width: 100%;
}

#instagram_feeds .hover {
  padding: var(--xsmall) 0;
}

.followus {
  border: 1px solid var(--orange);
  color: var(--orange);
}

._1by1 {
  aspect-ratio: 1/1;
}

._4by5 {
  aspect-ratio: 4/5;
}

input,
select,
textarea {
  border-radius: 10px;
}

.brl {
  height: -moz-max-content;
  height: max-content;
}

.full-width {
  width: 100%;
  max-width: 100%;
}

.align-item-stretch {
  align-items: stretch;
}

.mba {
  margin-bottom: auto;
}

.bold,
b,
strong {
  font-weight: 600 !important;
}

.ptl {
  padding-top: var(--large);
}

.pbl {
  padding-bottom: var(--large);
}

.ptm {
  padding-top: var(--medium);
}

.pbm {
  padding-bottom: var(--medium);
}

.pts {
  padding-top: var(--small);
}

.space-between {
  justify-content: space-between;
}

.pbs {
  padding-bottom: var(--small);
}

.pbxs {
  padding-bottom: var(--xsmall);
}

.center-align {
  text-align: center;
}

.mb0 {
  margin-bottom: 0;
}

.white {
  color: var(--white);
}

.bg-black {
  background-color: var(--black);
}

.bg-orange {
  background-color: var(--orange);
}

@media screen and (max-width: 768px) {
  .just-dekstop {
    display: none;
  }
  .g1,
  .g2,
  .g3,
  .g4,
  .g5,
  .g6,
  .g7,
  .g8,
  .g9,
  .g10,
  .g11,
  .g12 {
    width: 100%;
    position: relative;
  }
  .m-column {
    flex-direction: column;
  }
  .full-width {
    width: 100% !important;
    max-width: 100% !important;
  }
  .mt100svh {
    margin-top: 60vh;
  }
  .container {
    width: 100% !important;
  }
  .link {
    width: 100%;
    border: 0 none;
    margin-bottom: var(--small) !important;
  }
  .row .link img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
    max-width: 100%;
  }
  .hover {
    position: relative;
    opacity: 1;
    background: white;
    transition: opacity 0s;
    display: block;
    top: initial;
    left: initial;
    height: auto;
    padding: var(--small) 0;
  }
  .hover img {
    display: none !important;
  }
  .hover .details {
    color: var(--black);
    position: relative;
    bottom: initial;
    left: initial;
    display: block;
    color: var(--black);
    font-weight: bold;
    font-size: 14px;
  }
  .hover .details span {
    font-size: 12px;
  }
  .g12:has(> .checkbox-holder) {
    padding-left: 0;
    padding-bottom: var(--medium);
  }
  .checkbox-holder {
    width: 20px;
  }
  .submit-holder {
    padding-top: 0 !important;
  }
  .mainlogo {
    left: var(--small);
  }
  #nav-toggle {
    right: var(--small);
  }
  .item {
    width: 50% !important;
    margin: 0% !important;
    border-right: 10px solid var(--white);
  }
  h1.middle {
    font-size: 30px;
    padding-left: var(--xsmall);
    padding-right: var(--xsmall);
    color: #fff;
    text-align: center;
  }
  .paraHolder {
    background-attachment: initial;
  }
  .m-column {
    flex-direction: column;
  }
  .pipe {
    display: none;
  }
  .container {
    max-width: 100%;
    padding-left: var(--small);
    padding-right: var(--small);
  }
  .Copyright,
  .privacy-policy {
    text-align: center;
    padding-bottom: 10px;
  }
  #nav {
    right: 0;
  }
  #download form input {
    width: 100%;
  }
  #page-studio .banner-holder .bottomNoteHolder,
  #page-sustainability .banner-holder .bottomNoteHolder,
  #page-team .banner-holder .bottomNoteHolder {
    padding-bottom: var(--xsmall);
  }
  #page-studio .banner-holder .bottomNoteHolder p,
  #page-sustainability .banner-holder .bottomNoteHolder p,
  #page-team .banner-holder .bottomNoteHolder p {
    font-size: 14px;
  }
  .subHeading br {
    display: none !important;
  }
  .m-column-reverse {
    flex-direction: column-reverse;
  }
  ._br1px {
    padding: 0;
    border-right: 0 none;
    margin-right: 0;
    margin: 0 auto;
  }
  .m-mbm {
    margin-bottom: var(--medium);
  }
  .ratio20by10 {
    aspect-ratio: 20/10;
  }
  #filterSection {
    position: fixed;
    width: 100%;
    height: calc(100vh - var(--header-height));
    left: 0;
    top: var(--header-height);
    z-index: 2;
    background-color: var(--white);
    padding: 50px 20px;
    transition: 0.5s;
    transform: translateX(-100%);
    font-size: 14px;
  }
  #filterSection .close {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    border: 1px solid var(--orange);
    color: var(--white);
    background-color: var(--orange);
    display: block;
    padding: 10px;
    top: 0;
    font-size: 14px;
  }
  #filterSection.visible {
    transform: translateX(0);
  }
  #filter {
    display: block;
    position: sticky;
    top: var(--header-height);
    z-index: 2;
    border: 0 none;
    padding: 10px;
    background-color: var(--orange);
    color: var(--white);
    border: 1px solid var(--orange);
    font-size: 14px;
  }
  #page-team .landing {
    height: initial;
  }
  #page-team .landing .banner-holder img {
    height: 100%;
  }
  .ratio20by10 {
    aspect-ratio: 2/1 !important;
  }
}/*# sourceMappingURL=main.css.map */