@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700|Roboto:300,400,500,700');

body {
	font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
	font-size: 16px;
	padding: 0;
	margin: 0;
}

h2 {
	font-size: 40px;
	margin-bottom: 10px;
}

a {
	text-decoration: none;
}

.social a {
	color: white;
	margin: 0 10px;
	font-size: 20px;
	transition: color 0.5s;
}

.social a:hover {
	color: #ff305b;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 60px;
	background-color: #000000cc;
	backdrop-filter: blur(10px);
	padding: 0 5%;
	box-sizing: border-box;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
	z-index: 10;
}

header div {
	display: inline-block;
}

.ham-icon {
	display: none;
}

@media screen and (max-width: 700px) {
	.navbar {
		display: none;
	}

	.ham-icon {
		display: inline-block;
	}
}

header ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

header li {
	float: left;
	margin: 0 10px;
}

header a {
	color: white;
	font-weight: 300;
	font-size: 18px;
	transition: color 0.5s;
}

header a:hover {
	color: #ff305b;
}

.logo a {
	color: #ff305b;
	font-weight: 600;
	font-size: 25px;
	margin-right: 20px;
}

/* ------------------------------------------- */

section {
	height: fit-content;
	margin: 0;
	padding: 0;
}

.slider {
	height: 100vh;
	background: url(img/slider/slider.jpg) repeat scroll center center / cover;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.slider::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.8);
}

.slider h3 {
	position: relative;
	color: white;
	margin: 0;
	font-size: 22px;
}

.slider h1 {
	position: relative;
	color: #ff305b;
	font-size: 60px;
	margin: 0;
	text-transform: uppercase;
}

.word-changer {
	display: inline-block;
	position: relative;
	border-right: 2px solid white;
	overflow: hidden;
}

.word-changer h4 {
	display: inline-block;
	color: white;
	margin: 0;
	font-weight: 300;
	font-size: 20px;
	text-align: start;
	overflow: hidden;
}

@keyframes word-1-anim {

	0%,
	100% {
		width: 0;
	}

	33%,
	66% {
		width: 75px;
	}
}

.word-1 {
	animation: word-1-anim 2s ease infinite;
}

/* ------------------------------------------- */

.about {
	background-color: white;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.about>div {
	/* flex: 1 1 400px; */
	max-width: 400px;
	margin: 50px;
}

.about-image {
	margin-right: 0;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}

.overlay {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	overflow: hidden;
	width: 100%;
	height: 0;
	transition: all 0.5s;

	display: flex;
	align-items: center;
	justify-content: center;
}

.about-image:hover .overlay {
	top: 0;
	height: 100%;
}

.about-desc {
	margin-left: 0;
}

.about-image img {
	display: block;
	margin: auto;
	max-width: 100%;
}

.about-desc h2 {
	margin: 0;
	padding-left: 10px;
	border-left: 5px solid #ff305b;
	text-transform: uppercase;
	font-weight: 600;
}

.about-desc p {
	margin-bottom: 0;
	padding-bottom: 20px;
	border-bottom: 1px dashed #555555;
	color: #555555;
}

.about-data {
	list-style: none;
	margin: 20px 0;
	padding: 0;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.about-data li {
	width: 50%;
	margin-bottom: 5px;
	color: #555555;
}

.about-data li span {
	color: #222222;
}

.about-desc button {
	transition: background-color 0.5s;
	padding: 12px 20px;
	background-color: #ff305b;
	color: white;
	border: none;
	border-radius: 5px;
	margin: 0 20px 20px 0;
	font-weight: 600;
}

.about-desc button:hover {
	background-color: #901931;
}

button i {
	margin-left: 5px;
}

/* ------------------------------------------- */

.service {
	padding: 20px;
	background-color: #eeeeee;
	display: flex;
	flex-direction: column;
	align-items: center;
}

section .lines {
	width: 100px;
	margin: 2px 0;
	border-bottom: 2px solid #ff305b;
}

section .lines:nth-of-type(2) {
	width: 200px;
}

.service-elements {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 20px 0 30px;
}

.service-elements div {
	transition: background-color 0.5s, box-shadow 0.5s;
	border-radius: 5px;
	max-width: 250px;
	text-align: center;
	padding: 20px;
}

.service-elements div:hover {
	background-color: white;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.service-elements i {
	display: inline-block;
	transition: font-size 0.5s;
	font-size: 40px;
	line-height: 50px;
	color: #ff305b;
}

.service-elements div:hover i {
	font-size: 50px;
}

/* ------------------------------------------- */

.portfolio {
	padding: 20px;
	background-color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.portfolio-buttons {
	margin: 30px 0;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.portfolio-buttons button {
	background-color: transparent;
	border: none;
	font-size: 16px;
	margin: 5px 20px;
	color: #333333;
	text-transform: uppercase;
	cursor: pointer;
}

.portfolio-buttons button:first-child {
	color: #ff305b;
}

.portfolio-imgs {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin-bottom: 30px;
}

.portfolio-imgs img {
	flex: 1 1 350px;
	max-width: 350px;
	margin: 20px;
}

/* ------------------------------------------- */

.fun-facts {
	background-color: #eeeeee;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.fun-facts div {
	margin: 50px;
	text-align: center;
}

.fun-facts i {
	font-size: 25px;
	color: #ff305b;
}

.fun-facts h3 {
	font-size: 27px;
	margin: 10px 0;
}

.fun-facts h5 {
	font-size: 18px;
	font-weight: 600;
	margin: 10px 0 0;
	color: #555555;
}

/* ------------------------------------------- */

.testimonial {
	padding: 20px;
	background-color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.feedback-card {
	background-color: #eeeeee;
	/* max-width: 650px; */
	margin: 30px 0 0 0;
	padding: 30px;
	border-radius: 10px;
	display: flex;
	flex-flow: row wrap;
	overflow: hidden;
	position: relative;
}

.feedback-card * {
	z-index: 2;
}

.feedback-card::before {
	content: "";
	position: absolute;
	width: 200px;
	height: 300px;
	background-color: #ff305b;
	top: -120px;
	left: -120px;
	rotate: 45deg;
	z-index: 1;
}

.feedback-card img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: 0 30px 20px 0;
}

.feedback-card h3 {
	font-size: 25px;
	font-weight: 600;
	margin: 0 0 10px;
}

.feedback-card h4 {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 20px;
	color: #555555;
}

.feedback-card p {
	font-style: italic;
	min-width: 200px;
	max-width: 520px;
}

.review-stars i {
	color: #d8ad01;
}

.nav-dots {
	margin: 10px 0 30px;
}

.nav-dots div {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 2px;
	background-color: transparent;
	border: 2px solid #ff305b;
	border-radius: 10px;
}

.nav-dots div:first-child {
	background-color: #ff305b;
	width: 20px;
}

/* ------------------------------------------- */

.blog {
	padding: 20px;
	background-color: #eeeeee;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.blog-elements {
	margin: 40px 0 40px;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.blog-elements article {
	background-color: white;
	margin: 20px;
	max-width: 300px;
}

.blog-elements article>* {
	margin: 15px;
}

.blog-elements img,
.blog-elements iframe {
	margin: 0;
	width: 100%;
	height: 170px;
	object-fit: cover;
}

.blog-elements h6 {
	font-size: 16px;
	font-weight: 400;
	color: #555555;
}

.blog-elements h3 {
	font-weight: 600;
}

.blog-elements p {
	color: #555555;
}

.blog-elements a {
	display: inline-block;
	color: #ff305b;
	transition: color 0.5s;
}

.blog-elements a:hover {
	color: #901931;
}

/* ------------------------------------------- */

.contact {
	padding: 20px;
	background-color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contact-form {
	margin: 30px 50px;
	max-width: 700px;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.contact-form input,
.contact-form textarea {
	outline: none;
	font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
	margin: 10px;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #aaaaaa;
	border-radius: 5px;
	transition: border-color 0.5s, box-shadow 0.5s;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #ff305b;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

#Name,
#Email {
	flex: 1 1 200px;
}

#Subject {
	width: 100%;
}

.contact-form textarea {
	width: 100%;
	resize: vertical;
	min-height: fit-content;
}

#Submit {
	background-color: #ff305b;
	color: white;
	text-transform: uppercase;
	padding: 10px 20px;
	transition: background-color 0.5s;
}

#Submit:hover {
	background-color: #901931;
}

/* ------------------------------------------- */

footer {
	padding: 20px;
	background-color: #333333;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer .social {
	margin: 40px 0 10px;
}

footer h4 {
	margin: 10px 0 40px;
	font-weight: 400;
}

footer h4 a {
	color: #ff305b;
}