*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html{
scroll-behavior: smooth;
}
body {
    font-family: "Roboto", sans-serif;
    color: #222222;
    background: #ffffff;
    line-height: 0.9;
}
h1 {
    font-family: "Playfair Display", serif;
    font-size: 72px;
    font-weight: 400;
    color: rgb(17, 17, 17);
    margin-bottom: 42px;
    line-height: 0.9;
}
h2 {
    display: inline-block;
    margin-bottom: 5px;
    color: rgb(255, 0, 0);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}
main{
    padding-top:88px;
}
img{
max-width: 100%;
display: block;
}
a{
text-decoration: none;
color: inherit;
}
ul{
list-style: none;
}
button,
input,
textarea,
select{
font: inherit;
}
.container {
    width: 1290px;
    max-width: 1290px;
    margin: 0 auto;
}
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 215px;
    height: 45px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s;
}
.btn-primary {
    background: #ff0000;
    color: #ffffff;
}
.btn-primary:hover {
    background: #111111;
}
.btn-secondary {
    border: 1px solid #E5E7EB;
    background: #ffffff;
    color: #111111;
}
.btn-secondary:hover {
    border-color: #111111;
}
.section-description {
    max-width: 360px;
    font-size: 18px;
    line-height: 1.8;
    color: #667085;
    margin-bottom: 48px;
}
.text-white {
    color: #ffffff;
}
section:not(.hero) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}