/*-------------------------------------
    Template Name: Dmat Landing Page
    Auteur: Mojocom
---------------------------------------*/
/*------------------------------------
	CSS Index
	============

	0. Common style
	1. Preloader CSS
	2. Header section style
	3. Slider section style
	4. Video section style
	5. About section style
	6. Job section style
	7. Portfolio section style
	8. Service section style
	9. Testimonial section style
	10. Contact section style
	11. Footer section style
	12. Blog page
	13. 404 page
	14. Modal
--------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,700');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  color: #777;
  background-color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

section {
  position: relative;
  display: block;
  width: 100%;
  padding: 133px 0 150px;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: #ffc815;
}

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

a:hover {
  color: #000;
}

/*************  Common style  ***************/
.pat-btn {
  padding: 9px 40px;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  color: #000;
  border: 1px solid #eee;
  border-radius: 50px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
}

.pat-btn:hover {
  color: #000;
  background: #ffc815;
}

.sec-title {
  display: block;
  margin-bottom: 45px;
}

.sec-title p {
  margin-bottom: 0;
  color: #ffc815;
  font-size: 16px;
  line-height: 45px;
}

.sec-title h2 {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 34px;
  color: #000;
  font-size: 60px;
  line-height: 45px;
}

.sec-title h2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  content: '';
  background: #ddd;
}

.sec-title h2::before {
  position: absolute;
  z-index: 1;
  bottom: -1px;
  left: 0;
  width: 30px;
  height: 4px;
  content: '';
  background: #ffc815;
}

.p-right-130 {
  padding-right: 130px;
}

.overlay-black {
  position: relative;
}

.overlay-black:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, .6);
}

.nopadd-right {
  padding-right: 0;
}

.nopadd-left {
  padding-left: 0;
}

/********** Preloader CSS **********/
#preloader {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #191820;
}

/*************  Header section style  ***************/
.header {
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.header.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}

.logo {
  display: block;
  float: left;
  width: 100%;
  max-width: 100px;
  padding: 20px;
}

.logo img {
  position: relative;
  left: -20px;
  width: auto;
  height: 60px;
  ;
}

.logo-white {
  -webkit-filter: brightness(0) invert(1);
  -o-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.header.sticky-header .logo-white {
  -webkit-filter: none;
  -o-filter: none;
  filter: none;
}

.menu-container {
  display: block;
  width: 100%;
}

.header:after {
  display: table;
  clear: both;
  content: '';
}

.mobile-menu {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-left: auto;
  padding: 20px 35px;
  cursor: pointer;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.mobile-menu:hover,
.mobile-menu.active {
  background: #ffc815;
}

.mobile-menu span {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 9px;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  background: #111;
}

.mobile-menu span:last-child {
  align-self: end;
  width: 75%;
}

.mobile-menu.active span:last-child {
  display: none;
}

.mobile-menu.active span:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.mobile-menu.active span:nth-child(2) {
  transform: rotate(-45deg);
}

.primary-menu {
  position: fixed;
  top: 0;
  right: 0;
  visibility: hidden;
  width: calc(100% - 100px);
  height: 100vh;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  text-align: center;
  opacity: 0;
  background: rgba(0, 0, 0, .95);
}

.primary-menu.slide-active {
  right: 100px;
  visibility: visible;
  opacity: 1;
}

.primary-menu ul {
  position: relative;
  top: 50%;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateY(-50%);
}

.primary-menu ul li {
  position: relative;
  display: block;
  opacity: 0;
}

.primary-menu li a {
  display: block;
  padding: 20px;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  text-decoration: none;
  color: #ffc815;
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 500;
}

.primary-menu li:hover a {
  color: #fff;
}

.primary-menu.slide-active ul li {
  animation: fadeInRight .5s ease forwards;
  animation-delay: .20s;
}

.primary-menu.slide-active ul li:nth-of-type(2) {
  animation-delay: .25;
}

.primary-menu.slide-active ul li:nth-of-type(3) {
  animation-delay: .30s;
}

.primary-menu.slide-active ul li:nth-of-type(4) {
  animation-delay: .45s;
}

.primary-menu.slide-active ul li:nth-of-type(5) {
  animation-delay: .50s;
}

.primary-menu.slide-active ul li:nth-of-type(6) {
  animation-delay: .55s;
}

.primary-menu.slide-active ul li:nth-of-type(7) {
  animation-delay: .60s;
}

@keyframes fadeInRight {
  0% {
    left: 20%;
    opacity: 0;
  }

  100% {
    left: 0;
    opacity: 1;
  }
}

.header.sticky-header .logo {
  padding: 20px 30px;
}

.header.sticky-header .section-nav li a {
  padding: 0 20px;
}

.header.sticky-header .mobile-menu {
  height: 100px;
}

/*************  Fixed left sidebar style  **************/
.fixedlft-sidebar {
  position: fixed;
  z-index: 2;
  top: 100px;
  left: 0;
  width: 5px;
  height: 100vh;
}

.fixedlft-sidebar::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 5px;
  height: 100vh;
  content: '';
  background: #ffc815;
}

.slide-img {
  position: absolute;
  top: 50%;
  right: 0;
  max-width: 375px;
  transform: translateY(-50%);
}

/*************  Section nav style  **************/
.section-nav {
  padding-left: 35px;
  text-align: left;
}

.home1-nav.section-nav {
  height: 100%;
  padding-left: 0;
  text-align: center;
}

.section-nav ul {
  display: flex;
  align-content: center;
  justify-content: center;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  ;
}

.section-nav li {
  display: flex;
  align-items: center;
}

.section-nav li a {
  display: flex;
  align-items: center;
  height: 100%;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  letter-spacing: 1px;
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: .8em;
  font-weight: 600;
}

.section-nav li a:hover {
  color: #ffc815;
}

/*************  Slider section style  ***************/
.main-container {
  position: relative;
  display: block;
  width: 100%;
  padding-right: 100px;
  padding-left: 0;
}

.body-padd.main-container {
  /*padding-left: 19.7%;*/
  padding-right: 100px;
}

.slider-sec {
  padding: 15% 0;
  background-color: #f9f9ff;
  background-image: url(images/slider/bg-1.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto;
}

.slider-content {
  position: relative;
  max-width: 575px;
}

.slider-content h1 {
  margin-bottom: 29px;
  color: #fff;
  font-size: 60px;
  line-height: 45px;
}

.slider-content h4 {
  margin-bottom: 40px;
  color: #ffc815;
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
}

.slider-content p {
  display: block;
  margin-bottom: 37px;
  color: #fff;
}

.slider-sec img {
  display: block;
  width: 100%;
  height: auto;
}

.tolltip {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  padding: 16px 18px;
  color: #fff;
  border-radius: 10px;
  background: #ffc815;
  font-size: 14px;
  line-height: 26px;
}

.tolltip::after {
  position: absolute;
  right: 0;
  bottom: -20px;
  content: '';
  border-top: 20px solid transparent;
  border-right: 20px solid #ffc815;
  border-bottom: 20px solid transparent;
  border-left: 20px solid transparent;
}

.static-bg .slider-content p {
  color: #222;
}

.slider-sec02 {
  background-image: url(images/slider/bg-2.jpg);
  background-position: center;
  background-size: cover;
}

.slider-sec02::before {
  z-index: 1;
}

.slider-sec .container {
  position: relative;
  z-index: 1;
}

.slider-sec02 .slider-content h2 {
  color: #fff;
}

/*.slider-sec02 .slider-content p {
	color: #999;
}*/
.slider-sec03 {
  background-image: url(images/slider/bg-3.jpg);
}

.slider-sec04 {
  background-image: url(images/slider/bg-4.jpg);
}

.slider-caro-sec {
  padding: 0;
}

.slider-item {
  width: 100%;
  padding: 16% 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.slider-caro {
  height: 100%;
}

.slider-item .slider-content {
  /*margin: 0 auto;*/
  position: relative;
  z-index: 1;
}

.slider-caro .slider-content h2 {
  color: #fff;
}

.slider-caro .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.slider-caro button:focus {
  outline: none;
}

.slider-caro .owl-nav i {
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  color: #ddd;
}

.slider-caro .owl-prev {
  position: relative;
  left: 50px;
  transform: rotate(-45deg);
}

.slider-caro .owl-next {
  position: relative;
  left: calc(100% - 185px);
  transform: rotate(45deg);
}

.slider-caro .owl-nav button:hover i {
  color: #fff;
}

/*************  Video section style  ***************/
.video-sec {
  padding: 16% 0;
  background-image: none;
}

.video-sec .slider-content h2 {
  color: #fff;
}

.video-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.video-container iframe {
  width: 100%;
  height: 100%;
}

/*************  About section style  ***************/
.about-sec {
  background: #fff;
}

.about-content {
  display: block;
  padding-right: 30px;
}

.about-content p:last-of-type {
  margin-bottom: 46px;
}

.single-fun {
  display: block;
  margin-bottom: 30px;
  padding: 30px 25px;
  text-align: center;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, .1);
}

.single-fun i {
  display: block;
  margin-bottom: 30px;
  color: #ffc815;
  font-size: 24px;
}

.single-fun span {
  display: block;
  margin-bottom: 6px;
  color: #010100;
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
}

.single-fun p {
  margin-bottom: 0;
}

.single-fun.mt-55 {
  margin-top: 55px;
}

/*************  Godet FTP  ***************/
.gfp-sec {
  padding-bottom: 135px;
  background: #ffc815;
}

.gfp-sec .sec-title h2::before {
  background: #000;
}

.gfp-sec .sec-title p {
  color: #fff;
}

.gfp-sec .sec-title h2::after {
  background: #fff;
}

.gfp-sec .sec-title {
  margin-bottom: 35px;
}

.gfp-sec .introduction {
  padding: 0 0 30px 0;
}

.gfp-sec .introduction p {
  color: #000;
}

.gfp-sec .video-gfp {
  display: flex;
  align-content: center;
  justify-content: center;
}

.gfp-sec .video-gfp .video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  color: #ffc815;
  border-radius: 100%;
  background: #000;
  font-size: 4em;
}
a:not([href]):not([tabindex]){
	color: black;
}
.gfp-sec .video-gfp .video-btn:hover {
  color: #ffc815;
  background-color: #fff;
}

.owl-dots {
  margin-top: 20px;
}

.owl-dot {
  display: inline-block;
}

.owl-dot span {
  display: block;
  width: 40px;
  height: 2px;
  margin: 0 3px;
  background: #ddd;
}

.owl-dot.active span {
  background: #ffc815;
}

/*************  Portfolio section style  ***************/
.portfolio-sec {
  padding-bottom: 120px;
  background: #fff;
}

.portfolio-fillter {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.portfolio-fillter li {
  display: inline-block;
  margin-right: 5px;
  padding: 6px 30px;
  cursor: pointer;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  text-decoration: none;
  text-transform: uppercase;
  color: #777;
  border-radius: 50px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
}

.portfolio-fillter li.active,
.portfolio-fillter li:hover {
  color: #000;
  background: #ffc815;
}

.single-pf {
  position: relative;
  margin-bottom: 30px;
}

.single-pf img {
  display: block;
  width: 100%;
  height: auto;
}

.single-matos>a {
  display: block;
  height: 220px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.pf-cont {
  position: absolute;
  bottom: 23px;
  left: 30px;
}

.pf-cont h3,
.pf-cont h3 a {
  margin: 0;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  text-decoration: none;
  color: #000;
  font-size: 21px;
  font-weight: 700;
}

.single-pf:hover h3 a,
.pf-cont h3 a:hover {
  color: #ffc815;
}

.pf-cont span {
  display: block;
  color: #777;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}

/*************  Service section style  ***************/
.service-sec {
  background: #f9f9ff;
}

.single-service {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 50px 32px;
  text-align: center;
  background: #fff;
}

.single-service i {
  display: block;
  margin-bottom: 23px;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  color: #ddd;
  font-size: 36px;
  line-height: 45px;
}

.single-service h3,
.single-service h3 a {
  display: block;
  text-decoration: none;
  color: #010100;
  font-size: 21px;
  line-height: 45px;
}

.single-service p {
  margin-bottom: 27px;
}

.single-service:hover i,
.single-service.hovered i {
  color: #ffc815;
}

.single-service .pat-btn {
  margin-top: auto;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  background: #f9f9ff;
}

.single-service:hover a.pat-btn,
.single-service.hovered a.pat-btn {
  background: #ffc815;
}

/*************  Testimonial section style  ***************/
.testimonial-sec {
  background: #fff;
}

.tm-item {
  position: relative;
}

.tm-carousel {
  margin-bottom: 80px;
}

.tm-carousel .owl-dot.active span {
  background: #ffc815;
}

@media (min-width: 768px) {
  .tm-item .col-md-2 {
    -ms-flex: 0 0 19%;
    flex: 0 0 19%;
    max-width: 19%;
  }
}

.tm-item figure {
  margin-bottom: 0;
}

.tm-item figure img {
  display: block;
  width: 100%;
  height: auto;
}

.tm-item p {
  color: #777;
  font-size: 18px;
  line-height: 30px;
}

.tm-item h5 {
  margin-bottom: 0;
  color: #222;
  font-size: 21px;
  line-height: 30px;
}

.tm-item span {
  color: #777;
}

.partners {
  position: relative;
  display: block;
  padding: 45px 50px;
}

.partners ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partners li {
  display: inline-block;
}

.partners li a {
  display: block;
}

.partners li a img {
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.partners li a:hover img,
.partners li a.hovered img {
  -o-filter: grayscale(100%) brightness(90%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(.7);
  -webkit-filter: grayscale(100%) brightness(90%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(.7);
  filter: grayscale(100%) brightness(90%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(.7);
}

/*************  Contact section style  ***************/
.contact-sec {
  background: #f9f9ff;
}

.contact-info {
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding: 24px 28px 24px 65px;
  background: #fff;
}

.contact-info i {
  position: absolute;
  top: 24px;
  left: 25px;
  display: block;
  color: #ffc815;
  font-size: 21px;
}

.contact-info p {
  display: block;
  margin-bottom: 5px;
  color: #010100;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.contact-info a {
  display: block;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  text-decoration: none;
  color: #777;
  font-size: 16px;
  line-height: 26px;
}

.contact-info a:hover {
  color: #ffc815;
}

.contact-form {
  position: relative;
  display: block;
  width: 100%;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin: 0 0 11px;
  color: #000;
  font-size: 16px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 20px;
  border: none;
  box-shadow: 0 2px 3px 0 #eee;
}
.form-field textarea{
	min-height: 150px;
}
.contact-form .pat-btn {
  margin-top: 5px;
  margin-left: 15px;
}

/*************  Footer section style  ***************/
.footer {
  position: relative;
  padding: 40px 0;
  background: #222;
}

.copyright {
  margin-bottom: 0;
  text-align: center;
  color: #777;
  font-size: 16px;
  line-height: 24px;
}

.copyright a {
  display: inline-block;
  text-decoration: none;
  color: #ffc815;
}

.fixed-leftbar {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: 100px;
  height: 100vh;
  padding-bottom: 30px;
  background: #fff;
}

.share-icons {
  padding: 0 30px;
}

.share-icons a {
  display: block;
  padding: 13px 0;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  text-align: center;
  color: #777;
  border-bottom: 1px solid #eee;
  font-size: 12px;
}

.share-icons a:hover {
  color: #ffc815;
}

.share-icons a:last-child {
  border-bottom: none;
}

.share-icons {
  padding: 0 30px;
}

.scrollbar-wrap {
  text-align: center;
}

.scrolled-sec-title {
  display: block;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #222;
  font-size: 13px;
  font-weight: 700;
}

.scrollbar-holder {
  position: relative;
  display: block;
  width: 2px;
  height: 250px;
  margin: 0 auto 40px;
  border-radius: 5px;
  background: #eee;
}

.scrollbar {
  position: relative;
  left: -1px;
  width: 4px;
  height: 30px;
  background: #ffc815;
}

/********** Blog page **********/
.blog-sec {
  background: #f3f3ff;
}

.blog-item {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
  background: #fff;
}

.blog-item figure {
  -webkit-flex-basis: 200px;
  flex-basis: 200px;
  margin: 0;
}

.blog-cont h3,
.blog-cont h3 a {
  margin: 0 0 10px;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  text-decoration: none;
  color: #010012;
  font-size: 21px;
  line-height: 42px;
}

.blog-cont h3 a:hover {
  color: #ffc815;
}

.blog-meta a {
  display: inline-block;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  text-decoration: none;
  color: #777;
  font-size: 12px;
}

.blog-meta a:first-child {
  margin-right: 30px;
}

.blog-meta a:hover {
  color: #ffc815;
}

.blog-cont {
  -webkit-flex-basis: calc(100% - 200px);
  flex-basis: calc(100% - 200px);
  padding: 20px 30px;
}

.widget {
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
}

.widget.widget_search {
  position: relative;
}

.widget_search form {
  position: relative;
}

.widget_search input {
  width: 100%;
  padding: 5px 20px;
  border: 1px solid #eee;
  background: #f9f9ff;
}

.widget_search button {
  position: absolute;
  right: 0;
  padding: 6px 12px;
  cursor: pointer;
  border: navajowhite;
  background: #ffc815;
  font-size: 13px;
}

.widget_title {
  position: relative;
  margin: 0 0 10px;
  padding: 0 0 8px;
  color: #010012;
  font-size: 18px;
  line-height: 32px;
}

.widget_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 1px;
  content: '';
  background: #ddd;
}

.widget_title:before {
  position: absolute;
  z-index: 1;
  bottom: -1px;
  left: 0;
  width: 30px;
  height: 3px;
  content: '';
  background: #ffc815;
}

.user-profile img {
  margin-bottom: 15px;
}

.user-social a {
  display: inline-block;
  margin-right: 15px;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
}

.user-social a:hover {
  color: #111;
}

.widget.widget_recent_entries a {
  position: relative;
  display: block;
  padding-left: 70px;
}

.widget.widget_recent_entries a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: auto;
}

.widget.widget_recent_entries ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget_recent_entries li {
  display: block;
  margin: 15px 0;
  padding-bottom: 7px;
  border-bottom: 1px solid #ddd;
}

.widget_recent_entries li p {
  margin: 0;
  color: #010012;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.widget_recent_entries li span {
  color: #777;
  font-size: 12px;
}

.widget.widget_categories ul {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.widget.widget_categories li {
  display: block;
}

.widget.widget_categories a {
  display: block;
  margin: 0 0 10px;
  padding: 7px 20px;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  color: #777;
  background: #f9f9ff;
}

.widget.widget_categories a:hover {
  color: #000;
}

.single-blog figure {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  margin: 0;
}

.single-blog .blog-cont {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  padding: 20px 30px;
}

.single-blog .blog-meta {
  margin-bottom: 10px;
}

.single-blog .blog-meta a {
  font-size: 14px;
}

.single-blog blockquote {
  color: #010000;
  font-style: italic;
}

.nextPrev-post {
  display: block;
  width: 100%;
  margin-bottom: 40px;
}

.nextPrev-post a {
  display: inline-block;
  margin: 0 25px;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  color: #777;
  font-size: 14px;
}

.nextPrev-post a i {
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  border: 2px solid transparent;
  border-radius: 3px;
}

.nextPrev-post a:hover {
  color: #111;
}

.nextPrev-post a:hover i {
  padding: 10px;
  color: #111;
  border-color: #111;
}

.cmnt-wrap {
  padding: 30px;
  background: #fff;
}

.comment-title {
  position: relative;
  margin-bottom: 33px;
  color: #323232;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

.comments ul {
  list-style: none;
}

.comments ul li {
  position: relative;
  margin-bottom: 34px;
}

.comments ul ul {
  margin: 25px 0 25px 80px;
}

.comments ul ul li {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.user-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
}

.comments li h4 {
  margin-bottom: 0;
  color: #323232;
  font-size: 14px;
  font-weight: 700;
}

.comments li span {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

.comments li p {
  margin-bottom: 0;
}

.comment-head {
  position: relative;
  min-height: 60px;
  margin-bottom: 15px;
  padding-left: 80px;
}

.reply {
  color: #000;
  font-size: 13px;
  font-weight: 500;
  line-height: 28px;
}

.comment-form form {
  position: relative;
  display: block;
  width: 100%;
}

.input-field {
  display: block;
  float: left;
  width: 48%;
  margin-bottom: 30px;
}

.input-field.textarea {
  width: 100%;
  margin-right: 0;
}

.input-field:nth-child(2n+1) {
  margin-right: 4%;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 7px 20px;
  border: 1px solid #bdbdbd;
  background: transparent;
  box-shadow: none;
}

.comment-form input {
  height: 50px;
}

.comment-form textarea {
  height: 138px;
}

.pf-details-sec {
  position: relative;
  background: #f3f3ff;
}

.portf-img {
  max-width: 450px;
}

.portf-info {
  margin-top: 30px;
  padding: 15px 0 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.portf-info h3 {
  color: #010100;
  font-size: 21px;
  line-height: 45px;
}

.portf-info a {
  display: block;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  color: #777;
  line-height: 30px;
}

.portf-info a:hover {
  color: #000;
}

.portf-info a i {
  margin-right: 12px;
  color: #ffc815;
}

/********** 404 page **********/
.error-sec {
  padding: 19% 0;
  background: #f9f9ff;
}

.error-wrap {
  width: 100%;
  max-width: 525px;
}

.error-wrap h2 {
  margin: 0 0 26px;
  color: #000;
  font-size: 100px;
}

.error-wrap h4 {
  margin: 0 0 10px;
  color: #000;
  font-size: 36px;
  line-height: 42px;
}

.error-wrap p {
  margin-bottom: 47px;
}

/********** Modal **********/
.modal-dialog {
  top: 50%;
  max-width: 80vw;
  margin: 30px auto;
  transform: translateY(-50%) !important;
}

.modal-body {
  position: relative;
  padding: 0;
}

.close {
  position: absolute;
  z-index: 999;
  top: 0;
  right: -30px;
  opacity: 1;
  color: #fff;
  font-size: 2rem;
  font-weight: normal;
}

/********** Video **********/
.video-banner {
  height: calc(100vh);
  padding: 0;
}

#videoback {
  position: relative;
  background: transparent;
}

.ytplayer-container {
  position: absolute;
  z-index: -1;
  top: 0;
}

#videoback::before {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, .72);
}

.video-banner .video-text {
  position: absolute;
  z-index: 3;
  bottom: 50px;
  left: 50px;
  width: fit-content;
}

/********** Fleche **********/
.arrow-left,
.arrow-right {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  content: '';
  cursor: pointer;
}

.arrow-left {
  left: 14px;
  transform: rotate(-45deg) translate(0, 50%);
}

.arrow-right {
  right: 14px;
  transform: rotate(135deg) translate(50%, 0);
}

.arrow-left::before,
.arrow-right::before,
.arrow-left::after,
.arrow-right::after {
  position: absolute;
  width: 32px;
  height: 5px;
  content: '';
  background: yellow;
}

.arrow-left::before,
.arrow-right::before {
  top: 0;
  left: 0;
}

.arrow-left::after,
.arrow-right::after {
  top: 14px;
  left: -14px;
  transform: rotate(90deg) translate(0%, 0%);
}

/********** Loader **********/
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loader p {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  color: #ffc815;
  font-family: sans;
  font-size: 40px;
}

.loader span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transform: translate(-50%, -50%);
  animation: loader-spin linear infinite;
  animation-delay: -10s;
  border: 3px solid transparent;
  border-radius: 50%;
}

.loader span:nth-child(1) {
  width: 110px;
  height: 110px;
  animation-duration: 2s;
  border-right-color: #ffc815;
  border-bottom-color: #ffc815;
}

.loader span:nth-child(2) {
  width: 120px;
  height: 120px;
  animation-duration: 3.5s;
  border-right-color: white;
  border-bottom-color: white;
}

.loader span:nth-child(3) {
  width: 130px;
  height: 130px;
  animation-duration: 5s;
  border-right-color: #ffc815;
  border-bottom-color: #ffc815;
}

.loader span:nth-child(4) {
  width: 140px;
  height: 140px;
  animation-duration: 6.5s;
  border-right-color: white;
  border-bottom-color: white;
}

.loader span:nth-child(5) {
  width: 150px;
  height: 150px;
  animation-duration: 8s;
  border-right-color: #ffc815;
  border-bottom-color: #ffc815;
}

.loader span:nth-child(6) {
  width: 160px;
  height: 160px;
  animation-duration: 9.5s;
  border-right-color: white;
  border-bottom-color: white;
}

@-moz-keyframes loader-spin {
  0% {
    transform: translate(-50%, -50%) rotateZ(45deg);
  }

  100% {
    transform: translate(-50%, -50%) rotateZ(405deg);
  }
}

@-webkit-keyframes loader-spin {
  0% {
    transform: translate(-50%, -50%) rotateZ(45deg);
  }

  100% {
    transform: translate(-50%, -50%) rotateZ(405deg);
  }
}

@-o-keyframes loader-spin {
  0% {
    transform: translate(-50%, -50%) rotateZ(45deg);
  }

  100% {
    transform: translate(-50%, -50%) rotateZ(405deg);
  }
}

@keyframes loader-spin {
  0% {
    transform: translate(-50%, -50%) rotateZ(45deg);
  }

  100% {
    transform: translate(-50%, -50%) rotateZ(405deg);
  }
}

.materiels .single-pf {
  position: relative;
}

.materiels .vendu .single-pf img {
  opacity: 0.4;
}

.materiels .pf-cont {
  position: relative;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: #ffc815;
}

.materiels .single-pf:hover h3 a {
  color: white;
}

.materiels .pf-cont span {
  transition: 300ms;
  color: white;
  font-size: 12px;
  line-height: 12px;
}

.materiels .single-pf:hover .pf-cont span.vendu-title-archive {
  color: white !important;
  border: 1px solid white;
}

.materiels .portfolio-wrap {
  margin: 0;
}

.materiel-specifiation {
  margin-top: 50px;
  margin-bottom: 50px;
}

.materiel-specifiation i {
  text-align: center;
  color: #ffc815;
}

.materiel-specifiation strong {
  padding-left: 15px;
  color: black;
}

.materiels .thumb {
  height: 200px;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.btn-retour,
.btn-matos {
  display: inline-block;
  margin-right: 5px;
  padding: 6px 30px;
  cursor: pointer;
  transition: 300ms;
  color: #000;
  border-radius: 50px;
  background: #ffc815;
  font-size: 13px;
  font-weight: 500;
}

.btn-matos {
  color: #000;
  background: #fff;
}

.btn-retour:hover {
  background: #fff;
}

.btn-matos:hover {
  color: #fff;
  background: #000;
}

h3 {
  margin-bottom: 20px;
  color: black;
}

.vendu-title {
  position: absolute;
  top: 0;
  /* transform: rotate(20deg); */
  right: 0;
  padding: 0 10px;
  text-transform: uppercase;
  color: black;
  border: 2px solid black;
  font-size: 30px;
}

.vendu-title-archive {
  position: relative;
  top: -3px;
  display: inline-block !important;
  width: fit-content;
  padding: 5px;
  text-transform: uppercase;
  color: black !important;
  border: 1px solid black;
  font-weight: 100;
  line-height: 12px !important;
}

.single-materiel .portf-img {
  margin: 0 0 0 auto;
}

@media screen and (max-width: 991px) {
  .single-materiel {
    padding-top: 130px;
  }

  .vendu-title {
    position: relative;
    width: fit-content;
  }
}
