* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
}
.container__inner {
    width: min(90%, 960px);
    margin-inline: auto;
    padding: clamp(64px, 17vw, 96px) 0;
}

.logo {
    width: min(60%, 320px);
    margin-inline: auto;
    margin-bottom: 40px;
}
.brand-logo-black {
    fill: #112a33;
}
.brand-logo-violet {
    fill: #7000fa;
}
.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}
.title__main {
    letter-spacing: 0.16em;
    font-size: clamp(32px, 8.8vw, 48px);
}
.title__sub {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.text {
    display: flex;
    flex-direction: column;
    row-gap: 1em;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0.05em;
}
.contact {
    padding: clamp(24px, 6.6vw, 40px);
    border-radius: clamp(16px, 4.4vw, 24px);
    background-color: #ebf1f9;
    margin-top: 40px;
}
.contact__title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.8em;
}
.contact__text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0.05em;
}
.contact__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(80%, 280px);
    height: 64px;
    border-radius: 99em;
    color: #ffffff;
    background-color: #7000fa;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    margin: 40px auto 0;
    transition: background-color ease 0.4s;
}
.contact__button:hover {
    background-color: #112a33;
}
.copy-right {
    display: block;
    margin-top: 40px;
    text-align: center;
}
