/*
====================================================
***  GLOBAL STYLING
====================================================
*/

html {
	scroll-behavior: smooth;
	overflow-x: auto;
}

body {
	color: hsl(210, 40%, 10%);
	font-family: 'Ubuntu', Calibri, sans-serif;
	margin: 0;
	padding: 0;
	font-size: 1.1rem;
	overflow-x: hidden;
	background-color: white;
}

* {
	box-sizing: border-box;
	font-family: 'Ubuntu', Calibri, sans-serif;
}

button, .button {
	border: 0;
	background: transparent;
	border-radius: 0.3em;
	line-height: 1.35;
	display: inline-block;
	padding: 0.75rem 1.75rem;
	font-size: 1rem;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

button:hover {
	cursor: pointer;
}

.button:hover {
	cursor: pointer;
	color: #fff;
	background: hsl(39, 100%, 60%);
	border-color: hsl(39, 100%, 60%);
}

.button-primary {
	color: #fff;
	background: hsl(39, 100%, 50%);
}

.button-secondary {
	color: hsl(39, 100%, 50%);
	border: 2px solid hsl(39, 100%, 50%);
}

.button-alert {
	background: hsl(20, 50%, 50%;);
}

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

h1 {
	font-size: 3rem;
	margin: 1.5rem 0 0.75rem;
	line-height: 1.1;
}

h2 {
	font-size: 2rem;
	margin: 1.5rem 0 0.75rem;
	line-height: 1.2;
}


h3 {
	font-size: 1.5rem;
	margin: 1.5rem 0 0.75rem;
	line-height: 1.3;
}

p {
	font-size: 1.1rem;
	line-height: 1.5;
	max-width: 60rem;
}

i {
	color: orange;
}

ul {
	list-style-type: none;
}

.form-login {
	display: flex;
	flex-wrap: wrap;
}

.form-login, .form-signup {
	display: block;
	padding: 2rem;
	max-width: 30rem;
	margin: 0 auto;
	justify-content: space-between;
}

.form-login .button, .form-signup .button {
	margin-top: 1rem;
}

.form-login label, .form-signup label {
	width: 100%;
	font-size: 1.1rem;
	text-align: left!important;
}

.form-login h1, .form-signup h1 {
	margin-top: 0!important;
}

input[type="text"], input[type="password"], input[type="email"] {
	background: #f2f2f2;
    border: none;
	display: block;
	padding: 0.5rem 0.6rem;
	margin: 0.25rem 0 0.75rem;
	width: 100%;
	font-size: 1.1rem;
}

input[type="submit"] {
	margin: 0.5rem 0;
	display: inline-block;
	width: 100%;
}

label.checkbox:hover {
	cursor: pointer;
}

.accordion {
	margin: 1.5rem auto;
	max-width: 50rem;
	text-align: left;
	border-bottom: 1px solid lightgrey;
}

.accordion-title {
	font-size: 1.2rem;
	position: relative;
	padding: 0.5rem;
	width: 100%;
	display: block;
	transition: color 0.3s ease-in-out;
}

.accordion-title:hover {
	color: orange;
	cursor: pointer;
}

.accordion-title::after {
	content: "+";
	position: absolute;
	right: 1rem;
    top: 0.25rem;
	font-size: 1.5rem;
	font-weight: normal;
}

.accordion-text {
	margin-top: 0.2rem;
	max-width: 50rem;
	display: none;
	padding: 0.5rem;
}

.accordion.is-open .accordion-title::after {
	content: "–";
}

.accordion.is-open .accordion-text {
	display: block;
}

.logo {
	width: 100%;
	max-width: 13rem;
	transition: opacity 0.3s ease-in-out;
}

.logo:hover {
	opacity: 0.6;
}

.content-header { 
	display: flex;
	max-width: 80rem;
	padding: 0 2rem;
	margin: 1.25rem auto;
	align-items: center;
	justify-content: space-between;
}

.content-main {
	min-height: 80vh;
	max-width: 80rem;
	margin: 1rem auto;
	padding: 0 2rem;
}

.content-footer {
	background: hsl(210, 8%, 21%);
	color: #fff;
	padding: 2rem;
	margin: 0 auto;
	max-width: 80rem;
	position: relative;
	text-align: center;
}

.content-footer::before {
	content: "";
	background: hsl(210, 8%, 21%);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	width: 100vw;
	height: 100%;
	z-index: -1;
}

.content-navigation ul {
	display: flex;
	align-items: center;
	width: 100%;
	list-style-type: none;
	padding: 0;
	margin: 0;
	margin-left: 5rem;
}

.content-navigation a {
	color: hsl(210, 8%, 21%);
	padding: 0.5rem 1.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 1rem;
	transition: color 0.3s ease-in-out;
}

.content-navigation a:hover {
	color: orange;
}

.link-signup {
	margin-left: 10rem;
}

.link-signup a, .link-signup a:hover {
	color: #fff;
}

.content-intro {
	background: #fafafa;
	padding: 6rem 0;
	position: relative;
}

.content-intro h1 {
	font-size: 3.5rem;
	margin: 2rem 0;
}

.content-intro h2 {
	font-weight: normal;
	margin: 3rem 0 1rem;
}

.content-intro::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	right: 0;
	transform: translateX(-50%);
	width: 100vw;
	height: 100%;
	background: #fafafa;
	z-index: -1;
}

.content-intro .button-cta {
	margin-top: 3rem;
}

.content-features {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 5rem 0;
}

.feature-block {
	text-align: center;
	padding: 2rem;
	width: 33.33%;
}

.content-prices {
	display: flex;
	flex-wrap: wrap;
	padding: 8rem 0;
}

.price-block {
	background: #fafafa;
	width: 28%;
	margin: 2.5%;
	border: 1px solid #ededed;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	border-radius: 0.2em;
	padding: 0.5rem 2rem 2rem;
}

.price-block h3 {
	width: 100%;
	display: block;
	text-align: center;
}

.price-block .price-tag {
	display: block;
	width: 100%;
}

.price-block .price {
	font-size: 3.5rem;
	font-weight: normal;
}

.price-block ul {
	display: block;
    width: 100%;
    padding: 2rem 0;
    line-height: 1.5;
    margin: 0;
}

.price-block li {
	width: 100%;
	padding: 0.5rem 1rem;
	border-bottom: 1px dotted #ddd;
	font-size: 1.15rem;
}

.price-block .button {
	margin: 0 auto;
}

.price-currency {
	font-weight: bold;
	font-size: 2rem;
}

.section-title {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 2rem;
	width: 100%;
	display: block;
	margin: 1rem auto 2rem;
}

.content-faqs {
	padding: 7rem 0;
	text-align: center;
}

.content-faqs .button {
	margin: 3rem auto;
}

.navigation-footer {
	display: inline-block;
}

.navigation-footer ul {
	margin: 0;
	padding: 0;
}

.navigation-footer a {
	font-size: 1.1rem!important;
	transition: color 0.3s ease-in-out;
}

.navigation-footer a:hover {
	color: hsl(39, 100%, 60%);
}

.navigation-footer li {
	display: inline;
	margin: 0;
}

.navigation-footer li:after {
	content: " | ";
	margin: 0 1.5rem;
}

.copyright {
	display: inline;
}

i.fas {
	width: 4rem;
	height: 4rem;
	display: block;
	margin: 0 auto;
}

i.fa-magic {
	background: url("../img/icon-magic.svg") no-repeat 50%;
}

i.fa-bolt {
	background: url("../img/icon-bolt.svg") no-repeat 50%;
}

i.fa-tag {
	background: url("../img/icon-tag.svg") no-repeat 50%;
}

@media screen and (max-width: 48em) {
	.content-navigation a {
		padding: 0.5rem 1rem;
	}

    .content-header {
        justify-content: center;
    }

    .content-intro {
        padding: 2rem 0 4rem;
    }

    .content-intro h1 {
        font-size: 2.5rem;
    }

    .feature-block, .price-block {
        width: 100%;
    }

    .content-features {
        padding: 3rem 0;
    }

    .content-prices, .content-faqs {
        padding: 3rem 0;
    }

    .navigation-footer li:last-of-type::after {
        display: none;
    }

    .copyright {
        display: block;
        margin: 1rem auto;
    }
}

@media screen and (min-width: 48em) and (max-width: 64em) {
    .feature-block {
        width: 50%;
    }
}

@media screen and (max-width: 64em) {
    .content-header {
        flex-wrap: wrap;
    }

    .content-navigation ul {
        margin: 1rem 0;
        flex-wrap: wrap;
    }

    .link-signup {
        margin: 1rem;
    }
}

.postman-select {
	padding: 0.5rem;
	font-size: 1.1rem;
	background: #dcdcdc;
	color: #444;
	width: auto;
}
