* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "Urbanist", sans-serif;
}

header,
section {
    width: 76%;
    margin: auto;
    padding: 14px 5px;
}

.logo>img {
    width: 2rem;
}

nav>ul {
    column-gap: 3rem;
}

nav>ul>li>a {
    color: var(--light-white-color);
    font-size: 14px;
    letter-spacing: 0.7px;
}

nav>ul>li>a:hover {
    color: var(--text-color);
}

.nav-icon {
    column-gap: 1rem;
}

.nav-icon>i {
    font-size: 22px;
    color: var(--text-color);
}

.nav-icon i:last-child {
    font-size: 28px;
}

.menu,
.close {
    display: none;
}


/* Hero-Section */

section {
    min-height: 100vh;
}

.iphone-content {
    margin-top: 4.6rem;
    width: 100%;
}

.iphone-content>h1 {
    font-size: 3rem;
}

.iphone-video {
    width: 100%;
}

.iphone-video>video {
    width: 100%;
}

.style-iphone>iframe {
    padding-top: 2rem;
    width: 100%;
    height: 28rem;
}

.iphone-model {
    padding-top: 4rem;
    width: 100%;
}

.iphone-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9rem;
    height: 10rem;
    padding-bottom: 2rem;
    border-bottom: 0.7px solid #373737;
}

.iphone-thumbnail>img {
    width: 100%;
    height: auto;
    opacity: 0.7;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.iphone-thumbnail>img:hover {
    opacity: 1;
    scale: 1.3;
    transition: 0.4s ease-in-out;
}