/* Start Variables */

:root {
	--main-color: #19c8fa;
	--transparent-color: rgba(15, 116, 143, 0.7);
	--heading-color: #777;
	--section-padding: 100px;
}

/* End Variables */

/* Start Global Rules */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Open Sans', sans-serif;
}
ul {
	list-style: none;
}
.container {
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}
/* Small */
@media(min-width: 768px) {
	.container {
		width: 750px;
	}
}
/* Medium */
@media(min-width: 992px) {
	.container {
		width: 970px;
	}
}
/* Large */
@media(min-width: 1200px) {
	.container {
		width: 1170px;
	}
}

/* End Global Rules */

/* Start Components */

.main-heading {
	text-align: center;
}
.main-heading h2 {
	position: relative;
	font-size: 40px;
	font-weight: normal;
	margin-bottom: 70px;
	text-transform: uppercase;
}
.main-heading h2::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -30px;
	transform: translateX(-50%);
	width: 120px;
	height: 2px;
	background-color: #333;
}
.main-heading h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -38px;
	transform: translateX(-50%);
	width: 14px;
	height: 14px;
	border: 2px solid #333;
	border-radius: 50%;
	background-color: white;
}
.main-heading p {
	width: 550px;
	max-width: 100%;
	margin: 0 auto 100px;
	line-height: 2;
	color: var(--heading-color);
}

/* End Components */

/* Start Header */

header {
	position: absolute;
	left: 0px;
	width: 100%;
	z-index: 2;
}
header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	min-height: 97px;
}
header .container::after {
	content: "";
	position: absolute;
	background: #a2a2a2;
	height: 1px;
	bottom: 0px;
	left: 15px;
	width: calc(100% - 30px);
}
header .logo img {
	height: 40px;
}
header nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
header nav .toggle-menu {
	color: white;
	font-size: 20px;
}
@media (min-width: 768px) {
	header nav .toggle-menu {
		display: none;
	}
}
header nav ul {
	display: flex;
}
@media (max-width: 768px) {
	header nav ul {
		display: none;
	}
	header nav .toggle-menu:hover + ul {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0px;
		width: 100%;
		background: rgba(0, 0, 0, 0.5);
	}
	header nav .toggle-menu:hover + ul li a {
		padding: 15px;
	}
}
header nav ul li a {
	display: block;
	padding: 40px 10px;
	text-decoration: none;
	font-size: 14px;
	color: white;
	transition: .3s;
	position: relative;
	z-index: 2;
}
header nav ul li a.active,
header nav ul li a:hover {
	color: var(--main-color);
	border-bottom: 1px solid var(--main-color);
}
header nav .form {
	position: relative;
	width: 40px;
	height: 30px;
	margin-left: 30px;
	border-left: 1px solid white;
}
header nav .form i {
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
	font-size: 20px;
	color: white;
}

/* End Header */

/* Start Landing */

.landing {
	position: relative;
	min-height: 100vh;
	background-color: #1f2021;
	background-image: url('../images/landing.jpg');
	background-size: cover;
}
.landing .overlay {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.6);
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
.landing .text {
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	width: 50%;
	padding: 50px;
	background-color: var(--transparent-color);
	color: white;
	display: flex;
	justify-content: flex-end;
}
.landing .content {
	max-width: 500px;
}
.landing .content h2 {
	font-size: 32px;
	font-weight: normal;
	line-height: 1.5;
	margin-bottom: 20px;
}
.landing .content p {
	font-size: 14px;
	line-height: 2;
}
@media (max-width: 768px) {
	.landing .text {
		width: 100%;
		max-height: 400px;
		padding: 25px;
	}
	.landing .content {
		max-width: 100%;
	}
	.landing .content h2 {
		line-height: 1.2;
	}
	.landing .content p {
		line-height: 1.5;
	}
}
.landing .change-background {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #ddd;
}
@media (max-width: 768px) {
	.landing .change-background {
		display: none;
	}
}
.landing .left {
	left: 30px;
}
.landing .right {
	right: 30px;
}
.landing .bullets {
	position: absolute;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%);
	width: 80px;
	display: flex;
	justify-content: space-between;
}
.landing .bullets li {
	width: 20px;
	height: 20px;
	border: 1px solid #ddd;
	border-radius: 50%;
}
.landing .bullets li.active {
	background-color: var(--main-color);
	border-color: var(--main-color);
}

/* End Landing */

/* Start Services */

.services {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
}
@media (min-width: 768px) {
	.services .services-container {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
		grid-column-gap: 40px;
		grid-row-gap: 60px;
	}
}
.services .srv-box {
	display: flex;
}
.services .srv-box i {
	margin-right: 50px;
}
@media (max-width: 768px) {
	.services .srv-box {
		flex-direction: column;
		text-align: center;
		margin-bottom: 40px;
	}
	.services .srv-box i {
		margin: 0 0 30px;
	}
}
.services .srv-box h3 {
	margin-bottom: 30px;
	color: var(--main-color);
}
.services .srv-box p {
	line-height: 2;
	color: var(--heading-color);
}

/* End Services */

/* Start Design */

.design {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
	height: 600px;
	position: relative;
	background-image: url("../images/design-features.jpg");
	background-color: #1f2021;
	background-size: cover;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.design::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;background-color: rgba(0, 0, 0, 0.6);
}
.design .image,
.design .text {
	position: relative;
	z-index: 2;
	flex: 1;
}
.design .image {
	text-align: center;
}
@media (max-width: 768px) {
	.design .image {
		display: none;
	}
}
.design .image img {
	position: relative;
	bottom: -150px;
}
.design .text {
	padding: 50px;
	background-color: var(--transparent-color);
	color: white;
}
.design .text h2 {
	font-weight: normal;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.design .text ul li {
	padding: 15px 0px;
}
.design .text ul li::before {
	font-family: "Font Awesome 5 Free";
	content: "\f108";
	font-weight: 900;
	margin-right: 20px;
	position: relative;
	top: 1px;
}

/* End Design */

/* Start Portfolio */

.portfolio {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
}
.portfolio .shuffle {
	display: flex;
	justify-content: center;
}
.portfolio .shuffle li {
	padding: 10px;
}
.portfolio .shuffle li.active {
	background-color: var(--main-color);
	color: white;
}
.portfolio .imgs-container {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
}
.portfolio .imgs-container .box {
	position: relative;
	overflow: hidden;
}
.portfolio .imgs-container .box:hover img {
	transform: rotate(3deg) scale(1.1);
}
.portfolio .imgs-container .box:hover .caption {
	bottom: 0px;
}
@media (min-width: 768px) {
	.portfolio .imgs-container .box {
		flex-basis: 50%;
	}
}
@media (min-width: 1199px) {
	.portfolio .imgs-container .box {
		flex-basis: 25%;
	}
}
.portfolio .imgs-container .box img {
	max-width: 100%;
	transition: .3s;
}
.portfolio .imgs-container .box .caption {
	position: absolute;
	left: 0px;
	bottom: -100px;
	width: 100%;
	background-color: white;
	transition: .3s;
	padding: 20px;
}
.portfolio .imgs-container .box .caption h4 {
	font-weight: normal;
	margin-bottom: 10px;
}
.portfolio .imgs-container .box .caption p {
	color: var(--main-color);
}
.portfolio .more {
	background-color: var(--main-color);
	color: white;
	padding: 15px 20px;
	margin: 30px auto;
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	width: fit-content;
}

/* End Portfolio */

/* Start Video */

.video {
	position: relative;
}
.video::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.4);
	width: 100%;
	height: 100%;
}
.video video {
	width: 100%;
}
.video .text {
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--transparent-color);
	color: white;
	text-align: center;
	padding: 50px;
	max-height: 100%;
}
.video .text h2 {
	margin: 0 0 20px;
	font-weight: normal;
	text-transform: uppercase;
}
.video .text p {
	margin-bottom: 20px;
}
.video .text button {
	padding: 10px 20px;
	background-color: black;
	color: white;
	border: none;
	text-transform: uppercase;
}
@media (max-width: 768px) {
	.video .text h2,
	.video .text p {
		margin-bottom: 8px;
	}
}

/* End Video */

/* Start About */

.about {
	padding-top: var(--section-padding);
	overflow: hidden;
}
.about img {
	position: relative;
	bottom: -120px;
	max-width: 100%;
	margin-top: -120px;
}
@media (max-width: 768px) {
	.about img {
		bottom: -60px;
		margin-top: -60px;
	}
}

/* End About */

/* Start Stats */

.stats {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
	text-align: center;
	background-image: url("../images/stats.png");
	background-size: cover;
	position: relative;
}
.stats::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}
.stats .container {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.stats .container .box {
	color: white;
	padding: 50px;
	background-color: var(--transparent-color);
}
@media (max-width: 768px) {
	.stats .container .box {
		flex-basis: 100%;
	}
}
@media (min-width: 768px) {
	.stats .container .box {
		flex-basis: 50%;
	}
}
@media (min-width: 992px) {
	.stats .container .box {
		flex-basis: 25%;
	}
}
.stats .container .box i {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: black;
	margin: 0 auto 20px;
}
.stats .container .box .number {
	font-size: 50px;
	font-weight: bold;
	margin: 0 0 20px;
}
.stats .container .box p {
	font-size: 14px;
}

/*End Stats*/

/* Start Skills */

.skills {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
}
.skills .container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media (min-width: 992px) {
	.skills .container > div {
		flex-basis: 45%;
	}
}
.skills .container > div > h3 {
	margin: 0 0 30px;
	text-align: center;
	text-transform: uppercase;
	font-weight: normal;
}
.skills .container > div > p {
	color: var(--heading-color);
	line-height: 2;
	text-align: center;
	margin-bottom: 60px;
}
.skills .content {
	display: flex;
	margin-bottom: 30px;
	align-items: center;
}
.skills .content img {
	width: 100px;
	border-radius: 50%;
	margin-right: 50px;
}
.skills .content .text {
	border-bottom: 1px solid #ccc;
}
.skills .content .text .desc {
	text-align: left;
	line-height: 1.8;
	color: black;
	font-size: 16px;
}
.skills .content .text p {
	font-size: 14px;
	text-align: right;
	color: var(--heading-color);
	margin-bottom: 10px;
}
.skills .bullets {
	display: flex;
	justify-content: center;
	margin-top: 50px;
	margin-bottom: 50px;
}
.skills .bullets li {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 1px solid #aaa;
	margin-right: 10px;
}
.skills .bullets li.active {
	border-color: var(--main-color);
	background-color: var(--main-color);
}
@media (max-width: 768px) {
	.skills .content {
		flex-direction: column;
		text-align: center;
	}
	.skills .content img {
		margin: 0 auto 20px;
	}
	.skills .content .text p.desc {
		text-align: center;
	}
}
.skills .our-skills .prog-holder {
	margin-bottom: 40px;
}
.skills .our-skills .prog-holder h4 {
	margin-bottom: 15px;
	font-weight: normal;
	text-transform: uppercase;
}
.skills .our-skills .prog-holder .prog {
	height: 30px;
	background-color: #dedadc;
}
.skills .our-skills .prog-holder .prog span {
	display: block;
	height: 100%;
	position: relative;
	background-color: var(--main-color);
}
.skills .our-skills .prog-holder .prog span::before {
	content: attr(data-progress);
	position: absolute;
	top: -40px;
	right: -18px;
	width: 40px;
	padding: 4px 0px;
	border-radius: 4px;
	text-align: center;
	color: white;
	background-color: black;
}
.skills .our-skills .prog-holder .prog span::after {
	content: "";
	position: absolute;
	top: -15px;
	right: -8px;
	border-style: solid;
	border-width: 8px;
	border-color: black transparent transparent transparent;
}

/* End Skills */

/* Start Qoute */

.qoute {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
	background-image: url("../images/qoute.jpg");
	background-size: cover;
	text-align: center;
	color: white;
	position: relative;
}
.qoute::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}
.qoute .container {
	position: relative;
}
.qoute q {
	display: block;
	font-size: 30px;
	margin-bottom: 20px;
}
.qoute q::before {
	font-family: "Font Awesome 5 Free";
	content: "\f10d";
	font-weight: 600;
	position: relative;
	top: -8px;
}
.qoute q::after {
	font-family: "Font Awesome 5 Free";
	content: "\f10e";
	font-weight: 600;
	position: relative;
	top: 8px;
}

/* End Qoute */

/* Start Pricing */

.pricing {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
}
.pricing .plans {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
}
.pricing .plans .plan {
	background-color: #fcfcfc;
	text-align: center;
}
.pricing .plans .plan .head {
	padding: 40px 20px;
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
}
.pricing .plans .plan .head h3 {
	font-weight: normal;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.pricing .plans .plan .head span {
	font-size: 60px;
	font-weight: bold;
}
.pricing .plans .plan .head span::before {
	content: "$";
	position: relative;
	font-size: 25px;
	font-weight: normal;
	top: -40px;
	margin-right: 15px;
}
.pricing .plans .plan .head span::after {
	content: "/Mo";
	position: relative;
	right: -15px;
	font-size: 20px;
}
.pricing .plans .plan ul {
	border-bottom: 1px solid var(--main-color);
}
.pricing .plans .plan ul li {
	padding: 20px;
	position: relative;
}
.pricing .plans .plan ul li:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	width: 140px;
	height: 1px;
	background-color: var(--main-color);
}
.pricing .plans .plan .foot a {
	display: block;
	padding: 20px;
	width: fit-content;
	text-decoration: none;
	border: 1px solid var(--main-color);
	color: blue;
	margin: 30px auto;
}
.pricing .contact-text {
	font-size: 20px;
	margin: 50px auto 20px;
	text-align: center;
}
.pricing .contact-link {
	display: block;
	padding: 15px 30px;
	width: fit-content;
	text-decoration: none;
	border: 1px solid var(--main-color);
	background-color: var(--main-color);
	color: white;
	margin: 20px auto;
}

/* End Pricing */

/* Start Subscribe */

.subscribe {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
	background-image: url("../images/subscribe.jpg");
	background-size: cover;
	position: relative;
	color: white;
}
.subscribe::before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}
.subscribe .container {
	position: relative;
	display: flex;
	align-items: center;
}
@media (max-width: 991px) {
	.subscribe .container {
		flex-direction: column;
	}
}
.subscribe form {
	display: flex;
	position: relative;
	width: 500px;
	max-width: 100%;
}
.subscribe form i {
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
}
.subscribe form input[type="email"] {
	border: 1px solid white;
	border-right: none;
	background: none;
	padding: 20px 20px 20px 60px;
	caret-color: var(--main-color);
	color: white;
	width: calc(100% - 130px);
}
.subscribe form input[type="submit"] {
	width: 130px;
	background-color: var(--main-color);
	color: white;
	text-transform: uppercase;
	padding: 10px 20px;
	border: 1px solid white;
	border-left: none;
}
.subscribe form input::placeholder {
	color: white;
}
.subscribe form input[type="email"]:focus,
.subscribe form input[type="submit"]:focus {
	outline: none;
}
.subscribe p {
	line-height: 2;
	margin-left: 50px;
}
@media (max-width: 991px) {
	.subscribe p {
		margin: 30px 0px 0px;
		text-align: center;
	}
}

/* End Subscribe */

/* Start Contact */

.contact {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
}
.contact .content {
	display: flex;
	justify-content: space-between;
}
@media (max-width: 768px) {
	.contact .content {
		flex-direction: column;
	}
}
.contact .content form {
	flex-basis: 70%;
}
.contact .content form .main-input {
	display: block;
	width: 100%;
	padding: 20px;
	margin-bottom: 30px;
	border: 1px solid #ccc;
}
.contact .content form .main-input:focus {
	outline: none;
}
.contact .content form textarea.main-input {
	height: 200px;
}
.contact .content form input[type="submit"] {
	display: flex;
	margin-left: auto;
	padding: 20px;
	background-color: var(--main-color);
	color: white;
	cursor: pointer;
	border: none;
	text-transform: uppercase;
}
.contact .content .info {
	flex-basis: 25%;
}
@media (max-width: 768px) {
	.contact .content .info {
		order: -1;
		text-align: center;
	}
}
.contact .content .info h4 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 30px;
	text-transform: uppercase;
}
.contact .content .info .phone {
	display: block;
	color: var(--heading-color);
	margin-bottom: 10px;
}
.contact .content .info h4:nth-of-type(2) {
	margin-top: 90px;
}
@media (max-width: 768px) {
	.contact .content .info h4:nth-of-type(2) {
		margin-top: 30px;
	}
}
.contact .content .info address {
	line-height: 2;
	color: var(--heading-color);
}
@media (max-width: 768px) {
	.contact .content .info address {
		margin-bottom: 40px;
	}
}

/* End Contact */

/* Start Footer */

.footer {
	padding-top: calc(var(--section-padding) / 2);
	padding-bottom: calc(var(--section-padding) / 2);
	background-image: url("../images/subscribe.jpg");
	background-size: cover;
	position: relative;
	color: white;
	text-align: center;
}
.footer::before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}
.footer .container {
	position: relative;
}
.footer img {
	margin-bottom: 20px;
}
.footer p:not(.copyright) {
	width: fit-content;
	padding: 20px;
	margin: 20px auto;
	font-size: 22px;
	text-transform: uppercase;
	border-bottom: 1px solid white;
}
.footer .social-icons i {
	padding: 10px 15px;
}
.footer .copyright {
	margin-top: 60px;
}
.footer .copyright span {
	font-weight: bold;
	color: var(--main-color);
}

/* End Footer */