/*--------------------------------------------------------------
# Define general styles
--------------------------------------------------------------*/
:root {
  --primary-color: #4285C6;
  --secondary-color: #444444;

}

@font-face {
  font-family: 'UniSansHeavyCAPS';
  src:url('../fonts/UniSansHeavyCAPS.ttf.woff') format('woff'),
      url('../fontsUniSansHeavyCAPS.ttf.svg#UniSansHeavyCAPS') format('svg'),
      url('../fontsUniSansHeavyCAPS.ttf.eot'),
      url('../fontsUniSansHeavyCAPS.ttf.eot?#iefix') format('embedded-opentype'); 
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--secondary-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: #2779ca;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "UniSansHeavyCAPS", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: white;
  line-height: 0;
}
/*
.back-to-top:hover {
  background: rgba(255, 255, 255, 0.7);
}

.back-to-top:hover i {
  color: var(--primary-color);
}*/

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #4285C6;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: white;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo img {
  max-height: 30px;
  width: 100% !important;
  height: 100% !important;
 }  

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  padding-right: 10px;
}
/*
.navbar-bg {
  background: white;

}*/

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #444444;
  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: #4285C6;
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #151515;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: white;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #151515;
  background-color: #4285C6;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/header_bg.png") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "UniSansHeavyCAPS", sans-serif;
}

#hero h1 span {
  color: #4285C6;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
  padding: 10px;
}

#hero a {
  padding: 20px 20px;
  transition: ease-in-out 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  height: 100%;
  text-align: center;
  background: #4285C6;
  border-color: #4285C6;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 700;
}

#hero a:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color:rgba(255, 255, 255, 0.7);
  color: #4285C6;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }

  #hero a {
    padding: 20px 20px;
    font-size: 16px;
    line-height: 20px;
  }
}

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

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h1 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h1::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 5px;
  background: #4285C6;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title h2 {
  font-size: 28px;
  font-weight: 500;
  padding: 10px 0;
  line-height: 1px;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #979494;
  font-family: "UniSansHeavyCAPS", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 3px;
  display: inline-block;
  background: #4285C6;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
  padding: 10px 0;
}

/*--------------------------------------------------------------
# About section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "UniSansHeavyCAPS", sans-serif;
}

.about .content p:last-child {
  margin-bottom: 0;
}
.about p a {
  color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Cta section
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta_bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  padding: 20px 0;
}

.cta .cta-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 15px;
  transition: 0.5s;
  margin-top: 10px;
  color: #fff;
  background: #4285C6;
  border-color: #4285C6;
}

.cta .cta-btn:hover {
  background: rgba(255, 255, 255, 0.7);
  color: #4285C6;
}

/*--------------------------------------------------------------
# Skills section
--------------------------------------------------------------*/
.skills {
  background: #ebebeb;
}

.skills .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
  width: 100% !important;
  height: 100% !important;
}

.skills .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}


/*--------------------------------------------------------------
# Services section
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  /* border: 1px solid #ebebeb; */
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;

}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .icon-box .icon i {
  color: #4285C6;
  font-size: 60px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: #4285C6;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# subvention
--------------------------------------------------------------*/
/* #subvention .video-responsive { overflow:hidden; padding-bottom:56.25%; position:relative; height:0;}

#subvention .video-responsive iframe { left:0; top:0; 
  height:100%; width:100%; 
  position:absolute;
} */

/* @media (min-width: 769px) {
  #subvention .video-responsive  {
    margin:auto;
    
  }
  #subvention .video-responsive iframe {
    height:50%; width:50%;
    
  }
} */

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  background: #ebebeb;
    margin-top: 70px;
}

.contact .info {
  width: 100%;
  background: #ebebeb;
  ;
}

.contact .info i {
  font-size: 20px;
  color: var(--primary-color);
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p, .contact .info address {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email a,
.contact .info .phone a {
  color: #484848;

}

.contact .info .email a:hover,
.contact .info .phone a:hover {
  color: var(--primary-color);

}

.contact form {
  width: 100%;
  background: #ebebeb;
}

.contact form .form-group {
  padding-bottom: 8px;
}

.contact form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact form .error-message br+br {
  margin-top: 25px;
}

.contact form input,
.contact form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact form input:focus,
.contact form textarea:focus {
  border-color: var(--primary-color);
}

.contact form input {
  height: 44px;
}

.contact form textarea {
  padding: 10px 12px;
}

.contact form button[type=submit] {
  background: var(--primary-color);
  border: 0;
  padding: 10px 24px;
  color: white;
  transition: 0.4s;
  border-radius: 4px;
  font-weight: 700 ;
  border-radius: 15px;
  margin-top: 10px;

}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 5px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-logo{
  width: 50% !important;
  height: auto!important;
}

#footer .footer-top .footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

#footer .footer-top .footer-info li 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-top .footer-info li p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

#footer .footer-top .footer-info li a {
  color: #fff;
}

#footer .footer-top .footer-info li a:hover {
  color: var(--primary-color);
}

#footer .footer-top .social-links a {
  font-size: 24px;
  display: inline-block;
  background: #292929;
  color: #fff;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
}


#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--primary-color);
}

#footer .copyright {
  text-align: center;
  padding: 5px;
}

#footer .copyright p {
  margin: 0;
  padding: 5px;
}

#footer .copyright a {
  color: #fff;
}

#footer .copyright a:hover {
  color: var(--primary-color);
}