/* .typical-clients {
    --Typical-Clients-Horisontal-Padding: var(--Side-Padding-Large);
    padding: 72px var(--Typical-Clients-Horisontal-Padding) 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 64px;
    flex: 1 0 0;
    color: var(--Colors-Main-Dark);

    .typical-clients-title {
        font-size: 40px;
        font-weight: 700;
        line-height: 56px;
        text-align: right;
    }

    .typical-clients-list {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 16px;
        align-self: stretch;

        .customer-card {
            display: flex;
            padding: 64px 48px;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            flex: 1 0 0;
            align-self: stretch;
            border-radius: 40px;
            background-color: var(--Local-Colors-Light-Grey);

            .customer-img {
                max-width: 213px;
                max-height: 223px;
            }

            .customer-description-block {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 12px;
                align-self: stretch;

                .customer-title {
                    font-size: 24px;
                    font-weight: 600;
                    line-height: 32px;
                    text-align: center;
                }

                .customer-description {
                    font-size: 14px;
                    font-weight: 600;
                    line-height: 20px;
                    text-align: center;
                }
            }
        }
    }

    @media screen and (max-width: 1280px) {
        padding-bottom: 104px;
    }

    @media screen and (max-width: 1140px) {
        --Typical-Clients-Horisontal-Padding: 40px;
    }

    @media screen and (max-width: 1080px) {
        .typical-clients-list {

            .customer-card {
                padding: 48px 32px;
                gap: 32px;
            }
        }
    }

    @media screen and (max-width: 940px) {
        .typical-clients-list {
            flex-direction: column;

            .customer-card {
                padding: 48px 64px;
            }
        }
    }

    @media screen and (max-width: 560px) {
        --Typical-Clients-Horisontal-Padding: 30px;
    }

    @media screen and (max-width: 420px) {
        --Typical-Clients-Horisontal-Padding: 20px;
        gap: 48px;

        .typical-clients-title {
            font-size: 32px;
            line-height: 44px;
        }

        .typical-clients-list {

            .customer-card {
                padding: 32px;

                .customer-description-block {
                    .customer-title {
                       font-size: 20px;
                        line-height: 28px; 
                    }
                    
                    .customer-description {
                        font-size: 14px;
                        line-height: 20px;
                    }
                }
            }
        }
    }
} */

.typical-clients {
    --Typical-Clients-Horisontal-Padding: var(--Side-Padding-Large);
    padding: 72px var(--Typical-Clients-Horisontal-Padding) 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 64px;
    flex: 1 0 0;
    color: var(--Colors-Main-Dark);
}
.typical-clients .typical-clients-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    text-align: right;
}
.typical-clients .typical-clients-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}
.typical-clients .typical-clients-list .customer-card {
    display: flex;
    padding: 64px 48px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 40px;
    background-color: var(--Local-Colors-Light-Grey);
}
.typical-clients .typical-clients-list .customer-card .customer-img {
    max-width: 213px;
    max-height: 223px;
}
.typical-clients .typical-clients-list .customer-card .customer-description-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}
.typical-clients .typical-clients-list .customer-card .customer-description-block .customer-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
}
.typical-clients .typical-clients-list .customer-card .customer-description-block .customer-description {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
}
@media screen and (max-width: 1280px) {
    .typical-clients {
        padding-bottom: 104px;
   }
}
@media screen and (max-width: 1140px) {
    .typical-clients {
        --Typical-Clients-Horisontal-Padding: 40px;
   }
}
@media screen and (max-width: 1080px) {
    .typical-clients .typical-clients-list .customer-card {
        padding: 48px 32px;
        gap: 32px;
   }
}
@media screen and (max-width: 940px) {
    .typical-clients .typical-clients-list {
        flex-direction: column;
   }
    .typical-clients .typical-clients-list .customer-card {
        padding: 48px 64px;
   }
}
@media screen and (max-width: 560px) {
    .typical-clients {
        --Typical-Clients-Horisontal-Padding: 30px;
   }
}
@media screen and (max-width: 420px) {
    .typical-clients {
        --Typical-Clients-Horisontal-Padding: 20px;
        gap: 48px;
   }
    .typical-clients .typical-clients-title {
        font-size: 32px;
        line-height: 44px;
   }
    .typical-clients .typical-clients-list .customer-card {
        padding: 32px;
   }
    .typical-clients .typical-clients-list .customer-card .customer-description-block .customer-title {
        font-size: 20px;
        line-height: 28px;
   }
    .typical-clients .typical-clients-list .customer-card .customer-description-block .customer-description {
        font-size: 14px;
        line-height: 20px;
   }
}
