@font-face {
    font-family: "Poppins-Regular";
    src: url("../fonts/poppins/Poppins-Regular.ttf"); }
  @font-face {
    font-family: "Poppins-SemiBold";
    src: url("../fonts/poppins/Poppins-SemiBold.ttf"); }
  @font-face {
    font-family: "Poppins-Medium";
    src: url("../fonts/poppins/Poppins-Medium.ttf"); }
  @font-face {
    font-family: "Muli-Bold";
    src: url("../fonts/muli/Muli-Bold.ttf"); }
  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  /*======================================
    Variables
========================================*/
/*======================================
    Normalize CSS
========================================*/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");

html {
  scroll-behavior: smooth;
}
:root {
  --color-white: #ffffff;
  --color-primary: #F1910C;
  --color-secondary: #485664;
  --color-primary-rgb: 14, 162, 189;
  --color-secondary-rgb: 72, 86, 100;
}
body {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #888;
  overflow-x: hidden;
}

p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 24px;
}

* {
  margin: 0;
  padding: 0;
}

.navbar-toggler:focus,
a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  outline: none !important;
  border-color: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: #ff8c00;
  border-color: #ff8c00;
}

select {
  -webkit-writing-mode: horizontal-tb !important;
  text-rendering: auto;
  color: #081828;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: pre;
  -webkit-rtl-ordering: logical;
  background-color: -internal-light-dark(white, #3b3b3b);
  cursor: default;
  margin: 0em;
  font: 400 14px;
  border-radius: 0px;
  border-width: 1px;
  border-style: solid;
  border-color: -internal-light-dark(#767676, #858585);
  -o-border-image: initial;
  border-image: initial;
}

span,
a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0px;
  color: #081828;
}



h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

/* One Click Scrool Top Button*/
.scroll-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #F1910C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: #fff !important;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius: 4px;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: #081828;
}

/*======================================
	01. Start Header CSS
========================================*/
.header {
  width: 100%;
  background: #fff;
  position: relative;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
}

.header .header-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 0;
  height: 100px;
}

@media (max-width: 767px) {
  .header .header-middle .d-xs-none {
    display: none;
}
  
.header .header-middle {
  height: 140px;
}

}

.header .middle-right-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .header .middle-right-area {
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    float: right;
  }
}

.header .nav-hotline {
  position: relative;
  padding-left: 50px;
  margin-right: 35px;
}

@media (max-width: 767px) {
  .header .nav-hotline {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .nav-hotline {
    display: none;
  }
}

.header .nav-hotline i {
  color: #081828;
  font-size: 18px;
  position: absolute;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  border: 1px solid #eee;
  border-radius: 50%;
}

.header .nav-hotline h3 {
  font-size: 15px;
  font-weight: 600;
  color: #081828;
}

.header .nav-hotline h3 span {
  color: #888;
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin-top: 2px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .nav-hotline h3 span {
    font-size: 12px;
    font-weight: 600;
  }
  .header .header-middle {
    height: 140px;
  }
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .mobile-menu-btn .toggler-icon {
    background-color: #081828;
  }
  .header .header-middle {
    height: 140px;
  }
  .header .button {
    margin: 0 !important;
  }

  .header .nav-inner {
    display: block !important;
    padding: 18px 0;
  }

  .header .navbar-collapse {
    position: absolute;
    top: 46px !important;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    max-height: 350px;
    overflow-y: scroll;
    border-top: 1px solid #eee;
    border-radius: 6px;
  }

  .header .navbar .navbar-nav .nav-item a:hover {
    color: #0167F3 !important;
  }

  .header .navbar .navbar-nav .nav-item a.active {
    color: #0167F3 !important;
  }

  .header .navbar-nav .nav-item {
    margin: 0;
  }

  .header .navbar-nav .nav-item:hover a {
    color: #0167F3;
  }

  .header .navbar-nav .nav-item a {
    padding: 12px 16px !important;
  }

  .header .navbar-nav .nav-item a::before {
    display: none;
  }

  .header .navbar-nav .nav-item .sub-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border: none;
    
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 12px 12px;
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item a:hover {
    color: #0167F3 !important;
  }

  .header .navbar-nav .nav-item a {
    color: #051441;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
  }

  .header .navbar-nav .nav-item a::after {
    opacity: 1;
    visibility: visible;
  }

  .header .navbar-nav .nav-item .sub-menu li.active {
    background: #fff !important;
    color: #0167F3 !important;
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item {
    margin: 0 !important;
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 10px 12px !important;
  }

  .header .navbar-nav .nav-item .sub-menu li:hover {
    background: #fff !important;
    color: #0167F3 !important;
  }

  .header .navbar-nav .nav-item a {
    font-size: 14px;
  }

  .header .navbar-nav .nav-item a:hover {
    color: #0167F3;
  }
}

@media (max-width: 767px) {
  .header .mobile-menu-btn .toggler-icon {
    background-color: #081828;
  }

  .header .button {
    margin: 0 !important;
  }

  .header .nav-inner {
    display: block !important;
    padding: 18px 0;
  }

  .header .navbar-collapse {
    position: absolute;
    top: 46px !important;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    max-height: 350px;
    overflow-y: scroll;
    border-top: 1px solid #eee;
    border-radius: 6px;
  }

  .header .navbar .navbar-nav .nav-item a:hover {
    color: #0167F3 !important;
  }

  .header .navbar .navbar-nav .nav-item a.active {
    color: #0167F3 !important;
  }

  .header .navbar-nav .nav-item {
    margin: 0;
  }

  .header .navbar-nav .nav-item:hover a {
    color: #0167F3;
  }

  .header .navbar-nav .nav-item a {
    padding: 12px 16px !important;
  }

  .header .navbar-nav .nav-item a::before {
    display: none;
  }

  .header .navbar-nav .nav-item .sub-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border: none;
    margin-left: 15px;
    margin-right: 15px;
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 12px 12px;
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item a:hover {
    color: #0167F3 !important;
  }

  .header .navbar-nav .nav-item a {
    color: #051441;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
  }

  .header .navbar-nav .nav-item a::after {
    opacity: 1;
    visibility: visible;
  }

  .header .navbar-nav .nav-item .sub-menu li.active {
    background: #fff !important;
    color: #0167F3 !important;
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item {
    margin: 0 !important;
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 10px 12px !important;
  }

  .header .navbar-nav .nav-item .sub-menu li:hover {
    background: #fff !important;
    color: #0167F3 !important;
  }

  .header .navbar-nav .nav-item a {
    font-size: 14px;
  }

  .header .navbar-nav .nav-item a:hover {
    color: #0167F3;
  }
}
/* .header .header-middle .navbar-brand img {
  width: 300px;
  height:60px;
} */

.header .navbar-brand {
  margin: 0;
}

@media (max-width: 767px) {
  .header .navbar-brand {
    display: block;
    text-align: left;
    padding: 0;
  }
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-brand img {
    width: 300px;
    height:80px
  }
  .header .header-middle {
    height: 140px;
  }
}

@media (max-width: 767px) {
  .header .navbar-brand img {
    width: 300px;
    height:80px;
  }
}

.header.sticky .navbar-brand .white-logo {
  opacity: 0;
  visibility: hidden;
}

.header.sticky .navbar-brand .dark-logo {
  opacity: 1;
  visibility: visible;
}

.header.sticky .button .btn {
  background-color: #0167F3;
  color: #fff;
  border-color: transparent;
}

.header.sticky .button .btn:hover {
  background-color: #081828;
  color: #fff;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 0;
  width: 100%;
}

.navbar-expand-lg .navbar-nav {
  margin: 0;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.header .navbar .navbar-nav .nav-item a.active {
  color: #fff;
}

.sticky .navbar .navbar-nav .nav-item a.active {
  color: #fff;
}

.sticky .navbar .mobile-menu-btn .toggler-icon {
  background: #333;
}

/*===== NAVBAR =====*/
.navbar-area {
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 0;
}

.navbar {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  
}
.navbar .sub-menu-bar {
  margin-left: 90px;
}
.navbar .sub-menu-bar ul li{
  margin-top: 18%;
  background: #F1910C;
  color:#fff;
  padding : 10px 35px 10px 35px;
  cursor:pointer;
}
.navbar .sub-menu-bar ul .bordure{
  border-right : 2px solid #fff;
}
.navbar .sub-menu-bar ul li:hover{
  margin-top: 18%;
  background: #000;
  color:#fff;
  padding : 10px 35px 10px 35px;
  cursor:pointer;
}

.navbar-nav .nav-item {
  z-index: 1;
  position: relative;

}

.navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}

.navbar-nav .nav-item:hover a {
  color: #fff;
}

.sticky .navbar-nav .nav-item:hover a {
  color: #fff;
}

.navbar-nav .nav-item a {
  font-size: 14px;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease-out 0s;
  position: relative;
  text-transform: capitalize;
}

.navbar-nav .nav-item:hover .dd-menu::before {
  border-bottom-color: #0167F3;
  border-right-color: #0167F3;
}

.navbar-nav .nav-item a.active {
  color: #0167F3;
}

.navbar-nav .nav-item a.dd-menu::after {
  content: "\ea5e";
  font: normal normal normal 1em/1 "LineIcons";
  font-size: 1em;
  position: absolute;
  right: -20px;
  font-size: 12px;
  top: 50%;
  margin-left: 5px;
  margin-top: -4px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item a.dd-menu::after {
    right: -15;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item a.dd-menu::after {
    top: 18px;
    right: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item a.collapsed::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.navbar-nav .nav-item:hover>.sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar-nav .nav-item:hover>.sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

.navbar-nav .nav-item .sub-menu {
  padding: 30px;
  min-width: 240px;
  background: #fff;
  position: absolute;
  top: 110% !important;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0 0 4px 4px;
}

.navbar-nav .nav-item:hover .sub-menu {
  top: 100% !important;
}

.navbar-nav .nav-item .sub-menu .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.navbar-nav .nav-item .sub-menu .nav-item:last-child {
  margin: 0;
}

.navbar-nav .nav-item .sub-menu .nav-item a {
  padding: 0;
  color: #888;
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.navbar-nav .nav-item .sub-menu .nav-item a:hover {
  color: #0167F3;
}

.navbar-nav .nav-item .sub-menu.left-menu {
  left: -100%;
}

.navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    display: none;
  }
}

.navbar-nav .nav-item .sub-menu>li {
  display: block;
  margin-left: 0;
}

.navbar-nav .nav-item .sub-menu>li:last-child {
  border: none;
}

.navbar-nav .nav-item .sub-menu>li.active>a {
  color: #F1910C !important;
}

.navbar-nav .nav-item .sub-menu>li>a {
  font-weight: 400;
  display: block;
  padding: 12px 15px;
  font-size: 14px;
  color: #222;
  font-weight: 400;
}

.navbar-nav .nav-item .sub-menu>li:first-child a {
  border: none;
}

.or-container {
	align-items: center;
	color: #ccc;
	display: flex;
	margin: 25px 0;
  margin-top: -37px;
}
  
  .line-separator {
	background-color: #fff;
	flex-grow: 5;
	height: 1px;
  }
  
  .or-label {
	flex-grow: 1;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
  padding: 5px 5px 5px 5px;
	background-color: #F1910C;
  }
  

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #F1910C;
  border-top-color: #fff;
  border-bottom-color: #fff;
  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 {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

@media (max-width: 991px) {
  #header {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}

@media (min-width: 991px) {
  #main {
    margin-left: 100px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-carousel .owl-carousel-item .justify-content-start {
  margin-top: 20px;
}
@media only screen and (min-width: 768px){
  .nav-menu .prestation,
  .nav-menu .catalogue{
    display: none;
  }
  .header-carousel .owl-carousel-item img {
    height: 450px;
  }
  .header-carousel .owl-carousel-item .contact1 {
    display: none;
  }
}
@media only screen and (max-width: 767px){
  .nav-menu .prestation,
  .nav-menu .catalogue{
    display: block;
  }
  .header-carousel .owl-carousel-item img {
    display: none;
  }
  .header-carousel .owl-carousel-item .contact1 {
    display: block;
  }
}
.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #45505b;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #f2f3f5;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #45505b;
}

@media (min-width: 992px) {

  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  color: #fff;
  background: #F1910C;
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: #fff;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
  color: #fff;
}

.nav-menu a:hover span,
.nav-menu li:hover>a span {
  display: block;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
}

.mobile-nav-toggle i {
  color: #45505b;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #F1910C;
}



/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

  body {
    font-family: "Poppins-Regular";
    font-size: 13px;
    font-weight: 400; }
  
  :focus {
    outline: none; }
  
  textarea {
    resize: none; }
  
  p, h1, h2, h3, h4, h5, h6, ul {
    margin: 0; }
  
  ul {
    padding: 0;
    margin: 0;
    list-style: none; }
  
  a {
    text-decoration: none; }
  
  textarea {
    resize: none; }
  
  select {
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    border: none; }
    select option[value=""][disabled] {
      display: none; }
  
  img {
    max-width: 100%;
    vertical-align: middle; }
  
  body {
    background-size: cover; }
  
  .wrapper {
    margin: auto;
    display: flex;
    align-items: center;

   }
  
  .steps .current-info, .wizard > .steps .number {
    display: none; 
  }
  
  #wizard {
    position: relative;
    background: #fff;
    height: 100%;
    margin-top:40px;
    padding: 10px 10px 0;
    border-radius: 10px;
   
  }
    #wizard.pt-86 {
      padding-top: 86px; }
  
  .steps {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -50px; 
  }
  .steps ul {
    display: flex; 
  }
  .steps ul li a {
      display: inline-block;
      width: 10px;
      height: 10px;
      background: #ffffff;
      border-radius: 50%;
      margin-right: 8px; 
  }
  .steps ul li.current a {
      width: 22px;
      transition: all 0.5s ease;
      border-radius: 5.5px; 
  }
  
  .avartar-picker {
    padding-left: 15px;
    margin-top: 20px; 
  }
  .avartar-picker .inputfile {
      display: none; 
  }
  .avartar-picker label {
    display: block;
    cursor: pointer;
    display: inline-block;
    color: #333;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800; 
  }
  .avartar-picker label:hover {
    color: #666; 
  }
  .avartar-picker label i {
      margin-right: 3px; 
  }
  
  .form-header {
    display: flex; 
  }
  .form-header .avartar {
      width: 33.75%; 
  }
  .form-header .avartar a {
        display: block; 
  }
  .form-header .form-group {
      width: 66.25%; 
  }
  .form-row {
    display: flex; 
  }
  .form-row .form-holder {
      width: 50%;
      margin-right: 31px; 
  }
  .form-row .form-holder:last-child {
      margin-right: 0; 
  }
  .form-holder {
    position: relative;
    padding-left: 26px;
    margin-bottom: 25px; 
  }
  .form-holder:before {
      content: "";
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 0px;
      width: 10px;
      height: 10px;
      border: 2px solid #f6c2ec;
      border-radius: 50%;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; 
  }
  .form-holder.active:before {
      background: #f6c2ec; 
  }
  .form-control {
    height: 46px;
    border: none;
    background: #f7f7f7;
    width: 100%;
    padding: 0 25px;
    border-radius: 23px;
    color: #333; 
  }
  .form-control::-webkit-input-placeholder {
      color: #808080;
      text-transform: uppercase; 
      font-size:12px;
  }
  .form-control::-moz-placeholder {
      color: #808080;
      text-transform: uppercase; 
      font-size:12px;
  }
  .form-control::-ms-input-placeholder {
      color: #808080;
      text-transform: uppercase; 
      font-size:12px;
  }
  .form-control::-moz-placeholder {
      color: #808080;
      text-transform: uppercase; 
      font-size:12px;
  }
  .grid {
    margin-top: 15px; 
  }
  .grid .row {
      display: flex;
      flex-wrap: wrap; 
  }
  .grid .row:last-child .grid-item {
        margin-bottom: 25px; 
  }
.grid-item {
    display: block;
    height: 134px;
    width: 30%;
    margin-right: 27px;
    border-radius: 7px;
    margin-bottom: 27px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover; 
}
.grid-item:last-child {
      margin-right: 0; 
}
.grid-item span {
      text-transform: uppercase;
      color: #fff;
      font-family: "Poppins-Medium";
      font-weight: 500;
      display: block;
      margin-top: 11px; 
}
.grid-item .inner {
      margin-top: 2px; 
}
.grid-item:hover {
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.25);
  -o-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.25); 
}
  
.map-wrapper {
    height: 177px;
    margin-bottom: 36px; 
} 
.map-holder {
    height: 177px; 
} 
.actions ul {
    display: flex; 
}
.actions ul.actions-next {
      justify-content: space-between; 
}
.actions li a {
    padding: 0;
    border: none;
    display: inline-flex;
    height: 46px;
    width: 146px;
    align-items: center;
    background: #aac1f0;
    cursor: pointer;
    position: relative;
    padding-left: 33px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 23px;
    margin-top: 10px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s; 
}
.actions li a:before {
  content: '\f2ee';
  position: absolute;
  top: 17px;
  right: 32px;
  font-family: Material-Design-Iconic-Font;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  font-size: 13px; 
}
.actions li a:hover {
  background: #98add6; 
}
.actions li a:hover:before {
  -webkit-animation-name: hvr-icon-wobble-horizontal;
  animation-name: hvr-icon-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1; 
}
.actions li[aria-disabled="true"] a {
  display: none; 
}
.actions li:first-child a {
  background: #f6c2ec;
  padding-left: 65px; 
}
.actions li:first-child a:before {
  content: '\f2ea';
  left: 48px; 
}
.actions li:first-child a:hover {
  background: #dbadd2; 
}
.actions li:last-child a {
    padding-left: 46px;
    font-weight: 400; 
}
.actions li:last-child a:before {
    right: 44px; 
}
  
@-webkit-keyframes hvr-icon-wobble-horizontal {
    16.65% {
      -webkit-transform: translateX(6px);
      transform: translateX(6px); }
    33.3% {
      -webkit-transform: translateX(-5px);
      transform: translateX(-5px); }
    49.95% {
      -webkit-transform: translateX(4px);
      transform: translateX(4px); }
    66.6% {
      -webkit-transform: translateX(-2px);
      transform: translateX(-2px); }
    83.25% {
      -webkit-transform: translateX(1px);
      transform: translateX(1px); }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0); } 
}
@keyframes hvr-icon-wobble-horizontal {
    16.65% {
      -webkit-transform: translateX(6px);
      transform: translateX(6px); }
    33.3% {
      -webkit-transform: translateX(-5px);
      transform: translateX(-5px); }
    49.95% {
      -webkit-transform: translateX(4px);
      transform: translateX(4px); }
    66.6% {
      -webkit-transform: translateX(-2px);
      transform: translateX(-2px); }
    83.25% {
      -webkit-transform: translateX(1px);
      transform: translateX(1px); }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0); }
}
@media (max-width: 767px) {
    body {
      background: none; }
  
    .wrapper {
      height: auto;
      display: block; }
  
    #wizard {
      width: auto;
      height: auto;
      padding: 30px 20px;
      border-radius: 0;
      box-shadow: none;
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      -ms-box-shadow: none;
      -o-box-shadow: none; 
    }
  
  .form-header {
      display: block; 
  }
  .form-header .avartar {
    width: 100%;
    text-align: center;
    margin-bottom: 25px; 
  }
  .form-header .form-group {
    width: 100%; 
  }
  .grid .row {
    display: block; 
  }
  .grid-item {
      width: 100%; 
  }
  .form-row {
    display: block; 
  }
  .form-row .form-holder {
      width: 100%;
      margin-right: 0; 
  }  
  .actions ul {
      flex-direction: column;
      align-items: flex-end; 
  }
  .steps {
    display: none; 
  } 
}
  
  /*# sourceMappingURL=style.css.map */
  


  
/*-------------------------------------------------------------------------------------
--------------------------------------form validation-------------------------------*/


input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #468847;
  background-color: #DFF0D8;
  border: 1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

.parsley-errors-list {
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0;
  color: #B94A48;

  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}


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

.section-title h2 {
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #fff;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 190px;
  height: 1px;
  background: #F1910C;
  bottom: 1px;
  left: calc(50% - 90px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #F1910C;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  color:#fff;
}



.item-details .product-info .form-group {
  margin-top: 20px;
}

.item-details .product-info .form-group.color-option .title-label {
  display: block !important;
}

.single-checkbox {
  margin-top: 8px;
  display: inline-block;
  margin-right: 5px;
}

.single-checkbox.nav-item:last-child {
  margin-right: 0;
}

 .single-checkbox label{
  font-size: 16px;
  margin-bottom: 0;
  position: relative;
  bottom: -2px;
}

.single-checkbox input[type="radio"] {
  display: none;
}

 .single-checkbox input[type="radio"]+label span {
  border-color: #0167F3;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px -3px 0;
  border: 1px solid #d5d5d5;
}

.single-checkbox input[type="radio"]+label span::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
  transform: scale(0);
  font-size: 10px;
  line-height: 1.2;
  background-color: #0167F3;
  font-family: "Lineicons";
  content: "\ea5b";
  padding-left: 0px;
  padding-top: 3px;
  border-radius: 50%;
  margin-top: -9px;
  margin-left: -9px;
  text-align: center;
  cursor: pointer;
}

.single-checkbox.checkbox-style-1 input[type="radio"]+label span {
  border: 2px solid #081828;
  cursor: pointer;
}

 .single-checkbox.checkbox-style-1 input[type="radio"]+label span::before {
  background-color: #081828;
  cursor: pointer;
}

.single-checkbox.checkbox-style-2 input[type="radio"]+label span {
  border: 2px solid #081828;
  cursor: pointer;
}

 .single-checkbox.checkbox-style-2 input[type="radio"]+label span::before {
  background-color: #081828;
  cursor: pointer;
}

.single-checkbox.checkbox-style-3 input[type="radio"]+label span {
  border: 2px solid #081828;
  cursor: pointer;
}

.single-checkbox.checkbox-style-3 input[type="radio"]+label span::before {
  background-color: #081828;
  cursor: pointer;
}

.single-checkbox.checkbox-style-4 input[type="radio"]+label span {
  border: 2px solid #081828;
  cursor: pointer;
}

.single-checkbox.checkbox-style-4 input[type="radio"]+label span::before {
  background-color: #081828;
  cursor: pointer;
}

.single-checkbox input[type="radio"]:checked+label span {
  border-color: transparent;
}

.single-checkbox input[type="radio"]:checked+label span::before {
  -webkit-transform: scale(1);
  transform: scale(1);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}



.tab {
  display: none
}

button {
  background-color: #F1910C;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 14px;
  font-family: Raleway;
  cursor: pointer
}

button:hover {
  opacity: 0.8
}

button:focus {
  outline: none !important;
}

#prevBtn {
  background-color: #F1910C;
}

.all-steps {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  display: inline-flex;
  justify-content: center;
}


.all-steps #step {
  padding: 40px;
}

.step {
  height: 50px;
  width: 50px;
  margin: 0 5px;
  background-color: #eee;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: #F1910C;
  opacity: 0.5;
}

.step i {
  font-size: 30px;
}

.step.active {
  opacity: 1
}


.step.finish {
  color: #fff;
  background: #F1910C;
  opacity: 1;

}

.all-steps {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px
}




/*======================================
	Footer CSS
========================================*/
.footer{
  position: relative;
}
.footer .footer-middle{
  background-color: #000;
}
.footer-top{
  background-color: #bdbebe26;
}
.footer-top .inner-content {
  padding: 25px 0;
  border-bottom: 1px solid #bdbebe26;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-top .inner-content {
    padding: 50px 0;
  }
  .resume{
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .footer-top .inner-content {
    padding: 40px 0;
    text-align: center;
  }
}

.footer-top .footer-logo a img {
  width: 180px;
  height:35px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-top .footer-logo a img {
    width: 190px;
  }
}

@media (max-width: 767px) {
  .footer-top .footer-logo a img {
    width: 180px;
  }
}

@media (max-width: 767px) {
  .footer-top .footer-newsletter {
    padding: 0px 20px;
  }
}

.footer-top .footer-newsletter .title {
  color: #F1910C;
  font-size: 22px;
  font-weight: 800;
  float: left;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-top .footer-newsletter .title {
    margin-bottom: 20px;
    display: block;
  }
}

@media (max-width: 767px) {
  .footer-top .footer-newsletter .title {
    margin-bottom: 20px;
    display: block;
    font-size: 18px;
    width: 100%;
  }
}

.footer-top .footer-newsletter .title span {
  color: #09000c;
  display: block;
  font-size: 14px;
  margin-top: 5px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .footer-top .footer-newsletter .title span {
    margin-top: 10px;
  }
}

.footer-top .footer-newsletter .newsletter-form {
  float: right;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-top .footer-newsletter .newsletter-form {
    float: none;
  }
}

@media (max-width: 767px) {
  .footer-top .footer-newsletter .newsletter-form {
    float: none;
    margin-top: 20px;
  }
}

.footer-top .footer-newsletter .newsletter-form input {
  height: 50px;
  border-radius: 4px;
  width: 300px;
  display: inline-block;
  border: none;
  padding: 0px 20px;
  color: #0e0000;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-top .footer-newsletter .newsletter-form input {
    width: 240px;
  }
}

@media (max-width: 767px) {
  .footer-top .footer-newsletter .newsletter-form input {
    width: 100%;
    text-align: center;
  }
}

.footer-top .footer-newsletter .newsletter-form input::-webkit-input-placeholder {
  color: #fff;
}

.footer-top .footer-newsletter .newsletter-form input:-ms-input-placeholder {
  color: #fff;
}

.footer-top .footer-newsletter .newsletter-form input::-ms-input-placeholder {
  color: #fff;
}

.footer-top .footer-newsletter .newsletter-form input::placeholder {
  color: #fff;
}

.footer-top .footer-newsletter .newsletter-form .button {
  display: inline-block;
  margin-left: 6px;
  position: relative;
  top: -2px;
}

@media (max-width: 767px) {
  .footer-top .footer-newsletter .newsletter-form .button {
    margin: 0;
    margin-top: 10px;
    top: 0;
    width: 100%;
  }
}

.footer-top .footer-newsletter .newsletter-form .button .btn {
  height: 50px;
  background: #F1910C;
}

@media (max-width: 767px) {
  .footer-top .footer-newsletter .newsletter-form .button .btn {
    width: 100%;
  }
}

.footer-top .footer-newsletter .newsletter-form .button .btn:hover {
  color: #081828;
}
.footer-top .footer-newsletter .newsletter-form .button .btn {
  background-color: #F1910C;
  color:#000;
}

.footer .footer-middle {
  padding-top: 10px;
  padding-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-middle {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .footer .footer-middle {
    padding-top: 10px;
    padding-bottom: 50px;
  }
}

.footer .footer-middle .newsletter-form input {
  width: 100%;
  border-radius: 4px;
  padding: 0px 20px;
  height: 50px;
  border: 1px solid #eee;
}

.footer .footer-middle .newsletter-form .button {
  margin-top: 12px;
}

.footer .footer-middle .newsletter-form .button .btn {
  background-color: #081828;
  color: #fff;
}

.footer .footer-middle .newsletter-form .button .btn:hover {
  background-color: #662382;
  color: #fff;
}

.footer .footer-middle .newsletter-form p {
  color: #888;
  margin-top: 20px;
}

.footer .single-footer {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .footer .single-footer {
    margin-top: 30px;
  }
}

.footer .single-footer h3 {
  position: relative;
  margin-bottom: 5px;
  padding-bottom: 5px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
}

.footer .single-footer h3::before {
  display: block;
  position: absolute;
  left: 0;
  width: 40px;
  height: 3px;
 
}



.footer .single-footer.f-link ul li {
  display: block;
  margin-bottom: 12px;
  position: relative;
}

.footer .single-footer.f-link ul li:last-child {
  margin-bottom: 0;
}

.footer .single-footer.f-link ul li a {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.footer .single-footer.f-link ul li a:hover {
  padding-left: 5px;
  color: #fff;
}

.footer .single-footer.f-contact .phone {
  color: #FFF;
}

.footer .single-footer.f-contact ul {
  margin: 10px 0;
}

.footer .single-footer.f-contact ul li {
  display: block;
  margin-bottom: 10px;
  color: #FFF;
}

.footer .single-footer.f-contact ul li span {
  display: block;
}

.footer .single-footer.f-contact ul li:last-child {
  margin: 0;
}

.footer .single-footer.f-contact ul li span {
  color: #FFF;
}

.footer .single-footer.f-contact .mail a {
  color: #FFF;
}

.footer .single-footer.f-contact .mail a:hover {
  color: #FFF;
}

.footer .single-footer.our-app .app-btn li {
  display: block;
  margin-bottom: 15px;
}

.footer .single-footer.our-app .app-btn li:last-child {
  margin-bottom: 0;
}

.footer .single-footer.our-app .app-btn li span {
  display: block !important;
}

.footer .single-footer.our-app .app-btn li a {
  position: relative;
  padding-left: 40px;
  border-radius: 4px;
  padding: 15px 30px;
  padding-left: 60px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #FFF;
}

.footer .single-footer.our-app .app-btn li a i {
  font-size: 27px;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .single-footer.our-app .app-btn li a .small-title {
  font-size: 13px;
  display: block;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .single-footer.our-app .app-btn li a .big-title {
  font-size: 14px;
  font-weight: 500;
  display: block;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .single-footer.our-app .app-btn li a:hover {
  background-color: #FFF;
  color: #fff;
  border-color: transparent;
}

.footer .single-footer.our-app .app-btn li a:hover .small-title {
  color: #fff;
}

.footer .single-footer.our-app .app-btn li a:hover .big-title {
  color: #fff;
}