@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*
font-family: 'Raleway', sans-serif;
*/


/* -----------------------------------
[01] GENERAL
[02] LOADER
[03] BUTTONS
[04] FOOTER
[05] SCROLL UP
[06] HEADER
[07] TOP MENU
[08] SIDE BAR
[09] SIDE BAR MENU
[10] INDEX
	[10.1] SLIDER
	[10.1] INDEX PAGE
[11] PAGES
-------------------------------------*/

:root {	
	--main:#d2d6de;
	--main-rgb:210,214,222;
	--dark:#343a40;
	--dark-rgb:52,58,64;
	--darkness:#2f3439;
	--blue:#4b94bf;
	--blue-rgb:75,148,191;
	--light-blue:#B3CBE4;
	--light-blue-rgb:179,203,228;
	--silver:#eceff1;
	--silver-rgb:236,239,241;
	--metallic:#A1A8B2;
	--metallic-rgb:161,168,178;
}

/* -----------------------------------
	[01] GENERAL
-------------------------------------*/
* {
	outline: none!important;
	transition: all 0.3s ease-out 0s;
}
*, *::after, *::before {
	box-sizing: border-box;
}
html {
	position: relative;
	min-height: 100%;
}
body {
	-webkit-tap-highlight-color: transparent;	
	   -webkit-text-size-adjust: 100%;	
	width: 100%;	
	background:var(--dark);
	color: var(--main);
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height:1.5;  
	overflow-x: hidden;
	margin-bottom:80px;
}
footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 80px;
	background: var(--darkness);
	text-align: center;
	padding-top: 20px;		
}

h1, h2, h3, h4, h5, h6 {	
	font-weight: 400;
	margin: 20px 0;
	line-height: 1.5;
}
 
a:hover, 
a:active,
a:focus{
	color: rgba(var(--main-rgb),0.8);
}
a {
	color: var(--blue);
	text-decoration: none;
}
img {
	max-width: 100%;
}
@media (min-width: 1200px) {
	.container-narrow {
		max-width: 1024px;
		width: 100%;
		margin-right: auto;
		margin-left: auto;	  
	}
}
header {
	margin-bottom: 20px;
}
.nav-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}	
.logo {
	font-size: 2em;
	font-weight: 700;
}
.user {
	font-size: 2em;
}
.middle-nav {
	display: flex;
}
.nav-pills .nav-link {
	background: none;
	border: 0;
	border-radius: 0;
	color: var(--blue);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
	color: #fff;
	background-color: var(--blue);
	border-radius: 0;
}
.nav-pills .nav-item {
	margin: 0 20px;
}	
@media (max-width: 767px) {
	.nav-pills .nav-item {
		margin: 0 5px;
	}
}	
@media (max-width: 575px) {
	.user {
		display: none;
	}
	.logo {
		font-size: 1.75em;
	}	
	.nav-pills .nav-item {
		margin: 0;
	}	
}
@media (max-width: 450px) {
	.nav-flex {
		flex-wrap: wrap;
		justify-content: center;
	}	
	.logo {
		width: 100%;
		flex-grow: 1;
		text-align: center;
	}
}
@media (max-width: 350px) {
	.nav-pills .nav-link {
		padding: 5px;
	}	
}	
.tab-pane {
	box-shadow: 0px 0 50px rgba(var(--main-rgb),0.5);
	border: 1px solid rgba(var(--main-rgb),0.8);
}
.tab-pane h2{
	color: var(--metallic);
	text-align: center;
	text-transform: capitalize;
}
.intro {
	display: flex;
	align-items: center;
	background: var(--darkness);
	height: 500px;
}
.intro-bg {
	width: 60%;
	background: url(../images/intro.jpg) center center no-repeat;
	background-size: cover;
	height: 500px;
}
.intro-text {
	width: 40%;
	text-align: center;
	padding: 20px;
	color: var(--metallic);
}
@media (max-width: 991px) {
	.intro-bg {
		width: 40%;
	}
	.intro-text {
		width: 60%;
	}
}	
@media (max-width: 575px) {
	.intro-bg {
		width: 25%;
	}
	.intro-text {
		width: 75%;
	}
}	
.contact-form {
	width: 80%;
	margin: 20px auto;
}
@media (max-width: 991px) {
	.contact-form {
		width: 100%;
	}
}
.form-text {
	margin-top: 0.25rem;
	font-size: 0.875em;
	color: var(--main);
	text-align: center;
}
.contact-form input.form-control {
	color: var(--metallic);
	background-color: transparent;
	border: none;
	border-bottom: 1px solid var(--silver);
	border-radius: 0;
}
.contact-form .form-control:focus {
	color: var(--main);
	background-color: transparent;
	border-color: var(--metallic);
	outline: 0;
	box-shadow: none;
}	
.contact-form textarea.form-control {
	color: var(--metallic);
	background-color: transparent;
	border: 1px solid var(--silver);
	border-radius: 0;
}
.contact-form .form-floating {
	margin-bottom: 20px;
}
.btn-send {
	min-width: 200px;
	padding: 10px;
	color: #fff;
	background: var(--blue);
	border-radius: 0;
}
.btn-send:hover {
	color: #fff;
	background: var(--metallic);
}
.btn-box{		
	text-align: center;
	margin: 20px auto;
}
.contact-form .form-check-input:focus {
	border-color: var(--blue);
	outline: 0;
	box-shadow: none;
}
.contact-form .form-check-input:checked {
	background-color: var(--blue);
	border-color: var(--blue);
}
.link-modal {	
	color: var(--blue);
	cursor: pointer;
}
.modal-content {
	border-radius: 0;
	padding: 20px 20px 10px;
}
.modal-content h6{
	text-align: center;
}	