/* General */
:root {
    --primary-color: #4694DC;
    --secondary-color: #9CA3AF;
}

html {
    box-sizing: border-box;
}

*,
::before,
::after {
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 880px;
    margin: 0 auto;
}

h1 {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: 35px;
}

.text-h2 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3.3px;
}

.text-h3 {
    font-size: 12px;
    font-weight: 500;
    line-height: 26px;
}

.text-p {
    font-size: 16px;
    color: var(--secondary-color);
    line-height: 24px;
    max-width: 465px;
}

/* Header */
.header {
    background-color: var(--primary-color);
}

.content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 121px 156px 122px;
}

.content__title>p {
    color: #fff;
    max-width: 437px;
    margin-bottom: 46px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 194px;
    height: 60px;
    color: #000;
    background-color: #fff;
    text-decoration: none;
}

/* Services */
.services {
    padding: 100px 0 194px;
}

.services__title {
    text-align: center;
    margin-bottom: 123px;
}

.services__title-h2 {
    margin-bottom: 24px;
}

.services__title-p {
    margin: 0 auto;
    letter-spacing: 0.04em;
}

.services__items {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.services__items-icons {
    max-width: 280px;
    width: 100%;
}

.services__items-icons>img {
    display: block;
    width: 46px;
    height: 46px;
    margin: 0 auto 33px;
}

.services__items-icons>p {
    text-align: center;
}

/* members */

.members {
    padding-bottom: 100px;
}

.members__title {
    margin-bottom: 80px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-left: 20px;
}

.card__items {
    max-width: 260px;
    width: 100%;
    height: 76px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    box-shadow: 0 4px 70px 0 rgb(91, 93, 99, 0.06);
}

.card__items-list>p {
    color: var(--secondary-color);
    font-size: 11px;
    font-style: italic;
    line-height: 19px;

}