@charset "UTF-8";
/*!
 * Masonic | Construction HTML Template
 * Version: 1.0.0
 * Created: 23 Jan 2020
 * Last Update: 23 Jan 2020
 * Author: Web_Trendy
 * Copyright 2019 © Web_Trendy (https://codecanyon.net/user/web_trendy/portfolio)
 * Licensed under Envato (https://codecanyon.net/licenses/standard)
 *
 * "Life is balance of holding on and letting go." --Rumi
 *
 */
/*------------------------------------------------------------------
[Table of contents]

1.0 Variables
2.0 Google Fonts
3.0 Set Font-families
4.0 Custom Cursor Styles
5.0 General Styles
6.0 Home Page
7.0 About Page
8.0 Services Page
9.0 Works Page
10.0 Contact Page
11.0 Media Queries

-------------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Variables
--------------------------------------------------------------*/
/*$primary-color: #FF3663;*/
/*$secondary-color: #ee1e26;*/
/*--------------------------------------------------------------
2.0 Google Fonts
--------------------------------------------------------------*/
/*To change the fonts, get the font link from (https://www.google.com/fonts) and replace with this line, then update the font-family section below.*/
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap");
/*--------------------------------------------------------------
3.0 Set Font-families
--------------------------------------------------------------*/
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300; }

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Roboto', sans-serif; }

/*--------------------------------------------------------------
4.0 Custom Cursor Styles

.custom-cursor {
  cursor: none;
  --top: 0;
  --left: 0;
  --cursor-width: 30px;
  --color: #000000;
  --blending-mode: normal; }
  .custom-cursor .cursor > div {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .custom-cursor .cursor div, .custom-cursor .cursor img, .custom-cursor .cursor svg {
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    mix-blend-mode: var(--blending-mode); }


.cursor-1 .cursor .cursor-el1 {
  width: var(--cursor-width);
  height: var(--cursor-width);
  border: calc(var(--cursor-width)/25) solid var(--color);
  border-radius: 50%;
  top: calc(var(--cursor-width)/-2);
  left: calc(var(--cursor-width)/-2);
  -webkit-transition: all 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: all 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28); }
.cursor-1 .cursor .cursor-el2 {
  width: calc(var(--cursor-width)/5);
  height: calc(var(--cursor-width)/5);
  border-radius: 50%;
  background-color: var(--color);
  top: calc(var(--cursor-width)/-10);
  left: calc(var(--cursor-width)/-10); }
.cursor-1.onlink .cursor .cursor-el1 {
  opacity: 0; }
.cursor-1.onlink .cursor .cursor-el2 {
  opacity: 0; }
  
--------------------------------------------------------------*/

/*--------------------------------------------------------------
5.0 General Styles
--------------------------------------------------------------*/
/*Menu*/
.menu-header {
  z-index: 999;
  font-weight: 400; }
  .menu-header a:not(.navbar-brand) {
    color: #666666;
    position: relative; }
    .menu-header a:not(.navbar-brand):before {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 8px;
      width: 0;
      height: 3px;
      background-color: #ee1e26;
      -webkit-transition: all 200ms ease-out;
      transition: all 200ms ease-out; }
    .menu-header a:not(.navbar-brand):hover, .menu-header a:not(.navbar-brand):focus {
      color: black; }
      .menu-header a:not(.navbar-brand):hover:before, .menu-header a:not(.navbar-brand):focus:before {
        width: 20px; }
  .menu-header li.active a {
    color: black; }
    .menu-header li.active a:before {
      width: 20px; }
	  .menu-header li.active a.dropdown-item:before, .menu-header li:hover a.dropdown-item:before {
      width: 0px!important; }
	  .menu-header li a:focus {
      background-color:#ffffff!important; }
  .menu-header a.navbar-brand {
    color: #666666; }
    .menu-header a.navbar-brand:hover, .menu-header a.navbar-brand:focus {
      color: black; }
  .menu-header .btn:hover {
    cursor: pointer; }
  .menu-header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px; }
  .menu-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.primary-color {
  color: #ee1e26; }

.primary-bg {
  background-color: #ee1e26; }

main, footer {
  background-color: white; }

.image-tag {
  position: absolute;
  bottom: 5px;
  left: 5px;
  mix-blend-mode: hard-light;
  background-color: #ee1e26;
  color: white;
  padding: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.arrow-right {
  display: inline-block;
  position: relative; }
  .arrow-right span {
    display: inline-block;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    opacity: 0;
    font-size: 75%;
    text-transform: uppercase;
    font-weight: 500;
    color: #4d4d4d; }
  .arrow-right:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background-color: #4d4d4d;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out; }
  .arrow-right:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border-top: 5px solid transparent;
    border-left: 5px solid #4d4d4d;
    border-bottom: 5px solid transparent;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out; }
  .arrow-right:hover:after, .arrow-right:focus:after {
    width: 25px; }
  .arrow-right:hover:before, .arrow-right:focus:before {
    left: 25px; }
  .arrow-right:hover span, .arrow-right:focus span {
    -webkit-transform: translateY(70%);
            transform: translateY(70%);
    opacity: 1; }

.line-before {
  display: block;
  position: relative;
  padding-left: 30px; }
  .line-before:before {
    content: '';
    width: 20px;
    height: 1px;
    background-color: #4d4d4d;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }

footer a {
  color: #666666; }
  footer a:hover, footer a:focus {
    text-decoration: none;
    color: #ee1e26; }
footer ul {
  margin-bottom: 0; }
footer p, footer address, footer a {
  font-size: 0.9em; }

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #ee1e26; }
  .form-control:focus + .input-group-append button {
    border-bottom: 1px solid #ee1e26; }

.page-header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .page-header .container:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 40vh;
    height: 55vh;
    border: 7px solid white; }
  .page-header .container .red-label {
    background-color: #ee1e26;
    color: white;
    padding: 5px 10px;
    display: inline-block; }

.cta {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  background-attachment: fixed;
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: white; }
  .cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ee1e26;
    mix-blend-mode: multiply; }

.overflow-x-hidden {
  overflow-x: hidden; }

.pagination .page-item.active .page-link {
  background-color: #ee1e26;
  border-color: #ee1e26; }
.pagination .page-link {
  color: #ee1e26; }
.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
  border-radius: 0; }

.client-logo {
  opacity: 0.7; }
  .client-logo:hover, .client-logo:focus {
    opacity: 1; }

/*--------------------------------------------------------------
6.0 Home Page
--------------------------------------------------------------*/
.slide-data {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%; }
  .slide-data .container:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 40vh;
    height: 55vh;
    border: 7px solid white; }
  .slide-data .subtitle span {
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms;
    display: inline-block;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  .slide-data .title-1 div {
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  .slide-data .title-2 {
    position: relative;
    display: inline-block; }
    .slide-data .title-2 div {
      -webkit-transition: all 600ms ease;
      transition: all 600ms ease;
      -webkit-transition-delay: 600ms;
              transition-delay: 600ms;
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
      color: white;
      display: inline-block;
      padding: 0 10px; }
    .slide-data .title-2:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background-color: #ee1e26;
      -webkit-transition: all 600ms ease;
      transition: all 600ms ease; }

.owl-item img {
  -webkit-transition: all 1500ms ease-out;
  transition: all 1500ms ease-out;
  -webkit-transform: scale(1.2);
          transform: scale(1.2); }

.owl-item.active {
  z-index: 999; }
  .owl-item.active img {
    -webkit-transform: scale(1);
            transform: scale(1); }
  .owl-item.active .slide-data .subtitle span {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  .owl-item.active .slide-data .title-1 div {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  .owl-item.active .slide-data .title-2 div {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  .owl-item.active .slide-data .title-2:before {
    width: 100%; }

.carousel-navigation {
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 9999;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 500;
  font-size: 12px;
  text-align: right; }
  .carousel-navigation > div {
    margin: 10px 0px; }
  .carousel-navigation .line {
    width: 0px;
    height: 1px;
    background-color: #ee1e26;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease; }
    .carousel-navigation .line.active {
      width: 25px; }
      .carousel-navigation .line.active + .slide-nav {
        color: #ee1e26; }

/*About Section*/
section.about .signature {
  width: 190px; }

/*Projects Section*/
.projects .overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease; }
.projects .image-wrapper {
  overflow: hidden; }
  .projects .image-wrapper:hover .overlay-image, .projects .image-wrapper:focus .overlay-image {
    opacity: 0; }
  .projects .image-wrapper:hover .image-title:before, .projects .image-wrapper:focus .image-title:before {
    width: 100%;
    -webkit-transition-delay: 0;
            transition-delay: 0; }
  .projects .image-wrapper:hover .image-title span, .projects .image-wrapper:focus .image-title span {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-delay: 600ms;
            transition-delay: 600ms; }
.projects .image-title {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: white;
  padding: 5px 10px;
  overflow: hidden; }
  .projects .image-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    background-color: #ee1e26;
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms; }
  .projects .image-title span {
    display: inline-block;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }

/*Testimonial Section*/
section.testimonial {
  background-image: url("../img/home/testimonial-1440x500.jpg");
  background-size: 100%;
  background-repeat: no-repeat; }
  section.testimonial .quote-wrapper {
    background-color: white;
    padding: 30px; }

/*Blog Section*/
section.blog .meta span {
  display: inline-block;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease; }
  section.blog .meta span:last-of-type {
    color: #ee1e26;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    position: absolute;
    top: 0;
    left: 0; }
section.blog .blog-wrapper:hover .meta span:first-of-type, section.blog .blog-wrapper:focus .meta span:first-of-type {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%); }
section.blog .blog-wrapper:hover .meta span:last-of-type, section.blog .blog-wrapper:focus .meta span:last-of-type {
  -webkit-transform: translateY(0);
          transform: translateY(0); }

/*Contact Section*/
section.contact {
	background-color:#f3f3f3;}
  section.contact a.call {
    color: #ee1e26; }
    section.contact a.call:hover, section.contact a.call:focus {
      text-decoration: none; }

/*--------------------------------------------------------------
7.0 About Page
--------------------------------------------------------------*/
.page-about .page-header {
  background-image: url("../img/about/header-1400x650.jpg"); }
.page-about .cta {
  background-image: url("../img/about/cta-1440x850.jpg"); }
.page-about .team .social-media a {
  text-decoration: none; }

/*--------------------------------------------------------------
8.0 Services Page
--------------------------------------------------------------*/
.page-services .page-header {
  background-image: url("../img/services/header-1400x650.jpg"); }
.page-services .cta {
  background-image: url("../img/services/cta-1440x850.jpg"); }
.page-services .packages .package {
  padding: 40px 30px;
  background-color: #f2f2f2; }

/*--------------------------------------------------------------
9.0 Works Page
--------------------------------------------------------------*/
.page-works .page-header {
  background-image: url("../img/projects/header-1400x650.jpg"); }
.page-works .cta {
  background-image: url("../img/projects/cta-1440x850.jpg"); }

/*--------------------------------------------------------------
10.0 Contact Page
--------------------------------------------------------------*/
.page-contact .page-header {
  background-image: url("../img/contact/header-1400x650.jpg"); }
.page-contact .cta {
  background-image: url("../img/contact/cta-1440x850.jpg"); }

/*--------------------------------------------------------------
11.0 Media Queries
--------------------------------------------------------------*/
@media only screen and (max-width: 991px) {
  .cursor {
    display: none; }

  .menu-header {
    background-color: #ffffff;
 }
    .menu-header > .container {
      padding: 0; }
    .menu-header a:not(.navbar-brand):before {
      left: 0 !important; }
    .menu-header a:not(.navbar-brand):hover, .menu-header a:not(.navbar-brand):focus {
      color: white !important; }
    .menu-header li.active a {
      color: white !important; }
    .menu-header .form-control {
      padding-left: 0; }

  nav.navbar {
    background-color: #ffffff; }

  section.home {
    padding-top: 58px; }
    section.home .owl-item img {
      min-height: 100vh;
      -o-object-fit: cover;
         object-fit: cover; }
    section.home .owl-item .display-4 {
      font-size: 2.5rem !important; }

  section.testimonial, section.contact {
    background-size: cover; }

  main {
    overflow: hidden !important; } }


/*--------------------------------------------------------------
OCTANTIS
--------------------------------------------------------------*/

.navbar-brand {
    margin-right: 5rem!important;
}
.navbar-brand img {
    max-width:150px!important;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.5rem!important;
    padding-left: 0.5rem!important;
}
.vh-slide {
    height: 80vh !important;
}
.logo-footer img {
    max-width:170px!important;
}
.logo-footer {
	margin-top:25px!important;
}
form .col-md-6 {
    float:left;
	padding-left:0px!important;
}
form .octantis-ns {
    display:none;
}
footer p, footer address, footer a {
    font-size: 14px!important;
}
footer .form-control {
    font-size: 13px!important;
}
footer .form-control {
    font-family: 'Roboto', sans-serif;
	padding:0px 5px!important;
	height:auto!important;
	border-bottom:1px solid #999!important;
}
.form-control {
	border-bottom:1px solid #999!important;
}
footer {
    color:#666666;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #999!important;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #999!important;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #999!important;
}
:-moz-placeholder { /* Firefox 18- */
  color: #999!important;
}
.ri-center.ri-map-pin-2-line {
    vertical-align: top!important;
}
.marge-accueil {
    margin-top:-3px!important;
}
.btn-danger {
    color: #fff;
    background-color: #ee1e26!important;
    border-color: #ee1e26!important;
}
.btn-danger:hover {
    color: #fff;
    background-color: #c82333!important;
    border-color: #bd2130!important;
}
footer .btn-danger {
    color: #fff;
    background-color: #999999!important;
    border-color: #999999!important;
}
footer .btn-danger:hover {
    color: #fff;
    background-color: #666666!important;
    border-color: #666666!important;
}
.text-danger {
    color: #dc3545 !important;
    font-size: 12px!important;
}
.form-group-textarea{
    padding-right:15px!important;
}
.footer-adresse{
   margin-bottom:6px!important;
}
.footer-acces li{
   margin-bottom:5px!important;
}
footer .small a, footer .small{
   font-size:13px!important;
   color:#666!important;
}
.alert-success{
   font-size:14px!important;
}
.navbar, .border-bottom{
   border-bottom:1px solid #cccccc!important;
}
.page-index .navbar, .page-contact .navbar {
   border-bottom:0px solid #cccccc!important;
}
.how ul {
    list-style-type: square;
	padding-inline-start: 20px;
}
.liste{
    margin-top:-55px!important;
}
.icone1 {
    width: 80%!important;
    height: auto!important;
    margin: 25px 0 45px!important;
}
.liste .mnega {
    margin-top:-85px!important;
}
.fond-gris {
    background-color:#f3f3f3!important;
	padding:25px 30px!important;
	border-left:2px solid #ee1e26;
}
section.contact .ri-lg {
    font-size: 25px!important;
    margin-top: -5px!important;
    display: inline-block;
}
section.contact a.call {
    color: #ee1e26!important;
    font-size: 25px!important;
}
hr {
	border:1px solid #ee1e26;
	width:50px!important;
	margin-top:-25px;
	margin-bottom:25px;
} 
.hr {
    /* centre verticalement les enfants entre eux */
    align-items: center;

    /* active flexbox */
    display: flex;

    /* garde le texte centré s'il passe sur plusieurs lignes ou si flexbox n'est pas supporté */
    text-align: center;
}

.hr::before,
.hr::after {
    /* la couleur est volontairement absente ; ainsi elle sera celle du texte */
    border-top: 1px solid #cccccc;

    /* nécessaire pour afficher les pseudo-éléments */
    content: "";

    /* partage le reste de la largeur disponible */
    flex: 1;

    /* espace les traits du texte */
    margin: 0 .5em;
}
section.projects.img-effets a img {
	opacity:1!important;
	  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
section.projects.img-effets a img:hover {
	opacity:0.8!important;
	  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.liste-icone .display-6 {
	font-size:1.35em!important;
	color:#212529!important;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    background-color: rgba(0,0,0,0.3)!important;
    color: #fff!important;
    font-size: 35px!important;
    font-weight: bold!important;
	position:absolute!important;
	top:50%!important;
	border: 0px solid #fff!important;
	width:40px!important;
	border-radius:0!important;
}
.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: rgba(0,0,0,0.5)!important;
}
.owl-carousel .owl-nav:focus, .owl-carousel .owl-nav:focus, .owl-carousel .owl-nav button, .owl-carousel .owl-nav:active {
	border-radius:0!important;
}
.owl-carousel .owl-nav button.owl-next{
    right:0!important;
}
.owl-carousel .owl-nav button.owl-prev {
    left:0!important;
}
img.icone {
   width:100%;
   height:auto;
}
img.icone:hover {
}
.slide-data a .title-1 {
color: #212529!important;
text-decoration:none!important;
}
.slide-data a {
text-decoration:none!important;
}
.slide-data .title-2.slide1 {
    margin: 450px auto 0!important;
}
.petit-texte {
   font-size:12px!important;
}
.small br {
   display:none!important;
}
.page-404 strong{
   font-size:85px!important;
   font-weight:bold!important;
}
.telephone{
   color:#ee1e26!important;
}

@media (min-width: 300px) and (max-width: 767px) {
section.home {
    padding-top: 0px;
}
.menu-header li.active a {
    color: #ee1e26 !important;
}
.menu-header a:not(.navbar-brand):before {
    display:none;
}
body {
    font-size: 18px;
}
.menu-header a:not(.navbar-brand):hover, .menu-header a:not(.navbar-brand):focus {
    color: #ee1e26 !important;
}
.dropdown-menu {
    border: 0px solid rgba(0, 0, 0, 0.15);
	font-size:16px!important;
}
.menu-header li.active a.dropdown-item {
    color: #666666 !important;
}
.display-5 {
    font-size: 30px;
}
.text-left, .text-right {
    text-align:center!important;
}
.liste-icone .text-left {
    text-align:left!important;
}
.btn {
    font-size: 16px;
}
.form-control {
    font-size: 16px!important;
}
.text-danger {
    font-size: 16px!important;
}
footer p, footer address, footer a {
    font-size: 16px!important;
}
.pb-5, .py-5 {
    padding-bottom: 2rem !important;
}
.pt-5, .py-5 {
    padding-top: 2rem !important;
}
footer .form-control {
    font-size: 16px!important;
}
footer .small a, footer .small {
    font-size: 16px!important;
}
.small br {
   display:block!important;
}
h1.mb-5{
   margin-bottom:1em!important;
}
.page-works .projects .col-sm-4{
   margin-bottom:15px!important;
}
.page-works .projects .mt-3{
   margin-top:0px!important;
}
.vh-slide {
    height: 18em!important;
}
.vh-slide .col-sm-8 {
    margin-top:-3em!important;
}
.slide-data .container:before {
    height: 30vh;
}
section.home .owl-item img {
    min-height: 15em;
}
.slide-data .container:before {
    display:none;
}
.img-mobile{
    display:none!important;
}
section.home .owl-item .fond-mobile .slide-data{
	background-color:#f3f3f3!important;
}
section.home .owl-item .display-4 {
    font-size: 2.3rem !important;
}
.overflow-hidden {
    text-align: center;
}
.slide-data .title-2 {
    margin: 0 auto;
    width: 100%;
}
.arrow-right {
    display: none;
}
.slide-data .ml-3 {
    margin-left: 0px !important;
}
.slide-data .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
    position: relative;
    width: 100%!important;
    padding-right: 15px!important;
    padding-left: 15px!important;
	    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.mb-3, .my-3 {
    margin-bottom: 1rem !important;
}
.mt-3, .my-3 {
    margin-top: 1rem !important;
}
.mt-4, .my-4 {
    margin-top: 1.5rem !important;
}
.mb-4{
    margin-bottom: 1.5rem !important;
}
}

@media (min-width: 768px) and (max-width: 991px) {
section.home {
    padding-top: 0px;
}
.menu-header li.active a {
    color: #ee1e26 !important;
}
.menu-header li.active a.dropdown-item {
    color: #666666 !important;
}
.menu-header a:not(.navbar-brand):before {
    display:none;
}
.menu-header a:not(.navbar-brand):hover, .menu-header a:not(.navbar-brand):focus {
    color: #ee1e26 !important;
}
.dropdown-menu {
    border: 0px solid rgba(0, 0, 0, 0.15);
	font-size:16px!important;
}
.btn {
    font-size: 16px;
}
.form-control {
    font-size: 16px!important;
}
.text-danger {
    font-size: 16px!important;
}
footer p, footer address, footer a {
    font-size: 16px!important;
}
footer .form-control {
    font-size: 16px!important;
}
footer .small a, footer .small {
    font-size: 16px!important;
}
h3, .h3 {
    font-size: 22px;
}
.contact .display-5 {
    font-size: 30px!important;
}
footer .col-sm-3, footer .col-sm-4, footer .col-sm-2{
    margin-bottom:25px!important;
	-webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.contact-us .col-sm-3, .contact-us .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.contact-us .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.slide-data .container:before {
    display:none;
}
section.home .owl-item img {
    min-height: 0;
    -o-object-fit: cover;
    object-fit: cover;
}
.vh-slide {
    height: 20em!important;
}
}

@media (min-width: 992px) and (max-width: 1199px) {
footer .col-sm-3, footer .col-sm-2, footer .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
footer form .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.vh-slide {
    height: 27em!important;
}
.slide-data .container:before {
    height: 45vh;
}
}

/* Addon LightBox Data-Title 2021-03-30 */
.lb-data .lb-caption {
    font-size: 26px !important;
}

.owl-carousel.owl-carousel-home.owl-carousel-home-desktop {
    display:block;
}
.owl-carousel.owl-carousel-home.owl-carousel-home-mobile {
        display:none;
}

@media (max-width: 767px) {
    .owl-carousel.owl-carousel-home.owl-carousel-home-desktop {
        display:none;
    }
    .owl-carousel.owl-carousel-home.owl-carousel-home-mobile {
        display:block;
    }
    .slide-data.vh-slide.d-flex.align-items-center {
        background-color: rgba(255,255,255,0.5);
    }
    .slide-data.vh-slide.d-flex.align-items-center.first-slide {
        background-color:transparent;
    }
    .slide-data {
        top: 0px !important;
    }
    .owl-nav {
        display:none;
    }
}










