html {
    font-family: "Ubuntu" , sans-serif;
    font-weight: 400;
}


body {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    min-height: 100vh;
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-width: 375px;
}

.conteiner ,
.header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1215px;
    margin: 0 auto;
    padding: 0 0;
    border-bottom: 2px solid #858E8A;
}

.container,
.article {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 15px;
}


.header { 
    padding: 30px 0;
}

.tel {
    font-family: "Ubuntu" , sans-serif;
    font-weight: 300;
    color: #858E8A;
    letter-spacing: 0.04em;
    margin: 0 0 8px;
    text-align: right;
}

.header__tel-text {
    margin: 0 0 8px;
    font-size: 14px;
}


.header__tel-link {
    color: #2C332F;
    text-decoration: none;
    font-weight: 500;
    text-align: right;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}

.header__tel-link:hover {
    color: #3596ed;
}

.text {
    font-family: "Ubuntu" , sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #2C332F;
}

a {
    text-decoration: none;
}

a:focus-visible , button:focus-visible {
    outline: 2px solid #3596ed;
    outline-offset: 1px;
}

.button:active {
    background-color: #135a98;
}

.title-medium {
    font-family: "Oswald" , sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 115%;
    text-transform: uppercase;
    color: #2C332F;
}

.decor::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: calc(50% - 250px);
    height: 48px;
    background: url("../img/decor-icon.svg") repeat-x;
}

img {
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (width <= 992px) {
    .container {
        max-width: 768px;
    }
}

@media (width <= 768px) {
    .block-hero-1 {
        max-width: 576px;
    }
    
    .title-large {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .home-page .title-large {
        text-align: center;
        max-width: inherit;
    }

    .title-medium {
        font-size: 22px;
    }
}

@media (width <= 576px) {
    .section {
        margin-bottom: 80px;
    }
    
    .title-large {
        font-size: 32px;
    }

    .title-medium {
        font-size: 18px;
    }
}