@font-face {
  font-family: 'Helvetica Neue Condensed';
  src: url("../fonts/HelveticaNeue-Condensed-Regular.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue Condensed';
  src: url("../fonts/HelveticaNeue-Condensed-Medium.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue Condensed';
  src: url("../fonts/HelveticaNeue-Condensed-Bold.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue Condensed';
  src: url("../fonts/HelveticaNeue-BlackCond.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url("../fonts/HelveticaNeue-Light.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url("../fonts/HelveticaNeue-Roman.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url("../fonts/HelveticaNeue-Bold.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
}

body {
  font-family: "Helvetica Neue"!important;
  scroll-behavior: smooth;
  color : #515151;
  font-size: 16px;
}

section {
  padding: 30px 0;
}

.container {
  box-shadow: 0 4px 8px 0 rgba(53, 105, 128, 0.3), 0 6px 20px 0 rgba(165, 200, 213, 0.41);
}

body .title-1{
  font-family: "Helvetica Neue Condensed";
  font-weight: bold;
  font-size: 2.2rem;
  padding-bottom: 15px;
}

body .title-2 {
  font-family: "Helvetica Neue Condensed";
  font-weight: bold;
  font-size: 24px;
  padding-bottom: 15px;
}

.btn-secondary {
background-image: linear-gradient(120deg, #fe4a49 0%, #fe4a49 50%, #FF6B53 100%);
  background-size: 200% auto;
  color: white;
}

.btn-lg{
  padding: 0.75rem 0.75rem;
  font-size: 1.1rem;
  border-radius: 0.5rem;
}

.btn-secondary {
  color: #000;
  background-color: #fe4a49;
  border-color: #fe4a49;
}

.btn-primary {
  background-color: #2394e9!important;
  border-color: #2394e9!important;
}

.erreur{
  color : #da0014;
}


.cms-page .btn, .cms-page .btn:hover, .cms-page .btn:visited, .cms-page .btn:focus, .cms-page .btn:active, .cms-page .btn:disabled{
border-color:#fe4a49;
}

.carousel-item img{
  /* max-height: 612px; */
}

.form-control, .form-control-lg{
  color: #515151!important;
}


/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e2e2e2;
  /* border: 2px solid #d4d4d4; */
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #fe4a49;
  /* border-color: #fe4a49; */
}

input:checked + .slider:before {
  background-color: #ffffff;
}

input:focus + .slider {
  box-shadow: 0 0 1px #fe4a49;
}

input:checked + .slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}