:root{
    --part: 1;
}

/* подготовка стилей */
* {
    box-sizing: border-box;
    font-family: 'Roboto',Arial,sans-serif;
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
}
html {
    Width: 100%;
    max-width: 100vw;
}
body {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    font-size: 16px;
}
section {
    display: block;
}
pb-block {
    display: inline-block;
}
h1, h2, h3, h4, h5, h6 {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    padding: 0 0.5em;
    text-align: center;
    letter-spacing: 0.9px;
    line-height: 1.25;
}
h1, h2, h3 { font-weight: normal; }
h4, h5, h6 { font-weight: bold; }
h1 { font-size: 2em; }
h2 { font-size: 1.75em; }
h3 { font-size: 1.5em; }
h4 { font-size: 1.25em; }
h5 { font-size: 1em; }
h6 { font-size: 0.75em; }

a, p {
    display: inline-block;
    margin: 0;
    padding: 0;
}

/* -------------------------------- Flexes */

[data-esb~="center"] {
	justify-content: center;
}
[data-esb~="evenly"] {
    justify-content: space-evenly;
}
[data-esb~="around"] {
    justify-content: space-around;
}
/* flex of 2 colomns */
[data-esb~="flex-2"] {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}
[data-esb~="flex-2"] > esb-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    text-align: center;
}
@media (min-width: 901px) {
    [data-esb~="flex-2"] > esb-block {
        max-width: 45%;
    }
}
@media (max-width: 900px) {
    [data-esb~="flex-2"] > esb-block {
        max-width: 95%;
    }
}

/* -------------------------------- headers */

/* header 1 */
[data-esb~="header-1"] {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-content: stretch;
    align-items: stretch;
    text-align: center;
    margin: 0 auto;
    padding: 1em 0;
    width: 100%;
    border: none;
}
[data-esb~="header-1"] > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}
[data-esb~="header-1"] a {
    text-decoration: none;
    font-size: 1.25em;
    color: black;
}
@media (min-width: 901px) {
    [data-esb~="header-1"] > div:nth-child(1),
    [data-esb~="header-1"] > div:nth-child(3) {
        width: 25%;
    }
    [data-esb~="header-1"] > div:nth-child(2) {
        width: 50%;
    }
}
@media (min-width: 451px) and (max-width: 900px) {
    [data-esb~="header-1"] > div:nth-child(1),
    [data-esb~="header-1"] > div:nth-child(3) {
        width: 50%;
    }
    [data-esb~="header-1"] > div:nth-child(2) {
        width: 100%;
        order: 3;
    }
}
@media (max-width: 450px) {
    [data-esb~="header-1"] > div:nth-child(1),
    [data-esb~="header-1"] > div:nth-child(2),
    [data-esb~="header-1"] > div:nth-child(3) {
        width: 100%;
    }
    [data-esb~="header-1"] > div:nth-child(3) {
        padding-top: 1em;
    }
}

/* -------------------------------- heros */

/* heros 1 */
[data-esb~="hero-1"] {
    padding: 1em 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    font-size: 1.25em;
    color: #fff;
}
[data-esb~="hero-1"] h2,
[data-esb~="hero-1"] h3 {
    margin: 1em 0;
}
@media (max-width: 450px) {
    [data-esb~="hero-1"] {
        font-size: inherit;
    }
}

/* heros 2 */
[data-esb~="hero-2"] {
    padding: 1em 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: #fff;
}
[data-esb~="hero-2"] > div {
    align-items: center;
}
[data-esb~="hero-2"] > div > div {
    width: 50%;
}
[data-esb~="hero-2"] h2 {
    color: rgb(255, 223, 108);
    font-size: 2.5em;
    font-weight: 300;
    margin: 1em 0;
}
[data-esb~="hero-2"] esb-block {
    align-items: flex-start;
    margin: 1em 0 2em;
}
[data-esb~="hero-2"] esb-block > p {
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: 300;
    padding: 0.5em 0;
    width: 2.5em;
}
[data-esb~="hero-2"] esb-block div {
    display: inline-block;
    width: 75%;
}
[data-esb~="hero-2"] esb-block div h4 {
    margin: 1em 0;
    width: 100%;
}
[data-esb~="hero-2"] esb-block div p {
    text-align: left;
    font-size: 1.25em;
    margin-bottom: 1em;
    width: 100%;
}
[data-esb~="hero-2"] div img {
    margin-bottom: 2em;
    width: 50%;
}
@media (max-width: 900px) {
    [data-esb~="hero-2"] > div > div {
        width: 90%;
    }
}
@media (max-width: 450px) {
    [data-esb~="hero-2"] esb-block {
        flex-direction: column;
        align-items: center;
    }
    [data-esb~="hero-2"] esb-block div {
        width: 100%;
    }
    [data-esb~="hero-2"] div img {
    	width: 90%;
    }
}

/* heros 3 */
[data-esb~="hero-3"] {
    padding: 1em 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: #006086;
}
[data-esb~="hero-3"] > div {
    align-items: center;
}
[data-esb~="hero-3"] > div > div {
    width: 40%;
}
[data-esb~="hero-3"] h2 {
    font-weight: 300;
    margin: 1em 0;
}
[data-esb~="hero-3"] p {
    font-size: 1.5em;
}
[data-esb~="hero-3"] h3 {
    margin: 1em 0px;
}
[data-esb~="hero-3"] div img {
    margin-bottom: 2em;
    width: 75%;
}
@media (max-width: 730px) {
    [data-esb~="hero-3"] > div > div {
        width: 90%;
    }
}
@media (max-width: 450px) {
    [data-esb~="hero-3"] div img {
    	width: 90%;
    }
}

/* -------------------------------- advantages */

/* advantage 1 */
[data-esb~="advantage-1"] {
    padding: 1em 0;
    color: rgb(12, 52, 61);
}
[data-esb~="advantage-1"] > * {
    margin: 1em 0px;
}
[data-esb~="advantage-1"] > h2 {
    font-size: 2em;
}
[data-esb~="advantage-1"] > :nth-child(2) > esb-block {
    flex-direction: column;
    background-color: rgba(245, 250, 255, 0.75);
    box-shadow: 0 0 1em #fff;
    border: 1px solid #ddd;
    margin: 1em 0;
    padding: 1em;
    width: 450px;
}
[data-esb~="advantage-1"] > :nth-child(3) esb-block {
    align-content: center;
    min-width: 320px;
    max-width: 500px;
    margin: 2em 0;
}
[data-esb~="advantage-1"] > :nth-child(3) esb-block img {
    border: 1px solid rgb(12, 52, 61);
    border-radius: 50%;
    height: 150px;
    width: 150px;
}
[data-esb~="advantage-1"] > :nth-child(3) esb-block div {
    width: 300px;
}
[data-esb~="advantage-1"] > :nth-child(3) esb-block h4 {
    margin: 0.5em 0;
}

/* advantage 2 */
[data-esb~="advantage-2"] {
    background-attachment: fixed;
    padding: 1em 0;
}
[data-esb~="advantage-2"] h2 {
    margin: 1em 0;
}
[data-esb~="advantage-2"] > p {
    text-align: center;
    padding: 0 1em;
    width: 100%;
}
[data-esb~="advantage-2"] > div {
    margin: 2em 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
[data-esb~="advantage-2"] > div > div {
    padding: 2em 2em 2em 3em;
}
body {
    counter-reset: advantage1;
}
[data-esb~="advantage-2"] > div h4 {
    color: rgb(102, 0, 0);
    margin-bottom: 0.5em;
}
[data-esb~="advantage-2"] > div h4::before {
    counter-increment: advantage1;
    content: counter(advantage1);
    float: left;
    font-size: xx-large;
    filter: invert(75%);
}
[data-esb~="advantage-2"] > div p {
    color: rgb(12, 52, 61);
    font-weight: 600;
    width: 100%;
}
@media (max-width: 900px) {
    [data-esb~="advantage-2"] > div {
        grid-template-columns: 1fr 1fr;
    }
    [data-esb~="advantage-2"] > div > div {
        padding: 1em 1em 1em 2em;
    }
}
@media (max-width: 450px) {
    [data-esb~="advantage-2"] > div {
        grid-template-columns: 1fr;
    }
    [data-esb~="advantage-2"] > div > div {
        padding: 1em;
    }
}

/* -------------------------------- features */

/* feature 1 */
[data-esb~="feature-1"] {
    padding: 2em 0;
    background-attachment: fixed;
}
[data-esb~="feature-1"] esb-block {
    display: block;
    margin: 1em 0;
}
[data-esb~="feature-1"] img {
    border: 1px solid rgb(12, 52, 61);
    width: 125px;
}
[data-esb~="feature-1"] h3 {
    font-size: 1.25em;
    margin: 0.5em 0;
}
[data-esb~="feature-1"] > * {
    margin: 1em 0px;
    width: 100%;
}
[data-esb~="feature-1"] > * > * {
    width: 50%;
}
@media (max-width: 900px) {
    [data-esb~="feature-1"] > * > * {
    	width: 100%;
    }
    [data-esb~="feature-1"] esb-block {
    	width: 50%;
    }
}
@media (max-width: 450px) {
    [data-esb~="feature-1"] esb-block {
    	width: 100%;
    }
}

/* feature 2 */
[data-esb~="feature-2"] {
    background-attachment: fixed;
    padding: 2em 0;
}
[data-esb~="feature-2"] esb-block {
    display: block;
    margin: 1em 0;
}
[data-esb~="feature-2"] img {
    max-width: 75vw;
    width: 200px;
}
[data-esb~="feature-2"] h3 {
    font-size: 1.25em;
    margin: 0.5em 0;
}
[data-esb~="feature-2"] > * {
    margin: 1em 0px;
    width: 100%;
}
[data-esb~="feature-2"] > * > * {
    width: 50%;
}
@media (max-width: 900px) {
    [data-esb~="feature-2"] > * > * {
    	width: 100%;
    }
    [data-esb~="feature-2"] esb-block {
    	width: 50%;
    }
}
@media (max-width: 450px) {
    [data-esb~="feature-2"] esb-block {
    	width: 100%;
    }
}

/* -------------------------------- contents */

/* content 1 */
[data-esb~="content-1"] {
    padding: 2em 0 3em;
}
[data-esb~="content-1"] p {
    margin-bottom: 0.5em;
    font-size: 1.25em;
    font-weight: 300;
    text-align: left;
    text-indent: 1.5em;
}
[data-esb~="content-1"] h2 {
    margin: 1em 0px 1.25em;
    color: rgb(102, 0, 0);
}
[data-esb~="content-1"] img {
    max-width: 100%;
    width: 28em;
}
[data-esb~="content-1"] > div > div {
    width: 50%;
    padding: 1em;
    max-width: 45em;
}
[data-esb~="content-1"] > div:nth-child(odd) > div {
    text-align: left;
}
[data-esb~="content-1"] > div:nth-child(even) > div {
    text-align: right;
}
@media (max-width: 900px) {
    [data-esb~="content-1"] > div > div {
        width: 100%;
    }
    [data-esb~="content-1"] > div:nth-child(odd) > div:first-child {
        order: 1;
    }
}

/* -------------------------------- testimonials */

/* testimonials 1 */
[data-esb~="testimonials-1"] {
    background-attachment: fixed;
    padding: 1em 0;
}
[data-esb~="testimonials-1"] h2 {
    font-weight: 600;
    margin: 1em 0;
    color: #fff;
}
[data-esb~="testimonials-1"] img {
    box-shadow: 0 0 1em #555;
    border-radius: 25%;
    width: 100px;
}
[data-esb~="testimonials-1"] p {
    font-weight: 600;
    color: #fff;
    width: 100%;
}
[data-esb~="testimonials-1"] h4 {
    color: rgb(255, 242, 204);
    margin-top: 0.5em 0;
    text-align: left;
    width: 100%;
}
[data-esb~="testimonials-1"] > div {
    color: rgb(255, 242, 204);
    padding-left: 1em;
    margin: 2em 0;
    font-weight: 400;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
[data-esb~="testimonials-1"] > div > div {
    padding: 2em 2em 2em 3em;
}
@media (max-width: 900px) {
    [data-esb~="testimonials-1"] > div > div {
        padding: 1em;
    }
}
@media (max-width: 730px) {
    [data-esb~="testimonials-1"] > div {
        grid-template-columns: 1fr;
    }
    [data-esb~="testimonials-1"] img {
        margin-left: 2em;
    }
}

/* -------------------------------- footers */

/* footer 1 */
[data-esb~="footer-1"] {
    padding: 1em 0;
    font-weight: 300;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
[data-esb~="footer-1"] div {
}
[data-esb~="footer-1"] h6 {
    font-weight: 300;
    margin: 0.5em 0;
    color: #006086;
}
@media (max-width: 900px) {
    [data-esb~="footer-1"] div {
        width: 100%;
    }
}
