@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #111827;
    font-size: 16px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/*Фон страницы*/
.wrapper {
    background: #fff;
    width: 100%;
}

/*Тело страницы*/
.container {
    width: 1400px;
    max-width: calc(100% - 135px);
    margin: 0 auto;
}

/*Шапка*/
header {
    padding: 50px 0;
}

/*Характеристика логотипа*/
header .logo, 
footer .blocks .logo {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
}

/*Координаты правого блока*/
header nav {
    float: right;
    width: 50%;
}

/*Характеристика правого блока*/
header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

/*Логика правого блока*/
header nav ul li {
    display: inline-block;
}

/*Ссылки правого блока*/
header nav ul li a {
    color: #111827;
}

/*Логика активного элемента*/
header nav ul li.active::after {
    content: '';
    display: block;
    width: 40px;
    height: 5px;
    background: #00c853;
    border-radius: 10px;
    position: relative;
    top: 5px;
    left: 8px;
}

/*Логика наведения курсора*/
header nav ul li:not(.active):not(.btn) a:hover {
    border-bottom: 5px solid #00c853;
}

/*Кнопка шапки*/
header nav ul li.btn a {
    background: #00c853;
    padding: 9px 17px;
    border-radius: 8px;
    transition: all 500ms ease;
}

/*Анимация кнопки шапки*/
header nav ul li.btn a:hover {
    background: #00ae47;
}

/*Тело главной*/
.hero {
    text-align: center;
    padding-bottom: 100px;
    z-index: 1;
    position: relative;
}

/*Блок картинки*/
.hero img {
    display: block;
    width: 50%;
    height: auto;
    margin: 30px auto;
}

/*Блок надписей*/
.hero--info {
    width: 530px;
    max-width: 100%;
    margin: 0 auto;
}

/*Верхняя надпись*/
.hero--info h2 {
    color: #00c853;
    font-size: 30px;
    font-weight: 600;
}

/*Главный текст*/
.hero--info h1 {
    font-size: 40px;
    font-weight: 600;
    margin-top: 10px;
}

/*Основной текст*/
.hero--info p {
    font-weight: 500;
    line-height: 170%;
    margin: 30px 0;
}

/*Стиль кнопки "Начать"*/
.hero--info .btn {
    background: #00c853;
    color: #111827;
    border-radius: 50px;
    padding: 15px 30px;
    border: 0;
    transition: all 500ms ease;
    font-size: 17px;
    text-decoration: none;
}

/*Анимация кнопки "Начать"*/
.hero--info .btn:hover {
    cursor: pointer;
    transform: scale(1.1);
}

/*Секция отзывов*/
.feedbacks {
    padding-top: 25px;
}

.feedbacks h3 {
    font-weight: 600;
    font-size: 30px;
}

/*Кнопка "Все отзывы"*/
.feedbacks .see-all {
    color: #111827;
    background: #00c853;
    border-radius: 8px;
    padding: 12px 23px;
    float: right;
    display: block;
    transition: all 500ms ease;
}

/*Анимация кнопки "Все отзывы"*/
.feedbacks .see-all:hover {
    transform: scale(1.1);
}

.feedbacks .feedback {
    display: flex;
    justify-content: space-between;
    text-align: center;
    width: 100%;
    padding: 50px 0;
}

/*Позиционирование блока "Отзывы"*/
.feedbacks .feedback span {
    display: block;
    margin-top: 20px;
}

/*Координаты блока картинок  "Все отзывы"*/
.feedbacks .feedback img {
    width: 15%;
    height: auto;
}

/*Нижний футтер*/
footer {
    background: #f8fafc;
    padding: 50px 0;
}

footer a{
    color: inherit;
    text-decoration: none;
}
footer .blocks {
    display: flex;
    justify-content: space-between;
}

footer .blocks p {
    width: 300px;
    margin: 15px 0;
}

footer .blocks h4 {
    font-weight: 500;
    font-size: 18px;
}

footer .blocks ul {
    list-style: none;
}

footer .blocks ul li {
    margin-top: 8px;
    opacity: 0.8;
}

footer hr {
    margin: 30px 0;
    border: 0;
    height: 0.6px;
    background: #ccc;
}

footer > p {
    text-align: center;
}