/* CSS Document */
/* undohtml.css */
/* (CC) 2004 Tantek Celik. Some Rights Reserved.             */
/*   http://creativecommons.org/licenses/by/2.0                   */
/* This style sheet is licensed under a Creative Commons License. */
/* Purpose: undo some of the default styling of common (X)HTML browsers */
/* Paste this css to your style sheet file or under head tag */
/* This only works with JavaScript, 
if it's not present, don't show loader */
.no-js #loader {
  display: none;
}
.requis{
	color: #EE3B33;
}
.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}
.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background: url(../images/Preloader.gif) center no-repeat #fff;
}
* {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  font-family: 'Barlow', sans-serif;
}
/* link underlines tend to make hypertext less readable, 
   because underlines obscure the shapes of the lower halves of words */
:link,
:visited {
  text-decoration: none;
}
/* avoid browser default inconsistent heading font-sizes */
/* and pre/code too */
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code {
  font-size: 1em;
}
/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with 
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html, p, blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
body,
html,
blockquote,
fieldset,
input {
  margin: 0;
  padding: 0;
}
/* whoever thought blue linked image borders were a good idea? */
a img,
:link img,
:visited img {
  border: none;
}
/* de-italicize address */
address {
  font-style: normal;
}
/* more varnish stripping as necessary... */
h1 {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
h2 {
  font-size: 46px;
  font-weight: 500;
  letter-spacing: 1.5px;
}
h3 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.5px;
}


.accueil {
  background: url('../images/background.jpg') no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
}

.sub {
  background: url('../images/background-gears.jpg') no-repeat;
  background-size: contain;
}

.centering {
  width: 100%;
  max-width: 1600px;
  padding-left: 9rem;
  padding-right: 9rem;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 1440px) {
  .centering {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
@media screen and (max-width: 1280px) {
  .centering {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .centering {
    padding-left: 4%;
    padding-right: 4%;
  }
}
#index .site-header .site-header__nav-item.index {
  color: #ee3b33;
}
#actualites .site-header .site-header__nav-item.actualites {
  color: #ee3b33;
}
#notre712 .site-header .site-header__nav-item.notre712 {
  color: #ee3b33;
}
#outils .site-header .site-header__nav-item.outils {
  color: #ee3b33;
}
#contact .site-header .site-header__nav-item.contact {
  color: #ee3b33;
}
.site-header__top {
  background: #ee3b33;
  padding: 10px 0;
}
.site-header__top-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.site-header__top-tagline {
  color: #ffffff;
  font-weight: bolder;
  font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.site-header__top-fb,
.site-header__top-yt {
  margin-left: 15px;
}
.site-header__top-fb img,
.site-header__top-yt img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  .site-header__top {
    padding-left: 50px;
  }
  .site-header__top-tagline {
    font-size: 14px;
    max-width: 35%;
  }
  .site-header__top-phone {
    font-size: 14px;
    margin: 0 10px;
  }
  .site-header__top-fb,
  .site-header__top-yt {
    margin-left: 15px;
  }
}
.site-header__bottom {
  padding: 40px 0;
}
.site-header__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header__bottom-logo-ctn {
  padding-right: 10px;
  max-width: 25%;
  display: flex;
  flex-direction: column;
}
.site-header__bottom-logo-ctn a {
  display: block;
}
.site-header__bottom-logo-ctn img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .site-header__bottom-logo-ctn {
    flex-direction: row;
    max-width: none;
  }
}
.site-header__bottom-logo-tagline {
  display: none;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .site-header__bottom-logo-tagline {
    display: block;
  }
}
.site-header__bottom-nav-ctn {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .site-header__bottom-nav-ctn {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 50;
    padding: 25px;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
  }
  .site-header__bottom-nav-ctn.active {
    transform: translateX(0);
  }
}
.site-header__nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #c8cacb;
}
.site-header__nav-top-tagline {
  max-width: 20%;
  font-size: 14px;
  margin-right: 5%;
}
@media screen and (max-width: 1024px) {
  .site-header__nav-top-tagline {
    display: none;
  }
}
.site-header__nav-bottom {
  margin-top: 10px;
}
.site-header__nav-bottom span {
  color: #0053a0;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
.site-header__nav {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.site-header__nav-item {
  font-size: 20px;
  color: #0f0e0e;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
@media screen and (max-width: 1440px) {
  .site-header__nav-item {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  .site-header__nav-item {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .site-header__nav-item {
    font-size: 20px;
    margin: 10px 0;
  }
}
.site-header__nav-item.active {
  color: #ee3b33;
}
.site-header__nav-item:hover {
  color: #ee3b33;
}
.site-header__nav-link {
  position: relative;
  padding-bottom: 1rem;
}
.site-header__nav-link:hover .site-header__nav-submenu {
  opacity: 1;
  visibility: visible;
}
.site-header__nav-submenu {
  position: absolute;
  list-style-type: none;
  padding: 0;
  margin: 0;
  z-index: 50;
  opacity: 0;
  top: 100%;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .site-header__nav-submenu {
    position: relative;
    opacity: 1;
    visibility: visible;
  }
}
.site-header__nav-sublink {
  background: #fff;
  border: 1px solid #707070;
  border-bottom: none;
  padding: 15px 75px 15px 45px;
  white-space: nowrap;
}
.site-header__nav-sublink:last-of-type {
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .site-header__nav-sublink {
    border: none;
    padding: 15px 15px 0;
  }
  .site-header__nav-sublink:last-of-type {
    border: none;
  }
}
.site-header__nav-subitem {
  color: #0053a0;
  transition: color 0.25s ease;
}
.site-header__nav-subitem:hover {
  color: #ee3b33;
}
@media screen and (max-width: 768px) {
  .site-header__nav {
    flex-direction: column;
  }
}
.site-header__mobile-toggle {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  color: #000;
  background: #fff;
  width: 40px;
  height: 40px;
  transform: translateX(100%);
  cursor: pointer;
  padding: 5px 0;
  box-sizing: border-box;
}
.site-header__mobile-toggle div {
  width: 50%;
  height: 2px;
  background: #000;
}
@media screen and (max-width: 768px) {
  .site-header__mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }
}
.site-footer {
  background: #2d2d2d;
  padding: 100px 0;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
}
.site-footer__column {
  flex-basis: 25%;
}
.site-footer__column p,
.site-footer__column a {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0;
}
.site-footer__column a {
  transition: color 0.25s ease;
}
.site-footer__column a:hover {
  color: #ee3b33;
}
.site-footer__column-logo {
  max-width: 100%;
}
.site-footer__column-logos {
  display: flex;
  justify-content: space-evenly;
  margin: 20px 40px;
}
.site-footer__column.menu a {
  display: block;
}
@media screen and (max-width: 1440px) {
  .site-footer__column p,
  .site-footer__column a {
    font-size: 18px;
    line-height: 32px;
  }
}
@media screen and (max-width: 1280px) {
  .site-footer__column p,
  .site-footer__column a {
    font-size: 16px;
    line-height: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .site-footer__column {
    flex-basis: 50%;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .site-footer__column {
    flex-basis: 100%;
  }
  .site-footer__column p,
  .site-footer__column a {
    font-size: 14px;
    line-height: 28px;
  }
}
.site-footer__footnote {
  flex-basis: 100%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 32px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .site-footer__footnote {
    font-size: 16px;
    line-height: 28px;
  }
}
.site-footer__fb img,
.site-footer__yt img {
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 1280px) {
  .site-footer__fb img,
  .site-footer__yt img {
    width: 40px;
    height: 40px;
  }
}
.slider-ctn {
  position: relative;
  display: block;
}
.slider-ctn__inner {
  position: relative;
}
.slider-nav {
  display: flex;
  position: absolute;
  left: 60%;
  top: 70%;
}
.slider-nav__prev,
.slider-nav__next {
  background: #fff;
  border: 1px solid #707070;
  display: flex;
  width: 65px;
  height: 65px;
  padding: 22px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.25s ease;
}
.slider-nav__prev:hover,
.slider-nav__next:hover {
  background: #cccccc;
}
.slider-nav__prev {
  transform: rotate(-90deg);
  margin-right: 10px;
}
.slider-nav__next {
  transform: rotate(90deg);
}
@media screen and (max-width: 1024px) {
  .slider-nav {
    display: none;
  }
}
.slider-single {
  display: flex;
}
.slider-single__left {
  flex-basis: 50%;
  background: #0053a0;
  padding: 100px 100px;
  box-sizing: border-box;
  color: #fff;
}
.slider-single__left h2 {
  margin: 20px 0 30px;
}
.slider-single__left p {
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 32px;
  margin-bottom: 30px;
}
.slider-single__left-top {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
}
.slider-single__left-top span {
  margin-right: 10px;
}
.slider-single__left-top span:first-of-type {
  color: #fdb728;
}
@media screen and (max-width: 1280px) {
  .slider-single__left {
    padding: 50px;
  }
  .slider-single__left h2 {
    font-size: 32px;
  }
}
.slider-single__right {
  position: relative;
  flex-basis: 50%;
  padding: 50px 0;
}
.slider-single__right::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 85%;
  background: #0053a0;
}
.slider-single__right img {
  position: relative;
  max-width: 100%;
}
.slider-single__details {
  display: flex;
  width: 75px;
  height: 75px;
  background: #fdb728;
  padding: 25px;
  box-sizing: border-box;
  transition: background 0.25s ease;
}
.slider-single__details img {
  transform: rotate(90deg);
}
.slider-single__details:hover {
  background: #fed98d;
}
@media screen and (max-width: 1024px) {
  .slider-single {
    flex-wrap: wrap;
  }
  .slider-single__left {
    flex-basis: 100%;
    padding: 25px;
  }
  .slider-single__left h2 {
    margin: 20px 0 30px;
  }
  .slider-single__left p {
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 32px;
    margin-bottom: 30px;
  }
  .slider-single__left-top {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .slider-single__left-top span {
    margin-right: 10px;
  }
  .slider-single__left-top span:first-of-type {
    color: #fdb728;
  }
  .slider-single__right {
    position: relative;
    flex-basis: 100%;
    padding: 0;
  }
  .slider-single__right::before {
    display: none;
  }
  .slider-single__right img {
    position: relative;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) and screen and (max-width: 1280px) {
  .slider-single__left {
    padding: 50px;
  }
  .slider-single__left h2 {
    font-size: 32px;
  }
}
.half-blocks {
  margin: 100px 0;
}
.half-blocks__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.half-blocks__single {
  flex-basis: 50%;
  min-width: 50%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.half-blocks__single:first-of-type {
  padding-right: 100px;
  border-right: 1px solid #707070;
}
.half-blocks__single:last-of-type {
  padding-left: 100px;
}
.half-blocks__single span {
  color: #0053a0;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.half-blocks__single h2 {
  font-weight: bold;
  color: #2d2d2d;
}
.half-blocks__single p {
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 32px;
}
.half-blocks__single a {
  position: relative;
  display: block;
  width: 75%;
  background: #0053a0;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 32px;
  margin-top: auto;
  transition: background 0.25s ease;
}
.half-blocks__single a:hover {
  background: #0788ff;
}
.half-blocks__single a::after {
  position: absolute;
  content: url(../images/arrow.svg);
  top: 50%;
  right: 10%;
  transform: translateY(-50%) rotate(90deg);
}

a.my_bt {
  position: relative;
  display: block;
  width: 55%;
  background: #0053a0;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 32px;
  margin-top: auto;
  transition: background 0.25s ease;
}
a.my_bt:hover {
  background: #0788ff;
}
a.my_bt::after {
  position: absolute;
  content: url(../images/arrow.svg);
  top: 50%;
  right: 10%;
  transform: translateY(-50%) rotate(90deg);
}
.half-blocks__single-image,
.half-blocks__single-no-image {
  margin: 20px 0;
}
.half-blocks__single-no-image  p {
  margin-top: 50px;
  margin-bottom: 30px;
}
.half-blocks__single-image {
  display: flex;
  align-items: center;
}
.half-blocks__single-image img {
  margin-right: 20px;
}
@media screen and (max-width: 1440px) {
  .half-blocks__single:first-of-type {
    padding-right: 50px;
  }
  .half-blocks__single:last-of-type {
    padding-left: 50px;
  }
  .half-blocks__single h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 1280px) {
  .half-blocks__single:first-of-type {
    padding-right: 25px;
  }
  .half-blocks__single:last-of-type {
    padding-left: 25px;
  }
  .half-blocks__single h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .half-blocks__single {
    flex-basis: 100%;
    margin: 25px 0;
  }
  .half-blocks__single:first-of-type {
    border-right: none;
    border-bottom: 1px solid #707070;
    padding-right: 0;
    padding-bottom: 50px;
  }
  .half-blocks__single:last-of-type {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .half-blocks__single a {
    width: 100%;
    padding: 15px 30px 15px 15px;
    box-sizing: border-box;
  }
  .half-blocks__single-image {
    flex-direction: column;
  }
}
.services-ctn {
  background: #ee3b33;
  padding: 150px 0;
}
.services-ctn__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.services-ctn__single {
  flex-basis: 25%;
  padding: 0 1%;
  box-sizing: border-box;
  text-align: center;
}
.services-ctn__single img {
  max-width: 100%;
}
.services-ctn__single h3 {
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin: 30px 0;
}
.services-ctn__single p {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 32px;
  margin-bottom: 30px;
}
.services-ctn__single a {
  display: block;
  width: 50%;
  margin: 0 auto;
  background: #fff;
  color: #ee3b33;
  padding: 10px;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 24px;
  transition: background 0.25s ease;
}
.services-ctn__single a:hover {
  background: #cccccc;
}
.services-ctn__single:first-of-type {
  margin-left: -1%;
}
.services-ctn__single:last-of-type {
  margin-right: -1%;
}
@media screen and (max-width: 1280px) {
  .services-ctn__single {
    flex-basis: 50%;
    margin-bottom: 50px;
    padding: 0 5%;
  }
  .services-ctn__single:first-of-type {
    margin-left: 0;
  }
  .services-ctn__single:last-of-type {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .services-ctn__single {
    flex-basis: 100%;
    margin-bottom: 50px;
    padding: 0 5%;
  }
  .services-ctn__single:first-of-type {
    margin-left: 0;
  }
  .services-ctn__single:last-of-type {
    margin-right: 0;
  }
}
.news__search-ctn span {
  font-size: 24px;
  color: #707070;
  text-transform: uppercase;
  font-weight: 600;
}
.news__search-ctn form {
  display: flex;
  margin: 20px 0;
}
.news__search-ctn form input {
  flex-basis: 92.5%;
  margin-right: 1px;
  padding: 15px 25px;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 1.5px;
}
.news__search-ctn form input::placeholder {
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: 1.5px;
  line-height: 32px;
}
.news__search-ctn form button {
  flex-basis: 7.5%;
  border: none;
  background: #ee3b33;
  cursor: pointer;
  transition: background 0.25s ease;
}
.news__search-ctn form button:hover {
  background: #ad150e;
}
@media screen and (max-width: 768px) {
  .news__search-ctn span {
    font-size: 18px;
  }
  .news__search-ctn form input {
    flex-basis: 80%;
  }
  .news__search-ctn form input::placeholder {
    font-size: 18px;
    line-height: 24px;
  }
  .news__search-ctn form button {
    flex-basis: 20%;
  }
}
@media screen and (max-width: 480px) {
  .news__search-ctn span {
    font-size: 18px;
  }
  .news__search-ctn form input {
    flex-basis: 70%;
	font-size: 16px;
    line-height: 24px;
  }
  .news__search-ctn form input::placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .news__search-ctn form button {
    flex-basis: 30%;
  }
}
.news__main {
  margin-top: 75px;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .news__main {
	  padding-left: 0;
	}
}
.news__main-head {
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.news__main-head span {
  font-size: 24px;
  color: #0053a0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-right: 25px;
}
.news__main-head::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
  height: 10px;
  background: #ee3b33;
}
.news__main-content.pagination a.active {
  background-color: #C8C8C8;
}
.news__main-content {
  margin-bottom: 100px;
}
.news__main-content p {
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 32px;
}
.news__main-content img {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .news__main-head span {
    font-size: 18px;
  }
  .news__main-head h1 {
    font-size: 36px;
  }
}
.news__back {
  margin-bottom: 100px;
}
.news__back-btn {
  display: inline-block;
  color: #fff;
  background: #ee3b33;
  padding: 10px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding-right: 25px;
  transition: background 0.25s ease;
}
.news__back-btn:hover {
  background: #ad150e;
}
.news__back-btn img {
  transform: rotate(-90deg);
  margin-right: 10px;
}
.units__main {
  margin-top: 75px;
}
.units__main-head {
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.units__main-head span {
  font-size: 24px;
  color: #0053a0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-right: 25px;
}
.units__main-head::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
  height: 10px;
  background: #ee3b33;
}
.units__main-content {
  margin-bottom: 100px;
}
.units__main-content h3 {
  color: #4e4d4d;
  font-weight: 600;
}
.units__main-content h3.with-box {
  position: relative;
  padding-left: 3rem;
  box-sizing: border-box;
}
.units__main-content h3.with-box::before {
  position: absolute;
  content: '';
  background: #ee3b33;
  width: 2rem;
  height: 2rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.units__main-content p {
  color: #4e4d4d;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-size: 22px;
  line-height: 32px;
}
.units__main-content-block {
  margin-bottom: 4rem;
}
.units__main-cards-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.units__main-cards-wrapper.text-card p {
  flex-basis: 66%;
}
@media screen and (max-width: 768px) {
  .units__main-cards-wrapper.text-card p {
    flex-basis: 100%;
  }
}
.units__main-card {
  display: flex;
  flex-direction: column;
  flex-basis: 33%;
  padding: 0 1%;
  box-sizing: border-box;
}
.units__main-card img {
  width: 100%;
  margin-bottom: 1rem;
}
.units__main-card:first-of-type {
  margin-left: -1%;
}
.units__main-card:last-of-type {
  margin-right: -1%;
}
.units__main-card p {
  margin: 5px 0;
  font-size: 16px;
  line-height: 18px;
}
.units__main-card p.title {
  font-weight: 600;
}
.units__main-card h4 {
  position: relative;
  color: #4e4d4d;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 22px;
  padding-bottom: 1.5rem;
  margin-bottom: 0.5rem;
}
.units__main-card h4::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
  height: 10px;
  background: #ee3b33;
}
@media screen and (max-width: 768px) {
  .units__main-card {
    flex-basis: 100%;
    margin-bottom: 50px;
    padding: 0 5%;
  }
  .units__main-card:first-of-type {
    margin-left: 0;
  }
  .units__main-card:last-of-type {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .units__main-head span {
    font-size: 18px;
  }
  .units__main-head h1 {
    font-size: 48px;
  }
}
.ftq-block {
  background: #0053a0;
  padding: 5rem 0;
  color: #fff;
}
.ftq-block h2 {
  position: relative;
  padding-bottom: 3rem;
  margin-bottom: 4rem;
}
.ftq-block h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
  height: 10px;
  background: #fff;
}
.ftq-block p {
  font-size: 18px;
  letter-spacing: 0.5px;
  font-size: 22px;
  line-height: 32px;
}
.ftq-block h3 {
  margin: 3rem 0;
}
.ftq-block .row {
  display: flex;
  flex-wrap: wrap;
}
.ftq-block .row p {
  margin: 0 0 5px;
}
@media screen and (max-width: 768px) {
  .ftq-block .row.inner .half {
    flex-basis: 50%;
  }
}
.ftq-block .half {
  flex-basis: 50%;
}
.ftq-block .half img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
	
	a.my_bt {
  position: relative;
  display: block;
  width: 75%;
  background: #0053a0;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 32px;
  margin-top: auto;
  transition: background 0.25s ease;
}
  .ftq-block .half {
    flex-basis: 100%;
  }
}

