* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    font-weight: 700;
} 
.container {
    max-width: 1280px;
    width: 100%;
    margin: auto;
    padding: 0 15px;
}
.header__nav {
    background: black;
    padding: 15px 0;
}
.header__nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__nav-list {
    display: flex;
    gap: 82px;
}
.header__nav-list a {
    font-size: 25px;
    font-weight: 400;
    color: white;
}
.logo {
    color: white;
    font-size: 40px;
}
.header__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 850px;
    gap: 145px;
    background: url(../images/headerbg.png) center / cover;
    /* background-size: cover;
    background-position: center; */
}
h1 {
    font-size: 40px;
}
.btn {
    background: white;
    color: black;
    font-size: 25px;
    padding: 10px 24px;
    border-radius: 10px;
    transition: 300ms;
}
.btn:hover {
    background: black;
    color: white;
}
.about {
    background: #0E1C25;
    padding: 30px 0 112px;
}
.title {
    color: white;
    text-align: center;
    font-size: 40px;
    margin-bottom: 49px;
}
.about .container {
    display: flex;
    justify-content: center;
    gap: 106px;
    color: white;
}
.about__text {
    padding-top: 50px;
    max-width: 466px;
}
.about__text h3 {
    font-weight: 400;
    font-size: 35px;
    margin-bottom: 64px;
}
.about__text p {
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
}
.works {
    background: #5C6B81;
    padding: 43px 0 70px;
}
.works__card {
    width: 312px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #B12B06;
    padding: 15px 15px 27px;
    color: white;
    gap: 23px;
    border-radius: 10px;
}
.works__card h3 {
    font-size: 20px;
}
.works__card p {
    width: 264px;
    font-size: 14px;
}
.works__card .btn {
    padding: 8px 24px;
    font-size: 20px;
}
.works .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 126px;
}
.footer {
    background: #000;
    padding: 47px 0 62px;
}
.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
}
.footer .title {
    font-weight: 400;
}