@charset "UTF-8";
*, ::after, ::before {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  background: linear-gradient(rgba(11, 11, 11, 0), rgba(11, 11, 11, 0)), url("../image/header.jpg") no-repeat center center fixed;
  background-size: cover;
  height: 100%;
  margin: 0;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.background-overlay {
  background: black;
  opacity: 0.7;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

section {
  display: block;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 0;
  font-weight: 700;
  color: #222;
}

img {
  max-width: 100%;
}

p {
  font-size: 14px;
  color: #989898;
  line-height: 24px;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

/***************************************
*******      BEGIN: INTRO       ********
***************************************/
.intro-section::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section {
  height: 100%;
  position: relative;
}

.intro-content {
  width: 100%;
  height: 100%;
  display: table;
  position: relative;
  z-index: 1;
}

.intro-content .intro-inner {
  display: table-cell;
  vertical-align: middle;
}

.container {
  width: 100%;
  max-width: 1140px;
  padding-right: 15px;
  padding-left: 15px;
  margin-left: auto;
  margin-right: auto;
}

.intro-content h2 {
  color: #fff;
  font-weight: 300;
  font-size: 80px;
  margin-bottom: 10px;
}

.intro-content h2 span {
  font-weight: 800;
  color: #fff;
  background-image: url("../image/header-text-bg.jpg");
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-position: center center;
  background-size: cover;
  text-shadow: 2px 8px 6px rgba(0, 0, 0, 0.1);
}

.intro-content h3 {
  color: #919191;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 6px;
}

/***************************************
*******       END: INTRO        ********
*******    BEGIN: NAVIGATION    ********
***************************************/
.nav-toggle {
  position: fixed;
  display: block;
  width: 30px;
  height: 60px;
  right: 50px;
  top: 50px;
  z-index: 99;
  text-align: right;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  transition: all 0.3s ease-out 0s;
}

.nav-toggle span:nth-child(1), .nav-toggle span:nth-child(2), .nav-toggle span:nth-child(3) {
  width: 100%;
  height: 4px;
  background: #fff;
  margin-bottom: 5px;
  float: right;
}

.nav-toggle span:nth-child(3) {
  width: 70%;
}

.nav-toggle:hover span:nth-child(3) {
  width: 100%;
}

.nav-toggle.sticky span {
  background: #000;
}

.nav-section {
  overflow: hidden;
  position: fixed;
  width: 0;
  height: 100%;
  right: 0;
  top: 0;
  padding-top: 10%;
  background: #fff;
  z-index: 999;
  transition: all 0.5s cubic-bezier(0.55, 0.09, 0.68, 0.53) 0.4s;
}

.nav-section.active {
  width: 400px;
  box-shadow: 0 0 100px rgba(72, 72, 72, 0.15);
  transition: all 0.5s cubic-bezier(0.55, 0.09, 0.68, 0.53) 0s;
}

.nav-section.active .main-menu {
  top: 0;
  opacity: 1;
  transition: all 0.4s ease 0.5s;
}

.nav-section.active .social-links,
.nav-section.active .close-nav {
  opacity: 1;
  transition: all 0.4s ease 0.5s;
}

.close-nav {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid #999;
  color: #999;
  font-weight: 300;
  font-size: 22px;
  text-align: center;
  border-radius: 50px;
  padding-top: 4px;
  top: 20px;
  cursor: pointer;
  right: 20px;
  opacity: 0;
  z-index: 99999;
  transform: rotate(45deg);
  transform-origin: left center;
  transition: all 0.3s ease 0s;
}

.main-menu {
  position: relative;
  padding-left: 30px;
  padding-right: 50px;
  opacity: 0;
  top: 80px;
  transition: all 0.3s ease 0s;
}

.main-menu ul {
  height: 100%;
  overflow-y: auto;
  list-style: none;
}

.main-menu a {
  font-size: 35px;
  font-weight: 600;
  color: #444;
  display: block;
  margin-bottom: 5px;
  position: relative;
  transition: all 0.3s ease 0s;
}

.main-menu a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #444;
  opacity: 0;
  transition: all 0.3s ease 0s;
  z-index: -1;
}

.main-menu li.current a:after {
  opacity: 1;
  width: 35px;
}

.social-links {
  position: absolute;
  bottom: 50px;
  left: 100px;
  opacity: 0;
  transition: all 0.3s ease 0s;
}

.social-links a {
  font-size: 25px;
  color: #999;
  margin-right: 20px;
  transition: all 0.3s ease-out 0s;
}

.social-links a:hover {
  color: #222;
}

/***************************************
*******     END: NAVIGATION     ********
*******      BEGIN: ABOUT       ********
***************************************/
.about-text h1 {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #fff;
  margin-bottom: 40px;
}

.about-image {
  z-index: 3;
}

.about-text h3 {
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
  z-index: 3;
}

.about-text > p {
  margin-bottom: 30px;
  z-index: 3;
}

.about-text p span {
  color: #006bff;
}

/***************************************
*******       END: ABOUT        ********
*******      BEGIN: RÉSUMÉ      ********
***************************************/
.company > div:first-of-type > p:first-of-type {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 0.1rem;
  font-weight: bold;
}

/***************************************
*******       END: RÉSUMÉ       ********
*******      BEGIN: WORKS       ********
***************************************/
.product > div:first-of-type > p:first-of-type {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 0.1rem;
  font-weight: bold;
}

.product {
  margin-bottom: 1rem;
}

.alignRight {
  text-align: right;
}

/*# sourceMappingURL=../style.css.map */
