/* Base Reset & Typography */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
  font-family: 'Geist', sans-serif;
}

body {
  background-color: #0F0F0F;
  color: #F1F1F1;
  font-family: 'Geist', sans-serif;
}

body:has(#toggle1:checked) {
  overflow: hidden;
}

h1 {
  font-size: 164px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}

h2 {
  font-size: 99px;
  font-weight: 700;
  line-height: 79%;
  text-transform: uppercase;
}

h3 {
  font-size: 73px;
  line-height: 98%;
  text-transform: uppercase;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

a {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  position: relative;
}

a:hover::after {
  transform: translateX(4px);
}

/* BUTTONS */

button {
  font-size: 18px;
  font-family: 'Geist', sans-serif;
  background-color: #1F1E1E;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  color: #f1f1f1;
  line-height: auto;
}

button:hover,
button:active {
  background-color: #D6F507;
  color: #0F0F0F;
}

button.btn {
  padding: 3% 6%;
  border: 1px solid #4A4A4A;
  border-radius: 35px;
}

button.btn a {
  text-decoration: none;
}

/* NAVIGATION BAR */

.home-page-header.nav-bar.sticky-top {
  opacity: 0;
  transform-origin: top;
  scale: 1 0;
  /* collapsed vertically */
  transition: none;
  will-change: transform, opacity;
  transform: translateY(-30px);
}

.nav-bar .sub-menu {
  top: 47px;
  height: fit-content;
}

.home-page-header .sub-menu {
  top: auto;
}

.home-page-header.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0F0F0F;
  z-index: 10;
  height: fit-content;
  /* top: auto; */
  position: fixed;
  /* bottom: 0; */
  left: 0;
  right: 0;
  /* transform: translateY(0);
  transition: transform 0.5s ease, top 0.5s ease, bottom 0.5s ease; */
}

.home-page-header.nav-bar.sticky-top {
  bottom: auto;
  top: 0;
  /* transform: translateY(-100%); */
}

.home-page .nav-bar.sticky-top.active {
  /* transform: translateY(0); */
}

.logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity 4s ease;
  z-index: 1;
  max-width: 200px;
  height: auto;
}

.logo-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-overlay.fade-out {
  opacity: 0;
}

.nav-bar {
  position: sticky;
  top: 0;
  background-color: #0F0F0F;
  z-index: 2;
  border-bottom: 1px solid #4A4A4A;
}

.nav-row {
  max-width: 1440px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 30px 20px;
  justify-content: space-between;
}

.nav-bar.active .nav-row {
  padding: 15px 10px;
}

.web-logo {
  width: 107px;
  height: 59px;
}

.web-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  width: auto;
}

/* .links-row {
  display: flex;
  background-color: #1F1E1E;
  padding: 3% 13%;
  border-radius: 35px;
  gap: 50px;
  border: 1px solid #4A4A4A;
} */

.links-row {
  display: flex;
  background-color: #1F1E1E;
  padding: 0px 31px;
  border-radius: 35px;
  gap: 59px;
  outline: 1px solid #4A4A4A;
  flex-direction: column;
}

.links-row ul li {
  list-style: none;
  text-transform: uppercase;
  padding: 12px 0px;
}

.links-row a {
  text-decoration: none;
  font-weight: 600;
}

.links-row ul li .sub-menu li {
  padding: 0px;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.social-icons svg:hover path {
  fill: #D6F507;
}

div.menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 59px;
}

#primary-menu .sub-menu {
  display: none;
  gap: 59px;
}

#primary-menu {
  display: flex;
  gap: 59px;
}

#primary-menu .menu-item-has-children {
  position: relative;
}

#primary-menu .menu-item-has-children:hover .sub-menu {
  display: flex;
  gap: 10px;
  line-height: 44px;
  width: max-content;
  position: absolute;
  flex-direction: column;
  bottom: 47px;
  background-color: #1F1E1E;
  padding: 20px;
  border-radius: 0px 0px 20px 20px;
}

.home-page #primary-menu .menu-item-has-children:hover .sub-menu {
  border-radius: 20px 20px 0px 0px;
  bottom: 48px;
  top: auto;
}

.home-page .nav-bar.sticky-top #primary-menu .menu-item-has-children .sub-menu {
  background-color: #1F1E1E;
  padding: 20px;
  position: absolute;
  top: 47px;
  bottom: auto;
  flex-direction: column;
  font-size: 18px;
  line-height: 44px;
  border-radius: 0px 0px 20px 20px;
}

#primary-menu .menu-item-has-children:hover .sub-menu {
  display: flex;
  gap: 10px;
  width: max-content;
  top: 48px;
  bottom: auto;
}

/* CSS FOR HAMBURGER DESKTOP */

input#toggle1 {
  display: none;
}

section.navigation-row {
  width: 69%;
}


/* HERO SECTION */

.hero-banner {
  height: 100vh;
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* WHO WE ARE SECTION */

.who-we-are {
  border-bottom: 1px solid #4A4A4A;
}

.who-we-are-row {
  max-width: 1440px;
  width: 100%;
  margin: auto;
  display: flex;
  position: relative;
  flex-wrap: wrap;
}

.who-we-are-image {
  width: 45%;
}

.who-we-are-right-col {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.who-we-are-desc {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  position: absolute;
  top: 30px;
  right: 25px;
}

.building-legacy {
  display: flex;
  gap: 8px;
}

.building-legacy h3 {
  color: #D6F507;
  font-weight: 600;
  font-size: 18px;
}

.building-legacy-row p {
  padding-top: 3%;
  padding-bottom: 10%;
  line-height: 150%;
}

.building-legacy-row {
  width: 80%;
}

/* WHAT WE DO SECTION */

.what-we-do {
  border-bottom: 1px solid #4A4A4A;
}

.what-we-do-row {
  max-width: 1440px;
  width: 100%;
  margin: auto;
  padding-bottom: 115px;
}

.what-we-do-desc {
  display: flex;
}

.what-we-do-left {
  width: 50%;
}

.what-we-do-right {
  width: 52%;
}

.what-we-do-right h2 {
  display: flex;
  flex-wrap: wrap;
}

.what-we-do-right h2 span{
    position: relative;
    display: flex;
    padding-left: 12px;
}

.what-we-do-right h2 span::before {
    content: '';
    background-image: url(https://sandersse.com/wp-content/themes/sanderssse/assets/final-svg.svg);
    position: absolute;
    right: -30px;
    top: 5rem;
    width: 195px;
    height: 77px;
    background-repeat: no-repeat;
    background-size: cover;
}


/* OUR WORK / SWIPER SLIDER */

.our-work {
  padding: 3% 1.5% 7% 1.5%;
}

.our-work-desc {
  padding-bottom: 3%;
  position: relative;
}


/*swiper slider arrows css*/


.glide__arrow {
  border: none !important;
}

.our-work .slider-arrows {
  position: absolute;
  top: 110%;
  left: 0;
  justify-self: anchor-center;
  width: 8%;
  background: #1F1E1E;
  border: 1px solid #4A4A4A;
  border-radius: 35px;
  display: flex;
  padding: 1.5%;
}

button.glide__arrow.glide__arrow--prev {
  left: 5%;
}

button.glide__arrow.glide__arrow--next {
  right: 5%;
}

/* STYLING FOR NEW CAROUSEL */

.glide__slides {
  height: 600px;
}

.slide-wrapper {
  height: 100%;
  width: 100%;
  padding: 6.5%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 35px;
}

.glide__slide {

  transform: scaleX(1) scaleY(1);
  max-height: 523px;
  align-self: center;
  transform-origin: center;
  transition: transform 0.4s ease;
  margin: 0;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(1);
  height: 100%;
  width: 100%;
}

.glide__slide p {
  display: none;
}

/* active slide scales but still respects gap */
.glide__slide--active {
  /* transform: scaleX(1.1) scaleY(1); */
  max-height: 647px;
  transform-origin: center;
  z-index: 3;
  filter: none;
  /* width: 450px !important; */
  background-repeat: no-repeat;
  background-size: cover;
}

.glide__slide--active .slide-wrapper {
  background: linear-gradient(179.97deg, rgba(15, 15, 15, 0) 27.62%, #0F0F0F 93.9%);
}

.glide__slide--active p {
  display: block;
  line-height: 79%;
}

button.glide__arrow.glide__arrow--prev:hover,
button.glide__arrow.glide__arrow--next:hover {
  background-color: transparent;
}

.glide__arrow {
  z-index: 0 !important;
}

.glide__slide.is-next-2 .slide-wrapper,
.glide__slide.is-next-1 .slide-wrapper {
  background: linear-gradient(270deg, rgba(15, 15, 15, 0.12) 0.59%, #0F0F0F 99.24%);
}

.glide__slide.is-prev-1 .slide-wrapper,
.glide__slide.is-prev-2 .slide-wrapper {
  background: linear-gradient(89.22deg, rgba(15, 15, 15, 0.12) 0.59%, #0F0F0F 99.24%);
}


/* HIGHLIGHTS SECTION */

.highlights {
  width: 100%;
  background-color: #0F0F0F;
  /* border-bottom: 1px solid #4A4A4A; */
}

.highlights-row {
  max-width: 1370px;
  margin: 0 auto;
  background-color: #D6F507;
  border-radius: 20px;
  padding: 5% 32% 0% 1%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #0F0F0F;
}

/* CONTACT SECTION */

.contact-row {
  max-width: 1380px;
  width: 100%;
  margin: auto;
  background-color: #f1f1f1;
  border-radius: 20px;
}

.contact-heading {
  padding: 0% 0% 2.5% 0%;
  display: flex;
  justify-content: flex-end;
}

.contact-heading h2 {
  font-size: 164px;
  line-height: 116px;
  text-transform: uppercase;
  color: #0f0f0f;
}

.contact-form {
  padding: 0% 2.5% 4% 2.5%;
}

.contact-form form {
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  justify-content: center;
}

.name,
.email,
.message {
  display: flex;
  flex-direction: column;
}

.name,
.email {
  width: 50%;
}

.message {
  width: 100%;
}

textarea::placeholder,
input::placeholder {
  color: #ADADAD;
  font-size: 14px;
  font-family: "Geist", sans-serif;
}

label {
  color: #0f0f0f;
  font-weight: bold;
}

.submit-button {
  display: flex;
  justify-content: center;
}

.contact div#wpforms-confirmation-111 {
  background: black;
  border: none;
  box-sizing: border-box;
}

.contact div#wpforms-confirmation-111 p {
  color: #fff;
  text-align: center;
}

.submit-button button {
  text-decoration: none;
  padding: 20% 50%;
  border-radius: 35px;
}

.contact-form form :focus-visible {
  outline: none;
}

/* FOOTER */

footer.sse {
  background-color: #1F1E1E;
  position: relative;
}

.footer-row {
  max-width: 1440px;
  width: 100%;
  margin: auto;
  display: flex;
  height: 241px;
}

.icon {
  width: 60%;
}

.icon p {
  text-transform: uppercase;
  padding-top: 10px;
}

.lists {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  align-items: center;
  list-style: none;
}

.links-1 a {
  text-decoration: none;
  display: flex;
  padding: 5px;
  text-transform: uppercase;
}

/* START NOW SECTION */

.start-now {
  background-color: #D6F507;
  width: 100%;
  height: 150px;
  position: absolute;
  justify-self: anchor-center;
  bottom: -150px;
  overflow: hidden;
}

.start-now h2 {
  font-size: 164px;
  color: #0f0f0f;
  text-align: center;
  line-height: normal;
  white-space: nowrap;
}

/* TABS AND ACCORDION SECTION */

.tabs {
  display: flex;
  max-width: 1440px;
  width: 100%;
  margin: auto;
  margin-bottom: 30px;
}

.tabs-row {
  display: flex;
  padding: 0.3%;
  background-color: #1F1E1E;
  border: 1px solid #4A4A4A;
  border-radius: 35px;
  width: 21%;
}

.tab-button {
  padding: 2.5% 8%;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  background: transparent;
  border: none;
  border-radius: 35px;
  transition: all 0.3s ease;
}

.tab-button.active {
  background: #D6F507;
  color: #0f0f0f;
}

.tab-content {
  display: none;
  flex-direction: row;
  max-width: 1440px;
  width: 100%;
  margin: auto;
  gap: 30px;
}

.tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tab-content.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}

.accordion {
  width: 50%;
}

.accordion-item {
  border-bottom: 1px solid #4A4A4A;
  padding: 4% 0%;
  cursor: pointer;
}

.accordion-item:hover {
  background: transparent;
}

.accordion-title {
  font-size: 29px;
  text-transform: uppercase;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.accordion-item:hover .accordion-title {
  color: #D6F507;
  font-weight: 700;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, padding 0.3s ease;
  padding: 0 0;
  font-size: 18px;
}

.accordion-content a {
  width: 25%;
}

.accordion-item:hover .accordion-content {
  max-height: 300px;
  opacity: 1;
  padding: 10px 0;
}

.accordion-content a.button {
  text-decoration: none;
  color: #D6F507;
  display: flex;
  gap: 7px;
  text-transform: uppercase;
}

.image-panel {
  width: 50%;
  position: relative;
  min-height: 538px;
}

.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.panel-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #00000000 40.62%, #0F0F0F 160%);
  z-index: 1;
  pointer-events: none;
}

.panel-image img.active {
  opacity: 1;
  z-index: 1;
  position: relative;
}

.panel-image {
  width: 679px;
  height: 538px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}


.border-radius-right {
  border-radius: 0px 35px 35px 0px;
}

.border-radius-left {
  border-radius: 35px 0px 0px 35px;
}

.content-row {
  display: flex;
  animation: fadeIn 0.4s ease;
  gap: 30px;
  width: 100%;
}

.our-work-right {
  display: flex;
  justify-content: center;
  height: 100px;
}

.animated-text {
  color: white;
}

/* .scrolling-text h2 {
  position: absolute;
  right: 19%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
} */

/* ANIMATIONS */

/* FADEIN ANIMATION */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ZOOM IN ANIMATION */

.zoom-box {
  display: inline-block;
  overflow: hidden;
}

.zoom-box img {
  animation: zoomIn 0.6s ease-out forwards;
  transform: scale(0.8);
}

@keyframes zoomIn {
  to {
    transform: scale(1);
  }
}

.font-18,
.font-18 textarea,
.font-18 label,
.font-18 input,
.font-18 button {
  font-size: 18px !important;
}

/*PADDING STANDARDS FOR DESKTOP*/

.contact,
.highlights,
footer.sse,
.what-we-do,
.who-we-are {
  padding: 3% 1.5% 3% 1.5%;
}


/*CSS FOR HAMBURGER*/

.hamburger {
  display: none;
}




/* 404 NOT FOUND PAGE CSS */
/* 404 NOT FOUND PAGE CSS */
/* 404 NOT FOUND PAGE CSS */
/* 404 NOT FOUND PAGE CSS */
/* 404 NOT FOUND PAGE CSS */

.not-found {
  margin: auto;
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  height: 80vh;
  justify-content: center;
}

.not-found h3 {
  font-size: 29px;
  color: #D6F507;
}

.not-found button {
  border-radius: 100px;
  background-color: #4A4A4A;
  margin-top: 30px;
}

.not-found button:hover {
  background-color: #D6F507;
}

.not-found {
  padding: 3% 1.5% 3% 1.5%;
}


/*CSS FOR INDIVIDUAL SERVICE*/
/*CSS FOR INDIVIDUAL SERVICE*/
/*CSS FOR INDIVIDUAL SERVICE*/
/*CSS FOR INDIVIDUAL SERVICE*/



/* HERO BANNER CSS */

.hero-section {
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, #0F0F0F 100%);
}

.hero-section-row {
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  padding: 3% 1.5% 0% 1.5%;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
  background-position: right;
}

.for-talent {
  display: flex;
  gap: 15px;
  color: #D6F507;
  text-transform: uppercase;
}

.for-talent p {
  font-weight: 600;
}

.hero-description h1 {
  font-size: 73px;
}

.hero-description {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.Deandre-row {
  text-transform: uppercase;
  height: 620px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 24%;
  padding: 3% 1.5% 3% 1.5%;
  display: flex;
  align-items: flex-end;
  border-radius: 20px;
}

.Deandre-row p {
  font-size: 29px;
}

.Deandre {
  padding: 3% 1.5% 3% 1.5%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}



/*CSS FOR CASE TEMPLATE*/
/*CSS FOR CASE TEMPLATE*/
/*CSS FOR CASE TEMPLATE*/
/*CSS FOR CASE TEMPLATE*/


/* HERO SECTION */

.case-hero {
  max-width: 1440px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.case-hero-image {
  max-width: 1380px;
  width: 100%;
  height: 500px;
}

.case-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}


.col-gap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-hero-description h1 {
  font-size: 73px;
  line-height: 79%;
}

.case-hero-description p {
  color: #f1f1f1;
}

.case-hero-image {
  display: flex;
  justify-content: center;
}

.contex-description {
  max-width: 450px;
  width: 100%;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.contex-button a.button {
  text-transform: uppercase;
  color: #D6F507;
}

.contex {
  padding: 3% 0%;
  max-width: 1148px;
  width: 100%;
  background-color: #1F1E1E;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.case-study-row-2 {
  display: flex;
  justify-content: flex-end;
  padding: 5% 1.5%;
}

.contex-description .contex-paragraph {
  padding-bottom: 30px;
}

.section-7.stratergy-main-row {
  max-width: 1440px;
  width: 100%;
  margin: auto;
}

.section-7-row {
  display: flex;
  flex-direction: row;
}

.section-5-images {
  display: flex;
  gap: 20px;
}

.section-2-images .image-1,
.section-2-images .image-2 {
  height: 560px;
  width: 450px;
}

.section-2-images .image-1 img,
.section-2-images .image-2 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* REUSABLE CSS CODE */

.section-1-row,
.section-2-row,
.section-3-row,
.section-4-row,
.section-5-row,
.section-6-row {
  display: flex;
  flex-direction: row;
  max-width: 1440px;
  width: 100%;
  margin: auto;
  justify-content: space-between;
  gap: 20px;
}

.section-6-row {
  align-items: flex-end;
}

.section-1-description,
.section-2-description,
.section-4-description {
  width: 33%;
}

.section-2-images,
.section-4-images {
  display: flex;
  gap: 20px;
  width: 70%;
  justify-content: right;
  align-items: flex-end;
}

.section-2-images img,
.section-3-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.section-2-images,
.section-3-image {
  height: 560px;
  width: 67%;
}

.section-4 .image-small,
.section-6-image-1.image-small {
  height: 350px;
  width: 450px;
}

.section-4 .image-small img,
.section-6-image-1.image-small img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* 
.section-4 .image-2 img,
.section-6-image-1.image-2 img {
  height: 560px;
  width: 450px;
  object-fit: cover;
} */


.section-4.image-2,
.section-6-image-1.image-2 {
  height: 560px;
  width: 450px;
}

.section-4 .image-2 img,
.section-6-image-1.image-2 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* SECTION 1 */

.section-1-image {
  width: 914px;
  height: 560px;
  text-align: right;
}

.section-1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-paragraph-1 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* SECTION 3 */

.section-3-description {
  width: 68%;
}

.section-3-paragraphs {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.section-3-image {
  width: 32%;
  text-align: right;
}

/* SECTION 5 */

.section-6-image-1.image-2 {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

.section-6-image-1.image-small {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

.image-small {
  display: flex;
  align-items: flex-end;
}

/* SECTION 6 */

.section-6-images {
  width: 70%;
}

.section-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.section-6-images {
  width: 70%;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.main-image {
  height: 560px;
}

.main-image img {
  height: 100%;
  object-fit: cover;
}

.image-column {
  height: 275px;
}

.image-column img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.image-group.side-images {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.section-5-description {
  width: 30%;
}

/* STANDARD PADDING */

.padding {
  padding: 3% 1.5% 3% 1.5%;
}

hr {
  background: #4a4a4a;
  height: 1px;
  width: 100%;
  border: 0;
}

/* PRIVACY POLICY PAGE CSS */
/* PRIVACY POLICY PAGE CSS */
/* PRIVACY POLICY PAGE CSS */
/* PRIVACY POLICY PAGE CSS */

.privacy-policy-row {
  max-width: 920px;
  width: 100%;
  margin: auto;
}

.company-name h1 {
  font-size: 73px;
}

.privacy-policy-row h4 {
  text-transform: uppercase;
}

.privacy-policy ul {
  padding-left: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.menu .nav-links a:hover {
  color: #D6F507;
}

.contact .wpforms-field-container {
  width: 100%;
  margin: auto;
  padding: 0px 30px;
}

.contact textarea#wpforms-111-field_3,
.contact input#wpforms-111-field_2,
.contact input#wpforms-111-field_1 {
  background-color: transparent;
  border-bottom: 2px solid #0F0F0F !important;
  border: none;
  border-radius: 0px;
  padding-left: 55px;
  box-shadow: none;
}


.contact label.wpforms-field-label {
  margin: 0;
}

.contact div#wpforms-111 {
  padding-bottom: 4%;
  margin-top: 0;
}

.contact .wpforms-submit-container {
  text-align: center;
}

.contact button#wpforms-submit-111 {
  background-color: #1e1e1e;
  padding: 0% 3%;
  height: 44px;
  text-transform: uppercase;
  border-radius: 35px;
  font-weight: 300;
  font-size: 18px;
}

.contact .wpforms-submit-container {
  padding-top: 2% !important;
}

.contact textarea#wpforms-111-field_3 {
  height: 55px;
}

.contact button#wpforms-submit-111:hover {
  background: #D6F507;
  color: #1e1e1e;
}

.contex-description ul {
  padding: 0px 17px;
}



.case-study-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-row .lists .links-1 a:hover {
  color: #D6F507;
}

.contact .wpforms-required-label {
  display: none;
}

.privacy-policy main#primary {
  max-width: 1440px;
  margin: auto;
  padding: 10% 4% 10% 4%;
}

.privacy-policy main#primary h3 {
  font-size: 18px;
}

.privacy-policy main#primary h1 {
  font-size: 73px;
}

.privacy-policy article#post-3 {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.privacy-policy #post-3 .entry-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* https://sandersse.com/case-study-chad-johnson-x-nightcap/ */
.postid-251 .case-hero-image img {
  object-position: 10% 10%;
}

/* https://sandersse.com/case-study-deandre-hopkins-x-beyond-meat/ */
.postid-258 .case-hero-image img {
  object-position: 0% 0%;
}

/* https://sandersse.com/case-study-bobby-wagner-x-walter-payton-man-of-the-year/ */
.postid-173 .case-hero-image img {
  object-position: 0% 25%;
}

/* https://sandersse.com/case-study-deandre-hopkins-x-gq-hype-cover/ */
.postid-166 .case-hero-image img {
  object-position: 10% 57%;
}

/* https://sandersse.com/case-study-snoop-dogg-x-jack-in-the-box/ */
.postid-176 .case-hero-image img {
  object-position: 10% 36%;
}

.postid-163 .case-hero-image img {
  object-position: 10% 16%;
}

.postid-225 .Deandre-row {
  background-position: center;
}
/* Styling for section-8 */

.section-8-row.padding {
    max-width: 1440px;
    width: 100%;
    margin: auto;
    display: flex;
    gap: 20px;
}

.wrap-image {
    display: flex;
    gap: 20px;
    width: 100%;
}

.section-8-description {
    width: 33%;
}

.section-8-images {
    width: 67%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.section-8 .image-1 {
    width: 450px;
    height: 560px;
}

.section-8 .image-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-8 .image-2 {
    width: 450px;
    height: 560px;
}

.section-8 .image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-8 .image-3 {
    width: 450px;
    height: 560px;
}

.section-8 .image-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-8 .image-4 {
    width: 450px;
    height: 560px;
}

.section-8 .image-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}







/* RESPONSIVE: LAPTOP */
/* RESPONSIVE: LAPTOP */
/* RESPONSIVE: LAPTOP */
/* RESPONSIVE: LAPTOP */
/* RESPONSIVE: LAPTOP */


@media (min-width: 1025px) and (max-width: 1366px) {
  .who-we-are-desc {
    right: 50px;
  }

  .who-we-are-desc h1 {
    font-size: 125px;
  }

  .scrolling-text h2 {
    left: 45%;
  }

  .panel-image {
    width: 100%;
  }

  .start-now h2 {
    font-size: 135px;
  }

  .tabs-row {
    width: 300px;
  }

}

.accordion-content-active {
  max-height: 300px;
  opacity: 1;
  padding: 10px 0;
}

.accordion-title-active {
  color: #D6F507;
  font-weight: 700;
}

/* RESPONSIVE: TABLET */
/* RESPONSIVE: TABLET */
/* RESPONSIVE: TABLET */
/* RESPONSIVE: TABLET */
/* RESPONSIVE: TABLET */


@media (min-width: 768px) and (max-width: 1024px) {


  .building-legacy h3 {
    font-size: 18px !important;
  }

  .panel-image {
    width: 100%;
  }

  .start-now h2 {
    font-size: 135px;
  }

  .tabs-row {
    width: 300px;
  }

  .font-18,
  .font-18 textarea,
  .font-18 label,
  .font-18 input,
  .font-18 button {
    font-size: 16px !important;
  }

  .case-hero,
  .section-1-row,
  .section-2-row,
  .section-3-row,
  .section-4-row,
  .section-6-row,
  .section-1-description,
  .section-2-description,
  .section-4-description,
  .section-1-image,
  .section-3-description,
  .section-6-image-1.image-2,
  .section-6-image-1.image-small,
  .section-3-image {
    width: 100%;
  }

  .section-1-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .case-study-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .section-2-row,
  .section-4-row,
  .section-3-description,
  .section-3-paragraphs {
    flex-direction: column;
    gap: 40px;
  }

  .case-hero-description h1 {
    font-size: 55px;
    line-height: 98%;
  }


  .section-1-paragraph,
  .section-1-description,
  .case-hero-description,
  .section-2-paragraph,
  .section-2-description,
  .section-4-paragraph,
  .section-4-description {
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

  /* PADDING STANDARDS FOR MOBILE */

  .padding {
    padding: 15% 4% 15% 4%;
  }

  h1 {
    font-size: 120px;
  }

  h2,
  h3 {
    font-size: 70px !important;
    line-height: 120%;
  }

  p,
  a,
  button {
    font-size: 16px;
  }

  /*width 1440px to 100%*/

  .our-work,
  .contact-row,
  .footer-row,
  .what-we-do-row,
  .nav-row,
  .who-we-are-image img,
  .who-we-are-row,
  .tabs,
  .tab-content {
    width: 100%;
  }

  .what-we-do-row {
    padding-bottom: 50px;
  }

  /*inner sections width set*/

  .tabs-row {
    width: 300px;
  }

  .nav-links {
    width: 58%;
  }

  .what-we-do-right {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .what-we-do-left {
    width: 45%;
  }


  .what-we-do {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }

  .our-work-row {
    overflow: hidden;
  }

  /* CASE TEMPLATE TABLET RESPONSIVE CSS */

  .section-6-row {
    flex-direction: column;
    width: 100%;
  }

  .building-legacy-row {
    width: 95%;
  }

  .who-we-are-image {
    width: 40%;
  }

  .who-we-are-row {
    justify-content: space-between;
  }

  .who-we-are-desc {
    position: relative;
    top: 0px;
    padding: 50px 0px;
  }

  .who-we-are-image img {
    width: 100%;
  }

  .who-we-are h1 {
    font-size: 100px;
  }

  .panel-image {
    width: 100%;
    height: 350px;
  }

  section.navigation-row {
    width: 75%;
  }

  .web-logo {
    width: 15%;
  }

  /*case study sigle*/
  .section-2-images {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }

  .section-2-images img {
    width: 100%;
    height: 500px;
  }

  .section-3-description {
    width: 50%;
  }

  .section-3-image {
    width: 50%;
  }

  .section-3-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }

  .section-4-images {
    flex-direction: row;
    width: 100%;
  }

  .section-6-row {
    flex-direction: row;
    gap: 40px;
  }

  .section-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .section-5-images {
    width: 100%;
  }

  .section-6-description {
    width: 100%;
  }

  .section-1-row {
    flex-direction: row;
    gap: 40px;
  }

  .section-1-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
  }

  .padding {
    padding: 8% 4% 8% 4%;
  }

  .contact .wpforms-field-container {
    width: 100% !important;
    margin: auto !important;
    padding: 0% 4% 0% 4%;
  }

  .start-now {
    background-color: #D6F507;
    height: 70px;
    bottom: -65px;

  }

  /*menu css*/

  .home-page-header.sticky-top #toggle1:checked~.menu-row {
    top: 7vh;
  }

  .home-page-header.sticky-top #navbar .menu {
    height: 91vh;
    background-color: #1F1E1E;
  }

  .home-page-header #toggle1:checked~.menu-row {
    top: -91vh;
  }

  .home-page-header #primary-menu .sub-menu {
    padding: 20px 20px 0px !important;
  }

  .home-page-header #navbar .menu {
    height: 89vh;
    top: -3px;
  }

  #primary-menu .sub-menu a {
    padding: 2% 0%;
  }

  #primary-menu .menu-item-has-children .sub-menu {
    display: none !important;
  }


  #primary-menu .menu-item-has-children.open .sub-menu {
    display: block !important;
  }

  #primary-menu .sub-menu {
    position: relative !important;
    width: auto !important;
    padding-top: 0px !important;
  }

  label#hamburger {
    display: block;
    color: #0f0f0f;
    font-weight: bold;
  }

  nav#navbar {
    justify-self: right !important;
  }

  #toggle1~.menu-row {
    display: none;

  }

  .image-panel {
    min-height: 300px;
  }

  #toggle1:checked~.menu-row {
    height: 90vh;
    position: absolute;
    width: 100vw;
    left: 0;
    z-index: 10;
    top: 95px;
    display: block;
  }

  #navbar .menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 88vh;
    background: #1F1E1E;
    justify-content: flex-start;
    gap: 0;
    top: 15px;
    position: relative;
  }

  .links-row ul li {
    display: flex;
    flex-direction: column;
    min-height: 80px;
  }

  #navbar .nav-links {
    position: relative;
    top: 40px;
    height: auto;
    width: 100%;
    background-color: #1F1E1E;
  }

  #navbar .links-row {
    flex-direction: column;
    width: 100vw;
    border-radius: 0px;
    height: auto;
    gap: 0px;
    background: transparent;
    text-align: left;
    border: 0px;
  }

  .links-row a {
    padding: 4% 0%;
    border-bottom: 1px solid #4a4a4a;
    font-size: 20px;
  }

  .links-row {
    padding: 0% 4%
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    justify-self: anchor-center;
    width: 100vw;
    position: relative;
    bottom: 30px;
  }

  #toggle1:checked+.hamburger1 div {
    background-color: #D6F507;
  }

  .hamburger1 div {
    background-color: #F1F1F1;
    position: relative;
    width: 40px;
    height: 3px;
    margin-top: 7px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }

  #toggle1 {
    display: none;
  }

  body:has(#toggle1:checked) {
    overflow: hidden;
  }


  #toggle1:checked+.hamburger1 .top {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 22.5px;
  }

  #toggle1:checked+.hamburger1 .mid {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -5px;
  }

  #toggle1:checked+.hamburger1 .bottom {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  #toggle1:checked~.menu-row {
    height: 340px;
  }

  main#primary h3 {
    font-size: 18px !important;
  }

  .glide__slide {
    max-height: 450px;
  }

  .glide__slide.glide__slide--active {
    max-height: 520px;
  }

  .accordion-content a {
    width: 50%;
  }

  /* css for section-8 */

  .section-8-images {
    width: 100%;
  }

  .section-8-description {
      width: 100%;
  }

  .section-8-row.padding {
      flex-direction: column;
      gap: 40px;
  }

  .what-we-do-right h2 span::before {
    right: auto;
    top: 5rem;
    width: 135px;
    height: 45px;
  }

}


/* RESPONSIVE: MOBILE */
/* RESPONSIVE: MOBILE */
/* RESPONSIVE: MOBILE */
/* RESPONSIVE: MOBILE */
/* RESPONSIVE: MOBILE */


@media (max-width: 767px) and (min-width: 320px) {

  .menu:has(.open) .social-icons {
    display: none;
  }
  .section-5-description {
    width: 100%;
  }

  .section-5-images {
    flex-direction: column;
  }

  /* Brand strategy case study */
  .more-visual .image-small {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .case-hero-image {
    height: 600px;
  }

  .deandre .section-6-image-1.image-small {
    width: 100%;
  }

  .case-study-row-2 {
    padding: 5% 0%;
  }

  .chad-johnson-row-2 .contex {
    height: 450px;
    margin-bottom: 10%;
  }

  .contex-description {
    padding: 10% 4%;
  }

  /* TALENT PROCUREMENT */

  .talent-procurement .case-hero-image img {
    height: 600px;
  }

  .case-study-row-2.talent-procurement-row-2 {
    display: flex;
    justify-content: flex-end;
    padding: 10% 0%;
  }


  .hero-banner {
    height: 475px;
  }

  .Deandre-row {
    padding: 3% 1.5% 3% 10%;
  }

  .hero-description h1 {
    font-size: 45px;
    line-height: 98%;
  }

  .hero-description {
    width: 100%;
  }

  .Deandre-row p {
    font-size: 20px;
  }

  .hero-section-row {
    background-position: top;
  }

  /*PADDING STANDARDS FOR MOBILE*/
  .hero-section-row,
  .Deandre {
    padding: 10% 4% 0% 4%;
  }

  /* MOBILE MENU */
  nav#navbar {
    justify-self: right !important;
  }

  #toggle1~.menu-row {
    display: none;

  }

  .image-panel {
    min-height: 300px;
  }

  #toggle1:checked~.menu-row {
    height: 90vh;
    position: absolute;
    width: 100vw;
    left: 0;
    z-index: 10;
    top: 95px;
    display: block;
  }

  #navbar .menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 87vh;
    background: #1F1E1E;
    justify-content: flex-start;
    gap: 0;
  }

  .links-row ul li {
    display: flex;
    flex-direction: column;
    min-height: 80px;
  }

  #navbar .nav-links {
    position: absolute;
    top: 91px;
    height: 80vh;
    width: 100%;
  }

  #navbar .links-row {
    flex-direction: column;
    width: 100vw;
    border-radius: 0px;
    height: auto;
    gap: 0px;
    background: transparent;
    text-align: left;
    border: 0px;
  }

  .links-row a {
    padding: 7% 0%;
    border-bottom: 1px solid #4a4a4a;
    font-size: 20px;
  }

  .links-row {
    padding: 0% 4%
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: absolute;
    justify-self: anchor-center;
    width: 100vw;
    top: 76vh;
  }

  #toggle1:checked+.hamburger1 div {
    background-color: #D6F507;
  }

  .case-hero,
  .section-1-row,
  .section-2-row,
  .section-3-row,
  .section-4-row,
  .section-6-row,
  .section-1-description,
  .section-2-description,
  .section-4-description,
  .section-1-image,
  .section-3-description,
  .section-6-image-1.image-2,
  .section-6-image-1.image-small,
  .section-3-image,
  .section-6-row,
  .section-6-description,
  .section-6-images {
    width: 100%;
  }

  .section-content,
  .section-6-images {
    flex-direction: column;
    gap: 20px;
  }

  /* .image-column img {
    height: 220px;
    width: 100%;
    object-fit: cover;
  }

  .section-1-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  } */

  .section-1-row,
  .section-2-row,
  .section-3-row,
  .section-4-row,
  .section-3-description,
  .section-3-paragraphs,
  .section-6-row {
    flex-direction: column;
    gap: 40px;
  }

  .case-hero-description h1 {
    font-size: 55px;
    line-height: 98%;
  }

  .section-2-images,
  .section-4-images {
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .section-4 .image-small,
  .section-6-image-1.image-small {
    height: auto;
    width: 100%;
  }

  .section-4.image-2 img,
  .section-6-image-1.image-2 img {
    height: auto;
    width: 100%;
  }

  /* .section-4 .image-small img,
  .section-6-image-1.image-small img {
    height: 270px;
    width: 100%;
    object-fit: cover;
  } */


  .section-2-images .image-1,
  .section-2-images .image-2 {
    height: 100%;
    width: 100%;
  }

  .section-1-paragraph,
  .section-1-description,
  .case-hero-description,
  .section-2-paragraph,
  .section-2-description,
  .section-4-paragraph,
  .section-4-description {
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

  .panel-image {
    height: 286px;
    width: 100%;
  }

  /* PADDING STANDARDS FOR MOBILE */

  .padding {
    padding: 15% 4% 15% 4%;
  }


  h1 {
    font-size: 81px;
    font-weight: 600;
    line-height: 79%;
  }

  h2 {
    font-size: 55px;
  }

  h3 {
    font-size: 20px;
  }

  p,
  a,
  button {
    font-size: 16px;
    line-height: 150%;
  }

  .building-legacy-row,
  .who-we-are-image,
  .our-work,
  .contact-row,
  .footer-row,
  .what-we-do-row,
  .nav-row,
  .who-we-are-image img,
  .who-we-are-row,
  .tabs,
  .tab-content,
  .accordion,
  .image-panel,
  .what-we-do-right,
  .what-we-do-left,
  .name,
  .email {
    width: 100%;
  }

  .what-we-do-row {
    padding-bottom: 0px;
  }

  /*INNER SECTION WIDTH CHANGE*/

  .tabs-row {
    width: 295px;
  }

  .what-we-do-right {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .tab-content.active {
    flex-direction: column;
  }

  .what-we-do,
  .what-we-do-desc,
  .content-row,
  .contact-row {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }

  .our-work-row {
    overflow: hidden;
  }

  .highlights-row {
    padding: 15% 15% 0% 1%;
  }

  .Deandre-description {
    width: 100% !important;
  }

  .hero-nav-section {
    display: flex;
    flex-direction: column-reverse;
  }

  .nav-bar {
    border-bottom: 0px;
  }

  .who-we-are-row {
    flex-direction: column;
  }

  .who-we-are-right-col {
    align-items: flex-start;
  }

  .who-we-are-image {
    width: 260px;
    height: 410px;
  }

  .who-we-are-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .who-we-are {
    padding: 15% 0% 0% 0%;
  }

  .who-we-are-right-col {
    width: 100%;
  }

  /*CUSTOM FONT SIZES CHANGE*/

  .accordion-title {
    font-size: 20px;
  }

  .contact-heading h2 {
    font-size: 75px;
    line-height: 75%;
    text-align: right;
  }

  .legacy h3 {
    font-size: 44px;
  }

  .start-now h2 {
    font-size: 250%;
  }

  /* MOBILE RESPONSIVE PADDING STANDARDS*/

  .contact,
  .highlights,
  footer.sse,
  .what-we-do,
  .who-we-are-right-col {
    padding: 15% 4% 15% 4%;
  }

  /*CSS FOR HAMBURGER*/

  /* Hamburger */


  .hamburger1 div {
    background-color: #F1F1F1;
    position: relative;
    width: 40px;
    height: 3px;
    margin-top: 7px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }

  #toggle1 {
    display: none;
  }

  #toggle1:checked+.hamburger1 .top {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 22.5px;
  }

  #toggle1:checked+.hamburger1 .mid {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -5px;
  }

  #toggle1:checked+.hamburger1 .bottom {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  #toggle1:checked~.menu-row {
    height: 340px;
  }


  /* Menu */


  .menu-row a:last-child {
    margin-bottom: 40px;
  }

  .link1 {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    font: 700 20px 'Oswald', sans-serif;
  }

  .link1:hover {
    background-color: #fff;
    color: rgb(61, 61, 61);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }



  /* 404 NOT FOUND PAGE MOBILE RESPONSIVE CSS */
  /* 404 NOT FOUND PAGE MOBILE RESPONSIVE CSS */
  /* 404 NOT FOUND PAGE MOBILE RESPONSIVE CSS */
  /* 404 NOT FOUND PAGE MOBILE RESPONSIVE CSS */
  /* 404 NOT FOUND PAGE MOBILE RESPONSIVE CSS */

  .not-found {
    width: 100%;
  }

  .not-found h1 {
    font-size: 98px;
  }

  .not-found h3 {
    font-size: 20px;
  }

  .not-found p {
    font-size: 14px;
  }

  /* FOOTER MOBILE RESPONSIVE */

  .lists {
    width: 100%;
    align-items: flex-end;
  }


  /* NEW CAROUSEL MOBILE RESPONSIVE */

  .glide__slide.glide__slide--active {
    transform: scaleX(1) scaleY(1) !important;
    height: 58vh !important;
  }

  .glide__slide.is-next-1::before {
    content: '';
    background: linear-gradient(89.22deg, rgba(15, 15, 15, 0.12) 91.59%, #0F0F0F 99.24%);
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
  }

  .glide__slide.is-prev-1::before {
    content: '';
    background: linear-gradient(89.22deg, rgba(15, 15, 15, 0.12) 91.59%, #0F0F0F 99.24%);
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .glide__slide {
    width: 82.8vw !important;
    height: 48vh !important;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .glide__slides {
    height: auto;
    padding-top: 10% !important;
  }

  .glide__slide.is-prev-1 .slide-wrapper,
  .glide__slide.is-prev-2 .slide-wrapper {
    background: unset;
  }

  .glide__slide.is-next-2 .slide-wrapper,
  .glide__slide.is-next-1 .slide-wrapper {
    background: unset;
  }


  .our-work-right {
    justify-content: center;
  }

  .our-work {
    padding: 15% 0%;
  }

  .footer-row {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 5em;
  }

  /*mobile menu home page*/

  #primary-menu a {
    margin: 0;
  }

  #primary-menu .sub-menu li {
    min-height: auto;
  }

  .home-page-header.nav-bar #toggle1:checked~.menu-row {
    top: auto;
    bottom: 100vh;
    height: -webkit-fill-available;
  }

  .home-page-header.nav-bar .menu {
    height: 77vh !important;
  }

  #primary-menu .menu-item-has-children:hover .sub-menu {
    display: none;
  }

  #primary-menu .menu-item-has-children.open>.sub-menu {
    display: flex;
    flex-direction: column;
    gap: 0px;
    position: relative;
    z-index: 20;
    background-color: #1f1f1f;
    padding: 0px 20px;
    width: 100%;
    top: 10px;
  }

  .home-page-header.nav-bar #navbar .nav-links {
    top: 0vh !important;
    background-color: #1F1E1E;
    padding-top: 70px;
    overflow-y: scroll;
    z-index: 1;
  }

  .nav-bar .menu-item .sub-menu a {
    font-size: 16px;
    line-height: 44px;
    padding: 0px 30px;
    border: 0;
    font-weight: 400;
  }

  .nav-bar .menu-item .sub-menu a:active {
    background-color: #18181A;
    border: 1px solid #4A4A4A;
  }

  #primary-menu .menu-item-has-children.open a {
    border: 0;
  }

  .home-page-header.nav-bar .social-icons {
    position: relative;
    z-index: 1;
    top: 80vh;
  }

  .home-page .nav-bar.sticky-top #primary-menu .menu-item-has-children .sub-menu {
    position: relative;
    padding: 0px 20px;
    top: 9px;
  }

  .home-page-header.nav-bar .menu-item {
    width: 100%;
    min-height: auto;
  }

  .home-page-header.nav-bar .menu-item a {
    margin: 0;
  }


  .home-page-header.nav-bar.sticky-top #toggle1:checked~.menu-row {
    bottom: auto;
    top: 80px;
  }

  .home-page-header.nav-bar.sticky-top #navbar .nav-links {
    height: 95vh;
  }

  .home-page-header.nav-bar.sticky-top .social-icons {
    top: 72vh;
  }

  .web-logo {
    width: 83px;
    height: 52px;
  }

  section.navigation-row {
    width: 50%;
    place-items: end;
  }

  .contact .wpforms-field-container {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0px;
  }

  .contact div#wpforms-111-field_2-container {
    margin: 0;
  }

  .contact textarea#wpforms-111-field_3,
  .contact input#wpforms-111-field_2,
  .contact input#wpforms-111-field_1 {
    padding-left: 30px;
  }

  .contact button#wpforms-submit-111 {
    padding: 0% 15%;
    font-size: 16px;
  }

  .contact label.wpforms-field-label {
    margin-bottom: 0px !important;
  }

  .contact div#wpforms-111-field_1-container.contact-form-name,
  .contact div#wpforms-111-field_2-container.contact-form-email {
    width: 100%;
  }

  .contact div#wpforms-111 {
    padding: 0% 4% 4% 4%;
    width: 100%;
  }

  .start-now {
    height: 45px;
    bottom: -50px;
  }

  .section-7.stratergy-main-row {
    display: none;
  }

  .main-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .main-image {
    height: 460px;
  }

  .section-1-image {
    height: 220px;
  }

  .logo-overlay {
    max-width: 135px;
    top: 31%;
  }

  .font-18,
  .font-18 textarea,
  .font-18 label,
  .font-18 input,
  .font-18 button {
    font-size: 16px !important;
  }

  .accordion-content {
    font-size: 16px;
  }

  .accordion-content a {
    width: 50%;
  }

  .building-legacy h3 {
    font-size: 16px;
  }

  .who-we-are-desc {
    right: 0px;
    top: 18%;
  }

  .image-column {
    height: 221px;
  }

  main#primary {
    padding: 10% 4% 10% 4%;
  }

  main#primary h1 {
    font-size: 55px;
  }

  .postid-166 .case-hero-image img{
    object-position: unset;
  }

  /* .postid-213 .Deandre-row {
    background-position: 70%;
  } */

  /* .postid-226 .Deandre-row {
    background-position: 59%;
  } */

  .postid-158 .case-hero-image img {
    object-position: 17%;
  }

  .postid-176 .case-hero-image img {
    object-position: 50% 0%;
  }

  .postid-163 .case-hero-image img {
    object-position: 50% 0%;
  }

  .postid-258 .case-hero-image img {
    object-position: 48% 0%;
  }

  .postid-173 .case-hero-image img {
    object-position: 55% 0%;
  }

  .postid-251 .case-hero-image img {
    object-position: 48% 0%;
  }

  /* css for section-8 */

  .section-8-row.padding {
    flex-direction: column;
    gap: 40px;
  }

  .section-8-description {
      width: 100%;
  }

  .section-8-images {
      width: 100%;
      gap: 20px;
  }

  .section-8 .image-1 {
      width: 100%;
      height: 430px;
  }

  .section-8 .image-2 {
      width: 100%;
      height: 430px;
  }

  .section-8 .image-3 {
      width: 100%;
      height: 430px;
  }

  .section-8 .image-4 {
      width: 100%;
      height: 430px;
  }

  .wrap-image {
      flex-direction: column;
  }

  .what-we-do-right h2 {
    gap: 12px;
  }

  .what-we-do-right h2 span::before {
    top: 3rem;
    width: 116px;
    height: 40px;
  }

  .what-we-do-right h2 span {
    padding-left: 0;
  }
  
}