:root {
  --Yellow: #FFBB36;
  --White: #ffffff;
  --Active: #ea8f28;
}
* {
  list-style: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-family: "Roboto_Medium", sans-serif;
}

.navbar-container {
  display: flex;
  justify-content: center;
  box-shadow: -1px 10px 9px -6px rgba(0, 0, 0, 0.29);
}

.navbar {
  display: flex;
  width: 1208px;
  justify-content: space-between;
  padding: 0 10px;
}
.navbar a {
  display: flex;
  width: auto;
}
.navbar nav {
  display: flex;
}
.navbar li {
  float: left;
  padding-left: 20px;
}
.navbar ul {
  float: right;
  overflow: hidden;
}

.navbar-info {
  padding: 0 10px;
}

.navbar-info-container {
  display: flex;
  background-color: var(--Yellow);
  justify-content: center;
  height: 40px;
}
.navbar-info-container p {
  font-size: 14px;
}

.cellphoneNumber {
  display: flex;
  float: right;
  padding-right: 10px;
}
.cellphoneNumber p {
  margin: auto;
  padding-left: 5px;
}
.cellphoneNumber img {
  width: 20px;
}

.email-icon {
  display: flex;
  float: right;
}
.email-icon p {
  margin: auto;
}
.email-icon img {
  width: 20px;
  padding-right: 5px;
}

.workHours {
  display: flex;
  padding: 0 0 0 20px;
}
.workHours p {
  margin: auto;
}

.navbar-info {
  width: 1208px;
  display: flex;
  justify-content: right;
}
.navbar-info p {
  color: var(--White);
}

.hamburger {
  padding: 0 0 0 10px;
  display: none;
  cursor: pointer;
}
.hamburger .hamburger-bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: black;
}

.active-hamburger {
  padding: 20px;
  position: fixed;
  z-index: 9990;
  top: 0;
  right: 0;
  display: none;
  cursor: pointer;
}
.active-hamburger .active-hamburger-bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: var(--White);
}
.active-hamburger .active-hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.active-hamburger .active-hamburger-bar:nth-child(2) {
  opacity: 0;
}
.active-hamburger .active-hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.error_container {
  display: flex;
  min-height: 600px;
  height: 50vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.error_container img {
  width: 300px;
}
.error_container h1 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.error_container a {
  background-color: var(--Yellow);
  color: var(--White);
  border: none;
  padding: 15px 32px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 2.2rem;
}
.error_container a:hover {
  background-color: var(--Active);
}

.show {
  display: block;
}

.volkentra-logo {
  width: 100px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.hero-container {
background-image: url(https://www.volkentra.lt/wp-content/uploads/2025/03/hero-section.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  height: 100vh;
  min-height: 50vh;
  max-height: 80vh;
}
.hero-container .hero-section {
  width: 1208px;
  display: flex;
  justify-content: left;
  align-items: flex-end;
}
.hero-container .hero {
  display: flex;
  align-items: center;
  width: 50%;
  background-color: rgba(255, 187, 54, 0.8);
}
.hero-container .hero .hero_info {
  padding: 20px;
  text-align: left;
}
.hero-container .hero .hero_info h1 {
  padding: 10px 30px;
  color: var(--White);
  font-size: 2.5rem;
}
.hero-container .hero .hero_info p {
  color: var(--White);
  font-size: 1.2rem;
  padding: 10px 30px;
  margin-bottom: 10px;
}
.hero-container .hero .hero_info a {
  margin-left: 30px;
  padding: 15px 40px;
  background-color: var(--White);
  color: var(--Yellow);
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 2.2rem;
}
.hero-container .hero .hero_info a:hover {
  transition: 0.3s ease;
  color: var(--Active);
}
.hero-container button {
  background-color: var(--White);
  color: var(--Yellow);
  border: none;
  padding: 15px 32px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 2.2rem;
}

.about-container {
  display: flex;
  justify-content: center;
  background: linear-gradient(110deg, #fff 50%, #FFBB36 50%);
}
.about-container .about-section {
  width: 1208px;
  display: flex;
  justify-content: center;
  min-height: 400px;
}
.about-container .about-section .about-picture {
  width: 50%;
  background-image: url("https://www.volkentra.lt/wp-content/uploads/2025/03/about-us.jpg");
  background-size: cover;
  background-position: center;
}
.about-container .about-section .home-about-us {
  background-color: #FFBB36;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-container .about-section .home-about-us .home-about-us-container {
  text-align: center;
}
.about-container .about-section .home-about-us .home-about-us-container h3 {
  padding: 1rem;
  color: var(--White);
  font-size: 2rem;
}
.about-container .about-section .home-about-us .home-about-us-container p {
  color: var(--White);
  text-align: left;
  font-size: 1.2rem;
  padding: 10px 40px 0;
}

.paslaugos-text-container {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 30px;
}
.paslaugos-text-container h3 {
  font-size: 2.5rem;
}

.paslaugos-container {
  display: flex;
  justify-content: center;
}
.paslaugos-container .paslaugos-content {
  width: 1208px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.paslaugos-container .paslaugos-foto-content {
  overflow: hidden;
  height: 300px;
    width: 100%;
}
.paslaugos-container .paslaugos-darbai {
  width: 280px;
  height: 510px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 10px;
  background-color: var(--Yellow);
}
.paslaugos-container .paslaugos-darbai img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.paslaugos-container .paslaugos-darbai img:hover {
  transform: scale(1.2);
  transition: 0.2s ease-in-out;
}
.paslaugos-container .paslaugos-darbai-content {
  text-align: center;
  width: 100%;
  background-color: var(--Yellow);
}
.paslaugos-container .paslaugos-darbai-content h3 {
  color: var(--White);
  padding: 10px 0;
  font-size: 1.6rem;
}
.paslaugos-container .paslaugos-darbai-content p {
  color: var(--White);
  padding: 0 10px;
  text-align: left;
  font-size: 14px;
}
.paslaugos-container .paslaugos-darbai-content a {
  margin-top: 20px;
  background-color: var(--White);
  color: var(--Yellow);
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.5rem;
}
.paslaugos-container .paslaugos-darbai-content a:hover {
  transition: 0.3s ease;
  color: var(--Active);
}

.galerija-text-container {
  text-align: center;
  padding: 30px;
}
.galerija-text-container h3 {
  font-size: 2rem;
}

.galerija-container {
  display: flex;
  justify-content: center;
}
.galerija-container .galerija-content {
  width: 1208px;
  padding-bottom: 30px;
}
.galerija-container .mySlides img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 500px;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: var(--Yellow);
  font-weight: bold;
  font-size: 64px;
  transition: 0.2s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.next:hover {
  color: var(--Active);
}

.prev:hover {
  color: var(--Active);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: var(--Yellow);
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.contact-info-container {
  display: flex;
  justify-content: center;
}
.contact-info-container .volkentra-info-section {
  width: 1208px;
  display: flex;
  justify-content: space-between;
  padding: 50px 10px 50px 10px;
}
.contact-info-container .volkentra-info-section img {
  padding-bottom: 10px;
}
.contact-info-container .volkentra-info-section h4 {
  font-size: 1.3rem;
  padding: 5px 0;
}
.contact-info-container .volkentra-info-section p {
  font-size: 0.9rem;
  padding: 5px 0;
}
.contact-info-container .volkentra-info-section .paslaugos {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.contact-info-container .volkentra-info-section .paslaugos a {
  padding: 5px 0;
}
.contact-info-container .volkentra-info-section .paslaugos a:hover {
  transition: 0.3s ease;
  color: var(--Active);
}
.contact-info-container .volkentra-info-section .nuorodos {
  display: flex;
  flex-direction: column;
}
.contact-info-container .volkentra-info-section .nuorodos a {
  padding: 5px 0;
}
.contact-info-container .volkentra-info-section .nuorodos a:hover {
  transition: 0.3s ease;
  color: var(--Active);
}

#menu {
  display: flex;
  align-items: center;
}
#menu a:hover {
  transition: 0.3s ease;
  color: var(--Active);
}

.copyright-container {
  display: flex;
  justify-content: center;
  background-color: #272727;
}
.copyright-container p {
  padding: 10px;
  font-size: 14px;
  color: #fff;
}

.musu-paslaugos-text-container {
  text-align: center;
  padding: 50px;
}
.musu-paslaugos-text-container h3 {
  font-size: 2rem;
}

.galerija-page-text-container {
  text-align: center;
  padding: 50px;
}
.galerija-page-text-container h3 {
  font-size: 3rem;
}

.galerija-page-container {
  display: flex;
  justify-content: center;
}

.galerija-page-content {
  cursor: pointer;
  padding-bottom: 50px;
  width: 1208px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  grid-auto-flow: dense;
  gap: 6px;
}
.galerija-page-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.galerija-page-content img.four-grid-cells {
  grid-row: span 2/auto;
  grid-column: span 2/auto;
}
.galerija-page-content img.wide-image {
  grid-column: span 2/auto;
}

.kontaktai-map-container {
  display: flex;
  justify-content: center;
}

.kontaktai-form-push {
  height: 600px;
  width: 100%;
}

.kontaktai-map-container {
  position: relative;
}

.kontaktai-contact-form-container {
  box-shadow: -1px 10px 9px -6px rgba(0, 0, 0, 0.29);
  position: absolute;
  max-width: 1208px;
  z-index: 1;
  top: 85%;
  right: 0;
  display: flex;
  left: 0;
  margin-inline: auto;
  height: 600px;
}
.kontaktai-contact-form-container .kontaktai-contact-form {
  width: 70%;
  height: auto;
  background-color: var(--White);
}
.kontaktai-contact-form-container .kontaktai-header-text {
  display: flex;
  justify-content: center;
}
.kontaktai-contact-form-container .kontaktai-header-text h3 {
  font-size: 2rem;
  padding: 0 0 30px;
}
.kontaktai-contact-form-container .kontaktai-contact-info-text {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-left: 20px;
  background-color: var(--Yellow);
}
.kontaktai-contact-form-container .kontaktai-contact-info-text h3 {
  font-size: 2rem;
  padding: 10px;
  color: var(--White);
}
.kontaktai-contact-form-container .kontaktai-contact-info-text p {
  padding: 5px;
  text-align: left;
  color: var(--White);
}

.kontaktai-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.kontaktai-form .name {
  width: 40%;
  padding: 0 5% 0;
}
.kontaktai-form #name {
  width: 100%;
  height: 35px;
}
.kontaktai-form .email {
  width: 40%;
  padding: 0 5% 0;
}
.kontaktai-form #email {
  width: 100%;
  height: 35px;
}
.kontaktai-form #message {
  width: 100%;
  height: 100px;
}
.kontaktai-form .message {
  width: 90%;
  padding: 0 5% 0;
}

input[type=text] {
  margin-bottom: 20px;
}

input[type=email] {
  margin-bottom: 20px;
}

.logo-icon-form {
  width: 100%;
  display: flex;
  justify-content: center;
}
.logo-icon-form img {
  width: 200px;
  padding: 50px;
}

.kontaktai-button-container {
  display: flex;
  justify-content: center;
}
.kontaktai-button-container button {
  color: var(--White);
  border: none;
  background-color: var(--Yellow);
  padding: 15px 128px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-size: 1.5rem;
  margin-top: 30px;
}
.kontaktai-button-container button:hover {
  transition: 0.3s ease;
  background-color: var(--Active);
}

.about-us-container {
  display: flex;
  justify-content: center;
}
.about-us-container h3 {
  font-size: 3rem;
  padding: 50px;
}

.about-us-container-text {
  width: 1208px;
  display: flex;
  justify-content: space-around;
}
.about-us-container-text img {
  width: 100%;
  height: 600px;
  padding-left: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-us-text p {
  font-size: 1.1rem;
  padding: 10px;
}
.about-us-text li {
  font-size: 1.1rem;
  padding: 10px;
}

.footer-email-container {
  display: flex;
  justify-content: center;
  background-color: var(--Yellow);
}
.footer-email-container .footer-email-section {
  width: 1208px;
}
.footer-email-container .footer-kontaktai-header-text {
  text-align: center;
}
.footer-email-container .footer-kontaktai-header-text h3 {
  font-size: 2.5rem;
  padding: 40px;
  color: var(--White);
}
.footer-email-container .footer-kontaktai-button-container {
  display: flex;
  justify-content: center;
}
.footer-email-container .footer-kontaktai-button-container button {
  border: none;
  background-color: var(--White);
  padding: 16px 88px;
  text-align: center;
  cursor: pointer;
  margin: 20px auto;
  text-decoration: none;
  display: inline-block;
  font-size: 1.3rem;
}
.footer-email-container .footer-kontaktai-button-container button:hover {
  transition: 0.3s ease;
  color: var(--Active);
}
.footer-email-container .footer-kontaktai-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.footer-email-container .footer-kontaktai-form .name {
  width: 40%;
  padding: 0 5% 0;
}
.footer-email-container .footer-kontaktai-form #name {
  border-style: none;
  width: 100%;
  height: 35px;
}
.footer-email-container .footer-kontaktai-form .email {
  width: 40%;
  padding: 0 5% 0;
}
.footer-email-container .footer-kontaktai-form #email {
  border-style: none;
  width: 100%;
  height: 35px;
}
.footer-email-container .footer-kontaktai-form #message {
  border-style: none;
  width: 100%;
  height: 100px;
}
.footer-email-container .footer-kontaktai-form .message {
  width: 90%;
  padding: 0 5% 0;
}

.about-us-sertifikatas-container {
  display: flex;
  justify-content: center;
}
.about-us-sertifikatas-container .about-us-sertifikatas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 1208px;
  padding: 20px;
}
.about-us-sertifikatas-container .about-us-sertifikatas img {
  width: 33%;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 2px;
  min-width: 390px;
}

.apie-mus-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.title-text-container {
  display: flex;
  justify-content: center;
}
.title-text-container h3 {
  font-size: 3rem;
  padding: 50px;
}

.the-content-text-container {
  display: flex;
  justify-content: center;
}
.the-content-text-container .the-content-text-wrapper {
  width: 1208px;
  display: flex;
  justify-content: space-around;
  padding-bottom: 50px;
}
.the-content-text-container p {
  padding: 10px 20px;
}

.musu-paslaugos-info-container {
  display: flex;
  justify-content: center;
}
.musu-paslaugos-info-container .musu-paslaugos-info-container-form {
  width: 1208px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.musu-paslaugos-info-container .musu-paslaugos-info-container-wrapper {
  display: flex;
  margin: 20px;
  min-height: 230px;
}
.musu-paslaugos-info-container .musu-paslaugos-info-container-wrapper img {
  width: 100%;
  min-width: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.musu-paslaugos-info-container .musu-paslaugos-info-container-wrapper .musu-paslaugos-info-text-griojimo-darbai {
  background-color: var(--Yellow);
}
.musu-paslaugos-info-container .musu-paslaugos-info-container-wrapper .musu-paslaugos-info-text-griojimo-darbai h3 {
  color: var(--White);
  padding: 30px 0 15px 15px;
  font-size: 1.8rem;
}
.musu-paslaugos-info-container .musu-paslaugos-info-container-wrapper .musu-paslaugos-info-text-griojimo-darbai p {
  color: var(--White);
  padding: 15px;
}
.musu-paslaugos-info-container .musu-paslaugos-info-container-wrapper .musu-paslaugos-info-text-griojimo-darbai .page-paslaugos-button {
  border: none;
  background-color: var(--White);
  padding: 15px 48px;
  cursor: pointer;
  text-align: center;
  color: black;
  margin: 10px;
  text-decoration: none;
  display: inline-block;
  font-size: 1.3rem;
}
.musu-paslaugos-info-container .musu-paslaugos-info-container-wrapper .musu-paslaugos-info-text-griojimo-darbai a:hover {
  transition: 0.3s ease;
  color: var(--Active);
}
.musu-paslaugos-info-container .musu-paslaugos-foto-content {
  min-height: 230px;
  max-height: 230px;
  min-width: 300px;
  overflow: hidden;
}
.musu-paslaugos-info-container .musu-paslaugos-foto-content img {
  width: 300px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.musu-paslaugos-info-container .musu-paslaugos-foto-content img:hover {
  transform: scale(1.2);
  transition: 0.2s ease-in-out;
}

#FullImageView {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#FullImage {
  max-width: 95%;
  max-height: 95%;
  z-index: 6;
}

#CloseButton {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 5;
}

#FullScreenClose {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.9);
}

#FulllImageView {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#FulllImage {
  max-width: 95%;
  max-height: 95%;
  z-index: 6;
}

#ClloseButton {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 5;
}

#FulllScreenClose {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.9);
}

#FulleImageView {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#FulleImage {
  max-width: 95%;
  max-height: 95%;
  z-index: 6;
}

#CleoseButton {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 5;
}

#FulleScreenClose {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.9);
}

@media only screen and (max-width: 768px) {
  #CloseButton {
    font-size: 3rem;
  }
  .hamburger {
    display: block;
  }
  .hamburger.acttive .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.acttive .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.acttive .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .menu-menu-container {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    right: -100%;
    top: 0;
    z-index: 999;
    width: 70% !important;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    background-color: var(--Yellow);
    box-shadow: -1px 10px 19px -6px rgba(0, 0, 0, 0.29);
  }
  #menu-menu {
    display: flex;
    flex-direction: column;
  }
  #menu-menu a {
    padding: 20px;
    font-size: 1.5rem;
    color: var(--White);
  }
  .menu-menu-container.acttive {
    right: 0;
    display: flex;
  }
  .hero {
    width: 80% !important;
  }
  .about-us-container-text {
    flex-direction: column-reverse;
  }
  .about-us-container-text img {
    padding: 0 !important;
    width: 100% !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    height: 250px !important;
  }
  .the-content-text-wrapper {
    flex-direction: column-reverse;
  }
  .the-content-text-wrapper img {
    padding: 0 !important;
    width: 100% !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    height: 250px !important;
  }
  .title-text-container h3 {
    text-align: center !important;
  }
  .galerija-page-content {
    padding: 10px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .kontaktai-contact-info-text {
    display: none !important;
  }
  .kontaktai-contact-form {
    width: 100% !important;
  }
  .kontaktai-contact-form-container {
    top: 0 !important;
    position: static !important;
  }
  .kontaktai-map-container {
    flex-direction: column !important;
    justify-content: center !important;
  }
  .kontaktai-map-container iframe {
    width: 100% !important;
    height: 400px !important;
  }
  .kontaktai-form-push {
    height: 100px !important;
  }
}
@media only screen and (max-width: 600px) {
  .hero {
    width: 100% !important;
  }
  .hero h1 {
    font-size: 2rem !important;
  }
  .about-picture {
    display: none !important;
  }
  .home-about-us {
    width: 100% !important;
  }
  .mySlides img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 300px !important;
  }
  .hero {
    position: absolute !important;
    width: 100% !important;
    height: 80vh !important;
  }
  .hero h1 {
    text-align: center !important;
    padding: 10px 10px !important;
  }
  .hero p {
    text-align: center !important;
    padding: 10px 10px !important;
  }
  .hero a {
    text-align: center !important;
  }
  .hero_info {
    text-align: center !important;
  }
  #abutton {
    margin: 0 !important;
  }
  .workHours {
    display: none !important;
  }
  .paslaugos-darbai {
    margin: 20px 0 !important;
  }
  .volkentra-info-section {
    flex-direction: column !important;
  }
  .nuorodos {
    display: none !important;
  }
  .paslaugos {
    padding: 0 !important;
  }
  .musu-paslaugos-info-container-wrapper {
    flex-direction: column !important;
  }
  .musu-paslaugos-info-container-wrapper h3 {
    text-align: center !important;
  }
  .musu-paslaugos-info-text-griojimo-darbai {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  .musu-paslaugos-info-text-griojimo-darbai a {
    width: 150px;
    padding: 10px 10px !important;
    margin: 0 auto 20px !important;
  }
  .musu-paslaugos-foto-content {
    min-height: 230px;
  }
  .musu-paslaugos-foto-content img {
    width: 100% !important;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}/*# sourceMappingURL=main.css.map */