:root {
	--white: #fff;
	--sandwhite: #f9f9f9;
	--black: #333;
	--seagreen: #00BCD4;
	--darkblue: #311B92;
	--lightgrey: #f4f4f4;
	--darkgrey: #c3c3c3;
}
body {
	margin: 0;
	font-family: Arial, sans-serif;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background-image: url('img/footer-bg-2.png');
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: 100%;
}
img {
	max-width: 100%;
}
header, footer {
	background-color: var(--lightgray);
	padding: 1rem 2rem;
}

/* ------------------------------------ Typography */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
body {
	font-family: "Open Sans", sans-serif;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong {
	color: var(--darkblue);
	font-weight: 800;
}
h1 {
	font-size: 72px;
}
h2 {
	font-size: 60px;
}
h3 {
	font-size: 48px;
}
h4 {
	font-size: 36px;
}
h5 {
	font-size: 24px;
	line-height: 32px;
}
p {
	font-size: 24px;
	line-height: 32px;
}
.hero h1 {
	font-size: 48px;
	text-align: left;
}
.steps p {
	font-size: 18px;
}
h1, h2 {
	position: relative;
	padding-bottom: 20px;
}
h1:after,
h2:after {
content: '';
	width: 120px;
	height: 8px;
	border-radius: 8px;
	position: absolute;
	bottom: 0;
	left: -20px;
	background: #673AB7;
	background: linear-gradient(216.3deg, #00BCD4 -58.43%, #673AB7 58.56%);
}
h3, h4, h5, h6 {
	margin-bottom: 0;
}
ul {
	list-style: none;
}
ul li {
	text-align: left;
	font-size: 24px;
	line-height: 40px;
	color: var(--black);
}
.hero ul {
	padding-left: 0;
}
.hero ul li:not(:last-of-type) {
	margin-bottom: 20px;
}

/* Numbers */
.numbers .container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.single-number {
	text-align: left;
}
.single-number h4 {
	color: var(--darkblue);
}
.single-number p {
	font-size: 18px;
	padding-left: 40px;
	position: relative;
}
.single-number p:before {
	content: '';
	background-image: url('img/ios-checkmark-outline.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 2px;
	margin-left: -40px;
	background-size: 29px 29px;
}
footer p {
	font-size: 12px;
}

section {
	padding: 60px 0;
}
.section-1 {
	background-color: var(--sandwhite);
}
.section-3 ul li,
.section-4 ul li {
	position: relative;
	padding-left: 60px;
	margin-bottom: 20px;
}
.section-3 ul li:before,
.section-4 ul li:before {
	content: '';
	background-image: url('img/cross.svg');
	background-size: 30px 30px;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 7px;
	left: 0;
}
.section-3 ul li:before,
.section-4 ul li:before {
	background-image: url('img/tick.svg');
}
section.terms {
	background-color: var(--sandwhite);
	padding: 80px 0 160px 0;
}
section.terms ul h5 {
	margin-bottom: 30px;
}
section.terms li {
	background-color: var(--white);
	padding: 20px;
	color: var(--black);
	border-radius: 20px;
	box-shadow: 2px 2px 5px #f7f7f7;
	margin-bottom: 30px;
}
section.terms li:nth-of-type(2) {
	margin-left: 60px;
}
section.terms li:nth-of-type(3) {
	margin-left: 120px;
}
section.terms li:nth-of-type(4) {
	margin-left: 10px;
}
body.dropshipping section.terms ul {
	display: flex; 
	flex-wrap: wrap;
	justify-items: space-between;
	padding-left: 0;
}
body.dropshipping section.terms ul li {
	font-size: 15px;
	line-height: 18px;
	max-width: 48%;
}
body.dropshipping section.terms ul h5 {
	width: 100%;
}
body.dropshipping section.terms ul li:last-of-type {
margin-left: 40px;
}
section.banner {
	margin-top: -120px;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.step {
  flex: 1 1 30%;
  background-color: #f7f7f7;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.step:hover {
  transform: translateY(-4px);
}

.step-icon {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #BD5456;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
  }
  .step {
    flex: 1 1 100%;
  }
}
.bg-image-center {
	background-image: url('img/center-bg.png');
	position: absolute;
	top: 40%;
	left: 0;
	width: 100%;
	height: auto;
	background-size: 100%;
}

/* ------------------------------------ Structure */
.container {
	max-width: 1000px;
	margin: 0 auto;
}
.container .columns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.container .columns > * {
	width: 50%;
	max-width: 46%;
	flex: 1 1 50%;
}
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
nav a {
	margin-left: 1rem;
	text-decoration: none;
	color:  var(--black);
}
.wrapper {
  	background-image: url('img/hero-bg.png');
	background-size: 70vw;
	background-repeat: no-repeat;
	background-position: top right;
}
.hero {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 250px 2rem;
	text-align: center;
}
.hero .hero-content {
	max-width: 60%;
	margin: 0 auto 0 0;
}
.cta-buttons {
	margin-top: 2rem;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}
.cta-buttons a {
	padding: 1rem 2rem;
	background: var(--seagreen);
	color: var(--white);
	text-decoration: none;
	border-radius: 8px;
	transition-duration: .3s;
}
.cta-buttons a:hover {
	opacity: .7;
}
.banner .container {
	background: #673AB7;
	background: linear-gradient(216.3deg, #00BCD4 -58.43%, #673AB7 58.56%);
	border-radius: 80px;
	padding: 40px 80px;
	color: var(--white);
	border-radius: 25px;
}


.contact-form {
  padding: 2rem;
}
.contact-form form {
	max-width: 900px;
	padding: 40px 80px;
	border-radius: 80px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background: rgba(255, 255, 255, .3);
	box-shadow: 2px 2px 2px 5px #f7f7f7;
}
.contact-form input, .contact-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact-form button {
  padding: 0.75rem;
  background: var(--seagreen);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 2rem 1rem;
  
}
.footer-links {
  margin-top: 1rem;
}
.footer-links a {
  margin: 0 1rem;
  color: #333;
  text-decoration: none;
}
/* ------------------------------------ Index */ 
body.home .hero .hero-content {
	max-width: 100%;
}
body.home .hero .hero-content h1 {
	padding-right: 20%;
}
body.home .hero ..cta-buttons {
	justify-content: space-between;
}
body.home .hero ..cta-buttons > * {
	width: 50%;
	max-width: 49%;
	flex: 1 1 50%;
}

/* ------------------------------------ RWD */ 
@media screen and (max-width: 1280px) {
	.container {
		max-width: 100%;
		padding-left: 4%;
		padding-right: 4%;
	}
	.container .columns > * {
		width: 100%;
		max-width: 100%;
		flex: 1 1 100%;
	}
	.hero .hero-content {
		max-width: 80%;
	}
}

