/* 
* ---------------- Reset CSS */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}
img,
picture {
	max-width: 100%;
	display: block;
}
input,
button,
textarea,
select {
	font: inherit;
}

/* 
*----------------- Font Face */
@font-face {
	font-family: "SFProText-Regular";
	src: url(../assets/SFProText-Regular.ttf);
}
@font-face {
	font-family: "SFProText-Semibold";
	src: url(../assets/SFProText-Semibold.ttf);
}
@font-face {
	font-family: "SFProDisplay-Regular";
	src: url(../assets/SFProDisplay-Regular.ttf);
}
@font-face {
	font-family: "SFProDisplay-Semibold";
	src: url(../assets/SFProDisplay-Semibold.ttf);
}

/* 
* ---------------- Main CSS */

body {
	min-height: 100vh;
	font-family: "SFProText-Regular";
	color: #1d1d1f;
	background-color: #fff;
}
a {
	text-decoration: none;
}

.nav {
	position: fixed;
	display: flex;
	width: 100%;
	font-size: 0.75rem;
	background-color: #000;
	opacity: 0.9;
	/* padding: 0.2rem; */
	/* line-height: 2.75rem; */
	justify-content: center;
}
.nav__title {
	width: 1px;
	font-size: 1px;
	height: 1px;
}
.nav__item {
	height: fit-content;
}
.nav__list {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 2.5rem;
	margin: 0;
	list-style: none;
}
.nav__item:first-child {
	display: none;
}
.nav__link {
	color: #f5f5f7;
}
.nav__link::after {
	content: "";
	display: block;
	position: relative;
	border-bottom: 1px solid #f5f5f7;
	transform: scaleX(0);
	transition: 0.5s;
	padding-top: 0.2rem;
}
.nav__item:nth-child(2) a::after,
.nav__item:last-child a::after,
.nav__item:nth-last-child(2) a::after {
	border-bottom: unset;
}
.nav__link:hover::after {
	transform: scaleX(1);
}
.nav__link img {
	width: 13px;
	height: 44px;
}

.stack {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 1rem;
	padding: 3.5rem 0 1rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	background-color: #f5f5f7;
}
.stack__benefit,
.stack__discount {
	display: flex;
	column-gap: 0.25rem;
}
.stack a::after {
	content: "";
	display: flex;
	position: inherit;
	border-bottom: 1px solid #0066cc;
	transform: scaleX(0);
	transition: 0.5s;
}
.stack a:hover::after {
	transform: scaleX(1);
}

.extend {
	color: #0066cc;
}
.extend::after {
	content: "\203A";
}
.title {
	font-weight: 500;
	font-family: "SFProDisplay-Semibold";
}
.subtitle {
	font-weight: 400;
	font-family: "SFProDisplay-Regular";
}

.jumbotron {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-top: 2.5rem;
	margin-bottom: 0.8rem;
}
.jumbotron__text-wrap {
	display: flex;
	flex-direction: column;
	row-gap: 0.6rem;
}
.jumbotron__title {
	/* font-family: "SFProDisplay-Semibold"; */
	font-size: 3.5rem;
	line-height: 3.75rem;
	font-weight: 500;
}
.jumbotron__subtitle {
	/* font-family: ""; */
	font-size: 1.75rem;
	letter-spacing: 0.112px;
}
.jumbotron__link-wrap {
	display: flex;
	column-gap: 1.5rem;
	align-items: center;
	justify-content: center;
}
.jumbotron__link-wrap a {
	font-size: 1.3125rem;
	align-items: center;
	justify-content: center;
}
.jumbotron__image {
	margin-top: 1.5rem;
	width: 35rem;
}

/*
*----------------  iPhone 13 */
.phone-13 {
	color: #f5f5f7;
	background-color: #35283c;
}
.phone-13 .jumbotron__subtitle {
	color: #fec2eb;
}

/* 
*------------------ Watch */
.watch {
	background-color: #f5f5f7;
}
.watch .jumbotron__text-wrap {
	justify-content: center;
	align-items: center;
}
.watch .jumbotron__span {
	color: #bf4800;
}
.watch .jumbotron__image {
	margin-top: 0.3rem;
	width: 75rem;
}

/* 
*------------------- Grid */
.grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	background-color: #fbfbfd;
	justify-content: center;
	margin-bottom: 0.8rem;
}
.grid .jumbotron {
	flex-basis: 48%;
	height: 30rem;
	padding-top: 2.5rem;
	margin-bottom: 0;
}
.grid .jumbotron__text-wrap {
	align-items: center;
	justify-content: center;
}
.grid .jumbotron__title {
	font-size: 2.5rem;
}
.grid .jumbotron__subtitle {
	font-size: 1.3rem;
}
.grid .extend {
	font-size: 1.06rem;
}
.grid .extend sup {
	font-size: 10px;
}

/* * Fitness */
.grid .jumbotron:nth-child(1) {
	background-image: url(../assets/image/tile_winter__bpktzwl6hsc2_large.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
}
/* * MacBook */
.grid .jumbotron:nth-child(2) {
	background-image: url(../assets/image/tile_macbookpro__cx0ur0qg9biq_large.jpg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: 50%;
}
.grid .jumbotron:nth-child(2) .jumbotron__subtitle {
	margin-top: -0.8rem;
}
/* * AirPods */
.grid .jumbotron:nth-child(3) {
	background-image: url(../assets/image/tile_airpods__fuv6vgn42y2q_large.jpg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: 50%;
	justify-content: flex-end;
	align-items: center;
}

/* * Music */
.grid .jumbotron:nth-child(4) {
	background-image: url(../assets/image/promo_spatial_audio_j_balvin__clvcnr2slw9y_large.jpg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: 50% 30%;
	color: #fff;
}

/* * Card */
.grid .jumbotron:nth-child(5) {
	background-image: url(../assets/image/tile_apple_card__cwonh0wb00om_large.jpg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: 50% 30%;
}
.grid .jumbotron__text-wrap p {
	color: #6e6e73;
}

/* * Tv + */
.grid .jumbotron:nth-child(6) {
	background-image: url(../assets/image/promo_macbeth__e671onn69r8m_large.jpg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: 50% 30%;
	justify-content: flex-end;
	align-items: center;
}
.jumbotron:nth-child(6) .jumbotron__text-wrap {
	padding-bottom: 1rem;
}
.grid .jumbotron:nth-child(6) p,
.grid .jumbotron:nth-child(6) a {
	color: #fff;
}
.grid .jumbotron:nth-child(6) p {
	font-size: 1.3125rem;
}
.grid .extend::after {
	content: "";
}

.footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 0.75rem;
	line-height: 1rem;
	background-color: #f5f5f7;
	color: #6e6e73;
}
.footer__description {
	display: flex;
	justify-content: center;
	margin: auto;
}
.footer ol,
.footer ul {
	display: flex;
	row-gap: 0.5rem;
	flex-direction: column;
	margin: 1.5rem 0 0;
}
.footer ol::after {
	content: "";
	position: relative;
	display: flex;
	border-bottom: 1px solid #d2d2d7;
}
.footer__bold {
	font-family: "SFProText-Semibold";
}
.footer a {
	color: #424245;
}
.footer li:nth-child(3) p:not(:first-child) {
	margin-top: 0.5rem;
}
.footer li:nth-child(3) p:last-child {
	margin-bottom: 0.7rem;
}

.footer__nav,
.footer__description {
	width: 80%;
}
.footer__nav {
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.footer__link {
	display: flex;
	justify-content: space-between;
	line-height: 1.5;
}
.footer__link ul {
	list-style: none;
}
.footer__link li {
	width: fit-content;
}
.footer__link a, .footer__copyright a {
	display: flex;
	flex-direction: column;
}
.footer a::after {
	content: "";
	display: inherit;
	position: inherit;
	border-bottom: 1px solid #424245;
	transform: scaleX(0);
	transition: 0.5s;
}
.footer a:hover::after {
	transform: scaleX(1);
}
.footer__nav-title {
	font-family: "SFProText-Semibold";
	color: #1d1d1f;
}
.footer__info {
	padding-top: 20px;
	margin-left: 40px;
}
.footer__info p::after {
	content: "";
	position: relative;
	margin-top: 10px;
	display: flex;
	border-bottom: 1px solid #d2d2d7;
	padding-bottom: 0.8rem;
}
.footer__copyright {
	display: flex;
	column-gap: 1.5rem;
	width: 80%;
	margin-bottom: 30px;
}
.footer__copyright ul:first-child li a {
	color: #86868b;
}
.footer__copyright ul {
	list-style: none;
}
.footer__copyright ul:not(:first-child) {
	padding-left: 0;
}
.footer__copyright ul:nth-child(2) {
	display: flex;
	column-gap: 1rem;
	flex-direction: row;
	justify-content: space-between;
	width: fit-content;
}
.footer__copyright-link:nth-child(2) li:not(:last-child) {
	padding-right: 0.5rem;
	border-right: 1px solid #d2d2d7;
}
.footer__copyright ul:nth-child(3) {
	flex-grow: 1;
	align-items: flex-end;
	align-self: flex-end;
}
.footer__copyright-link {
	display: flex;
	justify-content: space-evenly;
	flex-direction: row;
}
.mt-5 {
	margin-top: 10px;
}
