.why-us {
    max-width: 1170px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0);
    padding: 100px 0;
}

.why-us__head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 64px;
}

.why-us__title {
    width: 586px;
    color: #585858;
    font-size: 48px;
    font-family: Poppins-SemiBold, sans-serif;
    letter-spacing: -2px;
    line-height: 140%;
}
.why-us__title span {
    color: #FB9333;
}

.why-us__description {
    font-family: Poppins-Medium, sans-serif;
    width: 470px;
    font-size: 20px;
    line-height: 180%;
    color: #828282;
}

.cards {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

@keyframes show-items {
    0% {
        opacity: 0;
        transform: translateY(200px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        transition: 2s;
    }
}

.cards__item {
    opacity: 0;
    width: 31%;
    height: 467px;
    border: #FB9333 1px solid;
    border-radius: 50px;
    padding: 30px;
    box-sizing: border-box;
    background: #ffffff;
    transition: all .3s !important;
}

.cards__item:hover {
    -webkit-box-shadow: 4px 4px 41px 21px rgba(232, 217, 195, 0.39);
    -moz-box-shadow: 4px 4px 41px 21px rgba(232, 217, 195, 0.39);
    box-shadow: 4px 4px 41px 21px rgba(232, 217, 195, 0.39);
    transform: scale(105%) !important;

}
.cards-button:hover  {
    color: white;
    background: url("../images/Arrow-Right-White.svg") no-repeat right, #FB9333;
    background-position-x: 110px;
}

.item1 {
    opacity: 0;
    transition: ease-in-out .5s;
    animation: show-items 1s;
    animation-fill-mode: forwards;
    animation-delay: .5s;
}

.item2 {
    opacity: 0;
    transition: ease-in-out .5s;
    animation: show-items 1s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
}

.item3 {
    opacity: 0;
    transition: ease-in-out .5s;
    animation: show-items 1s;
    animation-fill-mode: forwards;
    animation-delay: 1.5s;
}

.cards__logo {
    width: 122px;
    margin-bottom: 70px;
}

.cards__logo img {
    width: 100%;
}

.cards__title {
    font-family: Poppins-SemiBold, sans-serif;
    color: #2B2B2B;
    font-size: 24px;
}

.cards__text {
    color: #575757;
    font-size: 16px;
    font-family: Poppins-Regular, sans-serif;
    line-height: 180%;
    letter-spacing: -0.32px;
}

.cards-button {
    cursor: pointer;
    position: absolute;
    margin-top: 24px;
    display: flex;
    padding: 10px 36px 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    color: #575757;
    background: url("../images/Arrow-Right-Gray.svg") no-repeat right;
    background-position-x: 110px;
    transition: .3s;
}

