/* Fonts */
@font-face {
  font-family: CalSans; 
  src: url(../font/CalSans-Regular.ttf); 
}

@font-face {
  font-family: RobotoItalic;
  src: url(../font/Roboto-Italic-Variable.ttf); 
}

@font-face {
  font-family: Roboto; 
  src: url(../font/Roboto-Variable.ttf); 
}



/* Presets */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
  font-size: 1.6rem;
  overflow-x: hidden;
}

a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
	color: inherit;
	text-decoration: none;
	border-bottom: none;
	outline: none;
	box-shadow: none;
}



/* Utility Classes */
.no-select {
  user-select: none;
}




/* Margins */
.mt-1 {
  margin-top: 1rem;
}

.mt-1-5 {
  margin-top: 1.5rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-2-5 {
  margin-top: 2.5rem;
}

.mt-3 {
  margin-top: 3rem  ;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-6-5 {
  margin-top: 6.5rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mt-9 {
  margin-top: 9rem;
}

.mt-10 {
  margin-top: 10rem;
}

.mt-13 {
  margin-top: 13rem;
}

.mt-15 {
  margin-top: 15rem;
}


.pt-4 {
  padding-top: 4rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.no-bottom-margin {
  margin-bottom: 0rem!important;
}




/* Font Colours */
.color-red {
  color: #b52026!important; 
}

.color-pink {
  color: #fedcdc!important;
}

.color-beige {
  color: #f1dab0!important;
}

.color-ivory {
  color: #fcf8ef!important;
}

.color-charcoal {
  color: #030504!important;
}

.color-white {
  color: #ffffff!important;
}



/* Background Colours */
.bg-beige {
  background-color: #f1dab0;
}

.bg-red {
  background-color: #b52026; 
}

.bg-none {
  background-color: transparent;
}



/* Hover Background Colours */
.hover-bg-red:hover {
  background-color: #b52026; 
}

.hover-bg-pink:hover {
  background-color: #fedcdc; 
}

.hover-bg-charcoal:hover {
  background-color: #030504; 
}


/* Hover Font Colours */
.hover-text-white:hover {
  color: #ffffff!important;
}

.hover-text-red:hover {
  color: #b52026!important; 
}

.hover-text-charcoal:hover {
  color: #030504!important; 
}

.hover-text-pink:hover {
  color: #fedcdc!important; 
}




/* Border Colours */
.outline-white {
  border: 1px solid #ffffff!important;
}

.outline-black {
  border: 2px solid #000000!important;
}

.border-bottom-white {
    border-bottom: 2px solid #FFFFFF!important;
}


/* Font Sizes */
.font-3 {
  font-size: 3rem;
}

.row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.heading-large {
  font-family: CalSans;
  font-size: 5.5rem;
  font-weight: 400;
}

.heading-xlarge {
  font-family: CalSans;
  font-size: 8rem;
  font-weight: 400;
}

.heading-medium {
  font-family: CalSans;
  font-size: 3rem;
  font-weight: 400;
}

.meta-text,
.body-copy {
  font-family: Roboto;
  font-size: 2rem;
  font-weight: 300;
}

.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.image-rounded {
  border-radius: 10px;
}

.tag-list {
  display: flex;
  gap: 1rem;
}

.arrow-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-right: 2rem;
  box-sizing: border-box;
}

.arrow-link::after {
  content: "";
  display: block;
  background-color: #030504;
  mask-image: url("../icon/right-arrow.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../icon/right-arrow.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transform: rotate(-45deg);
}

.arrow-link-small::after {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  transition: background-color 0.4s ease, transform 0.35s ease;
}

.arrow-link-large::after {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background-color: #fedcdc;
  transition: background-color 0.2s ease, transform 0.2s ease;
}



/* Buttons */
.btn {
  display: inline-block;
  font-family: CalSans;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 2.4rem;
  font-weight: 400;
  border-radius: 32px;
  transition: background-color 0.5s ease, color 0.5s ease;
  min-width: 188px;
  text-align: center;
}


/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 40px 30px 40px;
  height: 100px;
  background-color: #ffffff;
  font-family: Roboto;

  position: sticky;
  top: 0;
  z-index: 1000;

  transition:
    width 1s ease,
    height 0.35s ease,
    padding 0.35s ease,
    top 0.35s ease,
    border-radius 2s ease,
    box-shadow 0.35s ease;
  
  }

.navbar.is-scrolled {
  width: 55vw;
  height: 75px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  top: 1rem;

  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px) saturate(100%);
  -webkit-backdrop-filter: blur(10px) saturate(100%);

  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 25px 40px rgba(3, 5, 4, 0.22);
}



.nav-logo {
  font-size: 4.5rem;
  letter-spacing: 0px;
  font-family: CalSans;
}

.nav-links {
  display: flex;
  gap: 5rem;
  margin-left: auto;
  list-style: none;
  margin-right: 5rem;
  font-weight: 500;
  font-size: 2.4rem;
}



/* Navbar Mobile */

.hamburger {
  width: 28px;
  height: 25px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 5px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
}


.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9998;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #030504;
  color: #FEDCDC;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.25s ease;
  z-index: 9999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 20px 50px rgba(3, 5, 4, 0.25);
  height: 574px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.mobile-menu-close {
  align-self: flex-end;
  border: 0;
  background: transparent;
  font-size: 54px;
  line-height: 1;
  cursor: pointer;
  color: #ffffff;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.mobile-menu-link {
  padding: 1rem 0rem;
  font-size: 3.5rem;
  font-family: CalSans;
  font-weight: 400;
  color: #FEDCDC;
}

body.mobile-menu-open .mobile-menu-overlay,
.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.mobile-menu-open .mobile-menu-panel,
.mobile-menu-panel.is-open {
  transform: translateY(0) !important;
  visibility: visible;
}

body.mobile-menu-open {
  overflow: hidden;
}




/* Hero Section */
.hero {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  height: 555px;
  min-height: 555px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  margin-left: 40px;
  padding-top: 40px;
}

.hero-text {
  font-family: CalSans;
  font-size: 28rem;
  line-height: 0.9;
}



/* Sub Navigation */
.sub-nav {
  padding: 0px;
}

.sub-nav-content {
  display: flex;
  width: 100%;
  padding: 0px 6px 0px 60px;
}

.sub-nav-item {
  display: flex;
  flex: 0 0 25%;
  min-width: 0;
  flex-direction: column;
  padding-bottom: 12px;
}



.sub-nav-top-border {
  position: relative;
  padding-top: 12px;
}

.sub-nav-top-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 2rem;
  height: 2px;
  background-color: #030504;
}


.arrow-link-hover-red:hover::after {
  background-color: #b52026;
  transform: rotate(0deg); 
}

.arrow-link-hover-pink:hover::after {
  background-color: #fedcdc;
  transform: rotate(0deg); 
}


/* Ticker */
.ticker {
  background-color: #030504;
  overflow: hidden;
  white-space: nowrap;
  height: 100px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 18s linear infinite;
}

.ticker-content {

  display: inline-flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
  flex-shrink: 0;

}

.ticker-text {
  font-family: CalSans;
  font-weight: 400;
  font-size: 3rem;
  flex: 0 0 auto;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* Sub Header */
.sub-header {
  margin-left: 4rem;
}

.sub-header-text {
  line-height: 1;
}



/* Work Section */
.work {
  padding: 4rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 4rem;
}

.work-item {
  position: relative;
  height: 716px;
  max-height: 716px;
}

.work-item-full {
  grid-column: 1 / -1;
}

.work-image-wrap {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 10px;
}

.work-image {
  transform: scale(1);
  transition: transform 1s ease;
  cursor: pointer;
}

.work-item:hover .work-image {
  transform: scale(1.26);
  transition: transform 1s ease;
}

.work-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.work-left{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.work-right {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.work-title {
  cursor: pointer;
}

.work-tags {
  margin-top: 0.5rem;
  gap: 1.5rem;
}

.work-tag {
  border: 1px solid #030504;
  border-radius: 100px;
  height: 37px;
  width: 132px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Roboto;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.work-tag:hover {
  background-color: #fedcdc;
}

.load-more {
  display: flex;
  justify-content: center;
  margin-bottom: 10rem;
}



/* About Accordion Section */

.about-accordion {
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.about-description-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.about-description {
  width: 1000px;
}

.accordion-container {

  margin-top: 7rem;

}

.accordion-item { 
  margin-top: 2rem;
  border-bottom: 2px solid #FFFFFF;

}

.accordion-content {
  font-family: CalSans;
  font-size: 2.7rem;
  font-weight: 300;
  padding-top: 1.2rem;
  padding-bottom: 0.8rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;

}

.accordion-content.is-open {
  max-height: 300px;
  opacity: 1;
  padding-top: 1.2rem;
  padding-bottom: 3.8rem;
}





.link-arrow-accordion.is-open::after {
  transform: rotate(90deg);
}


/* Clients Section */
.clients {
  background-color: #fcf8ef;
  padding: 4rem;
}


.clients-title {
  width: 100%;
  text-align: center;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 4rem;
  row-gap: 3rem;
  margin-left: 10rem;
  margin-right: 10rem;
  margin-bottom: 6rem;
}

.client-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}


/* Footer Section */

.footer {
  background-color: #030504;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  padding: 6.5rem 4rem 0rem 4rem;
}
.footer-heading {
  color: #ffffff;
}

.footer-sub-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.5rem;
}

.footer-email {
  font-family: CalSans;
  font-size: 5.5rem;
  font-weight: 400;
  color: #fedcdc;
  transition: color 0.5s ease;
}

.footer-left-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 8rem;
  margin-bottom: 4rem;
}

.footer-right-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-icon {
  min-width: 48px;
  min-height: 48px;
}

.footer-social-icon:hover {
  background-color: #fedcdc; 
}


.footer-content-link {
  color: #ffffff;
}

.footer-content-link a {
  display: inline-block;
  transition: transform 0.35s ease;
}

.footer-content-link:hover a {
  transform: translateX(2rem);
}

.footer-logo-text {
  font-family: CalSans;
  font-size: 28rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  margin-left: -1rem;

}

.footer-sub-content {
  background-color: #fedcdc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem 4rem 2rem 4rem;
  height: 64px;
}

.footer-text {
  font-family: Roboto;
  font-size: 1.8rem;
  font-weight: 300;
  color: #030504;
}

.footer-link {
  font-family: Roboto;
  font-size: 1.8rem;
  font-weight: 500;
  color: #030504;
  cursor: pointer;
}

.footer-link::after {
  content: "|";
  margin-left: 0.8rem;
  margin-right: 0.8rem;
  color: #030504;
}

.footer-link:last-child::after {
  content: "";
  margin: 0;
}





/* Icons */
.icon-insta {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  mask-image: url("../icon/instagram.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  -webkit-mask-image: url("../icon/instagram.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}


.icon-linkedin {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  mask-image: url("../icon/linkedin.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  -webkit-mask-image: url("../icon/linkedin.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;  
}


/* Contact Section */
.contact {
  padding: 4rem;
}

.contact-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.contact-title-text {
  font-family: CalSans;
  font-size: 15rem;
  font-weight: 400;
  line-height: 0.7;
}

.contact-description {
  max-width: 550px;
  text-align: right;
}

.contact-form-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8rem;
}

.contact-form-left {
  width: 55%;
}

.contact-form-right {
  width: 40%;
  margin-top: 2rem;
}

.input-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.input-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.input-label {
  font-family: Roboto;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.3em;
}

select.input-field {
  padding-right: 4.8rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%23030504' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.6rem center;
  background-size: 1.6rem;
}

.full-width {
  flex: 1;
  width: 100%!important;
}

.form-control {
  display: block;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  font-family: Roboto;
  font-size: 1.8rem;
  font-weight: 300;
  background-color: #F7F7F7;
  width: 100%;
  box-sizing: border-box;
}


.contact-hero-image-wrap {
  width: 100%;
  height: 699px;
  overflow: hidden;
  border-radius: 10px;
}


.contact-form-result-message {

  font-family: CalSans;
  font-size: 5.5rem;
  font-weight: 400;
  text-align: center;
  line-height: 1;

}


/* Text Section */

.text-section {
  padding: 5rem 10rem 5rem 10rem;
  margin: 0rem 10rem 5rem 10rem;
}

.text-sub-heading {
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.text-content p,
.text-content li {
  font-family: Roboto;
  font-size: 2rem;
  font-weight: 300;
}

.text-content p {
  margin-top: 3rem;
}

.text-content h2,
.text-content h3 {
  font-family: CalSans;
  font-size: 3rem;
  font-weight: 400;
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.text-content ul,
.text-content ol {
  margin-top: 3rem;
  padding-left: 2rem;
}

.about-hero-description p,
.contact-description p,
.blog-content p,
.blog-content li {
  font-family: Roboto;
  font-size: 2rem;
  font-weight: 300;
}

.about-hero-description p + p,
.contact-description p + p,
.blog-content p + p {
  margin-top: 3rem;
}

.blog-content h2,
.blog-content h3 {
  font-family: CalSans;
  font-size: 3rem;
  font-weight: 400;
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.blog-content ul,
.blog-content ol {
  margin-top: 3rem;
  padding-left: 2rem;
}

.blog-content .wp-block-image,
.blog-content figure {
  margin: 5rem 0;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* About Section */


.about-hero {
  padding: 4rem;
}

.about-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.content-left {
  width: 65%;
  padding-right: 4em;
}

.content-right {
  width: 35%;
}

.about-hero-heading {
  line-height: 1;
}

.about-hero-description {
  margin-top: 4rem;
}


.about-hero-image-wrap {
  width: 100%;
  height: 640px;
  overflow: hidden;
  border-radius: 10px;
}

/* News Section */

.news-section {
  padding: 4rem 4rem 4rem 4rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}

.news-content-left {
  width: 400px;
}

.news-content-right {
  width: 60%
}

.news-header {
  line-height: 1;
}


.article-container {
  padding: 0rem 2rem;
}

.article {
  padding: 2rem 0rem;
  border-bottom: 2px solid #030504;
  cursor: pointer;
}

.article:hover {
  transition: color 0.35s;
}

.article-date {
  margin-bottom: 1rem;

}

.blog-post {
  padding: 6rem 12rem 6rem 12rem;
  margin: 0rem 6rem 0rem 6rem;
}

.blog-date {
  margin-bottom: 2rem;
}

.blog-header {
  line-height: 1;
}

.blog-text {
  margin: 3rem 0rem;

}

.blog-image-full-width {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 5rem;
  margin-bottom: 5rem;
  height: 600px;
  overflow: hidden;
  padding: 0rem 4rem 0rem 4rem;
}

.blog-image-full-width img {
  width: 100%;
  height: 600px;
}

.blog-quote {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6rem;
  margin-top: 6rem;
  width: 750px;
  text-align: center;
}

.quote-author {
  text-transform: uppercase;
  margin-top: 2rem;
}

.quote-author::before {
  content: "—";
  margin-right: 0.5rem;
}

.blog-image-duo {

  display: grid;
  width: fit-content;
  grid-template-columns: repeat(2, 500px);
  column-gap: 2rem;
  row-gap: 2rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6rem;
  margin-bottom: 6rem;

}

.blog-small-image {
  width: 500px;
  height: 500px;
}

.article-mini > .article {
  border-bottom: none!important;
}

.article-mini > .article:not(:last-child) {
  border-bottom: 2px solid white!important;
}


/* Project Item Section */

.project {
  padding: 0rem 2rem;
}

.project-image-full-width {
  width: 100%;
  max-width: 100%;
  margin-top: 0rem;
  margin-bottom: 5rem;
  height: 600px;
  overflow: hidden;
  padding: 0rem 2rem;
}

.project-image-full-width img {
  width: 100%;
  height: 600px;
}

.project-info-container {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  width: 100%;
  padding: 0rem 2rem;
}

.project-left {
  flex: 0 0 300px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-right {
  flex: 1;
}

.project-tags {
  padding-top: 1rem;
  flex-direction: column;

}

.project-description {
  padding-top: 2rem;
}

.project-image-grid {
  display: flex;
  margin-top: 6rem;
  padding: 0rem 2rem;
  flex-direction: column;
  gap: 2rem;
}

.project-row-2-2,
.project-row-1-3,
.project-row-1-1,
.project-row-3-1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  height: 600px;
  margin: 0rem;
}

.project-row-2-2 > *:first-child {
  grid-column: span 2;
}

.project-row-2-2 > *:last-child {
  grid-column: span 2;
}

.project-row-3-1 > *:first-child {
  grid-column: span 3;
}

.project-row-3-1 > *:last-child {
  grid-column: span 1;
}

.project-row-1-3 > *:first-child {
  grid-column: span 1;
}

.project-row-1-3 > *:last-child {
  grid-column: span 3;
}

.project-row-1-1 > * {
  grid-column: span 2;
}

.project-image-grid img {
  width: 100%;
  height: 600px;
}

.other-projects {
  padding: 4rem;
}

.other-projects-title-container {
  padding-top: 2rem;
}

.project-items-block {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}

.project-items-block > * {
  flex: 1;
  margin: 4rem 0rem;
}

.other-project-item {
  cursor: pointer;

}

.other-project-image {
  height: 394px;
  max-width: 100%;
}

.other-project-item-title {
  margin-top: 1rem;
}

.other-project-item-client {
  margin-top: 1rem;
}

.other-project-item:hover .link-arrow::after {
  background-color: #b52026;
  transform: rotate(0deg); 
}






/* Responsive Utility Classes */

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }

  .navbar {
    padding: 2rem!important;
  }
  .nav-logo {
    padding: 0px!important;
  }

  .hero {
    padding: 4rem 1rem 1rem 1rem;
    height: auto;
    min-height: auto;
  }

  .hero-content {
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    text-align: center;
  }

  .hero-text {
    font-size: 11rem;
    text-align: center;
  }

  .sub-nav {
    padding: 0px;
  }

  .sub-nav-content {
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
  }

  .sub-nav-item {
    margin-top: 2rem;
    width: 100%;
    border-bottom: 2px solid #030504;
  }

  .sub-nav-header {
    font-size: 1.6rem;
  }

  .sub-nav-text {
    margin-top: 0.5rem;
    font-size: 2.4rem;
  }

  .ticker {
    margin-top: 3rem;
    height: 80px;
  }

  .ticker-text {
    font-size: 2.4rem;
  }

  .sub-header {
    padding: 0rem 1rem 0rem 1rem;
    margin-left: 0rem;
    margin-top: 5rem;
    align-items: center;
    text-align: center;
  }

  .sub-header-text {
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 3rem;
  }

  .work {
    padding: 2rem;
  }

  .section-title,
  .other-project-title {
    width: 100%;
    text-align: center;
    font-size: 3.5rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
    row-gap: 4rem;
  }

  .work-item {
    height: auto;
    max-height: none;
  }
  
  .work-image-wrap {
    height: 337px;
    width: 100%;
  }

  .work-title {
    font-size: 2.4rem;
  }

  .work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .work-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0rem; 
  }

  .work-tag {
    flex: 0 0 auto;
    overflow-wrap: anywhere;
  }

  .work-client {
    font-size: 1.6rem;
  }

  .work-year {
    font-size: 1.6rem;
  }


  .about-accordion {
    padding: 6rem 2rem 6rem 2rem;
  }

  .about-title {
    font-size: 5rem;
    text-align: center;
  }

  .about-description {
    font-size: 1.6rem;
    text-align: center;
    width: 100%;
  }

  .accordion-header {
    font-size: 3.5rem;
  }

  .accordion-content {
    font-size: 1.8rem;
  }

  .link-arrow-accordion::after {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }

  .clients {
    padding: 2rem;
  }

  .clients-title {
    font-size: 3.5rem;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
    row-gap: 2rem;
    margin-top: 4rem;
    margin-left: 2rem;
    margin-right: 2rem;
    margin-bottom: 4rem;
  }

  .footer {
    padding: 0rem;
  }

  .footer-content {
    padding: 2rem 2rem 2rem 2rem;
  }

  .footer-heading {
    font-size: 2.4rem;
  }

  .footer-sub-heading,
  .contact-title,
  .contact-form-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-email {
    font-size: 3.5rem;
    margin-top: 0rem;
    padding-top: 0rem;
    margin-bottom: 2rem;
  }

  .center-horizontal-mobile {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  } 

  .footer-content-link {
    font-size: 2.4rem;
  }
  
  .footer-logo-text {
    font-size: 12rem;
    margin-left: 0.1rem;
  }

  .footer-right-links {
    margin-top: -5rem;
  }

  .footer-sub-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.5rem;
    height: auto;
  }

  .footer-link {
    font-size: 1.4rem;
  }

  .footer-text {
    font-size: 1.4rem;
  }

  .contact {
    padding: 2rem;
    margin-bottom: 4rem;
  }

  .contact-title-text {
    font-size: 7rem;
    text-align: center;
  }

  .contact-description {
    text-align: center;
    font-size: 1.6rem;
  }

  .contact-form-left {
    width: 100%;
    margin-bottom: 3rem;
  }

  .input-row {
    flex-direction: column;
    gap: 1.5rem;
  }

   .contact-form-right {
    width: 100%;
    margin-top: 0rem;
  }

  .contact-hero-image-wrap {
    height: 337px;
    width: 100%;
  }

  .btn-mobile-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4rem;
  }

  .input-container {
    margin-top: 1rem;

  }

  .input-label {
    margin-bottom: 1rem;
  }

  .contact-form-result-message {
    font-size: 3.5rem;
  }

  .load-more {
    margin-bottom: 6rem;
  }

  .text-section {
    padding: 3rem 2rem 3rem 2rem;
    margin: 0rem 0rem 7rem 0rem;
  }

  .text-heading {
    font-size: 5rem;
  }

  .text {
    font-size: 1.6rem;
  }

  .text-content p,
  .text-content li {
    font-size: 1.6rem;
  }

  .about-hero-description p,
  .contact-description p,
  .blog-content p,
  .blog-content li {
    font-size: 1.6rem;
  }

  .text-sub-heading {
    font-size: 2.4rem;
    margin-top: 5rem;
    margin-bottom: 2rem;
  }

  .text-content h2,
  .text-content h3 {
    font-size: 2.4rem;
  }

  .blog-content h2,
  .blog-content h3 {
    font-size: 2.4rem;
  }

  .about-hero {
    padding: 2rem;
  }

  .about-hero-content {
    flex-direction: column;
  }

  .content-left {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-right: 0rem;
    align-items: center;
  }

  .content-right {
    width: 100%;
    margin-top: 4rem;
  }

  .about-hero-heading {
    font-size: 5rem;
    line-height: 1;
    text-align: center;
  }

  .about-hero-description {
    font-size: 1.6rem;
    margin-top: 4rem;
    text-align: center;
  }

  .news-section {
    padding: 2rem;
    flex-direction: column;
  }

  .news-content-left {
    width: 100%;
  }

  .news-content-right {
    width: 100%;
    margin-top: 3rem;
    padding-bottom: 4rem;
  }

  .news-header {
    font-size: 3.5rem;
    padding-top: 4rem;
  }

  .article-container {
    padding: 0rem;
  }

  .blog-post {
    padding: 2rem;
    margin: 0rem 0rem 3rem 0rem;
    text-align: center;
  }

  .blog-date {
    font-size: 1.6rem;
  }

  .blog-header {
    font-size: 3.5rem;
  }

  .blog-quote {
    width: 100%;
  }

  .quote-text {
    font-size: 2.4rem;
  }

  .quote-author {
    font-size: 1.6rem;
  }

  .blog-image-duo {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .blog-small-image {
    width: 100%;
    height: 180px;
    display: block;
  }


  .blog-image-full-width  {
    height: 337px;
  }

  .blog-image-full-width img {
    height: 337px;
  }

  .project {
    padding: 2rem;
  }

  .project-image-full-width {
    padding: 0rem;
    height: 337px;
  }

  .project-image-full-width img {
    height: 337px;
  }
  
  .project-info-container {
    flex-direction: column-reverse;
    padding: 0rem;
  }

  .project-left {
    width: 100%;
    flex: none;
  }

  .project-row-2-2,
  .project-row-1-3,
  .project-row-1-1,
  .project-row-3-1 {
    grid-template-columns: 1fr;
  }


  .project-row-2-2 > *,
  .project-row-1-3 > *,
  .project-row-1-1 > *,
  .project-row-3-1 > * {
    grid-column: auto;
  }

  .project-row-3-1 > *:last-child {
    display: none;
  }

  .project-row-1-3 > *:last-child {
    display: none;
  }

  .other-projects-title-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0rem;
    text-align: center;
    margin-bottom: 4rem;
  }

  .project-items-block {
    flex-direction: column;
  }

  .project-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .project-items-block > * {
    width: 100%;
  }

  .other-project-item {
    margin: 0px!important;
  }

  .project-image-grid {
    padding: 0rem;
    margin: 2rem 0rem 0rem 0rem;
  }

  .other-projects {
    padding: 2rem;
  }

}



@media (min-width: 768px) {
  .hide-desktop {
    display: none!important;
  }
}

