/*-- -------------------------- -->
<---        Side By Side        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-2378 {
    padding: var(--sectionPadding);
    /* 48px - 64px */
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
    background-color: #ffffff;
    position: relative;
    z-index: 1;
  }
  #sbs-2378 .container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(2.5rem, 6vw, 4rem);
  }
  #sbs-2378 .content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 39.375rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    justify-content: center;
  }
  #sbs-2378 .title {
    max-width: 20ch;
    margin: 0;
    /* 24px - 32px */
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    /* 48px - 64px */
    padding-bottom: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #sbs-2378 .title:before {
    content: '';
    width: 100vw;
    height: 1px;
    background: #D2D8DF;
    opacity: 1;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  #sbs-2378 .text {
    margin-bottom: 1rem;
  }
  #sbs-2378 .text:last-of-type {
    margin-bottom: 1rem;
  }
  #sbs-2378 .picture {
    width: 100%;
    height: 90vw;
    max-height: 22rem;
    border-radius: 1rem;
    /* clips the corners of the img tag */
    overflow: hidden;
    display: block;
    position: relative;
  }
  #sbs-2378 .picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-2378 .container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #sbs-2378 .content {
    width: 50%;
    max-width: 36.625rem;
    padding-bottom: 7.6875rem;
    /* prevents flexbox from squishing it */
    flex: none;
    align-self: flex-start;
  }
  #sbs-2378 .picture {
    height: auto;
    max-height: 100%;
    order: 2;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #sbs-2378 {
    background-color: var(--dark);
  }
  body.dark-mode #sbs-2378 .title,
  body.dark-mode #sbs-2378 .text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #sbs-2378 .title:before {
    background-color: #fff;
    opacity: 0.2;
  }
}

/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-2378 {
    padding: var(--sectionPadding);
    padding-top: 0;
    background-color: #FFF;
    position: relative;
  }
  #services-2378::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("/assets/img/blob-scene-haikei-services-seo-m.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: 0.25;
        z-index: 0;
        mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%
    );
        -webkit-mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%
    );
    }
  #services-2378 .container {
    width: 100%;
    /* chnages to 1280px at Desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-2378 .card-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  #services-2378 .item {
    width: 100%;
    text-align: center;
    list-style: none;
    margin: 0;
    /* 16px - 32px */
    padding: clamp(1rem, 3vw, 2rem);
    border-radius: 1rem;
    background: transparent;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    grid-column: span 12;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
  }
  #services-2378 .icon {
    /* 80px - 120px */
    height: clamp(5rem, 9vw, 7.5rem);
    width: auto;
    margin-bottom: 2rem;
    display: block;
  }
  #services-2378 .h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: bold;
    text-align: inherit;
    margin: 0 0 0.75rem 0;
    color: var(--textBlack);
  }
  #services-2378 .item-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    max-width: 28.125rem;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColor);
  }
}
/* Tablet - 768px */

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-2378 .container {
    max-width: 80rem;
  }
  #services-2378::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("/assets/img/blob-scene-haikei-services-seo.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: 0.28;
        z-index: 0;
        mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0,0,0,0.15) 10%,
            rgba(0,0,0,0.5) 20%,
            black 35%,
            black 65%,
            rgba(0,0,0,0.5) 80%,
            rgba(0,0,0,0.15) 90%,
            transparent 100%
        );
        -webkit-mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0,0,0,0.15) 10%,
            rgba(0,0,0,0.5) 20%,
            black 35%,
            black 65%,
            rgba(0,0,0,0.5) 80%,
            rgba(0,0,0,0.15) 90%,
            transparent 100%
        );
    }
  #services-2378 .card-group {
    flex-direction: row;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #services-2378 {
    background-color: rgba(0, 0, 0, 0.05);
  }
  body.dark-mode #services-2378::before {
    opacity: 0.12;
  }
  body.dark-mode #services-2378 .title,
  body.dark-mode #services-2378 .text,
  body.dark-mode #services-2378 .h3,
  body.dark-mode #services-2378 .item-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #services-2378 .icon path {
    fill: #FFF;
  }
  body.dark-mode #services-2378 .text {
    opacity: 0.8;
  }
}

/*-- -------------------------- -->
<---          Content           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #content-1450 {
    padding: var(--sectionPadding);
  }
  #content-1450 .container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #content-1450 .content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #content-1450 .title,
  #content-1450 .text {
    max-width: 100%;
  }
  #content-1450 .text {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0 0 2rem 0;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #content-1450 {
        background-color: var(--dark);
    }
  body.dark-mode #content-1450 .title,
  body.dark-mode #content-1450 .text {
    color: var(--bodyTextColorWhite);
  }
}

/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-578 {
        position: relative;
        overflow: hidden;
    }
    #sbs-578::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("/assets/img/blob-scene-haikei-services-seo-offering-m.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: 0.22;
        z-index: 0;
        mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%
    );
        -webkit-mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%
    );
    }
    #sbs-578 .container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 7vw, 4rem);
    }
    #sbs-578 .content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 32.625rem;
        /* moved section padding to the .content so we can have the picture be full width on mobile without the padding preventing it from doing so */
        padding: var(--sectionPadding);
        padding-top: 0;
        /* prevents padding from affecting width and height */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #sbs-578 .text {
        margin-bottom: 1rem;
        font-size: clamp(1rem, 1vw, 1.2rem);
        color: var(--textBlack);
    }
    #sbs-578 .text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbs-578 .picture {
        display: block;
        position: relative;
        width: 100%;
        height: 18.75rem;
    }
    #sbs-578 .picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 1rem;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #sbs-578 {
        padding: var(--sectionPadding);
    }
    #sbs-578 .container {
        flex-direction: row;
        justify-content: flex-start;
        /* 60px - 128px */
        gap: clamp(3.75rem, 10vw, 8rem);
    }
    #sbs-578 .content {
        width: 53%;
        /* reset the padding, add the section padding back to the section container */
        padding: 0;
    }
    #sbs-578 .picture {
        width: 47vw;
        max-width: 30.875rem;
        /* 518px - 700px */
        height: clamp(32.375rem, 63vw, 43.75rem);
        /* 16px - 28px, added margin left and bottom to picture so it pushes away by the same amount the yellow box element overlaps it left and bottom. This maintains consistent spacing left and bottom */
        margin: 0 0 clamp(1rem, 2.4vw, 1.75rem) clamp(1rem, 2.4vw, 1.75rem);
        position: relative;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #sbs-578::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("/assets/img/blob-scene-haikei-services-seo-offering.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: 0.28;
        z-index: 0;
        mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0,0,0,0.15) 10%,
            rgba(0,0,0,0.5) 20%,
            black 35%,
            black 65%,
            rgba(0,0,0,0.5) 80%,
            rgba(0,0,0,0.15) 90%,
            transparent 100%
        );
        -webkit-mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0,0,0,0.15) 10%,
            rgba(0,0,0,0.5) 20%,
            black 35%,
            black 65%,
            rgba(0,0,0,0.5) 80%,
            rgba(0,0,0,0.15) 90%,
            transparent 100%
        );
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #sbs-578::before {
        opacity: 0.07;
    }
    body.dark-mode #sbs-578 .topper {
        color: var(--lightAccentColor);
    }
    body.dark-mode #sbs-578 .title,
    body.dark-mode #sbs-578 .text {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #sbs-578 .text {
        opacity: 1;
    }
}

/*-- -------------------------- -->
<---          AEO Content       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #content-1638 {
    padding: var(--sectionPadding);
    background-color: #fff;
    position: relative;
    z-index: 1;
  }
  #content-1638 .container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 100px */
    gap: clamp(3rem, 9vw, 6.25rem);
  }
  #content-1638 .content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #content-1638 .h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
  }
  #content-1638 .text {
    margin-bottom: 1rem;
  }
  #content-1638 .text:last-of-type {
    margin-bottom: 2rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #content-1638 .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }
  #content-1638 .container-left,
  #content-1638 .container-right {
    width: 100%;
    max-width: 42rem;
  }
  #content-1638 .title {
    margin: 0;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #content-1638 .content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    text-align: left;
  }
  #content-1638 .container-left {
    flex: 0 0 38%;
  }
  #content-1638 .container-right {
    flex: 1;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #content-1638 {
    background-color: var(--dark);
  }
  body.dark-mode #content-1638 .title,
  body.dark-mode #content-1638 .text,
  body.dark-mode #content-1638 .h3,
  body.dark-mode #content-1638 .text {
    color: var(--textLight);
  }
  body.dark-mode #content-1638 .text {
    opacity: 1;
  }
}
                                

/*-- -------------------------- -->
<---     Content-Offering       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #content-1452 {
    padding: var(--sectionPadding);
  }
  #content-1452 .container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #content-1452 .content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #content-1452 .title,
  #content-1452 .text {
    max-width: 100%;
  }
  #content-1452 .text {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0 0 2rem 0;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #content-1452 {
        background-color: var(-dark);
    }

  body.dark-mode #content-1452 .title,
  body.dark-mode #content-1452 .text {
    color: var(--bodyTextColorWhite);
  }
}
                                
                                