@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Smooch+Sans:wght@100..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import "bootstrap-grid.min.css";
@import "bootstrap-reboot.min.css";
:root {
  --orange-500: #ffffff;
  --violet-500: #ff0000;
  --orange: #FFA500;
  --red-orange: #FF6347;
  --crimson-red: #DC143C;
  --violet-red: #8B008B;
  --magenta-purple: #FF00FF;
  --dark-background: #282828;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  scroll-snap-type: y mandatory;
}

body {
  background-color: var(--dark-background);
}

.accordion-custom {
  content: "";
}
.accordion-custom > p {
  margin: 16px 0px !important;
  transition: all 1s ease;
  cursor: pointer;
  /* Smooth animation */
  /* Truncate to 2 lines */
  /* Expanded shows full text */
}
.accordion-custom > p.truncate {
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1; /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.accordion-custom > p.expanded {
  line-clamp: unset;
  -webkit-line-clamp: unset;
}

#whatsapp-message {
  width: 100%;
  font-size: 14px;
}
#whatsapp-message input[type=text] {
  width: 100%;
}
#whatsapp-message textarea {
  width: 100%;
}
#whatsapp-message button {
  all: unset;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0px 0px 4px #000000;
  float: right;
  cursor: pointer;
}
#whatsapp-message button:hover {
  background-color: green;
  color: whitesmoke;
}

section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section#home {
  background-image: url(../images/section_home.jpg);
  background-color: rgba(0, 0, 0, 0.75);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
}

section#about {
  background-color: lightcoral;
}

section#services {
  background-color: greenyellow;
}

section#contact {
  background-color: whitesmoke;
}

section .section-title {
  font-size: 16px;
  font-family: "Raleway", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: var(--violet-red);
  margin-top: 16px;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  section .section-title {
    font-size: 24px;
  }
}

.nav-container {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.3s;
  pointer-events: none;
}
.nav-container .nav-toggler {
  position: absolute;
  display: flex;
  background-color: rgba(245, 245, 245, 0.5);
  font-size: 24px;
  right: 16px;
  top: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 0px 4px #282828;
  pointer-events: auto;
}
.nav-container .nav-toggler:hover {
  background-color: whitesmoke;
}
@media (min-width: 992px) {
  .nav-container .nav-toggler {
    right: unset;
    left: 16px;
  }
}

nav {
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 320px;
  background-color: black;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
}
nav #nav-close {
  display: flex;
  margin: 16px;
  font-size: 24px;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  color: rgba(245, 245, 245, 0.5);
  justify-self: flex-end;
  cursor: pointer;
}
nav #nav-close:hover {
  color: whitesmoke;
}

.menu-items {
  display: flex;
  flex-direction: column;
  color: whitesmoke;
  font-size: 24px;
  padding: 16px;
}
.menu-items a {
  color: rgba(245, 245, 245, 0.5);
  text-decoration: none;
  margin: 8px 0px;
}
.menu-items a > i {
  margin-left: 16px;
  margin-right: 16px;
}
.menu-items a:hover {
  color: whitesmoke;
}
.menu-items a.active {
  color: whitesmoke;
}

#social-medias-home {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
#social-medias-home a {
  font-size: 48px;
  color: rgba(245, 245, 245, 0.5);
  text-decoration: none;
}

@media (min-width: 576px) and (max-width: 991px) {
  #social-medias-home {
    bottom: unset;
    display: flex;
    flex-direction: row;
    top: 16px;
    left: 16px;
    right: 0;
    height: 48px;
    width: -moz-fit-content;
    width: fit-content;
    justify-content: space-around;
  }
  #social-medias-home a {
    font-size: 24px;
    margin: 0px 16px;
  }
  #social-medias-home a:hover {
    color: whitesmoke;
  }
}
@media (min-width: 992px) {
  #social-medias-home {
    display: flex;
    flex-direction: column;
  }
  #social-medias-home a {
    font-size: 32px;
    margin: 32px 0px;
  }
  #social-medias-home a:hover {
    color: whitesmoke;
  }
}/*# sourceMappingURL=style.css.map */