
:root {
  --main-bg-color: #b50839;
  --text-color: #ffffff;
  --header-font-size: 24px;
  --nav-link-font-size: 16px;
  --artisans-red: #C5103E; /* Deep red color from the image */
  --artisans-dark-red: #A30C34;
  --text-color-light: #cf4d5f;
  --text-color-dark: #333333;
  --color-light: #7b7b7b;
}

.no-scroll {
    overflow: hidden !important;
}

/* 1. Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;

}
.d-flex{
    display: flex;
}

body {
    /* Use a simple, elegant font similar to the image */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-color);
    /* This ensures we can scroll to trigger the zoom effect */
    height: 300vh; 
    overflow-x: hidden;
    background-color: var(--main-bg-color);
    position: relative; /* For the scroll-down indicator */
    height: 300vh;
}

/* 2. Header and Icons */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 80px 30px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  transition: all 0.3s ease-out;
}
.header .icon-red {
    display: none;
}
.header.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    background-color: #ffffff54;
}
.header.visible .contact-icon a {
    color:#fff
}
.header.visible .icon-red {
    display: block;
}
.header.visible .icon-white {
    display: none;
}
.header.hidden{
    opacity: 0;
}
.menu-icon,
.search-icon {
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s;
}
.menu-icon img {
    min-width: 40px;
    max-width: 40px;
    width: 40px;
    transition: all 0.3s ease;
}
.menu-icon:hover img {
    transform: translate(8px)
}

.nav-item {
  list-style: none;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: bold;
}
.nav-item .nav-link {
    font-size: 16px;
    color:#fff;
    text-decoration: none;
}

#bgImage {
    position: absolute;
    top: 15%;
    left: -11%;
    width: 52%;
    height: auto;
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: top left;
}

.bg-image-nav img{
    position: absolute;
    top: -40%;
    right: -100%;
    width: 100%;
    height: auto;
    opacity: 0.1;
    transform-origin: top left;
    transform: all 0.4s ease-out;
}

.full-page-nav.open .bg-image-nav img{
    right: -65%;
    animation: moveLeft 0.5s forwards;
}


/* 2. Hero Wrapper (Placeholder) */
#heroWrapper {
    /* This height dictates how far the user has to scroll before the next section appears. */
    /* Set this to the animation distance (e.g., 200vh) plus the height of the hero content (100vh). */
    height: calc(var(--pin-distance) + var(--hero-height));
    position: fixed; /* Acts as the scroll reference */
    background-color: var(--main-bg-color);
    /* background-image: url('/images/a.svg'); */
    background-repeat: repeat;
}

.main-title-container {
    display: inline-flex;
    flex-direction: column;
    transform: scale(0);
    transition: transform 0.4s ease-out, opacity 0.3s ease-out; 
    will-change: transform, opacity; /* Keep this for performance */
}

.title-image {
    transition: transform 0.3s ease-out;
}
.title-image > img {
    position: fixed;
    transform: translateX(-50%) translateY(-50%) scale(0);
    transition: all 0.4s ease-out;
    mix-blend-mode: difference;
}
.text-slider {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.3s ease-in-out 0.4s;
    /* animation: fadeInUp 0.5s forwards 0.6s; */
}
.title-secondary {
    text-align: right;
}
.sub-title {
    font-size: 1.2rem;
    text-align: right;
    letter-spacing: 0.5px;
    margin-top: -16px;
    margin-right: 10px;
}

/* 4. Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 24px;
    left: 47.5%;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    animation: bounce 2s infinite; /* Subtle bounce to draw attention */
    z-index: 999;
}

section.services .scroll-down {
    color: var(--artisans-red)
}

.hero-container {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.wrapper-paceholder {
    width: 100%;
    height: 100vh; /* Initial height to reserve space for the hero */
}

/* 1. Hero Slider Container */
.hero-slider-container {
    position: relative;
    top: 0;
    width: 100%;
    background-color: var(--main-bg-color);
    height: 90vh;;
    /* Flex layout for content inside */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px 80px 40px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.hero-slider-container.unpinned {
    position: static !important; /* Override the fixed position */
    /* top and transform settings are no longer applied when static */
}

.hero-slider-container.active {
    opacity: 1;
}


/* 2. Slider Content (Full-Screen Slide) */
.slider-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slide-text {
    flex: 1;
    max-width: 45%;
}

.slide-text p {
    font-size: 1.5rem;
    font-weight: 300;
}

.slide-text h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 10px;
    font-family: "Open Sans", sans-serif;
    
}

.slide-image {
    flex: 1;
    max-width: 55%;
    display: flex;
    justify-content: flex-end;
}

.slide-image img {
       max-width: 90%;
    height: auto;
}

/* 3. Slider Controls (Navigation Arrows) */
.slider-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    margin-right: auto;
    margin-left: 160px;
}

.slider-btn {
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.slide-counter {
    font-size: 1.2rem;
    font-weight: 600;
}
/* Parent for absolute positioning of slides */
#sliderContent {
    position: relative; 
    /* The parent should take up the space the slides will use */
    width: 100%;
    height: 100%;
    overflow: hidden; /* Important to hide off-screen slides */
}

.slide {
    position: absolute; /* Layer all slides on top of each other */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Content display */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px; 
    padding: 0 160px;

    /* Initially hide all slides */
    opacity: 0;
    pointer-events: none; /* Disables interaction with hidden slides */
    transition: opacity 0.5s ease-in-out; 
}

/* Only the active slide is visible */
.slide.active-slide {
    opacity: 1;
    pointer-events: auto; /* Re-enables interaction with the visible slide */
    z-index: 10; /* Ensures it's on top */
}

/* Adjust the slider container to remove internal padding */
.hero-slider-container {
    /* Set padding on the container and let the slide content manage its own padding */
    padding: 0 0 80px 0; /* Adjusted to remove side padding here */
}

#pinnedContent h1 {
    font-size: 32px;
    line-height: 43px;
        max-width: 70%;
    margin: auto;
    text-align: center;
    text-transform: uppercase;
}


/* 4. Secondary Content Adjustment */
.main-content-section {
    /* Set the initial position to 200vh so it sits below the fixed hero (100vh) 
       and below the new slider (which is also 100vh) when it's activated. */
    position: relative; /* Keep it relative to the document body */
    width: 100%;
    padding: 100px 0;
    z-index: 9999;

}
.main-content-wrapper {
    position: relative;
    top: 190vh;
    z-index: 1; /* Ensure it's above the hero and slider */
}
.footer {
position: relative;
  box-shadow: none;
  background-color: var(--main-bg-color);
  padding-top: 100px;
  padding-bottom: 0px;
}

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.scroll-down i {
    display: block;
    margin-top: 5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 5. Full-Page Navigation Menu */
.full-page-nav {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--main-bg-color); /* Near-white background */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Initial state: Hidden off-screen with a transition */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    overflow: hidden;
    visibility: hidden;
}

.full-page-nav.open {
    /* Final state: Visible on screen */
    transform: translateX(0);
    visibility: visible !important;
    opacity: 1;
}

.close-btn {
    position: absolute;
    top: 24px;
    left: 80px;
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
    color: var(--artisans-dark-red);
    background-color: var(--text-color);
    z-index: 99;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    transition: transform 0.3s ease-in-out;
}
.close-btn.open {
    transform: scale(1);
}
.full-page-nav ul {
    list-style: none;
    text-align: center;
}

.full-page-nav li {
    margin: 0px 0 0px;
    overflow: hidden;
}

.full-page-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    display: inline-block;
        padding: 0px 0;
    transition: color 0.3s;
}

.full-page-nav a:hover {
    color: #888;
}

.full-page-nav .nav-columns {
    width: 50%;
    position: relative;
    margin-right: auto;
    margin-left: 20%;
}

.full-page-nav .nav-columns ul > li > a{
    font-size: 2rem;
}
/* --- Text Slider Styles --- */
.text-slider {
    list-style: none;
    padding: 0;
    position: absolute;
    left: 52.5%;
    margin-top: 150px;
    width: 300px;
    height: 40px;
        margin-top: 180px;
}

.slide-item {
    font-size: 40px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    text-align: right;
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s 
ease-out, transform 0.5s 
ease-out;
    font-family: "Open Sans", sans-serif;
    /* font-size: 8vw; */
    font-weight: 800;
    font-family: "Open Sans", sans-serif;
}

.slide-item.active {
    /* Final (Visible) State: Back in position and fully visible */
    opacity: 1;
    transform: translateX(0);
}

/* --- WHAT WE DO SECTION --- */



/* Fixed Top Header (The "WHAT WE DO" title) */
.what-we-do-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 80px;
    background-color: var(--madison-red);
    z-index: 10;
}

.section-title {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 2px;
    color: var(--text-color-light);
}

/* Accordion Layout Container */
.accordion-list-container {
    display: flex;
    margin: 64px auto;
    height: 100%;
}


/* --- 2. ACCORDION LIST (Left Side) --- */

.accordion-list {
    flex: 1; /* Takes up the left space */
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 5;
    background-color: transparent;
}

.accordion-item {
    font-size: 1.6rem;
    font-weight: 700;
    padding: 38px 96px;
    position: relative;
    align-items: center;
}
.accordion-header {
    position: absolute;
    color: var(--text-color);
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    padding-bottom: 16px;
}
.accordion-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 87%;
    height: 1px;
    background-color: var(--text-color);
}

/* .accordion-item:hover {
    padding-bottom: 40px;
} */
.accordion-item.active .accordion-header {
    visibility: hidden;
}
.accordion-item.active .hovered {
    width: 100% !important;
    left: 0 !important;
}

.hovered {
    position: absolute;
    top: -2px;
    left: 20px;
    width: 0;
    height: calc(100% + 4px);
    background-color: #fff;
    z-index: 1;
    transition: all 0.9s ease;
}

/* --- 3. DESCRIPTION PANEL (Right Side) --- */

.accordion-content {
    color: var(--text-color-dark);
    position: relative;
    top: 0;
    opacity: 0;
    transform-origin: left;
    z-index: 2;
    gap: 48px;
    /* This is the magic for smooth height transition */
    display: grid;
    grid-template-rows: 0fr; /* Initial height is 0 (hidden) */
    transition: grid-template-rows 0.6s ease-in-out; 
    
    /* Create a horizontal split line effect when open */
    border-left: 2px solid white; 
    margin-left: 10px;
}
.accordion-content-inner {
    /* This element must hide overflow for the grid transition to work */
    overflow: hidden; 
    
    /* Apply horizontal grid layout for the description and link */
    display: grid;
    grid-template-columns: 25% auto; 
    gap: 20px;
    padding-left: 0; /* Aligns content under the horizontal split line */
}
.accordion-item.active .accordion-content {
    opacity: 1;
    grid-template-rows: 1fr; /* Expands to natural height of content */
}

.accordion-content .title {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 0;
  color: var(--artisans-dark-red);
  display: flex;
  align-items: center;
  text-transform: uppercase;
  width: 100%;
}
.accordion-content .description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #5b5b60;
  font-family: "Open Sans", sans-serif;
  max-width: 100%;
  border-left: #a8a8a8 solid 1px;
  padding-left: 50px;
}

/* Main Container and Background Effect */
.footer-container {
    padding: 0px 80px 0px 80px;
    display: flex;
    position: relative;
    top: 40%;
    transform: translateY(-50%);
    
}

/* Logo Styling */
.logo-section {
    grid-row: 1;
    align-self: flex-start;
    margin-top: 50px;
}

.logo-text {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 900; /* Extra bold */
    letter-spacing: 1.5px;
    color: var(--text-color);
    font-family: "Open Sans", sans-serif;
}

/* Navigation Columns Layout */
.nav-columns {
    display: flex;
    justify-content: space-between;
        width: 80%;
    margin-left: auto; /* Push columns to the right */
    position: absolute;
    top: 50px;
    right: 80px;
}

.nav-col-left, .nav-col-right {
    display: flex
;
    flex-direction: column;
    gap: 15px;
        padding-right: 0px;
}

/* Styling for main headings like "WHO WE ARE", "OUR WORK" */
.nav-heading {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-color);
        font-family: "Open Sans", sans-serif;
}

/* Styling for the list section (MEDIA, PR, etc.) */
.nav-list {
    list-style: none;
    margin-top: -10px; /* Pull list closer to "WHAT WE DO" */
}

.nav-list li {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-family: "Open Sans", sans-serif;
}
.nav-list li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-list a {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-color) !important;
}

.plus-icon {
    font-size: 24px;
    font-weight: 300;
}

/* Social Icons */
.social-icons {
    display: flex
;
    gap: 20px;
    margin-top: 0px;
}

.social-icons a i {
    font-size: 24px;
}

.social-icons a{color: #fff;}

/* Footer Links */
.footer-links {
    grid-row: 2;
    display: flex;
    gap: 15px;
    font-size: 11px;
    font-weight: 400;
        margin-top: 100px;
        font-family: "Open Sans", sans-serif;
}

.footer-links span {
    white-space: nowrap;
    color: #fff;
}

section.what-we-do {
    background-color: var(--main-bg-color); 
    color: #333; 
}

section.services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    color: var(--color-light);
    background-color: #fff;
    font-family: "Open Sans", sans-serif;
    text-align: center;
}
section.services h1 {
    text-transform: uppercase;
    font-size: 4rem;
    color: var(--artisans-dark-red);

}
/* Media Query for smaller screens (optional but good practice) */
@media (max-width: 1024px) {
    .nav-columns {
        width: 100%;
        position: static;
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }
    .main-container {
        padding: 30px;
    }
    .nav-col-left, .nav-col-right {
        padding-right: 0;
    }
}

.nav-list .plus-icon {
    color: var(--text-color);
}

.contact-icon a {
    color: var(--text-color);
    font-size: 20px;
}
.logo-img {
    position: absolute;
        top: 27px;
    left: 48%;
    transform: translateX(-50px);
    opacity: 0;
    font-size: 1.4rem;
    transition: opacity 0.4s ease-in-out;
    max-width: 80px;
}

.logo-img.active {
    opacity: 1;
}

.nav-col-right p {
    font-family: "Open Sans", sans-serif;
    color: #fff;
    line-height: 25px;
    font-weight: 700;
}

.nav-col-right p a {
    color: #ffffff;
    font-size: 16px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-weight: 700;
}

.nav-col-right p a:hover{color: #fff;}

.service-slider-outer{width: 100%; margin-top: 50px;}

/* Swiper Styles */

.swiper {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    .swiper-slide {
      background: #fff;
      border-radius:0px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
    }

    .swiper-slide:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    }

    .service-img img {
      width: 100%;
      object-fit: cover;
      border-bottom:0px solid #00aaff;
    }

    .service-icon {
      font-size: 40px;
      color: #00aaff;
      margin-top: -25px;
      background: #fff;
      border-radius: 50%;
      display: inline-block;
      padding: 15px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }

    .service-content {
      padding: 20px;
    }

    .service-content h3 {
    margin: 15px 0 0px;
    color: #333;
    font-size: 20px;
}

    .service-content p {
      font-size: 15px;
      color: #666;
      line-height: 1.6;
        font-weight: 600;
    }

    /* Swiper Pagination Dots */
    .swiper-pagination-bullet {
      background: #00aaff;
      opacity: 0.6;
    }
    .swiper-pagination-bullet-active {
      background: #0077cc;
      opacity: 1;
    }
.heroSwiper {
    height: 100vh;
}
.heroSwiper .swiper-slide {
    background: transparent;
    box-shadow: none;
    display: flex;
}
.heroSwiper .swiper-button-prev {
    top: auto !important;
    bottom: 40px;
    left: 0;
}
.heroSwiper .swiper-button-next {
    top: auto !important;
    bottom: 40px;
    left: 80px !important;
}
.heroSwiper .swiper-navigation-icon {
    display: none;
}
.swiper-button-prev img {
    rotate: 180deg;
}
.heroSwiper .swiper-button-next, .heroSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: black;
}
.heroSwiper .swiper-pagination {
    width: 10%;
    margin-left: 20%;
    bottom: 54px;
    letter-spacing: 0.5rem;
    font-size: 1rem;
}

/*Section scroll*/
.scroll-container {
    height: 100vh; 
    overflow-y: scroll;
    
    /* CRITICAL: Define the container as a snap-port */
    scroll-snap-type: y mandatory; 
}
.main-content-section {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
}

.footer-img{ position: absolute;
    top: -50%;
    left: -20%;
    width: 75%;
z-index: 100%;}

.footer-img img {
   
    height: auto;
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: top left;
}
.footer .nav-columns{
    position: relative;
}

@keyframes moveLeft {
  from {right: -100%; opacity: 0;}
  to {right: -65%; opacity: 0.1;}
}

@keyframes scaleTitle {
  from {transform: scale(0);}
  to {transform: scale(1);}
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes Scale {
    from {
        scale: 0;
    }
    to {
        scale: 1;
    }
}

.footer_main_footer__img {
  margin-left:0% !important;
  width:100%;
  margin-bottom:0%;
}

/* 1. Target the scrollable container */
.scroll-container {
    /* (Your existing styles for height, overflow, etc.) */
    height: 100vh; 
    overflow-y: scroll; 
    /* ... other properties ... */
}

/* 🔑 1. The Scrollbar itself (the container for the thumb and track) */
.scroll-container::-webkit-scrollbar {
    width: 4px; /* Width for vertical scrollbar */
    height: 4px; /* Height for horizontal scrollbar */
}

/* 🔑 2. The Track (the background area the scrollbar moves along) */
.scroll-container::-webkit-scrollbar-track {
    background: var(--main-bg-color); /* Light gray background */
    border-radius: 10px; /* Rounded corners for the track */
}

/* 🔑 3. The Thumb (the draggable element that moves) */
.scroll-container::-webkit-scrollbar-thumb {
    background: #444444; /* Darker gray color */
    border-radius: 10px; /* Rounded corners for the thumb */
}

/* 🔑 4. The Thumb on hover (optional for better user feedback) */
.scroll-container::-webkit-scrollbar-thumb:hover {
    background: #555; /* Slightly darker color on hover */
}
.scroll-to-top {
    position: absolute;
    right: 50px;
    bottom: 50px;
    text-align: center;
}
.scroll-to-top button {
    box-shadow: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin-bottom: 8px;
}
.scroll-to-top p {
    font-size: 14px;
}

.para-smalltext {
    font-size: 30px;
    line-height: 30px !important;
    font-weight: 500;
}


.footer-bottom{ width: 100%; background: #000; padding: 10px;}

.footer-logo{}
.footer-logo img {
    width: 40%;
    margin-left: 4%;
}

.top-font-normal {
  font-weight: normal;
  font-size: 18px;
  margin-left: 13%;
  font-family: "Open Sans", sans-serif;
}

.rose-text{color: var(--artisans-dark-red);}

.footer-bg{ background: }

@media(max-width: 767px){
        .header {
      padding: 30px 10px;
    }
    #bgImage {
    top: auto;
    left: -15%;
    width: 130%;
    bottom: -100px;
    }
    .title-image > img {
        max-width: 60%;
    }
        .text-slider {
        left: -5%;
        margin-top: 54px;
    }
    .slide-item {
        font-size: 18px;
    }
        #pinnedContent h1 {
        font-size: 22px;
        line-height: 30px;
    }
    
    .scroll-down {
    left: 37.8%;
    }
    
    .footer-container {
        padding: 16px 0;
        flex-direction: column;
    }
    .what-we-do .section-title {
        font-size: 2.4rem;
    }

    .what-we-do-header {
        position: relative;
        padding: 16px;
    }

    .accordion-list-container {
        margin: 24px auto;
    }

    .accordion-item {
        padding: 32px 16px;
    }
    /* .accordion-content {
        border: none;
    } */

    .accordion-content-inner {
        grid-template-columns: auto;
    }

      .accordion-content .description {
    padding-left: 0;
    border-left: 0;
    font-size: 16px;
    font-weight: normal;
  }

    section.services h1 {
        font-size: 2.4rem;
    }

    section.services h2 {
        font-size: 1.2rem;
        text-align: center;
        padding: 0 16px;
    }
    .service-slider-outer {
        margin-top: 32px;
    }

    .nav-columns {
        right: 0;
        padding: 16px;
    }
    #pinnedContent h1 {
        max-width: 100%;
        padding: 16px;
    }
    #pinnedContent .para-smalltext {
        font-size: 18px;
    }
}

@media(max-width: 480px){
    .mySwiper {
        max-width: 320px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .main-content-section.footer {
        height: 150vh;
    }
    .logo-section {
        order: 2;
    }
    .nav-columns {
        order: 1;
        margin-bottom: 24px;
    }
              .contact-icon a {
        font-size: 18px;
    }
    
         .top-font-normal {
        font-weight: normal;
        font-size: 17px;
        margin-top: 7px;
        margin-left: 0%;
        position: absolute;
        top: 75%;
        width: 97%;
        text-align: center;
    }
    
    .full-page-nav .nav-columns {
            width: 95%;
    position: relative;
    margin-right: auto;
    margin-left: 0%;
}
    
   .mobileblock {
        display: block;
    }
    
    .footer-links span {
    white-space: nowrap;
    color: #fff;
    padding-left: 20px;
}
    
    .full-page-nav .nav-columns ul > li > a {
    font-size: 22px;
}
    
    .nav-list li {
    padding: 10px 0;

}
    
}