* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: normal;
}

body {
    font-family: 'DM Sans', sans-serif;
}

.container {
    max-width: 1070px;
    width: 100%;
    margin: 0 auto;
}

.header,
.footer {
    background: rgba(255, 113, 67, 0.27);
    padding: 38px 0 48px;
}

.nav__li {
    display: inline-block;
}

.nav__li:not(:first-child) {
    margin-left: 49px;
}

.nav__link {
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.468947px;
    color: #696871;
    text-decoration: none;
}

.nav__link:hover {
    color: #19191B;
    transition: 300ms;
}

.button {
    width: 212px;
    height: 60px;
    font-weight: bold;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.531474px;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.button_orange {
    background: #FF7143;
}

.button_orange:hover,
.button_violet:hover,
.button_transporent:hover {
    filter: brightness(1.2);
    transition: 500ms;
}

.about {
    padding: 104px 0 85px;
}

.about__title {
    max-width: 467px;
    font-weight: bold;
    font-size: 80px;
    line-height: 77px;
    letter-spacing: -2.50105px;
    color: #19191B;
    margin-bottom: 30px;
}

.about__text {
    max-width: 464px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.625263px;
    color: #696871;
    margin-bottom: 50px;
}

.button_violet {
    background: #5454D4;
}

.button_transporent {
    background: none;
    color: #5454D4;
    border: 1px solid #5454D4;
    margin-left: 35px;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subscribe {
    margin-bottom: 85px;
}

.subscribe_title {
    font-weight: bold;
    font-size: 50px;
    line-height: 57px;
    letter-spacing: -1.56316px;
    color: #19191B;
}

.input {
    width: 302px;
    height: 60px;
    border-radius: 10px;
    border: 1px solid #7087FF;
    padding-left: 14px;
    box-sizing: border-box;
    margin-right: 39px;
}

.input:focus {
    outline: none;
}

.input::placeholder {
    font-weight: bold;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.531474px;
    color: #000000;
}

.button_violet {
    background-color: #5454D4;
}

.plan {
    margin-bottom: 132px;
}

.plan_title {
    font-weight: bold;
    font-size: 60px;
    line-height: 70px;
    letter-spacing: -1.87579px;
    color: #19191B;
    max-width: 504px;
    margin-bottom: 98px;
}

.item {
    width: 330px;
    background: #F8F8F8;
    border-radius: 10px;
    text-align: center;
    padding: 34px 0 27px;
}


.item__text {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    letter-spacing: -0.562737px;
    color: #696871;
}

.item__title {
    font-weight: bold;
    font-size: 60px;
    line-height: 56px;
    text-align: center;
    letter-spacing: -1.03448px;
    color: #1D293F;
    margin: 22px 0 28px;
}

.item__title span {
    font-size: 28px;
}

.item__li {
    list-style: none;
    font-size: 17px;
    line-height: 50px;
    letter-spacing: -0.531474px;
    color: #696871;
}

.button_item {
    width: 285px;
    background: white;
    color: #5454D4;
    margin-top: 36px;
}

.item:hover {
    transition: 500ms;
    background: #FF7143;
    box-shadow: 0px 32px 34px rgba(255, 112, 59, 0.317827);
    
}

.item:hover>.item__title,
.item:hover>.item__text,
.item:hover>ul>.item__li {
    color:#fff;
    transition: 500ms;
}
.item:hover>.button_item {
    background: #9F3919;
    color: #FFFFFF;
    transition: 500ms;
}