
:root { --blueDark  : #005985; }
:root { --blueMid   : #00adef; }
:root { --blueLight : #d2f0fb; }


:root { --turqDark  : #36494d; }
:root { --turqLight : #5cbecb; }

:root { --purpleDark  : #4f5ed5; }
:root { --purpleMid   : #5e93fd; }
:root { --purpleLight : #7aa6fd; }

:root { --Black : #000000; }

:root { --greyDark  : #353638; }
:root { --greyLight : #3a3b3d; }



html {
    overflow-x: hidden;
	 box-sizing: border-box;
}

body {
	width:100%;
	margin:0 auto;
	min-width: 1026px;
	max-width: 3500px;
	font-size:100%;
	font-family: 'calibri';
	overflow-x: hidden !important;
	background: #f5f5f5;
}

* {
	margin:0;
	padding:0;
}

*,
*::before,
*::after {
  box-sizing: inherit; 
}

#loader {
	width: 0%;
	height: 3px;
	position: fixed;
	top: 0;
	left: 0;
	background: var(--blueDark);
	z-index: 1001;
	transition: all 0.6s  ease !important;
	opacity: 0;
}

.loader-showed {
	opacity: 1 !important;
	transition: all 0.6s ease !important;
}

#loader span {
	vertical-align: middle;
	display: block;
	text-align: center;
	margin-top:20%;
	color: var(--white);
	display: none !important;
}
#loader span img {
	width: 3%;
	display: none !important;
}

ul {
	list-style: none;
}
.zero {
	float: none;
	clear: both;
	width: 0px !important;
}

a {
	text-decoration: none;
	color: inherit;
}
.text-right {
	text-align: right;
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}


.pc_only {
	display: block;
}

.mob_only {
	display: none !important;
}

.tablet_only {
	display: none;
}

#mainHeader {
	position: fixed;
	top: 0;
	left: 20%;
	width: 60%;
	margin: 0 auto;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5%;
	z-index: 2;
	background: rgba(0,0,0,0.1);
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

#siteLogo {
	width: 10%;
	overflow: hidden;
	padding: 0.5%;
}
#siteLogo img {
	width: 100%;
}


#headerSpacer {
	width: 25%;
}


#mainNav {
	width: 68%;
	display: flex;
	justify-content: end;
	align-items: center;
}


#mainNav .headerNavLink {
	margin: 0 2%;
	position: relative;
	padding-top: 5%;
	overflow: hidden;
}

#mainNav .headerNavLink .navDecoration {
	width: 0.2em;
	height: 2.2em;
	background: #000;
	position: absolute;
	top: -100%;
	left: 47.5%;
	transition: all 0.3s ease-in-out;
}
#mainNav .headerNavLink:hover .navDecoration {
	top: -0%;
	transition: all 0.3s ease-in-out;
}
#mainNav .headerNavLinkActivated .navDecoration {
	top: -0%;
	transition: all 0.3s ease-in-out;
}


#mainNav .headerNavLink .navSpan {
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: bold;
}
#mainNav .headerNavLink:hover .navSpan {
	cursor: pointer;
	color: #000;
}

#mainNav .headerNavLinkActivated .navSpan {
	cursor: pointer;
	color: #000;
}


#slider {
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
#slider .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: red;
	background-image: url('../../uploads/10.jpg');
	background-size: 100%;
	background-position: center center;
	z-index: 0;
}
#slider .overlay {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #BDE9EC 0%, #622FE1 100%);
	opacity: 0.8;
}
#slider .texter {
	position: absolute;
	z-index: 2;
	top: 40%;
	left: 0;
	width: 100%;
	text-align: center;
}
#slider h1 {
	width: 100%;
	text-align: center;
	color: #FFF;
	font-size: 3em;
	font-weight: normal;
	letter-spacing: 3px;
}
#slider h2 {
	width: 100%;
	text-align: center;
	color: #FFF;
	font-size: 1.5em;
	font-weight: normal;
	letter-spacing: 3px;
	opacity: 0.8;
	margin-top: 1%;
}
.tabsSlider {
	position: absolute;
	bottom: 0;
	left: 20%;
	width: 60%;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out !important;
}
.tabsSlider .tabSelect {
	width: 25%;
	padding: 3% 0;
	text-align: center;
	background: rgba(255,255,255,0.6);
	color: #767676;
	text-transform: uppercase;
}
.tabsSlider .tabSelect:hover {
	cursor: pointer;
	color: #000000;
}
.tabsSlider .tabSelect i {
	margin-right: 2%;
}
.tabsSlider .tabSelect i,
.tabsSlider .tabSelect span {
	vertical-align: middle;
}
.tabsSlider .tabSelectActive {
	background: rgba(255,255,255,1) !important;
	color: #000000;
}
.tabsSlider .tabSelect:nth-child(1) {
	border-top-left-radius: 10px;
}
.tabsSlider .tabSelect:nth-child(4) {
	border-top-right-radius: 10px;
}
.tabsSlider .tabData {
	display: none !important;
}

#tabberBody {
	width: 60%;
	margin: 0 auto;
	background: #FFF;
	min-height: 50px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	padding: 2%;
	min-height: 25em;
}
#tabberBody .tabBg {
	width: 40%;
	display: inline-block;
	vertical-align: top;
}
#tabberBody .tabBg img {
	width: 100%;
	vertical-align: middle;
}
#tabberBody .tabTexter {
	margin-left: 5%;
	width: 50%;
	display: inline-block;
	vertical-align: top;
}
#tabberBody .tabTexter p {
	width: 100%;
	margin: 2% auto;
	text-align: left;
	line-height: 1.8;
	font-size: 1.0em;
	opacity: 0.8;
}



.indexBadges {
	width: 63%;
	margin: 2% auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
}
.indexBadges .badge {
	width: 28%;
	text-align: center;
	background: #FFF;
	padding: 3% 0;
	border-radius: 5px;
	margin: 2% 0;
	border: 1px solid rgba(0,0,0,0.1);
}
.indexBadges .badge i {
	width: 100%;
	display: block;
	margin: 0 auto;
	text-align: center;
	font-size: 3em;
	color: #2b3a8f;
}
.indexBadges .badge h1 {
	width: 100%;
	display: block;
	margin: 2% auto;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 2%;
}
.indexBadges .badge p {
	width: 90%;
	display: block;
	margin: 0 auto;
	text-align: center;
	margin-top: 2%;
	opacity: 0.5;
	font-weight: bold;
}



.indexDecor {
	width: 100%;
	margin: 0 auto;
	height: 30em;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-attachment: fixed !important;
	position: relative;
}
.indexDecor .blueBgOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  opacity: 0.6;
	background: linear-gradient(45deg, #BDE9EC 0%, #622FE1 100%);
	z-index: 1;
}
.indexDecor h1 {
	position: absolute;
	top: 40%;
	left: 10%;
	width: 80%;
	z-index: 2;
	text-align: center;
	color: #FFF;
	font-size: 2em;
	font-weight: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 1.5;
}

.siteSection {
	width: 100%;
	margin: 2% auto;
	padding: 1%;
}
.siteSection .siteSectionTitle {
	width: 100%;
	margin: 0% auto;
	text-align: center;
	text-transform: uppercase;
	font-size: 2.5em;
	font-weight: normal;
	letter-spacing: 2px;
	line-height: 2;
}

.siteSection .siteSectionPar {
	width: 50%;
	margin: 0% auto;
	text-align: center;
	font-size: 1.3em;
	font-weight: normal;
	opacity: 0.7;
	margin-bottom: 2%;
}

.boxHolder {
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}

.servicePageBoxer {
	width: 20% !important;
	min-height: 20em !important;
	margin: 0.5% !important;
}


.boxHolder .boxer {
	width: 30%;
	position: relative;
	min-height: 30em;
	margin: 1%;
	background-repeat: no-repeat !important;
	background-size:  100% 100% !important;
	background-position: center center !important;
	border: 1px solid #c6c5c5;
	border-bottom: none;
	transition: all 0.5s ease-in-out !important;
	overflow: hidden;
}
.boxHolder .boxer:hover {
	background-size:  120% 120% !important;
	transition: all 0.5s ease-in-out !important;
}
.boxHolder .boxer h1 {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #FFF;
	width: 100%;
	padding: 8% 3%;
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-bottom: 1px solid #c6c5c5;
}


footer {
	width: 100%;
	margin: 0 auto;
	background: #25282a;
}


.footerCols {
	width: 100%;
	margin: 0 auto;
	background: #1e2022;
	color: #FFF;
	text-align: center;
}
.footerCols .footerCol {
	width: 20%;
	display: inline-block;
	vertical-align: top;
	padding: 2% 0;
}
.footerCols .footerCol i {
	display: block;
	font-size: 1.5em;
	margin-bottom: 5%;
}
.footerCols .footerCol p {
	display: block;
	font-size: 1.0em;
	line-height: 1.5;
	opacity: 0.74;
}

.rights {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	color: #FFF;
	padding: 2% 0;
}


.siteArticle {
	width: 90%;
	margin: 2% auto;
	background: #FFF;
	padding: 1% 1%;
}
.siteArticle h3 {
	width: 100%;
	margin: 1% auto;
	text-transform: uppercase;
	font-size: 2em;
	color: #2b3a8f;
	border-bottom: 3px solid #2b3a8f;
}
.siteArticle p {
	width: 90%;
	margin: 1% auto;
	font-size: 1.2em;
	line-height: 2;
	opacity: 0.8;
}












































