* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	overflow: hidden;
	overflow-y: auto;
}
body {
	overflow: hidden;
	font-size: 16px;
	line-height: 26px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #777777;
	font-weight: 400;
}

html,
button,
input,
select,
textarea {
	font-family: 'Montserrat', Helvetica, sans-serif;
}

article,
aside,
figcaption,
figure,
footer,
header,
nav,
section {
  display: block;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
address, p, hr {
  margin: 0;
  margin-bottom: 15px;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}
ol, ul,
li > ul,
li > ol {
  margin: 0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: 'Montserrat', Helvetica, sans-serif;
	line-height: 1.3;
	color: #2b2b2b;
}
h1, .h1 {font-size: 42px;}
h2, .h2 {font-size: 34px;}
h3, .h3 {font-size: 26px;}
h4, .h4 {font-size: 22px;}
h5, .h5 {font-size: 18px;}
h6, .h6 {font-size: 14px;}
h1, .h1, h2, .h2, h3, .h3 {font-weight: 700;}
h4, .h4, h5, .h5 {font-weight: 600;}
h6, .h6 {font-weight: 500;}

a {
	color: #333;
	text-decoration: none;
	transition: all 0.4s ease-in-out 0s;
}
a:visited {
	color: #f1f1f1;
}
a:hover,
a:focus,
a:active {
	text-decoration: none;
	outline: none;
	color: #ddd;
}

.uppercase {
	text-transform:uppercase;
}
.text-italic {
  font-style: italic;
}
.text-normal {
  font-style: normal;
}
.text-underline {
  font-style: underline;
}

img {
  max-width: 100%;
}
.hidden {
	display: none;
}
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}

.wrapper,
.relative {
  position: relative;
}

.align-row-spacebetween {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-around;
}
.align-center-center {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.transition-3s {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.container {
    max-width: 1200px;
}
.grey {
	background-color:#f1f1f1;
}


/******************************************************************************
	TO-BAR
*******************************************************************************/
.top-bar {
  background: #FF1018;
}
.top-contact, 
.top-social {
	list-style: none;
	padding: 15px 0;
}

.top-contact li {
	display: inline-block;
	padding-right: 15px;
}
.top-social li {
	display: inline-block;
}
.top-contact li a, 
.top-contact li a:hover {
	color: #fff;
}

.top-social li {
	display: inline-block;
}

.top-social li a {
	font-size: 16px;
	text-decoration: none;
	color: #eee;
	transition: .3s ease;
}

.top-contact > li > a > i, 
.top-contact > li > span > i, 
.top-social > li > a > i {
	height: 32px;
	width: 32px;
	line-height: 33px;
	font-size: 12px;
	background: rgba(255, 255, 255, 0.21);
	border-radius: 50%;
	text-align: center;
	margin-right: 5px;
	transition: all .3s ease;
}

.top-contact li a:hover i, 
.top-contact li span:hover i, 
.top-social li a:hover i {
	color: #fff;
	background: rgba(0, 0, 0, 0.21);
}




/******************************************************************************
	HEADER
*******************************************************************************/
.header-bottomarea {
  background: #ffffff;
}
.header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: inline-block;
  padding: 10px 0;
}

/** Navigation **/
.navigation {
  text-align: right;
  flex-grow: 1;
  padding: 0 20px;
}
.navigation > ul {
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0;
  display: inline-block;
}
.navigation > ul > li {
  display: inline-block;
  list-style: none;
  font-size: 16px;
  position: relative;
}
.navigation > ul > li > a {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #2b2b2b;
    display: block;
    padding: 30px 10px;
}

.navigation > ul > li.active > a,
.navigation > ul > li:hover > a {
	color: #FF1018;
}
.navigation .dropdown {
  position: relative;
}
.navigation .dropdown > a span {
	padding-left:10px;
}
/*
.navigation .dropdown > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  padding-left: 10px;
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  vertical-align: bottom;
}*/
.navigation .dropdown ul {
  position: absolute;
  left: 100%;
  right: auto;
  top: 0;
  height: auto;
  width: 240px;
  z-index: 10;
  padding-left: 0;
  margin-bottom: 0;
  text-align: left;
  background: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transform: translateX(20px);
  transition: all 0.2s ease-in-out 0s;
  visibility: hidden;
  opacity: 0;
}
.navigation .dropdown ul li {
  position: relative;
}
.navigation .dropdown ul li a {
  display: block;
  padding: 9px 15px;
  color: #2b2b2b;
  text-transform: uppercase;
  font-size: 14px;
}
.navigation .dropdown ul li:not(:last-child) a {
  border-bottom: 1px solid #f0f0f0;
}
.navigation .dropdown ul li:hover > a {
  color: #ffffff;
  background: #444;
  border-color: #444;
}
.navigation .dropdown ul li:hover > ul {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.navigation .dropdown > ul {
  left: 0;
  top: 100%;
  transform: translateY(20px);
}
.navigation .dropdown:hover > ul {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.navigation .dropdown.overflow-element ul {
  left: auto;
  right: 100%;
  transform: translateX(-20px);
}
.navigation .dropdown.overflow-element > ul {
  left: auto;
  right: 0;
}


/******************************************************************************
	HEADING
*******************************************************************************/
.heading-inner {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	margin-top: 0;
	text-rendering: optimizeLegibility;
}
.heading .heading-inner {
	padding-bottom: 15px;
}
.heading .heading-inner:before {
	content: '';
	position: absolute;
	bottom: 0;
	height: 1px;
	width: 50px;
	background: #FF1018;
	left: 0;
}
.heading .heading-inner:after {
	content: '';
	position: absolute;
	bottom: 3px;
	height: 1px;
	width: 80px;
	background: #FF1018;
	left: 0;
}
.heading.heading-center {
	text-align: center;
}
.heading.heading-center .heading-inner:after,
.heading.heading-center .heading-inner:before {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.heading.heading-right {
	text-align: right;
}
.heading.heading-right .heading-inner:after,
.heading.heading-right .heading-inner:before {
	left: auto;
	right: 0;
}
/* Heading Style 2 */
.heading-style-2 .heading-inner {
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.heading-style-2 .heading-inner:after {
	content: '';
	position: absolute;
	height: 6px;
	width: 6px;
	bottom: -3px;
	left: 0;
	background-color: #ff1018;
	border-radius: 50%;
}
.heading-style-2.heading-center {
	text-align: center;
}
.heading-style-2.heading-center .heading-inner:after {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.heading-style-2.heading-right {
	text-align: right;
}
.heading-style-2.heading-right .heading-inner:after {
	left: auto;
	right: 0;
}


ul.list-unstyled.text-right > li {
	text-align:right;
}

/******************************************************************************
	BREADCRUMB
*******************************************************************************/
.breadcrumbs-page {
	background-color: #222;
	position:relative;
}
.breadcrumbs-page.bg-img {
    background: url(../img/slider/bg_slider1.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
}
.breadcrumbs-page.bg-img .overlay {
    background: rgba(0,0,0,0.55);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.breadcrumbs-page .breadcrumbs-content h1 {
	color:#f1f1f1;
	font-size:36px;
}
.breadcrumbs-page .breadcrumb {
    background-color: transparent;
    border-radius: 0;
    margin-bottom: 0;
    padding: 0;
}
.breadcrumbs-page .breadcrumb > li {
    display: inline-block;
    font-size: 16px;
    padding: 0 14px;
    position: relative;
}
.breadcrumbs-page .breadcrumb > li + li::before {
    color: #777;
	font-family: "Font Awesome 5 Free";
    content: "/";
    font-size: 19px;
    left: 0;
    line-height: normal;
    padding: 0;
    position: absolute;
    top: 4px;
}
.breadcrumbs-page .breadcrumb > li a {
    color: #f1f1f1;
}
.breadcrumbs-page .breadcrumb > li a:hover {
    color: #ff1018;
}
.breadcrumbs-page .breadcrumb > li:first-child {
    padding-left: 0;
}
.breadcrumbs-page .breadcrumbs-content {
    min-height: 250px;
}
.breadcrumbs-page .breadcrumb > .active {
    color: #ff1018;
}
.breadcrumbs-page .align-col-center-left {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
}

/******************************************************************************
	HOMEPAGE
*******************************************************************************/
.home-presta li span {
	color:#ff1018;
}

/******************************************************************************
	COMMUN AUTRES PAGES
*******************************************************************************/
.bottom-area {
    background: #f6f6f6;
}
.bottom-area .bottom-content span i {
    color: #444;
    font-size: 60px;
}
.bottom-area .bottom-content .intro-text h4 {
    color: #ff1018;
}
.bottom-area .bottom-content span.d-inline {
  line-height: normal;
}
.bottom-area .bottom-content span.d-inline:before {
    background: #bbbbbb;
    bottom: -40px;
    content: "";
    height: 25px;
    left: 50%;
    margin-left: -0.5px;
    position: absolute;
    width: 1px;
}
.bottom-content:hover {
	cursor:pointer;
}
.bottom-area .bottom-content:hover span i,
.bottom-area .bottom-content:hover .intro-text h4 {
    color: #ff1018;
	-webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

/******************************************************************************
	PAGE FORMATION
*******************************************************************************/
.list-formation > li {
	font-size:18px;
	line-height:30px;
	font-weight:600;
}
.list-formation > li > span {
	color:#ff1018;
}
/******************************************************************************
	CALL-TO-ACTION
*******************************************************************************/
.call-action {
    background-color: #1b1c21;
}
.call-action .cta-content .content-txt h3 {
	position:relative;
    font-size: 30px;
	color: #ffffff;
	font-weight: 500;
	text-transform:uppercase; 
}
.call-action .cta-content .content-txt p {
    font-size: 18px;
    line-height: 27px;
}

.call-action .cta-content .cta-button {
  display: inline-block;
  font-size: 18px;
  height: 55px;
  line-height: 54px;
  min-width: 250px;
  text-align: center;
}
.cta-content .cta-button {
    background: #FF1018;
    z-index: 1;
    color: #fff;
    position: relative;
    line-height: 56px;
}
.cta-content .cta-button::after {
    border: 1px solid #FF1018;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    -webkit-transform: translate(6px, 6px);
    -moz-transform: translate(6px, 6px);
    -ms-transform: translate(6px, 6px);
    -o-transform: translate(6px, 6px);
    transform: translate(6px, 6px);
}
.cta-content .cta-button:hover:after {
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}

/******************************************************************************
	CONTACT
*******************************************************************************/
.iconefont {
	float: left;
	margin-left: 15px;
	margin-top: -32px;
	position: relative;
	z-index: 2;
	color:#444;
	font-size:16px;
}
.contact-form .form-area .form-group {
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    height: 50px;
    background: #fff;
}
.contact-form .form-area .form-group.msg {
    width: 100%;
    clear: both;
    height: 200px;
    margin-bottom: 20px;
}
.contact-form .form-area .form-group.msg .iconefont {
    position: absolute;
    top: 46px;
    left: 0;
}
.contact-form .form-area .form-group > input {
    border: medium none;
    height: 100%;
    padding: 10px 22px;
    width: 100%;
    background: none;
}
.contact-form .form-area .form-group > textarea{
    border: none;
    resize: none;
    width: 100%;
    padding: 10px 22px;
    margin-bottom: 0;
    height: 100%;
    background: none;
}
.formulaire {
    padding: 90px 0 90px;
}
.formulaire .form-area .form-group {
    border: 1px solid #ddd;
    background: none;
}
.formulaire .form-area .form-group > textarea,
.formulaire .form-area .form-group > input {
    color: #878787;
    padding-left: 40px;
}
.formulaire .form-area .form-group.input-effect {
    border-color: #444;
}

.logo-form {
	max-width:180px!important;
	margin:0 0 20px;
}

/******************************************************************************
	MAP
*******************************************************************************/
#mapid {
	height: 450px;
}
.leaflet-popup-content {
    text-align: left!important;
}
.leaflet-popup-content h4 {
	color:#ff1018;
    text-align: left!important;
	font-size:18px;
	margin-bottom:5px;
}
.leaflet-popup-content p {
    margin: 0 0 8px!important;
}

/******************************************************************************
	PAGE MENIONS LEGALES
*******************************************************************************/
#mentions h2 > i {
    color: #ff1018;
    margin-right: 8px;
}

/******************************************************************************
	FOOTER
*******************************************************************************/
#footer .copyright {
	background:#444;
	border-top: 1px solid #000;
	line-height: 22px;
	padding: 31px 0 30px;
}
#footer .copyright, 
#footer .copyright a {
	color:#f7f7f7;
}
#footer .copyright a:hover {
	color:#ffffff; 
}

/******************************************************************************
	TO TOP
*******************************************************************************/
#back-to-top {
    position: fixed;
    width: 50px;
	height: 50px;
	bottom: 30px;
	right: 30px;
    z-index: 9999;   
    cursor: pointer;
    background-image: url(../img/back-to-top.png);
	background-repeat: no-repeat;
	background-position: 50% 48%;
	background-color:rgba(123, 123, 123, 0.65);	
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
	-webkit-transition: all 250ms linear;
	-moz-transition: all 250ms linear;
	transition: all 250ms linear;
    opacity: 0;
}
#back-to-top:hover {
	background-color: rgba(255, 16, 24, 0.95);
}
#back-to-top.show {
    opacity: 1;
}


/******************************************************************************
	CAROUSEL
*******************************************************************************/
.carousel .hoverlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}
.carousel .item:hover .hoverlay{
    opacity: 1;
    visibility: visible;
}
.carousel .item {
    overflow: hidden;
}
.carousel .item img{
    width: 100%;
}
.carousel .item:hover img{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.carousel .hoverlay ul li a {
    background: #fff;
    border-radius: 100%;
    color: #ff1018;
    display: block;
    font-size: 24px;
    height: 35px;
    margin: 0 5px;
    padding: 4px;
    width: 35px;
}
.carousel .hoverlay ul li a:hover {
    background: #ff1018;
    color: #fff;
}

.carousel .owl-prev,
.carousel .owl-next,
.carousel2 .owl-prev,
.carousel2 .owl-next {
    background: rgba(255,255,255,0.5);
    color: #333;
    display: inline-block;
    font-size: 30px;
    height: 40px;
    margin-top: -20px;
    padding: 5px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 40px;
    opacity: 0;
    visibility: hidden;
}
.carousel .owl-prev,
.carousel2 .owl-prev {
    left: 0;
}
.carousel .owl-next,
.carousel2 .owl-next {
    right: 0;
}
.carousel .owl-prev:hover,
.carousel .owl-next:hover,
.carousel2 .owl-prev:hover,
.carousel2 .owl-next:hover {
    background: rgba(255,255,255,1);
}
.carousel:hover .owl-prev,
.carousel:hover .owl-next,
.carousel2:hover .owl-prev,
.carousel2:hover .owl-next {
    opacity: 1;
    visibility: visible;
}

/******************************************************************************
	BOUTONS
*******************************************************************************/
.button-btn [class*="button-animate"] {
	min-width: 95px;
	padding: 11px 15px;
	display: inline-block;
	position: relative;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	text-decoration: none !important;
	text-align: center;
}
.button-btn .large {
	padding: 13px 20px;
	font-size: 14px;
}


.button-btn .button-animate {
	border: 1px solid;
	background: transparent;
	position: relative;
	z-index: 1;
	-webkit-transition: .3s ease all;
	transition: .3s ease all;
}
.button-btn .button-animate:after {
	content: '';
	position: absolute;
	-webkit-transition: all 0.4s cubic-bezier(0, 0, 0, 0.3);
	transition: all 0.4s cubic-bezier(0, 0, 0, 0.3);
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.button-btn .button-animate:not(.default):hover,
.button-btn .button-animate:not(.default):active {
	color: #fff;
}
.button-btn .button-animate:hover:after,
.button-btn .button-animate:active:after {
	width: 100%;
}

.button-btn .button-animate.red {
	border-color: #ff1018;
	color: #ff1018;
}
.button-btn .button-animate.red:after {
	background: #ff1018;
}


/******************************************************************************
	AJUSTEMENT PADDING / MARGIN / HAUTEUR / LARGEUR
*******************************************************************************/
/** Height et width **/
.fullscreen {
  min-height: 100vh;
  width: 100%;
}
.w-10 {width: 10%;}
.w-25 {width: 25%;}
.w-33 {width: 33.33%;}
.w-50 {width: 50%;}
.w-75 {width: 75%;}
.w-100 {width: 100%;}

.h-10 {height: 10%;}
.h-33 {height: 33.33%;}
.h-25 {height: 25%;}
.h-50 {height: 50%;}
.h-75 {height: 75%;}
.h-100 {height: 100%;}

/** PADDING **/
/** padding top/bottom **/
.p-0 {padding: 0px 0;}
.ptb-5 {padding: 5px 0;}
.ptb-10 {padding: 10px 0;}
.ptb-15 {padding: 15px 0;}
.ptb-20 {padding: 20px 0;}
.ptb-25 {padding: 25px 0;}
.ptb-30 {padding: 30px 0;}
.ptb-35 {padding: 35px 0;}
.ptb-40 {padding: 40px 0;}
.ptb-45 {padding: 45px 0;}
.ptb-50 {padding: 50px 0;}
.ptb-55 {padding: 55px 0;}
.ptb-60 {padding: 60px 0;}
.ptb-65 {padding: 65px 0;}
.ptb-70 {padding: 70px 0;}
.ptb-75 {padding: 75px 0;}
.ptb-80 {padding: 80px 0;}
.ptb-85 {padding: 85px 0;}
.ptb-90 {padding: 90px 0;}
.ptb-95 {padding: 95px 0;}
.ptb-100 {padding: 100px 0;}
.ptb-110 {padding: 110px 0;}
.ptb-120 {padding: 120px 0;}
.ptb-125 {padding: 125px 0;}
.ptb-130 {padding: 130px 0;}
.ptb-135 {padding: 135px 0;}
.ptb-140 {padding: 140px 0;}
.ptb-145 {padding: 145px 0;}
.ptb-150 {padding: 150px 0;}

/** padding left-right **/
.plr-5 {padding: 0 5px;}
.plr-10{padding: 0 10px;}

/** padding top **/
.pt-0 {padding-top: 0!important;}
.pt-5 {padding-top: 5px;}
.pt-10 {padding-top: 10px;}
.pt-15 {padding-top: 15px;}
.pt-20 {padding-top: 20px;}
.pt-25 {padding-top: 25px;}
.pt-30 {padding-top: 30px;}
.pt-35 {padding-top: 35px;}
.pt-40 {padding-top: 40px;}
.pt-45 {padding-top: 45px;}
.pt-50 {padding-top: 50px;}
.pt-55 {padding-top: 55px;}
.pt-60 {padding-top: 60px;}
.pt-65 {padding-top: 65px;}
.pt-70 {padding-top: 70px;}
.pt-75 {padding-top: 75px;}
.pt-80 {padding-top: 80px;}
.pt-85 {padding-top: 85px;}
.pt-90 {padding-top: 90px;}
.pt-95 {padding-top: 95px;}
.pt-100 {padding-top: 100px;}

/** padding bottom **/
.pb-0 {padding-bottom: 0!important}
.pb-5 {padding-bottom: 5px;}
.pb-10 {padding-bottom: 10px;}
.pb-15 {padding-bottom: 15px;}
.pb-20 {padding-bottom: 20px;}
.pb-25 {padding-bottom: 25px;}
.pb-30 {padding-bottom: 35px;}
.pb-35 {padding-bottom: 35px;}
.pb-40 {padding-bottom: 40px;}
.pb-45 {padding-bottom: 45px;}
.pb-50 {padding-bottom: 50px;}
.pb-55 {padding-bottom: 55px;}
.pb-60 {padding-bottom: 60px;}
.pb-65 {padding-bottom: 65px;}
.pb-70 {padding-bottom: 70px;}
.pb-75 {padding-bottom: 75px;}
.pb-80 {padding-bottom: 80px;}
.pb-85 {padding-bottom: 85px;}
.pb-90 {padding-bottom: 90px;}
.pb-95 {padding-bottom: 95px;}
.pb-100 {padding-bottom: 100px;}

/** padding-left **/
.pl-5 {padding-left: 5px;}
.pl-10 {padding-left: 10px;}
.pl-15 {padding-left: 15px;}
.pl-20 {padding-left: 20px;}
.pl-25 {padding-left: 25px;}
.pl-30 {padding-left: 30px;}
.pl-35 {padding-left: 35px;}
.pl-40 {padding-left: 40px;}
.pl-45 {padding-left: 45px;}
.pl-50 {padding-left: 50px;}
.pl-55 {padding-left: 55px;}
.pl-60 {padding-left: 60px;}
.pl-65 {padding-left: 65px;}
.pl-70 {padding-left: 70px;}
.pl-75 {padding-left: 75px;}
.pl-80 {padding-left: 80px;}
.pl-85 {padding-left: 85px;}
.pl-90 {padding-left: 90px;}
.pl-95 {padding-left: 95px;}
.pl-100 {padding-left: 100px;}

/** padding-right **/
.pr-0 {padding-right: 0px!important;}
.pr-5 {padding-right: 5px;}
.pr-10 {padding-right: 10px;}
.pr-15 {padding-right: 15px;}
.pr-20 {padding-right: 20px;}
.pr-25 {padding-right: 25px;}
.pr-30 {padding-right: 30px;}
.pr-35 {padding-right: 35px;}
.pr-40 {padding-right: 40px;}
.pr-45 {padding-right: 45px;}
.pr-50 {padding-right: 50px;}
.pr-55 {padding-right: 55px;}
.pr-60 {padding-right: 60px;}
.pr-65 {padding-right: 65px;}
.pr-70 {padding-right: 70px;}
.pr-75 {padding-right: 75px;}
.pr-80 {padding-right: 80px;}
.pr-85 {padding-right: 85px;}
.pr-90 {padding-right: 90px;}
.pr-95 {padding-right: 95px;}
.pr-100 {padding-right: 100px;}


/** MARGIN **/
/** margin top/bottom **/
.mtb-0 {margin: 0px!important;}
.mtb-5 {margin: 5px 0;}
.mtb-10 {margin: 10px 0;}
.mtb-15 {margin: 15px 0;}
.mtb-20 {margin: 20px 0;}
.mtb-25 {margin: 25px 0;}
.mtb-30 {margin: 30px 0;}
.mtb-35 {margin: 35px 0;}
.mtb-40 {margin: 40px 0;}
.mtb-45 {margin: 45px 0;}
.mtb-50 {margin: 50px 0;}
.mtb-55 {margin: 55px 0;}
.mtb-60 {margin: 60px 0;}
.mtb-65 {margin: 65px 0;}
.mtb-70 {margin: 70px 0;}
.mtb-75 {margin: 75px 0;}
.mtb-80 {margin: 80px 0;}
.mtb-85 {margin: 85px 0;}
.mtb-90 {margin: 90px 0;}
.mtb-95 {margin: 95px 0;}
.mtb-100 {margin: 100px 0;}

/** margin bottom **/
.mb-0 {margin-bottom: 0px!important;}
.mb-5 {margin-bottom: 5px;}
.mb-10 {margin-bottom: 10px;}
.mb-15 {margin-bottom: 15px;}
.mb-20 {margin-bottom: 20px;}
.mb-25 {margin-bottom: 25px;}
.mb-30 {margin-bottom: 30px;}
.mb-35 {margin-bottom: 35px;}
.mb-40 {margin-bottom: 40px;}
.mb-45 {margin-bottom: 45px;}
.mb-50 {margin-bottom: 50px;}
.mb-55 {margin-bottom: 55px;}
.mb-60 {margin-bottom: 60px;}
.mb-65 {margin-bottom: 65px;}
.mb-70 {margin-bottom: 70px;}
.mb-75 {margin-bottom: 75px;}
.mb-80 {margin-bottom: 80px;}
.mb-85 {margin-bottom: 85px;}
.mb-90 {margin-bottom: 90px;}
.mb-95 {margin-bottom: 95px;}
.mb-100 {margin-bottom: 100px;}

/** margin top **/
.mt-0 {margin-top: 0px!important;}
.mt-10 {margin-top: 10px;}
.mt-15 {margin-top: 15px;}
.mt-20 {margin-top: 20px;}
.mt-25 {margin-top: 25px;}
.mt-30 {margin-top: 30px;}
.mt-35 {margin-top: 35px;}
.mt-40 {margin-top: 40px;}
.mt-45 {margin-top: 45px;}
.mt-50 {margin-top: 50px;}
.mt-55 {margin-top: 55px;}
.mt-60 {margin-top: 60px;}
.mt-65 {margin-top: 65px;}
.mt-70 {margin-top: 70px;}
.mt-75 {margin-top: 75px;}
.mt-80 {margin-top: 80px;}
.mt-85 {margin-top: 85px;}
.mt-90 {margin-top: 90px;}
.mt-95 {margin-top: 95px;}
.mt-100 {margin-top: 100px;}
.mt-120 {margin-top: 120px;}

/** margin left **/
.ml-0 {margin-left: 0px!important;}
.ml-10 {margin-left: 10px;}
.ml-15 {margin-left: 15px;}
.ml-20 {margin-left: 20px;}
.ml-25 {margin-left: 25px;}
.ml-30 {margin-left: 30px;}
.ml-35 {margin-left: 35px;}
.ml-40 {margin-left: 40px;}
.ml-45 {margin-left: 45px;}
.ml-50 {margin-left: 50px;}
.ml-55 {margin-left: 55px;}
.ml-60 {margin-left: 60px;}
.ml-65 {margin-left: 65px;}
.ml-70 {margin-left: 70px;}
.ml-75 {margin-left: 75px;}
.ml-80 {margin-left: 80px;}
.ml-85 {margin-left: 85px;}
.ml-90 {margin-left: 90px;}
.ml-95 {margin-left: 95px;}
.ml-100 {margin-left: 100px;}

/** margin right **/
.mr-0 {margin-right: 0px!important;}
.mr-10 {margin-right: 10px;}
.mr-15 {margin-right: 15px;}
.mr-20 {margin-right: 20px;}
.mr-25 {margin-right: 25px;}
.mr-30 {margin-right: 30px;}
.mr-35 {margin-right: 35px;}
.mr-40 {margin-right: 40px;}
.mr-45 {margin-right: 45px;}
.mr-50 {margin-right: 50px;}
.mr-55 {margin-right: 55px;}
.mr-60 {margin-right: 60px;}
.mr-65 {margin-right: 65px;}
.mr-70 {margin-right: 70px;}
.mr-75 {margin-right: 75px;}
.mr-80 {margin-right: 80px;}
.mr-85 {margin-right: 85px;}
.mr-90 {margin-right: 90px;}
.mr-95 {margin-right: 95px;}
.mr-100 {margin-right: 100px;}

/** Section padding **/
.section-padding-xs {padding: 50px 0;}
.section-padding-sm {padding: 80px 0;}
.section-padding-md {padding: 100px 0;}
.section-padding-lg {padding: 120px 0;}
.section-padding-xlg {padding: 150px 0;}

.section-padding-top-xs {padding-top: 50px;}
.section-padding-top-sm {padding-top: 80px;}
.section-padding-top-md {padding-top: 100px;}
.section-padding-top-lg {padding-top: 120px;}
.section-padding-top-xlg {padding-top: 150px;}

.section-padding-bottom-xs {padding-bottom: 50px;}
.section-padding-bottom-sm {padding-bottom: 80px;}
.section-padding-bottom-md {padding-bottom: 100px;}
.section-padding-bottom-lg {padding-bottom: 120px;}
.section-padding-bottom-xlg {padding-bottom: 150px;}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.section-padding-sm {padding: 60px 0;}
	.section-padding-md {padding: 80px 0;}
	.section-padding-lg {padding: 100px 0;}
	.section-padding-xlg {padding: 120px 0;}

	.section-padding-top-sm {padding-top: 60px;}
	.section-padding-top-md {padding-top: 80px;}
	.section-padding-top-lg {padding-top: 100px;}
	.section-padding-top-xlg {padding-top: 120px;}

	.section-padding-bottom-sm {padding-bottom: 60px;}
	.section-padding-bottom-md {padding-bottom: 80px;}
	.section-padding-bottom-lg {padding-bottom: 100px;}
	.section-padding-bottom-xlg {padding-bottom: 120px;}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.section-padding-sm {padding: 60px 0;}
	.section-padding-md {padding: 80px 0;}
	.section-padding-lg {padding: 90px 0;}
	.section-padding-xlg {padding: 110px 0;}

	.section-padding-top-sm {padding-top: 60px;}
	.section-padding-top-md {padding-top: 80px;}
	.section-padding-top-lg {padding-top: 90px;}
	.section-padding-top-xlg {padding-top: 110px;}
  
	.section-padding-bottom-sm {padding-bottom: 60px;}
	.section-padding-bottom-md {padding-bottom: 80px;}
	.section-padding-bottom-lg {padding-bottom: 90px;}
	.section-padding-bottom-xlg {padding-bottom: 110px;}
}

@media only screen and (max-width: 767px) {
	.section-padding-sm {padding: 55px 0;}
	.section-padding-md {padding: 60px 0;}
	.section-padding-lg {padding: 65px 0;}
	.section-padding-xlg {padding: 75px 0;}
	
	.section-padding-top-sm {padding-top: 55px;}
	.section-padding-top-md {padding-top: 60px;}
	.section-padding-top-lg {padding-top: 65px;}
	.section-padding-top-xlg {padding-top: 75px;}

	.section-padding-bottom-sm {padding-bottom: 55px;}
	.section-padding-bottom-md {padding-bottom: 60px;}
	.section-padding-bottom-lg {padding-bottom: 65px;}
	.section-padding-bottom-xlg {padding-bottom: 75px;}  
}

/****************************************************
	RESPONSIVE
****************************************************/
/** Min-Width **/
@media (min-width: 768px) {
	.top-social {
	text-align:right;
	padding-right:15px;
	}
	
	
	.leaflet-popup-content {
	font-size:16px;
	text-align:center;
	}
	#footer .copyright .list-inline > li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	h1, .h1 {
	font-size: 38px;
	}
	h2, .h2 {
	font-size: 30px;
	}
	h3, .h3 {
	font-size: 24px;
	}
}
@media (min-width: 992px) {
	.header-logo {
	max-width:210px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.navigation > ul > li > a {
    padding: 5px 10px;
	}
}

@media (min-width: 1400px) {
	.call-action .cta-content .cta-button {
	font-size: 22px;
	height: 60px;
	line-height: 58px;
	min-width: 260px;
    }
    .call-action .content-txt h3 {
	max-width: 100%;
	line-height: 48px;
    }
    .cta-content .cta-button {
    line-height: 59px;
    }
}

/** Max-Width **/
@media (max-width: 1199px) {
	.call-action .cta-content .content-txt {
    max-width: 550px;
    }
    .cta-content .content-txt {
    max-width: inherit;
    }
    .cta-content .content-txt h3 {
    font-size: 28px;
    }
}
@media (max-width: 991px) {
	.header-logo {
    max-width: 160px;
	}
	.breadcrumbs-page .breadcrumbs-content {
    min-height: 300px;
    }
    .breadcrumbs-page.bg-img .breadcrumbs-content {
    min-height: 230px;
    }
	
	
	.call-action {
    padding: 50px 0 60px;
    }
    .call-action .align-row-spacebetween {
	text-align: center;
	display: block;
    }
    .call-action .cta-content .content-txt {
    max-width: 100%;
    }
    .call-action .cta-content .cta-button {
	font-size: 15px;
	height: 50px;
	line-height: 50px;
	min-width: 200px;
	margin-top: 30px;
    }
}

@media (max-width: 767px) {
	h1, .h1 {
	font-size: 36px;
	}
	h2, .h2 {
	font-size: 28px;
	}
	h3, .h3 {
	font-size: 22px;
	}
	h4, .h4 {
	font-size: 20px;
	}
	
	.mean-container .mean-nav ul li a span {
	display:none;
	}
	.order-first,
	.text.order-first {
    -ms-flex-order: 13;
    order: 13;
	}
	.heading-style-2.heading-right {
	text-align:left;
	}
	.heading-style-2.heading-right .heading-inner:after,
	.heading-style-2.heading-right .heading-inner:before {
	left: 0;
	right:auto;
	}
	.breadcrumbs-page .breadcrumbs-content {
    min-height: 170px;
    }
    .breadcrumbs-page .breadcrumb > li {
    font-size: 12px;
    }
    .breadcrumbs-page.bg-img .breadcrumbs-content {
    min-height: 180px;
    }
	ul.fa-ul.text-right > li {
	text-align:left;
	}
	
	
	.call-action .cta-content .cta-button {
	font-size: 15px;
	height: 45px;
	line-height: 45px;
	min-width: 170px;
    }
    .call-action .cta-content .content-txt p {
	font-size: 16px;
	line-height: 27px;
    }
	.bottom-section .container {
    width: 450px;
    }
	
	.button-btn.float-left,
	.button-btn.float-right {
    float: none!important;
    text-align: center;
    display: block;
	}
}

@media (max-width: 576px) {
	h1, .h1 {
	font-size: 30px;
	}
	h2, .h2 {
	font-size: 22px;
	}
	h3, .h3 {
	font-size: 18px;
	}
	h4, .h4 {
	font-size: 16px;
	}
	.container {
    max-width: 400px;
	}
	.top-contact,
	.top-social {
	text-align:center;
	}
	
	
}
@media only screen and (max-width: 479px) {
	.breadcrumbs-page .breadcrumbs-content h1 {
    font-size: 24px;
    line-height: 30px;
    }
	.bottom-section .container {
    width: 100%;
    }
}
