@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Raleway:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  color: #1e266d;
}

.container {
  width: 1240px;
  margin: auto;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.is-navbar-active {
  max-height: 100% !important;
}

header {
  overflow: hidden;
  background-color: #F9F9F9;
}

.topBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.topBar .logo {
  height: 90px;
}
.topBar .contactMy {
  display: flex;
  gap: 1.5rem;
}
.topBar .contactMy .fa,
.topBar .contactMy .fas {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(60deg, #b8c2d9 5%, #00D664 95%);
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #EEE;
}
.topBar .contactMy div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  font-family: "Raleway", sans-serif;
}
.topBar .contactMy div span {
  font-size: 18px;
  color: #888;
}
.topBar .contactMy div a {
  color: #00D664;
  font-size: 35px;
  font-weight: 700;
  margin-top: 5px;
  text-decoration: underline;
}

.navBar {
  background: #00D664;
  width: 100wv !important;
  min-width: 60px;
  position: relative;
  z-index: 98;
  transition: 0.6s;
  /* required */
}
.navBar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #FFF;
  font-weight: 700;
  overflow: hidden;
}
.navBar ul li {
  float: left;
  overflow: hidden;
}
.navBar a {
  display: inline-block;
  padding: 20px 22px;
  transition: 0.3s;
  animation: navBarAnimation 0.1s forwards;
  transform: translateY(100px);
}
.navBar ul li:nth-child(1) a {
  animation-delay: calc(.1s * 1);
}
.navBar ul li:nth-child(2) a {
  animation-delay: calc(.1s * 2);
}
.navBar ul li:nth-child(3) a {
  animation-delay: calc(.1s * 3);
}
.navBar ul li:nth-child(4) a {
  animation-delay: calc(.1s * 4);
}
.navBar ul li:nth-child(5) a {
  animation-delay: calc(.1s * 5);
}
.navBar ul li:nth-child(6) a {
  animation-delay: calc(.1s * 6);
}
.navBar ul li:nth-child(7) a {
  animation-delay: calc(.1s * 7);
}
.navBar a:hover {
  background-color: #EEE;
  color: #1e266d;
}
.navBar-btn {
  display: none !important;
  width: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.navBar-btn:hover span {
  background: #eee;
  color: #1e266d;
  font-weight: 900px;
}

.ariane {
  padding: 5px 0;
  background: #f7f7f7;
  color: #666;
  z-index: 99;
}
.ariane .container {
  display: flex;
  align-items: center;
}
.ariane ol {
  display: inline-block;
}
.ariane ol li {
  float: left;
  list-style: none;
  font-size: 12px;
  font-weight: 400;
  padding: 8px 4px;
}
.ariane ol li:not(:last-child) {
  padding: 8px 0px 8px 4px;
}
.ariane ol li:not(:last-child)::after {
  display: inline-block;
  margin-left: 4px;
  content: "/";
}
.ariane ol li a:hover {
  color: #00D664;
  text-decoration: underline;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  z-index: 999 !important;
  width: 100% !important;
}

@keyframes navBarAnimation {
  0% {
    transform: translateY(100px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.btn, .tarteaucitronAllow, .tarteaucitronDeny {
  display: inline-block !important;
  width: auto;
  padding: 15px 35px !important;
  border-radius: 50px !important;
  border: 1px solid #00D664 !important;
  font-weight: 900px !important;
  transition: 0.3s !important;
  cursor: pointer !important;
}
.btn:hover, .tarteaucitronAllow:hover, .tarteaucitronDeny:hover {
  background-color: #00D664;
  color: #FFF;
}

.btn-devis {
  background-color: transparent;
  padding: 22px 15px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #FFF;
  border: 3px solid #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
}

.slid {
  position: relative;
  overflow: hidden;
}
.slid .is-slid-active {
  display: block !important;
}
.slid-item {
  display: none !important;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 171px);
  display: flex;
}
.slid-item .container {
  display: flex;
  height: calc(100vh - 171px);
  padding-top: 70px !important;
  padding-bottom: 70px !important;
  flex-direction: column;
  justify-content: space-between;
  z-index: 3;
}
.slid-item .container > * {
  width: 50%;
  z-index: 3;
  transform-origin: 0 center;
}
.slid-item-img {
  position: absolute;
  z-index: -1;
  width: 100%;
}
.slid .btn, .slid .tarteaucitronAllow, .slid .tarteaucitronDeny {
  padding: 12px 25px !important;
  font-size: 13px;
  width: max-content;
  background-color: #EEE;
  transition: background 0.3s !important;
}
.slid .btn:hover, .slid .tarteaucitronAllow:hover, .slid .tarteaucitronDeny:hover {
  background-color: #00D664;
  color: #FFF;
}
.slid .btn-devis {
  width: max-content;
  margin-left: 520px;
}
.slid-loading {
  width: 0;
  height: 5px;
  position: absolute;
  top: 0;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.54);
}
.slid-control {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  padding: 5px 5px 0 5px;
}
.slid-btn {
  display: inline-block;
  width: 10px;
  height: 10px;
  padding: 10px;
  margin: 5px;
  border-radius: 50%;
  background-color: #00D664;
  cursor: pointer;
  transition: 2s;
}
.slid .active:hover {
  background-color: #1e266d;
  cursor: no-drop;
}
.slid .active {
  background: #CCC;
}
.slid h1,
.slid h2 {
  display: inline-block;
  line-height: 32px;
  border-width: 0px;
  margin: 0px;
  padding: 8px 17px;
  background: #00D664;
  color: #FFF;
  letter-spacing: 0px;
  font-weight: 700;
  font-size: 23px;
  width: max-content !important;
}
.slid p {
  line-height: 20px;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
  font-weight: 300;
  font-size: 16px;
  animation-delay: 0.6s !important;
  color: #FFF;
  text-shadow: 0 0 1px #1e266d;
}
.slid-blolb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  letter-spacing: 1px;
  line-height: 68px;
  padding: 1000px;
  left: -1300px;
  top: -800px;
  position: absolute;
  z-index: 0;
  animation: displayblolb 3s reverse;
  backdrop-filter: blur(5px);
}

@keyframes displayblolb {
  33% {
    transform: scale(1.4);
  }
  75% {
    opacity: 0.5;
    transform: scale(1.4);
  }
  100% {
    opacity: 0;
    left: -3000px;
  }
}
.category {
  margin-bottom: 20px;
}
.category .btn, .category .tarteaucitronAllow, .category .tarteaucitronDeny {
  padding: 12px 25px !important;
  font-size: 13px;
  width: max-content;
  background-color: #EEE;
  color: #1e266d;
  transition: background 0.3s !important;
}
.category .btn:hover, .category .tarteaucitronAllow:hover, .category .tarteaucitronDeny:hover {
  background-color: #00D664;
  color: #FFF;
}
.category .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
.category-head {
  grid-column: span 2;
  grid-row: 1;
  text-align: center;
  padding: 20px 0;
}
.category-item-title {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  margin: 0 10px;
  color: #fff;
  text-align: center;
}
.category-item {
  overflow: hidden;
  position: relative;
  padding: 30px;
  padding-bottom: 81px;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #FFF;
  z-index: 1;
}
.category-item:nth-child(odd) {
  z-index: 2;
}
.category img {
  position: absolute;
  z-index: -1;
  height: auto;
}
.category-item > * {
  z-index: 2;
  transform: translateY(31px);
  opacity: 0;
  transition: 1s;
}
.category-item img {
  opacity: 1;
}
.category-item::after {
  content: "Bureaux";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 26px;
  padding: 10px;
  background-color: rgba(28, 112, 182, 0.8);
  color: #FFF;
  text-align: center;
  width: 100%;
  transition: 0.3s;
}
.category-item:nth-child(2)::after {
  content: "Commerces - PME";
}
.category-item:nth-child(3)::after {
  content: "Syndic et immeubles";
}
.category-item:nth-child(4)::after {
  content: "Appartements - maisons";
}
.category-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 51px);
  background-image: linear-gradient(45deg, rgba(153, 194, 28, 0.8), rgba(81, 180, 116, 0));
  z-index: 1;
  opacity: 0;
  transition: 1s;
}
.category-item:hover > * {
  opacity: 1;
}
.category-item:hover img {
  transform: scale(1.1);
}
.category-item:hover::after {
  opacity: 0;
}
.category-item:hover:before {
  opacity: 1;
  background-image: linear-gradient(45deg, rgba(153, 194, 28, 0.8), #51b474);
}
.category-item-about {
  padding: 20px 0 40px 0;
  z-index: 2;
  text-align: center;
  font-weight: 400 !important;
}

#section-devis {
  padding: 60px 0;
  margin-bottom: 40px;
  background-image: url(../img/bg-devis.jpg);
  background-size: cover;
  padding-top: 62px;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-color: transparent;
}
#section-devis .container {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#section-devis span {
  display: inline-block;
  font-size: 40px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-right: 50px;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.6);
}
#section-devis .btn, #section-devis .tarteaucitronAllow, #section-devis .tarteaucitronDeny {
  background-color: #1e266d;
  color: #FFF;
  transition: 0.3s;
  border: 1px solid #1e266d;
  font-weight: 700;
}
#section-devis .btn:hover, #section-devis .tarteaucitronAllow:hover, #section-devis .tarteaucitronDeny:hover {
  background-color: #FFF;
  color: #1e266d;
}

#selection-donnee ul {
  padding-left: 40px;
}
#selection-donnee ul li {
  list-style-type: disc;
  margin-bottom: 5px;
}
#selection-donnee h1, #selection-donnee h2, #selection-donnee h3 {
  margin-bottom: 25px;
}

.engagement {
  margin-bottom: 40px;
}
.engagement-head {
  text-align: center;
  margin-bottom: 30px;
}
.engagement-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.engagement-item-title {
  font-size: 28px;
  font-weight: 700;
  color: #99c21c;
}
.engagement-item-about {
  font-size: 18px;
  font-weight: 300;
  color: #666;
}
.engagement .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.engagement h2 {
  margin-bottom: 15px;
}
.engagement img {
  margin: 20px;
}
.engagement .btn, .engagement .tarteaucitronAllow, .engagement .tarteaucitronDeny {
  font-weight: 900 !important;
  padding: 15px 35px;
  font-size: 16px;
}

.description img {
  float: left;
  margin: 0 20px 20px 0;
}
.description p {
  margin-top: 30px;
}
.description h3 {
  margin: 10px 0;
}

.aside > div {
  width: 270px;
}
.aside-list {
  margin-bottom: 30px;
}
.aside-list li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  display: block;
  padding: 7px 0;
  transition: 0.3s;
  color: #333;
}
.aside h3,
.aside h2, .aside .numbr {
  font-size: 22px;
  color: #445781;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 15px;
  font-weight: 700;
}
.aside .numbr {
  font-size: x-large;
}
.aside .btn, .aside .tarteaucitronAllow, .aside .tarteaucitronDeny {
  padding: 10px 35px;
  font-size: 16px;
}
.aside .title-line::after,
.aside .title-line::after {
  content: "";
  height: 3px;
  width: 50px;
  background-color: #00D664;
  position: absolute;
  left: 0;
  bottom: 0;
}
.aside-list li::before {
  list-style: none;
  content: "\f105";
  font-family: FontAwesome;
  font-weight: 100 !important;
  color: inherit;
  font-size: 14px;
  height: 12px;
  margin: 7px 5px 0 0;
  padding-left: 5px;
  width: 12px;
  box-sizing: border-box;
  transition: 0.3s;
}
.aside-list a {
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 0px solid #666;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  padding: 7px 0;
  text-transform: none;
  transition: 0.3s;
}
.aside-list li:hover::before {
  color: #FFF;
}
.aside-list li:hover {
  background-color: #1e266d;
}
.aside .is-active {
  background-color: #1e266d;
  color: #FFF !important;
}
.aside-list li:hover a {
  text-decoration: underline;
  color: #FFF;
}
.aside-devis {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  padding: 20px;
}
.aside-devis h3, .aside-devis h2 {
  text-align: center;
}
.aside-devis p {
  text-align: center;
  margin-bottom: 15px;
  font-size: medium;
}
.aside-devis p a {
  display: block;
  padding: 20px 0;
}

.singl h1,
.singl h2,
.singl h3 {
  margin-bottom: 15px;
}
.singl .article {
  width: 100%;
  overflow: hidden;
}
.singl .article-head h1 {
  text-align: center;
  font-weight: 900;
  font-size: 2.25rem;
}
.singl .article-fullImg {
  width: 100%;
  margin-bottom: 20px;
}
.singl .article-leftImg {
  float: left;
  padding: 0 20px 10px 0;
}
.singl p {
  margin-bottom: 10px;
  line-height: 1.42857143;
}
.singl p a {
  color: #00D664;
}
.singl p a:hover {
  text-decoration: underline;
}
.singl .container {
  margin: 40px auto;
  display: flex;
  gap: 45px;
}
.singl #section-category {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
}
.singl #section-category img {
  width: 115%;
}
.singl .category-item-title {
  padding-bottom: 20px;
}
.singl iframe {
  width: 100%;
}

footer {
  background-color: #3498db;
  color: #FFF;
  padding: 30px 0 5px 0;
}
footer img {
  width: 50% !important;
}
footer ul li {
  width: 100% !important;
  overflow: hidden;
  font-size: 16px;
  padding: 5px 0;
  display: flex;
  align-items: center;
}
footer ul li .fa, footer ul li .fas {
  font-size: 10px;
}
footer a {
  display: inline-block;
}
footer a:hover {
  text-decoration: underline;
}
footer .fas, footer .fa {
  margin-right: 10px;
}
footer .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
footer .footer-item {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
}
footer .footer-item:nth-child(1) {
  padding: 0;
}
footer .footer-item:nth-child(n+3) li {
  border-bottom: 1px solid #FFF;
}
footer .footer-item:nth-child(n+3) li:nth-last-child(1) {
  border: 0;
}
footer .footer-item span {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 22px;
}
footer .btn, footer .tarteaucitronAllow, footer .tarteaucitronDeny {
  border-radius: 0;
  padding: 10px 15px;
  font-size: 18px;
  margin-top: 20px;
  background-color: #00D664;
  border: 0;
  width: max-content;
}
footer .btn .fas, footer .tarteaucitronAllow .fas, footer .tarteaucitronDeny .fas {
  margin: 0;
}
footer .btn:hover, footer .tarteaucitronAllow:hover, footer .tarteaucitronDeny:hover {
  background-color: #FFF;
  color: #3498db;
}
footer .liensSubFooter {
  font-size: 14px;
  text-align: center;
}

.loader {
  display: inline-block;
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #00D664;
  width: 24px;
  height: 24px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.google-forms > div {
  padding: 32px 0;
  font-size: 1rem;
}

.google-forms iframe {
  height: 1600px;
}

.tarteaucitronAllow, .tarteaucitronDeny {
  background-color: #00D664 !important;
}

#tarteaucitronAlertBig .tarteaucitronAllow, #tarteaucitronAlertBig .tarteaucitronDeny {
  padding: 8px 16px !important;
}

.tarteaucitronDeny {
  background-color: red !important;
}

.recrutement iframe {
  height: 1800px;
}

.contact-form iframe {
  height: 1900px;
}

.tarteaucitronAllow:hover {
  background-color: #1e266d !important;
}

.loading-content {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 32px;
  background-color: #333;
  color: #FFF;
}

.contactMy i {
  animation: iconPhone 1s forwards;
}

@keyframes iconPhone {
  0% {
    transform: translateX(1000px) rotate(360deg);
  }
  100% {
    transform: translateX(0) rotate(0);
  }
}
.contactMy a {
  animation: textFedUo 1s forwards;
  overflow: hidden;
}
.contactMy span {
  animation: textFedDown 1s forwards;
  overflow: hidden;
}

@keyframes textFedUo {
  0% {
    transform: translateY(80px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes textFedDown {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1240px) {
  .container {
    width: 970px;
  }

  header {
    overflow: visible;
  }

  .topBar {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  .topBar .contactMy {
    gap: 0.75rem;
    margin-bottom: 24px;
  }
  .topBar .contactMy div {
    justify-content: center;
    align-items: center;
  }
  .topBar .fa,
.topBar .fas {
    width: 80px !important;
    height: 80px !important;
  }

  .navBar ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    background-color: #FFF;
    backdrop-filter: blur(10px);
    width: 100%;
    top: -1000px;
    right: 0;
  }
  .navBar .container {
    justify-content: right;
  }
  .navBar ul li {
    float: none;
    border-bottom: 2px solid #1e266d;
    width: 100%;
    text-align: center;
    color: #1e266d;
  }
  .navBar ul li a {
    width: 100%;
  }
  .navBar-btn {
    color: #FFF;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: max-content;
    padding: 10px 0 !important;
  }
  .navBar-btn span {
    background-color: #1e266d;
    padding: 15px 30px;
  }

  .slid .container {
    justify-content: space-between;
  }
  .slid-item {
    min-height: calc(100vh - 80px);
  }
}
@media screen and (max-width: 990px) {
  .container {
    width: 750px;
  }

  .category .container {
    grid-template-columns: 1fr;
  }

  .engagement .container {
    flex-direction: column;
    gap: 3rem;
  }

  .description img {
    margin: 0;
    width: 100%;
  }

  footer .container {
    grid-template-columns: auto;
    grid-template-rows: none;
    text-align: center;
  }
  footer .footer-item {
    width: 100%;
    padding: 20px;
  }
  footer .footer-item:nth-child(1) {
    align-items: center;
    justify-content: center;
  }

  .singl #section-category {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }
}
@media screen and (max-width: 960px) {
  .container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0;
  }

  .singl .container {
    flex-direction: column-reverse;
  }

  .aside > div {
    width: 100%;
  }
}
@media screen and (max-width: 760px) {
  .slid h1, .slid h2 {
    font-size: 4.5vw;
  }
  .slid .container {
    gap: 10px;
  }
  .slid .slid-item-img {
    position: absolute;
    z-index: -1;
    height: 100%;
    width: auto;
  }

  #section-devis .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #section-devis .container span {
    text-align: center;
    margin: 0;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 620px) {
  .slid .btn-devis {
    margin-left: auto;
  }
}

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