@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: black;
  margin: 0;
  padding: 0;
  color: white;
  font-family: "Oxanium", sans-serif;
}
body header {
  width: 100%;
  z-index: 10;
}
body header .nav {
  background-color: #2c2c2d;
  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 #star {
  height: 40px;
  width: 40px;
  object-fit: cover;
}
body header .nav #logo #logo-text {
  width: 180px;
}
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 #2c2c2d;
  transition: all 0.6s;
  font-size: 16px;
}
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 .sticky {
  margin: 0;
  top: 0;
  position: fixed;
  border: 1px solid white;
  border-top: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 100;
  background-color: #2c2c2d;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1300px;
  animation: sticky 1s;
  padding: 10px 15px;
}
@media (min-width: 576px) {
  body header .sticky {
    padding: 10px;
  }
}
@keyframes sticky {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body .content {
  width: 90%;
  max-width: 1200px;
  margin: 100px auto 40px auto;
}
@media (min-width: 750px) {
  body .content {
    margin: 100px auto;
  }
}
body .content h1 {
  font-size: 30px;
  text-align: center;
}
@media (min-width: 750px) {
  body .content h1 {
    font-size: 44px;
  }
}
body .content h2 {
  font-size: 26px;
  text-align: center;
}
@media (min-width: 750px) {
  body .content h2 {
    font-size: 36px;
  }
}
body .content .top h3 {
  font-size: 20px;
  margin: 15px 0;
}
@media (min-width: 750px) {
  body .content .top h3 {
    font-size: 24px;
    margin: 20px 0;
  }
}
body .content .top img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
body .content .top a {
  background-color: #1C6EA4;
  color: white;
  display: block;
  margin: 20px auto 50px auto;
  max-width: 450px;
  text-align: center;
  font-size: 20px;
  padding: 10px 0;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.5s;
  scale: 0.9;
}
body .content .top a:hover {
  background-color: #0c476e;
  scale: 1;
}
body .content .prezentare {
  margin: 40px 0;
}
body .content .prezentare p {
  font-size: 18px;
  margin: 20px 0;
  font-weight: 500;
  line-height: 27px;
}
@media (min-width: 750px) {
  body .content .prezentare p {
    line-height: 30px;
  }
}
body .content .prezentare p span {
  font-weight: 900;
  font-size: 20px;
}
body .content .servicii {
  width: 100%;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 40px;
}
body .content .servicii .serviciu {
  background-color: #2c2c2d;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  width: 100%;
  padding: 20px;
  color: white;
  text-decoration: none;
  box-shadow: rgba(88, 88, 88, 0.35) 0px 5px 15px;
  transition: all 0.5s;
}
body .content .servicii .serviciu svg {
  width: 100px !important;
  height: auto !important;
  margin: 0 auto;
}
@media (min-width: 750px) {
  body .content .servicii .serviciu svg {
    width: 150px !important;
  }
}
body .content .servicii .serviciu p {
  margin-top: 20px;
}
body .content .servicii .serviciu h2 {
  font-size: 24px;
  text-align: left;
  color: #1C6EA4;
  transition: all 0.5s;
}
body .content .servicii .serviciu:hover {
  background-color: #1C6EA4;
  box-shadow: rgba(117, 117, 117, 0.35) 0px 20px 20px;
}
body .content .servicii .serviciu:hover h2 {
  color: #2c2c2d;
}
body .content .galerie {
  width: 100%;
  margin: 80px 0 50px 0;
}
@media (min-width: 750px) {
  body .content .galerie {
    margin: 80px 0;
  }
}
body .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 .content .galerie .galerie-flex {
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
body .content .galerie .galerie-flex a {
  display: flex;
  flex-direction: column;
  min-width: 100px;
  width: 100%;
  color: white;
  text-decoration: none;
  transition: all 0.5s;
}
body .content .galerie .galerie-flex a img {
  width: 100%;
  border-radius: 10px;
  max-height: 206px;
  object-fit: cover;
  height: 100%;
  background-color: white;
}
body .content .subsol {
  text-align: center;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
body .content .subsol img {
  width: 250px;
}
@media (min-width: 750px) {
  body .content .subsol img {
    width: 350px;
  }
}
body .content .subsol p {
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
}
@media (min-width: 750px) {
  body .content .subsol p {
    font-size: 18px;
  }
}
body .servicii-content {
  max-width: 1200px;
  width: 90%;
  margin: 80px auto;
}
body .servicii-content .serviciu {
  background-color: #19191a;
  border: 20px;
  border-radius: 20px;
  margin: 30px 0;
  padding: 20px;
}
body .servicii-content .serviciu .serviciu-flex {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 2px dotted white;
}
body .servicii-content .serviciu .serviciu-flex svg {
  width: 200px !important;
  height: auto !important;
}
@media (min-width: 750px) {
  body .servicii-content .serviciu .serviciu-flex svg {
    width: 100px !important;
  }
}
body .servicii-content .serviciu .serviciu-flex .text-right {
  margin-left: 10px;
}
body .servicii-content .serviciu .serviciu-flex .text-right h2 {
  font-size: 19px;
}
@media (min-width: 750px) {
  body .servicii-content .serviciu .serviciu-flex .text-right h2 {
    font-size: 24px;
  }
}
body .servicii-content .serviciu .serviciu-flex .text-right p {
  color: #0c476e;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}
@media (min-width: 750px) {
  body .servicii-content .serviciu .serviciu-flex .text-right p {
    font-size: 17px;
  }
}
body .servicii-content .serviciu .serviciu-descriere {
  width: 100%;
  margin-top: 15px;
}
body .servicii-content .serviciu .serviciu-descriere .text {
  margin: 5px 0;
  font-size: 17px;
  text-align: justify;
}
body .servicii-content .serviciu .serviciu-descriere .text img {
  float: left;
  margin-right: 10px;
}
body .servicii-content .serviciu .serviciu-descriere .text::after {
  content: "";
  display: block;
  clear: both;
}
body .servicii-content .serviciu .serviciu-descriere .bottom {
  font-size: 17px;
  font-weight: 700;
  text-align: justify;
  margin-top: 20px;
}
@media (min-width: 750px) {
  body .servicii-content .serviciu .serviciu-descriere .bottom {
    font-size: 18px;
  }
}
body .servicii-content .serviciu .serviciu-descriere .image-flex {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
body .servicii-content .serviciu .serviciu-descriere .image-flex a {
  padding: 0 5px;
}
body .servicii-content .serviciu .serviciu-descriere .image-flex a img {
  width: 100%;
  background-color: white;
  height: 100%;
  max-width: 200px;
  max-height: 120px;
}
body .servicii-content .serviciu .serviciu-descriere .button {
  color: white;
  background-color: #0c476e;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
  transition: all 0.5s;
  text-align: center;
}
@media (min-width: 750px) {
  body .servicii-content .serviciu .serviciu-descriere .button {
    width: fit-content;
  }
}
body .servicii-content .serviciu .serviciu-descriere .button:hover {
  background-color: #1C6EA4;
  scale: 1.1;
}
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: #19191a;
  padding: 30px 10px;
  border-radius: 30px;
  box-shadow: rgba(139, 139, 139, 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: #1C6EA4;
}
@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;
}
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: white;
  background-color: #2c2c2d;
  border: 0;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 2px 8px 0px;
}
body .contact-page .contact-center form input::placeholder, body .contact-page .contact-center .date_contact input::placeholder {
  color: white;
}
body .contact-page .contact-center form textarea::placeholder, body .contact-page .contact-center .date_contact textarea::placeholder {
  color: white;
}
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: #0c476e;
  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: white;
  font-size: 17px;
  text-decoration: none;
  padding: 5px 0;
  margin: 10px 0;
  transition: all 0.5s;
  font-weight: 500;
}
@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 .date_contact a:hover {
  color: #1C6EA4;
  scale: 1.1;
}
body .contact-page .contact-center iframe {
  width: 100%;
  max-height: 200px;
  border-radius: 20px;
}
@media (min-width: 576px) {
  body .contact-page .contact-center iframe {
    max-height: 300px;
  }
}
body .contact {
  border-top: 2px solid white;
  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-fit, 1fr);
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: stretch;
}
@media (min-width: 576px) {
  body .contact .contact-center {
    grid-template-columns: repeat(auto-fit, 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: white;
  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 .left a:hover {
  color: #1C6EA4;
  scale: 1.1;
}
body .contact .contact-center .right iframe {
  display: block;
  width: 100%;
  height: 100%;
}
body footer {
  border-top: 2px solid white;
  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: white;
  font-weight: 500;
}
body #apel {
  background-color: #0c476e;
  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(85, 85, 85, 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: black;
  height: 100vh;
  max-height: 100vh;
  overflow-x: hidden;
  padding: 10px 20px;
  transition: right 0.7s;
  border-left: 1px solid white;
}
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: white;
  text-decoration: none;
  padding: 10px 20px 10px 0;
  display: block;
}
body .container {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .container .thanks {
  border: 2px solid white;
  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 */
