/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-VariableFont_wdth,wght.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

button {
  border-style: none;
  background: none;
  cursor: pointer;
}

.invisible {
  display: none;
}

a,
a:hover,
a:visited {
  color: #050315;
  text-decoration: none;
  cursor: pointer;
}

.block {
  display: block;
}

.go-top {
  padding: 1vh;
  display: none;
  position: fixed;
  bottom: 15vh;
  right: 3vw;
  width: 12vw;
  border-radius: 50%;
  background-color: #FBE800;
  z-index: 20;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
.go-top__img {
  width: 100%;
  height: auto;
}

.active {
  color: #0072B0 !important;
}

.success {
  color: green;
}

.error {
  color: red;
}

.waiting {
  color: orange;
}

.no-scroll {
  overflow: hidden;
}

@media (min-width: 600px) and (max-width: 1023px) {
  .go-top {
    bottom: 10vh;
    right: 3vw;
    width: 8vw;
  }
}
@media (min-width: 1024px) {
  .go-top {
    bottom: 10vh;
    right: 3vw;
    width: 4vw;
  }
}
.line {
  fill: none;
  stroke: #FBE800;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.menu {
  padding: 1vh 5vw;
  background-color: #0072B0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.menu__toggle-checkbox {
  display: none;
}
.menu__nav {
  position: fixed;
  right: 0;
  top: 7vh;
  padding-top: 2vh;
  height: 93vh;
  width: 65vw;
  background-color: #0072B0;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}
.menu__logo {
  height: 5vh;
  width: auto;
}
.menu__toggle-checkbox:checked ~ .menu__nav {
  transform: translateX(0);
}
.menu__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.menu__toggle-label svg {
  height: 5vh;
  width: auto;
}
.menu__list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2vh;
}
.menu__item {
  padding: 1vh 5vw;
  background-color: #E0F3FC;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.menu__item a {
  color: #0072B0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
}
.menu__item--short {
  width: 35vw;
}
.menu__item--long {
  width: 40vw;
}
.menu__toggle-checkbox:checked ~ .menu__container .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.menu__toggle-checkbox:checked ~ .menu__container .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.menu__toggle-checkbox:checked ~ .menu__container .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

@media (min-width: 600px) and (max-width: 1023px) {
  .menu {
    padding: 2vh 5vw;
  }
  .menu__item {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .menu__item a {
    font-family: "Montserrat", sans-serif;
    font-size: 2.3vw;
    font-weight: bold;
  }
}
@media (min-width: 1024px) {
  .menu {
    padding: 3vh 5vw;
    background-color: #ffffff;
    position: inherit;
    overflow: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .menu__toggle-checkbox {
    display: none;
  }
  .menu__nav {
    position: inherit;
    right: inherit;
    top: inherit;
    padding-top: 0;
    height: inherit;
    width: inherit;
    background-color: inherit;
    transform: inherit;
    transition: inherit;
  }
  .menu__logo {
    height: 8vh;
    width: auto;
  }
  .menu__toggle-checkbox:checked ~ .menu__nav {
    transform: inherit;
  }
  .menu__container {
    display: inherit;
    flex-direction: inherit;
    justify-content: inherit;
  }
  .menu__toggle-label svg {
    height: inherit;
    width: inherit;
  }
  .menu__toggle-label {
    display: none;
  }
  .menu__list {
    display: flex;
    flex-direction: row;
    align-items: inherit;
    gap: 5vw;
  }
  .menu__item {
    padding: inherit;
    background-color: inherit;
    box-shadow: none;
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
  }
  .menu__item a {
    color: #050315;
    font-family: "Montserrat", sans-serif;
    font-size: 1vw;
    font-weight: medium;
  }
  .menu__item--short {
    width: inherit;
  }
  .menu__item--long {
    width: inherit;
  }
  .menu__item:hover .menu__link {
    color: #0072B0;
  }
  .menu__link {
    transition: color 0.3s ease;
  }
}
.footer {
  margin-top: 10vh;
  padding: 3vh 5vw;
  background-color: #E0F3FC;
  display: flex;
  flex-direction: column-reverse;
  gap: 5vh;
  align-items: center;
}
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 1vh;
  align-items: center;
}
.footer__contact-link {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.5;
  text-decoration: underline;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  align-items: center;
}
.footer__nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
}
.footer__nav-item {
  padding: 1.5vh 5vw;
  background-color: #0072B0;
  width: 50vw;
  border-radius: 15px;
  display: flex;
  justify-content: center;
}
.footer__nav-item a {
  color: #ffffff;
}
.footer__logo {
  width: 25vw;
  height: auto;
}

@media (min-width: 600px) and (max-width: 1023px) {
  .footer__contact-link {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 2.5vw;
    line-height: 1.5;
  }
  .footer__nav-link {
    font-family: "Montserrat", sans-serif;
    font-size: 2.3vw;
    font-weight: bold;
  }
  .footer__nav-item {
    width: 35vw;
    border-radius: 25px;
  }
  .footer__logo {
    width: 20vw;
  }
}
@media (min-width: 1024px) {
  .footer {
    margin-top: 10vh;
    padding: 3vh 5vw;
    flex-direction: row;
    gap: 5vw;
    justify-content: space-between;
  }
  .footer__contact {
    position: relative;
  }
  .footer__contact-list {
    gap: 2vh;
    position: relative;
    z-index: 2;
  }
  .footer__contact-link {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 1vw;
    line-height: 1.5;
  }
  .footer__contact a {
    color: #ffffff;
  }
  .footer__contact:hover::before {
    width: calc(160% + 10vw);
  }
  .footer__contact::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    left: -10vw;
    width: calc(130% + 10vw);
    transition: width 0.3s ease;
    height: calc(100% + 6vh);
    background-color: #0072B0;
    border-radius: 0 15px 15px 0;
  }
  .footer__nav-list {
    flex-direction: row;
    gap: 3vw;
  }
  .footer__nav-link {
    font-family: "Montserrat", sans-serif;
    font-size: 1vw;
    font-weight: medium;
  }
  .footer__nav-item {
    padding: inherit;
    background-color: inherit;
    width: inherit;
    border-radius: 15px;
    display: flex;
    justify-content: center;
  }
  .footer__nav-item:hover a {
    color: #0072B0;
  }
  .footer__nav-item a {
    color: #050315;
    transition: color 0.3s ease;
  }
  .footer__logo {
    width: 10vw;
  }
}
.home-header {
  padding: 3vh 0;
  overflow-x: hidden;
  background-color: #0072B0;
  display: flex;
  flex-direction: column;
  gap: 2vh;
}
.home-header__scroller {
  width: 100vw;
}
.home-header__scroller[data-animated=true] {
  overflow: hidden;
}
.home-header__scroller[data-animated=true] .home-header__scroller-inner {
  width: -moz-max-content;
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}
.home-header__scroller[data-direction=right] {
  --_animation-direction: reverse;
}
.home-header__scroller[data-direction=left] {
  --_animation-direction: forwards;
}
.home-header__scroller[data-speed=fast] {
  --_animation-duration: 35s;
}
.home-header__scroller[data-speed=slow] {
  --_animation-duration: 50s;
}
.home-header__tag-list {
  margin: 0;
  padding-inline: 0;
  list-style: none;
}
.home-header__scroller-inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10vw;
}
.home-header__tag {
  height: 4vh;
  padding: 1vh 3vw;
  border-radius: 15px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: bold;
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
}
.home-header__tag--color-1 {
  color: #FBE800;
  background-color: #0072B0;
  border: 2px solid #FBE800;
}
.home-header__tag--color-2 {
  color: #050315;
  background-color: #FBE800;
}
.home-header__tag--color-3 {
  color: #050315;
  background-color: #ffffff;
}
.home-header__tag--large {
  width: 20vw;
}
.home-header__tag--short {
  width: 40vw;
}
@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .home-header__tag {
    border-radius: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 2.5vw;
    line-height: 1.5;
    font-weight: bold;
  }
}
@media (min-width: 1024px) {
  .home-header {
    padding: 5vh 0;
    gap: 5vh;
  }
  .home-header__scroller[data-speed=fast] {
    --_animation-duration: 40s;
  }
  .home-header__scroller[data-speed=slow] {
    --_animation-duration: 50s;
  }
  .home-header__scroller-inner {
    gap: 5vw;
  }
  .home-header__tag {
    height: 5vh;
    border-radius: 30px;
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 1vw;
    line-height: 1.5;
    font-weight: bold;
    min-width: 10vw;
  }
  .home-header__tag--large {
    width: 10vw;
  }
  .home-header__tag--short {
    width: 20vw;
  }
}
.home-title {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  margin: 10vh 5vw;
}

.home-cards {
  margin: 10vh 5vw;
  display: flex;
  flex-direction: column;
  gap: 3vh;
  text-align: center;
}
.home-cards__item {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  gap: 1vh;
}
.home-cards__item--color1 {
  background-color: #0072B0;
  color: #ffffff;
}
.home-cards__item--color1 a {
  color: #ffffff;
}
.home-cards__item--color2 {
  background-color: #FBE800;
}
.home-cards__image {
  margin-top: 1vh;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  width: 100%;
  height: 25vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-cards__container {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  padding: 3vh 5vw;
  align-items: center;
}
.home-cards__title {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
}
.home-cards__tags, .home-cards__description {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.5;
}
.home-cards__link {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: underline;
}
.home-cards__description {
  text-align: left;
}

@media (min-width: 600px) and (max-width: 1023px) {
  .home-title {
    font-family: "Montserrat", sans-serif;
    font-size: 5vw;
    font-weight: bold;
    margin: 10vh 10vw 0 10vw;
  }
  .home-cards {
    margin: 10vh 10vw;
  }
  .home-cards__image {
    height: 35vh;
  }
  .home-cards__title {
    font-family: "Roboto", sans-serif;
    font-size: 4vw;
    line-height: 1.2;
    font-weight: bold;
  }
  .home-cards__tags, .home-cards__description {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 2.5vw;
    line-height: 1.5;
  }
  .home-cards__link {
    font-family: "Montserrat", sans-serif;
    font-size: 2.3vw;
    font-weight: bold;
    text-decoration: underline;
  }
}
@media (min-width: 1024px) {
  .home-title {
    font-family: "Roboto", sans-serif;
    font-size: 2.5vw;
    font-weight: bold;
    margin-top: 10vh;
  }
  .home-cards {
    margin: 10vh 5vw;
    flex-direction: row;
    gap: 1vw;
    justify-content: center;
  }
  .home-cards__item {
    flex: 0 1 calc(33.33% - 1vw);
    gap: 1vh;
    max-width: 100vw;
    align-self: flex-start;
  }
  .home-cards__image {
    margin-top: 1vh;
    max-width: 100%;
    height: 30vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home-cards__container {
    gap: 2vh;
    padding: 3vh 3vw;
  }
  .home-cards__title {
    font-family: "Roboto", sans-serif;
    font-size: 2.5vw;
    font-weight: bold;
  }
  .home-cards__tags, .home-cards__description {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 1vw;
    line-height: 1.5;
  }
  .home-cards__link {
    font-family: "Montserrat", sans-serif;
    font-size: 1vw;
    font-weight: medium;
  }
  .home-cards__item--margin-1 {
    margin-top: 15vh;
  }
  .home-cards__item--margin-2 {
    margin-top: 5vh;
  }
}
.home-slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 5vw;
  overflow-x: hidden;
}
.home-slider__slide {
  margin: 5vh 0;
  background-color: #E0F3FC;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  display: flex !important;
  flex-direction: column;
  gap: 1vh;
  align-items: center;
  padding: 3vh 5vw;
  border-radius: 15px;
  height: 45vh !important;
}
.home-slider__image {
  height: 15vh;
  width: auto;
  border-radius: 15px;
  margin-bottom: 5vh;
}
.home-slider .swiper-button-next::after,
.home-slider .swiper-button-prev::after {
  content: "";
}
.home-slider .swiper-pagination-bullet {
  background: #FBE800;
  border: 1px solid #050315;
  width: 3vw;
  height: 3vw;
}
.home-slider .swiper-pagination {
  bottom: 8vh !important;
}
.home-slider__title {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
}
.home-slider__description {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
.home-slider__details {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: center;
}
.home-slider .swiper-button-next,
.home-slider .swiper-button-prev {
  height: 6vh;
  width: auto;
  top: 15.5vh;
}
.home-slider .swiper-button-next img,
.home-slider .swiper-button-prev img {
  height: 100%;
  width: auto;
}
.home-slider .swiper-button-next {
  right: 11vw;
}
.home-slider .swiper-button-prev {
  left: 11vw;
}
.home-slider__computer {
  display: none;
}

@media (min-width: 600px) and (max-width: 1023px) {
  .home-slider {
    padding: 0 10vw;
  }
  .home-slider__title {
    font-family: "Roboto", sans-serif;
    font-size: 4vw;
    line-height: 1.2;
    font-weight: bold;
  }
  .home-slider__description {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 2.5vw;
    line-height: 1.5;
    font-weight: bold;
  }
  .home-slider__details {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 2.5vw;
    line-height: 1.5;
  }
  .home-slider .swiper-button-next {
    right: 20vw;
  }
  .home-slider .swiper-button-prev {
    left: 20vw;
  }
}
@media (min-width: 1024px) {
  .home-slider {
    padding: 0 5vw;
  }
  .home-slider__slide {
    margin: 10vh 0;
    gap: 2vh;
    padding: 5vh 5vw;
    height: 60vh !important;
  }
  .home-slider__image {
    height: 20vh;
    width: auto;
    border-radius: 15px;
    margin-bottom: 3vh;
  }
  .home-slider .swiper-button-next::after,
  .home-slider .swiper-button-prev::after {
    content: "";
  }
  .home-slider .swiper-pagination-bullet {
    background: #FBE800;
    border: 1px solid #050315;
    width: 1.5vw;
    height: 1.5vw;
  }
  .home-slider .swiper-pagination {
    bottom: 15vh !important;
  }
  .home-slider__title {
    font-family: "Roboto", sans-serif;
    font-size: 2.5vw;
    font-weight: bold;
  }
  .home-slider__description {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 1vw;
    line-height: 1.5;
  }
  .home-slider__details {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 1vw;
    line-height: 1.5;
  }
  .home-slider .swiper-button-next,
  .home-slider .swiper-button-prev {
    height: 8vh;
    top: 50%;
    transform: translateY(-50%);
  }
  .home-slider .swiper-button-next {
    right: 30vw;
  }
  .home-slider .swiper-button-prev {
    left: 30vw;
  }
  .home-slider__computer {
    display: inherit;
    height: 13vh;
    width: auto;
    position: absolute;
    z-index: 5;
    left: 15vw;
    top: 3vh;
    animation: rotation 8s infinite linear;
    background-color: #0072B0;
    border-radius: 50%;
    padding: 1vh;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  }
  @keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }
}
.home-logiciels {
  margin: 5vh 5vw;
}
.home-logiciels__title {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
}
.home-logiciels__list {
  margin-top: 3vh;
  display: flex;
  flex-direction: row;
  gap: 5vw;
  flex-wrap: wrap;
  justify-content: center;
}
.home-logiciels__item {
  flex: 0 1 calc(33.333% - 5vw);
  box-sizing: border-box;
  border: 2px solid #0072B0;
  border-radius: 15px;
  padding: 2vh 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  height: 12vh;
}
.home-logiciels__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.home-logiciels__image {
  width: 100%;
  max-height: 100%;
}

@keyframes tilt-shaking {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.home-logiciels__item--shaking {
  animation: tilt-shaking 0.5s ease-in-out;
}

@media (min-width: 600px) and (max-width: 1023px) {
  .home-logiciels {
    margin: 5vh 10vw;
  }
  .home-logiciels__title {
    font-family: "Roboto", sans-serif;
    font-size: 4vw;
    line-height: 1.2;
    font-weight: bold;
  }
  .home-logiciels__item {
    height: 15vh;
  }
}
@media (min-width: 1024px) {
  .home-logiciels {
    margin: 10vh 5vw 20vh 5vw;
  }
  .home-logiciels__title {
    font-family: "Roboto", sans-serif;
    font-size: 2.5vw;
    font-weight: bold;
  }
  .home-logiciels__list {
    margin-top: 16vh;
    gap: 1vw;
    position: relative;
  }
  .home-logiciels__item {
    flex: 0 1 calc(18% - 1vw);
    padding: 2vh 3vw;
    transition: box-shadow 0.3s ease;
    height: 22vh;
  }
  .home-logiciels__item:hover {
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.5);
  }
  .home-logiciels__list::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    right: -5vw;
    width: 55vw;
    height: 120%;
    background-color: #0072B0;
    border-radius: 15px 0 0 15px;
  }
}
.home-services {
  margin: 5vh 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-services__main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 5vh;
}
.home-services__item--color-3 {
  background-color: #E0F3FC;
}
.home-services__item--color-1 {
  color: #ffffff;
  background-color: #0072B0;
}
.home-services__item--color-1 a {
  color: #ffffff;
}
.home-services__image {
  display: none;
}
.home-services__item {
  border-radius: 15px;
  padding: 3vh 5vw;
  display: flex;
  text-align: center;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
.home-services__item--invisible {
  opacity: 0;
  max-height: 0;
  padding: 0;
  transition: all 0.3s ease;
}
.home-services__item--visible {
  opacity: 1;
  max-height: 2000px;
  padding: 3vh 5vw;
}
.home-services__title, .home-services__description {
  margin-bottom: 2vh;
}
.home-services__title {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
}
.home-services__description {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.5;
}
.home-services__link {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: underline;
}
.home-services__button {
  color: #0072B0;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  margin: 3vh 0;
}
.home-services__voir-plus {
  width: 5vw;
  height: auto;
  margin-left: 1vw;
  transition: transform 0.3s ease;
}
.home-services__voir-plus--rotate {
  transform: rotate(-180deg);
}
.home-services__container-1 {
  display: flex;
  flex-direction: column;
  gap: 3vh;
}
.home-services__container-2 {
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: gap 0.3s ease;
}
.home-services__container-2--gap {
  gap: 3vh;
}

@media (min-width: 600px) and (max-width: 1023px) {
  .home-services {
    margin: 5vh 10vw;
  }
  .home-services__main-title {
    font-family: "Montserrat", sans-serif;
    font-size: 5vw;
    font-weight: bold;
  }
  .home-services__title {
    font-family: "Roboto", sans-serif;
    font-size: 4vw;
    line-height: 1.2;
    font-weight: bold;
  }
  .home-services__description {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 2.5vw;
    line-height: 1.5;
  }
  .home-services__link {
    font-family: "Montserrat", sans-serif;
    font-size: 2.3vw;
    font-weight: bold;
  }
  .home-services__button {
    color: #0072B0;
    font-family: "Roboto", sans-serif;
    font-size: 4vw;
    line-height: 1.2;
    font-weight: bold;
  }
}
@media (min-width: 1024px) {
  .home-services {
    margin: 10vh 5vw;
  }
  .home-services__main-title {
    font-family: "Montserrat", sans-serif;
    font-size: 3.5vw;
    font-weight: bold;
    margin-bottom: 15vh;
  }
  .home-services__image {
    display: inherit;
    position: relative;
    height: calc(100% + 8vh);
    width: auto;
    max-width: 45%;
    border-radius: 0 15px 15px 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home-services__container-1 {
    gap: 2vw;
    position: relative;
  }
  .home-services__container-1::before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 120%;
    top: 50%;
    transform: translateY(-50%);
    width: 40vw;
    left: -10vw;
    background-color: #0072B0;
    border-radius: 0 15px 15px 0;
  }
  .home-services__container-2 {
    gap: 0;
    transition: gap 0.3s ease;
  }
  .home-services__container-2--gap {
    gap: 2vw;
  }
  .home-services__item {
    flex: 0 1 48%;
    padding: 4vh 0 4vh 2vw;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    gap: 3vw;
    align-items: center;
  }
  .home-services__item--invisible {
    padding: 0;
  }
  .home-services__item--visible {
    padding: 4vh 0 4vh 2vw;
  }
  .home-services__title, .home-services__description {
    margin-bottom: 3vh;
  }
  .home-services__title {
    font-family: "Roboto", sans-serif;
    font-size: 2.5vw;
    font-weight: bold;
  }
  .home-services__description {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 1vw;
    line-height: 1.5;
  }
  .home-services__link {
    font-family: "Montserrat", sans-serif;
    font-size: 1vw;
    font-weight: medium;
  }
  .home-services__button {
    font-family: "Roboto", sans-serif;
    font-size: 2.5vw;
    font-weight: bold;
    margin: 12vh 0 3vh 0;
    position: relative;
    z-index: 5;
  }
  .home-services__voir-plus {
    width: 3vw;
    margin-left: 1vw;
  }
  .home-services__container-1, .home-services__container-2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=home.css.map */
