<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.auto-selection {
    --black: #2c2c2c;
    --dark: #131313;
    --red: #DA291C;
    --grey: #45464F;
    --grey2: #88979E;
    --lightgrey: #D9D9D9;
    --white: #fff;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--white);
}

.hero__bg {
    width: 100%;
    height: 100%;
}

.hero__bg picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__bg picture img {
    border-radius: 24px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: absolute !important;
    height: auto;
    left: 60px;
}

.hero__title {
    color: var(--white);
    font-family: Lato;
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 20px;
}

.hero__text {
    color: var(--lightgrey);
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 10px;
    margin-bottom: 10px;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: var(--red);
    min-width: 183px;
    height: 50px;
    color: var(--white);
    font-family: Lato;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
}

.hero__input input {
    padding: 15px 20px;
    min-width: 227px;
    height: 50px;
    color: var(--lightgrey);
    font-family: Lato;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    border-radius: 12px;
    border: none;
}

.hero__sogl {
    font-family: Lato;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #FFFFFF80;
}

.how-work {
    background-color: var(--white);
    padding: 80px 0 110px;
}

.how-work__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
    min-height: 717px;
}

@media (max-width: 767px) {
    .how-work__grid {
        min-height: auto;
    }
}

.how-work__col {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.how-work__headline {
    font-family: Lato;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--dark);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.how-work__title {
    font-family: Lato;
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
    color: var(--dark);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.how-work__image {
    width: 636px;
    height: 481px;
    display: none;
}

.how-work__image.active {
    display: block;
}

.how-work__image picture {
    width: 100%;
    height: 100%;
}

.how-work__image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.how-work_accordion__item {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid #54585A;
    border-radius: 20px;
    cursor: pointer;
}

.how-work_accordion__item.opened {
    background-color: var(--dark);
    border-color: #98A9AF;
}

.how-work_accordion__visible {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.how-work_accordion__hidden {
    display: none;
    width: calc(100% - 5% - 14px);
    margin-left: auto;
    margin-top: 14px;
}

.how-work_accordion__item.opened .how-work_accordion__hidden {
    display: block;
}

.how-work_accordion__hidden p {
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: var(--lightgrey);
}

.how-work_accordion__hidden p:last-child {
    margin-bottom: 0;
}

.how-work_accordion__number {
    color: var(--grey2);
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    margin-right: 14px;
    margin-bottom: auto;
    width: 5%;
}

.how-work_accordion__text {
    font-family: Lato;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    color: var(--dark);
    margin-right: auto;
    max-width: 85%;

}
.how-work_accordion__item.opened .how-work_accordion__text  {
    color: var(--white);
}

.how-work_accordion__ico {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.how-work_accordion__ico span {
    width: 30px;
    height: 1px;
    background-color: var(--dark);
    transition: transform .2s ease-in-out;
}

.how-work_accordion__ico span:nth-child(1) {
    transform: rotate(90deg);
}

.how-work_accordion__ico span:nth-child(2) {

}

.how-work_accordion__item.opened .how-work_accordion__ico span:nth-child(1) {
    transform: rotate(0);
    height: 0;
}
.how-work_accordion__item.opened .how-work_accordion__ico span {
    background-color: var(--white);
}
.advantages {
    padding: 100px 0;
    background-color: #F5F7FA;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.advantages-item {
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    box-shadow: 0px 8px 8px 0px #00000005;
}

.advantages-item__ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-left: auto;
    margin-bottom: auto;
}

.advantages-item__ico svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.advantages-item__title {
    font-family: Lato;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    color: var(--dark);
    margin-bottom: 14px;
}

.advantages-item__text {
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    color: #98A9AF;
    margin-bottom: 0;
}

.advantages__header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
}

.advantages__title {
    font-family: Lato;
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
    color: var(--dark);
    text-transform: uppercase;
}

.advantages__subtitle {
    font-family: Lato;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--dark);
    text-transform: uppercase;
}

.service {
    background-color: var(--white);
    position: relative;
    height: 1836px;
}

.service__bg {
    width: 100%;
    height: 100%;
    margin-bottom: -24px;
}

.service__bg picture {
    width: 100%;
    height: 100%;
    display: block;
}

.service__bg picture img {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    object-fit: cover;
}

.service__content {
    position: absolute;
    top: 100px;
    width: 100%;
}

.service__headline {
    font-family: Lato;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 14px;
    text-align: center;
}

.service__title {
    font-family: Lato;
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
}

.service__line {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 5px;
    left: calc(50% - 3px);
    filter: brightness(0.5);
}

.service__line svg {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.service__row {
}

.service-item {
    display: flex;
    flex-direction: row;
    grid-gap: 40px;
    z-index: 2;
    position: relative;
}

.service-item__dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50% 50%;
    background-color: var(--red);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    z-index: 2;
    position: relative;
}

.service-item__title {
    font-family: Lato;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    color: var(--dark);
    margin-bottom: 14px;
}

.service-item__text {
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    color: #98A9AF;
}

.service-item__col:nth-child(1) {
    width: calc(100% - 20px - 30px);
}

.service-item__col:nth-child(2) {
    width: 60px;
}

.service-item__col:nth-child(3) {
    width: calc(100% - 20px - 30px);
}

.service-grid {
    display: flex;
    flex-direction: column;
}

.service-item {
    margin-bottom: 33px;
}

.service-item:last-child {
    margin-top: calc(100px + 33px + 30px);
    margin-bottom: 0;
}

.service-item__dot svg {
    width: 24px;
    height: 25px;
    object-fit: contain;
}

.service-form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    grid-gap: 40px;
    width: 100%;
    height: 434px;
    border-radius: 20px;
    background-color: var(--dark);
    padding: 40px;
    margin-top: -30px;
}

.service-form__headline {
    font-family: Lato;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 14px;
}

.service-form__title {
    font-family: Lato;
    font-size: 30px;
    font-weight: 700;
    line-height: 33px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 40px;
}

.service-form__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 10px;
    margin-bottom: 10px;
}

.service-form__sogl {
    font-family: Lato;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #FFFFFF80;
}

.service-form__input input {
    padding: 15px 20px;
    width: 227px;
    height: 50px;
    color: #FCFCFC;
    font-family: Lato;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    border-radius: 12px;
    border: 1px solid #fff;
    background-color: transparent;
}

.service-form__input input::placeholder {
    color: #FCFCFC;
    font-weight: 300;
}

.service-form__btn {
    width: 183px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: var(--red);
    border-radius: 12px;
    border: none;
    cursor: pointer;
}

.service-form__content {
    width: calc(100% - 728px - 40px);
}

.service-form__image {
    width: 728px;
    height: 354px;

}

.service-form__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.service-form__image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .hero {
        flex-direction: column;
        grid-gap: 20px;
    }

    .hero__content {
        position: relative !important;
        left: unset;
    }

    .hero__bg picture img {
        border-radius: 0 0 20px 20px;
    }

    .hero__title {
        color: var(--dark);
        font-size: 28px;
        line-height: 33px;
    }

    .hero__text {
        font-size: 16px;
        line-height: 24px;
        color: var(--dark);
        margin-bottom: 20px;
    }

    .hero__text br {
        display: none;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__btn,
    .hero__input,
    .hero__input input {
        width: 100%;
    }
    .hero__input input {
        background-color: #F5F7FA;
        border-radius: 6px;
    }
    .hero__btn {
        border-radius: 6px;
    }
    .hero__sogl {
        margin-bottom: 0;
        color: #13131366;
    }

    .how-work {
        padding: 40px 0;
    }

    .how-work__headline {
        font-size: 14px;
        line-height: 19.6px;
    }

    .how-work__title {
        font-size: 26px;
        line-height: 31.2px;
    }

    .how-work__title br {
        display: none;
    }

    .how-work__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .how-work__col {
        justify-content: unset;
    }

    .how-work__image {
        width: 100%;
        height: 210px;
    }

    .how-work__image picture img {
        border-radius: 15px;
    }

    .how-work_accordion__item {
        padding: 10px;
        border-radius: 15px;
    }

    .how-work_accordion__text {
        font-size: 20px;
        line-height: 24px;
    }

    .how-work_accordion__hidden {
        width: calc(100% - 5% - 6px);
    }

    .how-work_accordion__hidden p {
        font-size: 16px;
        line-height: 19.2px;
    }

    .how-work_accordion__hidden p br {
        display: none;
    }

    .how-work_accordion__ico span {
        width: 16px;


    }

    .how-work_accordion__number {
        margin-right: 6px;
        width: 5%;
    }

    .how-work_accordion__ico {
        width: 22px;
        height: 22px;
    }

    .advantages {
        padding: 40px 0;
    }

    .advantages__header {
        flex-direction: column-reverse;
        align-items: unset;
        margin-bottom: 24px;
    }

    .advantages__headline {
        font-size: 14px;
        line-height: 19.6px;
    }

    .advantages__title {
        font-size: 26px;
        line-height: 31.2px;
    }

    .advantages__title br {
        display: none;
    }

    .advantages__grid {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 10px;
    }

    .advantages-item__title {
        font-size: 20px;
        line-height: 24px;
    }

    .advantages-item__title br {
        display: none;
    }

    .advantages-item__text {
        font-size: 16px;
        line-height: 19.2px;
    }

    .advantages-item__ico {
        margin-bottom: 14px;
    }

    .advantages-item {
        padding: 14px;
    }

    .service {
        height: 100%;
    }

    .service__content {
        top: 0;
        position: relative;
        padding-top: 40px;
    }

    .service__headline {
        font-size: 14px;
        line-height: 19.6px;
    }

    .service__title {
        font-size: 26px;
        line-height: 31.2px;
        text-align: center;
        margin-bottom: 24px;
    }

    .service-item {
        margin-bottom: 24px;
    }

    .service-item {
        grid-gap: 0;
    }

    .service-item__dot {
        width: 40px;
        height: 40px;
        font-size: 16px;
        line-height: 16px;
    }

    .service-item__col:nth-child(1) {
        width: auto;
    }

    .service-item__col:nth-child(3) {
        width: auto;
    }

    .service-item:nth-child(even) .service-item__col:nth-child(3) {
        order: 3;
        display: none;
    }

    .service-item:nth-child(even) .service-item__col:nth-child(2) {
        order: 1;
        margin-right: 20px;
    }

    .service-item:nth-child(even) .service-item__col:nth-child(1) {
        order: 2;
    }

    .service-item:nth-child(odd) .service-item__col:nth-child(3) {
        /*display: none;*/
    }

    .service-item:nth-child(odd) .service-item__col:nth-child(2) {
        margin-right: 20px;
    }

    .service__line {
        left: 32px;
    }

    .service-item__col:nth-child(2) {
        width: 40px;
    }

    .service-item__title {
        font-size: 20px;
        line-height: 24px;
    }

    .service-item:last-child {
        margin-top: 0;
    }

    .service__bg picture img {
        border-radius: 0;
    }

    .service-form {
        padding: 40px 15px;
        flex-direction: column;
        height: 100%;
        border-radius: 20px 20px;
        position: relative;
        margin-top: -15px;
        margin-bottom: 15px;
    }

    .service-form__content {
        width: 100%;
        z-index: 2;
    }

    .service-form__image {
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    .service-form__headline {
        font-size: 14px;
        line-height: 19.6px;
    }
    .service-form__title {
        font-size: 26px;
        line-height: 31.2px;
        margin-bottom: 20px;
    }
    .service-form__actions {
        flex-direction: column;

    }
    .service-form__input,
    .service-form__input input,
    .service-form__btn{
        width: 100%;
    }
    .service__bg {
        margin-bottom: 0;
        position: absolute;
    }








}
</pre></body></html>