/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background-color: rgba(0,0,255,0.4);
}
::-webkit-scrollbar-thumb {
  background-color: #0000ff;
  border-radius: 30px;
  background-clip: content-box;
	transition: 0.3s;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #ffff00;
}
html {
  scroll-behavior: smooth;
	
}
:root {
  scroll-behavior: smooth;
	scrollbar-color: #0000ff rgba(0,0,255,0.4);
	scrollbar-width: 8px;
	scrollbar-gutter: stable;
}

a {
  color: #0000ff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
color: #0000ff;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-medium);
}

.primaryColor{
	color: #0303eb;
}
.secondColor{
	color:#ffff00;
}
.pColor{
	color: #212529 !important;
}

body{
	/* font-family: 'PierSans', sans-serif; */
	font-family: 'Pier Sans Regular';
    letter-spacing: 0.02rem;
	  margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
	    display: flex;
    align-items: center;
    justify-content: center;
}
#preloader img{
	height: 145px;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

/* .section-header{
  text-align: left;
  padding-bottom: 40px;
	margin: 0 8%;
} */
.section-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--color-secondary);
}
.section-header p {
  margin: 0 auto;
  color: #9e9e9e;
    text-align: justify;
}
.section-header a{
	font-family: var(--font-bold);
    color: #838383;
    display: flex;
    justify-content: flex-end;
}
.section-header a:hover{
	color: #0303eb;
}

@media (min-width: 1280px) {
  /* .section-header p {
    max-width: 80%;
  } */
}

.section-header .title{
	margin-bottom: 25px;
    color: #0303eb;
    font-size: 35px;
}
.section-header .separator{
	margin-bottom: 30px;
}
.section-header .separator span{
	  position: relative;
    font-family: var(--font-light);
    color: #acacac;
    padding-left: 170px;
}
.section-header .separator span:before{
		content: '';
    position: absolute;
    height: 1px;
    /* width: 160px; */
    background: #acacac;
    top: 50%;
    left: 0;
		-webkit-animation-name: separator;
		animation-name: separator;
		-webkit-animation-duration: .5s;
		animation-duration: .5s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		animation-delay: 1s;
		-webkit-animation-delay: 1s;
}
@keyframes separator {
  0% {
    width: 0;
  }
  100% {
    width: 160px;
  }
}

.ghost_title{
	    font-family: var(--font-black);
    color: #1a1a1a;
    opacity: 0.05;
    text-transform: uppercase;
    font-size: 7.5rem;
    position: absolute;
    top: 0;
    right: -7%;
}
.ghost_title.left{
	left: 0;
	top: -4%;
}

.ghost_title_2{
	    font-family: var(--font-black);
    color: #1a1a1a;
    opacity: 0.05;
    text-transform: uppercase;
    font-size: 7.5rem;
    position: absolute;
    top: 0;
    right: -7%;
}
.ghost_title_2.left{
	left: 0;
	top: -4%;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}
.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary-light);
  content: "/";
}
@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: #0303eb;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: #ffff00;
  line-height: 0;
}
.scroll-top:hover {
  background: #ffff00;
  
}
.scroll-top:hover i{
	color: #0303eb;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
	position: absolute;
    top: 28px;
    right: 0;
    left: 0;
}
.header.sticked {
  background: var(--color-white);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
	    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
}
.header.sticked .menu_header{
	margin-top: 0;
}
.header.sticked .logo{
	left: 20px;
    top: 0;
    height: 100%;
}
.header.sticked .logo img{
	max-height: 86%;
}
/* .header .menu_header{
	margin-top: 17px;
} */

.phone-link {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5px;
  border-radius: 5px;
  display: inline-block;
}



.menu_container{
	display: flex;
	align-items:center;
	justify-content:center;
}
.header .logo{
	position:absolute;
	left: 6rem;
    top: 35px;
}
.header .logo img {
  max-height: 150px;
}
.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}
.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}
.header .btn-getstarted, .header .btn-getstarted:focus {
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 8px 23px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--font-secondary);
}
.header .btn-getstarted:hover, .header .btn-getstarted:focus:hover {
  color: var(--color-white);
  background: rgba(var(--color-primary-rgb), 0.85);
}
@media (max-width: 1279px) {
  .header .btn-getstarted, .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}
.top_header{}
.top_header .toph_box a{
	color:#0000ff;
	margin-right: 60px;
	display: inline-block;
		color: #ffff00;
    background: #0000ff;
    font-size: 20px;
		padding: 7px 20px;
    border-radius: 40px;
		margin-top:-12px;
		transition:0.3s all;
}
.top_header .toph_box i{}
.top_header .toph_box span{
	font-family: var(--font-medium);
}
.top_header .toph_box a:hover{
	color: #0000ff;
  background: #ffff00;
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
#navbar{
	margin-right: -10rem;
}
.header.sticked #navbar {
  margin-right: 60px;
}
.header.sticked .top_header .toph_box a{
	position: absolute;
	bottom: 5px;
	right: 0;
	margin-right: 30px;
}
.navbar a{
	font-family: 'Myriad Pro';
    font-weight: 400;
    text-transform: uppercase;
    color: #5d5d5d;
		transition: 0.3s;
    position: relative;
		font-size: 16px;
}
.navbar .active a{
	font-weight: 600;
}
.navbar a:hover, .navbar .active a{
	color:#0000ff;
}
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar > ul > li {
    white-space: nowrap;
  }
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    white-space: nowrap;
    
  }
  .navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0000ff;
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }
  .navbar a:hover:before, .navbar li:hover > a:before, .navbar .active > a:before {
    visibility: visible;
    transform: scaleX(0.7);
  }
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #0000ff;
  }
  .navbar .dropdown a:hover:before, .navbar .dropdown:hover > a:before, .navbar .dropdown .active:before {
    visibility: hidden;
  }
  .navbar .dropdown a:hover, .navbar .dropdown .active, .navbar .dropdown .active:focus, .navbar .dropdown:hover > a {
    /* color: var(--color-white);
    background: var(--color-secondary); */
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 50%;
    top: 100%;
    margin: 0;
    padding: 15px 2px 15px 2px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
		margin-top: 10px;
    transform: translateX(-50%);
    border-radius: 50px;
		box-shadow: 0px 2px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
		text-align:center;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: #5d5d5d;
		display: block;
    border-bottom: 1px solid #e9e9e9;
    margin: 0 15px;
  }
	.navbar .dropdown ul li:last-child > a{
		border-bottom:none;
	}
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #0000ff;
  }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  .navbar .megamenu {
    position: static;
  }
  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }
  .navbar .megamenu ul li {
    flex: 1;
  }
  .navbar .megamenu ul li a, .navbar .megamenu ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }
  .navbar .megamenu ul li a:hover, .navbar .megamenu ul li .active, .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}
@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {

   .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
    
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: rgba(var(--color-secondary-rgb), 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: var(--color-white);
  }
  .navbar .dropdown ul, .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }
  .navbar .dropdown > .dropdown-active, .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 20px;
  }
  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }
  .mobile-nav-active .navbar {
    left: 0;
  }
  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 9996;
  }
}
/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Animated Hero Section
--------------------------------------------------------------*/
.hero-animated {
  width: 100%;
  min-height: 50vh;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}
.hero-animated h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}
.hero-animated h2 span {
  color: var(--color-primary);
}
.hero-animated p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
.hero-animated .animated {
  margin-bottom: 60px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (min-width: 992px) {
  .hero-animated .animated {
    max-width: 45%;
  }
}
@media (max-width: 991px) {
  .hero-animated .animated {
    max-width: 60%;
  }
}
@media (max-width: 575px) {
  .hero-animated .animated {
    max-width: 80%;
  }
}
.hero-animated .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}
.hero-animated .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}
.hero-animated .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}
.hero-animated .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero-animated .btn-watch-video:hover {
  color: var(--color-primary);
}
.hero-animated .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}
@media (max-width: 640px) {
  .hero-animated h2 {
    font-size: 32px;
  }
  .hero-animated p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .hero-animated .btn-get-started, .hero-animated .btn-watch-video {
    font-size: 14px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Carousel Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 60vh;
  padding: 0;
  background: var(--color-black);
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 60px 0;
}
@media (max-width: 640px) {
  .hero .container {
    padding: 0 60px;
  }
}
.hero h2 {
  color: var(--color-secondary);
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 300;
  -webkit-animation: fadeInDown 1s both 0.2s;
  animation: fadeInDown 1s both 0.2s;
}
@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}
.hero p {
  color: var(--color-secondary-light);
  -webkit-animation: fadeInDown 1s both 0.4s;
  animation: fadeInDown 1s both 0.4s;
  font-weight: 500;
  margin-bottom: 30px;
}
.hero .img {
  margin-bottom: 40px;
  -webkit-animation: fadeInDownLite 1s both;
  animation: fadeInDownLite 1s both;
}
.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  -webkit-animation: fadeInUp 1s both 0.6s;
  animation: fadeInUp 1s both 0.6s;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.hero .btn-get-started:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.hero .carousel-control-prev {
  justify-content: start;
}
@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}
.hero .carousel-control-next {
  justify-content: end;
}
@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}
.hero .carousel-control-next-icon, .hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(var(--color-secondary-rgb), 0.4);
  color: rgba(var(--color-white-rgb), 0.98);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .carousel-control-next-icon {
  padding-left: 3px;
}
.hero .carousel-control-prev-icon {
  padding-right: 3px;
}
.hero .carousel-control-prev, .hero .carousel-control-next {
  transition: 0.3s;
}
.hero .carousel-control-prev:focus, .hero .carousel-control-next:focus {
  opacity: 0.5;
}
.hero .carousel-control-prev:hover, .hero .carousel-control-next:hover {
  opacity: 0.9;
}
.hero .carousel-indicators li {
  cursor: pointer;
  background: rgba(var(--color-secondary-rgb), 0.5);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--color-primary);
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/*--------------------------------------------------------------
# Fullscreen Hero Section
--------------------------------------------------------------*/
.hero-fullscreen {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-fullscreen-bg.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}
.hero-fullscreen:before {
  content: "";
  background: rgba(var(--color-white-rgb), 0.85);
  position: absolute;
  inset: 0;
}
@media (min-width: 1365px) {
  .hero-fullscreen {
    background-attachment: fixed;
  }
}
.hero-fullscreen h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}
.hero-fullscreen h2 span {
  color: var(--color-primary);
}
.hero-fullscreen p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
.hero-fullscreen .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}
.hero-fullscreen .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}
.hero-fullscreen .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}
.hero-fullscreen .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero-fullscreen .btn-watch-video:hover {
  color: var(--color-primary);
}
.hero-fullscreen .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}
@media (max-width: 640px) {
  .hero-fullscreen h2 {
    font-size: 32px;
  }
  .hero-fullscreen p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .hero-fullscreen .btn-get-started, .hero-fullscreen .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Static Hero Section
--------------------------------------------------------------*/
.hero-static {
  width: 100%;
  min-height: 50vh;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}
.hero-static h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}
.hero-static h2 span {
  color: var(--color-primary);
}
.hero-static p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
.hero-static .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}
.hero-static .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}
.hero-static .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}
.hero-static .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero-static .btn-watch-video:hover {
  color: var(--color-primary);
}
.hero-static .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}
@media (max-width: 640px) {
  .hero-static h2 {
    font-size: 32px;
  }
  .hero-static p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .hero-static .btn-get-started, .hero-static .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: var(--color-white);
  height: 100%;
}
.featured-services .service-item .icon {
  margin-bottom: 10px;
}
.featured-services .service-item .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}
.featured-services .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}
.featured-services .service-item h4 a {
  color: var(--color-secondary);
  transition: ease-in-out 0.3s;
}
.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
}
.featured-services .service-item:hover h4 a {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  position: relative;
  margin: 60px 0 0 60px;
}
.about .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  z-index: -1;
  content: "";
  background: url("../img/about-bg.png") top left;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .about .about-img {
    margin: 30px 0 0 30px;
  }
  .about .about-img:before {
    inset: -30px 0 0 -30px;
  }
}
.about h3 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about h3 {
    font-size: 28px;
  }
}
.about .nav-pills {
  border-bottom: 1px solid rgba(var(--color-secondary-rgb), 0.2);
}
.about .nav-pills li + li {
  margin-left: 40px;
}
.about .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-secondary);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
  font-family: var(--font-secondary);
}
.about .nav-link.active {
  color: var(--color-primary);
  background: none;
  border-bottom: 3px solid var(--color-primary);
}
@media (max-width: 575px) {
  .about .nav-link {
    font-size: 16px;
  }
}
.about .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--color-secondary);
}
.about .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 0 0 60px 0;
}
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}
.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.cta {
  padding: 0;
  margin-bottom: 60px;
}
.cta .container {
  padding: 80px;
  background: rgba(var(--color-secondary-rgb), 0.1);
  border-radius: 15px;
}
@media (max-width: 992px) {
  .cta .container {
    padding: 60px;
  }
}
.cta .content h3 {
  color: var(--color-secondary);
  font-size: 48px;
  font-weight: 700;
}
.cta .content h3 em {
  font-style: normal;
  position: relative;
}
.cta .content h3 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 10px;
  background: rgba(var(--color-primary-rgb), 0.5);
  z-index: -1;
}
.cta .content p {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 18px;
}
.cta .content .cta-btn {
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: rgba(var(--color-primary-dark-rgb), 0.9);
}
.cta .content .cta-btn:hover {
  background: var(--color-primary);
}
.cta .img {
  position: relative;
}
.cta .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-white-rgb), 0.5);
  border-radius: 15px;
  transform: rotate(12deg);
}
.cta .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-white-rgb), 0.9);
  border-radius: 15px;
  transform: rotate(6deg);
}
.cta .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
}

/*--------------------------------------------------------------
# On Focus Section
--------------------------------------------------------------*/
.onfocus {
  padding: 0;
}
.onfocus .video-play {
  min-height: 400px;
  background: linear-gradient(rgba(var(--color-black-rgb), 0.4), rgba(var(--color-black-rgb), 0.7)), url("../img/onfocus-video-bg.jpg") center center;
  background-size: cover;
}
.onfocus .content {
  background: linear-gradient(rgba(var(--color-secondary-rgb), 0.5), rgba(var(--color-secondary-rgb), 0.8)), url("../img/onfocus-content-bg.jpg") center center;
  background-size: cover;
  color: rgba(var(--color-white-rgb), 0.8);
  padding: 40px;
}
@media (min-width: 768px) {
  .onfocus .content {
    padding: 80px;
  }
}
.onfocus .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: var(--color-white);
}
.onfocus .content ul {
  list-style: none;
  padding: 0;
}
.onfocus .content ul li {
  padding-bottom: 10px;
}
.onfocus .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}
.onfocus .content p:last-child {
  margin-bottom: 0;
}
.onfocus .content .read-more {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-primary);
}
.onfocus .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}
.onfocus .content .read-more:hover {
  background: rgba(var(--color-primary-rgb), 0.9);
  padding-right: 19px;
}
.onfocus .content .read-more:hover i {
  margin-left: 10px;
}
.onfocus .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(var(--color-primary-rgb), 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.onfocus .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(var(--color-primary-rgb), 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.onfocus .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.onfocus .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
.onfocus .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}
.features .nav-tabs-top  .nav-link {
  border: 0;
  padding: 25px 20px;
  box-shadow: 0px 1px 5.16px 0.84px rgba(0, 0, 255, 0.13);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-out;
  cursor: pointer;
  height: 100%;
}
.features .nav-tabs-top .nav-link img{
	height: 68px;
	    margin-right: 16px;
}
.features .nav-link i {
  font-size: 32px;
  line-height: 0;
}
.features .nav-tabs-top .nav-link .h4 {
	font-family: var(--font-light);
  font-size: 20px;
  margin: 10px 0 0 0;
  color: #0000ff;
	text-transform: uppercase;
}
.features .nav-link:hover {
  color: var(--color-primary);
}
.features .nav-tabs-top .nav-link.active {
  transition: 0.3s;
  background: #0000ff;
  border-color: #0000ff;
}
.features .nav-tabs-top .nav-link.active .h4 {
  color: var(--color-white);
}
.features .nav-tabs-top .nav-link.active img{
	filter: brightness(0) invert(1);
}
.features .nav-link.active i {
  color: var(--color-white) !important;
}
.features .nav-tabs-bot{
	flex-direction: column;
}
.features .nav-tabs-bot .nav-item{
	    margin-bottom: 15px;
			position:relative;
}
.features .nav-tabs-bot .nav-link:before, .features .nav-tabs-bot .nav-link:after{
	content:'';
	position:absolute;
	opacity:0;
	visibility:hidden;
	transition:0.3s ease-out;
}
.features .nav-tabs-bot .nav-link:before{
	  width: 20px;
    border-top: 4px solid #f3ec19;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
}
.features .nav-tabs-bot .nav-link:after{
	  border-left: 20px solid #f3ec19;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    right: -55px;
    top: 50%;
    transform: translateY(-50%);
}
.features .nav-tabs-bot .nav-link.active:before, .features .nav-tabs-bot .nav-link.active:after{
	opacity:1;
	visibility:visible;
}
.features .nav-tabs-bot .nav-link {
  border: 0;
  padding: 20px 20px;
  box-shadow: 0px 1px 5.16px 0.84px rgba(0, 0, 255, 0.13);
  border-radius: 0;
  display: flex;
	position:relative;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-out;
  cursor: pointer;
  height: 100%;
}
.features .nav-tabs-bot .nav-link .h4 {
	font-family: var(--font-light);
  font-size: 18px;
  margin: 0;
  color: #0000ff;
	text-align: center;
	text-transform: uppercase;
}
.features .nav-tabs-bot .nav-link.active {
  transition: 0.3s;
  background: #0000ff;
  border-color: #0000ff;
}
.features .nav-tabs-bot .nav-link.active .h4 {
  color: var(--color-white);
}
.features .tab-content-top {
  margin-top: 30px;
}
.features .tab-content-top .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.features .tab-content-top .tab-pane h3 {
  font-weight: 600;
  font-size: 36px;
  color: var(--color-secondary);
}
.features .tab-content-top .tab-pane ul {
  list-style: none;
  padding: 0;
}
.features  .tab-content-top.tab-pane ul li {
  padding-bottom: 10px;
}
.features .tab-content-top .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-primary);
}
.features .tab-content-top .tab-pane p:last-child {
  margin-bottom: 0;
}
.features .tab-content-bot {
  padding-left: 5rem;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}
.services .img img {
  transition: 0.6s;
}
.services .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: var(--color-white);
  position: relative;
  background: rgba(var(--color-white-rgb), 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
}
.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--color-white);
}
.services .details h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}
.services .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .service-item:hover .details h3 {
  color: var(--color-primary);
}
.services .service-item:hover .details .icon {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
}
.services .service-item:hover .details .icon i {
  color: var(--color-primary);
}
.services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-secondary-dark-rgb), 0.8);
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: var(--color-white);
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(var(--color-white-rgb), 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-white);
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(var(--color-white-rgb), 0.6);
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}
.testimonials .testimonial-item .stars i {
  color: var(--color-yellow);
  margin: 0 1px;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(var(--color-white-rgb), 0.6);
  font-size: 26px;
  line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(var(--color-white-rgb), 0.4);
  opacity: 0.5;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-white);
  opacity: 1;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  background: rgba(var(--color-secondary-rgb), 0.04);
}
.pricing .pricing-item {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(var(--color-gray-rgb), 0.15);
  background: var(--color-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 4px solid var(--color-white);
  border-radius: 10px;
  overflow: hidden;
}
.pricing .pricing-header {
  background: linear-gradient(rgba(var(--color-secondary-rgb), 0.9), rgba(var(--color-secondary-rgb), 0.9)), url("../img/pricing-bg.jpg") center center;
  background-size: cover;
  text-align: center;
  padding: 40px;
  margin: -60px -40px 0;
}
.pricing h3 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 36px;
  color: var(--color-white);
}
.pricing h4 {
  font-size: 48px;
  color: var(--color-white);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 0;
}
.pricing h4 sup {
  font-size: 28px;
}
.pricing h4 span {
  color: rgba(var(--color-white-rgb), 0.6);
  font-size: 24px;
}
.pricing ul {
  padding: 30px 0;
  list-style: none;
  color: var(--color-gray);
  text-align: left;
  line-height: 20px;
}
.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.pricing ul i {
  color: var(--color-primary);
  font-size: 36px;
  padding-right: 3px;
  line-height: 0;
}
.pricing ul .na {
  color: rgba(var(--color-gray-rgb), 0.5);
}
.pricing ul .na i {
  color: rgba(var(--color-gray-rgb), 0.5);
  font-size: 24px;
  padding-left: 4px;
}
.pricing ul .na span {
  text-decoration: line-through;
}
.pricing .buy-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 6px;
  color: var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
  border: 1px solid var(--color-primary);
}
.pricing .buy-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.pricing .featured {
  border-color: var(--color-primary);
}
.pricing .featured .pricing-header {
  background: linear-gradient(rgba(var(--color-primary-rgb), 0.9), rgba(var(--color-primary-rgb), 0.9)), url("../img/pricing-bg.jpg") center center;
}
.pricing .featured .buy-btn {
  background: var(--color-primary);
  color: var(--color-white);
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .faq {
    padding: 0;
  }
}
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: var(--color-secondary);
}
.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.faq .content p {
  font-size: 15px;
  color: var(--color-gray);
}
.faq .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}
.faq .accordion-item {
  border: 0;
  margin-top: 15px;
  box-shadow: 0px 5px 25px 0px rgba(var(--color-black-rgb), 0.06);
}
.faq .accordion-collapse {
  border: 0;
}
.faq .accordion-button {
  padding: 15px 40px 20px 60px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: var(--color-default);
  text-align: left;
  background: var(--color-white);
  box-shadow: none;
  border-radius: 5px;
}
.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}
.faq .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
  color: var(--color-primary);
}
.faq .accordion-button:after {
  position: absolute;
  right: 15px;
  top: 15px;
  color: var(--color-primary);
}
.faq .accordion-body {
  padding: 0 30px 25px 60px;
  border: 0;
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: none;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}
.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 300;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio .portfolio-flters li:hover, .portfolio .portfolio-flters li.filter-active {
  color: var(--color-primary);
}
.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}
.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}
.portfolio .portfolio-item {
  position: relative;
  border: 1px solid var(--color-white);
  overflow: hidden;
  z-index: 1;
}
.portfolio .portfolio-item img {
  transition: all 0.3s;
}
.portfolio .portfolio-item:before {
  content: "";
  inset: 0;
  position: absolute;
  background: rgba(var(--color-secondary-rgb), 0.8);
  z-index: 2;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: auto 40px 40px 40px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 20px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  padding-right: 50px;
}
.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  line-height: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--color-white);
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}
.portfolio .portfolio-item:hover:before {
  visibility: visible;
  opacity: 1;
}
.portfolio .portfolio-item:hover img {
  transform: scale(1.2);
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  inset: auto 10px 0 10px;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member .member-img {
  border-radius: 8px;
  overflow: hidden;
}
.team .team-member .social {
  position: absolute;
  left: 0;
  top: -18px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team .team-member .social a {
  transition: color 0.3s;
  color: var(--color-white);
  background: var(--color-primary);
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s;
}
.team .team-member .social a i {
  line-height: 0;
  font-size: 16px;
}
.team .team-member .social a:hover {
  background: var(--color-primary-light);
}
.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.team .team-member .member-info {
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  background: var(--color-white);
  margin: -50px 20px 0 20px;
  position: relative;
  border-radius: 8px;
}
.team .team-member .member-info h4 {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 24px;
  color: var(--color-secondary);
}
.team .team-member .member-info span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray);
}
.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: var(--color-gray);
}
.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.section.recent-blog-posts{
	padding: 12rem 0 5rem 0;
}
.recent-blog-posts .actu_nav{
	display: flex;
    justify-content: space-between;
    margin-top: 25px;
}
.recent-blog-posts .actu_nav img{
	  height: 20px;
		cursor:pointer;
}

.recent-blog-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
  border-radius: 0;
	height: 500px;
}
.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.recent-blog-posts .post-box .meta {
  margin-top: 5px;
}
.recent-blog-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: #0000ff;
	font-family: var(--font-light);
}
.recent-blog-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}
.recent-blog-posts .post-box .post-title {
  font-size: 20px;
  color: var(--color-secondary);
	font-family: var(--font-bold);
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}
.recent-blog-posts .post-box .post-title a{
	color:#24272a;
}
.recent-blog-posts .post-box p {
  margin: 0;
  color: rgba(var(--color-secondary-dark-rgb), 0.7);
}
.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}
.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}
.recent-blog-posts .post-box:hover .post-title {
  color: var(--color-primary);
}
.recent-blog-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .map {
  margin-bottom: 40px;
}
.contact .map iframe {
  border: 0;
  width: 100%;
  height: 400px;
}
.contact .info {
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  overflow: hidden;
}
.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}
.contact .info p {
  color: var(--color-secondary-light);
  margin-bottom: 30px;
  font-size: 15px;
}
.contact .info-item + .info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}
.contact .info-item i {
  font-size: 24px;
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}
.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-secondary-light);
}
.contact_section1 .contact-form {
  width: 100%;
  background: var(--color-white);
}
.contact_section1 .contact-form .form-group {
  padding-bottom: 8px;
}
.contact_section1 .contact-form .error-message {
  display: none;
  color: var(--color-white);
  background: var(--color-red);
  text-align: left;
  padding: 15px;
  font-weight: 600;
	border-radius: 4px;
}
.contact_section1 .contact-form .error-message br + br {
  margin-top: 25px;
}
.contact_section1 .contact-form .sent-message {
  display: none;
  color: var(--color-white);
  background: var(--color-green);
  text-align: center;
  padding: 15px;
  font-weight: 600;
	border-radius: 4px;
}
.contact_section1 .contact-form .loading {
  display: none;
  background: var(--color-white);
  text-align: center;
  padding: 15px;
}
.contact_section1 .contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--color-green);
  border-top-color: var(--color-white);
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact_section1 .contact-form input[type=text], .contact_section1 .contact-form input[type=email], .contact_section1 .contact-form textarea {
  border-radius: 0px;
  box-shadow: none;
  font-size: 15px;
	border: 1px solid #0000ff;
}
.contact_section1 .contact-form input[type=text]:focus, .contact_section1 .contact-form input[type=email]:focus, .contact_section1 .contact-form textarea:focus {
  border-color: #ffff1f;
}
.contact_section1 .contact-form input[type=text], .contact_section1 .contact-form input[type=email] {
  height: 50px;
  padding: 10px 15px;
}
.contact_section1 .contact-form input[type=text]::placeholder, .contact_section1 .contact-form input[type=email]::placeholder, .contact_section1 .contact-form textarea::placeholder{
	color:#b9b9b9;
	font-family: var(--font-light);
}
.contact_section1 .contact-form textarea {
  padding: 10px 12px;
  height: 100px;
}
/* .contact_section1 .contact-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 13px 50px;
  color: var(--color-white);
  transition: 0.4s;
  border-radius: 0;
}
.contact_section1 .contact-form button[type=submit]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
} */
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.contact_section1 .contact-form .cv-upload-group{
	    display: flex;
    color: #b9b9b9;
    text-align: left;
    background: transparent;
    overflow: hidden;
    position: relative;
    border: 1px solid #0000ff;
    height: 50px;
    padding: 3px 15px;
    align-items: center;
}
.contact_section1 .contact-form .cv-upload-group .cv-label{
	display: inline-block;
    padding-right: 30px;
}
.contact_section1 .contact-form .cv-upload-group .cv-text{
	    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 1.2;
}
.contact_section1 .contact-form .cv-upload-group .cv-text #cv_name{
	    color: #0000ff;
    font-weight: 500;
}
.contact_section1 .contact-form .cv-upload-group .cv-text #cv_note{}
.contact_section1 .contact-form .cv-upload-group .cv-text #cv_note.erreur{
	color:red;
}
.contact_section1 .contact-form .cv-upload-group input[type=file]{
	display: none;
}
.contact_section1 .contact-form .btn-file{
	padding-top: 20px;
    text-align: right;
}
.contact_section1 .contact-form .btn-file span{
	    padding: 12px 65px;
    background: #b9b9b9;
    color: #fff;
    cursor: pointer;
		transition:0.3s ease-out;
}
.contact_section1 .contact-form .btn-file span:hover{
	background:#0000ff;
	color:#fff;
}


.check_group input[type=checkbox]{
	margin-right: 10px;
    margin-top: 3px;
}
.check_group .checkbox-text{
	font-size: 13px;
	color:#b9b9b9;
} 
/*
.check_group {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.check_group input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.check_group:hover input ~ .checkmark {
  background-color: #ccc;
}
.check_group input:checked ~ .checkmark {
  background-color: #2196F3;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.check_group input:checked ~ .checkmark:after {
  display: block;
}

.check_group .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
*/

.inner-page.contact_section2{
	background: #0000ff;
	padding: 6rem 0;
}
.contact_item{
	text-align:center;
}
.contact_item img{
	height:90px;
	margin-bottom:20px;
}
.contact_item .h3{
	text-transform:uppercase;
	margin-bottom:30px;
	color:#fff;
}
.contact_item p{
	color:#fff;
	margin-bottom:35px;
	text-transform:uppercase;
	font-family: var(--font-black) !important;
    font-size: 13px;
}
.contact_item .h4{
	font-size: 22px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-white);
  opacity: 1;
  border: 1px solid var(--color-primary);
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(var(--color-secondary-rgb), 0.15);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-secondary-light);
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Blog Stylings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
  padding: 30px;
  height: 100%;
}
.blog .posts-list article + article {
  margin-top: 60px;
}
.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}
.blog .posts-list .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
}
.blog .posts-list .title a {
  color: var(--color-secondary);
  transition: 0.3s;
}
.blog .posts-list .title a:hover {
  color: var(--color-primary);
}
.blog .posts-list .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}
.blog .posts-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .posts-list .meta-top ul li + li {
  padding-left: 20px;
}
.blog .posts-list .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--color-primary-rgb), 0.8);
}
.blog .posts-list .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .posts-list .content {
  margin-top: 20px;
}
.blog .posts-list .read-more a {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}
.blog .posts-list .read-more a:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
  padding: 30px;
}
.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}
.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}
.blog .blog-details .content {
  margin-top: 20px;
}
.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(var(--color-secondary-rgb), 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog .blog-details .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}
.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .blog-details .meta-top ul li + li {
  padding-left: 20px;
}
.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--color-primary-rgb), 0.8);
}
.blog .blog-details .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}
.blog .blog-details .meta-bottom i {
  color: var(--color-secondary-light);
  display: inline;
}
.blog .blog-details .meta-bottom a {
  color: rgba(var(--color-secondary-rgb), 0.8);
  transition: 0.3s;
}
.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}
.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}
.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}
.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}
.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}
.blog .blog-details .meta-bottom .tags li + li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}
.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}
.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}
.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}
.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}
.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}
.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}
.blog .post-author .social-links a {
  color: rgba(var(--color-secondary-rgb), 0.5);
  margin-right: 5px;
}
.blog .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}
.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}
.blog .sidebar .sidebar-item + .sidebar-item {
  margin-top: 40px;
}
.blog .sidebar .search-form form {
  background: var(--color-white);
  border: 1px solid rgba(var(--color-secondary-rgb), 0.3);
  padding: 3px 10px;
  position: relative;
}
.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}
.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}
.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}
.blog .sidebar .search-form form button i {
  line-height: 0;
}
.blog .sidebar .search-form form button:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}
.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}
.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}
.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}
.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}
.blog .sidebar .recent-posts .post-item {
  display: flex;
}
.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}
.blog .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}
.blog .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}
.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}
.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}
.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}
.blog .sidebar .tags {
  margin-bottom: -10px;
}
.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .tags ul li {
  display: inline-block;
}
.blog .sidebar .tags ul a {
  color: var(--color-secondary-light);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(var(--color-secondary-light-rgb), 0.8);
  display: inline-block;
  transition: 0.3s;
}
.blog .sidebar .tags ul a:hover {
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}
.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(var(--color-secondary-light-rgb), 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}
.blog .comments .comments-count {
  font-weight: bold;
}
.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}
.blog .comments .comment .comment-img {
  margin-right: 14px;
}
.blog .comments .comment .comment-img img {
  width: 60px;
}
.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}
.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}
.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}
.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}
.blog .comments .comment h5 .reply i {
  font-size: 20px;
}
.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin-bottom: 5px;
}
.blog .comments .comment.comment-reply {
  padding-left: 40px;
}
.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}
.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}
.blog .comments .reply-form p {
  font-size: 14px;
}
.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(var(--color-primary-rgb), 0.8);
}
.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(var(--color-primary-rgb), 0.8);
}
.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}
.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}
.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(var(--color-secondary-rgb), 0.8);
}

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: var(--color-secondary-light);
}
.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}
.blog .blog-pagination li a {
  color: var(--color-secondary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: var(--color-primary);
}
.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-white);
  font-size: 14px;
}
.footer .footer-content {
  background: #212121;
  padding: 60px 0 30px 0;
}
.footer .footer-content .footer-info {
  margin-bottom: 30px;
}
.footer .footer-logo img{
	max-height:100px;
}
.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}
.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-regular);
  color: var(--color-white);
}
.footer .footer-content h4, .footer .footer-content .h4 {
  font-size: 20px;
  color: #ffff1f;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'PierSans-Bold', sans-serif;
		font-weight: 700;
}
.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}
.footer .footer-content .footer-links {
  margin-bottom: 30px;
}
.footer .footer-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-content ul i {
  padding-right: 2px;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1;
	margin-right: 8px;
}
.footer .footer-content ul i.bi-at, .footer .footer-content ul i.bi-geo-alt{
	font-size: 22px;
}
.footer .footer-content ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
	font-family: var(--font-regular);
}
.footer .footer-content .footer-info ul li{
	padding: 5px 0;
	align-items: flex-start;
}
.footer .footer-content ul li:first-child {
  padding-top: 0;
}
.footer .footer-content ul a {
	font-family: var(--font-regular);
  color: rgba(var(--color-white-rgb), 1);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer .footer-content ul a:hover {
  color: var(--color-white);
}
.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
.footer .footer-content .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
.footer .footer-content .footer-newsletter form input[type=email]:focus-visible {
  outline: none;
}
.footer .footer-content .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
.footer .footer-content .footer-newsletter form input[type=submit]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}
.footer .footer-legal {
  padding: 20px 0;
  background: #0303eb;
}
.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-white);
}
.footer .footer-legal .credits a {
  color: var(--color-primary-light);
}
.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(var(--color-white-rgb), 0.1);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.footer .footer-legal .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

/******** BOUTONS ********/

.btn-link{
	border-radius:100px;
	padding:12px 35px;
	text-decoration:none;
	font-family: var(--font-medium);
	font-size:16px;
	border:none;
	box-shadow:none;
	outline:none;
	transition: .5s all;
}
.btn-link:hover{
	text-decoration:none;
	border:none;
	box-shadow:none;
	outline:none;
}

.btn-link.style1{
	color:#fff;
	background: #0303eb;
}
.btn-link.style1:hover{
	background: #ffff1f;
	color:#0303eb;
}

/*****************/
.section{
	position:relative;
	padding: 60px 0;
}
.container75{
	min-width:75vw;
}
.section_call{
	background: #f3f3f3;
    padding: 80px 0;
}
.section_call .h3, .section_call p{
	color:#4d4d4d;
}
.section_call p{
	font-family:var(--font-light);
}
.owlPartenaire{
	margin-top:40px;
}
.owlPartenaire .owl-item img{
	height: 100px;
    width: auto;

}

.section_projects .projects_col{
	height: 550px;
	position: relative;
	transition:0.5s all;
}
.section_projects .projects_col:before{
	content:'';
	position:absolute;
	width:100%;
	height:100%;
	left:0;
	top:0;
	background: rgba(0,0,0,0.5);
	transition:0.5s all;
}
.section_projects .projects_col i{
	    color: #0303eb;
    font-size: 55px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
		opacity:0;
		visibility:hidden;
		transition:0.5s all;
}
.section_projects .projects_col img{
	    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section_projects .projects_col:hover:before{
	opacity:0;
		visibility:visible;
}
.section_projects .projects_col:hover i{
	opacity:1;
		visibility:visible;
}
.section_about {
	padding: 16rem 0 100px 0;
	background: url(../images/bg-about.png) no-repeat;
	background-size: 100%;
  background-position: left center;
	    margin-top: -15rem;
}
.ul_about{
	list-style: none;
}
.ul_about li{
	position: relative;
	font-family:var(--font-bold);
	margin-bottom: 12px;
	font-weight: 700;
}
.ul_about li:before{
	content: "\f64d";
	font-family: bootstrap-icons;
	    position: absolute;
    left: -25px;
    color: #0303eb;
    font-weight: 800;
    font-size: 18px;
}
.ul_about li p{
	font-family:var(--font-light);
	font-weight: 200;    
}
.about_number{
	position:relative;
}
.about_number .experience-years{
	font-family:var(--font-black);
	font-size: 30rem;
    background: url(../images/mask-img.webp) center center / cover no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
		background-clip: text;
    text-fill-color: transparent;
		letter-spacing: -45px;
    line-height: 27rem;
}
.about_number .experience-shadow{
	font-family:var(--font-black);
	font-size: 30rem;
	line-height: 27rem;
	color:#000000;
	opacity:0.06;
	position:absolute;
	    right: -78%;
    bottom: -25%;
}
.about_number p{
	    color: #707070;
    font-family: var(--font-bold);
    text-align: center;
    text-transform: uppercase;
    font-size: 26px;
}
.box_compet{
	transition:0.5s all;
	    display: flex;
    align-items: center;
		justify-content: center;
}
.box_compet .box_compet_icon{
	margin-right: 20px;
}
.box_compet .box_compet_icon img{
	height: 70px;
}
.box_compet .box_compet_title a{
	font-family:var(--font-light);
	color: #0303eb;
    text-transform: uppercase;
    font-size: 20px;
}
.box_compet:hover{
	transform:scale(1.1);
}
.section_about_1, .section_about_2{
	padding-top: 0;
    margin-top: -5rem;
    z-index: 2; 
}
.section_about_1{
	margin-left: -18rem;
}
.section_about_2{
	/* margin-right: -18rem; */
	margin-top: 0;
}
.section_about_1 .ghost_title{
	font-size: 6rem;
}
.section_about_1 .box_about, .section_about_2 .box_about{
	padding: 60px 65px;
	position: relative;
}
.section_about_1 .box_about, .box_about.blue{
	background: #0000ff;
}
.box_about.yellow{
	background: #ffff8b;
	margin-top: -12rem;
}
.section_about_1 .box_about .h3{
	width: 80%;
    margin: 0 auto;
    position: relative;
}
.section_about_1 .box_about .h3:after{
	content:'';
	position:absolute;
	width:45%;
	left:50%;
	bottom:-10px;
	transform: translateX(-50%);
	border-top: 1px solid #6666ff;
}
.section_about_1 .box_about a i{
	    font-size: 42px;
    color: #fbfb1b;
    position: absolute;
    right: 18px;
    bottom: 18px;
}

.hero_diapo, .hero_breadcrumbs{
	height: 980px;
	width: 86%;
    margin-left: auto;
    padding-top: 0;
		position:relative;
				-webkit-mask-image: url(../images/sero-h.webp);
  mask-image: url(../images/sero-h.webp);
  -webkit-mask-position: left top;
  mask-position: left top;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
	-webkit-mask-size: cover;
  mask-size: cover;
	display: flex;
    flex-direction: column;
    justify-content: center;
z-index:1;
}
.hero_breadcrumbs{
	-webkit-mask-size: 117%;
  mask-size: 117%;
	width: 85%;
}
.hero_diapo.owl-carousel .owl-stage-outer, 
.hero_diapo.owl-carousel .owl-stage,
.hero_diapo.owl-carousel .owl-item{
	height:100%;
}
.hero_diapo .carousel_item{
	height: 100%;
	position: relative;
	
}
.hero_diapo .carousel_item img, .hero_breadcrumbs img{
	display: block;
  width: 100%;
  height: 100%;
	object-fit:cover;
}
.hero_diapo .carousel_item .diapo_content{
	    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
		display: flex;
    align-items: center;
    justify-content: center;
}
.bg_breadcrumbs .breadcrumbs_content{
	position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
		display: flex;
    align-items: end;
    justify-content: flex-start;
z-index:2;
}
.hero_diapo .carousel_item .diapo_content .indiapo_content{
	width: 50%;
    /* background: rgb(2 2 47 / 60%); */
     background: rgb(2 2 47 / 32%);
		position: relative;
		padding: 40px;
		    margin-left: -15rem;
    margin-top: 0;
}
.bg_breadcrumbs .breadcrumbs_content .in_breadcrumbs_content{
	width: 45%;
    background: rgb(2 2 47 / 60%);
		position: relative;
		padding: 40px;
		 margin-left: 18.5rem;
    margin-bottom: -8rem;
}
.hero_diapo .carousel_item .diapo_content .h2,
.bg_breadcrumbs .breadcrumbs_content .h2{
	font-family: 'PierSans-Bold', sans-serif;
    color: #fff;
    font-size: 36px;
    text-align: center;
		margin-bottom: 25px;
		line-height: 1.2;
		font-weight: 700;
		
}
.hero_diapo .owl-item.active .carousel_item .diapo_content .h2,
.bg_breadcrumbs .breadcrumbs_content .h2,
.hero_diapo .owl-item.active .carousel_item .diapo_content p,
.bg_breadcrumbs .breadcrumbs_content p,
.hero_diapo .owl-item.active .carousel_item .diapo_content .btn-diapo
{
	-webkit-animation: fadeInDown 1s both 0.2s;
    animation: fadeInDown 1s both 0.2s;
}
.bg_breadcrumbs .breadcrumbs_content .h2{
	display: flex;
    flex-direction: column;
    align-items: start;
		margin-bottom:0;
}
.bg_breadcrumbs .breadcrumbs_content .h2 span{
	font-size: 58px;
    /* font-family: 'PierSans', sans-serif; */
		font-family: 'Pier Sans Regular';
    letter-spacing: 0.02rem;
}
.hero_diapo .carousel_item .diapo_content p,
.bg_breadcrumbs .breadcrumbs_content p{
	color: #fff;
	    font-family: 'PierSans-Light', sans-serif;
    line-height: 1.3;
    text-align: justify;
		    margin-bottom: 10px;
}
.hero_diapo .carousel_item .diapo_content .btn-diapo{
	    background: #ffff00;
    padding: 5px 18px 8px 18px;
    font-family: 'PierSans-Medium', sans-serif;
    border-radius: 30px;
    color: #0000ff;
		margin-left:auto;
		    width: 25%;
				display:flex;
    justify-content: center;
    align-items: center;
		transition:0.5s ease-out;
}
.hero_diapo .carousel_item .diapo_content .btn-diapo:hover{
	color: #ffff00;
	 background: #0000ff;
}

#main{
	overflow: hidden;
}
.bg_hero{
	width:100%;
	background:url(../images/sero-hleft.webp);
	background-position: left top;
	background-repeat: no-repeat; 
	background-size: 33%;
	position:relative;
} 
.bg_breadcrumbs{
	width:100%;
	background:url(../images/page-hleft.webp);
	background-position: left top;
	background-repeat: no-repeat; 
	background-size: 28%;
	position:relative;
	/* margin-bottom: 8rem; */
}
.bg_hero{
	height: 980px;
}
.bg_breadcrumbs, .hero_breadcrumbs{
	height: 500px;
}
.bg_hero:before{
	content:'';
	position:absolute;
	bottom: -10rem;
    height: 60%;
	background: #ffff00;
	animation: bg_hero_before 2s ease-in-out both; 
}
@-webkit-keyframes bg_hero_before {
  0% {
    width: 0;
  }
  100% {
    width:10rem;
  }
}
.diapo_prev{
	position: absolute;
    bottom: 8rem;
    left: 6rem;
}
.diapo_prev img{
	height: 20px;
    cursor: pointer;
}
.diapo_dots{
	position:absolute;
	left: 15rem;
    bottom: 50%;
	z-index: 2;	
}
.diapo_indicators{
	display: flex;
    justify-content: center;
		    flex-direction: column;
		list-style: none;
		padding:0;
		    padding-bottom: 8px;
		margin-bottom: 0;
		position:relative;
}
.diapo_indicators:after{
	content:'';
	position:absolute;
	border-left: 1px solid #0000ff;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
		animation: diapo_indicators_after 2s ease-in-out both; 
}
@-webkit-keyframes diapo_indicators_after {
  0% { height: 0;}
  100% { height: 150px; }
}
.diapo_indicators .owl-dot{
	border: 0;
    width: 8px;
    height: 8px;
    border-radius: 50px;
		margin:2px;
		background: #0000ff;
		cursor:pointer;
		transition: 0.3s;
}
.diapo_indicators .owl-dot:hover, .diapo_indicators .owl-dot.active{
	transform:scale(1.8);
}
.inner-page{
	padding: 60px 0;
	position:relative;
}
.inner-page p{
	/* font-family: 'PierSans', sans-serif; */
	font-family: 'Pier Sans Regular';
    letter-spacing: 0.02rem;
}
.bleu_italic{
	color:#0000ff;
	font-style:italic;
}
.big_quote{
	    
}
.president_img{
	position:relative;
	height: 700px;
	    margin-top: -124px;
    margin-left: 6rem;
        background: #f5f5f5;
}
.president_img:before{
	    content: '';
    position: absolute;
    height: 120px;
    left: 0;
    bottom: -120px;
    background: #f3ec19;
		animation: president_img_before 2s ease-in-out both; 
}
@-webkit-keyframes president_img_before {
  0% { width: 0;}
  100% { width: 200%; }
}
.president_img:after{
	content:'';
	position:absolute;
	    width: 200px;
    height: 50%;
    right: -62px;
    bottom: -30px;
	background: #0000ff;
	animation: president_img_after 2s ease-in-out both; 
}
@-webkit-keyframes president_img_after {
  0% { height: 0;}
  100% { height: 50%; }
}
.president_img img{
	height:100%;
	    width: auto;
}
.big_quote_start, .big_quote_end{
	position:relative;
}
.big_quote_start:before{
	position:absolute;
	content: "\f6b0";
	font-family: bootstrap-icons !important;
	color: #f3ec19;
    font-size: 38px;
		margin-right: 8px;
    top: -18px;
    left: -8px;
}
.big_quote_end:after{
	position:absolute;
	content: "\f6b0";
	font-family: bootstrap-icons !important;
	color: #f3ec19;
    font-size: 38px;
		    bottom: -18px;
    transform: rotate(180deg);
    margin-left: 8px;
}
.carte{
	margin-top: -5rem;
}

.equipe_item{
	height: 500px;
    overflow: hidden;
    width: 100%;
    position: relative;
		transition:0.3s ease-out;
}
.equipe_item:before{
	content: "";
	position:absolute;
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
		background: rgb(0 0 255 / 70%);
		transition:0.3s ease-out;
}
.equipe_item img{
	height: 100%;
    width: 100%;
    object-fit: cover;
}
.equipe_item .equipe_content{
	  position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #fff;   
		transition:0.3s ease-out;
}
.equipe_item:hover:before{
	background: rgb(255 255 31 / 70%);
}
.equipe_item:hover .equipe_content{
	color:#4d4d4d;
}
.equipe_item .equipe_content .h3{
	text-transform:uppercase;
	margin-bottom:20px;
}
.equipe_item .equipe_content ul{
	list-style:none;
}
.equipe_item .equipe_content ul li{
	position:relative;
}
.equipe_item .equipe_content ul li:before, 
.equipe_item .equipe_content ul li:after{
	content: "";
	position:absolute;
	transition:0.3s ease-out;
}
.equipe_item .equipe_content ul li:before{
	  width: 10px;
    border-top: 2px solid #f3ec19;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}
.equipe_item .equipe_content ul li:after{
	  border-left: 12px solid #f3ec19;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
}
.equipe_item:hover .equipe_content ul li:before{
	border-top-color: #0303eb;
}
.equipe_item:hover .equipe_content ul li:after{
	border-left-color: #0303eb;
}

.page2_section1 .ghost_title,
.page3_section1 .ghost_title,
.contact_section1 .ghost_title,
.page4_section1 .ghost_title,
.page5_section1 .ghost_title
{
	    font-size: 9.5rem;
    top: -80px;
    right: 0;
}

.compet_item{
	height: 500px;
    overflow: hidden;
    width: 100%;
    position: relative;
		transition:0.3s ease-out;
}
.compet_item:before{
	content: "";
	position:absolute;
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
		background: rgb(0 0 255 / 70%);
		transition:0.3s ease-out;
}
.compet_item > img{
	height: 100%;
    width: 100%;
    object-fit: cover;
}
.compet_item .compet_content{
	  position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 35px;
    color: #fff;   
		transition:0.3s ease-out;
}
.compet_item .compet_content img{
	height:75px;
	margin-bottom: 20px;
	margin-left:auto;
	margin-right:auto;
	filter: brightness(0) invert(1);
	transition:0.3s ease-out;
}
.filter-none{
	filter: none !important;
}
.compet_item .compet_content p{
	text-transform:uppercase;
}
.compet_item .compet_content a.btn-comp{
	display: block;
    margin-left: auto;
    margin-right: 18px;
}
.compet_item .compet_content a.btn-comp span{
	text-transform:uppercase;
	position:relative;
	color:#f3ec19;
	transition:0.3s ease-out;
}
.compet_item:hover:before{
	background: rgb(255 255 31 / 70%);
}
.compet_item:hover .compet_content{
	color:#0303eb;
}
.compet_item:hover .compet_content img{
	filter: none;
}
.compet_item .compet_content .h3{
	text-transform:uppercase;
	margin-bottom:20px;
	text-align: center;
}
.compet_item .compet_content .h3 a{
	color:#fff;
}
.compet_item:hover .compet_content .h3 a{
	color:#0303eb;
}

.compet_item .compet_content a.btn-comp span:before, 
.compet_item .compet_content a.btn-comp span:after{
	content: "";
	position:absolute;
	transition:0.3s ease-out;
}
.compet_item .compet_content a.btn-comp span:before{
	  width: 10px;
    border-top: 2px solid #f3ec19;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}
.compet_item .compet_content a.btn-comp span:after{
	  border-left: 12px solid #f3ec19;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}
.compet_item:hover .compet_content a.btn-comp span:before{
	border-top-color: #0303eb;
}
.compet_item:hover .compet_content a.btn-comp span:after{
	border-left-color: #0303eb;
}
.compet_item:hover .compet_content a.btn-comp span{
	color:#0303eb;
}
.filters-button-group{
	    display: flex;
    justify-content: center;
    align-items: center;
}
.filters-button-group .ref-btn{
	    flex: 0 0 16%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'PierSans-Bold', sans-serif;
		font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    padding: 15px;
    margin: 5px;
		text-align: center;
		cursor:pointer;
		position:relative;
		transition:0.3s ease-out;
}
.filters-button-group .ref-btn span{
	position:relative;
}
.filters-button-group .ref-btn:before{
	content: "";
	position:absolute;
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
		background: rgb(0 0 255 / 70%);
		transition:0.3s ease-out;
}
.filters-button-group .ref-btn.is-checked{
	color:#0303eb;
}
.filters-button-group .ref-btn.is-checked:before{
	background: rgb(255 255 31 / 70%);
}
.grid .shuffle-item{
	padding-left:5px;
	padding-right:5px;
	flex: 0 0 32%;
	    max-width: 32%;
			width: 32%;
}
/* .ref_item{
	margin-bottom:30px;
}
.ref_item img{
	height: 250px;
    width: 100%;
    object-fit: cover;
}
.ref_item .h3{
	text-align: center;
    color: #a1a1a1;
    font-size: 22px;
    padding: 10px 45px;
	font-family: 'Pier Sans Regular';
    letter-spacing: 0.02rem;
} */
.actu_thumbs{
	padding-top:6rem;
}
.actu_princip img{
	width:100%;
	height:500px;
	object-fit:cover;
	padding-right:3rem;
}
.actu_princip .h3 a{
	color: #adadad;
}
.actu_princip .h3{
	font-family:var(--font-medium);
	position:relative;
	
	text-transform:uppercase;
	margin-bottom: 30px;
    display: inline-block;
}
.actu_princip .h3:before{
	content:'';
	    position: absolute;
    bottom: -10px;
    width: 100%;
    border-bottom: 5px solid #ffff00;
    left: 0;
}
.actu_princip .date{
	color:#0303eb;
	font-family: var(--font-regular);
	margin-bottom: 4px;
}
.actu_princip p{
	color:#9e9e9e;
}

.doc_details{
	margin-top: 45px
}
.doc_details .h5{
	    font-size: 25px;
    margin-bottom: 16px;
    color: #0303eb;
    display: inline-block;
    border-bottom: 5px solid #e7e70b;
    line-height: 1.8;
}
.doc_details ul{
	list-style: none;
    padding-left: 0;
}
.doc_details ul li{
	padding: 10px 0;
    border-bottom: 1px solid #f3f3f3;
}
.doc_details ul li a{
	display: flex;
    align-items: center;
		color:#747373;
}
.doc_details ul li a i{
	margin-right: 12px;
    color: #fff;
    background: #0303eb;
    padding: 6px;
}
.realis_top.owl-carousel .owl-item img{
	height: 400px;
    width: 100%;
    object-fit: cover;
		cursor:pointer;
}
.realis_bottom.owl-carousel .owl-item.synced img{
	opacity:1;
}
.realis_bottom.owl-carousel .owl-item img{
	    height: 100px;
    width: 100%;
    object-fit: cover;
		opacity:0.5;
}
.bg_breadcrumbs .breadcrumbs_content.compt_pages .in_breadcrumbs_content{
	background: rgb(255 255 0 / 60%);
	width: 45%;
}
.bg_breadcrumbs .breadcrumbs_content.compt_pages .in_breadcrumbs_content .h2{
	color:#0000ff;
}
.bg_breadcrumbs .breadcrumbs_content.compt_pages .in_breadcrumbs_content p{
	color:#0000ff;
}

.ul_style1{
	list-style: none;
   /*  text-transform: uppercase; */
    color: #000000;
    padding-left: 0;
}
.ul_style1 li{
	padding-bottom: 10px;
    display: flex;
}
.ul_style1 li i{
	color: #0000ff;
	font-size: 16px;
	margin-right:10px;
	line-height: 1.5;
}
.compt_details .box_compet{
	    border: 0;
    padding: 20px 15px;
		background:#fff;
    box-shadow: 0px 1px 5.16px 0.84px rgba(0, 0, 255, 0.13);
    border-radius: 0;
    transition: 0.3s ease-out;
  
    height: 100%;
}
.compt_details .box_compet:hover{
	transform:translateY(-10px);
}
.compt_details .box_compet.active{
	background: #0000ff;
}
.compt_details .box_compet.active img{
	filter: brightness(0) invert(1);
}
.compt_details .box_compet.active .box_compet_title a{
	color:#fff;
}
.ghost_img{
	    height: 400px;
    width: 500px;
    position: absolute;
    left: 0;
    top: 18%;
    opacity: 0.04;
}
.ghost_img img{
	    width: auto;
    height: 100%;
}
.object-fit-cover{
	object-fit:cover;
}
.map{
	height:600px;
	width:100%;
}
.map iframe{
	height:100%;
	width:100%;
	border: none;
}
.icono_item .icono_img{
	height:70px;
	width:70px;
	border-radius:10px;
	display:flex;
	align-items:center;
	justify-content:center;
	margin: 5px auto;
	transition:0.3s all;
}
.icono_item .icono_img img{
	height:45px;
	transition:0.3s all;
}
.icono__1 .icono_item .icono_img{	
	border: 2px solid #0000ff;	
}
.icono__1 .icono_item:hover .icono_img{
	background: #0000ff;
}
.icono__1 .icono_item:hover .icono_img img{
	filter: brightness(0) invert(1);
}
.icono__2 .icono_item .icono_img{	
	border: 2px solid #fff;	
}
.icono__2 .icono_item:hover .icono_img{
	background: #ffff1f;
	border-color:#ffff1f
}
.icono__2 .icono_item .icono_img img{
	filter: brightness(0) invert(1);
}
.icono__2 .icono_item:hover .icono_img img{
	filter: none;
}
.bg1{
	background: url(../images/bg1.webp) no-repeat;
	background-size:40%;
	background-position: left center;
}
.bg2{
	background: url(../images/bg2.webp) no-repeat;
	background-size:40%;
	background-position: left center;
}
.pullToTop{
	margin-top: -6rem;
}

.text-manuscrit{
  font-family: Winter !important;
  font-size: 20px;
}

.accordPanel .accordion-item{
	margin-bottom: 12px
}
.accordPanel .accordion-collapse{
	padding: 20px 12px
}
.accordPanel button.collapsed{
	background: transparent;
  border: 1px solid #c9c7c7;
    
}
.accordPanel button.collapsed .h3{
	color: #212529;
}
.accordPanel button{
	width: 100%;
	outline:none;
	background: #0000ff;
	border-color:#0000ff;
	position:relative;
}
.accordPanel button:before, .accordPanel button:after{
	position:absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	top:50%;
	right:20px;
	transform: translateY(-50%);
	color: #fff;
}
.accordPanel button.collapsed:before{
	content: "\f067";
}
.accordPanel button:after{
	content: "\f068";
}
.accordPanel button.collapsed:before,
.accordPanel button.collapsed:after{
	color: #212529;
}
.accordPanel button .h3{
	font-size: 20px;
    text-align: left;
    padding: 10px 20px;
		color:#fff;
}
.bgBlue{
	background: #0000ff;
}
.bgYellow{
	background: #ffff8b;
}
.encart__1{
	display: flex;
	box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
	transition:0.3s all;
}
.encart__1.right{
	flex-direction: row-reverse;
	margin-left: 20rem;
}
.encart__1.left{
	margin-right: 20rem;
}
.encart__1 .encart_thumb{
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
    max-width: 30%;
    overflow: hidden;
}
.encart__1 .encart_thumb img{
	transition:0.3s all;
}
.encart__1 .encart_txt{
	padding: 30px;
}
.encart__1:hover{
	transform: translateY(-10px);
}
.encart__1:hover .encart_thumb img{
	transform: scale(1.2);
}

/*--------------------------------------------------------------
# Recrutement Section
--------------------------------------------------------------*/

.ListeOffres{
  position: relative;
  padding: 2rem 0;
}

.btnStyled {
  position: relative;
  font-family: 'PierSans-Medium', sans-serif;
  font-size: 18px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 16px;
  background: #ffff00;
  color: #0000ff;
  box-shadow: 3.032px 10.574px 24px 0px rgba(56, 82, 141, 0.24);
  overflow: hidden;
  border: none;
  transition: 0.3s all;
}

.btnStyled:hover {
  background: #0000ff;
  color: #ffff00;
}

.offre-item {
  position: relative;
  background: #fff;
  box-shadow: 3.032px 10.574px 24px 0px rgba(56, 82, 141, 0.24);
  padding: 30px;
  padding-right: 90px;
}

.offre-item .offre-content .offre-metas {
  border-bottom: 1px solid rgb(202, 208, 211);
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}

.offre-item .offre-content .offre-metas li{
  color: #0000ff
}

.ListeOffres .title {
  color: #0303eb;
  font-size: 35px;
}

.section_detail {
  padding-top: 4rem;
}

.section_detail .title {
  color: #0303eb;
  font-size: 35px;
  margin-bottom: 10px;
}

.section_detail .info_offre {
  background: #0000ff;
  border-radius: 6px;
  padding : 10px 20px;
  box-shadow: 3.032px 10.574px 24px 0px rgba(56, 82, 141, 0.24);
  border-bottom: 5px solid #838383;
}

.section_detail .info_offre ul li{
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #838383;
}

.section_detail .info_offre ul li a{
  color: #fff;
}

.info_offre ul li i {
  color: #f2b300;
  font-size: 18px;
  margin-right: 10px !important;
}

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

.ref i{
  color: #f2b300;
  font-size: 18px;
  margin-right: 10px !important;
}

.form-group {
  position: relative;
  margin-bottom: 26px;
}

.form-group .input-custom {
  height: 45px;
}

.form-group label {
  position: absolute;
  background: #fff;
  display: inline-block;
  left: 12px;
  top: -10px;
  padding: 0 8px;
  font-size: 15px;
  transition: 0.2s all;
}

.check_item {
  margin-bottom: 10px;
  display: flex
;
  flex-direction: row;
  gap: 12px;
}

.check_item label {
  font-size: 13px;
}

.section .title {
  color: #0303eb;
  font-size: 35px;
  margin-bottom: 10px;
}

.bouton {
  text-align: right;
}

.nowrap991{
  white-space: nowrap;
}
/*******************************************************************************************/
/****************----------------Style Yassmine-----------***********************/
.header .menu_header {
    margin-top: 50px;
}
.ref_item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ref_item img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.ref_item .h3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #787878;
    font-size: 22px;
    padding: 10px 45px;
    font-family: 'Pier Sans Regular';
    letter-spacing: 0.02rem;
    background: rgb(249 245 245 / 80%);
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ref_item:hover .h3 {
    opacity: 1;
}

.ref_item:hover img {
    transform: scale(1.05);
}

.filters-button-group .ref-btn:hover {
    color: #0303eb;
}
.filters-button-group .ref-btn:hover:before {
    background: rgb(255 255 31 / 70%);
}


.filters-button-group .ref-btn > * {
    position: relative;
    z-index: 1;
}
.section-header {
    text-align: left;
    padding-bottom: 1px;
    margin: 0 8%;
}
.product-description {
     position: relative;
    background-color: #0303eb; 
    color: #ffffff; 
    padding: 25px 30px;
    font-family: 'Open Sans', sans-serif; 
    font-weight: 400;
    line-height: 1.7;
    font-size: 15px;
    max-width: 850px;
    margin: 20px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-description::before,
.product-description::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid #ffff1f; 
 
}


.product-description::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}


.product-description::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}


.product-description p {
    margin-bottom: 10px;
    color: #ffffff;
}


.product-description strong {
    color: #ffff1f; 
        font-family: 'Myriad Pro';
}
.product-description b {
    color: #ffff1f; 
        font-family: 'Myriad Pro';
}


.product-description [style] {
    color: inherit !important;
    font-size: inherit !important;
    background-color: transparent !important;
    font-family: inherit !important;
}


.product-description p + p {
    margin-top: 6px;
}

.product-description a {
    color: #ffff1f;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.product-description a:hover {
    color: #ffffff;
}


.product-description.yellow-version {
    background-color: #ffff1f;
    color: #0303eb;
}
.product-description.yellow-version strong {
    color: #0303eb;
}
.bg_breadcrumbs{

	margin-bottom: 4rem;
}



.contact_item {
    background: #0303eb;
 
  padding: 25px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}
.contact_item::before {
    top: 10px;
    left: 10px;
    border-right: none !important;
    border-bottom: none !important;
}
.contact_item::before, .contact_item::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid #ffff1f;
}
.contact_item::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}
.contact_item img {
    width: 49px;
    height: 70px;
    margin-bottom: 15px;
    object-fit: cover;
}



.contact_item p {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
}

.big_quote_start1:before {
    position: absolute;
    content: "\f6b0";
    font-family: bootstrap-icons !important;
    color: #f3ec19;
    font-size: 38px;
    margin-right: 8px;
    top: -20px;
    left: -25px;
}
/* 1️⃣ — Nettoyer tous les styles inline du back-office */
.product-description [style] {
  color: inherit !important;
  font-size: inherit !important;
  background-color: transparent !important;
  font-family: inherit !important;
}

/* 2️⃣ — Forcer la couleur jaune sur les balises de mise en valeur */
.product-description b,
.product-description b[style],
.product-description strong,
.product-description strong[style],
.product-description span[style*="bold"],
.product-description span[style*="font-weight:700"],
.product-description span.bold {
  color: #ffff1f !important;
  font-size: inherit !important;
  background-color: transparent !important;
  font-family: inherit !important;
}

.accordPanel button .span_buton {
    font-size: 20px;
    display: flex;
       justify-content: flex-start;
    padding: 10px 20px;
    color: #fff;
}
.accordPanel button.collapsed .span_buton {
    color: #212529;
}
.accordPanel button.collapsed {
    background: transparent;
    border: 1px solid #c9c7c7;
    padding: 6px;
}
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.pos-img{
    position: relative;
    top: -75px;
}
.svg{
        left: 2%;
  
    top: 0%;
    overflow: hidden;
    vertical-align: middle;
    position: absolute;
}


.header .logo {
    position: absolute;
    left: -40rem;
    top: -32px;
}
.header.sticked .logo img {
    max-height: 183%;
}
.header.sticked .logo {
    left: -37rem;
    top: 0;
    height: 100%;
}

@media (max-width: 1279px) {
  /* Nav container - sans fond */
  .navbar-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  
  /* UL avec le fond blanc */
     .navbar-mobile .navbar-menu {
        position: absolute;
        inset: 0;
        padding: 10px 0;
        margin: 0;
        background: #ffffff;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        /* margin-top: 69px; */
    }
  
  /* Liens du menu */
  .navbar-mobile a, 
  .navbar-mobile a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #333333; /* Texte foncé */
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .navbar-mobile a i, 
  .navbar-mobile a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  
  /* Hover et active */
  .navbar-mobile a:hover, 
  .navbar-mobile .active, 
  .navbar-mobile .active:focus, 
  .navbar-mobile li:hover > a {
    color: var(--color-primary);
    background: rgba(0, 0, 0, 0.05);
  }
  
  /* Dropdowns */
  .navbar-mobile .dropdown ul, 
  .navbar-mobile .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f8f8f8;
  }
  
  .navbar-mobile .dropdown > .dropdown-active, 
  .navbar-mobile .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  /* Toggle button */
  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 20px;
  }
  
  .mobile-nav-toggle.bi-x {
    color: #333333;
  }

  /* Active state */
  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }
  
  .mobile-nav-active .navbar-mobile {
    left: 0;
  }
  
  .mobile-nav-active .navbar-mobile:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Overlay sombre */
    z-index: 5;
  }
  .navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;

    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 220;
  }
 .header.sticked .navbar-header{
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
     .header.sticked .navbar-header:has(.mobile-nav-toggle.bi-x) {
  background: transparent !important;
  box-shadow: none !important;
}
 .navbar-mobile .dropdown > a {
    pointer-events: auto; /* Permettre le clic */
  }
}