/******GLOBAL******/
:root {
  --easeOutQuart-SlideInTop: 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 slideInTop;
  --easeInQuart-fadeIn: 0.8s cubic-bezier(0.11, 0, 0.5, 0) 0s 1 fadeIn;
}

@font-face {
  font-family: "Uncut Sans Variable";
  src: url("../resources/fonts/fonts/UncutSans-Variable.eot");
  src: url("../resources/fonts/fonts/UncutSans-Variable.eot?#iefix")
      format("embedded-opentype"),
    url("../resources/fonts/fonts/UncutSans-Variable.woff2") format("woff2"),
    url("../resources/fonts/fonts/UncutSans-Variable.woff") format("woff"),
    url("../resources/fonts/fonts/UncutSans-Variable.ttf") format("truetype"),
    url("../resources/fonts/fonts/UncutSans-Variable.svg#Uncut Sans Variable")
      format("svg");
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

@keyframes slideInTop {
  0% {
    transform: translateY(-150%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideInleft {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideInleftExt {
  0% {
    transform: translateX(-400%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    transform: translateX(150%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.not-yet-working {
  color: rgb(186, 186, 186) !important;
}

.logo-animation-from-top {
  animation: var(--easeOutQuart-SlideInTop), var(--easeInQuart-fadeIn);
}

.slide-in-left-delay-1st-step {
  opacity: 0;
  animation: 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.75s 1 slideInleft,
    0.8s cubic-bezier(0.11, 0, 0.5, 0) 0.75s 1 fadeIn;
  animation-fill-mode: forwards;
}

.slide-in-right-delay-1st-step {
  opacity: 0;
  animation: 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.75s 1 slideInRight,
    0.8s cubic-bezier(0.11, 0, 0.5, 0) 0.75s 1 fadeIn;
  animation-fill-mode: forwards;
}
/**/
/**/
.brand-icons-3-step-slide :nth-child(1) {
  opacity: 0;
  animation: 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.9s 1 slideInleftExt,
    0.8s cubic-bezier(0.11, 0, 0.5, 0) 0.9s 1 fadeIn;
  animation-fill-mode: forwards;
}
.brand-icons-3-step-slide :nth-child(2) {
  opacity: 0;
  animation: 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.75s 1 slideInleftExt,
    0.8s cubic-bezier(0.11, 0, 0.5, 0) 0.75s 1 fadeIn;
  animation-fill-mode: forwards;
}
.brand-icons-3-step-slide :nth-child(3) {
  opacity: 0;
  animation: 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.6s 1 slideInleftExt,
    0.8s cubic-bezier(0.11, 0, 0.5, 0) 0.6s 1 fadeIn;
  animation-fill-mode: forwards;
}
/**/
/**/
.fade-in-delay-2nd-step {
  opacity: 0;
  animation: 0.8s cubic-bezier(0.45, 0, 0.55, 1) 0.75s 1 fadeIn; /* Maybe 1.3s delay? */
  animation-fill-mode: forwards;
}

.slide-in-left-on-scroll {
  transform: translateX(-200px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.45, 0, 0.55, 1),
    opacity 1s cubic-bezier(0.45, 0, 0.55, 1);
}

.slide-in-right-on-scroll {
  transform: translateX(200px);
  opacity: 0;
  transition: 1s !important;
  transition-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
}

.fade-in-on-scroll {
  opacity: 0;
  transition: transform 1s cubic-bezier(0.45, 0, 0.55, 1),
    opacity 1s cubic-bezier(0.45, 0, 0.55, 1);
}

.fade-in-on-scroll.active,
.slide-in-left-on-scroll.active,
.slide-in-right-on-scroll.active {
  transform: translateX(0);
  opacity: 1;
}

.minimise-on-scroll {
  height: 40px !important;
}

.minimise-on-scroll #home-main-logo-dsk {
  transform: translateY(23px);
}

.minimise-on-scroll-links {
  transform: translateY(-30px);
}

html,
body {
  font-size: 100%;
  font-family: "Uncut Sans Variable";
  line-height: 1.69rem;
  letter-spacing: 0.025rem;
  text-align: left;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body {
  transition: 300ms;
}

.heading {
  position: absolute;
  opacity: 0;
  top: -100px;
}

#global-nav-bar-dsk {
  height: 150px;
  position: fixed;
  z-index: 5;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  background-color: white;
  transition: 500ms;
  overflow: hidden;
}

#desktop-nav-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 150px;
}

#global-nav-bar-mob {
  display: none;
}

.nav-link-box {
  width: 20%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* #nav-links-left {
    margin-left: 90px;
}

#nav-links-right {
    margin-right: 90px;
} */

.nav-button,
.nav-button-mob {
  text-decoration: none;
  color: black;
  transition: 400ms !important;
  animation: 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.75s 1;
}

.hover-underline {
  position: relative;
}

.hover-underline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #000000;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
  transform: scaleX(0);
}

.hover-underline:hover {
  cursor: pointer;
}

.hover-underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

#social-icons {
  opacity: 0;
  animation: 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.75s 1 slideInleft,
    0.8s cubic-bezier(0.11, 0, 0.5, 0) 0.75s 1 fadeIn;
  animation-fill-mode: forwards;
}

.social-icon-single {
  width: 22.3349609375px;
  height: 22.3349609375px;
}

.social-icon-single:hover {
  cursor: pointer;
}

#home-main-logo-dsk {
  width: 152px;
  display: block;
  transition: 500ms;
  padding-left: 3px;
}

#horiz-brand-icons-dsk-cont {
  display: block;
  opacity: 0;
  animation: 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.75s 1 slideInRight,
    0.8s cubic-bezier(0.11, 0, 0.5, 0) 0.75s 1 fadeIn;
  animation-fill-mode: forwards;
}

#horiz-logo-mob,
#landing-img-mob {
  display: none;
}

#hamburger-menu-mob {
  display: none;
}

footer {
  width: 100vw;
  margin-top: 66px;
  display: flex;
  flex-direction: column;
}

#footer-part-1-container {
  height: 88px;
  margin-bottom: 140px;
  display: flex;
  flex-direction: row;
  /* justify-content: space-between; */
}

#footer-part-1-left-box {
  display: flex;
  align-items: center;
  height: 88px;
}

#footer-part-1-left-box img {
  height: 56px;
  margin-right: 70px;
}

#footer-part-1-right-box {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

#footer-part-1-right-text {
  width: 411px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

#footer-part-1-right-contact {
  width: 200px;
  height: 100%;
  margin-right: 5px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 27px;
  text-align: right;
}

#footer-part-1-right-text > p {
  margin: 0;
  width: 100%;
  padding-right: 20px;
}

#footer-part-1-right-contact p {
  margin-top: 0;
  margin-bottom: 0;
}

#footer-part-1-right-contact > img {
  padding-top: 5px;
}

#footer-part-1-title {
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-align: left;
}

#footer-part-1-text {
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: left;
}

#email-icon {
  height: 15px;
  width: 20px;
}

#txt-message-icon {
  height: 19px;
  width: 20px;
}

#footer-part-2 {
  background-color: black;
  height: 82px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: white;
}

#footer-part-2-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#footer-part-2 a {
  text-decoration: none;
  color: white;
}

#mob-footer-socials {
  display: none;
}

#hero {
  height: 372px;
  margin-top: 70px;
}

#brand-icons-vert {
  height: 65px;
  width: 17.11px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* #brand-icons-vert {
    height: 65px;
    width: 17.11px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
} */

#hero > div {
  height: 30%;
  width: 100%;
  display: flex;
  align-items: end;
}

#hero div p {
  font-size: 1.25rem;
  line-height: 27px;
  letter-spacing: 0.01em;
  text-align: left;
  margin: 0;
  width: 729px;
}

.min-max-width-desktop {
  width: 80%;
  max-width: 1300px;
  margin: 0 auto;
}

.min-max-width-desktop-contact {
  width: 80%;
  max-width: 1300px;
}

#social-icons-main {
  width: 108px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto 0;
}

#social-icons-main a {
  height: 24px;
}

/******GLOBAL******/

/******CONTACT******/

.contact-link {
  text-decoration: none;
  color: black;
}

#contact-hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: calc(100vh - 200px);
}

#contact-info-container {
  height: 88px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  margin-top: 90px;
}

#contact-image-roll {
  position: relative;
  height: calc(100% - 190px);
  width: 40%;
  margin-top: 150px;
  object-fit: cover;
  margin-left: 10px;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#contact-image-roll img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  bottom: 0;
  background-color: white;
}

@keyframes fader {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* current slide */
#contact-image-roll > img:first-of-type {
  animation-name: fader;
  animation-delay: 5s;
  animation-duration: 2s;
  z-index: 20;
}

/* next slide to display */
#contact-image-roll > li:nth-of-type(2) {
  z-index: 10;
}

/* all other slides */
#contact-image-roll > img:nth-of-type(n + 3) {
  display: none;
}

/******CONTACT******/

#home-banner {
  padding-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}

#home-banner img {
  width: 100%;
  display: block;
  float: left;
}

#home-banner img:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.home-img-nav {
  overflow: hidden;
}

#home-desc-cta {
  margin-top: 47px;
  margin-bottom: 70px;
}

#home-desc-cta p {
  width: 729px;
}

#call-to-action-btn {
  margin-top: 50px;
  top: 1257px;
  left: 90px;
  padding: 10px 40px 10px 40px;
  border: 1px solid black;
  color: white;
  background-color: black;
  transition: background-color 200ms;
}

#call-to-action-btn:hover {
  color: black;
  background-color: white;
  border: 1px solid black;
  cursor: pointer;
}

/******SERVICES******/
#services-intro-txt {
  margin-top: -20px;
}

#services-intro-para {
  height: 108px;
  margin-top: -20px;
  margin-bottom: 20px;
}

#services-intro-para p {
  font-family: Uncut Sans Variable;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.01em;
  text-align: left;
  width: 725px;
}

#services-info-tabs {
  margin-top: 65px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#services-info-tabs > :nth-child(1),
#services-info-tabs > :nth-child(2),
#services-info-tabs > :nth-child(3) {
  margin-right: 5px;
}

.services-info-card :nth-child(1) p {
  font-size: 1.25rem;
}

.services-info-card {
  width: 15.3%;
  max-width: 200px;
  min-width: 150px;
}

.services-card-title-box {
  border-bottom: 2px solid black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 44px;
}

.services-card-title-box:hover {
  cursor: pointer;
}

.services-card-description {
  margin-top: 10px;
  font-size: 1rem;
  width: 100%;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 675ms;
  transition-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
}

.services-card-arrow-down {
  transition: 675ms;
  transition-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
}

.arrow-rotate {
  transform: rotate(180deg);
}

#services-cta {
  margin-bottom: 70px;
  margin-top: 25px;
}

/******SERVICES******/

/******WORK*******/
#work-projects-grid-container {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 70px;
}

.project-box {
  transition: 500ms;
  margin-bottom: 30px;
  cursor: pointer;
}

.work-project-img {
  width: 100%;
  aspect-ratio: 623 / 430;
  /* padding-bottom: 70px; */
  /* border-bottom: 2px solid black; */
  transition: 500ms;
}

.project-box a {
  height: 500px !important;
}

.project-box div {
  height: 4.37rem;
  display: flex;
  align-items: center;
  margin-top: -8px;
  transition: 500ms;
}

.work-project-title {
  font-size: 1.25rem;
  margin: 0px;
  transition: 500ms;
  text-transform: capitalize;
  overflow: hidden;
}

.work-hover-underline {
  position: relative;
}

.work-hover-underline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #000000;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
  transform: scaleX(0);
}

.work-hover-underline:hover {
  cursor: pointer;
}

.project-box:hover .work-project-title::after {
  transform: scaleX(1);
  transform-origin: bottom left;
  cursor: pointer;
  transition: transform 0.4s ease-in-out;
}

.project-box a {
  text-decoration: none;
  color: black;
}

.project-box a:hover {
  cursor: pointer;
}
/******WORK*******/

/****PROJECTS*****/

#work-project-desc {
  width: 740px;
  height: auto;
  font-size: 1.25rem;
}

#projects-web1-image-layout-container {
  margin-top: 50px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 14px;
  grid-row-gap: 14px;
}

#projects-web1-image-layout-container :nth-child(1),
#projects-web1-image-layout-container :nth-child(3) {
  display: grid;
  grid-template-columns: repeat(2, 0.5fr);
  grid-template-rows: 1fr;
  grid-column-gap: 14px;
}

#projects-web1-image-layout-container :nth-child(1) img,
#projects-web1-image-layout-container :nth-child(3) img {
  width: 100%;
  height: auto;
  margin-top: 0;
}

#projects-web1-image-layout-container:nth-child(2) {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-top: 14px;
  margin-bottom: 14px;
}

#projects-web1-image-layout-container :nth-child(2) img {
  height: auto;
  width: 100%;
  object-fit: cover;
}

#projects-web2-image-layout-container {
  margin-top: 50px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 3fr;
  grid-column-gap: 14px;
  grid-row-gap: 14px;
}

#projects-web2-image-layout-container :nth-child(1) {
  display: grid;
  grid-template-columns: repeat(2, 0.5fr);
  grid-template-rows: 1fr;
  grid-column-gap: 14px;
}

#projects-web2-image-layout-container :nth-child(1) img {
  width: 100%;
  height: auto;
  margin-top: 0;
}

#projects-web2-image-layout-container :nth-child(2) {
  display: grid;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  /* margin-top: 14px; */
  /* margin-bottom: 14px; */
}

#projects-web2-image-layout-container :nth-child(2) img {
  height: auto;
  width: 100%;
  object-fit: cover;
}

#projects-pr-image-layout-container {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.pr-image-column {
  width: 23%;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  align-items: center;
  /* gap: 16px; */
}

#pr-img-col-1 > img {
  width: 297px;
}

#pr-img-col-2 > img {
  width: 309px;
}

#pr-img-col-3 > img {
  width: 302px;
}

#pr-img-col-4 > img {
  width: 311px;
}

#pr-img-col-1 > img,
#pr-img-col-2 > img,
#pr-img-col-3 > img,
#pr-img-col-4 > img {
  padding-bottom: 20px;
}

#projects-archive-image-layout-container {
  margin-top: 50px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 3fr 1fr 3fr 1fr 3fr;
  grid-column-gap: 14px;
}

#projects-archive-image-layout-container :nth-child(1),
#projects-archive-image-layout-container :nth-child(3),
#projects-archive-image-layout-container :nth-child(5) {
  display: grid;
  grid-template-columns: repeat(2, 0.5fr);
  grid-template-rows: 1fr;
  grid-column-gap: 14px;
}

#projects-archive-image-layout-container :nth-child(1) img,
#projects-archive-image-layout-container :nth-child(3) img,
#projects-archive-image-layout-container :nth-child(5) img {
  width: 100%;
  height: auto;
  margin-top: 0;
}

#projects-archive-image-layout-container :nth-child(2),
#projects-archive-image-layout-container :nth-child(4),
#projects-archive-image-layout-container :nth-child(6) {
  display: grid;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-top: 14px;
  margin-bottom: 14px;
}

#projects-archive-image-layout-container :nth-child(2) img,
#projects-archive-image-layout-container :nth-child(4) img,
#projects-archive-image-layout-container :nth-child(6) img {
  height: auto;
  width: 100%;
  object-fit: cover;
}

/****PROJECTS*****/

/******ABOUT*******/

#about-intro {
  display: flex;
  flex-direction: row;
  margin-top: 7px;
}

#about-intro div :nth-child(1) {
  /* first para of intro, large text */
  font-size: 1.25rem;
  margin-bottom: 50px;
  margin-top: -7px;
}

#about-intro-blank-space {
  width: 1501px;
  height: 240px;
}

#about-overview {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 45px;
}

.about-overview-title {
  font-weight: 600;
  /* height: 40px; */
  /* border-bottom: 2px solid black; */
}

#about-overview div {
  width: 26%;
}

#about-overview :nth-child(3) {
  padding-right: 78px;
}

#about-overview :nth-child(1) p {
  margin-right: 23px;
}

#about-overview :nth-child(3) p {
  margin-right: 20px;
}

#about-cta {
  padding-bottom: 50px;
}

#team-card-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.team-member-card {
  width: 210px;
}

.team-portrate {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

#our-team-title {
  font-size: 1.25rem;
  margin-bottom: 60px;
}

.member-name {
  font-size: 1.25rem;
}

.member-job-title-container {
  margin-top: -15px;
  margin-bottom: 20px;
}

.about-card-arrow-down-mob {
  display: none;
  transition: 675ms;
  transition-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
}

.member-background-container {
  margin-bottom: 35px;
}

/******ABOUT*******/

/******LANDING******/
#landing-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#landing-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 49px;
  padding-left: 180px;
  padding-right: 180px;
}

#landing-txt {
  margin: 0 auto;
  opacity: 0;
  animation: 0.8s cubic-bezier(0.11, 0, 0.5, 0) 0.75s 1 fadeIn;
  animation-fill-mode: forwards;
}

#landing-txt :nth-child(1) {
  display: block;
}

#landing-txt :nth-child(2) {
  display: none;
}

#landing-txt :nth-child(3) {
  display: none;
}

#landing-img {
  margin: 0 auto;
  opacity: 0;
  animation: 0.8s cubic-bezier(0.45, 0, 0.55, 1) 0.75s 1 fadeIn;
  animation-fill-mode: forwards;
}

#landing-img-dsk {
  display: block;
}

#landing-img-dsk img {
  width: 1048px;
  margin-top: auto;
}

#landing-txt p {
  font-size: 1.25rem;
}

.nav-img-fade {
  transition: 300ms;
}
/******LANDING******/
/******MOBILE******/

@media only screen and (max-width: 325px) {
  #contact-para {
    padding-top: 50px !important;
  }
}

@media only screen and (max-width: 385px) {
  #services-info-tabs {
    margin-top: 150px !important;
  }
  .team-portrate {
    height: 30vh !important;
  }
}
@media only screen and (max-width: 500px) {
  /* #home-desc-cta p {
        font-size: 0.75rem;
    } */

  /* FOOTER PART 1 */

  #home-intro-txt p,
  #services-intro-para p {
    font-size: 1.1rem !important;
  }

  #footer-part-1-right-text {
    width: auto;
  }

  #footer-part-2 {
    height: 161px;
    align-items: flex-start;
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-size: 0.75rem;
  }

  #footer-part-2-container {
    flex-direction: column;
    width: 109px;
    height: 96px;
  }

  #footer-part-2 a {
    margin: 0px;
  }

  #footer-part-2-container > p {
    margin-top: -3px;
    margin-bottom: 18px;
  }

  #social-icons-main {
    width: 108px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    margin-top: 10px;
  }

  .tablet-max-width-w-padding {
    width: 90vw !important;
  }

  .tablet-max-width-w-padding-contact {
    width: 90vw !important;
  }

  #services-info-tabs {
    margin-top: 100px;
  }
  /* ABOUT */

  div.team-member-card {
    margin: 0 auto;
    width: 100%;
    height: auto !important;
  }

  .team-portrate {
    width: 100%;
  }

  #team-card-box {
    margin-right: -8px;
    display: block !important;
  }

  #meet-the-team-container {
    margin-bottom: -20px;
  }

  .member-job-title-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-height: 50px;
    margin-bottom: 0;
  }

  .about-card-arrow-down-mob {
    display: block;
    height: 20px;
    width: 20px !important;
  }

  .member-background-container {
    /* margin-bottom: 35px; */
    max-height: 0;
    overflow: hidden;
    transition: 675ms;
    transition-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
  }

  /******WORK*******/
  #work-projects-grid-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .work-project-img {
    width: 100%;
    aspect-ratio: 140 / 131;
    object-fit: cover;
  }

  .work-project-title {
    margin-right: 0rem;
  }

  #projects-web1-image-layout-container {
    grid-template-rows: 1fr 0.5fr 1fr;
  }

  #projects-web1-image-layout-container :nth-child(1),
  #projects-web1-image-layout-container :nth-child(3) {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-row-gap: 14px;
  }

  #projects-web2-image-layout-container {
    grid-template-rows: 1fr 0.5fr;
  }

  #projects-web2-image-layout-container :nth-child(1),
  #projects-web2-image-layout-container :nth-child(3) {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(1, 1fr);
    grid-row-gap: 14px;
  }

  #projects-archive-image-layout-container {
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  #projects-archive-image-layout-container :nth-child(1),
  #projects-archive-image-layout-container :nth-child(3),
  #projects-archive-image-layout-container :nth-child(5) {
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(2, 1fr) !important;
    grid-row-gap: 14px !important;
  }

  #projects-web1-image-layout-container :nth-child(1) img,
  #projects-web1-image-layout-container :nth-child(3) img,
  #projects-web2-image-layout-container :nth-child(1) img,
  #projects-archive-image-layout-container :nth-child(1) img,
  #projects-archive-image-layout-container :nth-child(3) img,
  #projects-archive-image-layout-container :nth-child(5) img {
    height: auto;
  }

  #projects-web2-image-layout-container :nth-child(2),
  #projects-archive-image-layout-container :nth-child(2),
  #projects-archive-image-layout-container :nth-child(4),
  #projects-archive-image-layout-container :nth-child(6) {
    margin-bottom: 0;
  }

  /* .large-project-img {
        width: 100% !important;
    } */

  #contact-para {
    padding-top: 20px !important;
  }

  #contact-para p {
    font-size: 1rem !important;
  }
}
/****** MOBILE ******/

@media only screen and (max-width: 537px) {
  #contact-para {
    padding-top: 50px;
  }

  #contact-hero {
    height: auto !important;
  }

  #home-banner img {
    width: 97% !important;
  }

  #home-banner :nth-child(2) {
    display: none;
  }
}

@media only screen and (min-width: 500px) {
  #contact-link-footer-2 {
    transform: translateY(14px);
  }
}

/****** MOBILE 2 ******/
@media only screen and (max-width: 745px) {
  #social-icons {
    min-width: 70px;
  }

  .social-icon-single {
    width: 20px;
  }

  #landing-txt {
    padding-left: 20px;
    padding-right: 20px;
    width: 100vw;
  }

  #landing-txt :nth-child(1) {
    display: none;
  }

  #landing-txt :nth-child(2) {
    display: block;
    margin-top: 120px;
    margin-bottom: 50px;
  }

  #landing-txt :nth-child(3) {
    display: block;
    width: 360px;
  }

  #landing-img :nth-child(2) {
    width: 100vw;
    height: auto;
  }

  #landing-img-dsk {
    display: none;
  }

  #landing-img-mob {
    display: block;
  }

  #home-desc-cta {
    margin-top: 35px;
    margin-bottom: 50px;
  }

  #home-desc-cta p {
    width: auto;
  }

  .tablet-max-width-w-padding {
    width: 93vw;
  }

  #services-intro-para p {
    width: 100%;
    height: auto;
  }

  #team-card-box {
    padding-right: 5px;
  }

  #about-overview {
    flex-direction: column;
  }

  #about-overview div {
    width: 100% !important;
  }

  #footer-part-1-right-contact {
    height: 50px !important;
  }

  #footer-part-1-container {
    height: 260px !important;
  }

  #footer-part-1-right-contact p {
    height: 1rem !important;
  }
}
/****** MOBILE 2 ******/

@media only screen and (max-width: 755px) {
  #work-project-desc {
    width: 100%;
    font-size: 1rem;
  }

  #projects-pr-image-layout-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-row-gap: 10px;
  }

  /* #projects-pr-image-layout-container div {
        width: 97%;
    } */

  #pr-img-col-1,
  #pr-img-col-3 {
    padding-right: 5px;
    width: 92% !important;
  }

  #pr-img-col-2,
  #pr-img-col-4 {
    padding-left: 5px;
    width: 95% !important;
  }

  /* .pr-image-column {
        gap: 10px !important;
    } */

  /* #projects-pr-image-layout-container div img {
        max-width: 100%;
    } */
}

/****** TABLET ******/
@media only screen and (max-width: 920px) {
  .slide-in-left-on-scroll {
    transform: translateX(-50px);
  }

  .slide-in-right-on-scroll {
    transform: translateX(-50px);
  }

  html,
  body {
    overflow-x: hidden;
  }

  #social-icons {
    margin-right: 20px;
  }

  #home-main-logo-dsk svg {
    display: none;
  }

  #landing-header {
    flex-direction: row-reverse;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }

  #horiz-brand-icons-dsk {
    display: none;
  }

  #horiz-logo-mob {
    display: block;
    margin-left: 20px;
    z-index: 15;
    background: white;
    transition: 500ms;
  }

  .nav-link-box {
    display: none;
  }

  #global-nav-bar-dsk {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    height: 100px;
  }

  #global-nav-bar-mob {
    z-index: 10 !important;
    position: fixed;
    width: 100vw;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 600;
    height: 100px;
    transition: 500ms;
    background: white;
  }

  #hamburger-menu-mob {
    display: block;
    margin-right: 10px;
    padding: 10px;
    transition: 300ms;
  }

  #mob-nav-open {
    z-index: 10;
  }

  #nav-links-mob {
    z-index: 5;
    background-color: rgb(255, 255, 255);
    position: absolute;
    width: 100vw;
    height: 0;
    top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    overflow: hidden;
    transition: 300ms;
    font-weight: 400;
    /* calc(40vh - 100px) */
  }

  /* #nav-links-mob :first-child {
        margin-top: 40px;
    } */

  #nav-links-mob a {
    width: 100%;
    padding-left: 40px;
    animation: 0.8s cubic-bezier(0.11, 0, 0.5, 0) 0.75s 1 fadeIn;
  }

  /* FOOTER PART 1 */

  #footer-part-2-container {
    width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
  }

  .tablet-max-width-w-padding {
    width: 95vw;
    padding-left: 20px;
    padding-right: 20px;
  }

  .tablet-max-width-w-padding-contact {
    width: 95vw;
    padding-left: 7px;
    padding-right: 20px;
  }

  #call-to-action-btn {
    margin-top: 40px;
    width: 135px;
    height: 37px;
    font-size: 0.75rem;
    padding-left: 20px;
    padding-right: 20px;
  }

  #hero {
    height: auto;
  }

  #blank {
    margin-bottom: 200px;
  }

  #blank-contact {
    margin-bottom: 165px;
  }

  #contact-info-container {
    margin-top: 0px;
    margin-bottom: 50px;
  }

  .tablet-max-width-w-padding-contact > :nth-child(3) {
    margin-bottom: 7px !important;
  }

  #brand-icons-vert {
    margin-bottom: 45px;
  }

  #home-intro-txt {
    margin-bottom: 25px;
    align-items: center !important;
  }

  #contact-title-p {
    margin-bottom: 22px !important;
  }

  #home-banner img {
    width: 100%;
  }

  #home-banner :nth-child(3) {
    display: none;
  }
  #services-intro-txt {
    margin-top: 13px;
    margin-bottom: 40px;
  }

  .project-box {
    margin-bottom: 0;
  }

  #work-projects-grid-container {
    margin-bottom: 25px;
  }

  /******WORK*******/
  /******WORK*******/
  .work-project-img {
    padding-bottom: 0;
  }
  .work-project-title {
    margin-top: 0;
  }

  #call-to-action-btn {
    width: 171px;
  }

  #hero > div {
    height: 11%;
  }

  #contact-image-roll {
    display: none;
  }
}
/****** TABLET ******/
/****** TABLET 2 ******/
@media only screen and (max-width: 700px) {
  /* FOOTER PART 1 */

  #services-info-tabs {
    flex-direction: column;
  }

  .services-info-card {
    margin: 0 auto !important;
    min-width: 100%;
    max-width: 100%;
  }

  .services-card-description p {
    margin-top: 0px;
  }

  #team-card-box {
    padding-right: 10px;
  }

  .team-member-card {
    height: 600px;
  }
}

@media only screen and (max-width: 630px) {
  .team-member-card {
    height: 700px !important;
  }
}

/****** TABLET 2 ******/
@media only screen and (max-width: 1048px) {
  #landing-img-dsk {
    width: 100vw;
  }
}

@media only screen and (max-width: 1148px) {
  #team-card-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 50px 50px;
    justify-items: initial;
  }

  .team-member-card {
    width: 100%;
    height: 550px;
  }

  .team-portrate {
    width: 100%;
    height: 50%;
    object-fit: cover;
  }

  #about-intro-blank-space {
    display: none;
  }

  #about-overview div {
    width: 30%;
  }

  #about-overview :nth-child(3) {
    padding-right: 0px;
  }

  /* .team-member-card {
        flex-basis: (50% - 40px);
    } */
}

@media only screen and (max-width: 1500px) {
  #projects-pr-image-layout-container div img {
    max-width: 100%;
  }

  #pr-img-col-1 {
    width: 23.4%;
  }

  #pr-img-col-2 {
    width: 24.3%;
  }

  #pr-img-col-3 {
    width: 24%;
  }

  #pr-img-col-4 {
    width: 24.8%;
  }
}

@media only screen and (min-width: 1920px) {
  #work-projects-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 775px) {
  footer {
    margin-top: 20px;
  }

  #footer-part-1-container {
    height: 300px;
    flex-direction: column;
    margin-bottom: 70px;
  }

  #footer-part-1-right-box {
    flex-direction: column;
    align-items: start;
  }

  #footer-part-1-right-text {
    margin-top: 5px;
    margin-bottom: 10px;
  }

  #footer-part-1-right-contact {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-row-gap: 20px;
    text-align: left;
  }

  #footer-part-1-right-contact p {
    margin: auto 0;
  }

  #footer-part-1-right-contact > img {
    display: none;
  }
}
