@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
html, body {
  font-size: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

html {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  color: #000;
  line-height: 1.5;
  font-size: 14px;
}
@media only screen and (min-width: 600px) {
  html {
    font-size: 15px;
  }
}
@media only screen and (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

button {
  font-family: "Montserrat", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin: 0;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit;
  cursor: pointer;
}

p {
  margin-bottom: 0.5em;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

.uppercase {
  text-transform: uppercase;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f9f9f9;
  color: #7f7f7f;
}

h1 {
  margin-bottom: 0;
  text-align: center;
  color: #36a9e1;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 2.3rem;
  transform: skew(-10deg, 0deg) rotate(-3deg) translate(0px, 5px);
  text-shadow: #f9f9f9 1px 2px 0px, rgba(217, 1, 152, 0.3) 2px 3px 0px;
}

@media (min-width: 1130px) {
  h1 {
    transform: skew(-10deg, 0deg) rotate(0deg) translate(0px, 5px);
  }
}
h2 {
  text-align: center;
  color: #36a9e1;
  font-weight: 700;
  font-size: 1.5rem;
}

h3 {
  font-size: 1.14rem;
  color: #36a9e1;
  font-weight: 600;
}

.highlight {
  color: #fff;
}

.highlight2 {
  color: #d90198;
  font-weight: 700;
}

input {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.2em;
  color: #414141;
}

a {
  color: #36a9e1;
}

a:hover {
  cursor: pointer;
}

button:hover {
  cursor: pointer;
}

.has-error .text-danger {
  font-size: 0.8rem;
  color: #e30000;
  display: inline-block;
  margin-bottom: 0.25rem;
  margin-left: 0.25rem;
  padding: 0.5rem;
  background-color: rgb(255, 201.5, 201.5);
  border-radius: 0 0 5px 0;
  border-left: 1px solid #e30000;
}

p {
  font-size: 1rem;
}

sup {
  font-size: 0.65rem;
}

section {
  padding: 2rem 1rem;
}

@media (min-width: 576px) {
  section {
    padding: 1rem 5rem;
  }
}
@media (min-width: 768px) {
  section {
    padding: 1rem 5rem;
  }
}
@media (min-width: 992px) {
  section {
    padding: 1rem 8rem;
  }
}
@media (min-width: 1200px) {
  section {
    padding: 1rem 12rem;
  }
}
a:has(button) {
  text-decoration: none;
}

.btn {
  background-color: #36a9e1;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0.5rem auto;
  display: block;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
}

.btn_outline {
  background-color: transparent;
  color: #36a9e1;
  border: 1px solid #36a9e1;
}

.btn_secondary {
  background-color: #d90198;
  border: 1px solid #d90198;
}

.btn_chat {
  background-color: #5ac500;
  border: 1px solid #5ac500;
}

.btn_big {
  font-size: 1.5rem;
}

.btn_small {
  font-size: 0.8rem;
}

header {
  background-color: transparent;
  color: #414141;
  position: fixed;
  width: 100%;
  z-index: 100;
}
header .btn {
  box-shadow: 2px 3px 9px -3px rgba(65, 65, 65, 0.75);
}
header section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding-top: 0;
  padding-bottom: 0;
}
header .left {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: auto;
}
header .left .close {
  display: none;
}
header a {
  display: flex;
  padding: 0.2rem 0.5em;
  text-decoration: none;
  color: #f2f2f2;
  text-shadow: 1px 1px 1px black;
  font-weight: 300;
}
header img {
  height: 35px;
  filter: drop-shadow(2px 3px 3px #414141);
}
header .hide {
  display: none;
}
header .mobile_menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  background-color: #f2f2f2;
  padding: 0.5rem;
}
header .mobile_menu a {
  color: #414141;
}
@media (min-width: 576px) {
  header .mobile_menu {
    padding-left: 5rem;
  }
}
@media (min-width: 992px) {
  header .mobile_menu {
    padding-left: 8rem;
  }
}

.scrolled {
  background-color: #414141;
  transition: background-color 0.5s ease-out;
}
.scrolled img {
  content: url("../img/logo_light.svg");
  filter: none;
}
.scrolled a {
  color: #f2f2f2;
  text-shadow: none;
}

@media (min-width: 768px) {
  header .hide {
    display: block;
  }
  #myBtnMenu {
    display: none;
  }
}
.theme_video {
  padding: 0;
  height: 36rem;
  overflow: hidden;
  position: relative;
  z-index: -1;
}

video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 100%;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
}

.theme_title {
  margin-top: -17rem;
  margin-bottom: -10px;
  padding-top: 4rem;
  background: linear-gradient(0deg, #f9f9f9 80%, rgba(249, 249, 249, 0.7) 90%, rgba(249, 249, 249, 0) 100%);
}
.theme_title p {
  text-align: center;
  color: #414141;
}
.theme_title a {
  display: block;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .theme_video {
    height: 36rem;
  }
  video {
    transform: translateX(-50%) translateY(-50%);
  }
}
@media (min-width: 768px) {
  .theme_video {
    height: 36rem;
  }
  video {
    transform: translateX(-50%) translateY(-60%);
  }
}
@media (min-width: 950px) {
  .theme_video {
    height: 36rem;
  }
  video {
    transform: translateX(-50%) translateY(-52%);
    width: 100%;
    height: auto;
  }
}
@media (min-width: 1440px) {
  .theme_video {
    height: 36rem;
  }
  video {
    transform: translateX(-50%) translateY(-45%);
    width: 100%;
    height: auto;
  }
}
.masters {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  background-color: #f9f9f9;
}
.masters h2 {
  padding: 0 1rem;
}

.card {
  box-shadow: 0px 0px 5px 4px rgba(65, 65, 65, 0.1);
  border: 1px solid #f2f2f2;
  background-color: #fff;
  padding: 1rem;
  border-radius: 13px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  margin: 0.5rem;
}
.card .top {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.card .top .left {
  width: 30%;
}
.card .top .left img {
  border-radius: 50%;
  width: 100%;
}
.card .top .right {
  width: 70%;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card .top .right .first {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.card .top .right .first h3 {
  font-weight: 700;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card .top .right .first .calls {
  font-weight: 700;
  white-space: nowrap;
}
.card .top .right .second {
  display: -webkit-box;
  margin-top: 0;
  margin-bottom: auto;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.card .top .right .third {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #36a9e1;
}
.card .top .right .third .rate {
  color: #ffbc00;
  font-weight: 700;
  font-size: 1.1rem;
}
.card .top .right .third .price {
  font-weight: 700;
  font-size: 1.1rem;
}
.card .bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.card .bottom button {
  text-transform: uppercase;
  font-size: 1rem;
  width: 100%;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card .bottom a:has(button) {
  width: 100%;
}
.card .gap {
  width: 2rem;
}

.theme {
  background-image: url(../img/banner.jpg);
  background-position: left center;
  background-size: cover;
  padding: 2rem 1rem;
  margin-top: 3rem;
}
.theme h2 {
  color: #fff;
  text-shadow: 1px 1px 1px black;
}

.advantages {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .advantages {
    grid-template-columns: 1fr 1fr;
  }
}
.advantage {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1rem;
}
.advantage h3 {
  color: #d90198;
  margin-bottom: 0;
}
.advantage a {
  text-decoration: none;
}
.advantage h3:hover {
  color: #ac0080;
}
.advantage p {
  margin-top: 0.2rem;
  color: #7f7f7f;
}
.advantage p i {
  color: #d90198;
}

.icon_bg {
  background: linear-gradient(#d90198, #ac0080);
  border-radius: 50%;
  margin: 0 1rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon_bg i {
  font-size: 1.7rem;
  width: 60px;
  color: #fff;
  text-align: center;
  padding: 0.8rem;
}

.categories {
  position: relative;
  padding: 0;
  margin-top: 2rem;
}
.categories h2 {
  padding: 0 1rem;
}
.categories h4 {
  text-align: center;
  font-size: 1.5rem;
}

.bloc_categorie {
  position: relative;
  display: block;
  overflow: hidden;
  /*border: 1px solid black;*/
}
.bloc_categorie img {
  max-width: 100%;
  height: auto;
}

.bloc_categorie h4 {
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}

.bloc_categorie h5 {
  margin-bottom: 1.5rem;
}

.categorie_caption {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  color: #fff;
  background-color: rgba(54, 169, 225, 0); /* fallback color if gradients are not supported */ /* For Chrome 25 and Safari 6, iOS 6.1, Android 4.3 */ /* For Firefox (3.6 to 15) */ /* For old Opera (11.1 to 12.0) */
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #36a9e1); /* Standard syntax; must be last */
  transition: background-color 0.2s ease-in;
}

.bloc_categorie a:hover .categorie_caption {
  background-color: rgba(217, 1, 152, 0.6);
}

.contacts {
  text-align: center;
  padding-bottom: 2rem;
}
.contacts .question_categories {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 1rem;
}
.contacts .icon_bg {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 0.5rem;
}
.contacts a {
  color: #d90198;
  font-weight: 700;
}

.footer {
  text-align: center;
  padding-top: 0;
  background-color: #414141;
  color: #fff;
  padding-top: 1rem;
}
.footer p {
  padding: 1rem;
  margin: 0;
}

.bottom_footer a {
  color: #fff;
  padding: 0 1rem;
}
.bottom_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 576px) {
  .bottom_footer {
    flex-direction: row;
  }
}
#gsi_style {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.8rem auto;
}

.divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0.8rem 0;
  padding: 0 7rem;
}
.divider .bar {
  width: 100%;
  height: 1px;
  border-top: 1px solid #d1d1d1;
}
.divider .or {
  padding: 0 0.8rem;
}

#myForm {
  display: none;
}

.modal_bg {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 100;
  overflow: auto;
}
.modal_bg h2 {
  color: #36a9e1;
  text-align: left;
  margin-bottom: 0.5rem;
}
.modal_bg .modal_header {
  background-color: #414141;
  color: #7f7f7f;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}
.modal_bg .modal_header img {
  height: 35px;
  padding: 0;
}
.modal_bg .modal_header i {
  color: #f2f2f2;
  font-size: 1.5rem;
}
.modal_bg .reassurance {
  color: #414141;
}
.modal_bg .reassurance p {
  margin: 0.5rem 0;
  padding-left: 1rem;
}

.subscribe {
  color: #7f7f7f;
  padding: 1.5rem;
  background-color: #fff;
  margin-bottom: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
.subscribe form {
  margin-top: 1rem;
}

@media (min-width: 500px) {
  .modal_bg .modal_header {
    border-radius: 0.5rem 0.5rem 0 0;
    margin: 1rem auto 0 auto;
  }
  .subscribe {
    border-radius: 0 0 0.5rem 0.5rem;
  }
}
form {
  max-width: 30rem;
  margin: 0 auto;
}
form .footer-form {
  text-align: center;
}

.input_block {
  position: relative;
  margin-bottom: 0.8rem;
}
.input_block i {
  position: absolute;
  color: #36a9e1;
  font-size: 1.5rem;
  top: 0.7rem;
  left: 0.5rem;
}
.input_block input {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  padding-left: 2.3rem;
  border-radius: 5px;
  border: 1px solid #bdbdbd;
  width: 100%;
  outline-color: transparent;
  outline: transparent;
}

#phone_form {
  max-width: 75%;
}

#birth_date_form {
  max-width: 75%;
}

.intl_dial_modif {
  color: #414141;
  font-size: 1.2rem;
}

.intl_iti_modif {
  width: 100%;
}

@media (min-width: 576px) {
  .input_block i {
    top: 0.6rem;
  }
}
input:focus {
  border: 1px solid #36a9e1;
}

.custom-check {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.custom-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #bdbdbd;
}

/* On mouse-over, add a grey background color */
/* When the checkbox is checked, add a blue background */
.custom-check input:checked ~ .checkmark {
  background-color: #36a9e1;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-check .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

#newsletter_form label, #cgus_form label {
  color: #7f7f7f;
}

form .btn {
  margin-top: 2rem;
}/*# sourceMappingURL=style.css.map */