.trust {
    padding: 100px 12px;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.trust-logos {
    position: relative;
    overflow: visible;
}

#trustParallaxLogo {
  display: block;
  will-change: transform;
}

.trust-logos img:first-child {
    max-width: 520px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.trust-logos img:last-child {
    position: absolute;
    top: 30%;
    right: -16px;
    max-width: 410px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.trust-stats {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 44%;
    overflow: hidden;
}

.trust-title {
    font-size: 52px;
    font-weight: bold;
    opacity: 0;
    transform: translateX(80px);
    transition: transform .8s cubic-bezier(.22,.61,.36,1), opacity .6s ease;
    will-change: transform, opacity;
}

.trust-title.in-view {
  opacity: 1;
  transform: translateX(0);
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.trust-stat {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.trust-stat h3 {
    text-align: left;
    font-family: "Inter", Sans-serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #FB3E37;
    max-width: 90px;
}

.trust-stat h4 {
    color: #000000;
    font-family: "Inter", Sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.05em;
    letter-spacing: -1.8px;
}

.trust-contacts {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 32px;
}

.trust-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fb3e37;
    color: #fff;
    font-size: 15px;
    font-family: Inter;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 8px;
    text-transform: uppercase;
    width: 40%;
    border-radius: 3px;
}

.trust-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #000;
    font-size: 15px;
    font-family: Inter;
    font-weight: 700;
    gap: 8px;
    padding: 16px 24px;
    text-decoration: none;
    width: 40%;
    border-radius: 3px;
}

.call-us-icon svg {
    max-width: 15px;
    max-height: 15px;
    width: 100%;
    height: 100%;
    fill: #fff;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .trust-logos img:first-child {
        display: none;
    }
    #trustParallaxLogo {
        position: relative;
        top: 30%;
        left: 0;
    }
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-stat {
        padding: 0;
    }
    .trust-stat h4 {
        font-size: 42px;
    }
    .trust-title {
        font-size: 42px;
    }
    .trust-contacts {
        justify-content: space-between;
        gap: 8px;
    }
    .trust-btn {
        width: 50%;
        padding: 16px 18px;
    }
    .trust-phone {
        width: 50%;
        padding: 16px 18px;
    }
}

@media (max-width: 767px) {
    .trust {
        padding: 50px 12px;
    }
    .trust-container {
        flex-direction: column;
        align-items: center;
    }
    #trustParallaxLogo {
        display: none;
    }
    .trust-stats-grid {
        gap: 0;
    }
    .trust-stats {
        max-width: 100%;
    }
    .trust-stat {
        padding: 8px;
    }
    .trust-title{
        font-size: 8.4vw;
        max-width: 78%;
        text-align: center;
        margin: 0 auto;
    }
    .trust-stat h4 {
        font-size: 8.4vw;
        letter-spacing: normal;
    }
    .trust-stat h3 {
        font-size: 3.4vw;
        max-width: 18.6vw;
    }
    .trust-contacts {
        justify-content: space-between;
        gap: 8px;
    }
    .trust-btn,
    .trust-phone {
        width: 50%;
        font-size: 3.4vw;
    }
}