* {
	-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,
body,
button,
input,
select,
textarea {
	font-family: 'Montserrat', sans-serif;
}
.font2 {
	font-family: 'Roboto', 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: 'Roboto', sans-serif;
	line-height: 1.3;
	color: #2b2b2b;
}
h1, .h1 {font-size: 36px;}
h2, .h2 {font-size: 32px;}
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: #447E8A;
	text-decoration: none;
	transition: all 0.4s ease-in-out 0s;
}
a:visited {
	color: #447E8A;
}
a:hover,
a:focus,
a:active {
	text-decoration: none;
	outline: none;
	color: #294C53;
}

.uppercase {
	text-transform:uppercase;
}
.justify {
	text-align:justify;
}
.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: #447E8A;
}
.top-contact {
	list-style: none;
	padding: 15px 0;
	text-align:center;
}

.top-contact li {
	display: inline-block;
	padding-right: 15px;
}
.top-contact li span {
	display:inline-block;
	margin-left:10px;
}
.top-contact li a {
	color:#f1f1f1
}
.top-contact li a:hover {
	color:#FFED7D;
	text-decoration:
}

.top-contact li {
	color: #fff;
	font-size:24px;
	font-weight:700;
}

/******************************************************************************
	HEADER
*******************************************************************************/
.header-bottomarea {
	background: #447E8A;
}
.header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: inline-block;
  padding: 5px 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: #fff;
    display: block;
    padding: 20px 10px;
}

.navigation > ul > li.active > a,
.navigation > ul > li:hover > a {
	color: #ADDEEF;
	background-color:#294C53;
}
.navigation .dropdown {
  position: relative;
}
.navigation .dropdown > a span {
	padding-left:10px;
}

.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;
}
.mean-container a.meanmenu-reveal {
    color: #fff;
}


/******************************************************************************
	HEADING
*******************************************************************************/
.heading-inner {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	margin-top: 0;
	text-rendering: optimizeLegibility;
}
.heading h1.heading-inner {
	font-size:30px;
}
.heading h2.heading-inner {
	font-size:24px;
}
.heading .heading-inner {
	padding-bottom: 15px;
}
.heading .heading-inner:before {
	content: '';
	position: absolute;
	bottom: 0px;
	height: 3px;
	width: 80px;
	background: #447E8A;
	left: 0;
	border-radius: 7px;
}
.heading .heading-inner:after {
	content: '';
	position: absolute;
	bottom: 1px;
	height: 1px;
	width: 100%;
	background: #444;
	left: 0;
}
#ville .heading .heading-inner:before {
    background: #ADDEEF;
}

.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;
}


ul.list-unstyled.text-right > li {
	text-align:right;
}

/******************************************************************************
	BREADCRUMB
*******************************************************************************/
.breadcrumbs-page {
	background-image: url(../img/slider/slide1.jpg);
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment:fixed;
	background-size: cover;
	position:relative;
}
.overlay {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background:rgba(0, 0, 0, .6);
	z-index:0;
}

.over-caption {
	position:absolute;
	padding:5px 5px;
	text-align:center;
	color:#fff;
	bottom:8px;
	left:8px;
	right:8px;
	background:rgba(0, 0, 0, .8);
	z-index:2;
}

.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: #ADDEEF;
}
.breadcrumbs-page .breadcrumb > li:first-child {
    padding-left: 0;
}
.breadcrumbs-page .breadcrumbs-content {
    min-height: 250px;
}
.breadcrumbs-page .breadcrumb > .active {
    color: #ADDEEF;
}
.breadcrumbs-page .align-col-center-left {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
}

/******************************************************************************
	HOMEPAGE
*******************************************************************************/
.slider {
	margin-bottom:-1px;
}
.presta li span {
	color:#0072CD;
}

.portrait img {
	max-width:100px;
	height:auto;
	margin:5px 10px 5px 0;
	border-radius:5px;
}

.card {
    border-radius: 5px;
	border:1px solid #447E8A;
	padding:8px;
}
.card .img-area img {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.card .img-area {
    overflow: hidden;
}
.card .img-area img {
    width: 100%;
	
}
.card .card-content a {
  color: #333;
}
.card .img-area {
    border-radius:0px;
}
.card:hover .img-area img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
	
}
.card .card-content {
    border: 1px solid #eee;
    border-top: 0;
    padding: 21px 10px;
	text-align:center;
}
.card .card-content a:hover {
    color: #027AEC;
	
}
.card .card-content h3 {
    margin-bottom:0;
	font-size:22px;
}

.bg-color-f8f {
    background-color: #f8f8f8;
}
.bg-color-fff {
    background-color: #ffffff;
}

#ville {
	background:#1B3237;
}
#ville li,
#ville .heading h2 {
	color:#fff;	
}
#ville li > span {
	color:#ADDEEF;
	
}

ul.horaire > li > span {
	color:#447E8A;
	font-size:18px;
	top:2px;
}
ul.parking > li > span {
	color:#064DA1;
	font-size:18px;
	top:2px;
}
ul.handicap > li > span {
	color:#053FA2;
	font-size:18px;
	top:2px;
}

ul.domaine > li > span,
ul.consult > li > span {
	color:#447E8A;
	font-size:18px;
	top:2px;
}

/******************************************************************************
	TESTIMONIAL
*******************************************************************************/
.testimonial-caption {
  padding: 15px;
  padding-top: 25px;
}
.testimonial-text > p {
  padding: 15px;
  margin: 1em 0 2em;
  position: relative;
  text-align: left;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.testimonial-text > p:before {
  left: 30px;
  content: "";
  bottom: -14px;
  display: block;
  position: absolute;
  border-style: solid;
  border-width: 14px 14px 0;
}
.testimonial-text > p:after {
  left: 33px;
  content: "";
  bottom: -11px;
  display: block;
  position: absolute;
  border-style: solid;
  border-width: 11px 11px 0;
}
.testimonial-text > p > i {
  margin-right: 5px;
  color:#447E8A;
}
.testimonial-image img {
  display: block;
  max-width: 70px;
  height:auto;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-filter: grayscale(70%);
  -moz-filter: grayscale(70%);
  -ms-filter: grayscale(70%);
  -o-filter: grayscale(70%);
  filter: grayscale(70%);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.testimonial-caption:hover .testimonial-image img {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}
.testimonial-author {
  padding-left: 5px;
  padding-right: 5px;
}
.testimonial-author > h5 {
  font-weight: 600;
  margin: 5px 0px 5px 0px;
  text-transform: capitalize;
}

.testimonial-rating {
  padding: 0px;
  list-style-type: none;
  margin: 5px 0px 5px 0px;
}
.testimonial-rating li {
  display: inline;
}

.testimonial-text > p {
  color: #888888;
  border: 2px solid #447E8A;
}
.testimonial-text > p:before {
  border-color: #447E8A transparent;
}
.testimonial-text > p:after {
  border-color: #ffffff transparent;
}
.testimonial-author > h5 {
  color: #333;
}
.testimonial-rating li i {
  color: #feb600;
}

/******************************************************************************
	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;
}

/******************************************************************************
	CALL-TO-ACTION
*******************************************************************************/
.call-action {
    background-color: #447E8A/*1b1c21*/;
}
.call-action .cta-content .content-txt h3 {
	position:relative;
	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;
  border-radius: 50px;
}
.cta-content .cta-button {
    background: #ADDEEF;
    z-index: 1;
    color: #294C53;
    position: relative;
    line-height: 56px;
}
.cta-content .cta-button::after {
    border: 1px solid #ADDEEF;
    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);
	border-radius: 50px;
}
.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);
}

.cta12 .cta-content {
  border: 1px solid #f1f1f1;
  padding: 35px;
}
.cta12 .cta-content {
  border-bottom: 2px solid #447E8A;  
}
.cta12 .cta-content.consultation {
    border-bottom: 0 solid #447E8A;
}

.cta12 .cta-content .content-txt p {
    max-width: 850px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

/******************************************************************************
	CONTACT
*******************************************************************************/
.iconefont {
	float: left;
	margin-left: 15px;
	margin-top: -32px;
	position: relative;
	z-index: 2;
	color:#447E8A;
	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, #mapid2 {
	height: 450px;
}
.leaflet-popup-content {
    text-align: left!important;
}
.leaflet-popup-content h4 {
	color:#447E8A;
    text-align: left!important;
	font-size:18px;
	margin-bottom:5px;
}
.leaflet-popup-content p {
    margin: 0 0 8px!important;
}

address h5 {
	color:#447E8A;
	margin-bottom:0;
	font-weight:600;
	font-size:20px;
}


/******************************************************************************
	PAGE CONTACT
*******************************************************************************/
.page-section.iframe {
	background-color:#eef2f6;
	padding:40px 0;
}

/******************************************************************************
	PAGE MENIONS LEGALES
*******************************************************************************/
#mentions h2 > i {
    color: #447E8A;
    margin-right: 8px;
}

/******************************************************************************
	FOOTER DEPARTEMENT / VILLE
*******************************************************************************/
#departement ul.fa-ul > li > a {
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease-in-out 0s;
}
#departement ul.fa-ul > li > a:hover {
    color: #ADDEEF;
    text-decoration: none;
}


/******************************************************************************
	FOOTER
*******************************************************************************/
#footer .copyright {
	background:#0D191B;
	border-top: 1px solid #0D191B;
	line-height: 22px;
	padding: 31px 0 30px;
}
#footer .copyright, 
#footer .copyright a {
	color:#f7f7f7;
}
#footer .copyright a:hover {
	color:#ADDEEF; 
}

/******************************************************************************
	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: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
	-webkit-transition: all 250ms linear;
	-moz-transition: all 250ms linear;
	transition: all 250ms linear;
    opacity: 0;
}
#back-to-top:hover {
	background-color: rgba(110, 133, 138, 0.95);
}
#back-to-top.show {
    opacity: 1;
}

/******************************************************************************
	BOUTONS
*******************************************************************************/
.button-btn {
    margin: 25px 0;
}
.button-btn button,
.button-btn a {
    border: 1px solid #0072CD;
    color: #0072CD;
    display: block;
    font-size: 18px;
    line-height: 50px;
    padding: 0 45px;
    position: relative;
    text-transform: uppercase;
	border-radius: 50px;
	margin: 0 auto;
}

.button-btn a i {
    overflow: hidden;
}

.btn-style a.btn-sm {
    line-height: 40px;
    padding: 0 25px;
}
.btn-style a.btn-md {
    line-height: 45px;
    padding: 0px 40px;
}
.btn-style a.btn-lg {
    line-height: 53px;
    padding: 0 45px;
}
.btn-style a.btn-xl {
    line-height: 60px;
    padding: 0 60px;
}

.button-btn button,
.btn-style a {
    background: #447E8A;
    color: #fff;
    border-color: #447E8A;
}
.button-btn button:hover,
.btn-style a:hover {
    background: transparent;
    color: #447E8A;
}

.img-thumbnail {
    padding: .5rem;
    background-color: #fff;
	border: 1px solid #447E8A;
    border-radius: .25rem;
    max-width: 100%;
    height: auto;
}

/****************************************************
	RESPONSIVE
****************************************************/
/** Min-Width **/
@media (min-width:579px) {
	.desktop {display:none;}
}
@media (min-width: 768px) {
	.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:130px;
	}
	.call-action .cta-content .content-txt h3 {
    font-size: 32px;
	margin-bottom:0;
	}
}

@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: 100px;
	}
	.mean-container a.meanmenu-reveal {
    top: -70px !important;
	}
	.breadcrumbs-page .breadcrumbs-content {
    min-height: 300px;
    }
    .breadcrumbs-page.bg-img .breadcrumbs-content {
    min-height: 300px;
	
    }
	.card .card-content {
    padding: 21px 15px 25px;
    }	
	.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 .content-txt h3 {
    font-size: 16px;
	}
    .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;
	}
	.top-contact li span {
	display:block;
	margin-top:10px;
	margin-left:0;
	}
	.mean-container .mean-nav ul li a span {
	display:none;
	}
	.order-first,
	.text.order-first {
    -ms-flex-order: 13;
    order: 13;
	}
	.heading.heading-right {
    text-align:left;
	}
	.heading-right .heading-inner:after,
	.heading-right .heading-inner:before {
	left: 0!important;
	right:auto!important;
	}
	.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;
	}
	.card {
    margin-bottom: 50px;
    } 
	.call-action .cta-content .content-txt h3 {
    font-size: 24px;
	}
	.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: 18px;
	line-height: 27px;
    }
	.bottom-section .container {
    width: 450px;
    }
	
	.button-btn.float-left,
	.button-btn.float-right {
    float: none!important;
    text-align: center;
    display: block;
	}
	.cta12 .cta-content {
    padding: 15px;
	}
	.cta12 .cta-content .content-txt p {
    padding: 0 10px;
	}
}

@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 {
	text-align:center;
	}
	.top-contact li {
    font-size: 20px;
	}
	.mobile {
	display:none;
	}
	
	
}
@media only screen and (max-width: 479px) {
	.breadcrumbs-page .breadcrumbs-content h1 {
    font-size: 24px;
    line-height: 30px;
    }
	.bottom-section .container {
    width: 100%;
    }
}
