@charset "UTF-8";
/*WEBSTYLES */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, html, body {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1;
}

ol, ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

input:focus {
  outline: none;
}

b {
  font-weight: bold;
}

html {
  font-family: "DM Sans", sans-serif;
}

.auto-container {
  position: relative;
  width: 1100px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .auto-container {
    width: 90%;
  }
}

#app-header {
  position: relative;
  background-color: #ffffff;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  #app-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0px;
    padding: 5px 0px;
    z-index: 50;
  }
}
#app-header .topbar {
  position: relative;
  width: 100%;
  background-color: #002360;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  #app-header .topbar {
    display: none;
  }
}
#app-header .topbar .inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}
#app-header .topbar-item {
  position: relative;
  font-size: 15px;
  margin-right: 30px;
}
#app-header .topbar-item:last-child {
  margin-right: 0;
}
#app-header .topbar-item .label-text {
  display: inline-block;
  margin-right: 10px;
  font-weight: 600;
  padding-bottom: 4px;
}
#app-header .topbar .contact-box ul {
  display: inline-table;
}
#app-header .topbar .contact-box ul li {
  display: inline-block;
  margin-right: 15px;
}
#app-header .topbar .contact-box ul i {
  margin-right: 4px;
  font-size: 1.2rem;
  color: #f04a60;
}
#app-header .topbar .social-box {
  position: relative;
}
#app-header .topbar .social-box .links {
  display: inline-table;
}
#app-header .topbar .social-box .links .item {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  padding: 8px;
  margin-right: 6px;
  text-align: center;
  background-color: #3249c7;
  border-radius: 6px;
}
#app-header .topbar .social-box .links .item:last-child {
  margin-right: 0;
}
#app-header .topbar .social-box .links .item i {
  color: #ffffff;
  font-size: 1.3rem;
}
#app-header .topbar .quote-box .btn-quote {
  display: block;
  padding: 12px 20px;
  font-weight: 600;
  background-color: #e0354c;
  color: #ffffff;
  border: solid 2px #e0354c;
  border-radius: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#app-header .topbar .quote-box .btn-quote:hover {
  background-color: #ee324b;
  border: solid 2px #b91a2f;
}
#app-header .navbar .inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#app-header .navbar .brand-box .logo {
  display: block;
}
#app-header .navbar .brand-box .logo img {
  width: 150px;
  height: auto;
}
#app-header .navbar .menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#app-header .navbar .menu-item {
  position: relative;
  margin-right: 15px;
}
#app-header .navbar .menu-item:last-child {
  margin-right: 0;
}
#app-header .navbar .menu-link {
  display: block;
  padding: 30px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #0f2274;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  #app-header .navbar .menu {
    display: none;
  }
}
#app-header .navbar .mobile-button {
  position: absolute;
  display: none;
  width: 50px;
  height: 50px;
  top: 10px;
  right: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 768px) {
  #app-header .navbar .mobile-button {
    display: block;
  }
}
#app-header .navbar .mobile-button .wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
#app-header .navbar .mobile-button .bar {
  position: relative;
  display: block;
  width: 50px;
  height: 6px;
  border-radius: 50px;
  background-color: rgba(9, 28, 133, 0.5);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#app-header .navbar .mobile-button .bar-1 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
}
#app-header .navbar .mobile-button .bar-3 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}
#app-header .navbar .mobile-button .bar-2 {
  width: 30px;
  background-color: #091c85;
}
#app-header .navbar .mobile-button.active .bar-1 {
  width: 60px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#app-header .navbar .mobile-button.active .bar-3 {
  width: 60px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#app-header .navbar .mobile-button.active .bar-2 {
  opacity: 0;
}

#app-footer {
  position: relative;
  background-color: #131e50;
}
#app-footer .block-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  #app-footer .block-columns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#app-footer .block-item {
  position: relative;
  width: 33%;
  color: #dddddd;
}
@media only screen and (max-width: 768px) {
  #app-footer .block-item {
    width: 100%;
    margin-bottom: 30px;
  }
  #app-footer .block-item:last-child {
    margin-bottom: 0;
  }
}
#app-footer .block-item .title {
  position: relative;
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #f04a60;
}
#app-footer .block-item .content {
  font-size: 15px;
}
#app-footer .block-item .content ul li {
  margin-bottom: 10px;
}
#app-footer .item-company .content {
  line-height: 1.5;
  color: #dddddd;
}
#app-footer .item-company .btn-quote {
  display: table;
  margin-top: 15px;
  padding: 12px 20px;
  font-weight: 600;
  color: #ffffff;
  border: solid 3px #f04a60;
  border-radius: 10px;
}
#app-footer .item-contact .icon {
  display: inline-block;
  width: 30px;
  margin-right: 5px;
  font-size: 1.2rem;
  color: #f04a60;
  text-align: center;
}
#app-footer .socialbar-mobile {
  position: relative;
  display: block;
}
#app-footer .socialbar-mobile:last-child {
  margin-right: 0;
}
#app-footer .socialbar-mobile .item {
  display: inline-block;
  width: 35px;
  height: 35px;
  padding: 8px;
  margin-right: 6px;
  text-align: center;
  background-color: #3249c7;
  border-radius: 6px;
}
#app-footer .socialbar-mobile i {
  color: #ffffff;
  font-size: 1.3rem;
}
#app-footer .socialbar-mobile .title {
  position: relative;
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #f04a60;
}
#app-footer .block-copyright {
  display: block;
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  color: #9ba5c2;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}

.whatsapp-mobile-btn {
  position: fixed;
  display: none;
  z-index: 100;
  right: 20px;
  bottom: 20px;
}
.whatsapp-mobile-btn .box {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  padding: 5px 0px;
  text-align: center;
  border-radius: 10px;
  background-color: #41b451;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.whatsapp-mobile-btn .box .icon {
  font-size: 3.5rem;
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  #whatsapp-chat-widget {
    display: none !important;
  }
  #whatsapp-mobile-button {
    display: block;
  }
}
.vp-gallery .gallery-loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 400px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.vp-gallery .gallery-loading .loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #f04a60;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin-bottom: 20px;
}
.vp-gallery .gallery-loading .loading-text {
  color: #666;
  font-size: 1.1rem;
}
.vp-gallery .section-loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 300px;
  padding: 40px 20px;
}
.vp-gallery .section-loading .loading-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.vp-gallery .section-loading .loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #091c85;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin-bottom: 15px;
}
.vp-gallery .section-loading .loading-text {
  color: #666;
  font-size: 1rem;
  text-transform: capitalize;
}
.vp-gallery .gallery-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 400px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff5f5;
  border: 2px dashed #fed7d7;
  border-radius: 20px;
  margin: 20px 0;
}
.vp-gallery .gallery-error p {
  color: #dc3545;
  font-size: 1.1rem;
  text-align: center;
  margin: 0;
  padding: 20px;
}
.vp-gallery .gallery-error::before {
  content: "⚠️";
  font-size: 3rem;
  margin-bottom: 20px;
}
.vp-gallery .section-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 250px;
  padding: 30px 20px;
}
.vp-gallery .section-error .error-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: #fff8f8;
  border: 2px dashed #f5c6cb;
  border-radius: 15px;
  padding: 30px;
  max-width: 400px;
}
.vp-gallery .section-error p {
  color: #dc3545;
  font-size: 1rem;
  margin: 0 0 20px 0;
}
.vp-gallery .section-error .retry-btn {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.vp-gallery .section-error .retry-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
          box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}
.vp-gallery .section-error .retry-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.vp-gallery .gallery-item {
  display: block;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #fff;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  text-decoration: none;
  cursor: pointer;
}
.vp-gallery .gallery-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  display: block;
}
.vp-gallery .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(240, 74, 96, 0.8) 0%, rgba(9, 28, 133, 0.8) 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.vp-gallery .gallery-item .gallery-overlay .overlay-content {
  text-align: center;
  color: white;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.vp-gallery .gallery-item .gallery-overlay .overlay-content .zoom-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.vp-gallery .gallery-item .gallery-overlay .overlay-content .overlay-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  margin-top: 8px;
  max-width: 200px;
  word-wrap: break-word;
}
.vp-gallery .gallery-item:hover {
  -webkit-transform: translateY(-10px) scale(1.02);
          transform: translateY(-10px) scale(1.02);
  -webkit-box-shadow: 0 15px 40px rgba(240, 74, 96, 0.3);
          box-shadow: 0 15px 40px rgba(240, 74, 96, 0.3);
}
.vp-gallery .gallery-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.vp-gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
}
.vp-gallery .gallery-item:hover .gallery-overlay .overlay-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.vp-gallery .gallery-item:focus {
  outline: 3px solid #f04a60;
  outline-offset: 2px;
}
.vp-gallery .gallery-item.animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: itemSlideUp 0.6s ease-out both;
          animation: itemSlideUp 0.6s ease-out both;
}
.vp-gallery .gallery-item:active {
  -webkit-transform: translateY(-8px) scale(1.01);
          transform: translateY(-8px) scale(1.01);
}
.vp-gallery .gallery-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .vp-gallery .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .vp-gallery .gallery-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.vp-gallery .description {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #f04a60;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #495057;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .vp-gallery .description {
    padding: 20px;
    font-size: 1rem;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .vp-gallery .description {
    padding: 15px;
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
}
.vp-gallery .gallery-section {
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.vp-gallery .gallery-section:not(.active) {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
}
.vp-gallery .gallery-section.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  position: relative;
  pointer-events: auto;
}
.vp-gallery .filter-tabs .filter {
  position: relative;
}
.vp-gallery .filter-tabs .filter.loading {
  opacity: 0.7;
  pointer-events: none;
}
.vp-gallery .filter-tabs .filter.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
.vp-gallery .filter-tabs .filter:hover:not(.active):not(.loading)::before {
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: currentColor;
}
.vp-gallery .filter-tabs .filter:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes itemSlideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes itemSlideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes sectionFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes sectionFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.vp-gallery .gallery-section.active {
  -webkit-animation: sectionFadeIn 0.4s ease-out;
          animation: sectionFadeIn 0.4s ease-out;
}

@media (max-width: 768px) {
  .vp-gallery .gallery-loading,
  .vp-gallery .gallery-error {
    min-height: 300px;
    margin: 15px;
  }
  .vp-gallery .section-loading {
    min-height: 200px;
    padding: 20px 15px;
  }
  .vp-gallery .section-loading .loading-spinner {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }
  .vp-gallery .section-error {
    min-height: 200px;
    padding: 20px 15px;
  }
  .vp-gallery .section-error .error-content {
    padding: 20px;
  }
  .vp-gallery .section-error .error-content .retry-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .vp-gallery .gallery-loading .loading-spinner {
    width: 45px;
    height: 45px;
  }
  .vp-gallery .filter-tabs .filter.loading::after {
    width: 12px;
    height: 12px;
    right: 8px;
  }
  .vp-gallery .gallery-item img {
    height: 200px;
  }
  .vp-gallery .gallery-item .gallery-overlay .overlay-content .zoom-icon {
    font-size: 2rem;
  }
  .vp-gallery .gallery-item .gallery-overlay .overlay-content .overlay-title {
    font-size: 1rem;
    max-width: 180px;
  }
  .vp-gallery .gallery-item:hover {
    -webkit-transform: translateY(-5px) scale(1.01);
            transform: translateY(-5px) scale(1.01);
  }
}
@media (max-width: 480px) {
  .vp-gallery .gallery-item img {
    height: 180px;
  }
  .vp-gallery .gallery-item .gallery-overlay .overlay-content .zoom-icon {
    font-size: 1.8rem;
  }
  .vp-gallery .gallery-item .gallery-overlay .overlay-content .overlay-title {
    font-size: 0.9rem;
    max-width: 160px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vp-gallery .gallery-item,
  .vp-gallery .gallery-item img,
  .vp-gallery .gallery-overlay,
  .vp-gallery .loading-spinner {
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .vp-gallery .gallery-item:hover {
    -webkit-transform: none !important;
            transform: none !important;
  }
}