@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Oxanium:wght@200..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Pacifico&family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

input,
textarea,
button {
  appearance: none;
  outline: none;
  font-size: inherit;
  font-family: inherit;
  border-radius: 0;
}

html {
  scrollbar-width: none;
  scroll-behavior: smooth;
}

body {
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
  color: #3a3a3a;
  font-family: "Oxanium", sans-serif;
}
body header {
  width: 100%;
  z-index: 10;
}
body header .nav {
  background-color: transparent;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  width: 95%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: space-between;
  z-index: 100;
  padding: 10px 15px;
  top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
@media (min-width: 576px) {
  body header .nav {
    padding: 10px 20px;
  }
}
body header .nav #logo {
  text-decoration: none;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
}
body header .nav #logo h2 {
  color: white;
  font-size: 22px;
}
body header .nav ul {
  display: none;
}
@media (min-width: 576px) {
  body header .nav ul {
    display: flex;
    list-style: none;
  }
}
body header .nav ul li {
  margin: 0 5px;
}
body header .nav ul li a {
  text-decoration: none;
  padding: 5px 20px;
  color: white;
  border-bottom: 1px solid transparent;
  transition: all 0.6s;
  font-size: 16px;
  font-weight: 700;
}
body header .nav ul li a:hover {
  border-bottom: 1px solid white;
}
body header .nav .menu {
  display: block;
}
body header .nav .menu img {
  width: 30px;
  cursor: pointer;
}
@media (min-width: 576px) {
  body header .nav .menu {
    display: none;
  }
}
body header .nav .menu svg {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media (min-width: 576px) {
  body header .nav .menu svg {
    display: none;
  }
}
body header .nav .menu .home-active {
  color: white;
}
body header .sticky {
  margin: 0;
  top: 0;
  position: fixed;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-top: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 100;
  background-color: #f7f7f7;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1300px;
  animation: sticky 1s;
  padding: 10px 15px;
}
body header .sticky #logo h2 {
  color: #3a3a3a;
}
body header .sticky .home-active {
  color: #3a3a3a !important;
}
body header .sticky ul li a {
  color: #3a3a3a;
}
body header .sticky ul li a:hover {
  border-bottom: 1px solid #3a3a3a;
}
@media (min-width: 576px) {
  body header .sticky {
    padding: 10px;
  }
}
@keyframes sticky {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body .image-top-home {
  width: 100%;
  height: 400px;
  position: relative;
}
body .image-top-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .image-top-home .background-black {
  background-color: rgba(0, 0, 0, 0.45);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body .image-top-home .background-black .black-text {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto 20px auto;
}
body .image-top-home .background-black .black-text .border {
  width: 100%;
  height: 1px;
  background-color: white;
}
body .image-top-home .background-black .black-text span {
  display: block;
  width: 120px;
  height: 5px;
  background-color: white;
  margin-top: 100px;
  border-radius: 10px;
}
body .image-top-home .background-black .black-text h1 {
  color: white;
  font-size: 40px;
}
@media (min-width: 576px) {
  body .image-top-home .background-black .black-text h1 {
    font-size: 56px;
  }
}
@media (min-width: 750px) {
  body .image-top-home .background-black .black-text h1 {
    font-size: 62px;
  }
}
body .pdr-service {
  width: 92%;
  max-width: 1200px;
  margin: 30px auto 20px auto;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 20px 15px;
  border-radius: 20px;
}
@media (min-width: 576px) {
  body .pdr-service {
    padding: 30px 20px;
    width: 90%;
    margin: 50px auto 20px auto;
  }
}
@media (min-width: 750px) {
  body .pdr-service {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
body .pdr-service .pdr-left {
  width: 100%;
  margin-right: 20px;
}
@media (min-width: 750px) {
  body .pdr-service .pdr-left {
    width: 60%;
  }
}
body .pdr-service .pdr-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  body .pdr-service .pdr-left h2 {
    font-size: 34px;
    margin-bottom: 20px;
  }
}
@media (min-width: 750px) {
  body .pdr-service .pdr-left h2 {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  body .pdr-service .pdr-left h2 {
    margin-bottom: 30px;
  }
}
body .pdr-service .pdr-left p {
  font-size: 17px;
  font-weight: 600;
  margin: 10px 0;
}
@media (min-width: 576px) {
  body .pdr-service .pdr-left p {
    font-size: 19px;
  }
}
@media (min-width: 750px) {
  body .pdr-service .pdr-left p {
    font-size: 20px;
    margin: 8px 0;
  }
}
@media (min-width: 992px) {
  body .pdr-service .pdr-left p {
    font-size: 22px;
    margin: 10px 0;
  }
}
body .pdr-service .pdr-left .p-mini {
  font-size: 17px;
  color: #313131;
}
@media (min-width: 992px) {
  body .pdr-service .pdr-left .p-mini {
    font-size: 19px;
  }
}
body .pdr-service .pdr-right {
  width: 100%;
}
@media (min-width: 750px) {
  body .pdr-service .pdr-right {
    width: 40%;
  }
}
body .pdr-service .pdr-right img {
  width: 100%;
  max-width: 400px;
  max-height: 250px;
  margin: 20px auto;
  display: block;
  border-radius: 25px;
  object-fit: cover;
}
@media (min-width: 750px) {
  body .pdr-service .pdr-right img {
    width: 100%;
    max-height: 480px;
  }
}
body .pdr-avantaje {
  background-color: black;
  color: white;
  padding: 30px 0;
  margin: 30px 0;
}
body .pdr-avantaje .avantaje-center {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 750px) {
  body .pdr-avantaje .avantaje-center {
    display: flex;
    justify-content: space-between;
  }
}
body .pdr-avantaje .avantaje-center .avantaje-left {
  width: 100%;
  padding-right: 10px;
}
@media (min-width: 750px) {
  body .pdr-avantaje .avantaje-center .avantaje-left {
    width: 40%;
  }
}
@media (min-width: 992px) {
  body .pdr-avantaje .avantaje-center .avantaje-left {
    width: 50%;
  }
}
body .pdr-avantaje .avantaje-center .avantaje-left h2 {
  font-size: 23px;
  margin-bottom: 10px;
}
@media (min-width: 750px) {
  body .pdr-avantaje .avantaje-center .avantaje-left h2 {
    font-size: 25px;
    margin: 0;
  }
}
@media (min-width: 992px) {
  body .pdr-avantaje .avantaje-center .avantaje-left h2 {
    font-size: 36px;
  }
}
body .pdr-avantaje .avantaje-center .avantaje-right {
  width: 100%;
}
@media (min-width: 750px) {
  body .pdr-avantaje .avantaje-center .avantaje-right {
    width: 60%;
  }
}
@media (min-width: 992px) {
  body .pdr-avantaje .avantaje-center .avantaje-right {
    width: 50%;
  }
}
body .pdr-avantaje .avantaje-center .avantaje-right p {
  margin: 7px 0;
  font-size: 17px;
  font-weight: 600;
}
@media (min-width: 992px) {
  body .pdr-avantaje .avantaje-center .avantaje-right p {
    font-size: 18px;
    margin: 5px 0;
  }
}
body .pdr-tools {
  width: 100%;
  margin: 30px 0;
}
body .pdr-tools h2 {
  text-align: center;
  font-size: 28px;
}
@media (min-width: 576px) {
  body .pdr-tools h2 {
    font-size: 38px;
  }
}
body .pdr-tools .pdr-tools-center {
  max-width: 1200px;
  margin: 20px auto;
  width: 90%;
  display: grid;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
@media (min-width: 576px) {
  body .pdr-tools .pdr-tools-center {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}
body .pdr-tools .pdr-tools-center .tool {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 20px 15px;
  border-radius: 20px;
}
body .pdr-tools .pdr-tools-center .tool h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  body .pdr-tools .pdr-tools-center .tool h3 {
    font-size: 22px;
  }
}
body .pdr-tools .pdr-tools-center .tool p {
  margin: 5px 0;
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 576px) {
  body .pdr-tools .pdr-tools-center .tool p {
    font-size: 18px;
  }
}
body .galerie-content {
  max-width: 1200px;
  width: 90%;
  margin: 80px auto;
}
body .galerie-content .galerie {
  width: 100%;
  margin: 80px 0 50px 0;
}
@media (min-width: 750px) {
  body .galerie-content .galerie {
    margin: 80px 0;
  }
}
body .galerie-content .galerie h2 {
  text-align: center;
  margin: 15px 0;
  font-size: 29px;
}
body .galerie-content .galerie .galerie-flex {
  width: 100%;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 20px;
}
@media (min-width: 750px) {
  body .galerie-content .galerie .galerie-flex {
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
body .galerie-content .galerie .galerie-flex a {
  display: flex;
  flex-direction: column;
  min-width: 100px;
  width: 100%;
  color: black;
  text-decoration: none;
  transition: all 0.5s;
}
body .galerie-content .galerie .galerie-flex a img {
  width: 100%;
  border-radius: 10px;
  max-height: 206px;
  object-fit: cover;
  height: 100%;
  background-color: white;
}
body .video-content {
  width: 100%;
}
body .video-content h2 {
  text-align: center;
  font-size: 38px;
}
body .video-content .video-content-center {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  display: grid;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
body .video-content .video-content-center video {
  width: 100%;
}
body .contact-page {
  width: 100%;
}
body .contact-page .contact-center {
  max-width: 1200px;
  width: 90%;
  margin: 100px auto 40px auto;
}
@media (min-width: 750px) {
  body .contact-page .contact-center {
    margin: 100px auto;
  }
}
body .contact-page .contact-center form, body .contact-page .contact-center .date_contact {
  width: 100%;
  background-color: white;
  padding: 30px 10px;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin: 50px 0;
}
@media (min-width: 750px) {
  body .contact-page .contact-center form, body .contact-page .contact-center .date_contact {
    padding: 40px 30px;
  }
}
body .contact-page .contact-center form h2, body .contact-page .contact-center .date_contact h2 {
  text-align: center;
  font-size: 30px;
  color: #313131;
}
@media (min-width: 750px) {
  body .contact-page .contact-center form h2, body .contact-page .contact-center .date_contact h2 {
    font-size: 36px;
  }
}
body .contact-page .contact-center form p, body .contact-page .contact-center .date_contact p {
  font-size: 18px;
  margin: 20px 0 5px 5px;
  font-weight: 600;
  color: black;
}
body .contact-page .contact-center form input, body .contact-page .contact-center form textarea, body .contact-page .contact-center .date_contact input, body .contact-page .contact-center .date_contact textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: black;
  border: 0;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
body .contact-page .contact-center form input::placeholder, body .contact-page .contact-center .date_contact input::placeholder {
  color: black;
  font-weight: 600;
}
body .contact-page .contact-center form textarea::placeholder, body .contact-page .contact-center .date_contact textarea::placeholder {
  color: black;
  font-weight: 600;
}
body .contact-page .contact-center form textarea, body .contact-page .contact-center .date_contact textarea {
  height: 100px;
}
body .contact-page .contact-center form button, body .contact-page .contact-center .date_contact button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 40px auto;
  padding: 10px 0;
  font-size: 18px;
  background-color: #84994F;
  color: white;
  font-weight: 600;
  border: 0;
  border-radius: 20px;
  cursor: pointer;
}
body .contact-page .contact-center .date_contact a {
  display: flex;
  align-items: center;
  color: black;
  font-size: 17px;
  text-decoration: none;
  padding: 5px 0;
  margin: 10px 0;
  transition: all 0.5s;
  font-weight: 500;
  scale: 1;
}
@media (min-width: 576px) {
  body .contact-page .contact-center .date_contact a {
    font-size: 20px;
  }
}
body .contact-page .contact-center .date_contact a img {
  width: 25px;
  object-fit: cover;
  margin-right: 10px;
}
body .contact-page .contact-center .date_contact a span {
  font-weight: 700;
}
body .contact-page .contact-center iframe {
  width: 100%;
  max-height: 200px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
@media (min-width: 576px) {
  body .contact-page .contact-center iframe {
    max-height: 300px;
  }
}
body .contact {
  border-top: 2px solid #3a3a3a;
  width: 100%;
  margin: 0;
  padding: 0;
}
body .contact .contact-center {
  max-width: 1200px;
  margin: 10px auto;
  width: 90%;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: stretch;
}
@media (min-width: 576px) {
  body .contact .contact-center {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }
}
body .contact .contact-center .left {
  max-width: 100%;
}
body .contact .contact-center .left min h2 {
  margin: 0 0 20px 5px;
  font-size: 36px;
}
body .contact .contact-center .left a {
  display: flex;
  align-items: center;
  color: #3a3a3a;
  font-size: 17px;
  text-decoration: none;
  padding: 5px 0;
  margin: 5px 0;
  transition: all 0.5s;
  font-weight: 500;
}
@media (min-width: 576px) {
  body .contact .contact-center .left a {
    font-size: 20px;
  }
}
body .contact .contact-center .left a img {
  width: 25px;
  object-fit: cover;
  margin-right: 10px;
}
body .contact .contact-center .left a span {
  font-weight: 700;
}
body .contact .contact-center .right {
  width: 100%;
}
body .contact .contact-center .right iframe {
  display: block;
  width: 100%;
  height: 100%;
}
body footer {
  border-top: 2px solid #3a3a3a;
  text-align: center;
  padding: 6px 10px;
}
body footer p {
  font-size: 15px;
  font-weight: 600;
}
@media (min-width: 576px) {
  body footer p {
    font-size: 16px;
  }
}
body footer p a {
  font-family: "Pacifico", sans-serif;
  font-size: 15px;
  color: #3a3a3a;
  font-weight: 500;
}
body #apel {
  background-color: #84994F;
  display: flex;
  justify-content: center;
  line-height: 25px;
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 50px;
  position: fixed;
  right: 20px;
  bottom: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: all 0.5s;
}
@media (min-width: 750px) {
  body #apel {
    right: 30px;
    bottom: 30px;
  }
}
body #apel img {
  width: 35px;
}
body #apel:hover {
  scale: 1.1;
  background-color: #1C6EA4;
}
body .mobile-menu {
  position: fixed;
  top: 0;
  right: -200px;
  z-index: 1000;
  width: 180px;
  background-color: #f7f7f7;
  height: 100vh;
  max-height: 100vh;
  overflow-x: hidden;
  padding: 10px 20px;
  transition: right 0.7s;
  border-left: 1px solid black;
}
body .mobile-menu img {
  display: block;
  text-align: right;
  float: right;
  width: 30px;
  margin-top: 0px;
  margin-right: 5px;
  cursor: pointer;
}
body .mobile-menu ul {
  margin: 50px 0px;
  list-style: none;
}
body .mobile-menu ul li {
  margin: 5px 0;
}
body .mobile-menu ul li a {
  color: black;
  text-decoration: none;
  padding: 10px 20px 10px 0;
  display: block;
  font-weight: 700;
  font-size: 16px;
}
body .container {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .container .thanks {
  border: 2px solid black;
  padding: 35px 20px 25px 20px;
  border-radius: 30px;
  margin: 0 20px;
}
@media (min-width: 576px) {
  body .container .thanks {
    padding: 25px 40px;
  }
}
body .container .thanks h1 {
  font-size: 26px;
  font-weight: 500;
}
@media (min-width: 576px) {
  body .container .thanks h1 {
    font-size: 30px;
  }
}
@media (min-width: 750px) {
  body .container .thanks h1 {
    font-size: 37px;
  }
}
body .container .thanks p {
  margin: 15px 0 10px 0;
  padding: 0 5px;
  font-size: 16px;
}
@media (min-width: 576px) {
  body .container .thanks p {
    font-size: 17px;
    padding: 0 10px;
  }
}
@media (min-width: 750px) {
  body .container .thanks p {
    font-size: 19px;
  }
}
body .container .thanks a {
  display: block;
  background-color: #511885;
  width: fit-content;
  color: white;
  text-decoration: none;
  scale: 0.9;
  padding: 10px 30px;
  border-radius: 25px;
  margin: 10px auto;
  transition: all 0.6s;
}
body .container .thanks a:hover {
  scale: 1;
  background-color: #6423a1;
}

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