@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap");

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  direction: ltr;
  font-family: "Roboto", sans-serif !important;
}

a {
  text-decoration: none;
  cursor: pointer;
  word-break: break-all;
}

img {
  width: 100%;
}

.header-lay {
  width: 100%;
  height: 110vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
  border-bottom-left-radius: 50% 50px;
  border-bottom-right-radius: 50% 50px;

  &::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("photos/depictions_gallery_6968c6ca41e503.30440840.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
  }
  &::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: 2;
  }

  .header{
    z-index: 5;
    position: relative;
  }
  .container {
    position: relative;
    z-index: 3;
  }
}

#video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.header {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  padding: 17px 74px;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #2f2519;
  z-index: 99;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.logoImg img {
  width: 55px;
}

.logo a {
  color: white;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logoTitle h2 {
  font-size: 19px;
  margin: 0;
  color: #ffff;
}

.header-nav {
  font-family: Arial, sans-serif;
  color: white;
}

.topmenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.topmenu li {
  position: relative;
}

.topmenu a {
  text-decoration: none;
  color: white;
}

.submenu-link .sub {
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid white;
  transition: transform 0.2s;
}

.submenu-link:hover .sub {
  transform: rotate(180deg);
  transition: transform 0.2s;
}

.submenu {
  width: 280px;
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffe6ca;
  list-style: none;
  padding: 20px;
  border-radius: 13px;
  border-bottom: 5px solid #ef4f4f;
  box-shadow: 0px 8px 17px 0px rgba(0, 0, 0, 0.2);
  z-index: 9995;
  opacity: 0;
  visibility: hidden;
  transform-origin: left center;
  transform: translateY(5px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.topmenu li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  margin: 13px 0;
}

.submenu a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  color: #2f2519;
  letter-spacing: 0.5px;
  transition: all 0.2s ease 0s;
  position: relative;
}

.submenu a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #2f2519;
  bottom: -5px;
  left: 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.submenu a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.container-header-cont {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 114px;
  flex-direction: row-reverse;
}

.header-text {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  color: white;
  gap: 20px;
}

.header-text h1 {
  font-size: 36px;
  font-weight: 900;
}

.header-text a {
  font-size: 12px;
}

.header-text p {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  color: #d9ffc6;
}

.osn-form {
  display: flex;
  flex-direction: column;
  margin: 44px 0;
  border-radius: 13px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 55px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 5px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -2px 5px;
}

.titleStay {
  text-align: center;
  margin-bottom: 24px;
}

.input-container {
  position: relative;
}

.submit-form {
  margin: 0 auto;
}

.input-container .input-control--component--part,
.input-container .textarea-control--component--part,
.form button {
  outline: none;
  border: 2px solid #f5f5f5;
  margin: 8px 0;
}

.input-container .input-control--component--part {
  background-color: #fff;
  padding: 17px;
  padding-right: 40px;
  font-size: 15px;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.input-container .textarea-control--component--part {
  background-color: #fff;
  padding: 17px;
  padding-right: 40px;
  font-size: 15px;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.check {
  text-decoration: underline;
  color: #2f2519;
}

.form-check {
  display: flex;
  gap: 13px;
  justify-content: flex-start;
  padding: 17px 0;
}

.form-check .form-check-input {
  margin: 0;
}

.hamburger-menu {
  display: none;
}

#menu__toggle {
  opacity: 0;
}

.menu__btn {
  z-index: 12;
  display: flex;
  align-items: center;
  position: relative;
  top: -10px;
  right: 0;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: white;
}

.menu__btn > span::before {
  content: "";
  top: -10px;
}

.menu__btn > span::after {
  content: "";
  top: 8px;
}

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  margin: 0;
  padding: 80px 0;
  z-index: 11;
  list-style: none;
  text-align: center;
  background-color: #ed6363;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
}

.menu__item {
  text-align: start;
  display: block;
  padding: 13px 20px;
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
}

.submenu__item {
  margin: 0;
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-in-out, padding 0.2s ease-in-out;
}

.submenu__link {
  text-align: start;
  display: block;
  padding: 13px 0;
  color: white;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.submenu__link:hover {
  background-color: #cfd8dc;
}

#submenu-toggle.active + #submenu {
  max-height: 500px;
}

.menu__item:hover {
  background-color: #cfd8dc;
}

#menu__toggle:checked ~ .menu__btn > span {
  top: 0;
  transform: rotate(45deg);
}

#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}

#menu__toggle:checked ~ .menu__btn > span::after {
  top: -2px;
  transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  right: 0;
}

.article {
  padding: 44px 0;
}

.article-box {
  border-radius: 13px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 20px;
  padding: 17px;
}

.titleArt {
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 900;
  margin-bottom: 30px;
}

.picture-article-img {
  border-radius: 13px;
  float: right;
  width: 36%;
  margin: 17px;
}

.art-content {
  font-size: 15px;
}

.art-price {
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: start;
  font-size: 19px;
  margin-top: 20px;
  font-weight: 900;
}

.about-us {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
  padding: 44px 0;
}

.about-us-img {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 13px;
}

.about-us-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 13px;
  flex-direction: column;
}

.about-us-img-box img {
  max-width: 261px;
  height: 100%;
  object-fit: cover;
}

.about-us-img-last {
  max-width: 261px;
  height: 100%;
  object-fit: cover;
}

.about-us-content {
  flex: 1;
}

.about-us-title {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 13px;
}

.about-us-title div {
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 9px 0;
  font-weight: 900;
  color: #ef4f4f;
}

.about-us-title h3 {
  font-weight: 900;
  font-size: 26px;
}

.about-us-title p {
  font-size: 17px;
  color: #7b113a;
}

.about-us-tegs {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-left: 13px;
  border-left: 2px solid #257a3e;
}

.about-us-tegs p {
  font-weight: 900;
  font-size: 17px;
  color: #2f2519;
  margin: 0;
}

.our-service {
  padding: 44px 0;
}

.our-service h2 {
  font-weight: 900;
  margin: 0 auto;
  margin-bottom: 26px;
  font-size: 19px;
  text-align: center;
}

.our-service-podTitle {
  margin-bottom: 17px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 9px 0;
  font-weight: 900;
  color: #ef4f4f;
}

.our-service-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.our-card {
  display: flex;
  flex-direction: row;
  gap: 17px;
  width: calc(33.3% - 10px);
  border: 2px solid #ddd;
  border-radius: 9px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 17px;
  transition: transform 0.2s ease-in-out;
}

.our-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.our-card-icon {
  font-size: 26px;
  color: #257a3e;
}

.our-card-content h3 {
  font-size: 19px;
  margin-bottom: 13px;
}

.our-card-content h3 a {
  color: #2f2519;
}

.our-card-content p {
  font-size: 15px;
  color: #7b113a;
  margin-bottom: 17px;
}

.our-card-content a {
  display: inline-block;
  font-size: 17px;
  font-weight: 900;
  color: #ed6363;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.our-card-content a:hover {
  color: #257a3e;
}

.our-articles {
  padding: 44px 0;
}

.our-articles h2 {
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  color: #ef4f4f;
}

.our-articles-box {
  display: flex;
  justify-content: space-between;
}

.our-articles-box .slick-track {
  height: 100%;
}

.our-card-articles {
  display: flex;
  flex-direction: column;
  margin: 0 13px;
  gap: 17px;
  border: 2px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.our-card-articles:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.our-card-icon-articles img {
  object-fit: contain;
  max-width: 100%;
  height: 300px;
}

.our-card-content-articles {
  padding: 17px;
}

.our-card-content-articles h3 {
  font-size: 19px;
  margin-bottom: 13px;
}

.our-card-content-articles h3 a {
  color: #2f2519;
}

.our-card-content-articles p {
  font-size: 15px;
  color: #2f2519;
  margin-bottom: 17px;
}

.our-card-content-articles a {
  display: inline-block;
  font-size: 17px;
  color: #ed6363;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.our-card-content-articles a:hover {
  color: #257a3e;
}

.team {
  padding: 44px 0;
}

.team h2 {
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  color: #ef4f4f;
}

.team-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: calc(33.3% - 10px);
  border-radius: 9px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.team-img {
  object-fit: cover;
}

.team-content {
  padding: 17px;
}

.team-content h3 {
  text-align: start;
  font-weight: 900;
  font-size: 19px;
  margin-bottom: 13px;
  color: #2f2519;
}

.team-content p {
  text-align: start;
  font-size: 17px;
  color: #7b113a;
}

.partners {
  background-color: #0000004a;
  width: 100%;
  margin: 44px 0;
}

.partners-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: row-reverse;
}

.partners img {
  max-width: 100%;
  height: 70px;
  object-fit: contain;
  margin: 0 auto;
  padding: 0 24px;
}

.comm {
  padding: 44px 0;
}

.comm h2 {
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  color: #ef4f4f;
}

.comm-box {
  display: flex;
}

.comm-box .slick-track {
  height: 100%;
}

.comm-card {
  height: 100%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 17px;
  margin: 0 13px;
}

.comm-card-content {
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 20px;
}

.comm-card-content img {
  width: 114px;
  height: 114px;
}

.comm-card p {
  color: #2f2519;
  font-size: 17px;
}

.comm-card-text {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.comm-card-text h3 {
  color: #2f2519;
  font-size: 19px;
}

.comm-star {
  list-style: none;
  padding: 0;
  display: inline-block;
  margin: 0;
}

.comm-star li {
  display: inline;
  margin-right: 3px;
}

.comm-star li i {
  opacity: 1;
  font-size: 19px;
  color: #ef4f4f;
}

.footer-lay {
  width: 100%;
  background: url(assets/img/mask-bg_q800.png);
  background-position: center;
  background-size: cover;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #2f2519;
  padding: 44px 0;
}

.footer-box {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.menu-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  width: 33.3%;
}

.menu-footer ul {
  text-align: start;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.menu-footer li {
  margin-bottom: 13px;
}

.menu-footer a {
  text-decoration: none;
  color: #2f2519;
  transition: color 0.3s ease;
}

.menu-footer a:hover {
  color: #ef4f4f;
}

.contact-footer {
  width: 33.3%;
  gap: 13px;
  color: #2f2519;
  display: flex;
  flex-direction: column;
}

.aboutus-footer {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 33.3%;
}

.contact-footer i {
  color: #ef4f4f;
  font-size: 21px;
  margin-right: 13px;
}
.contact-footer a {
  color: inherit;
}
.footer-politiks {
  border-top: 2px solid;
  padding-top: 20px;
  flex-direction: row-reverse;
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.footer-politik-privacy {
  flex-basis: 30%;
}

.footer-politik-privacy a {
  text-decoration: none;
  color: #2f2519;
}

.footer-politik-privacy a:hover {
  text-decoration: underline;
}

.kontact {
  margin: 44px 0;
  padding: 24px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
}

.kontact-box {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-direction: row-reverse;
}

.kontact-box-card {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #2f2519;
  justify-content: space-between;
  border-radius: 9px;
  color: #ffe6ca;
  padding: 24px;
  flex: 1;
  text-align: center;
  gap: 17px;
}

.kontact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.kontact-item h3 {
  font-size: 17px;
}

.kontact-box i {
  font-size: 26px;
}
.kontact-item a {
  color: inherit;
}
.form-kontact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  border-radius: 9px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 24px;
  flex: 2;
}

.input-container .inputs {
  background-color: #fff;
  padding: 17px;
  padding-right: 40px;
  font-size: 15px;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.input-container .inputs {
  outline: none;
  border: 2px solid #f5f5f5;
  margin: 13px 0;
}

.flex-style {
  display: flex;
  flex-direction: column;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  padding: 44px 0;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.gallery a {
  flex: 1;
  position: relative;
  display: inline-block;
  transition: 1s ease;
}

.gallery a img {
  width: 100%;
  height: 509px;
  object-fit: cover;
  transition: opacity 0.3s;
}

.gallery a:hover img {
  opacity: 0.7;
}

.gallery a:hover .zoom-icon {
  display: block;
}

.zoom-icon {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 29px;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 30%;
  padding: 13px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery a:hover .zoom-icon {
  opacity: 1;
}

@media (max-width: 1199px) {
  .our-service-box {
    flex-wrap: wrap;
  }

  .our-card {
    width: calc(50% - 10px);
  }

  .team-box {
    flex-wrap: wrap;
  }

  .team-card {
    width: calc(50% - 10px);
  }
}

@media (max-width: 991px) {
  .header {
    padding: 17px 24px;
  }

  .header-nav {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .header-text {
    width: 100%;
  }

  .header-text h1 {
    font-size: 21px;
  }

  .header-text p {
    font-size: 13px;
  }

  .picture-article-img {
    width: 100%;
    float: none;
    margin: 17px auto;
  }

  .about-us {
    flex-direction: column;
  }

  .about-us-img {
    flex-direction: column;
    justify-content: center;
  }

  .about-us-img-box {
    flex-direction: row-reverse;
  }

  .about-us-img-box img {
    max-width: 50%;
  }

  .about-us-img-last {
    max-width: 100%;
    height: auto;
    max-height: 300px;
  }

  .footer-box {
    text-align: center;
    gap: 30px;
    flex-direction: column;
  }

  .aboutus-footer {
    align-items: center;
    width: 100%;
  }

  .menu-footer {
    width: 100%;
  }

  .contact-footer {
    width: 100%;
  }

  .menu-footer ul {
    text-align: center;
  }

  .footer-politiks {
    flex-direction: column;
    gap: 20px;
  }

  .kontact-box {
    flex-direction: column;
  }

  .gallery a {
    flex: auto;
    width: calc(50%);
  }
}

@media (max-width: 767px) {
  .team h2 {
    font-size: 19px;
  }

  .our-card {
    width: 100%;
  }

  .team-card {
    align-items: center;
    width: 100%;
  }

  .team-img {
    text-align: center;
    width: 80%;
    padding-top: 17px;
  }

  .gallery a img {
    height: 100%;
  }
}

@media (max-width: 500px) {
  .gallery a {
    width: 100%;
  }
  .kontact-box-card {
    flex-direction: column !important;
  }
}

@media (max-width: 400px) {
  .comm-card-content {
    flex-direction: column;
    align-items: center;
  }

  .comm-card-text {
    align-items: center;
  }
}

.but,
button {
  outline: none;
  border: none;
  background: inherit;
  padding: 13px;
  box-sizing: border-box !important;
}
.button-1 {
  font-size: 13px;
  position: relative;
  display: inline-block;
  padding: 17px 30px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #1f347b;
  border-radius: 35px;
  overflow: hidden;
  border: none;
  z-index: 1;
}

.button-1:before {
  transition: 1s;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.button-1:hover:before {
  width: 300px;
  height: 300px;
  opacity: 0.4;
  transition: all 0.5s ease-out;
}

.button-1:hover {
  background-color: #fff;
  color: #202960;
  transition: all 0.5s ease-out;
}

.button-1:hover:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #255ea4;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }

  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

.button-2 {
  font-size: 13px;
  display: inline-block;
  padding: 13px;
  border: 2px solid #4a5568;
  background-color: #4a5568;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.button-2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #fff;
  opacity: 0.2;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
}

.button-2:hover {
  background-color: #fff;
  color: #4a5568;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 17px -8px;
}

.button-2:hover::before {
  width: 200%;
  height: 200%;
}

.button-3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 17px 32px;
  border-radius: 17px;
  border: 2px solid transparent;
  color: #ffffff;
  background-color: #1dc9a0;
  font-size: 13px;
  letter-spacing: 2px;
  transition: all 0.15s linear;
}

.button-3:hover {
  background-color: rgba(29, 201, 160, 0.08);
  border-color: #1dc9a0;
  color: #1dc9a0;
  transform: translateY(-5px) scale(1.05);
}

.button-3:active {
  background-color: transparent;
  border-color: #1dc9a0;
  color: #1dc9a0;
  transform: translateY(5px) scale(0.95);
}

.button-3:disabled {
  background-color: rgba(255, 255, 255, 0.16);
  color: #8e8e93;
  border-color: #8e8e93;
}

.button-4 {
  padding: 13px;
  font-size: 13px;
  margin-top: 17px;
  border: 0;
  box-shadow: 0px 0px 40px 0px red;
  font-weight: 900;
  color: white;
  border-radius: 0.2rem;
  background-color: red;
  letter-spacing: 0.2rem;
}

.button-4:hover {
  animation: changeBg 1s infinite;
  -webkit-animation-duration: 10s;
}

@keyframes changeBg {
  0%,
  100% {
    box-shadow: 0px 0px 40px 0px red;
  }

  25% {
    box-shadow: 0px 0px 40px 0px turquoise;
    background-color: turquoise;
  }

  50% {
    box-shadow: 0px 0px 40px 0px purple;
    background-color: purple;
  }

  75% {
    box-shadow: 0px 0px 40px 0px rgb(191, 204, 11);
    background-color: rgb(191, 204, 11);
  }
}

.button-5 {
  font-size: 13px;
  font-weight: 900;
  border: 0px;
  color: white;
  background-color: #1877f2;
  padding: 13px 17px;
  border-radius: 17px;
  cursor: pointer;
}

.button-5:hover {
  background-image: linear-gradient(
    90deg,
    #b799ff 0%,
    #acbcff 50%,
    #aee2ff 75%,
    #e6fffd 100%
  );
  color: black;
  animation: slide 10s linear infinite;
}

@keyframes slide {
  100% {
    background-position: 50rem;
  }
}

.dpPagePadd {
  padding: 114px 0px;
}

.mapContact {
  border: 0;
}

.title-container {
  text-align: center;
}

.form-kontact button {
  max-width: 100%;
  margin: 0 auto;
}

.travel-form-group,
.travel-form-group2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
}

.travel-form-detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

#place {
  width: 100%;
  flex-direction: column;
}

@media (min-width: 768px) {
  .travel-form-detail {
    width: calc(50% - 14px);
  }

  .travel-form-group2 {
    .travel-form-detail {
      width: calc(33.33% - 14px);
    }
  }
}
