/* start: Trusted */
.trusted-companies-logo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.trusted-companies-logo> * {
    text-align: center;
}
.trusted-companies-logo img {
    height: 48px;
    width: 100%;
    object-fit: contain;
}
/* end: Trusted */



/* start: Context */
.scale-section,
.context-section {
    padding-bottom: 0;
}
.scale-image,
.context-image {
    position: relative;
    top: 20px;
}
/* end: Context */



/* start: Connects */
.connect-section {
    padding: 100px 0;
}
.connect-images {
    position: relative;
    overflow: hidden;
}
.connect-images::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: linear-gradient(180deg, transparent, #f1f5f9);
    z-index: 1;
    pointer-events: none;
}
.connect-images img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    padding: 20px;
    background-color: var(--bs-white);
    border-radius: 24px;
    box-shadow: 0 16px 16px -8px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
    transition: background-color .2s;
}
.connect-images > * {
    text-align: center;
}
.connect-images a {
    display: block;
    text-decoration: none;
    margin-bottom: 24px;
    margin-right: 32px;
    font-size: 12px;
    color: var(--bs-gray-500);
    font-weight: 500;
    transition: transform .2s;
}
.connect-images a:hover {
    transform: scale(1.05);
}
.connect-images a:hover img {
    background-color: rgba(255,251,235,.8);
}
/* Faded placeholder projects */
.faded-projects .placeholder-project {
    opacity: 0.3;
    pointer-events: none;
}
.faded-projects .placeholder-project img {
    filter: grayscale(100%);
}
.faded-projects .placeholder-project:hover {
    transform: none;
}
/* end: Connects */



/* start: Focus */
.focus-section {
    background-color: #0a132e;
}
.focus-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    font-size: 24px;
    margin-bottom: 24px;
}
.focus-wrapper .link-primary {
    color: #5b7fed;
}
.focus-wrapper .link-primary:hover {
    color: #849ff1 !important;
}
/* end: Focus */



/* start: Case Study */
.case-video {
    height: 360px;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.case-video > * {
    transition: transform .2s;
}
.case-video:hover > * {
    transform: scale(1.1);
}

/* Register Interest Form */
.register-interest-form {
    background-color: var(--bs-white);
    border: 1px solid var(--bs-gray-200);
}
.register-interest-form h3 {
    color: var(--bs-primary);
    font-weight: 600;
}

/* Thank You Page */
.thank-you-message {
    background-color: var(--bs-white);
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}
.submission-details {
    text-align: left;
    border: 2px solid var(--bs-primary);
    border-radius: 12px;
}
.submission-details h5 {
    color: var(--bs-primary);
    border-bottom: 1px solid var(--bs-gray-300);
    padding-bottom: 8px;
}
/* end: Case Study */



/* start: Customer */
.customer-item-quote {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    background-color: var(--bs-white);
}
.customer-item-text {
    font-family: 'Crimson Pro', serif;
}
.customer-item-user {
    text-indent: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.customer-item-company {
    height: 20px;
}
/* end: Customer */



/* start: Blog */
.blog-item-user {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}
/* end: Blog */



/* start: Discover */
.discover-section {
    padding: 0;
    background-image: none;
}
.discover-testimonial-wrapper {
    min-height: 200px;
}
.discover-testimonial {
    display: none;
}
.discover-testimonial img {
    width: 64px;
}
.discover-text {
    background-color: var(--bs-primary);
    box-shadow: 12px 0 0 var(--bs-primary), -12px 0 0 var(--bs-primary);
}
.discover-testimonial-indicator {
    display: flex;
    align-items: center;
    gap: 24px;
}
.discover-testimonial-indicator > * {
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, .3);
    position: relative;
    overflow: hidden;
}
.discover-testimonial-indicator > ::before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, .7);
    transition: width 0s;
}
.discover-testimonial-indicator > .active::before {
    transition: width 8s linear;
    width: 100%;
}
.discover-video {
    width: 100%;
    height: 250px;
}
/* end: Discover */







/* start: Breakpoints */
@media (min-width: 576px) {
    
}

@media (min-width: 768px) {
    .trusted-companies-logo {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .trusted-companies-logo img {
        width: 80%;
    }
}

@media (min-width: 992px) {
    .trusted-companies-logo {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .connect-images > * {
        margin-left: 32px;
    }
    .connect-images a {
        margin-right: 0;
    }
    .connect-images::before {
        left: unset;
        bottom: 0;
        right: 0;
        width: 300px;
        height: 100%;
        background-image: linear-gradient(90deg, transparent, #f1f5f9 70%);
        pointer-events: all;
    }

    .discover-section {
        background-image: linear-gradient(90deg, var(--bs-primary) 50%, transparent 50%);
    }
}

@media (min-width: 1200px) {
    .trusted-companies-logo {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}

@media (min-width: 1400px) {
    
}
/* end: Breakpoints */