:root {
	--dark-purple: #5f2799;
	--medium-purple: #814fb1;
	--light-purple: d592ec;
	--dark-blue: #101728;
	--medium-blue: #1166b0;
	--light-blue: #3baae7;
	--pink: #d91789;
	--orange: #fb8b40;
	--gray: #8b8b8b;
	--light-gray: #f5f5f5;
  }

  @keyframes go-foward {
	from {
	  transform: translateX(-300px);
	  opacity: .4;
	}
	to {
	  transform: translateX(0);
	  to {opacity: 1};
	}
  } 
  
  .fadeIn {
	animation-name: go-foward;
	animation-duration: 3.5s;
  }

  @keyframes go-back {
	from {
	  transform: translateX(300px);
	  opacity: .4;
	}
	to {
	  transform: translateX(0);
	  to {opacity: 1};
	}
  } 
  
  .fadeOut {
	animation-name: go-back;
	animation-duration: 3.5s;
  }

body {
    background: var(--dark-blue);
	width: 100%;
	margin: auto;
	padding: 0;
}

nav {
	width: 1040px;
    max-width: 90%;
    display: flex;
    margin: auto;
    margin-top: 35px;
    justify-content: space-between;
    align-content: center;
    align-items: center;
	color: var(--light-gray);
	text-transform: uppercase;
	font-family: "Signika", sans-serif;
	font-size: 1.2rem;
}

#nav-logo {
	display: flex;
	align-content: center;
    align-items: center;
	font-weight: 500;
	font-size: 1.6rem;
	text-shadow: 0px 0.5px 0.5px rgba(91, 7, 131, 0.2),
             0px 1px 2px rgba(91, 7, 131, 0.8),
             0px 2px 4px rgba(91, 7, 131, 0.8);
}

nav img {
    width: 60px;
	padding-right: 25px;
}

#nav-container {
		position: relative;
		margin: 60px auto;
		box-sizing: border-box;
        display: flex;
        padding-left: 30px;
		padding-right: 30px;
		margin: 0;
}

#nav-container a {
		display: flex;
		align-items: center;
		min-height: 40px;
		margin-left: 60px;
		cursor: pointer;
		user-select: none;
		color: var(--light-gray);
		text-decoration: none;
		&:first-child {
			margin-left: 0;
		}
		border-bottom: 3px solid transparent;
}

#nav-container a:hover {
    border-bottom: 3px solid var(--medium-purple);
}

#line {
	position: absolute;
	bottom: 0;
	height: 2px;
	background: red;
	transition: all 150ms ease-in-out;
}

.header {
	width: 1040px;
    max-width: 90%;
	min-height: 78vh;
	display: flex;
	margin: auto;
	margin-top: 35px;
	align-content: center;
    align-items: center;
	justify-content: space-between;
	font-family: "Inter", sans-serif;
	color: var(--light-gray);
	margin-bottom: 35px;
}

.hide {
	display: none;
}

.header-img img {
	height: 75vh;
	width: auto;
}

.header-text {
	max-width: 40%;
	font-size: 1.6rem;
	display: flex;
	gap: 35px;
	flex-direction: column;
}

.header-text h1 {
	text-shadow: 0px 0.5px 0.5px rgba(39, 175, 245, 0.4),
             0px 1px 2px rgba(39, 175, 245, 0.8),
             0px 2px 4px rgba(39, 175, 245, 0.8);
}

.header-button {
	display: flex;
	align-items: center;
	justify-content: space-around;
	text-decoration: none;
	font-size: 1.3rem;
	color: var(--light-gray);
	background: linear-gradient(90deg, rgba(251,139,64,1) 0%, rgba(217,23,137,1) 33%, rgba(16,23,40,1) 85%);
	border-radius: 25px;
	padding: 15px 20px;
	//box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 1px, rgba(255, 255, 255, 0.25) 0px 1px 1px inset;
	box-shadow: rgba(27, 31, 35, 0.12) 0px 1px 3px, rgba(255, 255, 255, 0.24) 0px 1px 2px inset;
	width: auto;
	max-width: 80%;
	text-align: center;
}

.header-button:hover {
    transform: scale(1.1);
}

.header-button img {
    width: 8%;
}

@media (max-width: 700px) { 
	#nav-logo span {
		display: none;
	}
	nav {
		width: 90%;
		margin-top: 25px;
	}
	#nav-container {
		padding-left: 0px;
        padding-right: 0px;
        margin-left: 0px;
        gap: 8px;
	}
	#nav-container a {
		margin-left: 0px;
		font-size: 1rem;
	}
	nav img {
		padding-right: 15px;
	}
	.header {
		flex-direction: column-reverse;
		text-align: center;
		margin-top: 25px;
	}
	.header-img img {
		height: auto;
		width: 90%;
	}
	.header-text {
		max-width: 90%;
		font-size: 1.4rem;
		gap: 15px;
	}
	#header-two .header-text {
		font-size: 1.3rem;
		gap: 20px;
	}
	.header-button {
		max-width: 100%;
	}
 }

 #services {
	background: var(--light-gray);
	text-align: center;
	padding: 35px 0;
 }

 .services-bar {
	background: var(--dark-blue);
	width: 60px;
	height: 15px;
	border-radius: 25px;
	margin: auto;
 }

 .services-title h2 {
	font-family: "Signika", sans-serif;
	color: var(--dark-blue);
	font-size: 2rem;
	margin: auto;
	margin-top: 35px;
 }

 .services-title h2:after {
	content: url("./assets/belle.png");
	margin-left: -10px;
	position: relative;
    top: -9px;
 }

 .services-title h3 {
	font-family: "Inter", sans-serif;
	color: var(--gray);
	width: 90%;
	max-width: 700px;
	margin: 35px auto;
 }

 .services-options {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 1040px;
    max-width: 90%;
	margin: 60px auto;
	justify-content: space-between;
	gap: 15px;
 }

 .services-card-bord {
	background: linear-gradient(90deg, rgba(251,139,64,1) 0%, rgba(217,23,137,1) 33%, rgba(16,23,40,1) 85%);
	border-radius: 25px;
	padding: 4px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
 }

 .services-card {
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: space-evenly;
	gap: 10px;
	width: 180px;
	padding: 15px;
    border-radius: 30px;
    text-align: center;
	background: var(--light-gray);
	height: 180px;
	color: var(--dark-blue);
	font-family: "Inter", sans-serif;
	font-weight: 600;
 }

 .services-card img { 
	width: 80px;
 }

 .services-button {
	display: flex;
	align-items: center;
	justify-content: space-around;
	text-decoration: none;
	font-size: 1.2rem;
	color: var(--light-gray);
	background: linear-gradient(90deg, rgba(251,139,64,1) 0%, rgba(217,23,137,1) 33%, rgba(16,23,40,1) 85%);
	border-radius: 25px;
	margin: 25px auto;
	padding: 15px 20px;
	box-shadow: rgba(27, 31, 35, 0.12) 0px 1px 3px, rgba(255, 255, 255, 0.24) 0px 1px 2px inset;
	width: 270px;
	max-width: 80%;
	text-align: center;
	font-family: "Inter", sans-serif;
 }

 .services-button:hover {
    transform: scale(1.1);
}

 @media (max-width: 700px) {
	.services-options {
		justify-content: center;
	}
 }

 #about-us {
	background: url("./assets/about-us-background.webp");
	text-align: center;
	padding: 35px 0;
	background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
 }

 .about-us-bar {
	background: var(--light-gray);
	width: 60px;
	height: 15px;
	border-radius: 25px;
	margin: auto;
 }

 #about-us h2 {
	font-family: "Signika", sans-serif;
	color: var(--light-gray);
	font-size: 2rem;
	margin: auto;
	margin-top: 35px;
 }

 .about-us-text {
	width: 1040px;
    max-width: 90%;
	margin: 35px auto;
}

.about-us-first-p, .about-us-third-p {
	text-align: left;
	margin: 15px auto 15px 0;
	width: 85%;
	background: var(--dark-blue);	
	border-left: 10px solid var(--pink);
	border-radius: 10px;
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
	padding: 15px;
	padding-left: 25px;
	opacity: 55%;
}

.about-us-third-p {
	border-color: var(--orange);
}

 .about-us-second-p {
	text-align: right;
	margin: 5px 0 5px auto;
	width: 85%;
	background: var(--dark-blue);
	border-right: 10px solid var(--light-blue);
	border-radius: 10px;
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
	padding: 15px;
	padding-right: 25px;
	opacity: 55%;
 }

 .about-us-text p {
	font-family: "Inter", sans-serif;
	font-weight: 600;
	opacity: 100%;
	color: #fff;
	line-height: 1.8;
 }

 .about-us-first-p mark {
	color: var(--pink);
 }

 .about-us-second-p mark {
	color: var(--light-blue);
 }

 .about-us-third-p mark {
	color: var(--orange);
 }

 .about-us-second-p mark, .about-us-first-p mark, .about-us-third-p mark {
	background: none;
	font-style: italic;
 }

 .services-title h2:after, #about-us h2:after {
	content: url("./assets/belle.png");
	margin-left: -10px;
	position: relative;
    top: -9px;
 }

 @media (max-width: 700px) {
	#about-us {
		background-position: center;
	}
 }

 #footer {
	background: url("./assets/footer-background.webp");
	background-position-x: right;
    background-position-y: top;
    background-repeat: no-repeat;
	width: 100%;
 }

 footer {
	padding: 25px 0;
	width: 1040px;
    max-width: 90%;
	margin: auto;
	display: flex;
	gap: 160px;
    justify-content: space-between;
	flex-direction: row-reverse;
	font-family: "Signika", sans-serif;
	color: var(--light-gray);
 }

 #footer-logo {
	display: flex;
	text-align: center;
	justify-content: space-between;
    gap: 0px;
	align-content: center;
    align-items: center;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 1.6rem;
	text-shadow: 0px 0.5px 0.5px rgba(91, 7, 131, 0.2),
             0px 1px 2px rgba(91, 7, 131, 0.8),
             0px 2px 4px rgba(91, 7, 131, 0.8);
}

#footer-logo img {
    width: 60px;
}

.footer-contact-links {
	display: flex;
	gap: 10px;
}

.footer-contact-links img {
	width: 25px;
}

small { 
	color: var(--light-gray);
	font-family: "Inter", sans-serif;
	text-align: center;
	width: 1040px;
    max-width: 90%;
	margin: auto;
	margin-bottom: 0;
	padding-bottom: 0px;
}

small p {
	padding-bottom: 10px;
	margin-bottom: 0;
}

@media (max-width: 700px) {
	#footer {
		background-position-x: center;
	}
	footer {
		justify-content: space-between;
		gap: 20px;
	}
	#footer-logo span {
		display: none;
	}
 }