.container {
  margin: auto;
  padding: 0px 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .container {
    padding: 0px 12px;
  }
}

.container-medium {
  margin: auto;
  padding: 0px 76px;
  width: 100%;
}
@media (max-width: 992px) {
  .container-medium {
    padding: 0px 12px;
  }
}

.container-small {
  margin: auto;
  padding: 0px 100px;
  width: 100%;
}
@media (max-width: 992px) {
  .container-small {
    padding: 0px 12px;
  }
}

.page-container {
  padding: 0px;
}
@media (max-width: 992px) {
  .page-container {
    padding: 0px;
  }
}

.flex {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
  height: fit-content;
}

.h100 {
  height: 100%;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 992px) {
  .grid-2-1 {
    grid-template-columns: 1fr;
  }
}

.grid-3-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 992px) {
  .grid-3-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-3-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 992px) {
  .grid-3-1 {
    grid-template-columns: 1fr;
  }
}

.grid-4-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 992px) {
  .grid-4-1 {
    grid-template-columns: 1fr;
  }
}

.grid-4-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 992px) {
  .grid-4-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-4-2-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 992px) {
  .grid-4-2-1 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 468px) {
  .grid-4-2-1 {
    grid-template-columns: 1fr;
  }
}

.grid-5-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 992px) {
  .grid-5-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.grid-phone {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.grid-phone input {
  width: 100%;
}

.grid-side-right {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: flex-start;
  height: 100%;
  gap: 24px;
}
@media (max-width: 992px) {
  .grid-side-right {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.grid-side-left {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-content: flex-start;
  height: 100%;
  gap: 24px;
}
@media (max-width: 992px) {
  .grid-side-left {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.grid-center-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-content: flex-start;
  height: 100%;
  gap: 24px;
}
@media (max-width: 992px) {
  .grid-center-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.stretch {
  align-content: stretch !important;
}
@media (max-width: 992px) {
  .stretch {
    align-content: flex-start !important;
  }
}

.full-height {
  height: 100%;
}

.cover {
  object-fit: cover;
}

.ar4-3 {
  aspect-ratio: 4/3;
}

.ar3-4 {
  aspect-ratio: 3/4;
}

.ar5-3 {
  aspect-ratio: 5/3;
}

.ar3-5 {
  aspect-ratio: 3/5;
}

.ar16-9 {
  aspect-ratio: 16/9;
}

.ar9-6 {
  aspect-ratio: 9/16;
}

.ar21-9 {
  aspect-ratio: 21/9;
}

.ar1-1 {
  aspect-ratio: 1/1;
}

@media (max-width: 592px) {
  .desktop {
    display: none;
  }
}

.gap-small {
  gap: 6px;
}

.gap {
  gap: 12px;
}

.gap-large {
  gap: 24px;
}

.absolute {
  position: absolute;
}

.hidden {
  visibility: hidden;
}

.desktop {
  display: flex;
}
@media (max-width: 992px) {
  .desktop {
    display: none !important;
  }
}

.ipad {
  display: none;
}
@media (max-width: 992px) {
  .ipad {
    display: flex;
  }
}

.gallery a {
  margin-bottom: -4px;
}
.gallery a img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.mb-small {
  margin-bottom: 6px;
}

.mb {
  margin-bottom: 12px;
}

.mb-large {
  margin-bottom: 24px;
}

.mt-small {
  margin-top: 6px;
}

.mt {
  margin-top: 12px;
}

.mt-large {
  margin-top: 24px;
}

.mt-xlarge {
  margin-top: 48px;
}

.py {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-large {
  padding-top: 32px;
  padding-bottom: 32px;
}

.pb-large {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .pb-large {
    padding-bottom: 12px;
  }
}

.pointer {
  cursor: pointer;
}

.relative {
  position: relative;
}

.bg-white {
  background-color: #fff;
}

.border-none {
  border: none !important;
}

@media (max-width: 992px) {
  .order-1 {
    order: 1;
  }
}

@media (max-width: 992px) {
  .order-2 {
    order: 2;
  }
}

img {
  max-width: 100%;
}

* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

body, h1, h2, h3, h4, h5, h6 {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.head {
  font-size: 1.3em;
  margin-bottom: 24px;
}

a {
  color: #1B1C1C;
  transition: all 0.3s;
}
a:active {
  color: #1B1C1C;
}

u {
  text-decoration: underline;
}

.large {
  font-size: 1.7em;
}

.small {
  font-size: 0.8em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.small i {
  font-size: 1.3em;
}

.bold {
  font-weight: 500;
}

.golden {
  color: #f9dc4a;
}

.mono {
  font-family: "Roboto Mono", monospace;
}

.display {
  font-family: "Playfair Display";
}

.slub {
  font-family: "Roboto Slab", serif;
}

:root {
  --input-height: 45px;
  --input-with-label: 60px;
  --inner-radius: 6px;
  --outer-radius: 12px;
}

label,
.label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
label span,
.label span {
  font-size: 0.8em;
  color: #6c757d;
}

input,
select,
textarea {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-bottom: 1px solid #adb5bd;
  padding: 0px 15px;
  height: var(--input-height);
  border-radius: var(--inner-radius);
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1.5em;
  transition: all 0.2s ease-in-out;
  outline: 3px solid rgba(13, 110, 253, 0);
  position: relative;
}
input:focus,
select:focus,
textarea:focus {
  border: 1px solid #0d6efd !important;
  outline: 3px solid rgba(13, 110, 253, 0.3);
  z-index: 1;
}
input:hover,
select:hover,
textarea:hover {
  border: 1px solid #0d6efd !important;
  z-index: 2;
}

.panoImage {
  border: 2px dotted #0d6efd !important;
}
.panoImage:hover {
  border: 2px dotted #0d6efd !important;
}

textarea {
  padding: 12px 15px;
  min-height: 130px;
}

.ql-toolbar {
  border-radius: var(--inner-radius) var(--inner-radius) 0px 0px;
}

.quill-editor {
  border-radius: 0px 0px var(--inner-radius) var(--inner-radius);
}
.quill-editor p {
  line-height: 1.7em;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.1em;
  margin-bottom: 12px !important;
}

.select-label {
  position: relative;
}
.select-label select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}
.select-label:after {
  font-family: "Material Symbols rounded" !important;
  content: "keyboard_arrow_down" !important;
  display: flex !important;
  height: 40px !important;
  align-items: center !important;
  bottom: 0px !important;
  position: absolute !important;
  z-index: 2 !important;
  right: 12px !important;
  font-size: 1.2em !important;
  pointer-events: none !important;
  color: #1B1C1C !important;
  box-sizing: border-box !important;
}

select[multiple] {
  height: fit-content;
  padding: 12px 15px;
  border: 1px solid #0d6efd;
  outline: 2px solid rgba(13, 110, 253, 0.3);
}

.flex-label {
  display: flex;
  flex-direction: row;
  position: relative;
}
.flex-label span {
  position: absolute;
  left: 16px;
  top: 10px;
  font-size: 0.8em;
  z-index: 2 !important;
  color: #6c757d;
}
.flex-label input,
.flex-label select {
  height: var(--input-with-label);
  position: relative;
  width: 100%;
  z-index: 1 !important;
  padding-top: 18px;
  font-weight: 500;
}
.flex-label textarea {
  width: 100%;
  padding-top: 27px;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.flex-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}
.flex-select:after {
  font-family: "Material Symbols rounded";
  content: "keyboard_arrow_down";
  display: flex;
  height: 40px;
  align-items: center;
  bottom: 0px;
  position: absolute;
  z-index: 2;
  right: 12px;
  font-size: 1.2em;
  pointer-events: none;
  color: #1B1C1C;
  box-sizing: border-box;
}

.flex-select-multiply select[multiple] {
  height: fit-content;
  padding: 12px 15px;
  padding-top: 32px;
  border: 1px solid #0d6efd;
  outline: 2px solid rgba(13, 110, 253, 0.3);
  width: 100%;
  height: 125px;
}
.flex-select-multiply select[multiple]:after {
  content: "";
}

button,
.button {
  height: var(--input-height);
  background-color: #1B1C1C;
  padding: 0px 15px;
  border: none !important;
  font-weight: 600;
  font-size: 1em;
  border-radius: var(--inner-radius);
  cursor: pointer;
  border: 2px solid #1B1C1C;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
button:hover,
.button:hover {
  background-color: rgb(39.5181818182, 40.9818181818, 40.9818181818);
}

.button-large {
  height: calc(var(--input-height) * 1.5);
}

.button-small {
  height: calc(var(--input-height) * 0.7) !important;
  padding: 0px 10px;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.button-small i {
  font-size: 1.3em !important;
  margin: -5px 0px;
  margin-bottom: -7px;
}

button:disabled,
.button:disabled {
  background-color: #ced4da;
  border-color: #ced4da;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

.button-outline {
  background-color: #fff;
  border: 2px solid rgba(13, 110, 253, 0.5) !important;
  box-sizing: border-box;
  border-radius: var(--inner-radius);
  color: #1B1C1C;
  opacity: 1 !important;
  cursor: pointer;
}
.button-outline:hover {
  background-color: transparent;
  border: 2px solid #0d6efd;
}

.button-success {
  background-color: #374a41;
  border-color: #374a41;
}
.button-success:hover {
  background-color: rgb(65.8720930233, 88.6279069767, 77.8488372093);
}

.button-gold {
  background-color: #f9dc4a;
  border-color: #f9dc4a;
  color: #1B1C1C;
}
.button-gold:hover {
  background-color: rgb(249.8181818182, 224.7727272727, 98.6818181818);
}

.input-group {
  display: flex;
  flex-direction: column;
}
.input-group .flex-label input,
.input-group .flex-label textarea,
.input-group .flex-label select,
.input-group .label input,
.input-group .label textarea,
.input-group .label select {
  border-radius: 0px;
  border-top: none;
  border-bottom: 1px solid #dee2e6;
}
.input-group .flex-label:first-child input,
.input-group .flex-label textarea,
.input-group .flex-label select,
.input-group .label:first-child input,
.input-group .label textarea,
.input-group .label select {
  border-radius: var(--inner-radius) var(--inner-radius) 0px 0px;
  border: 1px solid #dee2e6;
}
.input-group .flex-label:last-child input,
.input-group .flex-label textarea,
.input-group .flex-label select,
.input-group .label:last-child input,
.input-group .label textarea,
.input-group .label select {
  border-radius: 0px 0px var(--inner-radius) var(--inner-radius);
  border-top: 1px solid transparent;
}

.twin-input {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #adb5bd;
  border-radius: var(--inner-radius);
}
.twin-input input {
  border-bottom: 1px solid transparent;
  border-radius: var(--inner-radius) var(--inner-radius) 0px 0px;
}
.twin-input input:last-child {
  border-radius: 0px 0px var(--inner-radius) var(--inner-radius);
}
.twin-input textarea {
  border-radius: 0px 0px var(--inner-radius) var(--inner-radius);
  border-bottom: 1px solid transparent;
}

.trio-input {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #adb5bd;
  border-radius: var(--inner-radius);
}
.trio-input input {
  border-bottom: 1px solid transparent;
  border-radius: var(--inner-radius) 0px 0px 0px;
}
.trio-input input:last-child {
  border-radius: 0px var(--inner-radius) 0px 0px;
  border-left: 1px solid transparent;
}
.trio-input textarea {
  border-radius: 0px 0px var(--inner-radius) var(--inner-radius);
  border-bottom: 1px solid transparent;
}

.with-title {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #adb5bd;
  border-radius: var(--inner-radius);
}
.with-title .first input {
  border-bottom: 1px solid transparent;
  border-radius: var(--inner-radius) var(--inner-radius) 0px 0px;
}
.with-title .last input {
  border-radius: 0px 0px var(--inner-radius) var(--inner-radius);
  border-bottom: 1px solid transparent;
}

.title {
  position: relative;
}
.title img {
  position: absolute;
  right: 12px !important;
  top: 50%;
  height: 12px;
  margin-top: -6px;
  border-radius: calc(var(--inner-radius) / 2);
  opacity: 0.5;
  z-index: 2;
}
.title input {
  font-weight: 500;
  width: 100%;
}

.iti {
  width: 100%;
}

.code-editor {
  min-height: 400px;
  width: 100%;
  height: fit-content !important;
  font-family: "Roboto Mono", monospace;
  font-size: 0.8em;
  line-height: 1.5;
  white-space: pre;
  tab-size: 2;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 15px;
  padding-top: 36px;
  background-color: #fff;
  border: 1px solid #dee2e6;
  width: 100%;
  border-radius: var(--inner-radius);
  height: fit-content;
  max-height: 300px;
  overflow-y: auto;
}
.checkbox-group .checkbox {
  display: grid;
  grid-template-columns: 20px auto;
  gap: 8px;
}
.checkbox-group .checkbox span {
  display: flex;
  position: relative;
  align-items: center;
  margin: 0px;
  padding: 0px;
  position: inherit;
  font-size: 1em;
}
.checkbox-group .checkbox input {
  width: 16px;
  height: 16px;
}
.checkbox-group .checkbox-sub {
  margin-left: 24px;
}

.address-autocomplete {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 100%;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: var(--inner-radius);
  padding: 12px;
  z-index: 5;
}
.address-autocomplete .address-autocomplete-item {
  padding: 6px 12px;
  border-radius: calc(var(--inner-radius) / 2);
}

.address-autocomplete-item:hover,
.address-autocomplete-item.active {
  background: #0d6efd;
  color: #fff;
}

header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 24px;
  backdrop-filter: blur(30px);
  background-color: #374a41;
}
@media (max-width: 992px) {
  header {
    padding: 12px 15px;
    grid-template-columns: 1fr 1fr;
  }
}
header .logoarea {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}
header .logoarea .logo {
  height: 60px;
}
@media (max-width: 992px) {
  header .logoarea .logo {
    width: 100%;
    height: auto;
  }
}
header .logoarea .logotype {
  height: 35px;
  margin-top: 3px;
}
@media (max-width: 992px) {
  header .logoarea .logotype {
    display: none;
  }
}
header .right {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 24px;
  color: #1B1C1C;
}
header .right a {
  color: #1B1C1C;
}
header .right a:hover {
  color: #1B1C1C;
}
header .right #bi-list {
  display: none;
}
@media (max-width: 992px) {
  header .right #bi-list {
    display: flex;
    font-size: 2.2em;
    cursor: pointer;
    color: rgb(153.4651162791, 179.5348837209, 167.1860465116) !important;
  }
}
header .right .header-menu ul {
  display: flex;
  gap: 24px;
  list-style: none;
}
header .right .header-menu ul li a {
  display: flex;
  align-items: center;
  font-size: 1em;
  font-weight: 500;
  color: rgb(153.4651162791, 179.5348837209, 167.1860465116) !important;
  text-transform: uppercase;
  position: relative;
}
header .right .header-menu ul li a:after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -6px;
  height: 3px;
  background-color: transparent;
  transition: background-color 0.3s ease;
  transition: all 0.4s;
}
header .right .header-menu ul li a:hover {
  color: rgb(241.2325581395, 244.7674418605, 243.0930232558) !important;
}
header .right .header-menu ul li a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background-color: #F5C25C;
}
header .right .header-menu ul li ul {
  display: none;
}
@media (max-width: 992px) {
  header .right .header-menu {
    display: none;
    position: absolute;
    left: 0px;
    right: 0px;
    top: calc(100% + 0px);
    background-color: white;
    box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.3);
    padding: 12px 24px;
    border-radius: 0px 0px 12px 12px;
  }
  header .right .header-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
  }
  header .right .header-menu ul li {
    display: flex;
    flex-direction: column;
  }
  header .right .header-menu ul li a {
    color: rgb(76.7441860465, 103.2558139535, 90.6976744186) !important;
    font-size: 1.2em;
    border-bottom: 1px solid #efefef;
    height: 50px;
    align-items: center;
    font-weight: 500;
  }
  header .right .header-menu ul li a:hover {
    color: #374a41 !important;
  }
  header .right .header-menu ul li a:hover::after {
    content: none;
  }
  header .right .header-menu ul li:last-child a {
    border-bottom: none;
  }
}
header .right .active {
  display: flex;
}
header .right .social-network {
  margin-left: 18px;
}
header .right .social-network ul {
  display: flex;
  gap: 24px;
}
header .right .social-network ul a {
  font-size: 1.6em;
  color: rgb(153.4651162791, 179.5348837209, 167.1860465116) !important;
}
header .right .social-network ul a:hover {
  color: rgb(241.2325581395, 244.7674418605, 243.0930232558) !important;
}
header .right .social-network ul a img {
  height: 35px;
}

.social-network ul {
  display: flex;
  align-items: center;
}
.social-network ul a img {
  height: 30px !important;
  margin-top: 4px;
}
@media (max-width: 992px) {
  .social-network ul a img {
    height: 30px !important;
  }
}

footer {
  min-height: 400px;
  background-color: rgb(19.4890909091, 20.2109090909, 20.2109090909);
  color: rgba(255, 255, 255, 0.5);
  padding: 24px 0px;
}
footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 992px) {
  footer .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
footer .container .logos {
  display: flex;
  gap: 12px;
}
footer .container .logos img {
  height: 30px;
}
footer .container nav ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer .container nav ul li a {
  color: rgba(255, 255, 255, 0.5) !important;
}
footer .container nav ul li a:hover {
  color: white !important;
}
footer .container nav ul li ul {
  display: none;
}
footer .container .social {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 992px) {
  footer .container .social {
    align-items: flex-start;
  }
}
footer .container .social ul {
  display: flex;
  align-items: center;
  gap: 12px;
}
footer .container .social ul li a {
  color: rgba(255, 255, 255, 0.5) !important;
}
footer .container .social ul li a:hover {
  color: white !important;
}
footer .container .social ul li a i {
  font-size: 1.3em;
}

.footerContact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
.footerContact .contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footerContact a {
  color: #0d6efd;
}

.footerDeep {
  background-color: rgb(14.4818181818, 15.0181818182, 15.0181818182);
  padding: 24px 0px;
  color: #adb5bd;
}

:root {
  --admin-menu-height: 50px !important;
}
:root a {
  color: #1B1C1C !important;
}
:root .button {
  color: white !important;
}
:root .button-outline {
  color: #1B1C1C !important;
}

.adminmenu {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  background-color: rgb(19.4890909091, 20.2109090909, 20.2109090909);
  gap: 24px;
  z-index: 999 !important;
  font-size: 0.9em;
}
.adminmenu a {
  color: white !important;
}
.adminmenu .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--admin-menu-height);
  padding-top: 0px;
  padding-bottom: 0px;
}
.adminmenu .left,
.adminmenu .right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.adminmenu a {
  color: #fff;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
}
.adminmenu a i {
  font-size: 1.5em;
}
.adminmenu a:hover {
  opacity: 1;
}
.adminmenu .active {
  opacity: 1;
}
.adminmenu .notifications span {
  display: none;
}
@media (max-width: 992px) {
  .adminmenu .notifications span {
    display: flex;
  }
}
.adminmenu .sperator {
  margin-left: 24px;
  position: relative;
}
@media (max-width: 992px) {
  .adminmenu .sperator {
    margin-left: 0px;
    margin-top: 24px;
  }
  .adminmenu .sperator:after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: -24px;
    height: 1px;
    background-color: #dee2e6;
  }
}
.adminmenu .netspace {
  font-size: 1.3em;
  display: flex;
  align-items: center;
  opacity: 1;
}
.adminmenu .netspace .logotype {
  height: 22px;
  margin-bottom: -1px;
  opacity: 0.4;
  transition: all 0.3s;
}
.adminmenu .netspace .logotype:hover {
  opacity: 0.6;
}
.adminmenu .netspace span {
  transform: scaleX(0.96);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #dee2e6;
  letter-spacing: 4px;
}

.mobile-quick-edit i {
  font-size: 1.7em !important;
}

.adminmenu-space {
  height: var(--admin-menu-height);
}

.loader {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0px;
  bottom: 0px;
  background-color: #f8f9fa;
  overflow-y: auto;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: calc(100vh - var(--admin-menu-height));
  color: #1B1C1C;
}
@media (max-width: 992px) {
  .loader {
    padding-bottom: 12px;
    gap: 12px;
  }
}
.loader .content {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .loader .content {
    padding-bottom: 12px;
  }
}

.loaderLogin {
  top: 0px;
  justify-content: center;
}

.admin-page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background-color: #e9ecef;
  padding: 0px 24px;
  height: calc(var(--admin-menu-height) + 6px);
  min-height: calc(var(--admin-menu-height) + 6px);
}
@media (max-width: 992px) {
  .admin-page-header {
    padding: 12px 12px;
  }
}
.admin-page-header a {
  margin: 0px;
  padding: 0px;
  margin-bottom: -4px;
}
.admin-page-header h3 {
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 992px) {
  .admin-page-header h3 {
    font-size: 1em;
  }
}
.admin-page-header i {
  font-size: 22px;
}

.sticky-wrapper {
  height: fit-content;
  box-sizing: border-box;
  position: sticky;
  top: 24px;
}
@media (max-width: 992px) {
  .sticky-wrapper {
    position: relative;
    top: 0px;
  }
}

.add-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  border: 1px solid #dee2e6;
  border-radius: var(--inner-radius);
  background-color: #fff;
}
.add-page a {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 12px;
}
.add-page a i {
  font-size: 5em;
  font-weight: 200;
}
.add-page a:hover i {
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .add-page {
    height: 160px;
    min-height: auto;
  }
  .add-page a i {
    font-size: 3em;
  }
}

.fileinput {
  padding: 0px;
  aspect-ratio: 5/3;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
}
.fileinput .fileicon {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fileinput .fileicon i {
  font-size: 4em;
}
.fileinput .preview {
  position: relative;
  aspect-ratio: 5/3;
  width: 100%;
  overflow: hidden;
  border-radius: var(--inner-radius);
  border: 1px solid #dee2e6;
}
.fileinput .preview img {
  position: relative;
  aspect-ratio: 5/3;
  width: 100%;
  object-fit: cover;
}

.photo-select {
  padding: 12px;
  background-color: #fff;
  border: 1px solid rgba(13, 110, 253, 0.3);
  border-radius: var(--inner-radius);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 5/3;
  cursor: pointer;
}
.photo-select:hover {
  border: 1px solid #0d6efd;
}

.fit-content {
  height: fit-content;
}

.preview-upload {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  filter: grayscale(1);
}
@media (max-width: 992px) {
  .preview-upload {
    grid-template-columns: repeat(6, 1fr);
  }
}
.preview-upload img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--inner-radius);
}

.page-gallery {
  height: calc(100% - 24px);
  background-color: #fff;
  padding: 12px;
  border: 1px solid rgba(13, 110, 253, 0.3);
  border-radius: var(--inner-radius);
}
@media (max-width: 992px) {
  .page-gallery {
    padding: 0px;
    border: none;
    background-color: none;
    height: auto;
  }
}
.page-gallery .page-gallery-emty {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-gallery .page-gallery-emty i {
  font-size: 5em;
  font-weight: 200;
}

.preview-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
@media (max-width: 992px) {
  .preview-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.preview-gallery img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

.gallery-input {
  height: auto;
}

.menubar {
  color: #fff;
  font-size: 2em;
}

@media (max-width: 992px) {
  .mobileSide {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    position: fixed;
    left: 0px;
    top: 50px;
    bottom: 0px;
    width: 80%;
    background-color: #fff;
    box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.5);
    padding: 24px;
    z-index: 7 !important;
  }
  .mobileSide a {
    color: #1B1C1C;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    font-size: 1.1em;
    width: 100%;
  }
}

.loginPage {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 32px;
  margin: auto;
  width: 100%;
  max-width: 992px;
  padding: 24px !important;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .loginPage {
    grid-template-columns: 1fr;
  }
}
.loginPage .left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 992px) {
  .loginPage .left {
    gap: 12px;
  }
}
.loginPage .left img {
  width: 180px;
  height: auto;
}
@media (max-width: 992px) {
  .loginPage .left img {
    margin: auto;
  }
}
.loginPage .left p {
  font-size: 1.1em;
  line-height: 1.6em;
}
@media (max-width: 992px) {
  .loginPage .left p {
    display: none;
  }
}
.loginPage form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 360px;
  position: relative;
}
@media (max-width: 992px) {
  .loginPage form {
    min-width: 100px;
  }
}
.loginPage form button {
  height: calc(var(--input-height) * 1.5);
}
.loginPage form .alert {
  color: #dc3545;
  text-align: center;
  position: absolute;
  left: 0px;
  bottom: -32px;
  right: 0px;
}

.netspace-logo {
  position: absolute;
  left: -300px;
  top: -200px;
  height: 800px;
  width: auto;
  z-index: 0;
  opacity: 0.1;
}
@media (max-width: 992px) {
  .netspace-logo {
    left: 0px;
    top: 0px;
    height: auto;
  }
}

.orderSubmit {
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-item {
  position: relative;
}
.photo-item img {
  border-radius: calc(var(--inner-radius) / 2) !important;
  cursor: grab;
}
@media (max-width: 992px) {
  .photo-item img {
    border-radius: var(--inner-radius) !important;
  }
}
.photo-item a {
  position: absolute;
  right: 6px;
  bottom: 9px;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  border-radius: calc(var(--inner-radius) / 2);
}
.photo-item:hover a {
  position: absolute;
  right: 6px;
  bottom: 9px;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.photo-item:hover a:hover {
  background-color: #fff;
}

.modul-header {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  gap: 12px;
  font-weight: 500;
}

.pagesAdmin {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pagesAdmin li {
  padding: 0px 12px;
  padding-bottom: 0px;
  min-height: var(--input-height);
  display: flexbox;
  align-content: center;
  font-weight: 600;
  border: 1px solid #dee2e6;
  border-bottom: 1px solid #adb5bd;
  border-radius: var(--inner-radius);
  background-color: #fff;
  position: relative;
}
.pagesAdmin li .list-content {
  display: grid;
  grid-template-columns: auto 112px;
  align-items: center;
  height: var(--input-height);
}
.pagesAdmin li .list-content img {
  object-fit: cover;
}
.pagesAdmin li .page-list-heading {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 12px;
}
.pagesAdmin li .page-list-heading a {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.pagesAdmin li .page-list-heading i {
  color: #adb5bd;
}
.pagesAdmin li .page-list-heading i:hover {
  color: #0d6efd;
}
.pagesAdmin li .page-list-heading img {
  width: 19px;
  height: 19px;
  border-radius: calc(var(--inner-radius) / 2);
}
.pagesAdmin li .page-list-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.pagesAdmin li .page-list-buttons i {
  color: #adb5bd;
  font-weight: 500;
  font-size: 1.3em;
}
.pagesAdmin li .page-list-buttons i:hover {
  color: #0d6efd;
}
.pagesAdmin li .page-list-buttons .active-icon {
  color: #0d6efd;
}
.pagesAdmin li .page-list-buttons .active-icon i {
  color: #0d6efd;
}
.pagesAdmin li a {
  color: #1B1C1C;
}
.pagesAdmin li i {
  font-size: 1.3em;
  line-height: 1.3em;
}
.pagesAdmin li .order {
  cursor: grab;
}
.pagesAdmin li ul li {
  padding: 0px !important;
  border: none;
  border-top: 1px solid #dee2e6;
  font-weight: 400;
  height: var(--input-height);
  border-radius: 0px;
  background-color: #fff;
}
.pagesAdmin li ul li:hover {
  border: none;
  border-top: 1px solid #dee2e6;
}
.pagesAdmin li ul li .chevron {
  color: #6c757d !important;
  cursor: grab;
}
.pagesAdmin li ul li span {
  font-size: 0.9em;
}
.pagesAdmin .has-submenu {
  border: 1px solid #0d6efd;
  box-shadow: 0px 0px 20px rgba(13, 110, 253, 0.1);
  outline: 2px solid rgba(13, 110, 253, 0.2);
}

.counter {
  font-size: 0.7em;
  min-width: 18px;
  height: 18px;
  padding: 0px 5px;
  box-sizing: border-box;
  background-color: #0d6efd;
  color: #fff;
  border-radius: calc(var(--inner-radius) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto Mono", monospace;
}

.approval {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal {
  display: none;
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  align-items: center;
  justify-content: center;
  background-color: rgba(27, 28, 28, 0.3);
  z-index: 3;
}
.modal .modal-container {
  width: 100%;
  padding: 12px;
  max-width: 800px;
}
.modal .modal-header {
  background-color: #dee2e6;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  border-radius: 3px 3px 0px 0px;
}
.modal .modal-header span {
  cursor: pointer;
}
.modal .modal-content {
  height: auto;
  min-height: 300px;
  padding: 24px;
  background-color: #fff;
  border-radius: 0px 0px 3px 3px;
  max-height: 70vh;
  overflow: auto;
}

.reservationDetails {
  width: 100%;
}
.reservationDetails tr {
  padding: 0px;
  margin: 0px;
}
.reservationDetails tr td {
  border-top: 1px solid #dee2e6;
  padding: 8px 0px;
  line-height: 1.5em;
  vertical-align: middle;
}
.reservationDetails tr:first-child td {
  border: none;
}

.ql-toolbar {
  background-color: #fff;
  border: 1px solid #dee2e6 !important;
  border-bottom: 1px solid #adb5bd !important;
}

.ql-picker-options {
  font-size: 1.2em;
}

.ql-picker-label {
  font-size: 1em;
}

.quill-editor {
  min-height: 250px;
  font-size: 1em;
  background-color: #fff;
  border: 1px solid #dee2e6 !important;
  border-bottom: 1px solid #adb5bd !important;
  border-top: none !important;
}
.quill-editor h3 {
  margin-bottom: 15px;
  font-weight: 600;
}
.quill-editor p {
  margin-bottom: 24px;
}
.quill-editor ol {
  margin: 18px auto;
  line-height: 1.7em;
}
.quill-editor ol li span {
  font-size: 1em;
  opacity: 1;
}
.quill-editor ol .ql-ui {
  font-family: "Roboto Mono", monospace;
}

.add-page-button {
  position: sticky;
  bottom: 24px;
  display: flex;
}
@media (max-width: 992px) {
  .add-page-button {
    order: 2;
    bottom: 0px !important;
  }
}

.modalOverlay {
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  background-color: white;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.modalOverlay .modalContent {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modalOverlay .modalContent img {
  width: 200px;
  height: auto;
}
.modalOverlay .modalContent #loading {
  display: flex;
}
.modalOverlay .modalContent #done {
  display: none;
}

.iti__country-list {
  z-index: 4 !important;
}

.fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fields span {
  height: var(--input-height);
  display: flex;
  align-items: center;
  color: #6c757d;
}
@media (max-width: 992px) {
  .fields span {
    height: auto;
    justify-content: flex-start;
  }
}

.dataset-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--inner-radius);
}
.dataset-header a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0px 12px;
  background-color: #f8f9fa;
  margin: 0px;
}
.dataset-header a i {
  font-size: 1.3em;
  margin-left: -6px;
}
.dataset-header a:last-child {
  background-color: #0d6efd;
  color: #fff;
}
.dataset-header .active {
  background-color: #fff;
}

.ajs-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20% !important;
  color: #1B1C1C !important;
}

.ajs-dialog {
  background-color: none !important;
  border-radius: var(--outer-radius) !important;
}

.ajs-close {
  display: none !important;
}

.ajs-header {
  border-radius: var(--outer-radius) !important;
  text-align: center;
  font-size: 1.4em;
  padding-top: 27px !important;
  font-weight: 500 !important;
}

.ajs-body {
  text-align: center;
  padding: 0px !important;
  width: 320px !important;
  max-width: 320px !important;
}

.ajs-content {
  line-height: 1.4em;
}

.ajs-footer {
  background: none !important;
  display: flex;
  justify-content: flex-end;
  gap: 0px;
  padding: 6px !important;
}

.ajs-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0px;
  width: 100%;
}

.ajs-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
}
.ajs-buttons .ajs-ok {
  background-color: rgb(210.9493670886, 36.5506329114, 53.2594936709);
  border: 1px solid rgb(210.9493670886, 36.5506329114, 53.2594936709);
}
.ajs-buttons .ajs-ok:hover {
  background-color: #dc3545;
  border: 2px solid #dc3545;
}
.ajs-buttons .ajs-cancel {
  border: 2px solid #dee2e6;
  background-color: #fff;
  color: #1B1C1C;
  margin: 0px;
}
.ajs-buttons .ajs-cancel:hover {
  border: 2px solid #ced4da;
}

.glow:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  border-radius: calc(var(--inner-radius) - 1px);
  border: 1px solid transparent;
  z-index: 1;
  pointer-events: none;
  animation: glowAnimation 5s;
}

@keyframes glowAnimation {
  0% {
    background-color: rgba(55, 74, 65, 0.1);
    border: 1px solid rgba(55, 74, 65, 0.5);
    box-shadow: 0px 0px 50px rgba(55, 74, 65, 0.3);
  }
  70% {
    background-color: rgba(55, 74, 65, 0.1);
    border: 1px solid rgba(55, 74, 65, 0.5);
    box-shadow: 0px 0px 50px rgba(55, 74, 65, 0.3);
  }
  100% {
    background-color: rgba(55, 74, 65, 0);
    border: 1px solid rgba(55, 74, 65, 0);
    box-shadow: 0px 0px 0px rgba(55, 74, 65, 0);
  }
}
:root .lazyload {
  width: 100%;
  max-width: 100%;
}
:root .light {
  background-color: #1B1C1C;
  color: #f8f9fa;
}
:root .light a {
  color: #dee2e6;
}
:root .light a:hover {
  color: rgb(182.7209302326, 201.2790697674, 192.488372093);
}
:root .dark {
  background-color: #1B1C1C;
  color: #f8f9fa;
}
:root .dark a {
  color: #dee2e6;
}
:root .dark a:hover {
  color: rgb(182.7209302326, 201.2790697674, 192.488372093);
}

.pageContent {
  max-width: 1280px;
  display: grid;
  line-height: 1.6em;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 120px;
  padding: 60px 24px;
}
@media (max-width: 992px) {
  .pageContent {
    padding: 24px;
    gap: 32px;
  }
}
@media (max-width: 992px) {
  .pageContent .imgContent {
    margin: 0px -12px;
  }
}
.pageContent h2 {
  font-size: 1em;
  font-weight: 500;
}
.pageContent img {
  border-radius: 6px;
}
.pageContent .bigContent {
  font-size: 1.5em;
  line-height: 1.5em;
  font-weight: 500;
  font-family: "Playfair Display";
}
@media (max-width: 992px) {
  .pageContent .bigContent {
    font-size: 1.4em;
  }
}
.pageContent .subContent {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .pageContent .subContent {
    grid-template-columns: 50px 1fr;
  }
}
.pageContent .subContent .count {
  font-size: 2em;
  color: #dee2e6;
  height: 35px;
  display: flex;
  align-items: center;
}
.pageContent .subContent .titles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pageContent .subContent .titles h3 {
  margin: 0px;
  font-size: 1.4em;
  line-height: 1.6em;
  font-weight: 600;
  color: #0b2594;
}
.pageContent .subContent .titles h3:hover {
  color: #0d6efd;
}
.pageContent p {
  line-height: 1.9em;
}
@media (max-width: 992px) {
  .pageContent {
    grid-template-columns: 1fr;
  }
}

.leftSide {
  line-height: 1.8em;
  padding: 48px 0px;
}
.leftSide ul {
  padding: 24px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0px !important;
}
.leftSide ul li {
  display: flex;
  flex-direction: column;
}
.leftSide ul li a {
  border-top: 1px solid #dee2e6;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.leftSide ul li:first-child a {
  border: none;
}

.text-content {
  max-width: 700px;
  margin: auto;
  line-height: 1.8em;
  font-size: 1em;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 48px 12px;
  font-weight: 300;
}
@media (max-width: 992px) {
  .text-content {
    font-size: 1em;
  }
}
.text-content h3 {
  font-size: 1.3em;
  font-weight: 600;
}
.text-content p {
  line-height: 1.8em;
}

.heading-wrapper {
  position: relative;
  overflow: hidden;
  background-color: rgb(37.0145454545, 38.3854545455, 38.3854545455);
  aspect-ratio: 15/5;
}
@media (max-width: 992px) {
  .heading-wrapper {
    aspect-ratio: 1/1;
  }
}
.heading-wrapper:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  background-color: rgba(27, 28, 28, 0.3);
  z-index: 0;
}
.heading-wrapper .page-heading {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  margin: auto;
  z-index: 1;
  color: white;
  font-size: 3em;
  font-weight: 600;
}
.heading-wrapper .page-heading span {
  font-size: small;
  background-color: #F5C25C;
  padding: 2px 5px;
  color: #1B1C1C;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .heading-wrapper .page-heading {
    font-size: 2.2em;
    font-weight: 600;
    text-align: center;
    bottom: 12px;
  }
}
.heading-wrapper .page-image {
  width: 100%;
  aspect-ratio: 15/5;
  object-fit: cover;
}
@media (max-width: 992px) {
  .heading-wrapper .page-image {
    aspect-ratio: 1/1;
  }
}

.imageNull {
  aspect-ratio: 15/2;
  display: flex;
}
@media (max-width: 992px) {
  .imageNull {
    aspect-ratio: 3/1;
  }
}
.imageNull .page-heading {
  font-weight: 300;
  justify-content: flex-start;
  left: 24px;
  right: 24px;
  text-transform: uppercase;
  gap: 0px;
}
.imageNull .page-heading span {
  padding: 1px 5px;
}

.subpageMenu ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 500;
}
.subpageMenu ul a {
  color: #1B1C1C !important;
}
.subpageMenu ul a:hover {
  text-decoration: underline;
}

.backButton {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  display: none;
  font-weight: 500;
}
@media (max-width: 992px) {
  .backButton {
    display: flex;
  }
}
.backButton i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #dee2e6;
  border-radius: 6px;
}

.portfolioList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .portfolioList {
    grid-template-columns: 1fr;
    gap: 12px;
    row-gap: 32px;
  }
}
.portfolioList .listItem {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.portfolioList .listItem img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s;
}
.portfolioList .listItem img:hover {
  filter: brightness(1.2);
}
.portfolioList .listItem .price {
  position: absolute;
  left: 12px;
  bottom: 15px;
  display: flex;
  align-items: center;
  padding: 3px 6px;
  background-color: yellow;
  border-radius: 6px;
  z-index: 2;
  font-weight: 500;
}
.portfolioList .listItem .portfolioHeading a {
  color: #0b2594;
}
.portfolioList .listItem .portfolioHeading a:hover {
  color: #0d6efd;
}
.portfolioList .listItem .portfolioHeading h3 {
  font-size: 1.2em;
  font-weight: 500;
}
.portfolioList .listItem .icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.portfolioList .listItem .icons span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9em;
}
.portfolioList .listItem .icons span i {
  font-size: larger;
  color: #0d6efd;
}

.owner {
  width: fit-content;
  margin: auto;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.owner img {
  width: 120px !important;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 200px;
  outline: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.7);
  outline-offset: 6px;
}
.owner .cont {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
.owner .cont h3 {
  font-family: "Inter" !important;
  font-size: 1.6em !important;
}

.whatsappMessage {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  background-color: #374a41;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.whatsappMessage i {
  font-size: 1.8em;
  color: rgb(153.4651162791, 179.5348837209, 167.1860465116);
}

.portfolioDetails {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
@media (max-width: 992px) {
  .portfolioDetails {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.portfolioDetails .portfolioContent {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 992px) {
  .portfolioDetails .portfolioContent {
    gap: 12px;
  }
}
.portfolioDetails .portfolioContent .porfolioHeading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: flex-end;
}
@media (max-width: 992px) {
  .portfolioDetails .portfolioContent .porfolioHeading {
    grid-template-columns: 1fr;
  }
}
.portfolioDetails .portfolioContent .porfolioHeading h1 {
  font-size: 1.6em !important;
  font-weight: 600;
  color: #0b2594;
}
.portfolioDetails .portfolioContent .price {
  display: flex;
  justify-content: flex-end;
  font-size: 1.6em;
  font-weight: 600;
  color: #0d6efd;
}
@media (max-width: 992px) {
  .portfolioDetails .portfolioContent .price {
    justify-content: flex-start;
  }
}
.portfolioDetails .portfolioContent img {
  width: 100% !important;
  aspect-ratio: 5/3 !important;
  object-fit: cover !important;
  border-radius: 12px;
}
.portfolioDetails #lightgallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 992px) {
  .portfolioDetails #lightgallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.portfolioDetails #lightgallery img {
  border-radius: 12px;
}
@media (max-width: 992px) {
  .portfolioDetails #lightgallery img {
    border-radius: 6px;
  }
}
.portfolioDetails #lightgallery > :first-child {
  grid-column: span 5;
}
@media (max-width: 992px) {
  .portfolioDetails #lightgallery > :first-child {
    grid-column: span 3;
  }
}

.portolioSidebar {
  position: relative;
}
.portolioSidebar .sidebar {
  position: sticky;
  top: 24px;
  height: fit-content;
  background-color: white;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 12px;
  margin-bottom: 24px;
}
.portolioSidebar .sidebar .consulContent {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  gap: 6px;
}
.portolioSidebar .sidebar .consulContent h3 {
  font-size: 1.3em;
  font-weight: 500;
}
.portolioSidebar .sidebar .buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.portolioSidebar .sidebar .buttons a {
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: green;
  color: white;
  border-radius: 6px;
}
.portolioSidebar .sidebar-mobile {
  display: none;
}
@media (max-width: 992px) {
  .portolioSidebar .sidebar-mobile {
    display: grid;
    margin-top: 12px;
  }
  .portolioSidebar .sidebar-mobile img {
    aspect-ratio: 1/1 !important;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px auto;
  gap: 6px;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 12px;
  height: 40px;
  background-color: #dee2e6;
  border-radius: 6px;
}
.pagination .active {
  background-color: #0d6efd;
  color: white;
}

.categoryMenu {
  background-color: #0b2594;
  padding: 0px 24px;
  margin-bottom: 12px;
  border-radius: 12px;
  height: 50px;
  display: flex;
  align-items: center;
}
.categoryMenu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
}
.categoryMenu ul li {
  height: 100%;
}
.categoryMenu ul li a {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.categoryMenu ul li a:hover {
  color: white;
}
.categoryMenu ul li .active {
  color: white;
}
.categoryMenu ul li .active:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 4px;
  background-color: #0d6efd;
}

.contact-title {
  display: flex;
  flex-direction: column;
}

hr {
  border: none;
  border-top: 1px solid rgb(39.5181818182, 40.9818181818, 40.9818181818);
  margin: 24px 0px;
}

#lightgallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#lightgallery img {
  margin-bottom: -4px !important;
}/*# sourceMappingURL=style.css.map */