/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- Statement
- Services
- Description
- Details 1
- Details 2
- Pricing
- Invitation
- Projects
- Project Lightboxes
- Testimonials
- About
- Statistics
- Team
- Contact
- Footer
- Copyright
- Back To Top Button 
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds - light gray #f9fafc
- Buttons, icons - orange #00A8E8
- Buttons - pink #f83a5e
- Body text, headings text - dark gray #505c67
******************************************/


/**************************/
/*     General Styles     */
/**************************/
body,
html {
    width: 100%;
	height: 100%;
}

body, p {
	color: #505c67; 
	font: 400 1rem/1.625rem "Open Sans", sans-serif;
}

h1 {
	color: #505c67;
	font-weight: 700;
	font-size: 2.75rem;
	line-height: 3.375rem;
	font-family: "Raleway";
	letter-spacing: -0.2px;
}

h2 {
	color: #505c67;
	font-weight: 700;
	font-size: 2.25rem;
	line-height: 2.75rem;
	font-family: "Raleway";
	letter-spacing: -0.2px;
}

h3 {
	color: #505c67;
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-family: "Raleway";
	letter-spacing: -0.2px;
}

h4 {
	color: #505c67;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 2rem;
	font-family: "Raleway";
	letter-spacing: -0.2px;	
}

h5 {
	color: #505c67;
	font-weight: 700;
	font-size: 1.25rem;
	font-family: "Raleway";
	line-height: 1.75rem;
}

h6 {
	color: #505c67;
	font-weight: 700;
	font-size: 1rem;
	font-family: "Raleway";
	line-height: 1.5rem;
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.testimonial-text {
	font-style: italic;
}

.testimonial-author {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5rem;
	font-family: "Raleway";
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: #505c67;
	text-decoration: underline;
}

a:hover {
	color: #505c67;
	text-decoration: underline;
}

.no-line {
	text-decoration: none;
}

.no-line:hover {
	text-decoration: none;
}

.orange {
	color: #00A8E8;
}

.white {
	color: #ffffff;
}

a.white:hover {
	color: #ffffff;
}

.bg-gray {
	background-color: #f9fafc;
}

.hr-heading {
	width: 64px;
	height: 2px;
	margin-top: 0;
	border: none;
	background: linear-gradient(to bottom right, rgba(253, 111, 45, 1), rgba(248, 58, 94, 1));
	opacity: 0.8;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #00A8E8;
	border-radius: 32px;
	background-color: #00A8E8;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	border: 1px solid #00A8E8;
	background-color: transparent;
	color: #00A8E8; /* needs to stay here because of the forced color property of a tag */
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #00A8E8;
	border-radius: 32px;
	background-color: #00A8E8;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	border: 1px solid #00A8E8;
	background-color: transparent;
	color: #00A8E8; /* needs to stay here because of the forced color property of a tag */
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #00A8E8;
	border-radius: 32px;
	background-color: transparent;
	color: #00A8E8;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	border: 1px solid #00A8E8;
	background-color: #00A8E8;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #00A8E8;
	border-radius: 32px;
	background-color: transparent;
	color: #00A8E8;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	border: 1px solid #00A8E8;
	background-color: #00A8E8;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #00A8E8;
	border-radius: 32px;
	background-color: transparent;
	color: #00A8E8;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	border: 1px solid #00A8E8;
	background-color: #00A8E8;
	color: #ffffff;
	text-decoration: none;
}

.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.label-control {
	position: absolute;
	top: 0.875rem;
	left: 1.375rem;
	color: #7d838a;
	opacity: 1;
	font-size: 0.875rem;
	line-height: 1.5rem;
	cursor: text;
	transition: all 0.2s ease;
}

.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control,
.form-control-textarea:focus + .label-control,
.form-control-textarea.notEmpty + .label-control {
	top: 0.125rem;
	color: #505c67;
	opacity: 1;
	font-size: 0.75rem;
	font-weight: 700;
}

.form-control-input,
.form-control-select {
	display: block; /* needed for proper display of the label in Firefox, IE, Edge */
	width: 100%;
	padding-top: 1.125rem;
	padding-bottom: 0.125rem;
	padding-left: 1.25rem;
	border: 1px solid #dadada;
	background-color: #ffffff;
	color: #505c67;
	font-size: 0.875rem;
	line-height: 1.875rem;
	transition: all 0.2s;
	-webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	height: 3.25rem;
	color: #7d838a;
}

select {
    /* you should keep these first rules in place to maintain cross-browser behavior */
    -webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url('../images/down-arrow.png');
    background-position: 96% 50%;
    background-repeat: no-repeat;
    outline: none;
}

.form-control-textarea {
	display: block; /* used to eliminate a bottom gap difference between Chrome and IE/FF */
	width: 100%;
	height: 14rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
	padding-top: 1.5rem;
	padding-left: 1.25rem;
	border: 1px solid #dadada;
	background-color: #ffffff;
	color: #505c67;
	font-size: 0.875rem;
	line-height: 1.5rem;
	transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none; /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.checkbox {
	font-size: 0.75rem;
	line-height: 1.25rem;
}

input[type='checkbox'] {
	vertical-align: -10%;
	margin-right: 0.5rem;
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.25rem;
	border: 1px solid #00A8E8;
	border-radius: 32px;
	background-color: #00A8E8;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid #00A8E8;
	background-color: transparent;
	color: #00A8E8;
}

/**********************/
/*     Navigation     */
/**********************/
.navbar {
	background-color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
    width: 119px;
	height: 28px;
}

.navbar .logo-text {
	color: #505c67;
	font-weight: 700;
	font-size: 1.625rem;
	line-height: 1rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 3.25rem; /* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: #ffffff;
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #505c67;
	text-decoration: none;
	transition: all 0.2s ease;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
	color: #00A8E8;
}


.navbar .fa-stack {
	width: 2em;
	margin-right: 0.25rem;
	font-size: 0.75rem;
}

.navbar .fa-stack-2x {
	color: #00A8E8;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
	color: #dd4803;
}

.navbar .fa-stack:hover .fa-stack-1x {
	color: #ffffff;
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/*****************/
/*    Header     */
/*****************/
.header {
	padding-top: 6.5rem;
	padding-bottom: 8rem;
	background: linear-gradient(to bottom right, rgba(253, 113, 20, 0.8), rgba(245, 45, 111, 0.9)), url('../images/header-background.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
}

.header .text-container {
	margin-bottom: 4rem;
}

.header h1 {
	color: #ffffff;
}

.header .p-large {
	margin-bottom: 1.75rem;
	color: #ffffff;
}

.header .btn-outline-lg {
	border: 1px solid #ffffff;
	color: #ffffff;
}

.header .btn-outline-lg:hover {
	background-color: #ffffff;
	color: #00A8E8;
}

.header .form-container {
	background-color: #f9fafc;
	padding: 3rem 1rem 2rem 1rem;
	border-radius: 4px;
}


/*********************/
/*     Statement     */
/*********************/
.basic-1 {
	padding-top: 8rem;
	padding-bottom: 7rem;
	background: linear-gradient(to bottom right, #414c56, #2f3a43);
	text-align: center;
}

.basic-1 .text-container {
	margin-bottom: 2rem;
}

.basic-1 .element .icon {
	width: 128px;
	height: 128px;
	margin-bottom: 1rem;
}

.basic-1 .element .title {
	color: #ffffff;
	font-weight: 700;
	font-size: 1.375rem;
	line-height: 1.75rem;
}

.basic-1 .fa-chevron-down {
	margin-bottom: 1.25rem;
	color: #cfd7e0;
	font-size: 1rem;
}

.basic-1 .fa-chevron-right {
	display: none;
}

.basic-1 .testimonial-text,
.basic-1 .testimonial-author {
	color: #ffffff;
}

.basic-1 .testimonial-text {
	margin-top: 0.375rem;
}



/************************/
/*     Testimonials     */
/************************/
.slider-2 {
	padding-top: 7.75rem;
	padding-bottom: 8rem;
	background: linear-gradient(to bottom right, #414c56, #2f3a43);
	text-align: center;
}

.slider-2 h2 {
	margin-bottom: 0.75rem;
	text-align: center;
	color: #ffffffff;
}

.slider-2 .hr-heading {
	margin-bottom: 3.5rem;
	background: #ffffff;
}

.slider-2 .slider-container {
	position: relative;
}

.slider-2 .swiper-container {
	position: static;
	width: 88%;
	text-align: center;
}

.slider-2 .swiper-button-prev:focus,
.slider-2 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-2 .swiper-button-prev {
	left: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-2 .swiper-button-next {
	right: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-2 .card {
	position: relative;
	border: none;
	background-color: transparent;
}

.slider-2 .card-image {
	width: 96px;
	height: 96px;
	margin-right: auto;
	margin-bottom: 1.5rem;
	margin-left: auto;
	border-radius: 50%;
}

.slider-2 .card-body {
	padding: 0;
}

.slider-2 .testimonial-text,
.slider-2 .testimonial-author {
	color: #ffffff;
}

.slider-2 .testimonial-author {
	margin-bottom: 0;
}


/*****************/
/*     About     */
/*****************/
.basic-4 {
	padding-top: 7.5rem;
	padding-bottom: 7.25rem;
}

.basic-4 h2 {
	text-align: center;
}

.basic-4 .p-heading {
	margin-bottom: 3.5rem;
	text-align: center;
}

.basic-4 .image-container {
	margin-bottom: 3rem;
}

.basic-4 .image-container img {
	border-radius: 4px;
}

.basic-4 h4 {
	margin-bottom: 0.75rem;
	color: #00A8E8;
}

.basic-4 .list-unstyled strong {
	margin-right: 0.25rem;
}


/**********************/
/*     Statistics     */
/**********************/
.counter {
	padding-top: 7.5rem;
	padding-bottom: 6rem;
	background: linear-gradient(to bottom right, #414c56, #2f3a43);
	text-align: center;
}

.counter #counter .cell {
	display: inline-block;
	width: 6.25rem;
	margin-right: 1rem;
	margin-left: 1rem;
	margin-bottom: 2rem;
}

.counter #counter .counter-value {
	margin-bottom: 0.125rem;
	color: #ffffff;
	font-weight: 700;
	font-size: 3.5rem;
	line-height: 4.25rem;	
	vertical-align: middle;
}

.counter #counter .counter-info {
	margin-bottom: 0;
	color: #ffffff;
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.25rem;
	vertical-align: middle;
}


/****************/
/*     Team     */
/****************/
.basic-5 {
	padding-top: 8rem;
	padding-bottom: 4rem;
	text-align: center;
}

.basic-5 h2 {
	margin-bottom: 0.75rem;
}

.basic-5 .hr-heading {
	margin-bottom: 3.5rem;
}

.basic-5 .card {
	max-width: 300px;
	margin-right: auto;
	margin-bottom: 4rem;
	margin-left: auto;
	border: none;
}

/* Hover Animation */
.basic-5 .card-image {
	overflow: hidden;
	margin-bottom: 1.5rem;
	border-radius: 50%;
}

.basic-5 .card-image img {
	margin: 0;
	border-radius: 50%;
	transition: all 0.3s;
}

.basic-5 .card-image:hover img {
	-moz-transform: scale(1.15);
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
} 
/* end of hover animation */

.basic-5 .card-body {
	padding: 0;
}

.basic-5 .card-title {
	margin-bottom: 0.125rem;
}

.basic-5 .fa-stack {
	width: 1.75rem;
	height: 1.75rem;
	margin-right: 0.125rem;
	margin-left: 0.125rem;
	line-height: 1.75rem;
}

.basic-5 .fa-stack .fa-stack-2x {
	font-size: 1.75rem;
}

.basic-5 .fa-stack .fa-stack-2x,
.basic-5 .fa-stack .fa-stack-1x {
	width: 1.75rem;
	height: 1.75rem;
}

.basic-5 .fa-circle {
	color: #00A8E8;
	transition: all 0.2s ease;
}

.basic-5 .fab {
	color: #ffffff;
}
/*
.basic-5 .fa-stack:hover .fa-circle {
	color: #ffffff;
}

.basic-5 .fa-stack:hover .fab {
	color: #00A8E8;
}
*/

/*******************/
/*     Contact     */
/*******************/
.form-1 {
	padding-top: 7.5rem;
	padding-bottom: 7.25rem;
}

.form-1 h2,
.form-1 .p-heading,
.form-1 .list-unstyled {
	text-align: center;
}

.form-1 .p-heading {
	margin-bottom: 0.25rem;
}

.form-1 .list-unstyled {
	margin-bottom: 3.5rem;
}

.form-1 .list-unstyled .fas {
	color: #00A8E8;
}

.form-1 .map-responsive {
	position: relative;
	overflow: hidden;
	height: 0;
	margin-bottom: 5rem;
	padding-bottom: 70%;
}

.form-1 .map-responsive iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none; 
}

.form-1 .form-control-textarea {
	height: 8rem;
}


/******************/
/*     Footer     */
/******************/
.footer {
	padding-top: 5.25rem;
	padding-bottom: 1.5rem;
	background-color: #2f3a43;
}

.footer a {
	text-decoration: none;
}

.footer .footer-col {
	margin-bottom: 3rem;
}

.footer h6 {
	margin-bottom: 0.625rem;
	color: #e4ebf5;
}

.footer p,
.footer a,
.footer ul {
	color: #e4ebf5;
}

.footer .li-space-lg li {
	margin-bottom: 0.375rem;
}

.footer .footer-col.third .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.375rem;
}

.footer .footer-col.third .fa-stack .fa-stack-2x {
	color: #e4ebf5;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack .fa-stack-1x {
    color: #2f3a43;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-2x {
    color: #00A8E8;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-1x {
	color: #e4ebf5;
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-bottom: 1rem;
	background-color: #2f3a43;
	text-align: center;
}

.copyright p,
.copyright a {
	color: #e4ebf5;
	text-decoration: none;
}


/*************************/
/*     Media Queries     */
/*************************/	
/* Min-width 768px */
@media (min-width: 768px) {

	/* Header */
	.header {
		padding-top: 9rem;
		padding-bottom: 8rem;
	}

	.header .form-container {
		padding-right: 2rem;
		padding-left: 2rem;
	}
	/* end of header */


	/* Statement */
	.basic-1 {
		padding-top: 7.5rem;
	}

	.basic-1 .element {
		display: inline-block;
		vertical-align: middle;
	}

	.basic-1 .fa-chevron-down {
		display: none;
	}

	.basic-1 .fa-chevron-right {
		display: inline-block;
		margin-right: 1.125rem;
		margin-left: 1.125rem;
		color: #cfd7e0;
		font-size: 1rem;
	}
	/* end of statement */


	/* Details 1 */
	.accordion .accordion-container {
		max-width: 70%;
	}
	/* end of details 1 */


	/* Details 2 */
	.tabs .tabs-container {
		max-width: 70%;
	}

	.tabs #tab-2 .list-unstyled {
		display: inline-block;
		width: 45%;
		margin-top: 0;
	}
	
	.tabs #tab-2 .list-unstyled.first {
		margin-right: 2rem;
	}
	/* end of details 2 */


	/* Pricing */
	.cards-1 .card {
		padding-right: 2.25rem;
		padding-left: 2.25rem;
	}

	.cards-1 .price {
		top: -1.25rem;
		right: -1.25rem;
	}
	/* end of pricing */


	/* Contact */
	.form-1 .list-unstyled li {
		display: inline-block;
		margin-right: 1rem;
	}
	/* end of contact */


	/* Extra Pages */
	.ex-basic-1 .text-box {
		padding: 1.75rem 2rem 0.875rem 2rem;
	}
	/* end of extra pages */
}
/* end of min-width 768px */


/* Min-width 992px */
@media (min-width: 992px) {
	
	/* General Styles */
	.h1-large {
		font-size: 3.75rem;
		line-height: 4.25rem;
	}

	.h2-heading {
		width: 35.25rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 40rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of general styles */


	/* Header */
	.header {
		padding-top: 13rem;
		padding-bottom: 10rem;
		text-align: left;
	}

	.header .text-container {
		margin-top: 5rem;
		margin-bottom: 0;
	}
	/* end of header */


	/* Statement */
	.basic-1 .fa-chevron-right {
		margin-right: 1.875rem;
		margin-left: 1.875rem;
		font-size: 1.75rem;
	}

	.basic-1 .testimonial-text {
		width: 60%;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of statement */


	/* Services */
	.basic-2 .service-container {
		text-align: left;
	}

	.basic-2 .image-container {
		display: inline-block;
		margin-right: 0.75rem;
		margin-bottom: 0;
	}

	.basic-2 .text-container {
		display: inline-block;
		width: 290px;
		vertical-align: top;
	}
	/* end of services */


	/* Description */
	.slider-1 .swiper-container {
		width: 98%;
	}

	.slider-1 .image-container {
		margin-bottom: 0;
	}
	
	.slider-1 .text-container {
		margin-top: 1.25rem;
	}

	.slider-1 .swiper-button-prev {
		left: -22px;
	}
	
	.slider-1 .swiper-button-next {
		right: -22px;
	}
	/* end of description */


	/* Details 1 */
	.accordion {
		height: 590px;
	}
	
	.accordion .area-1 {
		height: 100%;
		width: 50%;
		display: inline-block;
	}
	
	.accordion .area-2 {
		height: 100%;
		width: 50%;
		display: inline-block;
		vertical-align: top;
	}
	
	.accordion .accordion-container {
		max-width: 88%;
		margin-left: 2rem;
		padding-top: 8rem;
		padding-bottom: 0;
	}

	.accordion .accordion-title {
		width: 85%;
	}
	/* end of details 1 */


	/* Details 2 */
	.tabs {
		height: 668px;
	}

	.tabs .area-1 {
		height: 100%;
		width: 50%;
		display: inline-block;
		vertical-align: top;
	}

	.tabs .area-2 {
		height: 100%;
		width: 50%;
		display: inline-block;
	}

	.tabs .tabs-container {
		max-width: 88%;
		margin-left: 2rem;
		padding-top: 8rem;
		padding-bottom: 0;
	}

	.tabs .nav-tabs {
		justify-content: flex-start;
	}
	/* end of details 2 */



	/* Statistics */
	.counter #counter .cell {
		width: 7rem;
		margin-right: 2.5rem;
		margin-left: 2.5rem;
	}
	
	.counter #counter .counter-value {
		font-weight: 700;
		font-size: 4rem;
		line-height: 4.5rem;	
	}
	/* end of statistics */


	/* Team */
	.basic-5 .card {
		display: inline-block;
		width: 222px;
		max-width: 100%;
		vertical-align: top;
	}
	
	.basic-5 .card:nth-of-type(4n+2) {
		margin-right: 0.25rem;
		margin-left: 0.5rem;
	}

	.basic-5 .card:nth-of-type(4n+3) {
		margin-right: 0.5rem;
		margin-left: 0.25rem;
	}
	/* end of team */


	/* Contact */
	.form-1 .map-responsive {
		margin-bottom: 0;
	}
	/* end of contact */


	/* Footer */
	.footer .footer-col {
		margin-bottom: 2rem;
	}

	.footer .footer-col.first {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}
	
	.footer .footer-col.second {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}
	
	.footer .footer-col.third {
		display: inline-block;
		width: 224px;
		text-align: right;
		vertical-align: top;
	}

	.footer .footer-col.third .fa-stack {
		margin-right: 0;
		margin-left: 0.375rem;
	}
	/* end of footer */


}
/* end of min-width 992px */


/* Min-width 1200px */
@media (min-width: 1200px) {

	/* Navigation */
	.navbar .container {
		max-width: 100%;
		padding-right: 1.5rem;
		padding-left: 1.5rem;
	}
	/* end of navigation */
	

	/* Header */
	.header {
		padding-top: 14rem;
		padding-bottom: 11rem;
	}

	.header .text-container {
		margin-top: 5.75rem;
		margin-right: 3rem;
	}

	.header .form-container {
		margin-left: 3rem;
	}
	/* end of header */





	/* Description */
	.slider-1 .image-container {
		margin-right: 2rem;
	}

	.slider-1 .text-container {
		margin-top: 3.5rem;
		margin-left: 2rem;
	}

	.slider-1 .swiper-button-prev {
		left: -34px;
	}
	
	.slider-1 .swiper-button-next {
		right: -34px;
	}
	/* end of description */



	/* Contact */
	.form-1 .map-responsive {
		margin-right: 1.5rem;
		padding-bottom: 72%;
	}

	.form-1 form {
		margin-left: 1.5rem;
	}
	/* end of contact */

	
	/* Footer */
	.footer .footer-col.first {
		width: 352px;
		margin-right: 6rem;
	}
	
	.footer .footer-col.second {
		margin-right: 6.5rem;
	}
	
	.footer .footer-col.third {
		text-align: right;
	}
	/* end of footer */



}
/* end of min-width 1200px */