/* Fonts  */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");

/*	KeyFrames Animations	*/
@keyframes backToTopBounce {
	0% {transform: translateY(-1rem);} 
	50% {transform: translateY(-1.5rem);}
	100% {transform: translateY(-1rem);}
} 

/*	Start Root	----	Globals	----	*/
:root {
	--main-color: rgba(33, 155, 243, 0.8);
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Roboto", sans-serif;
	color: ;
}
* {
	box-sizing: border-box;
}
.clear__fix {
	clear: both;
}
.container {
	width: 73rem;
	margin: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}
.back__to__top {
	display: none;
	width: 3rem;
	height: 3rem;
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	text-decoration: none;
	color: rgba(0,0,0,0.8);
	background-color: var(--main-color);
	padding: 0.5rem;
	margin: 0 auto;
	border-radius: 0.5rem;
	padding-top: 1rem;
	text-align: center;
	animation: backToTopBounce 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	z-index: 99;
}
/*	End Root	----	Globals	----	*/

/*	Start Navagation Bullets	*/
.navigation__bullets {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4rem;
	z-index: 99;
}
.navigation__bullets .nav__bullet {
	width: 0.8rem;
	height: 0.8rem;
	background-color: var(--main-color);
	border: 0.15rem solid rgba(0,0,0,0.8);
	margin: 0.5rem auto;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
}
.navigation__bullets .nav__bullet:hover .tool__tip {
	display: block;
}
.navigation__bullets .nav__bullet .tool__tip {
	background-color: var(--main-color);
	color: rgba(255, 255, 255, 1.0);
	width: 6.5rem;
	padding: 0.4rem;
	font-size: 0.9rem;
	position: absolute;
	top: -0.6rem;
	right: 1.5rem;
	text-align: center;
	cursor: default;
	pointer-events: none;
	display: none;
}
.navigation__bullets .nav__bullet .tool__tip:before {
	content: "";
	border-style: solid;
	border-width: 0.4rem;
	border-color: transparent transparent transparent var(--main-color);
	height: 0;
	width: 0;
	position: absolute;
	right: -0.7rem;
	top: 50%;
	transform: translateY(-50%);
}
/*	End Navagation Bullets	*/

/*	Start Settings Box	*/
.settings__box {
	position: fixed;
	top: 0;
	left: -13rem;
	background-color: rgba(0,0,0,0.5);
	width: 13rem;
	z-index: 50;
	min-height: 100vh;
	transition: all 0.3s;
}
.settings__box.opened {
	left: 0;
}
.settings__box .settings__toggle {
	position: absolute;
	top: 6rem;
	right: -2.3rem;
	background-color: var(--main-color);
	cursor: pointer;
	display: flex;
	align-items: center;
	padding: 0.5rem;
}
.option__box {
	padding: 1.5rem;
	text-align: center;
	padding: 1rem;
	margin: 1rem 0 1rem 0;
	background-color: rgba(255, 255, 255, 0.4);
}
.option__box h4 {
	margin: 1rem;
	font-size: 0.875rem;
	color: rgba(0,0,0,0.7);
}
.option__box .colors__list {
	list-style-type: none;
	padding: 0;
	text-align: center;
	margin: 1rem 0 0;
}
.option__box .colors__list li {
	width: 1.2rem;
	height: 1.2rem;
	margin: 0 0.15rem;
	border-radius: 50%;
	background-color: var(--main-color);
	cursor: pointer;
	display: inline-block;
	opacity: 0.5;
}
.option__box .colors__list li.active {
	opacity: 1;
	border: 0.2rem solid rgba(0, 0, 0, 1.0);
}
.option__box .colors__list li:first-child {
	background-color: rgba(33, 155, 243, 0.7);
}
.option__box .colors__list li:nth-child(2) {
	background-color: rgba(203, 16, 16, 0.7);
}
.option__box .colors__list li:nth-child(3) {
	background-color: rgba(10, 116, 11, 0.7);
}
.option__box .colors__list li:nth-child(4) {
	background-color: rgba(134, 87, 10, 0.7);
}
.option__box .colors__list li:nth-child(5) {
	background-color: rgba(131, 10, 134, 0.7);
}
.option__box .random__backgrounds .yes,
.option__box .random__backgrounds .no {
	width: 4rem;
	background-color: var(--main-color);
	display: inline-block;
	color: rgba(0, 0, 0, 1.0);
	padding: 0.4rem;
	font-size: 0.875rem;
	margin: 0.4rem;
	font-weight: bold;
	border-radius: 0.4rem;
	opacity: 0.5;
	cursor: pointer;
}
.option__box .random__backgrounds .yes.active,
.option__box .random__backgrounds .no.active {
	border: 0.2rem solid rgba(0, 0, 0, 1.0);
	opacity: 1;
}
.option__box .toggle__bullets .show,
.option__box .toggle__bullets .hide {
	width: 4rem;
	background-color: var(--main-color);
	display: inline-block;
	color: rgba(0, 0, 0, 1.0);
	padding: 0.4rem;
	font-size: 0.875rem;
	margin: 0.4rem;
	font-weight: bold;
	border-radius: 0.4rem;
	opacity: 0.5;
	cursor: pointer;
}
.option__box .toggle__bullets .show.active,
.option__box .toggle__bullets .hide.active {
	border: 0.2rem solid rgba(0, 0, 0, 1.0);
	opacity: 1;
}
.settings__container .reset__options {
	background-color: var(--main-color);
	width: 80%;
	margin: 2rem auto;
	display: block;
	font-weight: bold;
	padding: 0.5rem;
	border: 0.2rem solid rgba(250, 250, 250, 0.8);
	border-radius: 0.6rem;
	font-size: 0.9rem;
	cursor: pointer;
}
/*	End Settings Box	*/

/*	Start Landing Page	*/
.landing__page {
	min-height: 100vh;
	background-image: url("../Images/Galleries/Gallery03.jpg");
	background-size: cover;
	position: relative;
}
.landing__page .container {
	position: relative;
	z-index: 1000;
}
.landing__page .overlay {
	background-color: rgba(0,0,0,0.7);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.header__area {
	position: relative;
	padding: 1.5rem;
	z-index: 2;
	color: rgba(255,255,255,1);
	display: flex;
}
.header__area .logo {
	margin: 0.8rem;
	width: 300px;
	font-weight: bold;
	text-align: center;
}
.header__area .links__container {
	width: 100%;
	text-align: right;
}
.header__area .ul__links {
	list-style-type: none;
}
.header__area .ul__links .li__link {
	display: inline-block;
	color: var(--main-color);
	font-size: 0.9rem;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}
.header__area .ul__links .li__link a {
	text-decoration: none;
	color: rgba(255,255,255,1);
	transition: all 0.3s;
}
.header__area .ul__links .li__link a:hover,
.header__area .ul__links .li__link a.active {
	color: var(--main-color);
	font-weight: 600;
}
.header__area .links__container .header__toggle__menu {
	display: none;
	background: none;
	border: none;
	width: 2.5rem;
	cursor: pointer;
	position: relative;
}
.header__area .links__container .header__toggle__menu.active__menu:before {
	content: "";
	border-width: 0.4rem;
	border-style: solid;
	border-color: transparent transparent rgba(255, 255, 255, 0.8) transparent;
	position: absolute;
	bottom: -0.7rem;
    right: 0.85rem;
}
.header__area .links__container .header__toggle__menu:focus {
	outline: none;
}
.header__area .links__container .header__toggle__menu span {
	display: block;
	background: var(--main-color);
	height: 0.2rem;
	margin: 0.2rem;
}
.introduction__text {
	position: absolute;
	width: 75%;
	font-size: 0.8rem;
	font-weight: 300;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: rgba(255,255,255,1);
	z-index: 2;
}
.introduction__text h1 {
	font-size: 2rem;
	margin: 0 0 1rem;
}
.introduction__text h1 .emphasized__word {
	color: var(--main-color);
}
.introduction__text p {
	font-size: 1.5rem;
	line-height: 1.5;
}
/*	End Landing Page	*/

/*	Start Landing Page -- Media Screen --	*/
@media screen and (max-width: 991px) {
	.header__area .ul__links {
		display: none;
		margin: 0.5rem;
	}
	.header__area .ul__links.opened {
		background-color: rgba(255, 255, 255, 0.8);
		padding: 0.6rem;
		margin: 0.6rem;
		display: block;
		position: absolute;
		left: 0;
		top: 3.3rem;
		width: 100%;
		border-radius: 0.3rem;
		text-align: center;
	}
	.header__area .ul__links.opened .li__link {
		display: block;
	}
	.header__area .ul__links.opened .li__link a {
		color: var(--main-color);
		font-weight: bold;
	}
	.header__area .links__container .header__toggle__menu {
		display: inline-block;
	}
}
@media screen and (max-width: 575px) {
	.introduction__text {
		text-align: justify;
	}
	.introduction__text h1 {
		font-size: 1.5rem;
	}
	.introduction__text p {
		font-size: 1rem;
		line-height: 1.2;
	}
}
/*	End Landing Page -- Media Screen --	*/

/*	Start About Us	*/
.about__us {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
	display: flex;
}
.about__us .about__us__info {
	flex: 1;
	padding: 2rem;
	width: 75%;
}
.about__us .about__us__info .about__us__title {
	font-weight: bold;
	font-size: 2.5rem;
	color: var(--main-color);
}
.about__us .about__us__info .about__us_text {
	line-height: 1.8;
	color: rgba(0, 0, 0, 0.8);
	text-align: justify;
	margin: 0.2rem;
}
.about__us__media {
	flex: 1;
	text-align: center;
	padding: 2rem 0;
	width: 75%;
}
.about__us__image {
	width: 80%;
}
@media screen and (max-width: 767px) {
	.about__us {
		padding-top: 2rem;
		padding-bottom: 2rem;
		display: inline-block;
	}
	.about__us .about__us__info {
		width: 100%;
	}
	.about__us .about__us__info .about__us__title {
		font-weight: 700;
		font-size: 1.5rem;
	}
	.about__us .about__us__info .about__us_text {
		line-height: 1.4;
	}
	.about__us__media {
		width: 100%;
	}
	.about__us__image {
		width: 80%;
		text-align: center;
	}
}
/*	End About Us	*/

/*	Start Skills	*/
.skills {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
	background: rgba(0, 0, 0, 0.1);
}
.skills .our__skills {
	font-weight: bold;
	font-size: 2.5rem;
	color: var(--main-color);
	text-align: center;
}
@media screen and (max-width: 575px) {
	.skills {
		width: 100%;
	}
	.skills .our__skills {
		width: 100%;
		font-weight: 700;
		font-size: 1.5rem;
	}
}
.skills .skill__box {
	display: flex;
	background-color: rgba(255, 255, 255, 0.9);
	margin: 1rem;
	padding: 1rem;
}
.skills .skill__box .skill__name {
	margin: auto;
	font-weight: bold;
	width: 10rem;
	text-align: center;
	line-height: 2rem;
}
.skills .skill__box .skill__progress {
	width: calc(100% - 10rem);
	background-color: rgba(0, 0, 0, 0.02);
	height: 2rem;
	position: relative;
	border-radius: 1rem;
}
.skills .skill__box .skill__progress .skill__progress__Line {
	position: absolute;
	border-radius: 1rem;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: var(--main-color);
	transition: all 1s;
}
/*	End Skills	*/

/*	Start Gallery	*/
.gallery {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
	text-align: center;
}
.gallery .gallery__title {
	font-weight: bold;
	font-size: 2.5rem;
	color: var(--main-color);
	text-align: center;
}
.gallery .images__Box {
	text-align: center;
}
.gallery .images__Box .gallery__image {
	width: 16rem;
	padding: 0.2rem;
	background-color: #f6f6f6;
	border: 0.2rem solid var(--main-color);
	margin: 0.6rem;
	cursor: pointer;
}
.gallery__image__overlay {
	position: fixed;
	background-color: rgba(0, 0, 0, 0.8);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 100;
}
.gallery__popup {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(255, 255, 255, 1.0);
	border: 0.2rem solid var(--main-color);
	padding: 0.3rem;
	z-index: 102;
}
.gallery__popup h3 {
	font-weight: bold;
	text-align: center;
	margin: 0 0 2rem;
	color: var(--main-color);
}
.gallery__popup img {
	max-width: 100%;
}
.gallery__image__close {
	position: absolute;
	top: 0.7rem;
	right: 0.7rem;
	background-color: var(--main-color);
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	text-align: center;
	color: rgba(255, 255, 255, 1.0);
	cursor: pointer;
	font-weight: bold;
	font-family: Arial, Tahoma;
	border-radius: 50%;
}
/*	End Gallery	*/

/*	Start Timeline	*/
.timeline {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
	background: rgba(0, 0, 0, 0.1);
}
.timeline .timeline__content {
	position: relative;
	overflow: hidden;
}
.timeline .timeline__content:before {
	content: "";
	width: 0.15rem;
	height: 100%;
	background-color: var(--main-color);
	position: absolute;
	left: 50%;
	top: 0;
	margin-left: -0.1rem;
}
.timeline .timeline__content .timeline__year {
	margin: 2rem auto;
	width: 3rem;
	background-color: var(--main-color);
	position: relative;
	z-index: 2;
	border-radius: 0.3rem;
	text-align: center;
	color: rgba(255, 255, 255, 1);
	padding: 0.3rem;
	font-weight: bold;
}
.timeline .timeline__content .timeline__left,
.timeline .timeline__content .timeline__right {
	width: calc(50% - 3rem);
	margin-bottom: 2.5rem;
	position: relative;
}
.timeline .timeline__content .timeline__left {
	float: left;
}
.timeline .timeline__content .timeline__right {
	float: right;
}
.timeline .timeline__content .timeline__left:before,
.timeline .timeline__content .timeline__right:before {
	content: "";
	width: 0.9rem;
	height: 0.9rem;
	border: 0.2rem solid var(--main-color);
	background-color: rgba(255, 255, 255, 1);
	position: absolute;
	border-radius: 50%;
	top: 2rem;
}
.timeline .timeline__content .timeline__left:before {
	right: -3.6rem;
}
.timeline .timeline__content .timeline__right:before {
	left: -3.6rem;
}
.timeline .timeline__content .content {
	padding: 2.5rem;
	background-color: rgba(255, 255, 255, 1);
}
.timeline .timeline__content .content h3 {
	font-weight: bold;
	margin: 0.5rem;
	color: var(--main-color);
	text-align: center;
}
.timeline .timeline__content .content p {
	color: rgba(50, 50, 50, 1);
	line-height: 1.6;
}
.timeline .timeline__content .timeline__left .content:before {
	content: "";
	border-style: solid;
	border-width: 1.3rem;
	border-color: transparent transparent transparent var(--main-color);
	height: 0;
	width: 0;
	position: absolute;
	right: -2.45rem;
	top: 1.3rem;
}
.timeline .timeline__content .timeline__right .content:before {
	content: "";
	border-style: solid;
	border-width: 1.3rem;
	border-color: transparent var(--main-color) transparent transparent;
	height: 0;
	width: 0;
	position: absolute;
	left: -2.45rem;
	top: 1.3rem;
}
/*	End Timeline	*/

/*	Start Our Features	*/
.features {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
	margin-bottom: 3rem;
}
.features h2.features__title {
	font-weight: bold;
	font-size: 2.5rem;
	color: var(--main-color);
	text-align: center;
}
.features .feature__box {
	width: calc((100% / 4) - 0.8rem);
	float: left;
	text-align: center;
	padding: 0.4rem;
	margin: 0.4rem;
}
.features .feature__box img.feature__image {
	width: 100%;
	border-radius: 30%;
}
.features .feature__box h4.feature__name {
	font-size: 1.5rem;
	margin: 0.7rem;
	position: relative;
}
.features .feature__box h4.feature__name:before {
	content: "";
	width: 4rem;
	height: 0.2rem;
	background-color: var(--main-color);
	position: absolute;
	left: 50%;
	bottom: -0.6rem;
	margin-left: -2rem;
}
.features .feature__box p.feature__description {
	width: 80%;
	margin: 0 auto;
	line-height: 1.7;
	color: rgba(0, 0, 0, 0.5);
}
/*	End Our Features	*/

/*	Start Testimonials	*/
.testimonials {
	position: relative;
	padding-top: 3rem;
	padding-bottom: 3rem;
	overflow: hidden;
}
.testimonials:before {
	content: "";
	width: 50%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(255, 255, 255, 6.0);
	height: 100%;
}
.testimonials:after {
	content: "";
	width: 50%;
	position: absolute;
	right: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.4);
	height: 100%;
}
.testimonials h2.testimonials__title {
	font-weight: bold;
	font-size: 2.5rem;
	color: var(--main-color);
	text-align: right;
	position: relative;
	z-index: 2;
}
.testimonials .testimonial__box {
	position: relative;
	z-index: 2;
	width: calc((100% / 3) - 1rem);
	background-color: var(--main-color);
	float: left;
	padding: 0.5rem;
	margin: 0.5rem;
}
/*	.testimonials .testimonial__box .testimonial__text	*/
.testimonials .testimonial__box > p {
	margin: 1rem;
	line-height: 1.5;
	font-size: 0.9rem;
	color: rgba(0, 0, 0, 0.7);
	font-style: italic;
	text-align: justify;
}
.testimonials .testimonial__box .testimonial__person {
	overflow: hidden;	
}
.testimonials .testimonial__box .testimonial__person .person__image {
	float: left;
	border-radius: 50%;
	margin: 1.2rem;
}
.testimonials .testimonial__box .testimonial__person .person__name {
	font-size: 0.875rem;
	padding: 0.3rem;
	margin: 2rem 0 0.1rem 3rem;
}
.testimonials .testimonial__box .testimonial__person .person__job {
	font-size: 0.750rem;
	padding: 0.3rem;
	margin: 0.1rem 0 2rem 3rem;
	color: rgba(0, 0, 0, 0.6);
}
/*	End Testimonials	*/

/*	Start Contact Us	*/
.contact__us {
	position: relative;
	padding-top: 3rem;
	padding-bottom: 3rem;
	min-height: 600px;
	background-image: url("../Images/Map.jpg");
	background-size: cover;
}
.contact__us .contact__us__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
}
.contact__us .container {
	position: relative;
	z-index: 2;
}
.contact__us h2.contact__us__title {
	font-weight: bold;
	font-size: 2.5rem;
	color: var(--main-color);
	text-align: center;
}
.contact__us form.contact__us__form {
	overflow: hidden;
	max-width: 45rem;
	margin: auto;
}
.contact__us form.contact__us__form .form__left {
	float: left;
	width: 48%;
}
.contact__us form.contact__us__form .form__right {
	float: right;
	width: 48%;
}
.contact__us form.contact__us__form input:not([type="submit"]),
.contact__us form.contact__us__form textarea {
	display: block;
	width: 90%;
	padding: 0.8rem;
	margin: 0.6rem;
	border: 0.1rem solid rgba(0, 0, 0, 0.5);
	background-color: rgba(0, 0, 0, 0.1);
}
.contact__us form.contact__us__form input:not([type="submit"]):focus,
.contact__us form.contact__us__form textarea:focus {
	border: none;
	outline: 0.2rem solid var(--main-color);
}
.contact__us form.contact__us__form input {
	height: 3rem;
}
.contact__us form.contact__us__form textarea {
	height: 10rem;
}
.contact__us form.contact__us__form textarea:focus::-webkit-input-placeholder,
.contact__us form.contact__us__form input:not([type="submit"]):focus::-webkit-input-placeholder{
	opacity: 0;
	transition: 0.3s;
}
.contact__us form.contact__us__form input[type="submit"] {
	padding: 0.8rem;
	width: 90%;
	border-color: transparent;
	background-color: var(--main-color);
	color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	margin: 0.6rem;
}
/*	End Contact Us	*/

/*	Start Grid System	----	Responsiveness	----	*/
/* -- Mobile -- */
@media screen and (min-width: 575px) {
	.container {
		max-width: 540px;
	}
}
/* -- Tablets -- */
@media screen and (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}
/* -- Pcs - Desktops -- */
@media screen and (min-width: 929px) {
	.container {
		max-width: 960px;
	}
}
/* -- Large Screens -- */
@media screen and (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}
/*	End Grid System	----	Responsiveness	----	*/
