* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: #000;
  font-family: "Roboto", sans-serif;
}
::selection {
  background-color: #91ae99;
}
h1,
h2,
h3,
h4 {
  margin: 0 0 0 0;
  padding: 0;
}
p {
  margin: 0 0 10px 0;
  padding: 0;
}

#app {
  padding-top: 20px;
}

header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  padding: 20px 20px 0 20px;
  z-index: 100000;
  position: sticky;
  top: 0;
  width: 100%;
  transition: all 0.2s ease;
}

.gradient-separator {
  position: sticky;
  top: 58px;
  width: 100%;
  height: 20px;
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

body.scrolled header {
  height: 80px;
  padding: 20px;
}

.header-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.header-main {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.header-address {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.subHeader {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #fff;
  padding: 0 20px 20px 20px;
}

.subHeader-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.separator {
  width: 100%;
  overflow: hidden;
  padding-bottom: 10px;
  top: 58px;
  position: sticky;
  z-index: 2;
}

.separator::after {
  content: "";
  height: 20px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.1);
  display: block;
}

body.scrolled .header-info {
  opacity: 0;
  visibility: hidden;
}

.logo {
  max-width: 150px;
  width: 100%;
  height: auto;
}

.name {
  font-size: 16px;
  font-weight: 600;
}

.description {
}

.title {
  margin-bottom: 10px;
}

.main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 40px 0;
}

.section {
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.section.no-padding {
  padding: 0;
}

.flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.map-info {
  flex: 2 1 auto;
}

.map {
  flex: 0 0 auto;
}

.map-img {
  height: 280px;
  width: 280px;
  object-fit: cover;
  border-radius: 50%;
}

.section-inner {
  width: 100%;
  max-width: 800px;
}

h2 {
  font-size: 17px;
  font-weight: 600;
}
h3 {
  font-weight: 400;
  font-size: 16px;
}
h4 {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
}

.footer {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.link {
  color: #000;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.link:hover {
  color: #91ae99;
}

.link.menu {
  margin-left: 20px;
}

.link.menu::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #000;
}

.link.menu:first-child {
  margin-left: 0;
}

.link.menu:first-child::before {
  display: none;
}

.link:hover {
  color: #91ae99;
}

.button {
  padding: 5px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  z-index: 0;
  gap: 5px;
  transition: all 0.2s ease;
  font-size: 16px;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #91ae99;
  transform: translate(0, calc(100% - 1px));
  transition: all 0.2s ease;
  z-index: -1;
}
.button:hover {
  color: #fff;
}
.button:hover::before {
  transform: translate(0, 0%);
}
.button-2 {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
  font-size: 14px;
  background-color: #91ae99;
  display: inline-block;

  transition: all 0.2s ease;
  border-radius: 5px;
}

.button-2:hover {
  filter: brightness(1.1);
}
.swiper {
  width: auto;
  max-width: 100%;
  height: 280px;
}

.swiper-section {
  background-color: rgba(145, 174, 153, 0.5);
  margin: 20px 0;
}

.swiper-slide {
  width: 280px;
}

.swiper-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 507px) {
  .header-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .gradient-separator {
    top: 96px;
  }

  .separator {
    top: 96px;
  }
}

@media screen and (max-width: 800px) {
  .flex {
    flex-direction: column;
    gap: 20px;
  }
}
