/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- About
- Services
- Details
- Projects
- Works
- Testimonials
- Questions
- Contact
- Footer 
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds, navbar - black #24262a
- Backgrounds - light gray #f7f9fb
- Buttons, icons - blue #0b36a8
- Headings text - black #24262a
- Body text - dark gray #4d5055
******************************************/


/**************************/
/*     General Styles     */
/**************************/
body,
html {
    width: 100%;
	height: 100%;
}

body, p {
	color: #4d5055; 
	font: 400 1rem/1.625rem "Open Sans", sans-serif;
}

h1 {
	color: #24262a;
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 3.25rem;
	font-family: "Poppins"
}

h2 {
	color: #24262a;
	font-weight: 700;
	font-size: 2rem;
	line-height: 2.5rem;
	font-family: "Poppins"
}

h3 {
	color: #24262a;
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-family: "Poppins"
}

h4 {
	color: #24262a;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 2rem;
	font-family: "Poppins"
}

h5 {
	color: #24262a;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.625rem;
	font-family: "Poppins"
}

h6 {
	color: #24262a;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.375rem;
	font-family: "Poppins"
}

.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;
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: #4d5055;
	text-decoration: underline;
}

a:hover {
	color: #4d5055;
	text-decoration: underline;
}

.no-line {
	text-decoration: none;
}

.no-line:hover {
	text-decoration: none;
}

.blue {
	color: #2259ec;
}

.bg-gray {
	background-color: #f7f9fb;
}

.section-divider {
	display: block;
	height: 1px;
	margin: 0;
	border: none;
	background-color: #d3dae2;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #0b36a8;
	background-color: #0b36a8;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	background-color: transparent;
	color: #0b36a8; /* needs to stay here because of the 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 #0b36a8;
	background-color: #0b36a8;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	background-color: transparent;
	color: #0b36a8; /* needs to stay here because of the 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 #24262a;
	background-color: transparent;
	color: #24262a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: #24262a;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #24262a;
	background-color: transparent;
	color: #24262a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	background-color: #24262a;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #24262a;
	background-color: transparent;
	color: #24262a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #24262a;
	color: #ffffff;
	text-decoration: none;
}

.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.label-control {
	position: absolute;
	top: 0.875rem;
	left: 1.5rem;
	color: #7d838a;
	opacity: 1;
	font-size: 0.875rem;
	line-height: 1.375rem;
	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: #4d5055;
	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.5rem;
	border: 1px solid #cbcbd1;
	background-color: #ffffff;
	color: #4d5055;
	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.3125rem;
	border: 1px solid #cbcbd1;
	background-color: #ffffff;
	color: #4d5055;
	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 #0b36a8;
	border-radius: 32px;
	background-color: #0b36a8;
	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 #24262a;
	background-color: transparent;
	color: #24262a;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	background-color: #24262a;
	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.125rem;
	padding-bottom: 0.125rem;
}

.navbar .logo-image img {
    width: 118px;
	height: 36px;
}

.navbar .logo-text {
	color: #ffffff;
	font-weight: 700;
	font-size: 1.875rem;
	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: #24262a;
	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: #ffffff;
	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: #9c9ead;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
	}
}

.navbar .dropdown-menu {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	border: none;
	background-color: #24262a;
}

.navbar .dropdown-item {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	text-decoration: none;
}

.navbar .dropdown-item:hover {
	background-color: #24262a;
	color: #9c9ead;
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.5rem auto 0.5rem auto;
	border: none;
	background-color: #505050;
}
/* end of dropdown menu */

.navbar .fa-stack {
	width: 2em;
	margin-right: 0.25rem;
	font-size: 0.75rem;
}

.navbar .fa-stack-2x {
	color: #0b36a8;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
	color: #ffffff;
}

.navbar .fa-stack:hover .fa-stack-1x {
	color: #0b36a8;
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/******************/
/*     Header     */
/******************/
.header {
	padding-top: 7rem;
	padding-bottom: 5.5rem;
	background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../images/header-background.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
}

.header .h1-large {
	margin-bottom: 1.75rem;
	color: #ffffff;
}

.header .btn-solid-lg:hover {
	border: 1px solid #ffffff;
	color: #ffffff;
}

.header .btn-outline-lg {
	padding: 1.625rem 1.625rem 1.625rem 1.625rem;
	border: none;
	color: #ffffff;
}

.header .btn-outline-lg:hover {
	background: transparent;
	color: #9c9ead;
	text-decoration: none;
}

.header .btn-outline-lg .fas {
	margin-right: 0.375rem;
}


/*****************/
/*     About     */
/*****************/
.basic-1 {
	padding-top: 7.75rem;
	padding-bottom: 5.25rem;
}

.basic-1 .text-container {
	margin-bottom: 3rem;
}

.basic-1 .time {
	margin-bottom: 0.5rem;
	color: #0b36a8;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.5rem;
	font-family: "Poppins";
}

.basic-1 h6 {
	margin-bottom: 0.125rem;
}


/********************/
/*     Services     */
/********************/
.basic-2 {
	padding-top: 7.75rem;
	padding-bottom: 5.25rem;
}

.basic-2 .h2-heading {
	margin-bottom: 0.75rem;
	text-align: center;
}

.basic-2 .p-heading {
	margin-bottom: 4rem;
	text-align: center;
}

.basic-2 .text-box {
	margin-bottom: 3rem;
	padding: 3.5rem 1rem 2.125rem 1rem;
	border: 1px solid #cfd7de;
}

.basic-2 .fas,
.basic-2 .far {
	margin-bottom: 1.75rem;
	color: #0b36a8;
	font-size: 3.5rem;
}

.basic-2 h4 {
	letter-spacing: 1px;
}


/*******************/
/*     Details     */
/*******************/
.split .area-1 {
	height: 430px;
	background: linear-gradient(to bottom right, rgba(25, 26, 29, 0.5), rgba(25, 26, 29, 0.5)), url('../images/details-background.jpg') center center no-repeat;
	background-size: cover;
}

.split .area-2 {
	padding-top: 7.75rem;
	padding-bottom: 7.75rem;
}

.split p {
	margin-bottom: 2.25rem;
}

.split .icons-container {
	margin-top: 3rem;
}

.split .icons-container img {
	width: 50px;
	margin-right: 0.625rem;
	margin-bottom: 0.75rem;
}


/********************/
/*     Projects     */
/********************/
.basic-3 {
	padding-top: 7.75rem;
	padding-bottom: 1rem;
}

.basic-3 .h2-heading {
	margin-bottom: 0.75rem;
	text-align: center;
}

.basic-3 .p-heading {
	margin-bottom: 4rem;
	text-align: center;
}

.basic-3 .text-container {
	margin-bottom: 4rem;
}

.basic-3 .image-container {
	margin-bottom: 1rem;
}

/* Hover Animation */
.basic-3 .image-container {
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;
}

.basic-3 .image-container img {
	margin: 0;
	transition: all 0.2s;
}

.basic-3 .image-container:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
} 
/* end of hover animation */


/*****************/
/*     Works     */
/*****************/
.basic-4 {
	padding-bottom: 1rem;
}

.basic-4 .text-container {
	margin-bottom: 4rem;
}

.basic-4 .image-container {
	margin-bottom: 1rem;
}

/* Hover Animation */
.basic-4 .image-container {
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;
}

.basic-4 .image-container img {
	margin: 0;
	transition: all 0.2s;
}

.basic-4 .image-container:hover img {
	-moz-transform: scale(1.15);
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
} 
/* end of hover animation */


/************************/
/*     Testimonials     */
/************************/
.cards-1 {
	padding-top: 3rem;
	padding-bottom: 3.875rem;
}

.cards-1 .h2-heading {
	margin-bottom: 3rem;
	text-align: center;
}

.cards-1 .card {
	margin-bottom: 4rem;
	border: none;
}

.cards-1 .card-body {
	padding: 0;
	text-align: center;
}

.cards-1 .testimonial-text {
	margin-bottom: 1.625rem;
}

.cards-1 img {
	display: inline-block;
	width: 60px;
	margin-bottom: 0.875rem;
	border-radius: 50%;
}

.cards-1 .text {
	margin-top: 0.375rem;
}

.cards-1 .testimonial-author {
	color: #24262a;
}

.cards-1 .testimonial-author,
.cards-1 .occupation {
	font-size: 0.875rem;
	line-height: 1.375rem;
}


/*********************/
/*     Questions     */
/*********************/
.accordion-1 {
	padding-top: 7.75rem;
	padding-bottom: 6.75rem;
}

.accordion-1 .h2-heading {
	margin-bottom: 2.5rem;
	text-align: center;
}

.accordion-1 .card {
	margin-bottom: 1.75rem;
	border: none;
}

.accordion-1 .card-header {
	padding: 0;
	border: none;
	background-color: transparent;
}

.accordion-1 .card button {
	padding: 0;
	color: #24262a;
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-family: 'Poppins';
}

.accordion-1 .card button:hover {
	text-decoration: none;
}

.accordion-1 .card button:before {
	float: left;
	margin-right: 0.625rem;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f078";
	transition: all 0.2s;
}

.accordion-1 .card button.collapsed:before {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
} 

.accordion-1 .card-body {
	padding: 0.75rem 1.5rem 0.5rem 1.5rem;
}


/*******************/
/*     Contact     */
/*******************/
.form-1 {
	padding-top: 7.75rem;
	padding-bottom: 7rem;
	text-align: center;
}

.form-1 .h2-heading {
	margin-bottom: 0.75rem;
	text-align: center;
}

.form-1 .p-heading {
	margin-bottom: 4rem;
}


/******************/
/*     Footer     */
/******************/
.footer {
	padding-top: 6.25rem;
	padding-bottom: 2rem;
	background-color: #24262a;
	text-align: center;
}

.footer a {
	text-decoration: none;
}

.footer .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.5rem;
}

.footer .fa-stack .fa-stack-1x {
    color: #ffffff;
	transition: all 0.2s ease;
}

.footer .fa-stack .fa-stack-2x {
	color: #0b36a8;
	transition: all 0.2s ease;
}

.footer .fa-stack:hover .fa-stack-1x {
	color: #0b36a8;
}

.footer .fa-stack:hover .fa-stack-2x {
    color: #ffffff;
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: #24262a;
	text-align: center;
}

.copyright .p-small {
	color: #9da6ac;
	text-align: center;
}

.copyright a {
	color: #9da6ac;
}


/******************************/
/*     Back To Top Button     */
/******************************/
a.back-to-top {
	position: fixed;
	z-index: 999;
	right: 12px;
	bottom: 12px;
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 30px;
	background: #3a424d url("../images/up-arrow.png") no-repeat center 47%;
	background-size: 18px 18px;
	text-indent: -9999px;
}

a:hover.back-to-top {
	background-color: #0b36a8;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background-color: #24262a;
}

.ex-header h1 {
	color: #ffffff;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .media-body {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fb;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: #0b36a8;
}

.ex-cards-1 .card .fa-stack-1x {
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .media-body {
	margin-left: 0.75rem;
}

.ex-cards-1 .card .list-unstyled .media-body h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.375rem;
}


/*************************/
/*     Media Queries     */
/*************************/	
/* Min-width 768px */
@media (min-width: 768px) {

	/* Header */
	.header {
		padding-top: 11rem;
		padding-bottom: 9rem;
	}
	/* end of header */


	/* Services */
	.basic-2 .text-box {
		padding-right: 2.125rem;
		padding-left: 2.125rem;
	}
	/* end of services */


	/* 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 */
	.h2-heading {
		width: 35.25rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 46rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of general styles */


	/* Navigation */
	.navbar {
		padding-top: 1.75rem;
		background-color: transparent;
		box-shadow: none;
		transition: all 0.2s;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-top: 0.5rem;
		background-color: #24262a;
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}
	
	.navbar .nav-item .nav-link {
		padding-right: 0.625rem;
		padding-left: 0.625rem;
	}

	.navbar .dropdown-menu {
		margin-top: 0.25rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}
	
	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
	/* end of navigation */


	/* Header */
	.header {
		padding-top: 15rem;
		padding-bottom: 14rem;
		text-align: left;
	}
	/* end of header */


	/* Details */
	.split {
		height: 760px;
	}
	
	.split .area-1 {
		height: 100%;
		width: 50%;
		display: inline-block;
	}
	
	.split .area-2 {
		height: 100%;
		width: 50%;
		display: inline-block;
		vertical-align: top;
	}

	.split .text-container {
		width: 400px;
		margin-left: 3rem;
	}
	/* end of details */


	/* Testimonials */
	.cards-1 .card {
		display: inline-block;
		width: 290px;
		vertical-align: top;
	}

	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1.5rem;
		margin-left: 1.5rem;
	}

	.cards-1 .card-body {
		text-align: left;
	}

	.cards-1 .details {
		display: flex;
		align-items: flex-start;
	}
	
	.cards-1 .details .text {
		flex-direction: column;
	}
	
	.cards-1 .details img {
		margin-right: 1.125rem;
	}
	/* end of testimonials */


	/* Accordion */
	.accordion-1 .accordion {
		width: 730px;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of accordion */


	/* Contact */
	.form-1 form {
		width: 790px;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of contact */


	/* Extra Pages */
	.ex-cards-1 .card {
		display: inline-block;
		width: 296px;
		vertical-align: top;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}
	/* end of extra pages */
}
/* end of min-width 992px */


/* Min-width 1200px */
@media (min-width: 1200px) {

	/* General Styles */
	.h1-large {
		font-size: 3.75rem;
		line-height: 4.625rem;
	}
	/* end of general styles */


	/* Navigation */
	.navbar .container {
		max-width: 1330px;
	}
	/* end of navigation */


	/* Header */
	.header {
		padding-top: 18.25rem;
		padding-bottom: 17.25rem;
	}
	/* end of header */


	/* About */
	.basic-1 .text-container.first {
		margin-right: 2rem;
	}

	.basic-1 .text-container.second {
		margin-right: 1rem;
		margin-left: 1rem;
	}

	.basic-1 .text-container.third {
		margin-left: 2rem;
	}
	/* end of about */


	/* Details */
	.split {
		height: 700px;
	}

	.split .text-container {
		width: 460px;
		margin-left: 5rem;
	}
	/* end of details */


	/* Testimonials */
	.cards-1 .card {
		width: 338px;
	}
	
	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.625rem;
		margin-left: 2.625rem;
	}
	/* end of testimonials */
	

	/* Extra Pages */
	.ex-cards-1 .card {
		width: 336px;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.875rem;
		margin-left: 2.875rem;
	}
	/* end of extra pages */
}
/* end of min-width 1200px */


/* Cambios al nuevo css /*
/* ──────────────── HEADER (HERO) ──────────────── */

.header-hero {
  position: relative;
  background: url('images/herobackground.jpg') no-repeat center center/cover;
  height: 75vh;
  min-height: 500px;
  color: #fff;
  overflow: hidden;
}
.header-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 1;
}
.header-hero .container {
  position: relative;
  z-index: 2;
}
.hero-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.5rem; margin-bottom: 2rem; }
.hero-buttons .btn { padding: 0.75rem 1.5rem; font-size: 1.125rem; }

/* 7. Asegurar que haya espacio entre botones */
.hero-buttons .btn + .btn {
  margin-left: 1rem;
}

/* ───────────── SUBIR MENÚ. CAMBIO DE FONDO AL SCROLL ───────────── */

/* ──────────────── NAVBAR TRANSPARENTE ──────────────── */
/*--------------------------------------------
  1) Navbar transparente al inicio y con fondo al hacer scroll
---------------------------------------------*/
.navbar-custom {
  position: fixed;       /* Fija la navbar arriba */
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent !important; /* Transparente inicialmente */
  transition: background-color 0.3s ease, padding 0.3s ease;
  padding: 1rem 0;       /* Padding “alto” al inicio */
  z-index: 9999;         /* Por encima de todo */
}

/* Cuando hay scroll, cambiamos la clase a .scrolled (scripts.js lo agrega) */
.navbar-custom.scrolled {
  background-color: rgba(0, 0, 0, 0.85) !important;
  padding: 0.5rem 0;    /* Padding más chico al pegarse arriba */
}

.navbar-brand img {
  max-height: 60px;   /* Ajusta según tu logo */
  width: auto;
}

/* Links de la navbar */
.navbar-custom .nav-link {
  color: #ffffff;     /* Blanco cuando esté sobre la imagen */
  font-weight: 500;
  margin-left: 1rem;
  transition: color 0.2s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:focus {
  color: #09f;        /* Azul neón en hover */
  text-decoration: none;
}

.navbar-custom .social-icons a {
  font-size: 1.1rem;
  color: #ffffff;
  transition: color 0.2s ease;
}

.navbar-custom .social-icons a:hover {
  color: #09f;
}

/*--------------------------------------------
  2) Header Hero con imagen de fondo a pantalla completa
---------------------------------------------*/
.header-hero {
  position: relative;
  background: url('../images/herobackground.jpg') no-repeat center center / cover;
  height: 100vh;            /* Ocupa toda la altura de la ventana */
  min-height: 500px;        /* Mínimo 500px si la pantalla es pequeña */
  color: #fff;              /* Texto blanco */
  overflow: hidden;
}

/* Capa semitransparente */
.header-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Opacidad un poco más baja para ver la imagen */
  z-index: 1;
}

/* Aseguramos que el contenido esté por encima de la overlay */
.header-hero .container {
  position: relative;
  z-index: 2;
}

/* Texto del Hero */
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Botones en el Hero */
.hero-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}

/*--------------------------------------------
  3) About Section (oscuro)
---------------------------------------------*/
#about {
  background-color: #1f2630;  /* Gris muy oscuro */
  color: #e0e0e0;             /* Gris claro para el texto */
}

#about h2 {
  color: #ffffff;             /* Título en blanco */
}

#about .highlight {
  color: #09f;               /* Subrayado “highlight” en azul */
  font-weight: 600;
}

#about .about-text {
  font-size: 1rem;
  line-height: 1.6;
}

/*--------------------------------------------
  4) Core Skills Section (blanco)
---------------------------------------------*/
#core-skills {
  background-color: #ffffff;  /* Fondo blanco */
}

.skill-card {
  border-radius: 8px;
  background-color: #f5f5f5;  /* Tarjeta gris clarito */
  transition: background-color 0.3s ease;
}

.skill-card:hover {
  background-color: #e0e0e0;
}

.skill-icon {
  color: #08f;               /* Icono en azul vibrante */
}

.skill-label {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #333333;
}

/*--------------------------------------------
  5) Ajustes generales de padding/márgenes
---------------------------------------------*/
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

h1, h2, h4, h5 {
  font-family: 'Poppins', sans-serif;
}




/* ===== Estilos para Core Skills (tarjetas con iconos) ===== */

.basic-1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.bg-gray {
  background-color: #212529;
}

/* Destacar keywords */
.highlight {
  text-decoration: underline;
  text-decoration-color: #09f;
  color: #ffffff;
  font-weight: 600;
}

/* Título de sección */
.text-container.first h2 {
  color: #ffffff;
  font-weight: 700;
}

/* Lead / párrafo descriptivo */
.text-container.first p.lead,
.text-container.first p {
  font-size: 1rem;
  color: #dddddd;
}

/* Subtítulo “Core Skills” */
.text-container.second h6 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Contenedor de cada tarjeta de skill */
.skill-card {
  background-color: rgba(255, 255, 255, 0.1); /* Blanco con 10% de opacidad */
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  height: 100%;
  align-items: center;
}

/* Hover: resalta la tarjeta y la eleva ligeramente */
.skill-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Iconos (FontAwesome) */
.skill-icon {
  color: #09f;       /* Azul neón */
  margin-right: 0.75rem;
}

/* Etiqueta de texto de la skill */
.skill-label {
  color: #ffffff;    /* Blanco */
  font-size: 0.95rem;
  font-weight: 600;
}

/* Asegurar separación en móviles */
.mb-3 {
  margin-bottom: 1rem !important;
}

/* Forzar que las columnas ocupen altura completa (align-items-stretch) */
.text-container.second {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-container.first {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ------------------------------
   ABOUT SECTION (FONDO OSCURO)
   ------------------------------ */
#about {
  background-color: #1a1f27; /* Gris muy oscuro */
  color: #f5f5f5;            /* Texto casi blanco */
}

#about h2 {
  font-size: 2rem;    /* Título más grande */
  font-weight: 700;
  color: #ffffff;
}

#about .about-text {
  font-size: 1.125rem;    /* 18px approx */
  line-height: 1.7;
  color: #e0e0e0;         /* Gris claro para los párrafos */
  margin-bottom: 1rem;
}

/* Resaltar palabras clave */
#about .highlight {
  background-color: #ffd54f; /* Amarillo suave */
  color: #1a1f27;            /* Mismo gris oscuro de fondo para contraste */
  padding: 0.15rem 0.3rem;
  border-radius: 0.2rem;
  font-weight: 600;
}

/* Imagen de Jose: bordes y sombra */
#about img {
  max-width: 100%;
  height: auto;
  border: 3px solid #2a2f35; /* borde ligeramente más claro que el fondo */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
}

/* Ajustes responsivos */
@media (max-width: 992px) {
  #about .col-lg-5,
  #about .col-lg-7 {
    text-align: center;
  }
  #about .col-lg-7 {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  #about h2 {
    font-size: 1.75rem;
  }
  #about .about-text {
    font-size: 1rem; 
  }
  #about .highlight {
    font-size: 0.95rem;
    padding: 0.1rem 0.2rem;
  }
}


/* ================================
   CORE SKILLS – ESTILOS DEFINITIVOS
   ================================ */

/* Aseguramos que la sección tenga algo de padding‐top para la navbar fija */
#core-skills {
  padding-top: 60px;   /* Altura de la navbar */
  background-color: #ffffff; /* Fondo blanco */
}

/* Título “Core Skills” centrado */
#core-skills h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #333333;
}

/* Contenedor de cada tarjeta */
.skill-card {
  border-radius: 8px;
  background-color: #f8f9fa; /* Gris clarito de fondo */
  transition: background-color 0.3s ease, transform 0.2s ease;
  padding: 1.5rem 0.5rem;    /* Espacio interno */
  min-height: 150px;         /* Alto mínimo para que todas sean uniformes */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hover sobre la tarjeta: fondo ligeramente más oscuro y leve elevación */
.skill-card:hover {
  background-color: #e9ecef; /* Un gris un poco más oscuro */
  transform: translateY(-4px);
}

/* Icono dentro de la tarjeta */
.skill-icon {
  color: #037bfe;  /* Azul vivo por defecto */
  transition: color 0.3s ease;
}

/* Al pasar el cursor, el icono se oscurece un poco */
.skill-card:hover .skill-icon {
  color: #0056b3;  /* Azul más oscuro en hover */
}

/* Etiqueta de texto debajo del icono */
.skill-label {
  display: block;
  margin-top: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #343a40;  /* Gris muy oscuro / casi negro */
  text-align: center;
  transition: color 0.3s ease;
}

/* Al hacer hover, la etiqueta también cambia ligeramente */
.skill-card:hover .skill-label {
  color: #36556d;  /* Gris más negro en el hover */
}

/* Ajuste responsivo: en pantallas muy pequeñas, reducir icono un poco */
@media (max-width: 576px) {
  .skill-icon {
    font-size: 2.5rem;
  }
  .skill-label {
    font-size: 1rem;
  }
}

/* ----------------------------------------------------
   Ajustes generales de contenedor y espaciados
   ---------------------------------------------------- */
/* Nos aseguramos de que no haya padding o margin extra que desordene */
.basic-1,
.basic-2,
.basic-3,
.basic-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Si usas bg-gray en algunas secciones, define un gris claro suave */
.bg-gray {
  background-color: #f7f9fb;
}


/* ----------------------------------------------------
   Media Queries para pantallas pequeñas
   ---------------------------------------------------- */
@media (max-width: 992px) {
  #about .col-lg-5,
  #about .col-lg-7 {
    text-align: center;
  }
  #about .col-lg-7 {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.125rem;
  }
  #about .about-text {
    font-size: 1rem;
  }
  .skill-icon {
    font-size: 2.5rem; /* Reducir un poco en móviles */
  }
  .skill-label {
    font-size: 0.9rem;
  }
}

.tech-circle {
  display: inline-flex !important;
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  background-color: #fff !important;
  border: 2px solid #ddd !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 16px !important;
  font-size: 3rem !important;
  font-weight: 600 !important;
  color: #555 !important;
}

/* Contenedor fijo para las imágenes de proyectos */
.slide-image {
  width: 800px;      /* ancho fijo */
  height: 60px;     /* alto fijo */
  margin: 0 auto;    /* centra horizontalmente */
}

/* Imagen ocupa todo el contenedor manteniendo proporción */
.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* recorta si es necesario para rellenar */
  border-radius: 4px;
}

/* Full‐screen preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: #111;          /* Color de fondo oscuro */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* SVG spinner */
.spinner {
  width: 80px;
  height: 80px;
  animation: rotate 1.5s linear infinite;
}
.spinner .path {
  stroke: #6f42c1;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

/* Rotación completa */
@keyframes rotate {
  100% { transform: rotate(360deg); }
}
/* Efecto dash */
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* Cuando termine la carga, ocultamos suave */
body.loaded #preloader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}


