/* color pallete */
:root {
	--blue1: #98bae3;
	--blue2: #5981b1;
	--blue3: #365475;
	--blue4: #15273c;
}

/* default */
* {
	font-family: "Open Sans", sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	border: none;
	text-decoration: none;
}

body {
	background-color: var(--blue4);
}

/* ////// DESKTOP////// */
/* NAVBAR */
nav {
	/* background-color: var(--blue4); */
	padding: 1rem 2rem;
	position: relative;
	/* soverflow: hidden; */
	z-index: 999;
}

nav .container {
	width: 80%;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}

.navbar-logo {
	font-weight: 700;
	color: white;
	font-size: 1.8rem;
}

.navbar-logo span {
	color: var(--blue2);
}

#btn-back img {
	width: 2.5rem;
	margin-top: 0.4rem;
}

/* HERO SECTION */
.hero .bg-hero img {
	width: 100%;
	position: absolute;
	top: 0;
}

.hero .content-hero {
	position: relative;
	width: 100%;
	margin-top: 6rem;
}

.hero .content-hero h1 {
	text-align: center;
	color: white;
	font-size: 3rem;
	font-weight: 700;
	text-shadow: 2px 2px 2px var(--blue4);
}

.hero .content-hero h1 span {
	color: var(--blue1);
}

.hero .content-hero p {
	text-align: center;
	color: white;
	font-size: 1rem;
	text-shadow: 2px 2px 2px var(--blue4);
	margin-top: 2rem;
	padding: 0 22rem;
}

/* MENU SECTION */
.menu .container-form {
	position: relative;
	margin-top: 4rem;
	padding: 0 2rem;
}

.search-box {
	width: 70%;
	height: 4rem;
	background-color: white;
	margin: 0 auto;
	border: solid 3px var(--blue4);
	border-radius: 30px;
	display: flex;
	padding: 0 2rem;
}

.search-box input {
	font-size: 1rem;
	width: 100%;
}

.menu .btn {
	width: 100%;
	display: flex;
	justify-content: center;
}

.btn-search {
	background-color: var(--blue2);
	color: white;
	padding: 0.5rem 2rem;
	font-size: 1rem;
	border-radius: 10px;
	margin-top: 1rem;
	cursor: pointer;
}

.search-container .label {
	background-color: var(--blue2);
	width: 10%;
	display: flex;
	justify-content: center;
	border-radius: 27px 0 0 27px;
}

.menu .container-b {
	position: relative;
	margin-top: 2rem;
	padding: 0;
}

.list-container {
	width: 80%;
	/* background-color: white; */
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	/* border: solid 3px var(--blue4); */
	border-radius: 20px;
	margin: 0 auto;
	padding: 2rem;
}

.list-container .list {
	width: 16rem;
	height: 21rem;
	background-color: white;
	border: solid 1px var(--blue2);
	border-radius: 10px;
	margin: 1rem;
	box-shadow: 1px 1px 3px var(--blue2);
}

.thumbnail {
	width: 100%;
	height: 50%;
	/* background-color: var(--blue2); */
	border-radius: 8px;
}

.thumbnail img {
	width: 100%;
	border-radius: 8px;
}

.title {
	text-align: center;
	color: var(--blue3);
	padding: 0.5rem 1rem;
}

.describe {
	text-align: center;
	font-size: 0.8rem;
	padding: 0 1rem;
}

.list .button {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}

.list .button a {
	background-color: var(--blue3);
	color: white;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.5rem 3.2rem;
	border-radius: 30px;
	transition: 0.5s;
}

.list .button a:hover {
	background-color: var(--blue2);
}

/* APP DETAIL */
.box-detail {
	width: 80%;
	background-color: white;
	margin: 0 auto;
	padding: 2rem;
	border-radius: 10px;
}

.box-detail .row1 {
	display: flex;
	justify-content: center;
}

.box-detail .row1 .col1 {
	width: 40%;
}

.box-detail .row1 .col1 img {
	width: 100%;
	border-radius: 10px;
}

.box-detail .row1 .col2 {
	width: 60%;
	padding: 0 0 0 2rem;
}

.box-detail .row1 .col2 h1 {
	color: var(--blue3);
}

.btn-download {
	margin-top: 3rem;
}

.box-detail .row1 .col2 a {
	background-color: var(--blue4);
	color: white;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 0.8rem 3.8rem;
	border-radius: 5px;
	transition: 0.5s;
}

.box-detail .row1 .col2 a:hover {
	background-color: var(--blue3);
}

.box-detail p {
	margin-top: 1rem;
	text-align: justify;
}

.box-detail .row2 h3 {
	color: var(--blue2);
	font-size: 1.5rem;
	margin-top: 1rem;
}

.box-detail .row2 .ss {
	width: 100%;
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.box-detail .row2 .ss img {
	width: 30%;
	margin: 1rem;
	border-radius: 5px;
}

/* FOOTER */
footer .copyright {
	padding: 2rem 0;
	text-align: center;
	color: white;
}

/* PAGES */
.boxterms {
	width: 80%;
	background-color: white;
	margin: 1rem auto;
	padding: 2rem;
	border-radius: 10px;
}

.boxterms h1 {
	text-align: center;
	color: var(--blue3);
}

.boxterms p {
	text-align: justify;
	margin-top: 2rem;
}

/* ////// TABLET ////// */
@media (max-width: 1024px) {
	/* HERO SECTION */
	.hero .content-hero h1 {
		font-size: 2.5rem;
	}

	.hero .content-hero p {
		padding: 0 10rem;
	}

	/* MENU SECTION */
	.menu .container-a {
		padding: 0;
	}

	.search-container .label {
		width: 15%;
	}

	.search-container .form {
		width: 75%;
	}

	.search-container .icon {
		width: 10%;
	}

	.menu .container-b {
		padding: 0;
	}

	.list-container {
		padding: 1.5rem;
	}

	.list-container .list {
		width: 14rem;
		height: 20rem;
	}

	.title {
		text-align: center;
		color: var(--blue3);
		padding: 0.5rem 1rem;
		font-size: 0.8rem;
	}

	.describe {
		text-align: center;
		font-size: 0.7rem;
		padding: 0 1rem;
	}

	.list .button a {
		padding: 0.5rem 4.2rem;
	}
}

/* ////// MOBILE////// */
@media (max-width: 450px) {
	/* NAVBAR */
	nav {
		padding: 1.2rem 0.2rem;
	}

	.navbar-logo {
		font-size: 1.2rem;
	}

	#btn-back img {
		width: 2rem;
		margin-top: 0;
	}

	/* HERO SECTION */
	.hero .content-hero {
		position: relative;
		width: 100%;
		margin-top: 1rem;
	}

	.hero .content-hero h1 {
		font-size: 1.2rem;
	}

	.hero .content-hero p {
		font-size: 0.6rem;
		margin-top: 1rem;
		padding: 0 2rem;
	}

	/* MENU SECTION */
	.menu .container-form {
		margin-top: 2rem;
		padding: 0 1rem;
	}

	.search-box {
		width: 85%;
		height: 3rem;
		padding: 0 1rem;
	}

	.search-box input {
		font-size: 0.8rem;
	}

	.btn-search {
		border-radius: 30px;
	}

	.menu .container-b {
		margin-top: 1rem;
		padding: 0;
	}

	.list-container {
		width: 90%;
		padding: 0.5rem;
		border-radius: 10px;
	}

	.list-container .list {
		width: 9rem;
		height: 14rem;
		border-radius: 5px;
		margin: 0.2rem;
	}

	.thumbnail {
		border-radius: 4px;
	}

	.thumbnail img {
		border-radius: 4px;
	}

	.title {
		margin-top: -0.6rem;
		padding: 0 0.5rem;
		font-size: 0.6rem;
	}

	.describe {
		font-size: 0.5rem;
		padding: 0.2rem 0.5rem;
	}

	.list .button a {
		font-size: 0.8rem;
		padding: 0.3rem 2.2rem;
		border-radius: 5px;
	}

	/* APP DETAIL */
	.box-detail {
		width: 90%;
		padding: 1rem;
		border-radius: 8px;
	}

	.box-detail .row1 {
		display: block;
	}

	.box-detail .row1 .col1 {
		width: 100%;
	}

	.box-detail .row1 .col2 {
		width: 100%;
		padding: 0;
	}

	.box-detail .row1 .col2 h1 {
		text-align: center;
		font-size: 1.3rem;
		font-weight: 700;
		margin-top: 0.5rem;
	}

	.btn-download {
		margin-top: 2rem;
		display: flex;
		justify-content: center;
	}

	.box-detail .row1 .col2 a {
		font-weight: 700;
		padding: 0.8rem 3.8rem;
		border-radius: 5px;
	}

	.box-detail p {
		margin-top: 0.5rem;
		font-size: 0.8rem;
	}

	.box-detail .row2 h3 {
		font-size: 1.2rem;
		margin-top: 2rem;
	}

	.box-detail .row2 .ss {
		width: 100%;
		display: block;
	}

	.box-detail .row2 .ss img {
		width: 100%;
		margin: 0.5rem 0;
		border-radius: 5px;
	}

	/* FOOTER */
	footer .copyright {
		font-size: 0.8rem;
	}

	/* PAGES */
	.boxterms {
		width: 90%;
		margin: 0.5rem auto;
		padding: 1rem;
		border-radius: 5px;
	}

	.boxterms h1 {
		font-size: 1.5rem;
	}

	.boxterms p {
		font-size: 0.8rem;
		margin-top: 1.5rem;
	}
}
