/*@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');*/

* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-y: scroll;
    overflow-x: hidden;
}

.header {
    background-image: url('assets/header-background.png');
    background-size: cover;
    overflow: hidden;
    position: relative;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    width: 100%;
}

.header-star1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 95px;
    height: 104px;
}

.header-star2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 119px;
    height: 125px;
}

.header-heart {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(-7deg);
    width: 164px;
    height: 164px;
}

.header-logo {
    position: absolute;
    width: 134px;
    height: 43px;
    top: 64px;
    left: 25px;
}

.header-content {
    position: absolute;
    left: 24px;
    top: 171px;
}

.header-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 130%;
}

.header-description {
    font-size: 22px;
    font-weight: 400;
}

.content {
    position: relative;
}

.content-block {
    position: relative;
    background-color: #EEF3FF;
    border-radius: 24px;
    padding: 20px;
    margin: 24px;
    font-weight: 400;
    font-size: 18px;
    z-index: 15;
}

.cross-grad {
    position: absolute;
    background-image: url('./assets/cross-grad.png');
    background-size: cover;
    width: 540px;
    height: 540px;
    right: 0;
    top: 0;
    transform: translateX(60%);
    z-index: 0;
}

.light-green-grad {
    position: absolute;
    background-image: url('./assets/light-green-grad.png');
    background-size: cover;
    width: 640px;
    height: 640px;
    left: 0;
    top: 700px;
    transform: translateX(-50%);
    z-index: 0;
}

.content-block ol li::marker {
    font-size: 38px;
    font-weight: 600;
    content: counter(item) " ";
}

.content-title {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    margin: 60px 24px 24px;
    z-index: 5;
}

.content-list-marker {
    vertical-align: top;
    font-size: 38px;
    font-weight: 600;
    padding: 0;
}

.content-list-item {
    padding-left: 12px
}

.footer {
    margin-top: 60px;
    position: relative;
    margin-bottom: 48px;
}

.footer-title {
    width: 259px;
    font-weight: 600;
    font-size: 22px;
    margin-left: 24px;
}

.footer-logo {
    width: 134px;
    height: 43px;
}

.footer-content {
    width: 137px;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
}

.footer-row {
    display: flex;
    margin: 24px 0 24px 24px;
    gap: 20px;
    align-items: center;
}

.footer-heart {
    width: 99px;
    height: 99px;
    transform: rotate(7deg);
    background-image: url('./assets/footer-heart-small.png');
    background-size: cover;
    position: absolute;
    right: 40px;
    bottom: 70px;
    z-index: 10;
}

.footer-heart-grad {
    position: absolute;
    background-image: url("./assets/dark-green-grad.png");
    background-size: cover;
    width: 420px;
    height: 420px;
    transform: translate(calc(50px - 50%), calc(40px - 50%));
    z-index: 0;
}

/*@media (max-width: 430px) {*/
    .header {
        height: 500px;
    }

/*}*/

@media (min-width: 431px) and (max-width: 800px) {
    /*.header {*/
    /*    height: 600px;*/
    /*}*/
    .footer-title {
        width: 546px;
    }
    .footer-heart {
        bottom: -30px;
    }
}

@media (min-width: 801px) {
    /*.header {*/
    /*    height: 690px;*/
    /*}*/
    .footer-title {
        width: 1040px;
    }
    .footer-heart {
        bottom: -30px;
    }
}