.solutionsBanner {
    position: relative;
    height: 100vh;
    z-index: 1;
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1),
            rgba(0, 0, 0, 0.1) 30%
        ),
        linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.3) 10%);
}
:root {
    --green: rgba(21, 27, 195, 1);
}

.solutionsBanner h1 {
    font-size: 6rem;
    color: white;
    transform: translateX(100%);
    display: inline-block;
    white-space: nowrap;
    /* start more to the right */
}

.solutionsBanner h1 span {
    display: inline-block;
    /* crucial for rotation/translation */
    transform-origin: center center;
    /* optional: makes rotation pivot around center */
}

.solutionsBanner h1 span.space {
    display: inline-block;
    /* needed for transforms to work */
    width: 0.5em;
    /* adjust spacing if necessary */
}

.bg-layer {
    position: absolute;
    inset: 0;
    background-image: url(../images/solutions/SolutionsBanner.png);
    background-size: cover;
    background-position: center;
    z-index: 0;
    height: 100vh;
    background-attachment: fixed;
    /* keep it only viewport tall */
}

section.techPower {
    /*height: 100vh;*/
    position: relative;
    overflow: hidden;
    background-image: url(../images/solutions/TechPowerBanner.png),
        linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 20%),
        linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 20%);
    /* Adjust top gradient similarly */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 80%;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
}

section.techPower .squares, section.readyToRace .squares, section.readyToRaceSolutions .squares {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    height: 120px;
    left: -100%;
}

section.techPower .squares > div, section.readyToRace .squares > div, section.readyToRaceSolutions .squares > div {
    flex: 0 0 120px;
    height: 120px;
    position: relative;
}

section.techPower .squares .bigOrangeRectRight,
section.techPower .squares .smallOrangeRectRight,
section.techPower .squares .bigBlueRect,
section.readyToRace .squares .bigOrangeRectRight,
section.readyToRace .squares .smallOrangeRectRight,
section.readyToRace .squares .bigBlueRect,
section.readyToRaceSolutions .squares .bigOrangeRectRight,
section.readyToRaceSolutions .squares .smallOrangeRectRight,
section.readyToRaceSolutions .squares .bigBlueRect {
    width: 10em;
    height: 40px;
}

section.techPower .squares .smallOrangeRectRight,
section.techPower .squares .bigBlueRect.small,
section.readyToRace .squares .smallOrangeRectRight,
section.readyToRace .squares .bigBlueRect.small,
section.readyToRaceSolutions .squares .smallOrangeRectRight,
section.readyToRaceSolutions .squares .bigBlueRect.small {
    left: -20px;
}

section.techPower .squares .bigBlueRect.customBottom,
section.readyToRace .squares .bigBlueRect.customBottom,
section.readyToRaceSolutions .squares .bigBlueRect.customBottom {
    bottom: -40px;
}

section.techPower #techPowerTitle {
    opacity: 0;
}

section.techPower .col-6 {
    position: relative;
    padding: 0;
    /* remove Bootstrap gutters */
}

section.techPower,
section.readyToRace,
section.readyToRaceSolutions {
    position: relative;
    /*height: 100vh;*/
    overflow: hidden;
}

section.techPower .container-wrapper .wrapper,
section.readyToRace .container-wrapper .wrapper,
section.readyToRaceSolutions .container-wrapper .wrapper {
    display: flex;
    width: 100%;
}

section.techPower .container-wrapper .wrapper .panel,
section.readyToRace .container-wrapper .wrapper .panel,
section.readyToRaceSolutions .container-wrapper .wrapper .panel {
    flex: 1;
    position: relative;
    opacity: 0;
    max-width: 50%;
}

#coreTechPartnersTitle {
    width: 75%;
    word-wrap: break-word;
    font-size: 48pt;
}

/* Left panel diagonal */
section.techPower .container-wrapper .wrapper .panel.left::before~,
section.readyToRace .container-wrapper .wrapper .panel.left::before~,
section.readyToRaceSolutions .container-wrapper .wrapper .panel.left::before~ {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255 255 255 / 0),
        rgba(255 255 255 / 0)
    ); /* your original left panel color */
    transform: skewX(-20deg);
    transform-origin: top left;
    z-index: -1;
}

/* Right panel diagonal */
section.techPower .container-wrapper .wrapper .panel.right::before,
section.readyToRace .container-wrapper .wrapper .panel.right::before,
section.readyToRaceSolutions .container-wrapper .wrapper .panel.right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgb(255 255 255 / 6%), 
        rgb(255 255 255 / 60%)
    ); /* your original right panel gradient */
    transform: skewX(-20deg);
    transform-origin: top right;
    z-index: -1;
}

section.techPower .container-wrapper .wrapper .panel.left p,
section.readyToRace .container-wrapper .wrapper .panel.left p,
section.readyToRaceSolutions .container-wrapper .wrapper .panel.left p {
    width: 75%;
}
section.techPower .container-wrapper .wrapper .panel.right h2,
section.readyToRace .container-wrapper .wrapper .panel.right h2,
section.readyToRaceSolutions .container-wrapper .wrapper .panel.right h2 {
    font-size: 2.5rem;
}
.partnerLogos {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    margin-top: 1rem;
    text-align: center;
}
.partnerLogos img.partner {
    width: 60% !important;
}

/*.logo-container {
    position: absolute;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -3rem;
    right: -10rem;
}*/

.form-control {
    color: #ffffff !important;
}

.brand-logo {
    width: 65% !important;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    opacity: 0;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 8px white);
}

.transform-salt1 {
    font-feature-settings: "salt" 1;
}
.transform-salt2 {
    font-feature-settings: "salt" 2;
}
.transform-salt3 {
    font-feature-settings: "salt" 3;
}
.transform-salt4 {
    font-feature-settings: "salt" 4;
}
.transform-salt5 {
    font-feature-settings: "salt" 5;
}
.pt-7{
    padding-top: 7rem !important;
}
.blue{
    color: rgba(21, 27, 195, 1);
}
.blue-opacity {
    color: rgba(21, 27, 195, 1);
    background: linear-gradient(to right, rgba(21, 27, 195, 1) 0%, rgba(21, 27, 195, 1) 70%, rgba(21, 27, 195, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-center{
    text-align: center;
}
.owl-stage-outer {
    transform: translate(3rem, 1%) skew(10.0002deg, 0deg) !important;
}
.owl-nav {
    position: absolute;
    top: 50%;
    width: 96%;
    left: -1rem;
    display: grid;
    grid-template-columns: 1fr auto;
    transform: translate(34px, 8%) skew(11deg, 0deg);
}
.owl-dots {
    text-align: center;
    padding: 2rem 0 2rem 0;
    transform: translate(34px, 8%) skew(11deg, 0deg);
}
.owl-dot {
    border-radius: 50%;
    height: 10pt;
    width: 10pt;
    padding: 0;
    border: 2px solid rgba(21, 27, 195, 1) !important;
    background-color: transparent;
    margin: 0 .3rem;
}
.owl-dot.active {
    background-color: rgba(21, 27, 195, 1) !important;
}

.owl-next {
    background-color: transparent;
    border: none;
    text-align: right;
}

.owl-prev {
    background-color: transparent;
    border: none;
    text-align: left;
}

@media (max-width: 575px) {
    .partnerLogos {
        font-size: 12pt !important;
        margin-top: 7.5rem !important;
        align-items: center;
    }
    .partnerLogos img.partner {
        margin-top: 1.5rem !important;
    }
    .solutionsBanner h1 {
        font-size: 1.4rem !important;
    }
    #scrollTitle2 {
        font-size: 16pt !important;
    }
    #coreTechPartnersTitle {
        font-size: 12pt !important;
    }
    .owl-item p {
        font-size: 10pt !important;
    }
    #techPower p{
        font-size: 8pt !important;
    }
    #techPower .owl-nav {
        top: 90% !important;
        /*left: 3rem !important;*/
    }
    .owl-stage-outer {
        transform: unset !important;
    }
    .owl-carousel.techPartnersCarousel {
        transform: unset !important;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)) !important;
    }
    .owl-dots {
        transform: unset !important;
    }
    .owl-nav {
        transform: unset !important;
        width: 100%;
        left: 0;
    }
    .takingLeadContainer h4 {
        font-size: 6pt !important;
    }
    #takingLead #scrollTitle4 {
        font-size: 16pt !important;
    }
    #takingLead p {
        font-size: 9pt !important;
    }
    #scrollTitle3 {
        font-size: 16pt !important;
    }
    .box .footer {
        /*font-size: 8pt !important;
        padding: 1rem .1rem !important;
        height: 220px !important;
        top: 3rem !important;*/
    }
    .brand-logo {
        width: 35% !important;
        top: 1.5rem;
        right: 5px;
        position: fixed;
    }
    .owl-nav img {
        width: 24px !important;
        height: 24px !important;
    }
    .owl-dot {
        height: 6pt !important;
        width: 6pt !important;
    }
    .owl-dots {
        padding: 1rem 0 1rem 0 !important;
    }
    .owl-nav {
        /*left: 0rem !important;*/
    }
    .partnerSection {
        margin-top: 2rem !important;
    }
    .takingLeadContainer .wrapper {
        gap: 0.2rem !important;
        padding: 0 0.4rem !important;
    }
    #techPower .row {
        /*padding-right: .5rem !important;
        padding-left: .5rem !important;*/
    }
    #techPower p {
        font-size: 12pt !important;
    }
    .owl-item .ps-4 {
        padding-left: 0.8rem !important;
    }
    .pt-7{
        padding-top: 7rem !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .solutionsBanner h1 {
        font-size: 2.5rem !important;
    }
    #scrollTitle2 {
        font-size: 30pt !important;
    }
    #coreTechPartnersTitle {
        font-size: 20pt !important;
    }
    .owl-item h2 {
        font-size: 14pt !important;
    }
    .owl-item p {
        font-size: 12pt !important;
    }
    #techPower p{
        font-size: 12pt !important;
    }
    #techPower .owl-nav {
        top: 57% !important;
        /*left: 3rem !important;*/
    }
    .takingLeadContainer h4 {
        font-size: 8pt !important;
    }
    #takingLead #scrollTitle4 {
        font-size: 30pt !important;
    }
    #takingLead p {
        font-size: 12pt !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .solutionsBanner h1 {
        font-size: 3rem !important;
    }
    #scrollTitle2 {
        font-size: 42pt !important;
    }
    #coreTechPartnersTitle {
        font-size: 30pt !important;
    }
    .owl-item h2 {
        font-size: 18pt !important;
    }
    .owl-item p {
        font-size: 16pt !important;
    }
    #techPower .owl-nav {
        top: 57% !important;
        /*left: 3rem !important;*/
    }
    .takingLeadContainer h4 {
        font-size: 12pt !important;
    }
    #takingLead #scrollTitle4 {
        font-size: 42pt !important;
    }
    #takingLead p {
        font-size: 16pt !important;
    }
    #scrollTitle3 {
        font-size: 42pt !important;
    }
}

@media (min-width: 1200px) {
    .solutionsBanner h1 {
        font-size: 6rem !important;
    }
    #scrollTitle2 {
        font-size: 4.5rem !important;
    }
    #coreTechPartnersTitle {
        font-size: 2.5rem !important;
    }
    #techPower p {
        /*font-size: 18pt !important;*/
    }
    #techPower .owl-nav {
        top: 57% !important;
        /*left: 3rem !important;*/
    }
    #takingLead #scrollTitle4 {
        font-size: 4.5rem !important;
    }
    #takingLead p {
        font-size: 1.25rem !important;
    }
}
