@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Hind:300,400&display=swap");
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

header nav #menuToggle {
  display: none;
  flex-direction: column;
  position: relative;
  z-index: 2;
  user-select: none;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 30%;
}

header nav #menuToggle input {
  display: flex;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

header nav #menuToggle span {
  display: flex;
  width: 29px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: #000;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

header nav #menuToggle span:first-child {
  transform-origin: 0% 0%;
}

header nav #menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

header nav #menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-3px, -1px);
  background: #36383F;
}

header nav #menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

header nav #menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

header nav #menuToggle input:checked ~ .menu {
  transform: translateX(0);
}

header nav #menuToggle input:checked ~ #logo {
  opacity: 0;
}

header nav .menu {
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  width: 60%;
  left: 0;
  z-index: 0;
  background-color: #f5f5f5;
  box-shadow: 0 0 10px #85888C;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

header nav .menu a {
  font-size: 16px;
  text-decoration: none;
  color: #333;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
  display: inline-block;
  box-sizing: border-box;
}

header nav .menu a:hover {
  color: #007bff;
}

header nav .menu a::after {
  display: block;
  content: '';
  border-bottom: solid 2px #f47629;
  transform: scaleX(0);
  transition: transform 500ms ease-in-out;
}

header nav .menu a:hover::after {
  transform: scaleX(1);
}

header nav #phone_number {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 30%;
  z-index: 1;
}

header nav #phone_number a {
  text-decoration: none;
}

header nav #phone_number a p {
  margin: 0;
  background-color: #252936;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  font-size: 30px;
  font-weight: bold;
  color: white;
  letter-spacing: 3px;
  box-shadow: 0px 0px 63px -8px #42445a;
}

header nav #phone_number a p:hover {
  color: #f47629;
}

@media (max-width: 768px) {
  header nav #phone_number {
    width: 70%;
    justify-content: right;
  }
  header nav #phone_number a p {
    box-shadow: none;
  }
  header nav #menuToggle {
    display: flex;
  }
  header nav .menu {
    display: flex;
    align-items: flex-start;
    transform: translateX(-100%);
    height: 100%;
    padding-top: 19%;
  }
  header nav .menu a {
    width: 100%;
    font-size: 20px;
    text-decoration: none;
    color: #333;
    padding: 1rem 2rem;
    transition: color 0.3s;
    display: block;
    text-align: left;
    box-sizing: border-box;
  }
  header nav .menu a:hover {
    color: #007bff;
  }
  header nav .menu a::after {
    display: block;
    content: '';
    border-bottom: solid 2px #f47629;
    transform: scaleX(0);
    transition: transform 500ms ease-in-out;
  }
  header nav .menu a:hover::after {
    transform: scaleX(1);
  }
  header nav #menuToggle input:checked ~ #logo {
    display: none;
  }
  header nav #logo {
    display: none;
  }
  header nav #logo img {
    display: none;
  }
}

@media (min-width: 769px) {
  header nav .menu {
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: center;
    height: auto;
    box-shadow: none;
    background-color: white;
  }
  header nav #menuToggle {
    display: none;
  }
  header nav #logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 30%;
    font-weight: bold;
    font-size: 2rem;
    transition: opacity 0.5s ease;
  }
  header nav #logo img {
    max-width: 160px;
  }
}

footer {
  background-color: #252936;
  width: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 2%;
  -webkit-box-shadow: 0px 0px 24px 0px #42445a;
  -moz-box-shadow: 0px 0px 24px 0px #42445a;
  box-shadow: 0px 0px 24px 0px #42445a;
}

footer .top_footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

footer .top_footer .company-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 30%;
}

footer .top_footer .company-info #text {
  text-align: left;
}

footer .top_footer .company-info #text p {
  line-height: 2em;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0.5rem 0;
  letter-spacing: 1px;
  color: #f5f5f5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: white;
  background: -moz-linear-gradient(90deg, white 0%, white 12%, #e0651a 100%);
  background: -webkit-linear-gradient(90deg, white 0%, white 12%, #e0651a 100%);
  background: linear-gradient(90deg, white 0%, white 12%, #e0651a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#e0651a", GradientType=1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

footer .top_footer .company-info #text p:hover {
  color: #e0651a;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

footer .top_footer .social-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 30%;
}

footer .top_footer .social-links ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-inline-start: 0px;
}

footer .top_footer .social-links ul li a .fa {
  padding: 20px;
  font-size: 30px;
  width: 60px;
  height: 60px;
  text-align: center;
  text-decoration: none;
  margin: 10px;
  transition: transform 0.3s, opacity 0.3s ease-in-out;
  line-height: 60px;
  border-radius: 50%;
  display: inline-block;
  background: #f47629;
  color: white;
}

footer .top_footer .social-links ul li a .fa:hover {
  position: relative;
  transform: scale(1.15);
  opacity: 0.8;
  transition: transform 0.3s, opacity 0.3s ease-in-out;
}

footer .top_footer .social-links ul li a .fa-facebook {
  background: #3b5998;
  -webkit-box-shadow: 0px 0px 24px 0px #42445a;
  -moz-box-shadow: 0px 0px 24px 0px #42445a;
  box-shadow: 0px 0px 24px 0px #42445a;
}

footer .top_footer .social-links ul li a .fa-instagram {
  background: #e4405f;
}

footer .top_footer .social-links ul li a .fa-twitter {
  background: #1da1f2;
}

footer .top_footer .social-links ul li a .fa-linkedin {
  background: #0077b5;
}

footer #box {
  display: flex;
  justify-content: center;
  width: 100%;
}

footer #box #copyright {
  text-align: center;
  border-top: 1px solid #f5f5f5;
  padding: 6px 20px 6px 20px;
  display: inline-block;
  width: auto;
  color: #f5f5f5;
}

@media (max-width: 768px) {
  footer .top_footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer .top_footer .company-info {
    width: 100%;
  }
  footer .top_footer .social-links {
    width: 100%;
  }
}

#form_container {
  display: block;
  width: 80%;
  margin: 0 auto;
}

#form_container h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #252936;
  text-align: center;
}

#form_container form {
  margin: 20px;
}

#form_container form .form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 32px 0;
  justify-content: space-between;
}

#form_container form .form-row .input-data {
  width: calc(50% - 40px);
  height: 40px;
  margin: 0 20px 20px 20px;
  position: relative;
}

#form_container form .form-row .input-data.textarea {
  width: calc(100% - 40px);
  height: auto;
}

#form_container form .form-row .input-data.textarea .input {
  height: auto;
  min-height: 150px;
  resize: vertical;
}

#form_container form .form-row .input-data.textarea .label {
  top: -20px;
}

#form_container form .form-row .input-data .input,
#form_container form .form-row .input-data .textarea {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  font-size: 17px;
  background-color: #f5f5f5;
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
  outline: none;
  padding: 0.5rem;
  transition: border-color 0.3s ease;
}

#form_container form .form-row .input-data .input:focus, #form_container form .form-row .input-data .input:valid,
#form_container form .form-row .input-data .textarea:focus,
#form_container form .form-row .input-data .textarea:valid {
  border-color: #f47629;
}

#form_container form .form-row .input-data .input:focus ~ label, #form_container form .form-row .input-data .input:valid ~ label,
#form_container form .form-row .input-data .textarea:focus ~ label,
#form_container form .form-row .input-data .textarea:valid ~ label {
  transform: translateY(-20px);
  font-size: 14px;
  color: #f47629;
}

#form_container form .form-row .input-data .input:focus ~ .underline:before, #form_container form .form-row .input-data .input:valid ~ .underline:before,
#form_container form .form-row .input-data .textarea:focus ~ .underline:before,
#form_container form .form-row .input-data .textarea:valid ~ .underline:before {
  transform: scale(1);
}

#form_container form .form-row .input-data .label {
  position: absolute;
  pointer-events: none;
  bottom: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

#form_container form .form-row .input-data .underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
}

#form_container form .form-row .input-data .underline:before {
  content: "";
  height: 2px;
  width: 100%;
  background: #f47629;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

#form_container form .form-row .file-upload-container {
  width: calc(50% - 40px);
  margin: 0 20px 20px 20px;
}

#form_container form .form-row .file-upload-container .file-upload {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f5f5f5;
  cursor: pointer;
}

#form_container form .form-row .captcha-container {
  width: calc(50% - 40px);
  display: flex;
  flex-direction: row;
  margin: 0 20px 20px 20px;
}

#form_container form .form-row .captcha-container .captcha {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  width: 20%;
  padding-right: 10px;
}

#form_container form .form-row .captcha-container input[type="text"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 10px;
  width: 70%;
}

#form_container form .form-row .captcha-container .underline {
  width: 100%;
  height: 2px;
  background-color: #f47629;
  margin-top: 5px;
  margin-bottom: 15px;
}

#form_container form .form-row .captcha-container .label {
  margin-top: 5px;
  font-size: 0.9em;
  color: #252936;
}

#form_container form .send_button {
  display: flex;
  justify-content: center;
}

#form_container form .send_button .submit-btn {
  min-width: 70px;
  display: inline-block;
  width: 20%;
  background-color: #252936;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.3s;
}

#form_container form .send_button .submit-btn:hover {
  background-color: #f47629;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  #form_container {
    width: 100%;
  }
  #form_container form .form-row {
    flex-direction: column;
  }
  #form_container form .form-row .input-data,
#form_container form .form-row .file-upload-container,
#form_container form .form-row .captcha-container {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
  }
  #form_container form .form-row.textarea .input {
    min-height: 150px;
  }
  #form_container form .send_button .submit-btn {
    width: 50%;
  }
}

.faq-container {
  margin: 3%;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #f47629;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: black;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #f47629;
}

.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #f47629;
  border: 1px solid #f47629;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  right: 0;
}

.accordion button[aria-expanded='true'] {
  color: #f47629;
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

/* styles.scss */
#container_gallery {
  background-color: white;
  width: 100%;
  height: 100%;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
  padding: 10px;
  justify-items: center;
  align-items: center;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item .delete-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: red;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.gallery-item .delete-button:hover {
  opacity: 1;
}

.gallery-image {
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.1);
  filter: brightness(80%);
}

.modal, .delete-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content, .delete-modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover, .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

button.close {
  background-color: transparent;
  border: none;
  color: #000;
  font-size: 16px;
  cursor: pointer;
}

button.close:hover {
  text-decoration: underline;
}

#deleteConfirm {
  background-color: red;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin: 10px;
}

#main_text {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #f5f5f5;
  width: 100%;
  height: 100%;
}

#main_text section {
  display: flex;
  width: 100%;
  flex: 1;
  justify-content: center;
  align-items: center;
}

#main_text section div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#main_text section div h1 {
  text-transform: uppercase;
  font-size: 2rem;
  color: #252936;
  line-height: 1.2;
  text-align: center;
}

#main_text section div h2 {
  font-size: 1.6rem;
  color: #f47629;
  margin-bottom: 1rem;
  text-align: center;
}

#main_text section div ul {
  text-align: left;
  list-style: none;
  line-height: 2.5em;
}

#main_text section div ul li {
  position: relative;
  font-size: 1.2rem;
  color: #252936;
  padding-left: 3%;
}

#main_text section div ul li::before {
  content: '✓';
  color: #f47629;
  position: absolute;
  left: 0;
  top: 0;
}

#main_text img {
  max-width: 36%;
  height: auto;
  border-radius: 100% 0% 23% 77% / 0% 100% 0% 100%;
  -webkit-box-shadow: -16px 13px 24px 0px #42445a;
  -moz-box-shadow: -16px 13px 24px 0px #42445a;
  box-shadow: -16px 13px 24px 0px #42445a;
}

@media (max-width: 768px) {
  #main_text {
    display: flex;
    flex-direction: column;
    padding: 2%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
  #main_text section {
    width: 100%;
    padding: 2%;
  }
  #main_text section div {
    padding-top: 25px;
  }
  #main_text section div h1 {
    font-size: 1.5rem;
    padding-bottom: 5%;
  }
  #main_text section div h2 {
    font-size: 1.2rem;
  }
  #main_text section div ul {
    padding-left: 1rem;
    padding-bottom: 0;
  }
  #main_text section div ul li {
    font-size: 0.9rem;
  }
  #main_text img {
    max-width: 80%;
    margin-bottom: 3rem;
    border-radius: 50%;
    box-shadow: -8px 8px 16px rgba(66, 68, 90, 0.8);
  }
}

.element {
  opacity: 0;
  transform: translateY(20px);
  /* ustawienie początkowe dla płynnego przejścia */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Efekty */
@keyframes fadeInUpAndRotate {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95) rotate(-3deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

/* Klasy efektów */
.fadeInUpAndRotate {
  animation-name: fadeInUpAndRotate;
}

/* Klasy prędkości */
.slow {
  animation-duration: 0.9s;
}

html {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  min-width: 350px;
  width: auto !important;
  width: 350px;
}

html body {
  min-width: 350px;
  width: auto !important;
  width: 350px;
  margin: 0;
}

html body main {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: #f5f5f5;
}

html body main #map {
  height: 400px;
  width: 100%;
}

html body main .site_separator {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #252936;
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: -50px 47px 31px -37px #42445a;
  -moz-box-shadow: -50px 47px 31px -37px #42445a;
  box-shadow: -50px 47px 31px -37px #42445a;
}

html body main .site_separator #separator_text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  align-items: center;
  height: 100%;
  position: relative;
  padding: 2% 0 2% 0;
}

html body main .site_separator #separator_text #text_in1_separator {
  font-size: 50px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: -25px;
}

html body main .site_separator #separator_text #text_in1_separator2 {
  font-size: 20px;
  margin: 0px;
}

html body main .site_separator #separator_text #call_us {
  display: flex;
  margin-bottom: 30px;
  background-color: #f47629;
  color: white;
  padding: 15px 30px;
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: solid 2px #f47629;
  cursor: pointer;
  box-shadow: -1px -1px 61px 7px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px -1px 61px 7px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px -1px 61px 7px rgba(0, 0, 0, 0.75);
  transform: translateY(0px);
}

html body main .site_separator #separator_text #call_us:hover {
  padding: 15px 50px;
  transition: 1000ms;
  transform: translateY(0px);
  border: solid 2px white;
}

html body main .site_separator .unselectable {
  -webkit-user-select: none;
  /* Safari, Chrome */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Standard */
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-tap-highlight-color: transparent;
  /* Mobile Safari */
  -webkit-user-drag: none;
  /* Prevent image drag in Safari */
  user-drag: none;
  /* Prevent image drag */
  pointer-events: none;
  /* Prevent all mouse/touch interactions */
}

@media (max-width: 768px) {
  html body main .site_separator .left_wrench {
    position: absolute;
    color: #2d3243;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(13);
    opacity: 0.3;
  }
  html body main .site_separator .right_wrench {
    display: none;
  }
  html body main .site_separator #separator_text #text_in1_separator {
    font-size: 30px;
  }
  html body main .site_separator #separator_text #text_in1_separator2 {
    font-size: 20px;
  }
}

@media (min-width: 1070px) {
  html body main .site_separator .left_wrench {
    position: static;
    transform: none;
    color: #2d3243;
    font-size: 215px;
    opacity: 0.3;
    padding-right: 5%;
  }
  html body main .site_separator .right_wrench {
    position: static;
    transform: none;
    color: #2d3243;
    font-size: 215px;
    opacity: 0.3;
    padding-left: 5%;
  }
}

#map {
  -webkit-box-shadow: 0px 0px 38px -7px #42445a;
  -moz-box-shadow: 0px 0px 38px -7px #42445a;
  box-shadow: 0px 0px 38px -7px #42445a;
}

@media (max-width: 1070px) and (min-width: 769px) {
  html body main .site_separator .left_wrench {
    position: absolute;
    color: #2d3243;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(13);
    opacity: 0.3;
  }
  html body main .site_separator .right_wrench {
    display: none;
  }
}
