﻿

/* HERO START */


/*.hero {*/
/*    padding-top: 98px;*/
/*}*/
.hero {
    padding-top: calc(var(--header-height) + var(--hero-gap));
}
body.home .hero {
    --hero-gap: 28px;
}
.hero__wrapper {
    display: flex;
}
.hero__content {
    width: 50%;
}
.hero__title {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0.67em 0;
}
.hero__benefits {
    margin-top: 48px;
    display: flex;
    gap:16px;
    max-width: 560px;
}
.hero__benefit {
}
.hero__benefit-image {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
}
.hero__benefit-text {
    font-size: 18px;
    font-weight: 500;
}
.hero__btn {
    margin-top: 32px;
    display: block;
    max-width: 300px;
    color:#000;
    text-align: center;
}
.hero__image {
    width: calc(50% + 110px);
    margin-left: -100px;
    margin-right: -20px;
    /* width: 50%; */
}
.hero__image-main {
    padding-top: 60px;
    position: relative;
}
.hero__image-main img{
    position: relative;
    z-index: 1;
    scale: 1;
}
.hero__image-circle {
    background-image: url('../../img/yellow_circle.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 204px;
    height: 204px;
    position: absolute;
    bottom: 128px;
    right: 75px;
    z-index: 0;
}
.hero__image-dots {
    background-image: url('../../img/rectangle.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 231px;
    height: 224px;
    position: absolute;
    top:115px;
    left:80px;
    z-index: 0;
}
.hero__image-lines {
    background-image: url('../../img/yellow_lines.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 250px;
    height: 58px;
    position: absolute;
    top:115px;
    right: 120px;
    z-index: 0;
}
