
:root {
    --primary-color: #F6F3F1;
    --secondary-color: #2E3B2E;
    --accent-color: #926953;
    --green-color: #8D9B8A;
    --light-green-color: #c4d1c2;
    --header-font: "Montserrat", serif;
    --body-font: "Roboto", serif;
    --def: #96B7C4;
    --inv: #fff;
    --light-blue-color: #C6D5DD;
    --dark-beige-color: #E9E0DD;
    --gold-color: #91774f;
}

* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    background-color: var(--primary-color);
    transition: background-color 0.5s ease;
    scroll-behavior: smooth;
    position: relative;
    height: 100%;
}

body.non-home header {
  height: 80px;
}

header {
    padding: 20px 0;
}

body.non-home .inner-header {
  height: 80px;
}


header {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    color: white;
    background: transparent;
    transition: height 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 80px;
}

.inner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 60px; /* Increased padding in default state */
    transition: padding 0.3s ease-in-out;
    height: 80px;
}

header .logo svg {
width: 150px;
height: auto;
max-height: 100%;
display: block;
}

/* Default styles for navigation *

/
 */

#main-list {
    display: flex;
    flex-direction: row;
    gap: 0;
    transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
    align-items: center;
    align-content: center;
    justify-content: center;
    z-index: 0;
}

#main-list a {
    position: relative;
    padding: 0 24px;
}

#main-list a:last-child {
    padding: 0 12px 0 24px !important;
}

#main-list a:first-child {
     padding: 0 24px 0 12px  !important;
}



#main-list a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 0;
    color: currentColor;
}


.navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;

}

.nav-list {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    margin-right: 32px;
}

.navigation .nav-list { padding: 8px 16px; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.25); display: flex; align-items: center; gap: 20px; } 

.nav-list a { transition: color 0.25s; font-size: 14px}

/* Hamburger menu (hidden by default) */
.hamburger-menu, .mobile-hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-menu .bar, .mobile-hamburger-menu .bar {
    width: 30px;
    height: 3px;
    background: black;
    transition: 0.3s;
}

/* On scroll down: Hide normal menu and show hamburger */
.scrolled-down .nav-list {
    display: none;
}

.scrolled-down .hamburger-menu {
    display: flex;
}


/* On scroll up: Show normal menu and hide hamburger */
.scrolled-up .nav-list {
    display: flex;
}

.scrolled-up .hamburger-menu {
    display: none;
}


header ul {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;

}

header li {
    list-style: none;
}

.side-nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: var(--secondary-color);
    z-index: 98;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease-in-out;
}

.side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}

.side-nav a, .sidenav-btn {
    font-size: 16px;
    padding: 20px;
    text-decoration: none;
    font-family: inherit;
    color: white;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.side-nav a:hover, .sidenav-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

/* SideNav Open State */
.side-nav.open {
    right: 0; /* Opens menu */
}

/* Close Button */
#exit {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 24px;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    z-index: 99;
    display: none;
}

#exit svg {
    width: 20px;
    height: 20px;
}


.side-nav .side-nav-list {
    position: relative;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.side-nav .side-nav-list .list {
    list-style: none;
    text-align: center !important;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;

}
.side-nav .side-nav-list .list a {
    color: #fff;
    text-decoration: none;
    font-size: 3em;
    padding: 5px 20px;
    display: inline-flex;
    font-weight: 700;
    transition: 0.5s;
    text-align: center !important;
}
.side-nav .side-nav-list:hover .list a {
    color: #0002;
}
.side-nav .side-nav-list .list:hover a {
    color: #000;
    background: transparent;
}
.side-nav .side-nav-list .list a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5em;
    color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 500px;
    transition: letter-spacing 0.5s, left 0.5s;
}
.side-nav .side-nav-list .list a:hover:before {
    content: attr(data-text);
    opacity: 1;
    left: 50%;
    letter-spacing: 10px;
    width: 1800px;
    height: 1800px;
}
.side-nav .side-nav-list .list:nth-child(6n + 1) a:before {
    background:  var(--green-color);
}
.side-nav .side-nav-list .list:nth-child(6n + 2) a:before {
    background:  var(--green-color);
}
.side-nav .side-nav-list .list:nth-child(6n + 3) a:before {
    background:  var(--green-color);
}
.side-nav .side-nav-list .list:nth-child(6n + 4) a:before {
    background: var(--green-color);
}
.side-nav .side-nav-list .list:nth-child(6n + 5) a:before {
    background:  var(--green-color);
}
.side-nav .side-nav-list .list:nth-child(6n + 6) a:before {
    background: var(--green-color);
}






.side-nav span {
    display: flex;
    flex-direction: row;
    padding: 0;
}

.side-nav span a:hover{
    background-color: transparent;
    color: white;
}


.services > span {
    display: flex;
    flex-direction: row;
    padding: 10px 0;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 0;
}

.services a span {
    padding: 0 10px;
}

.services .list a {
    padding: 0 !important;
}

/* Ensure the main navigation is hidden when side-nav is active */
.side-nav .nav-list {
    display: none !important; /* Hide main navigation inside the side-nav */
}

/* Hide the SVG inside side-nav */
.side-nav #mobile-nav svg {
    display: none !important; /* Ensures the mobile menu icon does not appear */
}

@media only screen and (max-width: 1024px) {
.inner-header {
    padding: 12px 40px; 
}
}

@media only screen and (max-width: 768px) {
    .inner-header {
    padding: 12px 40px !important; 
}
}

@media only screen and (max-width: 480px) {
     .inner-header {
    padding: 12px 20px !important; 
}
}


#hero-section, .hero-carousel  {
    position: relative; 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    align-content: center;
    align-items: flex-end;
    color: white;
}


#hero-section::before, .hero-carousel::before, .slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: rgba(0, 0, 0, 0.50);
    pointer-events: none; 
}

#hero-section .text-button-group, .hero-carousel  .text-button-group {
    align-items: flex-start;
}

.hero-carousel {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}


.hero-carousel .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeZoom 18s infinite;
}

/* Staggered windows */
.hero-carousel .slide:nth-child(1) { animation-delay: 0s; }
.hero-carousel .slide:nth-child(2) { animation-delay: 6s; }
.hero-carousel .slide:nth-child(3) { animation-delay: 12s; }

@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(1.14);
    }
    7% {
        opacity: 1;
        transform: scale(1.12);
    }
    40% {
        opacity: 1;
        transform: scale(1.06);
    }
    47% {
        opacity: 0;
        transform: scale(1.02);
    }
    100% {
        opacity: 0;
        transform: scale(1.00);
    }
}


.hero-content {
    position: relative;
    z-index: 2;
}

.color-light-green {
    background-color: var(--light-green-color) !important;
}

.color-light-blue {
    background-color: var(--light-blue-color) !important;
}

.color-dark-beige {
    background-color: var(--dark-beige-color) !important;
}


.color-secondary {
    background-color: var(--secondary-color) !important;
    color: #ffffff;
}

.color-secondary .border-secondary {
    border-color: var(--primary-color);
}

.color-secondary svg path {
    fill: #ffffff !important;
}

.services-container {
       display: flex;
    gap: 40px;
    flex-direction: column;
}


.slider-container {
  display: grid;
  place-items: center;
}

.slider-container-inner {
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  --position: 50%;
}

.slider-container .images {
max-width: 70vh;
 
  height: auto;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.image-before {
  position: absolute;
  inset: 0;
  width: var(--position);
}

.slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  /* for Firefox */
  width: 100%;
  height: 100%;
}

.slider:focus-visible ~ .slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}

.slider-line {
  position: absolute;
  inset: 0;
  width: .2rem;
  height: 100%;
  background-color: #fff;
  /* z-index: 10; */
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}

.slider-button {
  position: absolute;
  background-color: var(--dark-beige-color);
  color: black;
  padding: .5rem;
  border-radius: 100vw;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  height: 60px;
  width: 24px;
}

.services-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
}

.services-link .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.services-link .arrow svg {
  width: 8px;
  height: 8px;
}

.has-dropdown:hover .arrow,
.has-dropdown:focus-within .arrow {
  transform: rotate(180deg);
  color: white;
}

#main-list .has-dropdown {
  position: relative;
}

#main-list .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: var(--primary-color);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 500;
}

#main-list .dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-family: var(--body-font);
  font-size: 14px;
  color: #000;
  text-transform: none;
  white-space: nowrap;
}

#main-list .dropdown-menu a:hover {
  background: var(--dark-beige-color);
}

#main-list .has-dropdown:hover .dropdown-menu,
#main-list .has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#main-list {
    display: flex;
    gap: 12px;
}

#main-list a {
    position: relative;
    padding: 0 12px;
}

#main-list a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 0;
    color: currentColor;
}



@media only screen and (max-width: 1024px) {
  #main-list .dropdown-menu { display: none; }
  .services-link .arrow { display: none; }
}


.pricing-container {
    background: var(--secondary-color);
    padding: 52px 40px;
    color: white;
    margin-top: 40px;
    border-radius: 0;
}

.pricing-container h3 {
    text-align: center;
}

.pricing-container .bottom-border {
    border-color: white;
}

        .msg {
            padding: 20px 24px;
            border-radius: 18px;
            margin-bottom: 24px;
}

.msg li {
    list-style-type: none;
}

.msg.success {
     background-color: #D9F0DE;
     color: #598A62;
}

.msg.danger {
     color: #5B151D;
    background-color: #FDD6D6;
}

.icon-text {
    gap: 8px;
    display: flex;
    align-items: center;
}
.color-primary {
    background-color: var(--primary-color) !important;
}

.color-secondary .container * {
    color: inherit !important;
}

.tag {
    border: #000 1px solid;
}

.color-secondary .tag {
    border: #ffffff 1px solid !important;

}

.warning-text {
    margin-top: 20px;
}


.no-dot {
  list-style-type: none; 
  padding-left: 0;
  margin: 0;
}

.color-palette {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; 
}

.color-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.color {
  width: 100%;
  aspect-ratio: 1 / 1; 
}

.color-label {
  margin-top: 8px;
}

.color-label:first-child {
  margin-top: 16px;
}

.color-labels {
    text-align: center;
}



.tag {
    display: inline-block; 
    width: auto; 
    padding: 5px 12px;
    font-size: 12px; 
    text-align: center;
    white-space: nowrap;
    transition: 0.3s ease;
    text-transform: none;
    font-family: var(--body-font);
    line-height: normal;
}

.border-secondary {

    border-radius: 0;
    background-color: var(--dark-beige-color);
}


h1, h2, h3, h4, h5, h6, .h1, .h2 {
    font-family: var(--header-font);
    font-weight: 500;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    line-height: 100%;
}




h1,
section h1,
article h1,
nav h1,
aside h1 {
  font-size: 36px !important;
}

.h1 {
     font-size: 36px;
}



h2, .h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 20px;
}

.subheading {
    font-family: var(--header-font);
    font-weight: 400;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    line-height: 100%;
    font-size: 14px !important;
    color: var(--dark-beige-color);
}

#process h3 {
     font-size: 20px;
}

.summary-box {
  border: 2px solid var(--secondary-color);
  padding: 40px 20px 20px 20px;
  position: relative;
  margin-bottom: 40px;
}

.summary-label {
  position: absolute;
  top: 0;
  left: 20px;
  transform: translateY(-50%);
  font-family: var(--header-font);
  font-weight: 600;
  padding: 0 8px;
  background-color: var(--primary-color); 
  font-size: 16px;
  line-height: 1;
}

.h1-style {
     font-family: var(--header-font);
    font-weight: 500;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    line-height: 100%;
    font-size: 36px;
}

.h3-style {
      font-family: var(--header-font);
    font-weight: 500;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    line-height: 1.2 !important;
    font-size: 28px;
} 

.h4-style {
      font-family: var(--header-font);
    font-weight: 500;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    line-height: 100%;
    font-size: 24px;
} 


.h5-style {
      font-family: var(--header-font);
    font-weight: 500;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    line-height: 100%;
    font-size: 20px;
} 


.h6-style {
      font-family: var(--header-font);
    font-weight: 500;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    line-height: 100%;
    font-size: 16px;
} 




.header-group {
    gap: 10px;
    display: flex;
    flex-direction: column;

}

 .x-small-heading {
     margin-top: 12px;
         font-size: 16px;
         font-weight: 700;
         font-family: Montserrat, Sans-Serif;
         text-transform: uppercase;
     }

 .small-heading {
     margin-top: 12px;
         font-size: 20px;
         font-weight: 700;
         font-family: Montserrat, Sans-Serif;
         text-transform: uppercase;
     }

 .medium-heading {
         font-size: 24px;
         font-weight: 700;
         font-family: Montserrat, Sans-Serif;
         text-transform: uppercase;
     }
     
      .large-heading {
         font-size: 36px;
         font-weight: 700;
         font-family: Montserrat, Sans-Serif;
         margin-bottom: 22px;
         text-transform: uppercase;
     }
p {
    margin: 0;
    padding: 0;
    line-height: 150%;
}

.empty-section {
    height: min(20vw);
}

section > .container, .faq-container {
    padding: 80px 60px;
}

.container {
    padding: 0 60px;
    position: relative;
}

.container-center {
    display: flex;
    align-items: center;
}

.screen-height {
    height: min(100vh);
    display: flex;
    align-items: center;
}

.split-container {
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
    width: 100%;
    gap: 40px;
}


.split-container .container {
    width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    align-items: center;
}

.split-container .text-button-group {
    align-items: flex-start;
}

.bg-img .text-button-group {
    align-items: flex-start;
}

.absolute-container {
    position: absolute;
    width: 30vw;
    aspect-ratio: 13 / 8; 
    background: var(--green-color);
    top: 95vh;
    left: 56vw;
    transform: translate(-50%, -50%);
    z-index: 0;

}

.screen-height .third-containers .container {
    padding: 0;
}


.floating-image {
    position: absolute;
    width: 30vw;
    aspect-ratio: 11 / 8;
    top: 100vh;
    left: 55vw;
    transform: translate(-50%, -50%);
    z-index: 1; 
    transition: transform 0.1s ease-out;
    object-fit: cover;
}


.text-group {
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: 100%;
    z-index: 20;
}

.text-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
    z-index: 20;
}

.text-button-group .btn {
    width: auto; 
    min-width: 200px; 
    padding: 12px 24px; 
    display: inline-flex; 
    justify-content: center;
}


.button-group {
    display: flex;
    gap: 20px;
}

.btn, a  {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

.decorated-link {
     text-decoration: underline;
    color: var(--accent-color);
}


.decorated-link:hover {
    color: var(--secondary-color);
}


button {
    border: none;
    font-family: inherit;
    padding: 10px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.8s ease;
    position: relative;
     border-radius: 0; 
     font-size: 14px;

}

.btn::before,
.btn::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
}

.primary-btn {
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.primary-btn:after,
.primary-btn:before {
    transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 10%;
    height: 10%;
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--accent-color);
}

#hero .primary-btn:hover, #projects .primary-btn:hover {
     color: white;
}



.white-btn {
    background: white;
    color: var(--accent-color);
    border: none;
    transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.white-btn:after,
.white-btn:before {
    transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 10%;
    height: 10%;
}

.white-btn:hover {
    background-color: transparent;
    color: white;
}

.white-btn:hover:before {
    border-bottom: 2px solid white;
    border-top: 2px solid white;
    width: 110%;
    height: 100%;
    border-radius: 8px; 
}

.white-btn:hover:after {
    border-left: 2px solid white;
    border-right: 2px solid white;
    height: 150%;
    width: 100%;
    border-radius: 8px; 
}


.hero-bg-img .primary-btn:hover {
    background-color: transparent;
    color: #ffffff;
}



.accent-btn:hover {
    background-color: transparent;
    color: var(--accent-color);
}

#hero .accent-btn:hover, #projects .accent-btn:hover {
     color: white;
}


.primary-btn:hover:before {
    border-bottom: 2px solid var(--accent-color);
    border-top: 2px solid var(--accent-color);
    width: 110%;
    height: 100%;
    border-radius: 8px; 
}

.primary-btn:hover:after {
    border-left: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    height: 150%;
    width: 100%;
    border-radius: 8px; 
}


.secondary-btn {
    background: var(--gold-color);
    color: #ffffff;
    transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.secondary-btn:after,
.secondary-btn:before {
    transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 10%;
    height: 10%;
}



.secondary-btn:hover {
    background-color: transparent;
    color: var(--gold-color);
}

#hero .secondary-btn:hover, #projects .secondary-btn:hover {
     color: white;
}


.hero-bg-img .secondary-btn:hover {
    background-color: transparent;
    color: #ffffff;
}

.secondary-btn:hover:before {
    border-bottom: 2px solid var(--gold-color);
    border-top: 2px solid var(--gold-color);
    width: 110%;
    height: 100%;
     border-radius: 8px; 
}

.secondary-btn:hover:after {
    border-left: 2px solid var(--gold-color);
    border-right: 2px solid var(--gold-color);
    height: 150%;
    width: 100%;
     border-radius: 8px; 
}

.contact-btn {
    border: none;
    font-family: inherit;
    padding: 10px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: var(--gold-color);
    color: #ffffff;
    transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-btn:after,
.contact-btn:before {
    transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 10%;
    height: 10%;
}

.contact-btn:hover, .pricing-container .secondary-btn:hover  {
    background-color: transparent;
    color: #ffffff;
}

.contact-btn:hover:before {
    border-bottom: 2px solid var(--gold-color);
    border-top: 2px solid var(--gold-color);
    width: 110%;
    height: 100%;
     border-radius: 8px; 
}

.contact-btn:hover:after {
    border-left: 2px solid var(--gold-color);
    border-right: 2px solid var(--gold-color);
    height: 150%;
    width: 100%;
     border-radius: 8px; 
}

header .contact-btn:hover:before {
    border-bottom: 2px solid var(--gold-color);
    border-top: 2px solid var(--gold-color);
    width: 120%;
    height: 100%;
     border-radius: 8px; 
}

header .contact-btn:hover:after {
    border-left: 2px solid var(--gold-color);
    border-right: 2px solid var(--gold-color);
    height: 150%;
    width: 100%;
     border-radius: 8px; 
}



.container img {
    width: 100%;
}

.image-text-column .text-group {
    padding: 32px 0 0 0;
    gap: 0;
}

.contact-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.contact-section .text-button-group {
    z-index: 10;
}


.contact-section .button-group {
    display: flex;
    justify-content: center;
}

video {
    width: 100%;
}


.overlay button {
    margin: 10px 0;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}


.hero-bg-img {
    position: relative; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    align-content: center;
    align-items: center;
    color: white;
}

.hero-bg-img .container {
    width: 55%;
    padding-right: 0;
}

.hero-bg-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: rgba(0, 0, 0, 0.5);
    pointer-events: none; 
}

.hero-bg-img .text-button-group {
    align-items: flex-start;
}

.light-green-bg {
    background: var(--light-green-color);
}

.third-containers, .second-containers {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.icon-group {
    margin-top: 10px;
    text-align: center;
}

.icon-group .icon {
    height: 92px;
    margin-bottom: 20px;
}

.icon-group .text-group {
    gap: 8px;
}

.icon-group p {
    margin-top: 8px;
}



.gap-20 {
    display: flex;
    gap: 20px;
}



.services-container .small-bg-img {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

/* background image layer */
.services-container .small-bg-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.4s ease;
    z-index: 1;
}

/* overlay */
.services-container .small-bg-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); 
    z-index: 2;
}

/* hover zoom */
.services-container .small-bg-img:hover::before {
    transform: scale(1.05);
}


.services-container .text-button-group {
    align-items: flex-start;
}

.third-containers .icon-group {
    margin-top: 0;
    padding: 32px;
}

.icon-group button, .icon-group button {
    margin-bottom: 24px;
}

.third-containers .primary-btn:hover {
    color: var(--accent-color);
}



.third-containers, .second-containers {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden; 
    margin-top: 40px;
}


.third-containers .container {

    transform: translateY(400px);
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease-out;
}

footer .third-containers .container {

    transform: translateY(0) !important;
    transition: none !important;
}

.social-media-icons {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.even-thirds .container {
    width: 33.33%;
    padding: 40px 30px;
    text-align: center;
}

.even-container .container {
    width: 50%;
    padding: 40px 30px;
    text-align: center;
}


.third-containers.active .container {

    transform: translateY(0);
}


.third-containers .container:nth-child(1) {
    transition-delay: 0s;
}

.third-containers .container:nth-child(2) {
    transition-delay: 0.2s;
}

.third-containers .container:nth-child(3) {
    transition-delay: 0.4s;
}

/*
.cursor-outline {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color); 
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: top 0.1s linear, left 0.1s linear;
    z-index: 98;
}


.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease-out;
    z-index: 98;
}
*/

.project-details {
    max-width: 700px;
}

.projects video, .projects img {
    width: 60vw;
}

.project {
    position: relative;
    width: 100%;
    height: 80vh; 
    overflow: hidden;
    display: flex;
    align-items: center;
    

}

.title-tags .tags {
    margin-top: 20px
}



.project button {
    margin-top: 22px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; 
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.video-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}



.project-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
    pointer-events: none;
}

.project-img .group {
    position: relative;
    z-index: 2; 
}


.project .container {
    padding: 0;
}

.project .logo {
    margin-bottom: 104px;
}

.project .logo img {
    height: 58px;
    width: auto;
    z-index: -22;

}

.project .group {
    margin: 60px 40px;
    width: 50%;
}

.project .text-button-group {
    align-items: flex-start;
}

.projects {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}

.project-img {
    background-size: cover;
    background-position: center;
}



.third-containers.icon-container .icon-group {
    padding: 0;
}


.large-paragraph {
    font-size: 24px;

}

.testimonial-box {
    background: var(--light-green-color);
    padding: 80px 60px;
    color: #000;
     border-radius: 0;
}

.panel {
    padding: 120px 60px;
}

.panel > .container {
    padding: 0;
}


.faq-section .button-group {
    margin-top: 40px;
    align-items: flex-start;
    justify-content: center;
}

.faq-accordion {
    margin: 0 auto;
}

.faq-accordion details {
    padding: 8px 0;
    transition: all 0.3s ease-in-out;
}

.faq-accordion summary {
    cursor: pointer;
    position: relative;
    list-style: none;
    padding: 12px;
    background: var(--secondary-color);
    color: white;
    transition: background 0.3s ease-in-out;
}

body.color-secondary .faq-accordion summary {
    background: var(--primary-color) !important;
}

header .logo svg {
   width: 150px;
}



.faq-accordion summary:hover {
    background: var(--accent-color);
}

.faq-accordion summary::after {
    content: "+";
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 11px;
    right: 16px;
    transition: transform 0.3s ease-in-out;
}

.faq-accordion details[open] summary::after {
    transform: rotate(45deg);
}

.faq-accordion p {
    font-size: 16px;
    color: #333;
    padding: 12px;
    background: white;
    transition: all 0.3s ease-in-out;
}

body.color-secondary .faq-accordion p, body.color-secondary .faq-accordion summary  {
    color: black !important;
}

body.color-secondary .colored-box {
    color: black !important;
}

#wrap > canvas {
    pointer-events: none !important;
    position: fixed !important;
    top: 0;
    left: 0;
}

.faq-accordion details {
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    max-height: 50px; 
}

.faq-accordion details[open] {
    max-height: 300px; 
}

#wrap > canvas {
    pointer-events: none !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#grain-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    z-index: -1 !important;
    pointer-events: none !important;
    overflow: hidden !important;
}

.bg-img {
position: relative;
width: 100%;
min-height: 100svh;
overflow: hidden;
background-size: cover;
background-position: center right;
background-repeat: no-repeat;
}

.bg-img::before {
content: "";
position: absolute;
inset: 0;
background: inherit;
transform: scale(1);
will-change: transform;
backface-visibility: hidden;
}


.small-icon-group {
    margin: 20px 0;
}

.small-icon-group .small-icon {
    display: inline-block;

}
.small-icon-group .small-icon svg {
    height: 15px;
    margin-right: 6px;
}

.small-icon-group {
    display: flex;
    align-items: start; 
    gap: 10px; 
}

.small-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px; 
    height: 24px;
    flex-shrink: 0; 
}

.small-icon svg {
    width: 100%;
    height: 100%;
}

.small-icon-group span {
    display: inline-block;
    max-width: 100%;
    vertical-align: top;
}

.small-icon.social-media {
     width: 28px; 
     height: 28px;
}


.small-icon.social-media svg {
    width: 100%;
    height: 100%;
}

#youtube {
    position: relative;
    top: 6px;
}

.poster {
    margin: 0;
    padding: 0;
}

.poster img {
    width: 100%;
}

li {
    margin: 10px 0;
}


.uneven-split-container {
    display: grid;
    grid-template-columns: auto auto;
}

.text-list-group {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.multi-text-group {
    display: flex;
    gap: 40px;
    flex-direction: column;

}

.list-box {
    padding: 20px 40px;
    background: var(--light-green-color);
}

.uneven-split-container .text-button-group {
    align-items: flex-start !important;
}

.list-no-style li {
    list-style: none;
}
.static-group {
    position: sticky;
    top: 120px;
    align-self: flex-start;
    overflow: hidden;
}

.display-flex {
    display: flex;
}

.space-between {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.navigation-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 80px 60px;
    overflow-x: hidden;
    -ms-overflow-x: hidden;
}

.navigation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; 
    max-width: 500px;
}

.navigation-container:first-child {
    padding-right: 0;
}

.navigation-container:last-child {
    padding-left: 0;
}

.navigation-container h3 {
    display: inline-block;
    position: relative;
    text-decoration: none;
    transition: text-decoration-color 0.3s ease-in-out;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: transparent;
}


.navigation-container:hover h3 {
    text-decoration-color: var(--secondary-color); 
}




.scroll-container {
    width: 100%; 
    height: 300px; 
    overflow: hidden;
    position: relative;
}

.scroll-image {
    width: 100%;
    transition: transform 3s ease-in-out;
}

.grid-container {
    display: grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
    padding: 80px 60px;
}

.grid-container .item {
    position: relative;
    padding: 92px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.grid-container .item .number {
    position: absolute;
    left: 30px;
    top: 20px;
    font-family: var(--header-font);
    font-weight: 700;
    font-size: 80px;
    color: rgba(255, 255, 255, .1)
}

.grid-container .text-group {
    margin-top: 40px;
    gap: 10px;
    text-align: center;
    color: white;
}

hr {
    width: 100%;
    color: rgba(var(--accent-color), 1);
}


.post .text-group {
    color: black;
}

.gap-20 .icon-group {

    padding: 32px;
}
.even-container .container {
    width: 50%;
}

.initial-tasks hr {
    padding: 0;
    margin: 12px 0;
    border: 1px solid rgba(var(--accent-color), 0.1);
}


.post-img {
    width: 100%;
    height: 200px;
}

.post-img img {
    height: 100%;
    object-fit: cover;
}

.paragraph-small {
    font-size: 12px;
}

.blog-post {
    background: var(--dark-beige-color);
}

.blog-post .text-button-group {
    gap: 0;
    padding-bottom: 40px;

}

.blog-container .text-group {
    margin: 0;
    padding: 40px 20px;
    text-align: left;
}

.blog-post-container .third-containers {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.half-screen-height {
    height: 50vh;
    display: flex;
    align-items: center;
}

.blog-container {
    gap: 20px;
}

.screen-height-60 {
    height: 60vh;
    padding: 0 60px;
}

.screen-height-80 {
    height: 80vh;
    padding: 0 60px;
}

.padding60 {
    padding: 80px 60px;
}

.padding0 {
 padding: 0 !important;   
}


.anchor-link {
    position: relative;
    top: -120px;
}

.split-container-40-60 .container:first-child {
    width: 40%;
}

.split-container-40-60 .container:last-child {
    width: 60%;
}


.split-container-30-70 .container:first-child {
    width: 30%;
}

.split-container-30-70 .container:last-child {
    width: 70%;
}

.split-container-70-30 .container:first-child {
    width: 70%;
}

.split-container-70-30 aside {
    width: 70%;
}

.split-container-70-30 .container:last-child {
    width: 30%;
}

.split-container-70-30 .container {
    padding: 0;
}

.sticky {
    position: -webkit-sticky; 
    position: sticky;
    top: 25vh; 
    align-self: flex-start;
    height: auto; 
    max-height: calc(100vh - 40px);
    overflow-y: auto; 
    margin-left: -100px;
}


.sticky-container {
    align-items: flex-start;

}

.sticky-container ul {
    list-style: none;


}

.sticky-container ul li.bold {
    font-weight: bold;
}


#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1); 
    z-index: 99;
}

#progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent-color);
    transition: width 0.1s ease-in-out;
}

footer {
    background: var(--secondary-color);
    color: white;
}

header a {
    opacity: 100%;
    transition: 0.1s ease-in-out;
}

header a:hover {
    opacity: 80%;
}

footer a, footer span {
    opacity: 80%;
    transition: 0.1s ease-in-out;
}

footer h4 {
    opacity: 90%;
}

footer a:hover, footer span:hover {
    opacity: 100%;
}

footer a, footer p, footer span {
    font-size: 13px;
}

footer .space-between {
    padding: 80px 60px;
}

footer .container {
    padding: 0 !important;
}

footer .logo {
    width: 150px;
    opacity: 0.2;
}

footer .banner {
    background: var(--primary-color);
    color: black;
    padding: 12px 60px;
    text-align: center;
}

footer .links {
    background: var(--secondary-color);
    color: white;
    padding: 20px 60px;
    text-align: center;
    font-family: var(--header-font);
    font-weight: 700;
    text-transform: uppercase;
    gap: 40px;
    display: flex;
    justify-content: center;
}


.split-container button {
    margin-bottom: 60px;
}

#mobile-nav svg {
    width: 30px;
    height: 30px;
}

#desktop-nav {
    display: block;
}



.nav-list {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: translateY(0);
        margin-right: 0 !important;
}


.nav-list.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none; 
}


.nav-list.fade-in {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


.hamburger-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}



.hamburger-menu {
    display: flex; 
    align-items: center;
    justify-content: center;
    position: fixed; 
    top: 20px;
    right: 60px;
    border-radius: 5px;
    z-index: 99;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 0; 
    transform: translateY(-10px); 
}


.hamburger-menu.slide-in {
    opacity: 1;
    transform: translateY(0);
}


.button-icon {
    height: 15px !important;
    width: 15px !important;
    margin-right: 8px;
}

.secondary-btn:hover .button-icon path {
    fill: var(--gold-color) !important;
}

.contact-section {
    text-align: center;
}

.layout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary-color);
  display: flex;
 justify-content: center;
	align-items: center;
  z-index: 10000;
}

.overlay-content {
  width: 60%;
}

.img-contain {
  position: relative;
  margin: 0 auto;
  z-index: 1000;
	width: 100%;
	display: flex;
  justify-content: center;
  align-items: center;
	opacity: 0.5;
}
	
.img-contain img {
  width: 150px;
}
	
	@media (max-width: 480px) {
  .img-contain img {
    width: 100px;
  }
}

.text {
  position: relative;
  margin: 2em 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.counter,
.logo p {
  font-size: 16px;
  text-align: center;
  font-family: var(--header-font);
  font-weight: 700;
}

.counter p {
  line-height: 100%;
}

.counter p span,
.logo p span {
  position: relative;
  z-index: 9999;
  color: var(--secondary-color);
}

        .desktop, #desktop-logo-animation {
        display: block;
    }
    
    .mobile, #mobile-logo-animation {
        display: none;
    }

.split {
  opacity: 1;
  will-change: transform;
}

.split > div {
  display: inline-block;
  will-change: transform;
}


.card {
  position: sticky;
  top: 80px;
  z-index: 1;
   width: 100%;
  
}



.card__inner {
  will-change: transform;
  display: flex;
  overflow: hidden;
  transform-origin: center top;
  
  width: 100%;
}

.cards {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-rows: repeat(var(--cards-count), var(--card-height));
  gap: 40px 0;
}


.space {
  height: 90vh;
}

.space--small {
  height: 40vh;
}

@media (max-width: 600px) {
  .card__inner {
    flex-direction: column;
  }

}


#process .third-containers .image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

#process .third-containers, #process .second-containers {
    align-items: center
}

.image-container .light-green-bg, .image-container .color-dark-beige, .image-container .color-light-blue {
    width: 100%;
    padding: 34px 40px;
}

.third-containers .image-container {
    width: 100%;
}

.bottom-border {
    border-bottom: 1px solid black;
    padding: 10px 0;
}

.iamge.active-img {
    height: 350px;
}

.bottom-border p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  transition: color 0.3s ease;
}

.bottom-border {
  cursor: pointer;
}

.hover-arrow {
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  font-size: 1rem;
  color: inherit;
}

.bottom-border:hover .hover-arrow {
  opacity: 1;
  transform: translateX(0);
}

.image-container {
  overflow: hidden;
  transition: transform 0.4s ease;
    border-radius: 0;
}

.image-container .image {
  transition: transform 0.4s ease;
}

.image-container:hover .image {
  transform: scale(1.05);
}

.card,
.project,
.project .logo,
.project h3,
.project p,
.project .tags,
.project .btn,
.project .text-button-group {
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
}

.project-small .tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.project-small .text-group {
    gap: 12px;
}

p, button, .text-button-group *, .card *, .project * {
  transition: none !important;
}

.card {
  opacity: 1;
  visibility: visible;
}

.project::before,
.project-img::before {
  opacity: 1;
  visibility: visible;
  transition: none;
}



.image-group .text-group {
    margin: 0;
    gap: 0px;
}

.image-group .bottom-border {
    padding-top: 20px;
}
.gap-0 {
    gap: 0 !important;
}

      #mobile-nav {
        display: none;
    }
    
    .card-mobile {
    display: none;
}

.card-desktop {
    display: block;
}

.blog-post-container,  .blog-hero {
    display: flex;
    justify-content: center;
}

.blog-post-container .multi-text-group, .blog-hero .text-group {
   max-width: 680px;
}

.opacity-reveal-text {
    line-height: 1.5; 
}

.services-container  .container {
    padding: 40px 32px;
}

#hero-section .container, .hero-carousel .container {
    width: 70%;
    padding: 80px 60px;
}


@media (min-width: 1250px) {
.project {
     width: 95vw;
}

.cards {
    
justify-content: center
}

.services-container .small-bg-img  {
    height: 800px;
 
}


}



@media only screen and (max-width: 1024px) {
    
        .desktop, #desktop-logo-animation, .sticky-desktop {
        display: none;
    }
    
    .mobile, #mobile-logo-animation {
        display: block;
    }
    
    .panel {
        padding: 60px 40px;
    }

    .gap-20 .icon-group {
        padding: 32px 20px;
    }

    .border-secondary {
        padding: 0 30px;
    }

    .split-container-30-70 .container {
        width: 100% !important;
    }
    
    .split-container-70-30 .container {
        width: 100% !important;
    }


    #desktop-nav {
        display: none;
    }
    
    footer .space-between {
        flex-direction: column;
        gap: 40px;
      
    }
    
.blog-post-container .multi-text-group,  .blog-hero .text-group {
   max-width: 680px; 
}



}

@media only screen and (min-width: 769px) {
    .tablet {
        display: block;
    }
}


@media only screen and (max-width: 768px) {
    
 #hero-section .container, .hero-carousel .container, .faq-container {
    width: 100%;
    padding: 40px 20px;
}

    
    .tablet {
        display: none;
    }
    
   h1, section h1, article h1, nav h1, aside h1, .h1-style {
    font-size: 32px !important;
}

h2, .h2-style, .h2 {
        font-size: 28px;
    }
    
    .h1 {
     font-size: 32px;
}

    
    .opacity-reveal-text {
        font-size: 20px !important;
        
    }

    h3, .h3-style {
        font-size: 24px;
    }
    
     section > .blog-post-container {
    padding: 40px 20px !important;
}

    
    .card-mobile {
    display: block;
}

.card-desktop {
    display: none;
}

    
    #mobile-nav {
        display: block;
    }

    .contact-section .text-button-group {
        padding: 60px 40px;
    }
    
    #hero-section .container {
    width: 100%;
    padding: 60px 20px;
}

.services-container  .container {
    padding: 40px 20px;
}

    
    .panel > .container {
        padding: 0px;
    }

    .faq-section .container {
        padding: 40px 20px;
    }

    .gap-20 .icon-group {
        padding: 32px 20px;
    }

    .border-secondary {
        padding: 0 30px;
    }

    .screen-height {
        height: 100%;
    }

    .third-containers, .split-container, .uneven-split-container, .second-containers {
        flex-direction: column;
        width: 100%;
    }

    .even-thirds .container, .even-container .container {
        width: 100%;
    }


    .split-container .container {
        width: 100%;
        padding: 32px 0 !important;
    }
    
    .split-container .small-bg-img {
    padding: 40px 20px !important;
}
    

    .hero-bg-img {
        height: 100vh;
    }

    .projects .group {
        width: 100%;
    }

    .project .logo {
        margin-bottom: 10vw;
    }

    .grid-container {
        display: grid;
        grid-template-columns: 50% 50%;
        padding: 60px 40px;
    }

    .sticky {
        position: relative;
        top: 0;
        width: 100% !important;
        margin-left: -40px;
    }

    .navigation-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 60px 20px;
    }

    .navigation-group .container {
        padding: 0;
    }
    
    .services-container .small-bg-img  {
    height: 400px;
 
}
    
     .split-container-70-30 .container {
        width: 100% !important;
    }


    .split-container-30-70 .container {
        width: 100% !important;
    }
    
    .split-container-mobile .container {
           width: 50% !important;
    }
    
   .split-container-mobile  {
           width: 50% !important;
    }

    .padding60 {
        padding: 60px 20px;
    }

    .screen-height .container {
        width: 100%;
        padding: 0 20px
    }

    .btn, .button-group {
        width: 100%;
    }

    .third-containers .container {
        padding: 32px 0;
    }

    .border-secondary {
        padding: 40px 20px !important;
    }

    .inner-header {
        padding: 12px 20px !important;
    }

    .testimonial-box {
        padding: 40px 20px !important;
       
    }



    .hamburger-menu {
        right: 40px;
    }

    .nav-list {
        display: none !important;
    }

    h1 {
        font-size: 36px;
    }

    h3 {
        font-size: 28px;
    }

    .screen-height {
        padding-top: 60px;
    }

    footer .third-containers {
        justify-content: center;
        align-items: center;
        align-content: center;
        text-align: center;
    }
    
    footer .space-between {
        flex-direction: column;
        gap: 40px;
         justify-content: center;
        align-items: center;
        align-content: center;
        text-align: center;
    }

    footer .small-icon-group {
        justify-content: center;
        align-items: center;
        align-content: center;
        text-align: center;
    }

    footer .links {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }
    
        .uneven-split-container {
            display: flex !important;
   flex-direction: column;
        width: 100%;
    }

.blog-post-container .multi-text-group,  .blog-hero .text-group {
    width: 100%;  
}

.card {
  position: sticky;
  top: 80px;
  z-index: 1;
}


.card__inner {
  will-change: transform;
  display: flex;
  overflow: hidden;
  transform-origin: center top;
}

.cards {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-rows: repeat(var(--cards-count), var(--card-height));
  gap: 40px 0;
}


.space {
  height: 90vh;
}

.space--small {
  height: 40vh;
}

.project .logo img {
    height: 30px;
    width: auto;
}

.project .group {
    margin: 60px 20px;
    width: 100%;
}

.text-button-group .btn {
    width: 100% !important;
}

}

@media only screen and (max-width: 480px) {
    
    #hero-section .container, .hero-carousel .container, .faq-container {
    width: 100%;
    padding: 40px 20px;
}

    
     .panel > .container, .contact-section .text-button-group {
        padding: 40px 20px;
    }
    
    #hero-section .container {
    width: 100%;
    padding: 40px 20px;
}



    .testimonial-box {
        padding: 40px 20px;
    }


    .button-group {
        flex-direction: column !important;
        justify-content: center;
        width: 100%;
    }

    button, .btn,  .secondary-btn {
        width: 100% !important;
    }

    .container, .panel {
        padding: 40px 20px;
    }

    .inner-header {
        padding: 12px 20px !important;
    }

    .grid-container {
        display: grid;
        grid-template-columns: 100%;
        padding: 60px 20px;
    }

    .padding60 {
        padding: 40px 20px;
    }

    .navigation-group, .contact-section {
        padding: 40px 20px;
    }

    .hamburger-menu {
        right: 20px;
    }


}
