@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://db.onlinewebfonts.com/c/1dc7840abb13fcda12aa8d1cb21fb832?family=Agrandir");
@import url("https://db.onlinewebfonts.com/c/87095581cde01c325b2dd56133325a57?family=Agrandir+Tight");

.car {
  position: fixed;
  bottom: 0;
  transition: transform 0.0001s ease-in-out;
  z-index: 7;
}

.car img {
  width: 200px;
  margin-bottom: -10px;
}
.chatButton {
  z-index: 20;
  position: fixed;
  bottom: 1%;
  right: 1%;
}
.chat-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.chat-btn:focus {
  outline: none;
  box-shadow: none;
}

.chat-btn img {
  width: 90%;
  display: block;
  transition: transform 0.3s ease;
}
.chat-btn img:hover {
  transform: scale(1.1);
}
.loading-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
}

.loading-page .background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.loading-page .video-background {
  width: 100vw;
  height: 100vh;
  object-fit: fill;
}

.mobile-video,
.tablet-video,
.macbook-video {
  display: none;
}

/* Mobile devices */
@media (max-width: 768px) {
  .desktop-video,
  .tablet-video,
  .macbook-video {
    display: none;
  }
  .mobile-video {
    display: block;
  }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .desktop-video,
  .mobile-video,
  .macbook-video {
    display: none;
  }
  .tablet-video {
    display: block;
  }
}

/* MacBook/smaller desktops */
@media (min-width: 1025px) and (max-width: 1440px) {
  .desktop-video,
  .mobile-video,
  .tablet-video {
    display: none;
  }
  .macbook-video {
    display: block;
  }
}

@media (max-width: 560px) {
  .car {
    display: none;
  }
}

/* Main content initially hidden */
#main-content {
  display: none;
}
#sections-container {
  background-color: #1e191b;
}
