/* @override 
http://localhost:8888/assets/css/style.css?*
http://localhost:9999/assets/css/style.css?* */

/* ===================================
Table of Content
====================================== */
/*  - Fonts
- Map
- Footer
- Loader
- Media Queries   */
/* ===================================
Google font
====================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;900&display=swap');

body {
	font-family: "Graphico", "Arial", sans-serif;
	overflow: hidden auto;
	font-weight: 300;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
}

p {
    margin: 0 0 1rem;
}

hr {
	border-color: #eee;
}

a {
	color: #2b2b2b;
	text-decoration: none;
	transition: color .15s ease-in-out;
	font-weight: 600;
}

a:hover, a:focus, a:active {
	color: #C5D92F;
}

ul li {
    font-size: 1rem;
    line-height: 28px;
    color: rgba(0, 0, 0, .7);
}
/* ===================================
Scrollbar
====================================== */

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	width: 12px;
	background: white;
	border-left: 0px solid white;
	border-right: 0px solid white;
}

::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.53);
	width: 0;
	height: 25%;
}

/* ===================================
Loader css
====================================== */
/*Loader*/
#loader {
	position: fixed;
	width: 100%;
	height: 100vh;
	/*background: #ffffff;*/
	background: #1D1A55;
	z-index: 999;
}

.loader {
	position: absolute;
	top: calc(50% - 32px);
	left: calc(50% - 32px);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	-webkit-perspective: 800px;
	perspective: 800px;
}

.inner {
	position: absolute;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.inner.img_rot{
	left: 0%;
	top: 0%;
	-webkit-animation: rotation 2s infinite linear;
	animation: rotation 2s linear infinite;
}

@-webkit-keyframes rotation {
	from {
		-webkit-transform: rotateY(0deg);
	}
	to {
		-webkit-transform: rotateY(359deg);
	}
}

.inner.one {
	left: 0%;
	top: 0%;
	-webkit-animation: rotate-one 1s linear infinite;
	animation: rotate-one 1s linear infinite;
	border-bottom: 3px solid #1f115d;
}

.inner.two {
	right: 0%;
	top: 0%;
	-webkit-animation: rotate-two 1s linear infinite;
	animation: rotate-two 1s linear infinite;
	border-right: 3px solid #C5D92F;
}

.inner.three {
	right: 0%;
	bottom: 0%;
	-webkit-animation: rotate-three 1s linear infinite;
	animation: rotate-three 1s linear infinite;
	border-top: 3px solid #6d6e71;
}

@-webkit-keyframes rotate-one {
	0% {
		-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
		transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
		transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
}

@keyframes rotate-one {
	0% {
		-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
		transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
		transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
}

@-webkit-keyframes rotate-two {
	0% {
		-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
		transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
		transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
}

@keyframes rotate-two {
	0% {
		-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
		transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
		transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
}

@-webkit-keyframes rotate-three {
	0% {
		-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
		transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
		transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
}

@keyframes rotate-three {
	0% {
		-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
		transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
		transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
}

/* ===================================
General
====================================== */
.parallax-disable {
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center center !important;
}

.side-menu-toggle.blue-btn {
	font-weight: bold;
}

/* ===================================
    side-nav css
    ====================================== */
    .side-nav {
    	width: 5%;
    	float: left;
    	background-color: #CFD600;
    	position: fixed;
    	z-index: 111;
		height: 100vh;
		top: 0;
    	display: flex;
    	flex-direction: column;
    	justify-content: space-between;
    	align-items: center;
    }

    .content-area {
    	width: 95%;
    	margin-left: 5%;
    	display: inline-block;
    	float: left;
    }

    .side-nav .navbar-brand {
    	padding: 20px 12px;
    	margin-right: 0;
    	cursor: pointer;
    	max-width: 65px;
    }

    .side-nav .navbar-links {
    	display: flex;
    	justify-content: end;
    	align-items: flex-end;
    }

    .side-nav .side-nav-icons {
    	display: block;
    	margin-left: auto;
    	margin-right: auto;
    	padding-left: 0;
    	text-align: center;
    	margin-bottom: 0;
    }

    .side-nav .side-nav-icons li {
    	list-style: none;
    }

    .side-nav .side-nav-icons li a {
    	text-decoration: none;
    }

    .side-nav .side-nav-icons li a i {
    	height: 30px;
    	width: 30px;
    	color: #ffffff;
    	font-size: 20px;
    	margin-bottom: 10px;
    	display: flex;
    	justify-content: center;
    	align-items: center;
    	transition: 0.5s ease;
    }

    .side-nav .side-nav-icons li a i:hover {
    	background-color: #ffffff;
    	border-radius: 50%;
    	color: #000000;
    }

    .toggle-btn {
    	display: inline-block;
    	width: 23px;
    	transition: 0.5s ease;
    	cursor: pointer;
    }

    .toggle-btn span {
    	display: block;
    	margin-bottom: 3px;
    	height: 2px;
    	background-color: #ffffff;
    	margin-left: auto;
    	margin-right: auto;
    	transition: 0.5s ease;
    	width: 100%;
    }

    .toggle-btn:hover span:first-child,
    .toggle-btn:hover span:last-child {
    	width: 50%;
    }

    .navbar-toggle {
    	padding: 20px;
    	height: 25px;
    }

/* ===================================
    side menu css
    ====================================== */
    .side-menu {
    	width: 28%;
    	min-width: 470px;
    	position: fixed;
    	left: 4%;
    	top: 0;
    	background: #1D1A55;
    	z-index: 11;
    	height: 100vh;
    	-webkit-transform: translate3d(-100%, 0, 0);
    	transform: translate3d(-100%, 0, 0);
    	-webkit-transition: -webkit-transform 0.5s ease;
    	transition: -webkit-transform 0.5s ease;
    	-o-transition: -o-transform 0.5s ease;
    	-o-transition: transform 0.5s ease;
    	transition: transform 0.5s ease;
    	-webkit-transition: transform 0.5s ease;
    	overflow: hidden;
    }

    .side-menu.left {
    	right: 0;
    	left: auto;
    	-webkit-transform: translate3d(100%, 0, 0);
    	transform: translate3d(100%, 0, 0);
    }

    .side-menu.before-side {
    	width: 280px;
    }

    .side-menu.side-menu-active,
    .side-menu.before-side {
    	-webkit-transform: translate3d(0, 0, 0);
    	transform: translate3d(0, 0, 0);
    }

    .pul-menu .side-menu.side-menu-active {
    	visibility: visible;
    	opacity: 1;
    }

    .side-menu .navbar-brand {
    	margin: 0 0 2.5rem 0;
    }

    /*Side overlay*/
    #close_side_menu {
    	position: fixed;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: 100%;
    	background-color: #000;
    	-webkit-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    	-o-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    	transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    	display: none;
    	z-index: 1031;
    	opacity: 0.4;
    }

    /*side clode btn*/
    .side-menu .btn-close {
    	height: 33px;
    	width: 33px;
    	display: inline-block;
    	text-align: center;
    	position: absolute;
    	top: 17px;
    	right: 17px;
    	cursor: pointer;
    }

    .side-menu.before-side .btn-close {
    	display: none;
    }

    .side-menu .btn-close::before,
    .side-menu .btn-close::after {
    	position: absolute;
    	left: 16px;
    	content: " ";
    	height: 24px;
    	width: 2px;
    	background: #fff;
    	top: 5px;
    }

    .side-menu .btn-close:before {
    	-webkit-transform: rotate(45deg);
    	-ms-transform: rotate(45deg);
    	transform: rotate(45deg);
    }

    .side-menu .btn-close:after {
    	-webkit-transform: rotate(-45deg);
    	-ms-transform: rotate(-45deg);
    	transform: rotate(-45deg);
    }

    /*side open btn*/

    .side-menu .inner-wrapper {
    	padding: 3.5rem 3rem 0rem 3rem;  /* bring the menu a bit down (0-bottom padding) */
    	height: 100%;
    	position: relative;
    	overflow-y: auto;
    	display: -webkit-box;
    	display: -ms-flexbox;
    	display: flex;
    	-webkit-box-align: center;
    	-ms-flex-align: center;
    	align-items: center;
    	text-align: left;
    	-ms-flex-wrap: wrap;
    	flex-wrap: wrap;
    }

    .pul-menu.pushwrap .side-menu .inner-wrapper {
    	padding: 3.5rem 2.5rem;
    }

    .side-menu .side-nav-menu {
    	margin-bottom: 30px;
    	display: block;
    }

    .side-nav-menu .navbar-nav .nav-item {
    	display: block;
    	margin: 10px 0;
    	padding: 0 !important;
    	opacity: 0;
    	-webkit-transition: all 0.8s ease 500ms;
    	-o-transition: all 0.8s ease 500ms;
    	transition: all 0.8s ease 500ms;

    	-webkit-transform: translateY(30px);
    	-ms-transform: translateY(30px);
    	transform: translateY(30px);
    }

    .side-nav-menu .navbar-nav .nav-item:first-child {
    	-webkit-transition-delay: 0.1s;
    	-o-transition-delay: 0.1s;
    	transition-delay: 0.1s;
    }

    .side-nav-menu .navbar-nav .nav-item:nth-child(2) {
    	-webkit-transition-delay: 0.2s;
    	-o-transition-delay: 0.2s;
    	transition-delay: 0.2s;
    }

    .side-nav-menu .navbar-nav .nav-item:nth-child(3) {
    	-webkit-transition-delay: 0.3s;
    	-o-transition-delay: 0.3s;
    	transition-delay: 0.3s;
    }

    .side-nav-menu .navbar-nav .nav-item:nth-child(4) {
    	-webkit-transition-delay: 0.4s;
    	-o-transition-delay: 0.4s;
    	transition-delay: 0.4s;
    }

    .side-nav-menu .navbar-nav .nav-item:nth-child(5) {
    	-webkit-transition-delay: 0.5s;
    	-o-transition-delay: 0.5s;
    	transition-delay: 0.5s;
    }

    .side-nav-menu .navbar-nav .nav-item:nth-child(6) {
    	-webkit-transition-delay: 0.6s;
    	-o-transition-delay: 0.6s;
    	transition-delay: 0.6s;
    }

    .side-nav-menu .navbar-nav .nav-item:nth-child(7) {
    	-webkit-transition-delay: 0.7s;
    	-o-transition-delay: 0.7s;
    	transition-delay: 0.7s;
    }

    .side-nav-menu .navbar-nav .nav-item:nth-child(8) {
    	-webkit-transition-delay: 0.8s;
    	-o-transition-delay: 0.8s;
    	transition-delay: 0.8s;
    }

    .side-nav-menu .navbar-nav .nav-item:nth-child(9) {
    	-webkit-transition-delay: 0.9s;
    	-o-transition-delay: 0.9s;
    	transition-delay: 0.9s;
    }

    .side-menu.side-menu-active .side-nav-menu .navbar-nav .nav-item {
    	-webkit-transform: translateY(0);
    	-ms-transform: translateY(0);
    	transform: translateY(0);
    	opacity: 1;
    }

    .side-nav-menu .navbar-nav .nav-item .menu-children {
    	display: none;
    	list-style: none;
    	margin-left: 25px;
    	padding-top: 15px;
    }

    .side-nav-menu .navbar-nav .nav-item .menu-children .nav-link {
    	font-size: 1.1rem;
    }

    .side-nav-menu .navbar-nav .nav-item .menu-children h6 span {
    	margin: 10px 0;
    	font-size: 1.0rem;
    	font-weight: 400;
    	color: #fff;
    	opacity: .6;
    	border-bottom: 2px solid white;
    	padding-bottom: 5px;
    	display:inline-block;
    }

    .side-nav-menu .navbar-nav .nav-link {
    	background: transparent;
    	border: 0;
    	display: inline-table;
    	color: #ffffff;
    	padding: 2px 0 3px 0 !important;
    	font-size: 1.5rem;
    	font-weight: 400;
    	line-height: normal;
    	position: relative;
    	border-radius: 0;
    	text-decoration: none;
    	letter-spacing: normal;
    	text-align: left;
    }

    .side-nav-menu .navbar-nav .nav-link.title {
    	font-weight: 500;
    }

    .side-nav-menu .navbar-nav .nav-link::after {
    	content: "";
    	position: absolute;
    	background: #ffffff;
    	display: inline-block;
    	width: 0;
    	height: 3px;
    	bottom: 0;
    	left: 0;
    	overflow: hidden;
    	-webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    	-o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    	transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    }

    .side-nav-menu .navbar-nav .nav-link:hover::after,
    .side-nav-menu .navbar-nav .nav-link:focus::after,
    .side-nav-menu .navbar-nav .nav-link.active::after {
    	width: 100%;
    }

    .side-nav-menu .navbar-nav .nav-link.active {
    	background: transparent;
    }

    .side-menu p {
    	margin-top: 0.5rem;
    	margin-bottom: 0;
    }

    @-webkit-keyframes animationFade {
    	from {
    		opacity: 0;
    		-webkit-transform: translate3d(0, -100%, 0);
    		transform: translate3d(0, -100%, 0);
    	}
    	to {
    		opacity: 1;
    		-webkit-transform: none;
    		transform: none;
    	}
    }

    @keyframes animationFade {
    	from {
    		opacity: 0;
    		-webkit-transform: translate3d(0, -100%, 0);
    		transform: translate3d(0, -100%, 0);
    	}
    	to {
    		opacity: 1;
    		-webkit-transform: none;
    		transform: none;
    	}
    }

    .side-menu .side-footer {
    	font-size: 0.8rem;
    }

    .side-menu .side-footer .rites,
    .side-menu .side-footer .rites a {
    	color: #fff;
    	opacity: .8;
    	font-weight: normal;
    }

/*------------------------------------------------------------------
[10. Overlays]
*/
.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.overlay-inner {
	background-repeat: no-repeat;
	background-size: cover;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0.9;
}

.overlay.home-overlay {
	position: absolute;
	width: 100%;
    height: 100vh;
}

.home-overlay .overlay-inner {
	position: absolute;
	height: 100%;
	width: 100%;
}

.home-overlay video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-primary {
	background-color: transparent !important;
	background: rgb(0,0,0);
	background: linear-gradient(54deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.24443280730260852) 90%);}

.bg-image-holder img {
	display: none !important;
}

.bg-secondary {
	opacity: .9;
	background-color: transparent !important;
	background: rgb(0,0,0);
	background: linear-gradient(60deg, rgba(0,0,0,0.24163168685442926) 0%, rgba(0,0,0,0.43771011822697825) 44%, rgba(0,0,0,0.5973739837731968) 100%);
}

.bg-green {
	background-color: #4EBBBC;
}

.bg-red {
	background-color: #E5342A;
}

.bg-blue {
	background-color: #1F1353;
}

.bg-orange {
	background-color: #F4971C;
}

.bg-grey {
	background-color: #706E6F;
}

/* ===================================
    map sec
    ====================================== */
    .home-banner {
    	background-repeat: no-repeat;
    	background-position: 0 0;
    	background-size: cover;
    	min-height: 100vh;
    	position: relative;
    	display: flex;
    	justify-content: center;
    	align-items: center;
    }

    .map-content-area {
    	padding: 5px;
    }

    .map-content-area h4 {
    	font-weight: 700;
    	font-size: 20px;
    	margin-bottom: 18px;
    	text-align: center;
    }

    .home-banner-wrap {
    	text-align: center;
    	color: #fff;
    }

    .home-banner-wrap p.sub {
    	opacity: 0.8;
    }

    .home-banner img {
    	max-width: 200px;
    	margin-bottom: 19px;
    }

    .home-banner h1 {
    	font-size: 3.125rem;
    	color: white;
    	text-align: center;
    	margin-bottom: 20px;
    }

    .home-banner-wrap p {
    	margin-bottom: 30px;
    	font-size: 20px;
    }

    .map-content-area span {
    	display: block;
    	font-weight: 500;
    	margin-bottom: 10px;
    	font-size: 14px;
    }

    .gm-ui-hover-effect {
    	top: 0 !important;
    	right: 0 !important;
    }

    .map-content-area span i {
    	margin-left: 30px;
    	float: right;
    	font-style: normal;
    }

    .map-content-area span.infected {
    	color: #000000;
    }

    .map-content-area span.recovered {
    	color: #029215;
    }

    .map-content-area span.deadth {
    	color: red;
    }

    /***********************************/
    /********standalone page css********/
    /***********************************/
    .slider-sec {
    	min-height: 400px;
    	position: relative;
    }

    .slider-sec .overlay {
    	position: absolute;
    	top: 0;
    	bottom: 0;
    	left: 0;
    	right: 0;
    	background-color: rgba(20, 32, 34, 0.6);
    }

    .slider-sec .overlay h4 {
    	font-family: "Montserrat", sans-serif;
    	font-weight: bold;
    	font-size: 38px;
    	color: #ffffff;
    	margin-top: 10%;
    	margin-bottom: 10px;
    }

    .crumbs {
    	position: relative;
    }

    .crumbs .breadcrumb-items {
    	display: inline-block;
    }

    .crumbs .breadcrumb {
    	margin-bottom: 0;
    	border-radius: 0;
    	padding: 15px 50px;
    	background-color: transparent;
    }

    .breadcrumb-item + .breadcrumb-item::before {
    	color: #ffffff;
    }

    .crumbs .breadcrumb li a {
    	color: #ffffff;
    	font-size: 14px;
    	font-family: "Montserrat", sans-serif;
    	text-decoration: none;
    }

    .crumbs .breadcrumb li a:hover {
    	/*color: #000000;*/
    }

    /*crumbs end*/

    .standalone-row .stand-img-des {
    	padding-left: 30px;
    	text-align: center;
    }

    .standalone-row:nth-child(2) .stand-img-des {
    	padding-left: 0;
    	padding-right: 30px;
    }

    .standalone-detail .sub-heading {
    	color: #C5D92F;
    	margin-bottom: 20px;
    }

    .standalone-area .sub-heading {
    	color: #C5D92F;
    	margin-bottom: 8px;
    }

    .standalone-detail .heading {
    	margin-bottom: 20px;
    	font-size: 40px;
    	color: #000000;
    	font-weight: 500;
    	font-family: Montserrat, sans-serif;
    }

    .standalone-detail .para_text {
    	color: #000000;
    	font-weight: 500;
    	font-family: Montserrat, sans-serif;
    	text-align: center;
    	font-size: 15px;
    	margin: 0 auto;
    	opacity: 0.8;
    	line-height: 2.1;
    }

    .standalone-detail {
    	padding-bottom: 100px;
    }

    .standalone-area .gradient-text1 {
    	font-family: "Montserrat", sans-serif;
    	font-weight: 500;
    	margin-bottom: 12px;
    }

    .standalone-area .stand-img-des .para_text {
    	font-family: "Montserrat", sans-serif;
    	color: #000000;
    	font-weight: 300;
    	opacity: 0.8;
    }

/* ===================================
Contact us page css start
====================================== */

.contact-us-sec {
	padding-bottom: 50px;
}

.contact-us-sec .contact-details {
	padding-bottom: 50px;
}

.contact-us-sec .contact-sub-heading,
.contact-us-form .contact-sub-heading {
	color: #C5D92F;
	font-size: 16px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	margin-bottom: 20px;
}

.contact-us-sec .contact-details .main-heading {
	color: #000000;
	font-size: 28px;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	margin-bottom: 20px;
}

.contact-us-sec .contact-details .contact-address {
	font-size: 14px;
	color: black;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	margin-bottom: 20px;
}

.contact-us-sec .contact-details .contact-list {
	padding-left: 0;
}

.contact-us-sec .contact-details .contact-list li {
	font-family: "Montserrat", sans-serif;
	font-weight: 300;
	list-style: none;
}

.contact-us-sec .contact-details .contact-list li span {
	font-weight: 400;
}

.contact-us-sec .contact-details .contact-list li:nth-child(even) {
	margin-bottom: 20px;
}

.contact-us-sec .contact-details .contact-list li:last-child {
	margin-bottom: 50px;
}

.contact-us-sec .contact-details .contact-s-media {
	padding-left: 0;
	margin-bottom: 0;
	right: auto;
	left: -10px;
}

.contact-us-sec .contact-details .contact-s-media li {
	list-style: none;
	margin-right: 18px;
	display: inline-block;
}

.contact-us-sec .contact-details .contact-s-media li:last-child {
	margin-right: 0;
}

.contact-us-sec .contact-details .contact-s-media li a {
	color: black;
}

.contact-us-sec .contact-details .contact-s-media li a i {
	font-size: 18px;
	transition: 0.8s ease;
}

.contact-us-sec .contact-details .page-footer {
	left: calc(50% - 125px);
}

.contact-us-form .my-form {
	position: relative;
}

.contact-us-form .my-form input {
	margin-bottom: 20px;
	border-radius: 10px;
	padding: 20px;
}

.contact-us-form .my-form input[placeholder] {
	color: #444444;
	opacity: 0.8;
	font-size: 14px;
}

.contact-us-form .my-form textarea {
	border-radius: 10px;
	padding: 20px;
}

.contact-us-form .my-form textarea[placeholder] {
	color: #444444;
	opacity: 0.8;
	font-size: 14px;
}

.display-error {
	position: absolute;
	top: -45px;
	left: 15px;
	right: 15px;
}

.contact-page .contact-list li:nth-child(2),
.contact-page .contact-list li:nth-child(3) {
	display: inline-block;
}

.contact-page .contact-list li:nth-child(2) {
	margin-right: 8px;
}

.contact-page .contact-list li:nth-child(even) {
	margin-bottom: 0 !important;
}

/* ===================================
Contact us page css end
====================================== */

/* ===================================
About Us page css
====================================== */
/* ===================================
Services section css
====================================== */
.services-sec {
}

.services-sec .services-details .sub-heading {
	font-family: Roboto, sans-serif;
	font-size: 16px;
	color: #C5D92F;
	margin-bottom: 50px;
}

.services-sec .services-details .sub-heading span {
	display: block;
	width: 30px;
	height: 2px;
	background-color: #C5D92F;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}

.services-sec .services-details .heading {
	font-size: 30px;
	font-family: "Montserrat", sans-serif;
	color: black;
	font-weight: 600;
	padding-left: 90px;
	padding-right: 90px;
	margin-bottom: 50px;
}

.services-sec .services-details .detail-text {
	font-family: Montserrat, sans-serif;
	font-weight: lighter;
	font-size: 15px;
	color: #000000;
	opacity: 0.7;
	margin-bottom: 40px;
}

.services-sec .our-services {
	padding-top: 70px;
	overflow: hidden;
	padding-bottom: 10px;
}

.services-sec .our-services .service-card {
	padding: 30px 20px;
	transition: 0.8s ease;
}

.services-sec .our-services .service-card .image-holder {
	margin-bottom: 30px;
}

.services-sec .our-services .service-card .image-holder i {
	font-size: 50px;
	font-weight: 300;
	transition: 0.8s ease;
}

.services-sec .our-services .service-card .service-card-heading {
	font-size: 18px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	margin-bottom: 20px;
	transition: 0.8s ease;
}

.services-sec .our-services .service-card .service-card-detail {
	font-family: Montserrat, sans-serif;
	font-weight: lighter;
	font-size: 15px;
	color: #000000;
	opacity: 0.7;
}

.services-sec .our-services a {
	text-decoration: none;
	color: #000000;
}

.services-sec .our-services .service-card:hover {
	border-radius: 20px;
	box-shadow: 0 0 15px #e1e1e1;
	cursor: pointer;
}

.services-sec .our-services .service-card:hover .service-card-heading {
	color: #C5D92F;
}

.services-sec .our-services .service-card:hover .image-holder {
	animation: 0.8s rotateIn;
}


/* ===================================
   Testimonial css
   ====================================== */
   .testimonial-sec {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
   }

   .testimonial-sec .overlay-test {
    background-color: rgba(0, 0, 0, 0.61);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
   }

   .testimonial-sec .testimonial-card {
    padding-left: 60px;
    padding-right: 60px;
    overflow: hidden;
   }

   .testimonial-sec .testimonial-heading .sub-heading {
    color: #C5D92F;
   }

   .testimonial-sec .testimonial-heading .large-heading {
    color: #ffffff;
   }

   .testimonial-sec .testimonial-review {
    margin-top: 50px;
    padding-left: 60px;
    padding-right: 60px;
   }

   .testimonial-sec .testimonial-review .client-info {
    margin-bottom: 30px;
   }

   .testimonial-sec .testimonial-review .client-info .client-name {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    color: #C5D92F;
    margin-bottom: 0;
   }

   .testimonial-sec .testimonial-review .client-info .client-designation {
    color: #ffffff;
   }

   .testimonial-sec .testimonial-review .image-holder {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    display: inline-block;
    /*box-shadow: 1px 1px 15px #dd4d3a;*/
    -webkit-box-shadow: 1px 1px 15px #d8dce0;
    box-shadow: 1px 1px 15px #d8dce0;
    margin-bottom: 30px;
    border: solid 3px #fff;
   }

   .testimonial-sec .testimonial-review .image-holder img {
    border-radius: 50%;
   }

   .testimonial-sec .testimonial-review .review-detail .text-des {
    color: #ffffff;
   }

   .testimonial-sec .testimonial-review .review-detail ul.test-review {
    padding-left: 0;
   }

   .testimonial-sec .testimonial-review .review-detail ul.test-review li {
    list-style: none;
    display: inline-block;
   }

   .testimonial-sec .testimonial-review .review-detail ul.test-review li i {
    font-size: 20px;
    color: #fff;
   }

   .testimonial-sec .owl-carousel .owl-dots {
    position: absolute;
    left: 8px;
    /*transform: rotate(90deg);*/
    bottom: 50%;
   }

   .testimonial-sec .owl-carousel .owl-nav button.owl-next,
   .testimonial-sec .owl-carousel .owl-nav button.owl-prev,
   .testimonial-sec .owl-carousel button.owl-dot {
    height: 12px;
    width: 12px;
    border: solid 3px #C5D92F;
    margin-bottom: 10px;
    border-radius: 50%;
    -webkit-box-shadow: 1px 1px 10px #C5D92F;
    box-shadow: 1px 1px 10px #C5D92F;
    display: block;
   }

   .testimonial-sec .owl-carousel button.owl-dot.active {
    background-color: #24224D;
    border: solid 3px #ffffff;
   }


/* ===================================
Footer
====================================== */
.footer-sec {
	padding-top: 120px;
	padding-bottom: 120px;
	background-color: #f9f9f9;
}

.footer-social ul {
	margin: 0;
	padding: 0;
}

.footer-social li {
	display: inline-block;
}

.footer-social a {
	color: #000000;
	text-decoration: none;
	display: block;
	width: 45px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	border-radius: 50px;
	font-size: 17px;
	margin: 10px 5px;
	border: 1px solid transparent;
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

.footer-social li a:hover {
	background-color: #000000;
	color: #ffffff;
}

.footer-sec .company-about {
	color: #000000;
	font-size: 16px;
	font-weight: 300;
}

.footer-sec .company-about a {
	text-decoration: none;
	color: #000000;
	font-weight: 500;
}


/***********************************/
/**************Custom*************/
/***********************************/
#page-wrapper {
	width: 100vw;
	height: 100vh;
}

.one-pager #page-wrapper {
	width: 100%;
	height: 100%;
}

.logo {
	z-index: 1;
	max-width: 150px;
	position: absolute;
	right: 50px;
	top: 40px;
}

.footer-news {
	position: fixed;
	bottom: 5%;
	left: 5%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.arma-news .slick-arrow {
	display: none !important;
}

.arma-news {
	margin-bottom: 0;
	width: 45%;
}

.arma-news li a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	opacity: 0.7;
	padding: 5px 0;
}

.arma-news li a:hover {
	opacity: 1;
}

.news-heading {
	font-size: 1rem;
	font-weight: 500;
	color: #fff;
	background-color: #1f115d;
	border-radius: 3px;
	text-align: center;
	padding: 10px;
	text-transform: uppercase;
	letter-spacing: 0;
	line-height: 1;
	margin: 0 15px 0 0;
}
.footer-news:hover .news-heading {
	background-color: #C5D92F;
}

.page {
	max-width: 1440px;
	width: 100%;
	align-items: center;
	padding-top: 10rem;
	padding-bottom: 8rem;
}

.breadcrumb {
	background: transparent;
	padding-left: 0;
}

.breadcrumb a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
}

.breadcrumb a:hover {
	color: #C5D92F;
}

li.breadcrumb-item.active {
	color: #fff;
}

.page-title {
	color: #fff;
	margin-bottom: 30px;
	font-weight: bold;
}

.content-wrapper:not(.grid-layout) {
	background: rgba(255, 255, 255, .95);
	font-size: 15px;
	padding: 30px;
	border-radius: 4px;
	font-weight: normal;
	border-top: #C5D92F 5px solid;
}

.content-wrapper.no-bg {
	background: transparent;
	border: 0;
	padding: 0;
	color: #ffffff;
	font-size: 16px;
}

.blue-btn {
	background-color: #C5D92F;
	padding: 10px 25px;
	color: #ffffff;
	font-size: 16px;
	border: solid 1px #C5D92F;
	transition: 0.5s ease;
	text-decoration: none;
	border-radius: 100px;
	cursor: pointer;
}

.blue-btn.small {
	padding: 10px 20px;
	font-size: 14px;
}

.blue-btn i {
	font-size: 1rem;
	margin-right: 5px;
}

.blue-btn:hover,
.blue-btn:focus {
	background-color: #fff;
	border-color: #fff;
	color: #1f115d;
}

.card {
	border-width: 0;
	background: rgba(255, 255, 255, 1);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(112, 112, 112, .56);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
}

.card-header .card-logo {
    width: 60px;
}

.card-header .star {
    width: 20px;
}

.card .blue-btn:hover,
.card .blue-btn:focus {
	color: #C5D92F;
	border-color: #C5D92F;
}

.card .card-text {
	font-weight: 300;
	font-size: 15px;
	line-height: 24px;
}

.card-deck.large-right .card:first-child,
.card-deck.large-left .card:nth-child(2){
	flex-grow: 2;
}

.card-footer {
	background: transparent;
	border: 0;
	padding: 5px 1.25rem 10px;
	position: relative;
	text-align: left;
}

.card-footer:before {
    content: "";
    width: calc(100% - 2.5rem);
    height: 1px;
    display: block;
    background: rgba(112, 112, 112, .17);
    top: 0;
    left: 1.25rem;
    position: absolute;
}

.card-footer::after {
	content: "";
	background-image: url(../img/icons/pdf.png);
	background-size: 35px;
	background-repeat: no-repeat;
	position: absolute;
	width: 35px;
	height: 35px;
	right: 20px;
	top: -5px;
	display: block;
}

.card-title {
    font-size: 1rem;
    line-height: 1.5;
}

.card-subtitle {
    font-weight: 300;
}

.card-date {
    font-size: 0.825rem;
    font-weight: 400;
}

.text-bloc {
	margin-bottom: 2rem;
}

.text-bloc h4 {
	color: #000;
	font-weight: bold;
	margin-bottom: 1rem;
}

.text-bloc h5 {
	color: #C5D92F;
}

.small-text-bloc h5 {
    color: #C5D92F;
    padding-top: 10px;
    padding-bottom: 10px;
}



.text-bloc p {
	margin-bottom: 1rem;
}

.text-bloc p:last-child {
	margin-bottom: 0;
}

/* Stats Section */
.stats_section_icon {
	font-size: 40px;
	margin-bottom: 30px;
	transition: 300ms;
}

.stats_section_inner:hover .stats_section_icon {
	transform: translateY(-5px);
	color: #C5D92F;
}

.stats_section_inner {
	cursor: pointer;
	padding: 20px 0;
}

.stats_section_inner h3 {
	margin-bottom: 15px;
	font-size: 40px;
}

.small_heading {
	font-size: 20px;
}

.stats_section_inner.small h3 {
	font-size: 25px;
}

.stats_section_inner.small .small_heading {
	font-size: 1rem;
}

.content-bloc .image-holder {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	border-radius: 10px;
	height: 100%;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	box-shadow: 0px 3px 6px #00000029;
}

.content-bloc .holder-parent {
	height: 100%;
	overflow: hidden;
	width: auto;
	border-radius: 10px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.content-bloc .holder-parent:hover .image-holder {
	transform: scale(1.1);

}

.content-bloc .image-holder:after {content: "";border: 1px solid rgba(255 , 255, 255, .5);width: 95%;height: 95%;position: absolute;left: 0;top: 0;right: 0;bottom: 0;margin: auto;opacity: 0;border-radius: 10px;transition: all 0.3s ease;}

.content-bloc .image-holder:hover:after {
	opacity: 1;
}

.sub-h1 {
	margin-bottom: 50px;
}

.small-text-bloc {
	background: rgba(255,255,255,1);
	padding: 20px;
	border-radius: 10px;
	display: flex;
	position: relative;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
}

.small-text-bloc::after {
	content: "";
	position: absolute;
	background: #C5D92F;
	display: inline-block;
	width: 0;
	height: 3px;
	bottom: 0;
	left: 0;
	-webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
	-o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
	transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.small-text-bloc:hover::after,
.small-text-bloc:focus::after,
.small-text-bloc.active::after {
	width: 100%;
}

.small-text-bloc .image {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 25%;
}

.small-text-bloc .image.bigger {
	flex-basis: 28%;
}

.small-text-bloc .text {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 70%;
}

.small-text-bloc .text p {
	font-weight: 300;
}

.small-text-bloc + .small-text-bloc {
	margin-top: 30px;
}

.content-bloc {
	margin-bottom: 30px;
}

.content-bloc.white-bg {
    background: #fff;
    border-radius: 10px;
    padding: 20px 40px;
}

.reference {
    display: flex;
    align-items: center;
}

.reference img {
    padding: 10px;
    filter: url(#greyscale);
    filter: gray;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: 200ms;
    opacity: .6;
}

.reference img:hover {
    -webkit-filter: grayscale(0);
    filter: none;
    filter: grayscale(0);
    opacity: 1;
}

.references-slider {
    margin: 20px 0;
    padding: 20px
}

.references-slider .slick-slide {margin: 0 30px;height: 160px;display: flex;align-items: center;}

.boredered {
    border: 1px solid #eee;
    border-radius: 10px;
}

.small-text-bloc .text h4 {
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 0;
	position: relative;
}

.small-text-bloc.text-only {
	display: block;
	padding: 30px;
}

.small-text-bloc.text-only .text + .text {
	margin-top: 45px;
}

.small-text-bloc.text-only hr {
	border-top: 3px solid #C5D92F;
	width: 55px;
	margin: 30px 0;
	border-radius: 100px;
}

.small-text-bloc.text-only .text h4 {
	margin-bottom: 17px;
	padding-right: 30px;
}

.small-text-bloc.text-only .text p {
	line-height: 24px;
}

.small-text-bloc.text-only .text ul {
    line-height: 24px;
    font-weight: 300;
    font-size: 0.9em;
    list-style-type: circle;
    margin-bottom: 0;
}

.small-text-bloc ul li:hover, .small-text-bloc ol li:hover {
    color: black;
    font-weight: 400;
    list-style-type: disc;
}

.small-text-bloc .text h4 i {
	font-size: 24px;
	color: lightgray;
	position: absolute;
	right: 0;
	top:  0;
}

.small-text-bloc .text:hover i{
	color: #C5D92F;
}
.small-text-bloc .text:hover i.fa-tint {
	color: #0FAAE3 !important;
}
.small-text-bloc .text:hover i.fa-leaf {
	color: #72B164 !important;
}
.small-text-bloc .text:hover i.fa-lightbulb {
	color: #FFC400 !important;
}

/* Arma Stats */
.arma-stats {
	font-size: 1.3rem;
	letter-spacing: 0;
	font-weight: 300;
	color: #fff;
	border-radius: 15px;
	line-height: 1;
	transition: background .5s ease;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	padding: 20px 25px;
}

.arma-stats.blue {
	background-color: rgb(19, 9, 105);
}

.arma-stats.red {
	background-color: rgb(255, 0, 0);
}

.arma-stats.yellow {
	background-color: rgba(255, 177, 0, 1);
}

.arma-stats.green {
	background-color: rgb(44, 216, 199);
}

.arma-stats.greenaxial {
    background-color: rgb(207, 214, 0);
}

.arma-stats.blue:hover {
	background-color: rgba(19, 9, 105, .7);
}

.arma-stats.red:hover {
	background-color: rgba(255, 0, 0, .7);
}

.arma-stats.yellow:hover {
	background-color: rgba(255, 177, 0, .7);
}

.arma-stats.green:hover {
	background-color: rgba(44, 216, 199, .7);
}

.arma-stats.greenaxial {
    background-color: rgb(207, 214, 0, .7);
}

.arma-stats.large {
	flex-basis: 65%;
}

.arma-stats.small {flex-basis: 30%;}


.arma-stats-group {
	display: flex;
	justify-content: space-between;
}

.arma-stats .bold {
	font-weight: 500;
	font-size: 3.875rem;
}

.arma-stats .light {
	font-weight: 100;
	font-size: 3.875rem;
}

.home-arma-stats {
    padding-top: 15px;
    margin-top: 40px;
    border-top: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-arma-stat .number {
    font-size: 2.5rem;
    font-weight: 400;
}

.home-arma-stat {
    font-size: 24px;
    line-height: 1.2;
    padding: 20px;
}

.page-banner {
	background-position: center;
	background-size: cover;
	width: 100%;
	min-height: 350px;
	border-radius: 10px 10px 10px 0;
	margin-bottom: 40px;
	display: flex;
	align-items: flex-end;
}

.text-red {
    color: #F83834 !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.mb-100 {	
	margin-bottom: 100px !important;
}

.mb-50 {	
	margin-bottom: 50px !important;
}

.mt-40{
    margin-top: 40px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.negative-mr {
	margin-top: -40px !important;
}

.page-banner.big {
    min-height: 500px;
}

aside .arma-stats {
	margin-bottom: 20px;
}

.blog-title {
	background: rgba(9, 15, 79, .75);
	font-size: 1.75rem;
	font-weight: 400;
	padding: 30px;
	color: #ffffff;
	border-top-right-radius: 10px;
	margin: 0;
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	text-align: center;
}

.blog-title b {
	color: #F83834;
	font-size: 1.2em;
	font-weight: 600;
}

.blog-title b.normal {
	color: #fff;
}

.blog-text {
	background: #fff;
	padding: 30px;
	border-radius: 0 0 10px 10px;
	margin-bottom: 30px;
}

.small-text-bloc.large {
	margin: 0;
	border-radius: 0;
	padding: 0;
	padding-bottom: 40px;
}

.small-text-bloc.large:after {
	display: none;
}

.content-bloc.text-bloc-container {
	background: #fff;
	border-radius: 10px;
	padding: 40px 40px 0;
	margin-bottom: 30px;
}

.article-wrapper {
    margin-bottom: 4rem;
}

/* Sections */
.bg-blue {
    background-color: #100e2e;
}

.section {
	width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 100px 0 120px 0;
}

.section.full {
    min-height: 100vh;
}

.white-text {
    color: #fff;
}

.section.has-bg {
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    align-items: flex-start;
}

.section-title {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, .5);
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
}

.section-title span {
    font-weight: bold;
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid;
}

.section.white-text .section-title, 
.section.white-text p, 
.section.white-text .read-more {
	color: rgba(255 , 255, 255, .65);
}

.section.white-text .read-more:hover {
	color: rgba(255 , 255, 255, 1);
}

.section-subtitle {
    font-size: 2rem;
    margin-bottom: 30px;
}

.section:not(.text-center) .section-subtitle {
    width: 50%;
}

.section-subtitle.small {
    font-weight: 300;
    font-size: 1.5rem;
}

.section-subtitle.xsmall {
	font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.5;
}

.small-title {
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    color: #CFD600;
    margin: 30px 0;
    margin-bottom: 30px;
}

.small-subtitle {
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #24224D;
    margin-top: -20px;
    margin-bottom: 30px;
}

.xsmall-subtitle {
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #24224D;
    margin: 30px 0;
}

.section.has-bg .section-subtitle {
	font-size: 2.375rem;
	line-height: 50px;
	font-weight: 300;
}

.section.home-banner:before {
	content: "";opacity: .9;
	background-color: transparent !important;
	background: rgb(0,0,0);
	background: linear-gradient(60deg, rgba(0,0,0,0.24163168685442926) 0%, rgba(0,0,0,0.43771011822697825) 44%, rgba(0,0,0,0.5973739837731968) 100%);
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
}

.logos-list {
    display: flex;
    max-width: 950px;
    margin: 0 auto;
	justify-content: space-around;
}

.logos-list img {
    width: 200px;
}

.logos-list img:hover {
    opacity: .8;
}

.image-text img {
    width: 240px;
    margin-bottom: 20px;
}

.image-text {
    max-width: 220px;
    text-align: left;
    padding-bottom: 20px;
    border-bottom: 6px solid;
}

.section .image-text p {
    font-size: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.image-text.purple {
    border-color: #221061;
}

.image-text.blueaxial {
    border-color: #1D1A55;
}

.image-text.orange {
    border-color: #E77A2B;
}

.image-text.blue {
    border-color: #00A4DB;
}

.image-text.green {
    border-color: #C5D92F;
}

.image-text.grey {
    border-color: #9D9FAA;
}

.image-text .title-text h4 {
    font-size: .8rem;
    text-transform: uppercase;
    line-height: 1.2rem;
}

.section p {
    font-size: 16px;
    /*line-height: 22px;*/
    color: rgba(0, 0, 0, .7);
    max-width: 850px;
    margin-left: auto;
	margin-right: auto;
	position: relative;
}

.section p.small {
	font-size: 14px;
    line-height: 1.6;
}


.section .content-bloc p {
	color: #2b2b2b;
    margin: 0;
    max-width: 100%;
}

.icons-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.icons-list a {
	background-color: #1D1A55;
	width: 145px;
	height: 145px;
	flex: 0 0 145px;
	max-width: 145px;
	gap: 30px;
	color: #fff;
	text-decoration: none;
}

.icons-list a:hover {
    opacity: .8;
}

.icons-list a span {
	font-size: 14px;
	font-weight: bold;
	padding: 20px;
	display: block;
}

.icons-list .d-flex {
    align-items: flex-end;
}

.img-holder  {
    overflow: hidden;
}

.img-holder img {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.img-holder:not(.no-hover):hover img {
    transform: scale(1.1);
}

.img-holder-solutions {
    border-radius: 10px;
    margin-top: 30px;
}


/*******new img-holder for forces*****/
/*******new img-holder for forces*****/
/*******new img-holder for forces*****/

.forces-img-holder  {
      display: block;
  width: 100%;
  height: auto;
}

.forces-img-container {
  position: relative;
  width: 50%;
  height: 50%;
}

.masonry-grid .forces-img-holder {
    border-radius: 10px;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow:    0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    box-shadow:         0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    opacity: 0.5;
}

.forces-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1D1A55;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .3s ease;
  transition: .3s ease;
  opacity: 0.8;
}

.forces-img-container:hover .forces-img-overlay {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.forces-img-desc-text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
/*******new img-holder for forces end *****/
/*******new img-holder for forces end *****/
/*******new img-holder for forces end *****/

/*******new img-holder for solutions*****/
/*******new img-holder for solutions*****/
/*******new img-holder for solutions*****/

.solutions-img-holder  {
      display: block;
  width: 100%;
  height: auto;
}

.solutions-img-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.masonry-grid .solutions-img-holder {
    border-radius: 10px;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow:    0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    box-shadow:         0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    opacity: 0.5;
}

.solutions-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #CFD600;
  overflow: hidden;
  width: 100%; 
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .3s ease;
  transition: .3s ease;
  opacity: 0.7;
}

.solutions-img-text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%; 
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .3s ease;
  transition: .3s ease;
  opacity: 1;
}
.solutions-img-container:hover .solutions-img-text-overlay{
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}


.solutions-img-container:hover .solutions-img-overlay {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.solutions-img-desc-text {
  color: #24224D;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 1;
}
/*******new img-holder for solutions end *****/
/*******new img-holder for solutions end *****/
/*******new img-holder for solutions end *****/


.page-projets .img-holder {
    border-radius: 10px;
    margin-top: 30px;
}

.page-projets .img-client {
    width:150px;
    float:left;
    margin-right:20px;
    margin-bottom: 40px;
}

.page-projets .clients b {
    color: red;
}

.solution {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 70px;
    text-align: left;
    margin-top: 40px;
}

.solution-img, 
.solution-details {
    width: 100%;
    flex: 0 50%;
    max-width: 50%;
}

.solution-details img {
    height: 30px;
    margin-bottom: 20px;
}

.solution-img {
    margin-top: -35px;
}

.solution-details .solution-desc {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 25px;
}

.read-more {
    font-size: 16px;
    font-weight: bold;
    color: #1D1A55;
    text-decoration: none;
}

.read-more:active, 
.read-more:hover {
    color: #C5D92F;
}

.big-blockquote {
    font-size: 2.5rem;
    line-height: 58px;
}

.arma-project .title {
    font-size: 1rem;
    line-height: 28px;
    padding: 15px 20px 30px;
}

.arma-project .title a {
    color: rgba(0, 0, 0, .9);
    text-decoration: none;
}

.arma-project .title a:hover, 
.arma-project .title a:active {
    color: #C5D92F;
}

.arma-project .img-holder {
	border-radius: 8px;
}

.opacity-hover {
    opacity: 0.5;
}
.opacity-hover:hover {
    opacity: 1;
}


/* Footer */
footer {
    background-color: #100e2e;
    padding: 70px 0;
    color: #fff;
    font-size: 0.8em;
}

.footer-title {
    font-size: 14px;
    margin-bottom: 25px;
}

.footer-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding-right: 30px;
	padding-left: 30px;
	display: flex;
	justify-content: space-between;
}

.footer-list {
    list-style: none;
    margin-bottom: 0;
}

.footer-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
}

.footer-link:active, .footer-link:hover {
    color: #fff;
}

.footer-link {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
}

.footer-logo {
    max-width: 177px;
}

/* SLick */
#arma-solutions {
    max-width: 1000px;
    margin: 0 auto 30px;
}

.slick-next:before {
    content: "\25B6";
}

.slick-prev:before {
    content: "\25C0";
}

.slick-dots li button:before {
    font-size: 14px;
    color: #fff;
}

.slick-dots li.slick-active button:before {
    color: #fff;
}

#arma-prestations .slick-dots li button:before,
#arma-prestations .slick-dots li.slick-active button:before {
	color: #000;
}

.slick-dots {
    bottom: -40px;
}

.slick-prev:before, .slick-next:before {
    font-size: 30px;
}

.slick-prev {
    left: -30px;
}

.arma-solution {margin: 0 15px;}

.img-container {
	background-size: contain;
}

.img-container img {
	opacity: 0;
	visibility: hidden;
}

.values {
    display: flex;
    align-items: initial;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.value {
	width: 230px;
	flex: 0 0 230px;
	max-width: 230px;
}

.value-toggle {
	display: block;
}

.value p {
    margin-top: 10px;
}

.title-text h4 {
	font-size: 1rem;
}

.video-container {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.play-video {
	/*background-image: url(../img/icons/play.png);*/
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	width: 80px;
	height: 80px;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: calc(50% - 40px);
	z-index: 1;
}

.section-stats {
    padding: 0 30px;
    margin: 30px 0;
    line-height: 1.2;
    border-left: 1px solid rgba(0, 0, 0, .2);
}

.section-stat .number {
    font-size: 1.875rem;
    color: #CFD600;
    display: block;
}

.section-stat .number-scroll {
    font-weight: bold;
}

.section-stat {
    margin-bottom: 20px;
}

.section.illustration {
    padding-bottom: 500px;
}

.section.illustration .section-subtitle {
    font-size: 2rem;
    font-weight: 600;
}

.text-shadow {
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.16);
}

.arma-suivi .no-gutters {
    margin-left: -10px;
    margin-right: -10px;
}

.arma-suivi .no-gutters>.col,
.arma-suivi .no-gutters>[class*=col-] {
	padding-right: 10px;
	padding-left: 10px;
}

.arma-suivi .img-holder {
    margin-bottom: 20px;
}

.text-bloc {
    padding: 10px 20px;
    margin-bottom: 20px;
    min-height: 192px;
}

.full-bg {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: unset;
    padding: 100px 0;
}

.full-bg:before {
    content: "";
    opacity: .9;
    background-color: transparent !important;
    background: rgb(0,0,0);
    background: linear-gradient(60deg, rgba(0,0,0,0.24163168685442926) 0%, rgba(0,0,0,0.43771011822697825) 44%, rgba(0,0,0,0.5973739837731968) 100%);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
}
 
.section.white-text.full-bg p {
	color: rgba(255 , 255, 255, .9);
}

.iso {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 600px;
    margin: 50px auto 0;
}

.iso img {
    width: 115px;
}

.masonry-grid .img-holder {
    border-radius: 10px;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow:    0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    box-shadow:         0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

form {
    text-align: left;
}

form .blue-btn:hover, form .blue-btn:focus {
    background-color: #fff;
    border-color: #C5D92F;
    color: #C5D92F;
}

.full-bg.after .container {
	position: relative;
}

/* .full-bg.after .container:after {
	content: "";
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: contain;
	width: 260px;
	height: 525px;
	display: block;
	position: absolute;
	right: 130px;
	top: 80px;
} */

.full-bg.after {
    margin-bottom: 80px;
}

/* .full-bg.after.mystaff .container:after {
	background-image: url(../img/content/innov-2.png);
}

.full-bg.after.ask .container:after {
	background-image: url(../img/content/innov-1.png);
} */

.advatages {
    list-style: none;
}

.advatages li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.advatages .icon-img {
    margin-right: 20px;
    height: 65px;
    min-width: 85px;
    text-align: center;
}

.advatages .icon-img img {
    height: 100%;
    max-width: inherit;
}
/*Animate css transition delay*/
.wow__delay-1 {
	animation-delay: 400ms;
}
.wow__delay-2 {
	animation-delay: 600ms;
}
.wow__delay-3 {
	animation-delay: 800ms;
}
.wow__delay-4 {
	animation-delay: 1s;
}
.wow__delay-5 {
	animation-delay: 1200ms;
}

.slick-prev:before, .slick-next:before { 
    color: lightgray !important;
}



.app-gallery {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.innov-page .img-after {
    width: 260px;
    height: 525px;
    display: block;
    position: absolute;
    right: 130px;
    top: 40px;
}

.innov-page .innov-subtitle {
    margin-top: -40px;
    margin-bottom: 100px;
}

.innov-page .innov-logo {
    height: 50px;
}

.white-link {
    color: rgba(255,255,255,0.7);
}
.white-link:hover {
    color: rgba(255,255,255,1);
}


/* ===================================
Media Queries
====================================== */
@media screen and (max-width: 1440px) {
	.arma-stats .bold {
		font-size: 3rem;
	}

	.arma-stats .light {
		font-size: 3rem;
	}
}

@media (min-width: 1200px) {
	.extra-padding {
		padding-bottom: 400px;
	}
}

@media screen and (max-width: 992px) {
	.standalone-row:not(:last-child) {
		margin-bottom: 3rem;
	}

	.white-bg {
		background-color: #ffffff !important;
	}

	.upper-nav {
		position: absolute;
		left: 0;
		right: 0;
		z-index: 1;
	}

	.header-appear {
		padding-top: 6px;
		height: 70px;
		position: fixed;
		z-index: 99;
		background: rgba(19, 9, 105, 1.5);
		-webkit-animation-name: animationFade;
		animation-name: animationFade;
		-webkit-animation-duration: 1s;
		animation-duration: 1s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		-webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
		box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
	}

	.upper-nav-btn {
		margin-top: 12px;
	}

	.side-menu {
		left: 0;
		width: 100%;
		min-width: 100%;
	}

	.upper-nav .navbar-brand {
		width: 35px;
	}

	.gm-fullscreen-control {
		display: none !important;
	}

	.side-menu .side-footer .rites {
		font-size: 14px;
	}

	.side-menu .inner-wrapper {
		padding: 2.5rem 3rem 2.5rem 3rem;
	}

	/***********************************/
	/********standalone page css********/
	/***********************************/
	.standalone-row:not(:last-child) {
		margin-bottom: 8rem;
	}

	.standalone-area .sub-heading {
		margin-top: 20px;
	}

	.standalone-row:nth-child(2) .stand-img-des {
		padding-left: 18px;
		padding-right: 18px;
	}

	.standalone-row .stand-img-des {
		padding-left: 18px;
		padding-right: 18px;
	}
	/***********************************/
	/**************Custom*************/
	/***********************************/
	.page {
		padding: 10rem 15px;
	}

	.content-bloc .holder-parent {
		height: auto;
		margin: 30px 0 0;
	}

	.content-bloc .image-holder img {
		width: 100%;
		height: auto;
	}

	.content-bloc.reverse-mobile {
		flex-direction: column-reverse;
	}

	.arma-news {
		width: 85%;
	}

	.small-text-bloc {
		display: block;
	}

	.small-text-bloc .image {
		margin-bottom: 20px;
	}

	.page-banner {
		margin: 0;
		border-radius: 10px 10px 0 0;
		background-repeat: no-repeat;
		background-position: center;
	}

	.blog-title {
		border-radius: 0;
	}
	.negative-mr {
		margin-top: 0;
	}

	.content-bloc.white-bg {		
        padding: 10px 20px;
	}

	.reference img {
		padding: 0;
	}

	.reference {
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.references-slider .slick-slide {
		margin: 0 10px;
		height: 110px;
	}

	.references-slider {
		margin: 20px 0;
	}

	.overlay-inner {
		background-image: url(../img/overlays/1.jpg);
		background-position: center;
	}

	.home-overlay .overlay-inner {
		background-image: none;
	}

	.overlay-inner img {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.side-nav {
		width: 0;
		display: none;
	}

	.content-area {
		width: 100%;
		margin-left: 0;
		display: block;
	}

	/*footer*/
	.footer-social a {
		width: 35px;
		height: 35px;
		line-height: 35px;
	}

	/***********************************/
	/********standalone page css********/
	/***********************************/
	.standalone-row:not(:last-child) {
		margin-bottom: 8rem;
	}

	.standalone-area .sub-heading {
		margin-top: 20px;
	}

	.standalone-row:nth-child(2) .stand-img-des {
		padding-left: 18px;
		padding-right: 18px;
	}

	.standalone-row .stand-img-des {
		padding-left: 18px;
		padding-right: 18px;
	}

	.testimonial-sec .testimonial-review {
		padding-left: 0px;
		padding-right: 0px;
	}

	/***********************************/
	/**************services*************/
	/***********************************/
	.services-sec {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.services-sec .services-details .sub-heading {
		margin-bottom: 20px;
	}

	.services-sec .services-details .heading {
		padding-left: 0;
		padding-right: 0;
		margin-bottom: 20px;
	}

	.services-sec .our-services .service-card {
		margin-bottom: 20px;
	}

	.services-sec .our-services > div:last-child .service-card {
		margin-bottom: 0;
	}

	/***********************************/
	/**************Custom*************/
	/***********************************/
	.page {
		padding: 5rem 15px;
	}
	.logo {
		display: none;
	}
	.footer-news {
		display: none;
	}	

	.arma-stats-group {
		margin-bottom: 20px;
		display: block;
	}

	.arma-stats {
		margin-bottom: 20px;
	}

	.content-bloc {
		margin-bottom: 0;
		margin-top: 0;
	}

	.content-bloc .holder-parent {
		margin: 30px 0;
	}

	/* .content-bloc .image-holder {
		background: none;
	} */

	.article-wrapper {
		margin-bottom: 1rem;
	}

	.home-arma-stats {
		flex-direction: column;
	}
	
	.home-banner h1 {
		font-size: 35px;
	}
	
	.home-arma-stat {
		padding: 10px;
	}
	
	.home-banner h1 br {
		display: none;
	}
	
	.home-arma-stat:last-child {
		padding-bottom: 0;
	}

	.home-arma-stats {
		flex-direction: column;
	}
	
	.home-banner h1 {
		font-size: 35px;
	}
	
	.home-arma-stat {
		padding: 10px;
	}
	
	.home-banner h1 br {
		display: none;
	}
	
	.home-arma-stat:last-child {
		padding-bottom: 0;
	}
	
	.logos-list a {
		width: 45%;
		height: auto;
		flex: 0 45%;
	}
	
	.logos-list {
		flex-wrap: wrap;
		gap: 30px;
	}
	
	/* .icons-list a {
		width: 45%;
		height: 172px;
		flex: 0 45%;
		max-width: 45%;
	} */
	
	.icons-list {
		margin-top: 30px;
		justify-content: space-between;
	}
	
	.section-subtitle {
		font-size: 20px;
		text-align: center;
		line-height: 1.5;
	}
	
	.section-title {
		font-size: 20px;
		text-align: center;
	}
	
	#arma-solutions {
	max-width: calc(100% + 30px);
	margin-left: -15px;
	margin-right: -15px;
	}
	
	.footer-logo {
		max-width: 200px;
		margin: 0 auto 30px;
		display: block;
	}

	.footer-wrap {
		flex-direction: column;
	}
	
	.footer-col {
		margin-bottom: 25px;
		text-align: center;
	}
}



 /* Extra small devices (portrait phones, more than 375px) */
@media (min-width: 340.98px) and (max-width: 374px) { 
	#innovations .innov-page .img-after {	width: 169px;
										    height: 341px;
										    display: block;
										    position: absolute;
										    top: 240px;
										    right: 95px !important;
											}

	#innovations .innov-page .img-after-eval { top: 270px !important; }
	#innovations .innov-page .img-after-staff { top: 220px !important; }

 }


 /* Extra small devices (portrait phones, more than 375px) */
@media (min-width: 374.98px) and (max-width: 424px) { 
	#innovations .innov-page .img-after {	width: 169px;
										    height: 341px;
										    display: block;
										    position: absolute;
										    top: 240px;
										    right: 103px !important;
											}

	#innovations .innov-page .img-after-eval { top: 290px !important; }
	#innovations .innov-page .img-after-staff { top: 220px !important; }

 }


/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 424.98px) { 
	#about .simple-text{font-size: .9rem; text-align: justify;text-align-last: center;}
	#about .image-text,#page-forces .image-text {font-size: .9rem; text-align: justify;text-align-last: center;max-width: 100%;width: 100%;}
	#about .top-paragraphe,#page-forces .top-paragraphe{text-align: justify;text-align-last: center;}
	#about #chiffres .holder-parent{margin:0 !important;}
	#about #chiffres .image-holder {width: 100%; height: 180px;margin-bottom: 20px !important;}
	section#chiffres.section {padding: 100px 0 80px 0;}
	.d-none-m {display: none;}
	#about .section.has-bg .section-subtitle {font-size: 1.5rem; line-height: 2rem;}
	#about .title-text h4 { margin: 1.5rem 0 1rem 0;}
	/* #about section#mission.section{background-image: none !important;} */
	#about section#valeurs.section p{font-size: .9rem; text-align: justify;text-align-last: center;margin-bottom: 1rem;}
	#about section#valeurs.section .value p{font-size: .9rem; text-align: center;text-align-last: center;margin-bottom: 1rem;}
	#home-page .section.has-bg .section-subtitle{margin: 0 !important;font-size: 1.5rem;line-height: 2rem;text-align: center;width: 100% !important;}
	#home-page .icons-list a {width: 150px !important;height: 150px !important;flex: 0 0 150px !important;max-width: 150px !important;}
	#home-page .section-subtitle {font-size: 1.5rem;line-height: 2rem;font-weight: 500;}
	#home-page .section.has-bg,#about #mission {background-size: 170%;}
	#home-mission{background-color: #1f1e50;height: 70vh;min-height: 70vh;}
	#about #mission{background-color: #262451;height: 80vh;min-height: 80vh;}
	#about #mission .section-subtitle {text-align: left;font-size: 1.5rem;}
	#page-forces .values{margin-top: 1rem;}
	#page-forces #f2 {background-size: 100%;}
	#page-forces #f2.bg-blue{background-color: #010043;}

	.section.illustration{padding-bottom: 200px;}


	#innovations .innov-page .staff-logo { height: 35px !important;	}

	#innovations #staff-logo-center { text-align: center!important;}
	#innovations #task-logo-center { text-align: center!important;}
	#innovations #eval-logo-center { text-align: center!important;}
	#innovations #ask-logo-center { text-align: center!important;}

	#innovations .staff-bottom { padding-left: 0px !important; margin-bottom: 100px; width: 100%; text-align: center!important;}
	#innovations .task-bottom { padding-left: 0px !important; margin-bottom: 100px; width: 100%; text-align: center!important;}
	#innovations .eval-bottom { padding-left: 0px !important; margin-bottom: 100px; width: 100%; text-align: center!important;}
	#innovations .ask-bottom { padding-left: 0px !important; margin-bottom: 100px; width: 100%; text-align: center!important;}

	#innovations .full-bg .before { margin-bottom: 0px !important; }
	#innovations .full-bg .after { margin-bottom: 180px; }
	#innovations .innov-page .img-after {	width: 169px;
										    height: 341px;
										    display: block;
										    position: absolute;
										    top: 240px;
										    right: 75px;
											}

	#innovations .innov-page .img-after-eval { top: 290px; !important; }
	#innovations .innov-page .innov-subtitle-margins { width: 100%; margin-top: 10px; margin-bottom: 50px; text-align: center!important;}

 }

 /* Extra small devices (portrait phones, less than 576px) */
@media (min-width: 425px) and (max-width: 575.98px) { 
	#about .simple-text{font-size: .9rem; text-align: justify;text-align-last: center;}
	#about .image-text,#page-forces .image-text {font-size: .9rem; text-align: justify;text-align-last: center;max-width: 100%;width: 100%;}
	#about .top-paragraphe,#page-forces .top-paragraphe{text-align: justify;text-align-last: center;}
	#about #chiffres .holder-parent{margin:0 !important;}
	#about #chiffres .image-holder {width: 100%; height: 180px;margin-bottom: 20px !important;}
	section#chiffres.section {padding: 100px 0 80px 0;}
	.d-none-m {display: none;}
	#about .section.has-bg .section-subtitle {font-size: 1.5rem; line-height: 2rem;}
	#about .title-text h4 { margin: 1.5rem 0 1rem 0;}
	/* #about section#mission.section{background-image: none !important;} */
	#about section#valeurs.section p{font-size: .9rem; text-align: justify;text-align-last: center;margin-bottom: 1rem;}
	#about section#valeurs.section .value p{font-size: .9rem; text-align: center;text-align-last: center;margin-bottom: 1rem;}
	#home-page .section.has-bg .section-subtitle{margin: 0 !important;font-size: 1.5rem;line-height: 2rem;text-align: center;width: 100% !important;}
	#home-page .icons-list a {width: 110px !important;height: 110px !important;flex: 0 0 110px !important;max-width: 110px !important;}
	#home-page .section-subtitle {font-size: 1.5rem;line-height: 2rem;font-weight: 500;}
	#home-page .section.has-bg,#about #mission {background-size: 170%;}
	#home-mission{background-color: #1f1e50;height: 70vh;min-height: 70vh;}
	#about #mission{background-color: #262451;height: 80vh;min-height: 80vh;}
	#about #mission .section-subtitle {text-align: left;font-size: 1.3rem;}
	#page-forces .values{margin-top: 1rem;}
	#page-forces #f2 {background-size: 100%;}
	#page-forces #f2.bg-blue{background-color: #010043;}

	.section.illustration{padding-bottom: 250px;}



	#innovations .innov-page .staff-logo { height: 40px !important;	}

	#innovations #staff-logo-center { text-align: center!important;}
	#innovations #task-logo-center { text-align: center!important;}
	#innovations #eval-logo-center { text-align: center!important;}
	#innovations #ask-logo-center { text-align: center!important;}

	#innovations .staff-bottom { padding-left: 0px !important; margin-bottom: 100px; width: 100%; text-align: center!important;}
	#innovations .task-bottom { padding-left: 0px !important; margin-bottom: 100px; width: 100%; text-align: center!important;}
	#innovations .eval-bottom { padding-left: 0px !important; margin-bottom: 100px; width: 100%; text-align: center!important;}
	#innovations .ask-bottom { padding-left: 0px !important; margin-bottom: 100px; width: 100%; text-align: center!important;}

	#innovations .full-bg .before { margin-bottom: 0px !important; }
	#innovations .full-bg .after { margin-bottom: 180px; }
	#innovations .innov-page .img-after {	width: 169px;
										    height: 341px;
										    display: block;
										    position: absolute;
										    top: 240px;
										    right: 128px;
											}

	#innovations .innov-page .img-after-eval { top: 270px; !important; }
	#innovations .innov-page .img-after-staff { top: 220px !important; }
	#innovations .innov-page .innov-subtitle-margins { width: 100%; margin-top: 10px; margin-bottom: 50px; text-align: center!important;}

 }

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) { 

	#about .simple-text{font-size: .9rem; text-align: justify;text-align-last: center;}
	#about .image-text,#page-forces .image-text {font-size: .9rem; text-align: justify;text-align-last: center;max-width: 100%;width: 100%;}
	section#chiffres.section {padding: 20px 0 20px 0;}
	#about #chiffres .holder-parent{margin:0 !important;}
	#about #chiffres .image-holder {width: 100%; height: 180px;margin-bottom: 20px !important;}
	#about section#chiffres.section .col-sm-7, #about section#chiffres.section .col-sm-5,#about section#valeurs.section .col-sm-5,#about section#valeurs.section .col-sm-6 {flex: 0 0 100%;max-width: 100%;}
	#about section#valeurs.section .section-subtitle {font-size: 1.5rem; line-height: 2rem;text-align: center;}
	#about .title-text h4 { margin: 1.5rem 0 1rem 0;}
	/* #about section#mission.section{background-image: none !important;} */
	#about section#valeurs.section p{font-size: 1rem; text-align: justify;text-align-last: center;margin-bottom: 1rem;}
	#about section#valeurs.section .value p{font-size: .9rem; text-align: center;text-align-last: center;margin-bottom: 1rem;}
	/* #home-page .icons-list a {width: 45% !important;height: 210px !important;flex: 0 45%;max-width: 45%;} */
	#home-page .icons-list a {width: 110px !important;height: 110px !important;flex: 0 0 110px !important;max-width: 110px !important;}
	#home-page .section.has-bg .section-subtitle{margin: 0 !important;font-size: 1.5rem;line-height: 2rem;text-align: center;width: 100% !important;}
	#home-page .section-subtitle {font-size: 1.5rem;line-height: 2rem;font-weight: 500;}
	#home-page .arma-project .title {font-size: 1rem;line-height: 23px;padding: 10px 10px 20px;}
	#page-forces .values{margin-top: 1rem;}
	#page-forces #f2 {background-size: 100%;}
	#page-forces #f2.bg-blue{background-color: #010043;}
	
	.section.illustration{padding-bottom: 300px;}
 }

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) { 

	#about .simple-text{font-size: .9rem; text-align: justify;text-align-last: center;}
	#about .image-text,#page-forces .image-text {font-size: .9rem; text-align: left;text-align-last: left;max-width: 100%;padding: 0 .5rem;width: 100%;}
	#page-forces .image-text .title-text h4{font-size: .75rem;}
	section#chiffres.section {padding: 80px 0 20px 0;}
	#about #chiffres .holder-parent{margin:0 !important;}
	#about #chiffres .image-holder {width: 100%; height: 200px;}
	#about section#chiffres.section .col-sm-7, #about section#chiffres.section .col-sm-5 {flex: 0 0 100%;max-width: 100%;margin-bottom: 1rem;}
	#page-forces .value,#about .value {width: 195px;flex: 0 0 195px;max-width: 195px;}
	.footer-list li{font-size: 12px !important;line-height: 20px;}
	.footer-title {font-size: 12px;margin-bottom: 15px;}
	.footer-logo {width: 70%;margin-left: 15%;}
	#about .section.has-bg .section-subtitle {font-size: 1.5rem; line-height: 2rem;}
	#about .title-text h4 { margin: 1.5rem 0 1rem 0;}
	/* #about section#mission.section{background-image: none !important;} */
	#about section#valeurs.section p{font-size: .9rem; text-align: justify;text-align-last: center;margin-bottom: 1rem;}
	#about section#valeurs.section .value p{font-size: .9rem; text-align: center;text-align-last: center;margin-bottom: 1rem;}
	#home-page .home-banner h1 {font-size: 3rem;color: white;text-align: center;margin-bottom: 10px;margin-top: 10rem;}
	#home-page .home-arma-stats {padding-top: 10px;margin-top: 10px;}
	#home-page .home-arma-stat .number {font-size: 2rem;font-weight: 500;}
	#home-page .section.has-bg .section-subtitle{margin: 0 !important;font-size: 2rem;line-height: 2.5rem;text-align: left;width: 75% !important;padding-left: 10% !important;}
	#home-page .section.has-bg .section-title{margin-bottom: 50px !important;font-size: 2rem;line-height: 2.5rem;text-align: left;width: 75% !important;padding-left: 10% !important;}
	#home-page .section-subtitle {font-size: 1.5rem;line-height: 2rem;font-weight: 500;}
	#home-page .arma-project .title {font-size: 1rem;line-height: 23px;padding: 10px 10px 20px;}
	#home-page .icons-list a {width: 162px;height: 162px;flex: 0 0 162px;max-width: 162px;}
	#home-page .icons-list {justify-content: center;margin-top: 1rem;}
	.footer-col {text-align: left;padding: .5rem .7rem;}
	#page-forces #f2 {background-size: 100%;}
	#page-forces #f2.bg-blue{background-color: #010043;}
	#page-forces #f2 .section-subtitle{font-size: 1.8rem;line-height: 2.5rem;}

	.section.illustration{padding-bottom: 300px;}

	
	#innovations .innov-page .img-after {	right: 50px; }
	#innovations #app-logo .section-subtitle { width: 100% !important; }
 }

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) { 
	section#mission.section {padding: 100px 0 300px 0;}
	#about .offset-md-1 {margin-left: 0%;}
	#about section#valeurs.section p{font-size: 1rem;line-height: 1.5rem;}
	#page-forces .value,#about .value {width: 170px;flex: 0 0 170px;max-width: 170px;}
	.footer-list li{font-size: 14px !important;line-height: 24px;}
	.footer-logo {width: 80%;margin-left: 20%;}
	#home-page .home-banner h1 {font-size: 3rem;color: white;text-align: center;margin-bottom: 10px;margin-top: 10rem;}
	#home-page .home-arma-stats {padding-top: 10px;margin-top: 10px;}
	#home-page .home-arma-stat .number {font-size: 2.5rem;font-weight: 500;}
	#home-page .icons-list a {width: 130px;height: 130px;flex: 0 0 130px;max-width: 130px;}
	/* {width: 40%;height: 180px;flex: 0 40%;max-width: 40%;} */
	#home-page .section.has-bg .section-subtitle{margin: 0 !important;font-size: 2rem;line-height: 2.5rem;text-align: left;width: 60% !important;padding-left: 10% !important;}
	#home-page .section.has-bg .section-title{margin-bottom: 50px !important;font-size: 2rem;line-height: 2.5rem;text-align: left;width: 60% !important;padding-left: 10% !important;}
	.footer-col {text-align: left;padding: .8rem 1.2rem;}
	#page-forces #f2 {background-size: 100%;}
	#page-forces #f2.bg-blue{background-color: #010043;}
	
 }

/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	#page-forces .value, #about .value {width: 200px;flex: 0 0 200px;max-width: 200px;}
  }