@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Train+One&display=swap");
.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  position: absolute;
  transform: translateY(-50%), translateX(-50%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.loader h5 {
  font-weight: 800;
  font-size: 61px;
  line-height: 30px;
  color: #FFFFFF;
}

.car__body {
  animation: shake 0.2s ease-in-out infinite alternate;
}
.car__line {
  transform-origin: center right;
  stroke-dasharray: 22;
  animation: line 0.8s ease-in-out infinite;
  animation-fill-mode: both;
}
.car__line--top {
  animation-delay: 0s;
}
.car__line--middle {
  animation-delay: 0.2s;
}
.car__line--bottom {
  animation-delay: 0.4s;
}

@keyframes shake {
  0% {
    transform: translateY(-1%);
  }
  100% {
    transform: translateY(3%);
  }
}
@keyframes line {
  0% {
    stroke-dashoffset: 22;
  }
  25% {
    stroke-dashoffset: 22;
  }
  50% {
    stroke-dashoffset: 0;
  }
  51% {
    stroke-dashoffset: 0;
  }
  80% {
    stroke-dashoffset: -22;
  }
  100% {
    stroke-dashoffset: -22;
  }
}
.loader p {
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
  overflow: hidden;
  color: #FFFFFF;
}

.loader a {
  background-color: #FD8030;
  color: #fff;
  border-radius: 2px;
  text-decoration: none;
  padding: 0.5rem;
  font-size: 20px;
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  transition: 0.3s;
}
.loader a:hover {
  opacity: 0.4;
}

.page-loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #272727;
  z-index: 1000;
  display: none;
  align-items: center;
  gap: 4rem;
  flex-direction: column;
  justify-content: center;
}
.page-loader h5 {
  font-weight: 800;
  font-size: 19px;
  line-height: 30px;
  color: #FFFFFF;
}
.page-loader .txt {
  color: #666;
  text-align: center;
  top: 40%;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-weight: bold;
  line-height: 1.5;
}

/* SPINNER ANIMATION */
.spinner {
  position: relative;
  top: 35%;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    z-index: -22;
  }
}
::-webkit-scrollbar {
  width: 10px;
  height: 15px;
}

::-webkit-scrollbar-track-piece {
  background-color: #1A1616;
}

::-webkit-scrollbar-thumb:vertical {
  height: 20px;
  background-color: #fff;
}

* {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}
*::selection {
  background: #383030;
  color: #fff;
}

body {
  background-color: #fff;
  text-decoration: none;
  transition: 3000ms ease-in-out;
  animation: loading 0.4s ease-in-out;
}

h2 {
  margin-top: 3rem;
  padding: 2rem;
  text-align: center !important;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 32px;
}

header {
  background-image: url("/assets/images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(85%);
  height: 100vh;
  width: 100%;
}

nav ul {
  z-index: 10;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  filter: brightness(100%) !important;
}
nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 0 30px #000000;
  transition: 300ms ease-in-out;
}
nav ul li a:hover {
  color: #FD8030;
}

nav #performance {
  transition: 300ms ease-in-out;
  color: white;
  text-decoration: none;
  position: absolute;
  padding: 6px 12px;
  right: 1rem;
  top: 1.5rem;
  font-size: 20px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  text-transform: uppercase;
  opacity: 0.7;
}
nav #performance:hover {
  background-color: #000000;
  opacity: 1;
}

#toTop {
  opacity: 0.4;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  transition: 0.3s;
}
#toTop:hover {
  opacity: 1;
}
#toTop svg {
  transition: 0.1s;
}

.container .box_welcome {
  z-index: 10;
  position: absolute;
  top: 20%;
  left: 9rem;
  text-shadow: 0 0 30px #000000;
}
.container .box_welcome h1 {
  color: white;
  font-weight: bolder;
  text-transform: uppercase;
  font-size: 60px;
  animation: navBarFadeIn 2s ease-in-out;
}
.container .box_welcome span {
  color: white;
  font-weight: bolder;
  font-size: 40px;
  border-bottom: 4px solid #FD8030;
  border-radius: 10px;
}

.container_infos #logo {
  width: 30%;
}

.box_container {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  left: 0;
  width: 100%;
  top: 50%;
  padding: 1rem;
}
.box_container div {
  position: relative;
  min-height: 200px;
  width: 20%;
  padding: 1rem;
  border: 3px solid #d3d3d3;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}
.box_container div:nth-child(2) {
  border: 3px solid #FD8030 !important;
  transform: translateY(-140px);
  box-shadow: 0 0 20px #FD8030;
}
.box_container div #special {
  color: #FD8030 !important;
}
.box_container div span {
  color: white;
  font-size: 40px;
  text-align: center;
}
.box_container div p {
  animation: feedback 0.4s ease-in-out;
  color: white;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 30px #000000;
  position: absolute;
  font-weight: 500;
  bottom: 10px;
  left: 0;
  padding: 0.5rem;
}
.box_container div small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.warning {
  position: fixed;
  top: 0;
  padding: 1rem;
  background: #FD8030;
  color: #FFFFFF;
  font-size: 25px;
  z-index: 999;
  border-radius: 4px;
}

.container_infos {
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.container_infos div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.container_infos div p {
  font-size: 24px;
  text-align: center;
  font-weight: 450;
}
.container_infos a {
  color: black;
  transition: 300ms ease-in-out;
}
.container_infos a:hover {
  background: #1A1616;
  color: #FD8030;
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 10px;
}

.container_faq {
  width: 100%;
}
.container_faq .faq_container {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
}
.container_faq .faq_container .faq_box {
  cursor: pointer;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.51);
  margin: 1rem;
  transition: 300ms ease-in-out;
}
.container_faq .faq_container .faq_box span {
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-weight: bold;
  font-size: 20px;
}
.container_faq .faq_container .faq_box .faq_content {
  display: none;
  width: 100%;
  overflow: hidden;
  text-align: left;
  font-size: 17px;
  font-weight: 450;
  padding: 1rem;
}
.container_faq .faq_container .faq_box:hover {
  opacity: 0.7;
}

.active {
  display: flex !important;
}

.container_contact {
  padding: 1rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  flex-direction: column;
  margin-bottom: 1rem;
}
.container_contact .content_contact {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 1rem;
}
.container_contact .left {
  display: flex;
  width: 50%;
}
.container_contact .left form {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
}
.container_contact .left form div {
  width: 100%;
  display: flex;
  gap: 1rem;
}
.container_contact .left form input, .container_contact .left form textarea {
  width: 50%;
  border: 1px solid gray;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.51);
  border-radius: 7px;
  padding: 8px;
  resize: none;
  color: black;
}
.container_contact .left form input:nth-child(3), .container_contact .left form textarea:nth-child(3) {
  width: 100% !important;
}
.container_contact .left form input::placeholder, .container_contact .left form textarea::placeholder {
  font-weight: bold;
}
.container_contact .left form button {
  cursor: pointer;
  background: transparent;
  width: 100%;
  border: 1px solid gray;
  color: black;
  font-weight: bold;
  font-size: 20px;
  border-radius: 7px;
  padding: 8px;
  transition: 300ms ease-in-out;
}
.container_contact .left form button:hover {
  background: #292828;
  color: #fff;
}
.container_contact .left form textarea {
  width: 100% !important;
}
.container_contact .right {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 30%;
  max-width: max-content;
  gap: 1rem;
  overflow: hidden;
}
.container_contact .right h4 {
  font-size: 25px;
  font-weight: bold;
  border-bottom: #FD8030 3px solid;
}
.container_contact .right p {
  font-size: 20px;
  font-weight: 450;
  width: 100%;
}

footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
  margin-top: 4rem;
}
footer div:nth-child(1) {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 4px;
}
footer div:nth-child(1) a {
  text-decoration: none;
  color: #1A1616;
  font-size: 15px;
  transition: 300ms ease-in-out;
}
footer div:nth-child(1) a:hover {
  color: rgba(26, 22, 22, 0.68);
  font-weight: bold;
}
footer div:nth-child(2) {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 40%;
  gap: 1rem;
}
footer div:nth-child(2) ul li a {
  text-decoration: none;
  color: #1A1616;
  font-size: 15px;
  transition: 300ms ease-in-out;
}
footer div:nth-child(2) ul li a:hover {
  color: rgba(26, 22, 22, 0.68);
  font-weight: bold;
}
footer div h5 {
  font-size: 25px;
  font-weight: bold;
}
footer div h6 {
  font-size: 15px;
  font-weight: bold;
}

@keyframes feedback {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loading {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes titleFadein {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes navBarFadeIn {
  0% {
    transform: translateY(-10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@media only screen and (max-width: 1680px) {
  .box_container div:nth-child(3) {
    height: 250px;
  }
}
@media only screen and (max-width: 1100px) {
  .box_container {
    margin-top: 4rem;
  }
  .box_container div p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1100px) {
  .box_container div:nth-child(3) {
    height: 75px;
  }
  .container .box_welcome {
    left: 0.5rem;
  }
  .box_container {
    margin-top: 7rem;
  }
  .box_container div span {
    font-size: 20px;
  }
  .box_container div {
    width: 30%;
  }
  nav #performance {
    margin-top: 3rem;
  }
  .container_contact .content_contact {
    flex-direction: column;
    align-items: center;
  }
  .container_contact .left {
    width: 100%;
  }
  .container_contact .right {
    width: 100%;
  }
  footer {
    flex-direction: column;
    gap: 1rem;
  }
  footer div:nth-child(2) {
    width: 50%;
  }
  .foot {
    display: flex;
    width: 100% !important;
    gap: 1rem;
  }
  footer div:nth-child(2) ul li a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 700px) {
  .container_infos {
    padding: 0;
  }
  .container_infos div p {
    font-size: 15px;
  }
  .container .box_welcome h1 {
    font-size: 35px;
  }
  .container .box_welcome span {
    font-size: 20px;
  }
  nav #performance {
    font-size: 14px;
  }
  .box_container {
    flex-direction: column;
    top: 25%;
    padding: 0;
  }
  .box_container div {
    width: 55%;
    min-height: 170px;
  }
  .box_container div span {
    font-size: 40px;
  }
  .box_container div:nth-child(2) {
    transform: translateY(0px);
  }
  header {
    height: 1100px;
  }
  .container_infos #logo {
    width: 70%;
  }
  .box_container div:nth-child(3) {
    height: 250px;
  }
  footer div h5 {
    font-size: 22px;
    font-weight: bold;
  }
}

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