@font-face {
  font-family: Karantina;
  src: url(/fonts/Karantina.ttf) format("truetype");
}

:root {
  /*colors */
  --color-black: #000;
  --color-white: #f6f6f6;
  --color-green-light: #a0c720;
  --color-red-error: #c72020;
  --color-green-dark: #7a9325;
  --color-green-darker: #546619;
  --color-grey: #8fb994;

  /*font-sizes*/
  --font-xxs: 0.75rem;
  --font-xs1: 0.85rem;
  --font-xs: 1rem;
  --font-s: 1.25rem;
  --font-sm: 1.5rem;
  --font-sl: 1.75rem;
  --font-ms: 2rem;
  --font-m: 2.5rem;
  --font-ml: 3rem;
  --font-l: 4rem;
  --font-xl: 6rem;
  --font-xxl: 8rem;
  --font-3xl: 10rem;

  overflow-x: hidden;
  font-size: 16px;
  scrollbar-color: #505050 #000000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  color: var(--color-white);
  font-family: "Noto Sans Hebrew";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-color: var(--color-black);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

.dark-g-bg {
  background: var(--color-green-dark);
}
.light-g-bg {
  background: var(--color-green-light);
}

.kar {
  font-family: "Karantina";
  letter-spacing: 0.2rem;
  font-weight: 500;
}
.scroll-container {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}
main {
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
  scroll-snap-align: center;
}

section {
  height: 100svh;
  max-height: 100svh;
  max-width: 100%;
  overflow: hidden;
  scroll-snap-align: center;
}
a {
  cursor: pointer;
}

a:visited,
a:link {
  color: white;
}
#pricing {
  height: 100svh;
  max-width: 100%;
  overflow: hidden;
  background: center / cover no-repeat url("./img/section-bg3.jpg");
}
.main-container {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2em;
  position: relative;
  z-index: 5;
}

.acc-modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  background-color: #000;
  height: 100%;
  width: 100%;
  z-index: 20;
  overflow-x: scroll;
}
.acc-main-grid {
  display: grid;
  align-items: center;
  justify-items: center;
}
.acc-content {
  padding-top: 2em;
  width: 50%;
  display: flex;
  flex-direction: column;

  h1 {
    font-size: var(--font-m);
  }
  h3 {
    font-size: var(--font-s);
    margin: 0.3rem 0;
  }
  p {
    font-size: var(--font-xs);
  }
}
.update_notice {
  font-size: var(--font-xxs);
  margin-bottom: 0.5em;
}

#accesibility-privacy-popup {
  position: absolute;
  right: 2em;
  bottom: 0;
  background-color: var(--color-white);
  border-radius: 50px 50px 0 0;
  z-index: 5;
}
.acc-pri-content {
  position: relative;
  display: flex;
  width: auto;
  padding: 1em 2em 0.5em 2em;
  flex-direction: column;
  flex-wrap: nowrap;
  font-size: var(--font-xxs);
  color: var(--color-black);
}

a.acc-pri-content:visited,
a.acc-pri-content:link,
.acc-pri-content a:visited,
.acc-pri-content a:link {
  color: var(--color-green-darker);
}
#hero-video-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

#hero-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}

#mobile-video {
  display: none;
}
.accesibility {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}

.privacy {
  padding-right: 0.5em;
}
.logo-acc {
}

.close-icon {
  background-color: var(--color-green-light);
  cursor: pointer;
  padding: 0.5em 1em;
  box-shadow: 5px 5px 10px #000;
}

.position-out {
  top: 0;
  right: -0.5em;
  position: absolute;
}

.position-in {
  top: 1em;
  right: 1em;
  position: absolute;
}

.modal-button {
  border-radius: 33px;
  width: fit-content;
  margin-top: 1em;
  color: #000;
}

.radius-round {
  border-radius: 100%;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top left,
    rgba(0, 0, 0, 0.99) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
}
.main-title-contrainer {
  line-height: 0.8;
  margin-top: 6em;
  margin-right: 8em;
  z-index: 5;

  max-width: fit-content;
  position: relative;
}

.main-title-top {
  font-size: 6.4rem;
}

.main-title-sub {
  font-size: 18rem;
  letter-spacing: 0.75rem;
  transform-origin: bottom right;
}

.hero-sub {
  display: flex;
  flex-direction: column;
  gap: 1em;
  border-radius: 50px;
}
.main-sub-title {
  text-align: center;
  font-size: var(--font-sl);
  font-weight: 300;
  margin: 1em 0;
  z-index: 5;
  /* padding: 0.5em 2em; */
  /* margin-top: 2em; */
}

.contact-btn {
  text-shadow: 5px 5px 10px #000;
  border-radius: 15px;
  justify-self: center;
  align-self: center;
  border: 2px solid var(--color-green-light);
  position: relative;
  display: inline-block;
  text-decoration: none;
  background-color: black;
  z-index: 5;
  cursor: pointer;
  line-height: 1;
  padding: 1em 2em;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: scale 0.25s ease-in-out, color 0.5s ease-in-out,
    border-color 0.5s ease-in-out;
}

.contact-btn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 100%;
  width: 300%;
  height: 300%;
  background-color: var(--color-green-light);
  transition: transform 0.75s ease-in-out;
  z-index: -1;
}

.contact-btn:before {
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
}

.contact-btn:hover {
  color: var(--color-white);
  border-color: var(--color-white);
  scale: 1.2;
}

.contact-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
.b-p-2 {
  padding: 0.6em 1.5em;
  margin: 0.7em;
}
.logo-sm {
  width: 13rem;
  position: absolute;
  bottom: 1em;
  left: 0;
  z-index: 2;
}

/* intro */
#intro {
  background: center / cover no-repeat url("./img/section-bg1.jpg");
}
.intro-contrainer {
  max-height: 100vh;
  margin: 0 2em;
  display: flex;
  flex-direction: row;
  position: relative;
}

.intro-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  z-index: 3;
}

.intro-title {
  font-size: var(--font-ml);
  font-weight: 700;
  margin-top: 2.5em;
}
.intro-CTA {
  font-weight: 400;
  font-size: var(--font-ml);
}
.intro-CTA-l {
  font-size: var(--font-sl);
  font-weight: 400;
}
.m-width-bth {
  max-width: 30%;
  align-self: center;
}

.cta-container {
  font-size: var(--font-sm);
  display: flex;
  line-height: 1;

  flex-direction: column;
  align-items: center;
  padding-top: 1em;
}

.newsletter-text {
  font-size: var(--font-s);
}

.gap-sm {
  gap: 1em;
}
/*branding intro */

#Branding-Intro {
  overflow: hidden;
}
.b-intro-container {
  height: 100svh;
  width: 100%;
  position: relative;
}

.b-intro-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65%;
  z-index: 1;
}

.b-intro-grid {
  height: 100%;
  display: grid;
  align-content: center;
  justify-content: center;
}

.b-intro-text {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.elivate {
  z-index: 15;
}
.b-ani-container {
  position: relative;
}
.b-intro-row-big {
  position: relative;
  font-size: 20rem;
  line-height: 0.5;
}

.intro-row-copy {
  position: absolute;
  inset: 0 0 0 0;
}
.b-intro-row-sm {
  padding-top: 0.4em;
  line-height: 1.1;
  font-size: var(--font-l);
}

/* services */

.services-intro {
  height: 100svh;
  display: grid;
  align-items: center;
  justify-content: center;
  scroll-snap-align: center;
  max-width: 100%;
  position: relative;
  background: center / cover no-repeat url("./img/section-bg2.jpg");
}

.services-container {
  min-width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 3;
}
.spacer-m {
  height: 5vh;
}
.services-title {
  font-size: var(--font-xl);
  text-align: center;
}
.services-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-width: 100%;
}
.service-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 7rem;
  width: 7rem;
  color: var(--color-green-light);
  font-size: var(--font-sm);
  border-radius: 10px;
}

.service-item-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 7rem;
  width: 7rem;
  color: var(--color-green-light);
  font-size: var(--font-sm);
  border-radius: 10px;
}

.service-item-title {
  color: var(--color-white);
}

.service-item-rect {
  width: 80%;
  height: 0.2em;
  border-radius: 5px;
  background: var(--color-green-light);
}

.services-intro-sticky {
  position: sticky;
  top: 0;
  max-width: 100%;
  background-color: #000;
  z-index: 7;

  .services-title {
    font-size: var(--font-l);
    display: flex;
    justify-content: center;
    line-height: 1;
  }

  .service-item {
    scale: 0.7;
  }

  .services-bar {
    justify-content: space-evenly;
    line-height: 1;
  }

  .logo-sm {
    width: 10%;
    position: absolute;
    top: 5px;
    left: 9%;
  }
}

#ser-bg-left {
  position: absolute;
  left: -50%;
  top: 10%;
  width: 80vw;
  height: 80vh;
}

#ser-bg-right {
  position: absolute;
  right: -50%;
  top: 10%;
  width: 80vw;
  height: 80vh;
}

.g-text {
  color: var(--color-green-light);
}

.b-text {
  color: var(--color-black);
}

.thin-text {
  font-weight: 300;
}
#services-branding,
#services-content,
#services-design,
#services-tech,
#services-social,
#services-advertising {
  background: center / cover no-repeat url("./img/section-bg3.jpg");
}
.s-b-container {
  height: 95svh;
  display: grid;
  align-items: center;
  position: relative;
}
.s-b-wrapper {
  display: flex;
  flex-direction: column;
  width: 80%;
  justify-self: center;
  z-index: 3;
}

.s-b-intro-contrainer {
  margin: 2em;
  font-size: 1rem;
  padding-top: 2rem;
}

.s-b-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.s-b-title {
  font-size: var(--font-l);
  line-height: 1;
  text-shadow: 5px 5px 10px #000;
}
.s-b-title-m {
  font-size: var(--font-m);
  line-height: 1;
  text-shadow: 5px 5px 10px #000;
}
.s-b-title-l {
  font-size: var(--font-l);
  line-height: 1;
  text-shadow: 5px 5px 10px #000;
}
.s-b-title-xl {
  font-size: var(--font-xl);
  line-height: 1;
  padding-top: 1em;
  text-shadow: 5px 5px 10px #000;
}
.s-b-title-xxl {
  font-size: var(--font-xxl);
  line-height: 1;
  text-shadow: 5px 5px 10px #000;
}
.s-b-p {
  font-size: var(--font-s);
  padding: 1em;
}
.w-60 {
  width: 60%;
}

.w-55 {
  width: 55%;
}

.s-p-box {
  background: linear-gradient(
    30deg,
    rgba(122, 147, 37, 1),
    rgba(84, 102, 25, 1) 100%
  );
  border-radius: 50px;
  margin: 2rem 1rem;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  .s-b-p {
    font-size: var(--font-xs);
    width: 100%;
    padding: 0.75em;
    text-shadow: 0 0 15px #000;
  }
}

.service-inter-row {
  padding-top: 1.5em;
  display: flex;
  width: 80%;
  gap: 1.5em;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
}

.service-inter-box {
  background: linear-gradient(
    30deg,
    rgba(160, 199, 32, 1) 0%,
    rgba(122, 147, 37, 1) 53%,
    rgba(84, 102, 25, 1) 100%
  );
  padding: 0.7em 0.5em;
  display: grid;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.service-inter-text {
  font-family: "Noto Sans Hebrew";
  letter-spacing: 0.1rem;
  padding: 0.2em;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  font-size: var(--font-s);
  text-shadow: 5px 5px 10px #000;
}

.s-b-title-ms {
  font-size: var(--font-ms);
  text-shadow: 5px 5px 10px #000;
}

.s-b-title-sl {
  font-size: var(--font-sl);
  text-shadow: 5px 5px 10px #000;
}

.s-b-p-g {
  font-size: var(--font-s);
  color: var(--color-green-light);
  width: 60%;
}

.s-b-title-m {
  font-size: var(--font-ms);
}

.c-ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 60%;
}
.ul-text {
  font-size: var(--font-s);
}
.ul-check {
  margin: 0.5em;
  width: 1.75em;
}

.s-b-width {
  width: 65%;
}

.s-b-mar-top {
  margin-top: 1em;
}

.ser-sec-bg {
  position: absolute;
  height: 95svh;
  width: 100%;
  overflow: hidden;
  z-index: 9;
}

.ser-bg-wrapper {
  position: relative;
}
.opa-3 {
  opacity: 0.3;
}

.opa-5 {
  opacity: 0.5;
}

.clr-blk {
  color: #000;
}

.clr-bright {
  color: var(--color-green-light);
}

.clr-dark {
  color: var(--color-green-dark);
}

.dots-expand {
  width: 70rem;
  height: 70rem;
  top: 1rem;
  left: -25rem;
  transform: rotate(-85deg);
  z-index: 1;
}

/* table */

/* #pricing {
  height: auto;
} */

.table-container {
  margin: auto;
  max-width: 1000px;
  padding-top: 3em;
}

.header {
  text-align: center;
  margin-bottom: 1em;
}

.header > h1 {
  font-size: var(--font-l);
  line-height: 1.1;
}
.header > h2 {
  font-size: var(--font-ms);
  line-height: 1;
}
.main-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  line-height: 1.1;
  margin-left: 2em;
}

.title-row {
  grid-column: 1 / -1;
  display: contents;
}

.empty-cell,
.title-cell {
  padding: 1em 0.5em;
  text-align: center;
}

.title-cell {
  background: linear-gradient(
    30deg,
    var(--color-green-darker),
    var(--color-green-dark)
  );
  border: #f6f6f6 1px solid;
}
.cell-t {
  font-size: var(--font-ms);
  text-shadow: 5px 5px 10px #000;
}
.cell-d {
  font-size: var(--font-xs1);
}

#ta-title-right-cell {
  border-radius: 0 50px 0 0;
}

#ta-title-left-cell {
  border-radius: 50px 0 0 0;
}

.checkmark {
  height: 30px;
  width: 30px;
  padding: 0 0.5em;
}
.side-column {
  display: grid;
  grid-template-rows: repeat(10, 1fr);
  font-size: var(--font-sm);
  line-height: 1;
  text-shadow: 2px 2px 5px #000;
}

.side-column > div {
  background: linear-gradient(
    30deg,
    var(--color-green-darker),
    var(--color-green-dark)
  );
  padding: 0.1em 0.2em;
  display: flex;
  align-items: center;
}

.side-column > div:first-child {
  border-radius: 0 5px 0 0;
}

.side-column > div:not(:last-child) {
  border: 1px solid white;
}

.side-column > div:last-child {
  background: none;
  font-size: var(--font-m);
}

.side-column > div:nth-last-child(2) {
  border-radius: 0 0 5px 0;
}
.content-grid {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(10, 1fr);
  gap: 2px;
  line-height: 1;
}

.content-grid > div {
  background-color: #333;
  display: flex;
  padding: 0 0.8em;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
}

.pricing-row {
  margin-top: -3em;
  display: flex;
  margin-right: 4em;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
}
.pricing-cell {
  margin-right: 2em;
  display: flex;
  border: 5px solid (var(--color-green-light));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.pricing-cell:visited {
  color: var(--color-white);
  text-decoration: none;
}

.p-monthly {
  font-size: var(--font-ms);
}

.p-month {
  font-size: var(--font-xs);
}
.p-yearly {
  font-size: var(--font-xxs);
}
.t-details {
  padding: 0.1em;
  margin-bottom: 0.5em;
  font-size: var(--font-sm);
  font-weight: 600;

  a {
    color: var(--color-green-light);
  }
}
.nis {
  font-size: var(--font-s);
}
.sendoff-main {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  line-height: 1;
  z-index: 5;
}

.sendoff-cta {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.sendoff-cta h1 {
  font-size: var(--font-xxl);
  color: #a0c720;
  z-index: 5;
  line-height: 0.75;
  padding-top: 3rem;
}

.sendoff-cta h3 {
  font-size: var(--font-ml);
  padding-bottom: 0.75em;
}
#send-off {
  background: center / contain no-repeat url("./img/section-bg2.jpg");
}

.sendoff-img {
  max-width: 50%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  margin-top: 2em;

  .contact-terms-ckbx {
    width: 1rem;
    accent-color: var(--color-green-light);
  }
  .faccept-text {
    font-size: var(--font-xxs);
  }
  h1 {
    font-size: var(--font-m);
    text-align: center;
    color: var(--color-green-light);
  }
  p {
    text-align: center;
  }
  input {
    width: 80%;
  }
}

#fSubmit {
  width: fit-content;
  align-self: center;
  margin: 1em 0;
  background-color: #f6f6f6;
  color: #000;
  border-radius: 33px;
  padding: 0.5em 2em;
  cursor: pointer;
}
.contact-form-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.f-row {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 0 4em;
}

.f-logo {
  flex: 2;
  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;
}
.m-logo-img {
  max-width: 10svw;
}
.f-content-container {
  flex: 2;
  display: flex;
  flex-direction: row;
  text-decoration: underline;
  font-size: 0.75rem;
  justify-content: center;
}
.f-content-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem;
  justify-content: center;
}
.footer-t {
  font-size: 1rem;
}
.f-contact {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.5em;
  justify-content: center;
}

@media (min-width: 1025px) {
  .intro-contrainer {
    margin: 0 auto;
    align-items: center;
    justify-items: center;
    gap: 4em;
  }
  .intro-image {
    height: 100svh;
    max-height: 100svh;
  }

  .spacer-intro {
    padding-bottom: 4em;
  }
  .spacer {
    padding-bottom: 1em;
  }

  .intro-text-box {
    padding: 0 4.5em;
    font-size: var(--font-s);
    text-align: justify;
  }

  .intro-text {
    padding: 0 2em;
  }

  .service-inter-row {
    gap: 1em;
  }
}

@media (max-width: 1024px) {
  :root {
    /*font-sizes*/
    --font-xxs: 0.5rem;
    --font-xs: 0.75rem;
    --font-s: 1rem;
    --font-xs1: 0.75rem;
    --font-sm: 1.25rem;
    --font-sl: 1.5rem;
    --font-ms: 1.5rem;
    --font-m: 2rem;
    --font-ml: 2.25rem;
    --font-l: 3rem;
    --font-xl: 4rem;
    --font-xxl: 6rem;
    --font-3xl: 8rem;

    font-size: 12px;
  }

  .main-container {
    height: 100%;
    gap: 2em;
    justify-content: center;
    align-items: center;
  }

  .main-title-contrainer {
    margin: 4em auto;
    max-height: 50svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
  }

  .main-title-sub {
    font-size: 14rem;
  }

  .main-title-top {
    font-size: var(--font-xl);
  }

  .main-sub-title {
    margin-top: 4em;
    padding: 0.5em 2em;
  }

  .contact-btn {
    padding: 0.5rem 1rem;
  }

  .intro-contrainer {
    flex-direction: column-reverse;
    margin: 0;
    gap: 4em;
    justify-content: space-around;
  }

  #intro {
    display: grid;
    justify-content: center;
    position: relative;
  }
  .intro-text-box {
    padding: 0 1em;
    font-size: var(--font-s);
    text-align: justify;
  }
  .intro-image {
    height: 40svh;
  }

  .intro-text {
    gap: 0.5em;
    padding-top: 2em;
    padding: 0 1em;
  }

  .intro-title {
    text-align: center;
    margin-top: 1em;
  }
  .b-intro-bg {
    max-width: none;
    width: 100vh;
  }

  .b-intro-row-big {
    font-size: 16rem;
  }

  .b-intro-row-sm {
    font-size: 4rem;
  }
  .table-container {
    margin: 6em auto 0 auto;
    height: 100svh;

  }

  .p-monthly {
    line-height: 1;
  }
  .sendoff-main {
    justify-content: space-between;
    gap: 0.5rem;
  }
  .sendoff-img {
    min-width: 100%;
    bottom: 0.5rem;
  }

  .acc-content {
    width: 90%;
  }
  .checkmark {
    height: 15px;
    width: 15px;
    padding-left: 0.5em;
  }

  .main-grid {
    margin: 0 auto;
  }

  .side-column {
    font-size: var(--font-xs);
    line-height: 1.5;
  }
  .t-details {
    font-size: var(--font-xs);
  }
}

@media (max-width: 768px) {
  .logo-sm {
    left: 0;
    bottom: 3em;
  }
  .acc-pri-content {
    font-size: var(--font-xs);
  }
  .services-intro {
    align-items: start;
  }
  .services-intro {
    .services-container {
      align-items: center;
      justify-content: space-between;
      padding: 10em 0.5em;
    }
  }
  .intro-image {
    object-fit: cover;
  }
  .services-bar {
    max-width: 100%;
  }
  .service-item-intro {
    width: 3em;
  }
  .ser-sec-bg {
    z-index: 1;
    opacity: 0.6;
  }
  .content-grid {
    font-size: var(--font-xs);
  }
  .s-p-box {
    padding: 0.5em 1em;
    margin: 1em 0;
  }
  .s-b-wrapper {
    width: 100%;
  }
  .s-b-main {
    gap: 3em;
    min-width: 85vw;
    min-height: 75svh;
  }
  .services-intro-sticky {
    .logo-sm {
      left: 0;
      width: 12%;
    }
  }
  .w-60 {
    width: 80%;
  }

  .footer-t {
    font-size: 0.8rem;
  }

  @media (max-height: 712px) {
    :root {
      font-size: 10px;
    }

    .main-container {
      margin: 0;
    }

    .main-sub-title {
      margin-top: 2em;
    }

    .intro-contrainer {
      gap: 1em;
    }
    .intro-image {
      max-height: 30vh;
      position: absolute;
      width: 100%;
      bottom: 0;
    }
    .table-container {
      margin-top: 0.5em;
    }

    .acc-content {
      width: 95%;
    }
  }
}
