:root {
    --montserrat: 'montserrat', sans-serif;
    --ysabeau: 'ysabeau', sans-serif;
    --max-width: 350px;
}

html {
    font-size: 16px;
    font-family: var(--montserrat);
}

body {
    margin: 0;
    padding: 0;
    background-color: #eee;
    display: flex;
    flex-direction: column;
    padding-block-start: 59px;
    padding-block-end: 46px;
    padding-inline: 33px;
    align-items: center;
}

* {
    box-sizing: border-box;
}
h1, h2, h3, h4, h5 {
    margin: 0;
}

figure {
    margin: 0;
    padding: 0;
}

a, a:link, a:visited {
    text-decoration: none;
}

.www {
    width: min(var(--max-width), 100%);
}

.section {
    width: min(var(--max-width), 100%);
    margin-inline: auto;
}

.section-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.section-call {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.logo {
    display: block;
    width: 152px;
    height: 132px;
    position: relative;
    margin-block-end: 15px;
}

.logo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0px 4px 4px #00000040);
}

.title {
    font-family: var(--ysabeau);
    font-size: 11px;
    margin-block-start: 33px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-align: center;
    user-select: none;
}

.btn {
    padding: 12px 16px;
    margin: 0;
    position: relative;
    display: block;
    border: none;
    cursor: pointer;
    border-radius: 10em;
    font-family: var(--montserrat);
    color: #000;
    background-color: #D9D9D9;
    width: 100%;
    font-size: 16px;
    display: flex;
    min-height: 53px;
}

.btn-icon {
    position: relative;
    width: 30px;
    height: 30px;
    user-select: none;
}

.btn-icon img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.btn-text {
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.btn-accent {
    color: #fff;
    background: linear-gradient(to top, #749A96, #95B2AF);
    letter-spacing: 0.07em;
    justify-content: center;
    align-items: center;
}

.btn-phone {
    font-weight: 400;
}

.btn-phone .btn-text {
    text-shadow: 0px 4px 4px #00000040;
}

.btn-link {
    font-weight: 500;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.btn-link::before {
    content: '';
    display: block;
    inset: 0;
    position: absolute;
    background-image: url('./assets/img/btn-bg.jpg');
    background-size: cover;
    background-position-x: center;
    opacity: 0.35;
    filter: blur(4px);
}

.section-links .www:nth-child(2) .btn-link::before {
    background-position-y: calc(25% - 0 * 60px);
}

.section-links .www:nth-child(3) .btn-link::before {
    background-position-y: calc(25% - 1 * 60px);
}

.section-links .www:nth-child(4) .btn-link::before {
    background-position-y: calc(25% - 2 * 60px);
}

.section-links .www:nth-child(5) .btn-link::before {
    background-position-y: calc(25% - 3 * 60px);
}

.section-links .www:nth-child(6) .btn-link::before {
    background-position-y: calc(25% - 4 * 60px);
}

.section-links .www:nth-child(7) .btn-link::before {
    background-position-y: calc(25% - 5 * 60px);
}