@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto-Regular.woff') format('woff');
    font-display: swap;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
        url('../fonts/Roboto-Bold.woff') format('woff');
    font-display: swap;
    font-weight: 700;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

:root {
    --white-color: white;
    --blue-color: #3F2AFF;
}

body {
    font-family: 'Roboto', sans-serif;
}

.stop-scroll {
    overflow: hidden;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.list-reset {
    padding: 0;
    margin: 0;
    list-style: none;
}

.btn:hover {
    transition: .3s;
    background-color: rgb(219, 255, 87);
    border: none;
}

.btn:focus {
    transition: .3s;
    background-color: rgb(255, 0, 0);
}

.btn:active {
    background-color: rgb(255, 87, 249);
}

.btn-reset {
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/*header*/

.header {
    background-color: rgb(2, 3, 2);
    padding-top: 10px;
    padding-bottom: 10px;
}

.burger {
    display: none;
}

.nav {
    margin-top: auto;
    margin-bottom: auto;
}

.nav__link {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 23px;
    line-height: 21px;
}

.nav__link:hover {
    transition: .3s;
    color: rgb(17, 255, 0);
}

.nav__link:focus {
    transition: .3s;
    color: red;
}

.nav__link:active {
    color: blueviolet;
}

.header__logo {
    margin-right: auto;
    font-size: 0;
}

.header__logo img {
    width: 80px;
    height: 80px;
    border-radius: 25px;
}

.nav__item:not(:last-child) {
    margin-right: 56px;
}

.nav__item {
    cursor: pointer;
    transition: .4s;
}

.nav__item:hover {
    box-shadow: 0 3px 0 yellow;
}

.nav__item:focus {
    outline-offset: 1px;
}

.nav__item:active {
    color: #500c8f;
}


/*hero*/

.hero__title {
    color: var(--white-color);
    font-weight: 700;
    font-size: 60px;
    line-height: 100%;
    margin-bottom: 28px;
    padding-top: 130px;
}

.hero__descr {
    color: var(--white-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 62px;
}

.hero__btn {
    color: var(--white-color);
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    padding: 25px 75.5px;
    background: var(--blue-color);
    border-radius: 20px;
}

.hero__block {
    width: 100%;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*benefits*/

.benefits {
    padding-top: 80px;
    padding-bottom: 96px;
    background-image: url('../img/unnamed.webp');
    background-size: contain;
}

.benefits__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    margin-bottom: 17px;
    text-align: left;
    color: white;
}

.benefits__list {
    font-size: 20px;
}

.benefits__list .benefits__descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 12px;
    max-width: 95%;
}

.benefits__item {
    font-size: 24px;
    color: white;
}

.benefits__item:not(:last-child) {
    margin-bottom: 20px;
}

.benefits__text {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-align: left;
}

.benefits__icon {
    background-repeat: no-repeat;
    background-position: left;
    padding: 22px 0;
}

.benefits__icon--1 {
    background-image: url('../img/eye-circle.png');
    padding-left: 139px;
    background-position: 30px 10px;
}

.benefits__icon--2 {
    background-image: url('../img/fingers.png');
    padding-left: 130px;
    background-position: 20px 10px;
}

.benefits__icon--3 {
    background-image: url('../img/bullhorn.png');
    padding-left: 117px;
    padding-right: 50px;
    padding-top: 24px;
    background-position: 10px 10px;
}

.benefits__img {
    padding-top: 22px;
}

/*products*/

.products {
    padding-top: 73px;
    padding-bottom: 74px;
}

.products__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    margin-bottom: 24.5px;
}

.products__list {
    justify-content: space-around;
    list-style: none;
}

.products__item {
    list-style: none;
}

.products__image {
    margin-bottom: 9px;
    max-width: 100%;
    height: 270px;
}

.product__name {
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 7px;
}

.product__descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    padding-right: 1px;
}

/*service*/

.services {
    padding-top: 53px;
    padding-bottom: 78px;
}

.services__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    margin-bottom: 25px;
}

.services__list {
    margin: 0;
    list-style: none;
}

.services__item {
    position: relative;
    background-color: #EDF0F9;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 30px;
    min-height: 290px;
}

.services__adjustment {
    border-radius: 50px;
    justify-content: space-between;
}

/*

.time {
    position: absolute;
    background-image: url('../img/time.png');
    align-self: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    top: 12px;
    right: 19px;
    background-repeat: no-repeat;
    background-position: left;
    color: var(--white-color);
    padding-left: 29px;
    padding-bottom: 1px;
}*/

.services__list {
    list-style: none;
}

.item__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    color: #212133;
    margin-bottom: 9px;
}

.item__descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #666666;
    margin-bottom: 46px;
    min-height: 144px;
}

.item__btn {
    padding: 20.5px 59px;
    border-radius: 20px;
    background-color: greenyellow;
    border-color: greenyellow;
    color: black;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    cursor: pointer;
    max-width: 202px;
    margin-top: auto;
}

.services__img {
    display: block;
    max-width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    height: 360px;
}

/*footer*/

.footer {
    padding-top: 28px;
    background: #2E2B44;
    text-align: center;
}

.contacts {
    color: white;
    padding-bottom: 20px;
}

.footer__list {
    list-style: none;
    margin-bottom: 20px;
    justify-content: center;
}

.footer__item:not(:last-child) {
    margin-right: 30px;
    margin-bottom: 4px;
}

.footer__icon {
    text-decoration: none;
}

.footer__logo {
    text-align: center;
    background-color: var(--white-color)
}