* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
}

header {
	display: flex;
	width: 90%;
	height: 10vh;
	margin: auto;
	align-items: center;
}

.logo-container,
.nav-links,
.cart {
	display: flex;
}

.logo-container {
    flex: 1;
    resize: both;
}
.logo-image {
	border-radius: 8px;
}
.logo {
	font-weight: 400;
	margin: 5px;
	border-radius: 5px;
	overflow: hidden;	
}
nav {
	flex: 2;
}
.nav-links {
	justify-content: space-around;
	list-style: none;
}
.nav-link {
	color: #5f5f79;
	font-size: 18px;
	text-decoration: none;
}

.presentation {
	display: flex;
	width: 90%;
	margin: auto;
	min-height: 80vh;
    align-items: center;
    animation: drop 1.5s ease;
}
.introduction {
	flex: 1;
}
.intro-text h1 {
	font-size: 44px;
	font-weight: 500;
	background: linear-gradient(to right, #197E94,#07C0BE);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.intro-text p {
	margin-top: 5px;
	font-size: 22px;
	color: #363636;
}

.intro-text table {
	width: 100%;
	padding:0 15px;
}

.coming-soon-container {
    display: flex;
    justify-content: center;
}
  
.coming-soon-text {
    font-size: 24px;
    margin-bottom: 50px;
}

.contact {
	display: flex;
    width: 40%;
	margin: auto;
	min-height: 80vh;
    align-items: center;
    animation: drop 1.5s ease;
}


.cover {
	flex: 1;
	display: flex;
	justify-content: center;
	height: 60vh;
}
.cover img {
	height: 100%;
	animation: drop 1.5s ease;
}

.contactUsLogo {
	flex: 1;
	display: flex;
	justify-content: center;
}
.contactUsLogo img {
	height: 100%;
	width: 100%;
	animation: drop 1.5s ease;
	border-radius: 24px;
}

.big-circle {
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: -1;
	opacity: 0.5;
    height: 80%;
}
.medium-circle {
	position: absolute;
	top: 30%;
	right: 30%;
	z-index: -1;
	height: 60%;
	opacity: 0.4;
}
.small-circle {
	position: absolute;
	bottom: 0%;
	left: 20%;
	z-index: -1;
}

@keyframes drop {
	0% {
		opacity: 0;
		transform: translateY(-80px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

@media screen and (max-width: 1024px) {
	.presentation {
		flex-direction: column;
    }
    .contact {
        flex-direction: column;
    }
	.introduction {
		margin-top: 5vh;
		text-align: center;
	}
	.intro-text h1 {
		font-size: 30px;
	}
	.intro-text p {
		font-size: 18px;
	}
	.cta {
		padding: 10px 0px 0px 0px;
	}
	.laptop-select {
		bottom: 5%;
		right: 50%;
		width: 50%;
		transform: translate(50%, 5%);
	}
	.cover img {
		height: 80%;
		width: 80%;
		object-fit: contain;
    }
    .circleLogo img {
        height: 80%;
    }
	.small-circle,
	.medium-circle,
	.big-circle {
		opacity: 0.2;
	}
}