@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&display=swa");
/*VAR Colors*/
/*End VAR colors*/
/*Class colors*/
.color-white {
  color: #fff;
}

.color-orange {
  color: #F8B600;
}

.color-gray {
  color: #707070;
}

.color-blue {
  color: #0053A9;
}

/*END Class colors*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "PT Sans", sans-serif;
  font-size: 18px;
}

body {
  margin: 0 auto;
  background: rgba(254, 254, 254, 0.8);
  color: #707070;
  overflow-x: hidden;
}

p {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-size: 18px;
}

/*FONTs family */
.pt-sans {
  font-family: "PT Sans", sans-serif;
}

.pt-serif {
  font-family: "PT Serif", serif;
}

/*Fonts*/
.font-size-46 {
  font-size: 46px;
}

.font-size-38 {
  font-size: 38px;
}

.font-size-36 {
  font-size: 36px;
}

.font-size-26 {
  font-size: 26px;
}

.font-size-24 {
  font-size: 24px;
}

.font-size-23 {
  font-size: 23px;
}

.font-size-18 {
  font-size: 18px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-13 {
  font-size: 13px;
}

.font-size-12 {
  font-size: 12px;
}

.font-size-10 {
  font-size: 10px;
}

.font-size-8 {
  font-size: 8px;
}

@media only screen and (max-width: 576px) {
  .font-size-46 {
    font-size: 36px;
  }
  .font-size-36 {
    font-size: 26px;
  }
  .font-size-24 {
    font-size: 20px;
  }
}
/*Styles fonts*/
.style-bold {
  font-weight: bold;
}

.style-normal {
  font-weight: 400;
}

.style-uppercase {
  text-transform: uppercase;
}

.padding-top-100 {
  padding-top: 100px;
}

/*General width*/
.width-80 {
  width: 80%;
}

@media only screen and (max-width: 768px) {
  .width-80 {
    width: 100%;
  }
}
/*FLEX*/
.flex-mff {
  display: flex;
}

.flex-mff-justify-content {
  justify-content: center;
}

.flex-mff-justify-content-start {
  justify-content: flex-start;
}

.flex-mff-justify-content-end {
  justify-content: flex-end;
}

.flex-mff-justify-content-between {
  justify-content: space-between;
}

.flex-mff-justify-content-around {
  justify-content: space-around;
}

.flex-mff-align-item-start {
  align-items: flex-start;
}

.flex-mff-align-item-end {
  align-items: flex-end;
}

.flex-mff-align-item-center {
  align-items: center;
}

.flex-direction-col {
  flex-direction: column;
}

.flex-mff-wrap {
  flex-wrap: wrap;
}

.flex-gap-mff {
  gap: 10px;
}

.flex-gap-mff-100 {
  gap: 100px;
}

.flex-gap-mff-50 {
  gap: 50px;
}

.flex-width-mff-100 {
  width: 100%;
}

.flex-width-mff-80 {
  width: 80%;
}

.flex-width-mff-75 {
  width: 75%;
}

.flex-width-mff-50 {
  width: 50%;
}

.flex-width-mff-40 {
  width: 40%;
}

.flex-width-mff-33 {
  width: 33%;
}

.flex-width-mff-25 {
  width: 25%;
}

.flex-width-mff-20 {
  width: 20%;
}

/*END FLEX*/
.text-decoration {
  text-decoration: none;
}

/*BUTTONS*/
.buttons {
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0px 3px 6px rgba(0, 83, 169, 0.1098039216);
  border-radius: 9px;
  padding: 10px 20px;
}
.buttons:hover {
  background-color: #ffffff;
}

.orange-button {
  background: #F8B600 0% 0% no-repeat padding-box;
}
.orange-button:hover {
  border: 1px solid #F8B600;
  color: #F8B600 !important;
}

.blue-button {
  background: #0053A9 0% 0% no-repeat padding-box;
}
.blue-button:hover {
  border: 1px solid #0053A9;
  color: #0053A9 !important;
}

/*Button formations*/
.buttons-transparency {
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 9px;
  padding: 10px 20px;
}
.buttons-transparency:hover {
  border: 1px solid #fff;
  box-shadow: 0px 3px 6px rgba(0, 83, 169, 0.1098039216);
}

/*END BUTTONS*/
/*NAVIGATION*/
.navigation {
  /*position: absolute;
  top: 0;
  left: 0;
  right: 0;*/
  width: 100%;
  background: rgba(255, 255, 255, 0);
  height: 180px;
  z-index: 999;
  padding: 0 70px;
}
.navigation .navigation-menu {
  display: flex;
  justify-content: space-between;
  align-content: center;
  margin-top: 43px;
}
.navigation .navigation-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
}
.navigation .navigation-menu a:hover {
  font-weight: 400;
}
.navigation .navigation-logo {
  padding-top: 25px;
}
.navigation .navigation-logo img {
  width: 140px;
}

.hamburger {
  position: absolute;
  left: 35px;
  top: 45px;
}

.cross-close {
  position: absolute;
  right: 35px;
  top: 25px;
}

.logo-menu {
  position: absolute;
  left: 55px;
  top: 25px;
}

.menumobile_close {
  display: none;
}

.menumobile_open {
  width: 30%;
  height: 100vh;
  position: fixed;
  background-color: #fff;
  z-index: 99999;
}

.menumobile {
  padding-top: 125px;
  padding-left: 55px;
}
.menumobile div {
  padding: 30px 0;
  border-bottom: 1px solid #f5f5f5;
}

.menumobile-links {
  text-decoration: none;
}
.menumobile-links:hover {
  opacity: 0.5;
}

.burgeronmobile {
  display: none;
}

.hide-nav {
  display: flex;
}

.hide-on-mobile {
  display: block;
}

/*MEDIA QUERIES*/
@media (max-width: 75em) {
  .menumobile_open {
    width: 60%;
  }
  .hide-on-mobile {
    display: none;
  }
}
@media (max-width: 36em) {
  .hamburger {
    position: absolute;
    right: 35px;
    left: auto;
  }
  .navigation .navigation-logo img {
    width: 75px;
  }
  .menumobile_open {
    width: 100%;
  }
}
.navigation-logo-hidemobile {
  display: block;
}

.navigation-logo-showmobile {
  display: none;
}

.menumobile_fixed {
  height: 0 !important;
}

@media only screen and (max-width: 1440px) {
  .navigation {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 1200px) {
  .burgeronmobile {
    display: block;
  }
  .hide-nav {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  .navigation {
    height: 125px;
  }
  .navigation-logo-hidemobile {
    display: none;
  }
  .navigation-logo-showmobile {
    display: block;
  }
}
/*END MEDIA QUERIES*/
/*Element UI*/
.el-dropdown-menu {
  background-color: transparent;
  border: 0px solid transparent;
  border-radius: 0;
  box-shadow: none;
  top: 158px !important;
  left: 0 !important;
}

.el-dropdown-menu__item {
  margin: 20px 0px;
  background-color: #fff;
  border-radius: 9px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 83, 169, 0.4);
  -moz-box-shadow: 0px 3px 6px rgba(0, 83, 169, 0.4);
  box-shadow: 0px 3px 6px rgba(0, 83, 169, 0.4);
}
.el-dropdown-menu__item:not(.is-disabled):hover {
  background-color: #0053A9;
  color: #fff !important;
}

.nav-shadow {
  padding: 10px 20px;
}
.nav-shadow:hover {
  border-radius: 9px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 83, 169, 0.4);
  -moz-box-shadow: 0px 3px 6px rgba(0, 83, 169, 0.4);
  box-shadow: 0px 3px 6px rgba(0, 83, 169, 0.4);
  cursor: pointer;
  color: #0053A9;
}

.link-nav {
  color: #707070;
  font-size: 13px;
  text-decoration: none;
}
.link-nav:hover {
  color: #fff;
}

/*END ELEMEN UI*/
/*END NAVIGATION*/
/*Element-UI*/
.el-dropdown-link {
  display: flex;
  align-items: center;
}

/*END Element-UI*/
/*HEADER*/
.header-mff {
  background-image: url("../img/header.png");
  height: 578px;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-top {
  position: relative;
  top: 145px;
}

/*MEDIA QUERIES*/
@media only screen and (max-width: 1000px) {
  .header-top {
    top: 90px;
  }
  .flex-width-mff-80-tablet {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  .flex-tablet-justify-c-center {
    justify-content: center;
  }
  .header-mff {
    background-image: url("../img/header_tab.png");
    height: 650px;
  }
}
@media only screen and (max-width: 576px) {
  .header-mff {
    background-image: url("../img/header_mob.png");
    height: 667px;
  }
  .cta-header-mobile {
    flex-direction: column;
    align-items: center;
  }
}
/*END MEDIAQUERIES*/
/*SECTIONS*/
.sections {
  min-height: 600px;
}

/*END SECTIONS*/
/*Formations*/
.circle-left {
  background-image: url("../img/circle-1.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
}

.circle-right {
  background-image: url("../img/circle-2.svg");
  background-repeat: no-repeat;
  background-position: top right;
}

.card-formations .formation-description {
  position: relative;
  padding: 10px 20px;
  margin-bottom: 100px;
  background: #fff;
  width: 387px;
  height: 180px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-box-shadow: 0px 10px 15px -9px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 15px -9px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 15px -9px rgba(0, 0, 0, 0.75);
}
.card-formations .formation-description .cta-formation {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
}
.card-formations img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  -webkit-box-shadow: 0px 8px 0px -9px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 8px 0px -9px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 8px 0px -9px rgba(0, 0, 0, 0.75);
}

/*Media queries*/
@media only screen and (max-width: 1400px) {
  .card-formation-smallscreen {
    flex-wrap: wrap;
  }
  .card-formation-smallscreen .card-formations {
    width: unset;
  }
}
@media only screen and (max-width: 375px) {
  .card-formations .formation-description {
    padding: 2px;
    width: 300px;
  }
  .card-formations img {
    width: 300px;
  }
}
/*End Media queries*/
/*L'effet MFF*/
.free-circle-top {
  background-image: url("../img/circle-top.png");
  height: 180px;
  width: 180px;
  position: absolute;
  left: 350px;
  top: -86px;
  z-index: -1;
}

.free {
  background-image: url("../img/free.png");
  height: 417px;
  background-repeat: no-repeat;
  background-size: cover;
}

.free-top {
  position: relative;
  top: 40%;
  padding-left: 100px;
}

.free-style {
  letter-spacing: 1.26px;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}

/*Media queries*/
@media only screen and (max-width: 1000px) {
  .free {
    background-image: url("../img/free_tab.png");
    height: 530px;
  }
  .free-top {
    top: 30%;
    padding-left: 25px;
  }
  .free-circle-top {
    left: 0;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 576px) {
  .free {
    height: 400px;
    background-position: 95% 0%;
  }
  .free-top {
    padding-left: 0;
    text-align: center;
  }
}
@media only screen and (max-width: 320px) {
  .free {
    height: 450px;
  }
}
/* END L'effet MFF*/
/*Help*/
.help-padding {
  width: 60%;
  margin: 0 auto;
}

/*End Help*/
/*FAQ*/
.faq .el-collapse-item__header {
  color: #0053A9;
  font-size: 24px;
  font-weight: bold !important;
  font-family: "PT Serif", serif;
  border: 0;
}
.faq .el-collapse {
  padding: 25px;
  box-shadow: 0px 3px 14px rgba(0, 83, 169, 0.1098039216);
  background-color: #fff;
}
.faq .el-collapse-item__arrow.is-active, .faq .el-icon-arrow-right {
  font-size: 50px;
}
.faq .el-collapse-item__wrap {
  border-bottom: 0;
}

/*Media queries*/
@media only screen and (max-width: 768px) {
  .faq .el-collapse-item {
    padding: 24px 0;
  }
}
@media only screen and (max-width: 576px) {
  .faq .el-collapse-item__header {
    line-height: 28px;
  }
}
@media only screen and (max-width: 320px) {
  .faq .el-collapse-item__header {
    font-size: 20px;
  }
}
/*END FAQ*/
/*Footer*/
.footer-mff {
  background-color: #0053A9;
}
.footer-mff a {
  cursor: pointer;
  text-decoration: none;
}
.footer-mff a:hover {
  color: #fff;
}

.footer-padding-left {
  padding-left: 100px;
}

.icon-phone::before {
  content: url("../img/tel.svg");
  width: 100px;
  height: 100px;
  padding-right: 8px;
}

.icon-mail::before {
  content: url("../img/mail.svg");
  width: 100px;
  height: 100px;
  padding-right: 8px;
}

.copyright {
  background-color: #061e69;
}

/*MEDIA QUERIES*/
@media only screen and (max-width: 1000px) {
  .footer-responsive {
    flex-direction: column;
  }
  .footer-responsive .flex-width-mff-30 {
    width: 100%;
    text-align: center;
  }
  .footer-responsive .footer-padding-left {
    padding-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .footer-responsive-mobile {
    flex-direction: column;
  }
  .footer-responsive .footer-padding-left {
    padding: 0 155px;
  }
  .flex-gap-mff-50 {
    gap: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .footer-responsive .footer-padding-left {
    padding: 0 100px;
  }
}
@media only screen and (max-width: 375px) {
  .footer-responsive .footer-padding-left {
    padding: 0 70px;
  }
}
@media only screen and (max-width: 320px) {
  .footer-responsive .footer-padding-left {
    padding: 0 25px;
  }
}
/*END MEDIA QUERIES*/
/*End Footer*/
/*FORMATIONS*/
.header-formations-mff {
  height: 100%;
  min-height: 615px;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-word {
  background-image: url("../img/formations/header_word.svg");
}

.header-excel {
  background-image: url("../img/formations/header_excel.svg");
}

.header-powerpoint {
  background-image: url("../img/formations/header_powerpoint.svg");
}

.header-outlook {
  background-image: url("../img/formations/header_outlook.svg");
}

.header-wordpress {
  background-image: url("../img/formations/header_wordpress.svg");
}

.header-autocad {
  background-image: url("../img/formations/header_autocad.svg");
}

.header-photoshop {
  background-image: url("../img/formations/header_photoshop.svg");
}

.header-illustrator {
  background-image: url("../img/formations/header_illustrator.svg");
}

.header-indesign {
  background-image: url("../img/formations/header_indesign.svg");
}

.header-formations-top {
  position: relative;
  top: 75px;
}

.hr-formations {
  color: #fff;
  margin: 0.5rem 0;
  opacity: 0.9;
  height: 2px;
  width: 200px;
}

.icon-time::before {
  content: url("../img/time.svg");
  width: 100px;
  height: 100px;
  padding-right: 8px;
}

.icon-desktop::before {
  content: url("../img/desktop.svg");
  width: 100px;
  height: 100px;
  padding-right: 8px;
}

/*MEDIA QUERIES*/
@media only screen and (max-width: 1024px) {
  .hr-formations {
    margin: 0.5rem auto;
  }
}
@media only screen and (max-width: 768px) {
  .lead-direction-reverse {
    flex-direction: column-reverse;
  }
  .lead-direction {
    flex-direction: column;
  }
  .lead-direction-center {
    text-align: center;
  }
  .flex-width-mff-25-tablet {
    width: 100%;
  }
  .flex-width-mff-75-tablet {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .header-formations-mff {
    min-height: 715px;
  }
}
/*END MEDIA QUERIES*/
/*Modules*/
.modules {
  padding: 0 100px !important;
}

/*MEDIA QUERIES*/
@media only screen and (max-width: 768px) {
  .modules {
    padding: 0 !important;
  }
}
/*END MEDIA QUERIES*/
/*End Modules*/
/*Certificat*/
.certificat {
  width: 100%;
}

/*MEDIA QUERIES*/
@media only screen and (max-width: 768px) {
  .flex-gap-mff-tablet-100 {
    gap: 10px;
  }
  .tablet-certificat-center {
    text-align: center;
  }
  .page-formation .padding-top-100 {
    padding-top: 25px;
  }
  .certificat-direction {
    flex-direction: column;
  }
}
/*END MEDIA QUERIES*/
.certificat-formlead {
  text-align: center;
  margin-top: -60px;
  margin-bottom: -45px;
}
.certificat-formlead img {
  width: 110px;
}

/*END Certificat*/
/*END FORMATIONS*/
/*FUNDING*/
@media only screen and (max-width: 512px) {
  .flex-direction-col-funding {
    flex-direction: column;
  }
}
/*END FUNDING*/
/*FORM LEAD*/
.formlead {
  background-color: #fff;
  box-shadow: 0px 3px 26px rgba(0, 83, 169, 0.3058823529);
  border-radius: 23px;
  width: 327px;
  color: #707070;
  padding: 30px;
  margin: 0 auto;
}
.formlead .form-sentence {
  padding: 0 10px;
}
.formlead .submit {
  cursor: pointer;
  width: 100%;
  border: 1px;
  border-radius: 4px;
  background: #F8B600;
  color: #fff;
  margin: 0 0 5px;
  padding: 15px 10px;
  font-size: 14px;
}
.formlead .submit:hover {
  background: #fff;
  border: 1px solid #F8B600;
  color: #F8B600;
}
.formlead .submit:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}
.formlead fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}
.formlead .dirty {
  border-color: #5A5;
  background: #EFE;
}
.formlead .dirty:focus {
  outline-color: #8E8;
}
.formlead .error {
  border-color: #fff;
  background: #F8B600;
}
.formlead .error::placeholder {
  color: #fff;
}
.formlead .error:focus {
  outline-color: #F99;
}
.formlead .subventions {
  font-size: 0.7em;
  margin-bottom: 0;
}

input {
  border: 1px solid #0053A9;
  border-radius: 10px;
  background: #fff;
  padding: 8px 10px;
  font-size: 12px !important;
  color: #707070;
}

/* END FORM LEAD*/
/*Old css delete ?*/
.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: table;
  transition: opacity 0.3s ease;
}

.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.navigation-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgb(255, 255, 255);
  height: 115px;
  -webkit-box-shadow: 0px 10px 15px -9px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 15px -9px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 15px -9px rgba(0, 0, 0, 0.75);
  z-index: 99999;
}
.navigation-nav .navigationNavBox {
  transition: 0.4s all ease-in;
  margin-top: 15px;
  -webkit-box-shadow: 0px 10px 15px -9px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 15px -9px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 15px -9px rgba(0, 0, 0, 0.75);
}
.navigation-nav .navigationNavBox ul {
  display: flex;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.05);
  /*height: 80px;*/
  background-color: #fff;
  padding-left: 0;
}
.navigation-nav .navigationNavBox ul li {
  position: relative;
  flex: 1;
  text-align: center;
  height: 100%;
  padding: 25px 0;
}
.navigation-nav .navigationNavBox ul li:hover {
  background-color: #f2f2f2;
  color: #fff;
  box-shadow: inset 0 -5px 0 0 #0053A9;
}
.navigation-nav .navigationNavBox ul li a {
  cursor: pointer;
  text-decoration: none;
  font-size: 1.2em;
  color: #707070;
  display: block;
}
@media (max-width: 75em) {
  .navigation-nav .navigationNavBox ul {
    display: block;
    height: 100%;
  }
}
.navigation-nav .navigationNavBoxScroll {
  transition: 0.4s all ease-out;
  margin-top: 0;
  -webkit-box-shadow: 0px 10px 15px -9px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 15px -9px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 15px -9px rgba(0, 0, 0, 0.75);
}
.navigation-nav .navigationNavBoxScroll ul {
  display: flex;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 50px;
  background-color: #fff;
  padding-left: 0;
}
.navigation-nav .navigationNavBoxScroll ul li {
  position: relative;
  flex: 1;
  text-align: center;
  height: 100%;
  padding: 10px 0;
}
.navigation-nav .navigationNavBoxScroll ul li:hover {
  background-color: #f2f2f2;
  color: #fff;
  box-shadow: inset 0 -5px 0 0 #0053A9;
}
.navigation-nav .navigationNavBoxScroll ul li a {
  cursor: pointer;
  text-decoration: none;
  font-size: 1.2em;
  color: #707070;
  display: block;
}
@media (max-width: 75em) {
  .navigation-nav .navigationNavBoxScroll ul {
    display: block;
    height: 100%;
  }
}
.navigation-nav .navigation-logo {
  padding-top: 0px;
}
.navigation-nav .navigation-logo img {
  height: 115px;
}
.navigation-nav .navigationNavBox .menuonlymobiltablet, .navigation-nav .navigationNavBoxScroll .menuonlymobiltablet {
  display: none;
}
@media (min-width: 0em) and (max-width: 75em) {
  .navigation-nav .navigationNavBox .menuonlymobiltablet, .navigation-nav .navigationNavBoxScroll .menuonlymobiltablet {
    display: block;
  }
}
@media (max-width: 75em) {
  .navigation-nav .navigationNavBox ul li, .navigation-nav .navigationNavBoxScroll ul li {
    padding: 0;
  }
  .navigation-nav .navigation-logo {
    padding: 1em 0;
    text-align: center;
  }
  .navigation-nav .navigation-logo img {
    height: 85px;
  }
}
@media (max-width: 75em) {
  .navigation-nav .hamburger .menu-icon {
    display: none;
  }
}

/* 48em = 768px */
@media (min-width: 75em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 0;
  }
  .header .menu {
    clear: none;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}
.tablet-hide {
  display: block;
}

@media (min-width: 0em) and (max-width: 75em) {
  .tablet-center {
    width: 100% !important;
  }
  .tablet-hide {
    display: none;
  }
}
/*Indicateurs*/
.circular-chart {
  max-width: 100%;
  max-height: 250px;
  height: 250px;
}

.circle-bg {
  fill: none;
  stroke: #f2f2f2;
  stroke-width: 1.5;
}

.circle {
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke: #d3030c;
  transition: stroke-dasharray 0.6s ease-in-out;
}

.percentage {
  font-size: 8px;
  font-weight: bold;
  fill: #0053A9;
}

.percentage-text {
  font-size: 2px;
  fill: #707070;
}

.padding-indicateurs-top {
  padding-top: 100px;
}

.padding-indicateurs-bottom {
  padding-bottom: 100px;
}

@media (min-width: 0em) and (max-width: 75em) {
  .circular-chart {
    max-width: 100%;
    max-height: 150px;
    height: 150px;
  }
  .padding-indicateurs-top {
    padding-top: 25px;
  }
  .padding-indicateurs-bottom {
    padding-bottom: 25px;
  }
}

/*# sourceMappingURL=style.css.map */
