@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #151515;
}

a {
    text-decoration: none;
    color: white;
}

.container {
    max-width: 1110px;
    margin: 0 auto;
}

.nav-section {
    background: #282828;
    padding: 5px 0;
    box-shadow: 0px 4px 20px 0px #00000040;
}

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

.nav_ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

.nav_li {
    font-weight: 700;
    font-size: 20px;
}

.hero_section {
    background: url("/img/Header.svg") no-repeat center;
    background-size: cover;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.hero_title {
    font-weight: 400;
    font-size: 100px;
    line-height: 75px;
    color: #FFFFFF;
}

.hero_button {
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    padding: 17px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
}

.section_content {
    margin-bottom: 50px;
    display: flex;
    gap: 30px;
}

.section_content_2 {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section_text {
    font-weight: 500;
    font-size: 22px;
    color: #FFFFFF;
}

.section_text_2 {
    font-weight: 500;
    font-size: 22px;
    color: #FFFFFF;
    max-width: 540px;
    width: 100%;
}

.airpods_discriptions {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.airpods_discriptions_2 {
    display: flex;
    align-items: center;
    max-width: 410px;
    gap: 10px;
    width: 100%;
}

.airpods_discriptions_2 p {
    font-weight: 700;
    font-size: 20px;
}

.cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    margin: 50px 0;
}

.card {
    padding: 15px 40px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 315px;
    border-radius: 6px;
}

.card h2 {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
}

.card p {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.card button {
    background: #151515;
    padding: 7px 57px;
    color: white;
}

.card div {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    background: #282828;
    box-shadow: 0px -4px 20px 0px #00000040;
    padding: 81px 0;
}

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