:root
{
	--main-color:#FF9800;
}


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

*
{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

.clearfix
{
	clear: both;
}

/* Start scrollbar */
::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

::-webkit-scrollbar-thumb {
  background: #145473;
}

::-webkit-scrollbar-track {
  background: #8aaab9;
}

body {
  scrollbar-face-color: #145473;
  scrollbar-track-color: #8aaab9;
}

/* End scrollbar */

.container
{
	width: 1170px;
	padding-left: 15px;
	padding-right: 15px;
	margin:auto;
}


/*Start Setting Box*/		/* Start Setting 2 */

.setting-box
{
	position: fixed;
	top: 0;
	left: -200px;
	background-color: #fff;
	z-index: 1000;
	width: 200px;
	min-height: 100vh;
	transition: .4s;
	border: 2px solid #767676;
    z-index: 4000;
}

.setting-box.open
{
	left: 0;
}

.setting-box .toggle-setting
{
	position: absolute;
	top: 100px;
	right: -30px;
	background-color: #ff5722;
	text-align: center;
	cursor: pointer;

}

.setting-box .toggle-setting .setting_shap
{
	padding: 8px 0;
	width: 30px;
    color: #ffff;
    font-size: 20px;
}

.setting-box .option-box
{
	padding: 10px;
	text-align: center;
	background-color: #335;
	margin: 10px;
}

.setting-box .option-box h4
{
	margin: 0;
	color: #fff;
	font-size: 12px;
}

.setting-box .option-box .colors-list
{
	list-style: none;
	text-align: center;
	padding: 0;
	margin: 10px 0 0;
}

.setting-box .option-box .colors-list li
{
	width: 20px;
	height: 20px;
	background-color: #335;
	border-radius: 50%;
	cursor: pointer;
	display: inline-block;
	border:3px solid #335;
}

.setting-box .option-box .colors-list li.active
{
	border-color: #fff;
}


.setting-box .option-box .colors-list li:first-of-type
{
	background-color: #FF9800;
}

.setting-box .option-box .colors-list li:nth-of-type(2)
{
	background-color: #e91e63;
}

.setting-box .option-box .colors-list li:nth-of-type(3)
{
	background-color: #009688;
}

.setting-box .option-box .colors-list li:nth-of-type(4)
{
	background-color: #03a9f4;
}

.setting-box .option-box .colors-list li:last-of-type
{
	background-color: #4caf50;
}

.setting-box .option-box .yes,
.setting-box .option-box .no
{
	width: 50px;
	background-color: var(--main-color);
	color: #fff;
	margin-top: 10px;
	display: inline-block;
	font-size: 12px;
	padding: 4px 10px;
	font-weight: bold;
	border-radius: 4px;
	opacity: .5;
	cursor: pointer;
}

.setting-box .option-box .bullets-option span.active,
.setting-box .option-box .random-background span.active
{
	opacity: 1;
}

.setting-box  .change-click
{
	position: relative;
    width: calc(100% - 30px);
    height: 70px;
    padding-left: 10px;
    padding-right: 1px;
    margin-left: 10px;
    background-color: #335;

}

.setting-box .change-click span.change-timeline
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    margin-top: 0px;
    text-align: center;
    width: calc(100% - 20px );
    height: 46px;
    line-height: 47px;
    background-color: var(--main-color);
    color: #fff;
    cursor: pointer;
    opacity: .5;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}
.setting-box .change-click span.active
{
	opacity: 1
}

.setting-box .reset-options
{
	background-color: #f44336;
	border: none;
	width: 178px;
	margin:10px auto;
	display: block;
	color:#fff;
	font-weight: bold;
	padding: 10px;
	border-radius: 5px;
	cursor: pointer;
}

/*End Setting Box*/			/* End Setting 2 */

/*Start Nav Billets*/
.nav-bullets
{
	position: fixed;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	z-index: 1000;
}

@media (max-width: 767px) {
	.nav-bullets{
		width: 20px;
	}
	
}

@media (min-width: 768px) {
	.nav-bullets{
		width: 25px;
	}
	
}
@media (min-width: 991px) {
	.nav-bullets{
		width: 30px;
	}
	
}
@media (min-width: 1200px) {
	.nav-bullets{
		width: 40px;
	}
	
}
.nav-bullets .bullet
{
	width: 20px;
	height: 20px;
	border:3px solid var(--main-color);
	margin:10px auto;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
}

@media (max-width: 767px) {
	.nav-bullets .bullet{
		width: 15px;
		height: 15px;
	}
	
}

@media (min-width: 991px) {
	.nav-bullets .bullet{
		width: 20px;
		height: 20px;
	}
	
}

.nav-bullets .bullet:hover .tooltip
{
	display: block;
}

.nav-bullets .bullet .tooltip
{
	background-color: var(--main-color);
	width: 120px;
	color: #fff;
	padding: 4px 10px;
	position: absolute;
	top: -6px;
	right: 32px;
	text-align: center;
	cursor: default;
	pointer-events: none;
	display: none;
}

.nav-bullets .bullet .tooltip:before
{	
	content: '';
	border-style: solid;
	border-width: 10px;
	border-color:transparent transparent transparent var(--main-color);
	width: 0;
	height: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -20px;
}


/*End Nav Billets*/

/*Start Landing Page*/		/* Start Landing 1 */

.landing-page
{
	min-height: 100vh; /* 100vh == 100 viewer height */
	background-image: url('../Images/landing2.jpg');
	background-size: cover;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
}

@media (max-width: 767px) {
	.landing-page{
		width: 100%;
	}
	
}

@media (min-width: 768px) {
	.landing-page{
		width: 100%;
	}
	
}
.landing-page .overlay
{
	background-color: rgba(0, 0, 0, 0.66);
	position: absolute;
	width: 100%;
	min-height: 100vh;
	left: 0;
	top: 0;
	z-index: 1;
}

@media (max-width: 767px) {
	.landing-page .overlay{
		width: 100%;
	}
	
}

@media (min-width: 768px) {
	.landing-page .overlay{
		width: 100%;
	}
	
}

.landing-page .container
{
	position: relative;
	z-index: 1000;
}

.header-area 
{
	position: relative;
	z-index: 2;
	color: #fff;
	display: flex;
	padding: 10px;
}

.header-area .logo
{
	width: 300px;
	padding: 15px;
	font-weight: bold;
}


.header-area .links-container
{
	width: 100%;
	text-align: right;
}

.header-area .links
{
	list-style: none;
	padding-left: 0;
}

.header-area .links li
{
	display: inline-block;
	margin-left: 10px;
}

.header-area .links li a
{
	color: #fff;
	text-decoration: none;
	transition: .3s;
}

.header-area .links li a:hover,
.header-area .links li a.active
{
	color: var(--main-color);
}

.header-area .toggle-menu
{
	background: none;
	border: none;
	width: 40px;
	cursor: pointer;
	margin-top: 13px;
	display: none;
	position: relative;
}

.header-area .toggle-menu.menu-active:before
{
	content: '';
	border-width: 10px;
	border-style: solid;
	border-color: transparent transparent #fff transparent;
	position: absolute;
	bottom: -7px;
	left: 10px; 
}

.header-area .toggle-menu:focus
{
	outline: none;
}

.header-area .toggle-menu span
{
    display: block;
    background-color: #f3f3f3;
    height: 4px;
    margin-bottom: 4px;
}

.intro-text
{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50% , -50%);
	-moz-transform: translate(-50% , -50%);
	-o-transform: translate(-50% , -50%);
	transform: translate(-50% , -50%);
	z-index: 2;
	color: #fff;
	text-align: center;
	width: 80%;
}

.intro-text h1
{
	font-size: 34px;
	margin: 0 0 12px;
}

@media (max-width: 767px) {
	.intro-text h1
	{
		font-size: 26px;
	}
	.intro-text p
	{
		font-size: 13px;
	}
	
}

@media (min-width: 768px) {
	.intro-text h1
	{
		font-size: 26px;
	}
	.intro-text p
	{
		font-size: 13px;
	}
	
	
}

@media (min-width: 1200px) {
	.intro-text h1
	{
		font-size: 34px;
	}
	.intro-text p
	{
		font-size: 26px;
	}
	
}

.intro-text h1 span
{
	color: var(--main-color);
}


.intro-text p
{
	line-height: 1.6;
	font-size: 20;
	margin: 0;
}

@media (max-width: 991px) {
	.landing-page .header-area ul.links
	{
		display: none;
	}
	.landing-page .header-area ul.open
	{
		background-color: #fff;
		padding: 10px;
		display: block;
		position: absolute;
		top: 40px;
		left: 0;
		width: 98%;
		border-radius: 4px;
		text-align: left;
	}

	.landing-page .header-area ul.links.open li
	{
		display: block;
		margin:10px;
	}

	.landing-page .header-area ul.links.open li a
	{
		color: var(--main-color);
		font-weight: bold;
	}
	.header-area .toggle-menu
	{
		display: inline-block;
	}
}

/*End Landing Page*/		/* End Landing 1 */

/*Start About Us*/
.about-us
{
	padding-top: 50px;
	padding-bottom: 50px;
	display: flex;
}

@media (max-width: 767px) {

	.about-us
	{
		text-align: center;
		display: block;

	}

}

.about-us .info-box
{
	flex: 1;
	padding: 30px;
}

@media (max-width: 767px) {

	.about-us .info-box
	{
		padding: 0;
	}

}

.about-us .info-box h2
{
	font-weight: bold;
	font-size: 30px;
	color: var(--main-color);
	margin:0 0 10px;
	padding: 30px;
}

.about-us .info-box p
{
	line-height: 1.8;
	color: #767676;
	margin:0;
}

.about-us .image-box
{
	flex: 1;
	text-align: center;
}

.about-us .image-box img
{
	width: 500px;
}

@media (max-width: 767px) {

	.about-us .image-box img
	{
		text-align: center;
		display: block;
		margin-top: 90px;
		width: 100%;

	}

}


/*End About Us*/

/*Start Skills*/

.skills
{
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #1a6653;
}

.skills h2
{
	font-weight: bold;
	font-size: 30px;
	color: var(--main-color);
	margin:0 0 10px;
	padding: 30px;
	text-align: center;
}

.skills .skill-box
{
	background-color: #fff;
	display: flex;
	padding: 15px;
	margin-bottom: 15px;
	
}

.skills .skill-box .skill-name
{
	font-weight: bold;
	width: 100px;
	text-align: center;
	line-height: 30px
}

.skills .skill-box .skill-progress
{
	height: 30px;
	background-color: #ddd;
	width: calc(100% - 110px);
	border-radius: 6px;
	position: relative;
	overflow: hidden;
}

.skills .skill-box .skill-progress span
{
	position: absolute;
	top: 0;
	left:0;
	width: 0;
	height: 100%;
	background-color: var(--main-color);
}

/*.skills .skill-box .skill-progress span.html
{
	width: 97%;
}

.skills .skill-box .skill-progress span.css
{
	width: 93%;	
}

.skills .skill-box .skill-progress span.javascript
{
	width: 80%;	
}*/

/*End Skills*/

/*Start Gallery*/
.gallery
{
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #1f343c;
	text-align: center;
}
.gallery h2
{
	font-weight: bold;
	font-size: 30px;
	color: var(--main-color);
	margin:0 0 10px;
	padding: 30px;
	text-align: center;
}
.gallery .images-box
{
	text-align: center;
}

.gallery .images-box img
{
	width: 200px;
	padding: 3px;
	background-color: #f5f5f5;
	border:2px solid #ccc;
	margin:5px;
	cursor: pointer;
}

.popup-overlay
{
	position: fixed;
	background-color: rgba(0 , 0 , 0 , .7);
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}

.popup-box
{
	position: fixed;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	background-color: #fff;
	border:1px solid #ccc;
	padding: 5px;
	z-index: 1001;
	width: 80%;
}

.popup-box h3
{
	font-weight: bold;
	text-align: center;
	margin:0 0 20px;
	color: var(--main-color);
}

.popup-box img
{
	max-width: 100%;
}

.close-button
{
	position: absolute;
	top: -15px;
	right: -15px;
	background-color: var(--main-color);
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 20px;
	color: #fff;
	cursor: pointer;
	font-weight: bold;
	font-family: 'Open Sans', sans-serif;
	border-radius: 50%;
}
/*End Gallery*/


/*Start Time Line */

.timeline
{
	padding-top: 50px;
	padding-bottom: 50px;
	background-color:#ddd;
}

.timeline .timeline-content
{
	position: relative;
	overflow: hidden;
}

.timeline .timeline-content:before
{
	content: '';
	width: 2px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	background-color: var(--main-color);
	margin-left: -1px;
}

.timeline .timeline-content .year
{
	margin:20px auto;
	width: 50px;
	background-color: var(--main-color);
	position: relative;
	z-index: 2;
	border-radius: 5px;
	text-align: center;
	color: #fff;
	padding: 2px 5px;
	font-weight: bold;

}

.timeline .timeline-content .left,
.timeline .timeline-content .right
{
	width: calc(50% - 25px);
	margin-bottom: 40px;
	position: relative;
}

.timeline .timeline-content .left
{
	float: left;
}

.timeline .timeline-content .right
{
	float: right;
}


.timeline .timeline-content .left:before,
.timeline .timeline-content .right:before
{
	content: '';
	width: 14px;
	height: 14px;
	background-color: #fff;
	border:3px solid var(--main-color);
	position: absolute;
	border-radius: 50%;
	top: 20px;
}

.timeline .timeline-content .left:before
{
	right: -35px;
}

.timeline .timeline-content .right:before
{
	left: -35px;
}

.timeline .timeline-content .content
{
	padding: 20px;
	background-color: #fff;
}

.timeline .timeline-content .content h3
{
	font-weight: bold;
	color: var(--main-color);
	margin: 0 0 10px;
}

.timeline .timeline-content .content p
{
	color: #666;
	margin: 0;
	line-height: 1.6;
}

.timeline .timeline-content .left .content:before
{
	right: -20px;
	border-color: transparent transparent transparent #fff;
}

.timeline .timeline-content .right .content:before
{
	left: -20px;
	border-color: transparent #fff transparent transparent;
}

.timeline .timeline-content .left .content:before,
.timeline .timeline-content .right .content:before
{
	content: '';
	border-width: 10px;
	border-style: solid;
	position: absolute;
	height: 0;
	width:0;
	top: 20px;
}

@media (max-width: 767px) {

	.timeline .timeline-content .left,
	.timeline .timeline-content .right
	{
		width:100%;
		margin-bottom: 20px;
	}
	.timeline .timeline-content .left:before,
	.timeline .timeline-content .right:before
	{
		display: none;
	}

	.timeline .timeline-content .left .content:before,
	.timeline .timeline-content .right .content:before
	{
		display: none;
	}


}


/*End Time Line */

/*Start Features*/
.features
{
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #f5f5f5;
	min-height: 418px;
}
.features h2
{
	font-weight: bold;
	font-size: 30px;
	color: var(--main-color);
	margin:0 0 60px;
	padding: 30px;
	text-align: center;
}

.features .feat-box
{
	width: calc(100% / 3);
	float: left;
	text-align: center;
	margin-bottom: 40px;	
}

@media (max-width: 991px) {

	.features .feat-box
	{
		width: calc(100% / 2);	
	}
	.features .feat-box.last
	{
	    width: 100%;
	}
}

@media (max-width: 575px) {

	.features .feat-box
	{
		width: 100%;	
	}
}

.features .feat-box img
{
	width: 96px;
	border-radius: 50%;
}

.features .feat-box h4
{
	font-size: 22px;
	margin:15px 0 40px;
	position: relative;
}

.features .feat-box h4:before
{
	content: '';
	width: 40px;
	height: 4px;
	background-color: var(--main-color);
	position: absolute;
	left:50%;
	margin-left: -20px;
	bottom: -22px;
}

.features .feat-box p
{
	width: 80%;
	margin: 0 auto;
	line-height: 1.7;
	color: #706f6f;
}
/*End Features*/

/*Start Testimonial*/
.testimonial
{
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
}
.testimonial:before
{
	content: '';
	width: 50%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--main-color);
	height: 100%;
}
.testimonial:after
{
	content: '';
	width: 50%;
	position: absolute;
	right: 0;
	top: 0;
	background-color:#335;
	height: 100%;
}

.testimonial h2
{
	font-weight: bold;
	font-size: 30px;
	color: #fff;
	margin:0 0 30px;
	text-align: left;
	position: relative;
	z-index: 2;
}

@media (max-width: 767px) {

	.testimonial h2
	{
		text-align: center;
	}
}


.testimonial .ts-box
{
	position: relative;
	z-index: 2;
	width: calc(98% / 3);
	float: left;
	background-color: #fff;
	padding: 20px;
}

@media (max-width: 767px) {

	.testimonial .ts-box
	{
		width: 100%;
		float: none; 
		margin-bottom: 15px;
	}
}

.testimonial .ts-box:not(:last-of-type)
{
	margin-right: 1%;
}
.testimonial .ts-box > p
{
	margin:0 0 20px;
	line-height: 1.5;
	font-size: 20px;
	color: #707070;
	font-style: italic;
}
.testimonial .ts-box .person-info
{
	overflow: hidden;
}

@media (max-width: 991px) {

	.testimonial .ts-box .person-info
	{
		text-align: center;
		overflow: visible;
	}
}

.testimonial .ts-box .person-info img
{
	float: left;
	border-radius: 50%;
	margin-right: 20px;
	width: 100px;
}

@media (max-width: 991px) {

	.testimonial .ts-box .person-info img
	{
		float: none;
		margin-right: 0;
	}
}

.testimonial .ts-box .person-info h4
{
	margin:28px 0 10px;
}

.testimonial .ts-box .person-info p
{
	color: #707070;
	margin:0;
}
/*End Testimonial*/

/*Start Contact*/
.contact
{
	min-height: 600px;
	background-image: url('../Images/map.jpg');
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	padding-top: 80px;
	padding-bottom: 80px;
	position: relative;
}
.contact .overlay
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0 , 0 , 0 , .7);
	/*background-color: rgb(0 0 0 / 70%);*/
}

.contact .container
{
	position: relative;
	z-index: 2;
}

.contact h2
{
	font-size: 30px;
	font-weight: bold;
	color: var(--main-color);
	margin:60px 0 60px;
	text-align: center;
}

.contact form 
{
	overflow: hidden;
	max-width: 800px;
	margin:auto;
}

.contact form .left
{
	width: 49%;
	float: left;
}

.contact form .right
{
	width: 49%;
	float: right;
}

@media (max-width: 767px) {

	.contact form .left,
	.contact form .right
	{
		float: none;
		width: 100%;
	}

}

.contact form input:not([type="submit"]),
.contact form textarea
{
	display: block;
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border:1px solid #333;
	background-color:#70707038;
}

.contact form input:not([type="submit"]):focus,
.contact form textarea:focus
{
	outline: 1px solid var(--main-color);
}

.contact form input
{
	height: 40px;
}

.contact form textarea
{
	height: 150px;
}

.contact form input[type="submit"]
{
	padding: 10px;
	width: 100%;
	border-color: transparent;
	background-color: var(--main-color);
	color: #fff;
	cursor: pointer;
}

.contact form div.right textarea::placeholder,
.contact form div.left input::placeholder
{
	color: #fff
}

.contact form div.left input:focus::-webkit-input-placeholder,
.contact form div.right textarea:focus::-webkit-input-placeholder
{
	opacity: 0;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}

.contact form div.left input:focus::-ms-input-placeholder,
.contact form div.right textarea:focus::-ms-input-placeholder
{
	opacity: 0;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}


.contact form div.left input:focus::placeholder,
.contact form div.right textarea:focus::placeholder
{
	opacity: 0;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}

/*End Contact*/

/*Start Footer*/

.footer
{
	background-color: #335;
	color: #fff;
	padding: 10px;
	text-align: center;
}

.footer span
{
	font-weight: bold;
	font-size: 19px;
	color: #fff;
}
@media (max-width: 767px) { /* Small Devices ==> Small Phones */

	.footer
	{
		font-size: 12px;
	}

	.footer span
	{
		display: block;
		text-align: center;
		margin-top: 5px;
		font-size: 15px;
	}

}

/*End Footer*/

/*Start Grid System*/
@media (max-width: 767px) { /* Small Devices ==> Small Phones */

	.container
	{
		max-width: 100%;

	}

}

@media (min-width: 768px) { /* Small Devices ==> Landscape Phones */

	.container
	{
		max-width: 750px;


	}

}

@media (min-width: 992px) { /* Medium Devices ==> Tablets */

	.container
	{
		max-width: 970px;

	}

}

@media (min-width: 1200px) { /* Large Screens */

	.container
	{
		max-width: 1170px;

	}

}

/*End Grid System*/