@import url("https://fonts.googleapis.com/css2?family=Orbitron&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gruppo&display=swap");
@keyframes logoTurn {
  0% {
    transform: rotateY(0turn);
  }
  100% {
    transform: rotateY(1turn);
  }
}
body {
  font-family: orbitron, Arial, Helvetica, sans-serif;
}

.bg {
  width: 100%;
  height: 800px;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 769px) {
  .bg {
    height: 840px;
  }
}

.logo {
  width: 100px;
  height: auto;
}
@media screen and (min-width: 700px) {
  .logo {
    width: 110px;
    height: auto;
  }
}
@media screen and (min-width: 1000px) {
  .logo {
    width: 150px;
    height: auto;
  }
}

.rotate {
  animation: logoTurn 5s 2s linear both infinite;
}

.logoTxt {
  width: 170px;
  height: 30px;
  padding-top: 5px;
}
@media screen and (min-width: 700px) {
  .logoTxt {
    width: 170px;
    height: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .logoTxt {
    width: 250px;
    height: 50px;
  }
}

nav {
  padding: 20px;
  background: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0));
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 700px) {
  nav {
    justify-content: start;
    padding: 20px;
  }
}

.navLogo {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 700px) {
  .navLogo {
    flex-direction: column;
  }
}

#menuBurger {
  width: 45px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 10;
}
#menuBurger:hover {
  cursor: pointer;
}
@media screen and (min-width: 700px) {
  #menuBurger {
    display: none;
  }
}

.burger {
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, rgb(130, 205, 255), rgb(0, 68, 131));
  border-radius: 3px;
  box-shadow: 1px 1px 1px black;
}

.modal-body {
  height: 450px;
  background-color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.modal-body a {
  text-decoration: none;
  font-size: 1.5rem;
  width: 200px;
  height: 50px;
  border-radius: 0 0 30px 0;
  text-align: center;
}
.modal-body a:hover {
  border-bottom: 2px solid white;
  font-size: 2rem;
}

.links {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.links a {
  font-size: 1.2rem;
  text-align: center;
  width: 120px;
  border-radius: 0 0 25px 0;
  text-decoration: none;
  padding: 10px 15px 10px 5px;
}
.links a:hover {
  border-bottom: 3px solid white;
}
@media screen and (max-width: 1100px) {
  .links a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 700px) {
  .links {
    display: none;
  }
}

.rsLinks {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.rsLinks a {
  width: 100px;
}

h1 {
  color: white;
  text-align: center;
  font-size: 3rem;
  padding: 100px 0 30px 0;
}
@media screen and (max-width: 700px) {
  h1 {
    font-size: 1.5rem;
    padding: 100px 0 30px 0;
  }
}

.weDo {
  color: white;
  text-shadow: 2px 2px 1px black;
  font-size: 1.1rem;
  text-align: center;
  padding: 50px 0 160px 0;
}
@media screen and (max-height: 840px) {
  .weDo {
    padding: 50px 0 130px 0;
  }
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
#scrollIcon {
  width: 22px;
  height: 40px;
  margin: auto;
  border: 2px solid rgb(255, 255, 255);
  box-shadow: 1px 1px 1px black;
  border-radius: 10px;
}
@media screen and (max-width: 430px) {
  #scrollIcon {
    border: 2px solid rgb(255, 255, 255);
  }
}
#scrollIcon div {
  width: 5px;
  height: 5px;
  background-color: rgb(255, 255, 255);
  border-radius: 2px;
  margin-top: 5px;
  margin-left: 7px;
  animation: scrollAnim 1s infinite;
}
@media screen and (max-width: 430px) {
  #scrollIcon div {
    background-color: rgb(255, 255, 255);
  }
}

.scroll {
  text-align: center;
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 1px black;
  font-family: orbitron, Arial, Helvetica, sans-serif;
}

.portrait {
  width: 100%;
  padding: 220px 70px 130px 70px;
  display: flex;
  gap: 100px;
  align-items: center;
  font-family: "gruppo", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(0, 0, 0);
}
@media screen and (max-width: 1000px) {
  .portrait {
    flex-direction: column;
    padding: 100px 20px 50px 20px;
    gap: 50px;
    text-align: center;
  }
}

.pix {
  font-family: orbitron, Arial, Helvetica, sans-serif;
  font-size: 2rem;
  color: rgb(60, 127, 252);
}

.gras {
  font-size: 2.2rem;
  font-weight: 600;
}

.contactUs {
  width: 250px;
  padding: 15px;
  margin-top: 100px;
  background: linear-gradient(rgb(5, 54, 189), rgb(95, 178, 255));
  border-radius: 50px;
  box-shadow: 1px 1px 5px rgb(0, 0, 0);
  font-family: orbitron, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: white;
  text-decoration: none;
  text-align: center;
}
.contactUs:hover {
  background: linear-gradient(rgb(48, 136, 218), blue);
}

.portraitTxt {
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .portraitTxt {
    width: 100%;
  }
}

.portraitImg {
  width: 25%;
  height: auto;
}
.portraitImg img {
  border-radius: 50%;
}
@media screen and (max-width: 700px) {
  .portraitImg {
    width: 60%;
  }
}

.services {
  width: 100%;
  background: linear-gradient(rgb(0, 0, 46), rgb(50, 67, 255), rgb(0, 0, 46));
}
.services h2 {
  border-radius: 0 0 35px 0;
  width: 250px;
  margin: auto;
  text-align: center;
  font-size: 2rem;
  padding: 40px 40px 20px 40px;
}
.services h2 a {
  text-decoration: none;
  color: white;
}
.services h2:hover {
  border-bottom: 2px solid white;
}

.cartes {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px 30px 100px 30px;
}
@media screen and (max-width: 700px) {
  .cartes {
    flex-direction: column;
    gap: 30px;
  }
}

.carte {
  background-color: white;
  border-radius: 15px;
  width: 150px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
.carte img {
  width: 100px;
  height: auto;
}

@keyframes crayon {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(0);
  }
  30% {
    transform: rotate(-15deg);
  }
  40% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0);
  }
  70% {
    transform: rotate(-10deg);
  }
  80% {
    transform: rotate(0);
  }
  90% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0);
  }
}
.crayon:hover {
  animation: crayon 1.5s ease-in-out both infinite;
}

@keyframes ordi {
  0% {
    transform: translate(0);
  }
  10% {
    transform: translate(10px);
  }
  20% {
    transform: translate(20px);
  }
  30% {
    transform: translate(30px);
  }
  40% {
    transform: translate(0px, 15px);
  }
  50% {
    transform: translate(10px, 15px);
  }
  60% {
    transform: translate(20px, 15px);
  }
  70% {
    transform: translate(30px, 15px);
  }
  80% {
    transform: translate(0px, 30px);
  }
  90% {
    transform: translate(20px, 30px);
  }
  100% {
    transform: translate(0px);
  }
}
.ordi:hover {
  animation: ordi 2s ease-in-out both infinite;
}

@keyframes secu {
  0% {
    transform: translate(3%);
  }
  10% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3%);
  }
  30% {
    transform: translate(0);
  }
  40% {
    transform: translate(5%);
  }
  50% {
    transform: translate(0);
  }
  60% {
    transform: translate(-5%);
  }
  70% {
    transform: translate(0);
  }
  80% {
    transform: translate(0);
  }
  90% {
    transform: translate(0);
  }
  100% {
    transform: translate(0);
  }
}
.cadenas:hover {
  animation: secu 0.6s ease-in-out both infinite;
}

@keyframes rouage {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(10deg);
  }
  20% {
    transform: rotate(15deg);
  }
  30% {
    transform: rotate(20deg);
  }
  40% {
    transform: rotate(30deg);
  }
  50% {
    transform: rotate(40deg);
  }
  60% {
    transform: rotate(50deg);
  }
  70% {
    transform: rotate(60deg);
  }
  80% {
    transform: rotate(70deg);
  }
  90% {
    transform: rotate(80deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
.rouage:hover {
  animation: rouage 1.5s both infinite;
}

.model {
  background: linear-gradient(to right, rgb(175, 175, 255), rgb(224, 241, 255), rgb(175, 175, 255));
  padding-bottom: 100px;
}
.model h2 {
  border-radius: 0 0 35px 0;
  width: 250px;
  margin: auto;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 50px 40px 20px 40px;
}
.model h2 a {
  color: rgb(0, 2, 92);
  text-decoration: none;
}
.model h2:hover {
  border-bottom: 2px solid rgb(0, 2, 92);
}
.model p {
  font-family: gruppo, Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: bold;
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 40px 30px;
}

.modImg {
  width: 100%;
  height: auto;
}

.logoInTxt {
  width: 200px;
  padding-top: 15px;
}

.carousel {
  width: 98%;
  height: 300px;
  margin: auto;
}
@media screen and (min-width: 700px) {
  .carousel {
    width: 85%;
    height: 400px;
  }
}
@media screen and (min-width: 1000px) {
  .carousel {
    width: 80%;
    height: 500px;
  }
}

.models {
  display: block;
  width: 250px;
  margin: 50px auto 0 auto;
  padding: 20px;
  background: linear-gradient(rgb(5, 54, 189), rgb(95, 178, 255));
  border-radius: 50px;
  box-shadow: 1px 1px 3px rgb(7, 7, 7);
  color: white;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
}
.models:hover {
  background: linear-gradient(rgb(48, 136, 218), blue);
}
@media screen and (min-width: 500px) {
  .models {
    margin: 200px auto 30px auto;
  }
}
@media screen and (min-width: 1000px) {
  .models {
    margin: 300px auto 30px auto;
  }
}

.tarifs {
  padding-bottom: 100px;
  width: 100%;
  background: linear-gradient(rgb(0, 0, 46), rgb(50, 67, 255));
}
.tarifs h2 {
  width: 220px;
  border-radius: 0 0 35px 0;
  font-size: 2rem;
  padding: 50px 35px 20px 35px;
  margin-left: 15px;
}
.tarifs h2 a {
  text-decoration: none;
  color: white;
}
.tarifs h2:hover {
  border-bottom: 3px solid white;
}
.tarifs p {
  color: white;
  font-family: gruppo, Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  padding: 50px;
}

.priceContainer {
  width: 80%;
  padding: 30px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  gap: 50px;
}
@media screen and (max-width: 700px) {
  .priceContainer {
    flex-direction: column;
    align-items: center;
  }
}

.prix {
  width: 250px;
  height: 250px;
  background-color: white;
  border-radius: 125px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.prix:hover {
  background-color: aqua;
  box-shadow: 3px 3px 3px black;
}

.title {
  font-size: 1.2rem;
}

.price {
  font-size: 2.5rem;
  font-family: gruppo, Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: rgb(0, 62, 196);
}

.consult {
  font-family: gruppo, Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: rgb(0, 62, 196);
}
.consult a {
  text-decoration: none;
}
.consult a:hover {
  text-decoration: underline;
}

.moreInfos {
  display: block;
  width: 250px;
  margin: auto;
  padding: 20px;
  background: linear-gradient(rgb(5, 54, 189), rgb(95, 178, 255));
  border-radius: 50px;
  box-shadow: 1px 1px 3px rgb(7, 7, 7);
  color: white;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
}
.moreInfos:hover {
  background: linear-gradient(rgb(48, 136, 218), blue);
}

.lil {
  font-size: 0.9rem;
}

.phone {
  width: 60%;
  height: auto;
  border-radius: 50%;
}
@media screen and (max-width: 700px) {
  .phone {
    width: 90%;
  }
}

.echange {
  display: flex;
  flex-direction: column;
}

.contactUs2 {
  width: 250px;
  margin: 30px auto;
  padding: 20px;
  background: linear-gradient(rgb(5, 54, 189), rgb(95, 178, 255));
  border-radius: 50px;
  box-shadow: 1px 1px 3px rgb(7, 7, 7);
  color: white;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
}
.contactUs2:hover {
  background: linear-gradient(rgb(48, 136, 218), blue);
}

.contact {
  padding: 30px;
  text-align: center;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.contact h2 {
  font-size: 2rem;
  padding: 30px;
}
.contact a {
  font-family: orbitron, Arial, Helvetica, sans-serif;
  text-decoration: none;
}
@media screen and (max-width: 700px) {
  .contact {
    flex-direction: column;
  }
}

footer {
  background: linear-gradient(rgb(50, 67, 255), rgb(0, 0, 46));
  font-family: gruppo, Arial, Helvetica, sans-serif;
  color: white;
  width: 100%;
  height: 300px;
  margin: auto;
  padding: 20px 20px 5px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer a {
  font-size: 1rem;
  color: white;
  text-decoration: none;
}
footer p {
  font-family: orbitron, Arial, Helvetica, sans-serif;
  font-size: 2rem;
}

.footLogo {
  display: flex;
  align-items: center;
}

.logoMini {
  width: 40px;
  height: 40px;
}

.flexFoot {
  height: 70%;
  display: flex;
  justify-content: space-around;
}

.foot {
  font-family: orbitron, Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding-bottom: 10px;
}
.foot a {
  font-size: 0.8rem;
}
.foot a:hover {
  text-decoration: underline;
}

.footContact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footContact a {
  font-size: 1.2rem;
}
.footContact a:hover {
  text-decoration: underline;
}
.footContact address {
  font-size: 1.2rem;
}

.rs {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 1000px) {
  .rs {
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    width: 500px;
  }
}

.logoRs {
  width: 50px;
  height: 50px;
  border-radius: 25px;
}/*# sourceMappingURL=styles.css.map */