:root {
  --width: 1400px;
  --animate-slow: 500ms;
  --animate-fast: 200ms;
}

html {
  hanging-punctuation: first last;
}

:root {
  --font-main: "Encode Sans Condensed", sans-serif;
/*  --font-head: "Montserrat", sans-serif; */
}

:root {
  font-size: 14px;
}

p, h1, h2, h3, h4, h5, h6, ul, ol, a {
  color: var(--font-color);
  font-weight: 300;
}

p, ul, ol, dl, table {
  font-family: var(--font-main);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--font-color);
  font-weight: 400;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: bold;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1.3rem;
  text-transform: none;
}

a:link,
a:visited,
a:active {
  text-decoration: none;
  border: none;
  font-weight: 400;
  color: var(--clr-blue-400);
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 1.25rem 0;
  list-style-type: circle;
}
ul li {
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}

hr {
  border: none;
  border-bottom: 2px dotted var(--light-gray);
  margin-bottom: 3rem;
}

table {
  font-family: var(--font-main);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  border-collapse: collapse;
}
table td, table th {
  border: 1px solid gray;
  padding: 0.5rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

strong {
  font-weight: 500;
}

:root {
  --clr-background-400: #FAFFF2;
  --clr-black: #000000;
  --clr-white: #ffffff;
  --clr-blue-100: hsl(196, 63%, 80%);
  --clr-blue-200: hsl(196, 63%, 70%);
  --clr-blue-300: hsl(196, 63%, 60%);
  --clr-blue-400: hsl(196, 63%, 34%);
  --clr-blue-500: hsl(196, 63%, 24%);
  --clr-blue-600: hsl(196, 63%, 14%);
  --clr-red-100: hsl(0, 63%, 80%);
  --clr-red-200: hsl(0, 63%, 70%);
  --clr-red-300: hsl(0, 63%, 60%);
  --clr-red-400: hsl(0, 63%, 34%);
  --clr-red-500: hsl(0, 63%, 24%);
  --clr-yellow-100: hsl(52, 100%, 80%);
  --clr-yellow-200: hsl(52, 100%, 70%);
  --clr-yellow-300: hsl(52, 100%, 60%);
  --clr-yellow-400: hsl(52, 100%, 34%);
  --clr-yellow-500: hsl(52, 100%, 24%);
  --clr-green-100: hsl(138, 32%, 80%);
  --clr-green-200: hsl(138, 32%, 70%);
  --clr-green-300: hsl(138, 32%, 60%);
  --clr-green-400: hsl(138, 32%, 31%);
  --clr-green-500: hsl(138, 32%, 21%);
  --clr-gray-100: hsl(0, 0%, 90%);
  --clr-gray-200: hsl(0, 0%, 80%);
  --clr-gray-300: hsl(0, 0%, 70%);
  --clr-gray-400: hsl(0, 0%, 60%);
  --clr-gray-500: hsl(0, 0%, 50%);
  --clr-gray-600: hsl(0, 0%, 40%);
  --clr-gray-700: hsl(0, 0%, 30%);
  --clr-gray-800: hsl(0, 0%, 20%);
  --clr-gray-900: hsl(0, 0%, 10%);
  --clr-gradient-blue: linear-gradient(0deg, var(--clr-blue-500) 0%, var(--clr-blue-300) 100%);
  --clr-gradient-red: linear-gradient(0deg, var(--clr-red-500) 0%, var(--clr-red-300) 100%);
  --clr-gradient-yellow: linear-gradient(0deg, var(--clr-yellow-500) 0%, var(--clr-yellow-300) 100%);
  --clr-gradient-green: linear-gradient(0deg, var(--clr-green-500) 0%, var(--clr-green-300) 100%);
  --clr-gradient-gray: linear-gradient(0deg, var(--clr-gray-700) 0%, var(--clr-gray-300) 100%);
  --boxshadow-100: 0 3px 5px var(--clr-gray-100);
  --boxshadow-200: 0 5px 8px var(--clr-gray-200);
  --font-color: var(--clr-gray-800);
}

:root {
  --clr-menu-icon: var(--clr-blue-300);
  --clr-menu-icon-background: none;
  --clr-menu-icon-background-hover: #145639;
  --clr-menu-container: var(--clr-blue-500);
  --font-menu: "Lato", sans-serif;
  --font-menu-color: white;
  --font-size: 1.25rem;
  --font-weight: 600;
}

.mainmenu ul, .mainmenu li, .mainmenu a {
  margin: 0;
  padding: 0;
  text-indent: 0;
  text-decoration: none;
  list-style-type: none;
}

.menuicon {
  display: block;
  text-align: center;
  color: var(--clr-menu-icon);
  background-color: var(--clr-menu-icon-background);
  padding: 0.3em 0.5em 0.3em 0.5em;
  font-size: 2rem;
  cursor: pointer;
  z-index: 20;
  transition: 0.25s;
}
.menuicon:hover {
  background-color: var(--clr-menu-icon-background-hover);
  color: gray;
}
@media screen and (min-width: 1250px) {
  .menuicon {
    display: none;
  }
}

.menuicon-close {
  position: fixed;
  top: 20px;
  right: 20px;
}

.mainmenu {
  max-width: 100%;
  display: none;
  z-index: 50;
}
.mainmenu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  gap: 1rem;
  font-size: var(--font-size);
}
.mainmenu ul li {
  text-transform: uppercase;
  text-align: center;
  padding: 0.25rem 0;
}
.mainmenu ul li a:link, .mainmenu ul li a:visited {
  color: white;
  padding: 1.25rem 0;
}

@media screen and (min-width: 1250px) {
  .mainmenu {
    display: block;
  }
  .mainmenu ul {
    flex-direction: row;
    justify-content: end;
    width: 100%;
    height: 100%;
  }
  .mainmenu ul li {
    position: relative;
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    height: 100%;
    position: relative;
    padding: 1rem 0.5rem;
  }
  .mainmenu ul li a:link, .mainmenu ul li a:visited {
    color: var(--clr-blue-500);
    height: 100%;
  }
  .mainmenu ul li a:hover, .mainmenu ul li a:active {
    position: relative;
  }
  .mainmenu ul li a:hover::after, .mainmenu ul li a:active::after {
    content: "";
    position: absolute;
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--clr-blue-500);
  }
}
.current-menu-item a:link, .current-menu-item a:visited {
  position: relative;
}
.current-menu-item a:link::after, .current-menu-item a:visited::after {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--clr-blue-500);
}

.show-navigation {
  display: flex;
  position: fixed;
  inset: 0;
  background-color: var(--clr-menu-container);
}

:root {
  --logo-size: 300px;
  --logo-size-small: 150px;
}

.header {
  width: 100%;
  position: relative;
  background: white;
  padding: 3em;
  border-bottom: 1px solid black;
  transition: all 250ms ease-out;
}

.header-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 400px) {
  .header-container {
    flex-direction: row;
  }
}

.header-container-left {
  display: grid;
  grid-template-columns: var(--logo-size) 1fr;
  grid-template-rows: 1fr;
  gap: 1em;
  align-items: center;
}
.header-container-left img {
  grid-column: 1/2;
  grid-row: 1/-1;
  justify-self: left;
  display: block;
  max-height: var(--logo-size);
}
.header-container-left h1 {
  grid-column: 2/-2;
  grid-row: 1/-1;
  justify-self: left;
  font-size: 2.5rem;
  font-weight: 600;
  color: red;
  letter-spacing: -1px;
  text-transform: unset;
  margin: 0;
  padding: 0;
  transition: all 500ms;
}
.header-container-left h1 span {
  display: block;
  font-size: 1.15rem;
  font-weight: 100;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  text-indent: 20px;
  font-size: clamp(1.15rem, 1.5vw, 1.15rem);
  color: red;
  align-self: start;
}

.sticky {
  position: fixed;
  top: 0;
  grid-template-columns: var(--logo-size-small) 1fr;
  background-color: rgba(255, 255, 255, 0.98);
  padding: 0.5em 2em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
  z-index: 100;
  transition: all 250ms ease-out;
}
.sticky .header-container h1 {
  font-size: 1.85rem;
}
.sticky .header-container h1 span {
  display: none;
}
.sticky .header-container .contact {
  display: none;
}
.sticky .header-container .header-container-left {
  grid-template-columns: var(--logo-size-small) 1fr;
  gap: 0.5rem;
}
.sticky .header-container .header-container-left img {
  max-width: var(--logo-size-small);
  transition: all 250ms ease-out;
}

@media screen and (max-width: 530px) {
  h1 {
    display: none;
  }
}
.no-padding {
  padding: 0 !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  font-family: var(--font-main);
}

html {
  color-scheme: dark light;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: var(--width);
  margin: 0 auto;
  padding: 2em;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--clr-gray-100);
  color: gray;
}

header {
  background-color: var(--clr-gray-500);
  overflow: hidden;
}

.hero {
  --heroheight: 55vh;
  height: calc(100vh - 12em);
  text-align: center;
}
@media screen and (min-width: 900px) {
  .hero {
    height: auto;
    min-height: var(--heroheight);
  }
}

.hero-margin {
  margin-top: 11.5em;
}

.video-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 900px) {
  .video-container {
    height: var(--heroheight);
  }
}
.video-container video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
  opacity: 0.75;
  z-index: -10;
}
@media screen and (min-width: 900px) {
  .video-container video {
    -o-object-position: 50% -30vh;
       object-position: 50% -30vh;
  }
}
.video-container .video-overlay {
  display: flex;
  justify-content: center;
  position: absolute;
  inset: 0;
  background-color: hsla(196, 63%, 14%, 0.75);
}
.video-container .video-overlay .video-txt {
  padding: 1em;
  text-align: center;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "button";
}
@media (min-width: 400px) and (min-height: 560px) {
  .video-container .video-overlay .video-txt {
    padding: 3em;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: "button" "button" "text";
  }
}
@media (min-height: 1000px) {
  .video-container .video-overlay .video-txt {
    grid-template-areas: "logo" "text" "button";
  }
}
.video-container .video-overlay .video-txt .buttons {
  grid-area: button;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .video-container .video-overlay .video-txt .buttons {
    flex-direction: row;
  }
  .video-container .video-overlay .video-txt .buttons .btn {
    max-height: -moz-max-content;
    max-height: max-content;
  }
}
.video-container .video-overlay .video-txt h2 {
  display: none;
  grid-area: text;
  color: white;
  text-shadow: 0 1px 1px black;
}
@media (min-width: 400px) and (min-height: 560px) {
  .video-container .video-overlay .video-txt h2 {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 1400px) {
  .video-container .video-overlay .video-txt h2 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }
}
.video-container .video-overlay .video-txt .video-txt-logo {
  display: none;
}
@media (min-width: 400px) and (min-height: 1000px) {
  .video-container .video-overlay .video-txt .video-txt-logo {
    display: block;
    grid-area: logo;
    max-width: 300px;
    margin: 0 auto;
  }
}

.some {
  display: none;
}
@media screen and (min-width: 1200px) {
  .some {
    padding: 2em 3em;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  .some i {
    font-size: 3rem;
    color: white;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  .some {
    background-color: var(--clr-blue-600);
    position: absolute;
    right: 10%;
    bottom: 0;
  }
  .some i {
    font-size: 2rem;
  }
}

.welcome {
  text-align: center;
  padding: 3em 0;
}
.welcome h3 {
  line-height: 2rem;
}

.booking {
  text-align: center;
  overflow: hidden;
  padding: 1em 1em 5em 1em;
}
.booking .booking_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 700px) {
  .booking .booking_inner {
    flex-direction: row;
  }
}

.btn {
  font-size: 2rem;
  text-transform: uppercase;
  background-color: var(--clr-blue-400);
  box-shadow: none;
  border: none;
  outline: 1px solid var(--clr-blue-400);
  padding: 1rem 3rem;
  margin: 1rem;
  border-radius: 5px;
  transition: 250ms all ease-out;
}
.btn a:link, .btn a:visited {
  height: 100%;
  color: white;
  text-decoration: none;
}
.btn:hover, .btn:active {
  background-color: var(--clr-blue-600);
  outline: 1px solid white;
  cursor: pointer;
}

.booking .btn {
  min-width: 330px;
}

.show-phone {
  display: block;
}

.hide-phone {
  display: none;
}

@media screen and (min-width: 900px) {
  .show-phone {
    display: none;
  }
  .hide-phone {
    display: block;
  }
}
.warning {
  background-color: var(--clr-blue-600);
  text-align: center;
  overflow: hidden;
  padding: 5em 1em;
}
.warning h2, .warning h3, .warning p {
  color: white;
}

.special {
  position: relative;
  background: var(--clr-blue-400);
  text-align: center;
  padding: 2em 1em 5em 1em;
  overflow: hidden;
}
.special h2 {
  color: white;
}
.special .special-wrapper {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1000px) {
  .special .special-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 3em;
  }
}
.special .special-wrapper .box {
  z-index: 1;
}
.special .special-wrapper .box a:link, .special .special-wrapper .box a:visited {
  text-decoration: none;
}
.special .special-wrapper .box h3, .special .special-wrapper .box p {
  color: white;
}
.special .special-wrapper .box img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 300ms ease-out;
}
.special .special-wrapper .box img:hover {
  scale: 1.05;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.spine {
  display: none;
}
@media screen and (min-width: 1000px) {
  .spine {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.1;
    animation: spine 5s;
  }
}
@keyframes spine {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 0.1;
    transform: translateX(0%);
  }
}

.news {
  text-align: center;
  overflow: hidden;
  margin-bottom: 10em;
}

.news-grid {
  display: flex;
  flex-direction: column;
  gap: 4em;
  flex-wrap: wrap;
}
@media (min-width: 1000px) {
  .news-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

.news-card {
  border: 1px solid var(--clr-gray-300);
  position: relative;
  background-color: white;
  text-align: left;
  flex: 1 1 calc(50% - 2em);
  max-width: calc(50% - 2em);
}
.news-card img {
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.news-card:only-child {
  flex: 1 1 100%;
  max-width: 100%;
}

.news-card-content {
  padding: 0 1rem 6rem 1rem;
}
.news-card-content p {
  line-height: 1.45;
}
.news-card-content .readmore {
  position: absolute;
  font-size: 1rem;
  background-color: var(--clr-blue-500);
  padding: 10px 15px;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  bottom: 0;
  right: 1rem;
  display: block;
  transition: 250ms all ease-out;
}
.news-card-content .readmore:hover, .news-card-content .readmore:active {
  background-color: var(--clr-blue-600);
}

.tilskud {
  text-align: center;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.tilskud img {
  grid-row: 1/-1;
  grid-column: 1/-1;
  z-index: 1;
  filter: grayscale(100%);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tilskud .tilskud-content {
  grid-row: 1/-1;
  grid-column: 1/-1;
  text-align: center;
  margin: auto 1em;
  padding: 3em 1em;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tilskud-overlay {
  background-color: hsla(196, 63%, 14%, 0.85);
  grid-row: 1/-1;
  grid-column: 1/-1;
  z-index: 2;
}
.tilskud-overlay h2 {
  color: white;
}

.features {
  overflow: hidden;
  margin: 0 auto;
}
.features .feature {
  background-color: var(--clr-gray-200);
  display: block;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .features .feature {
    grid-template-columns: 60% 40%;
    gap: 3em;
    display: grid;
  }
}
@media screen and (min-width: 1200px) {
  .features .feature:nth-child(odd) {
    direction: rtl;
  }
}
.features .feature-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 600px;
}
.features .feature-text {
  padding: 3em 1em;
}
@media screen and (min-width: 1000px) {
  .features .feature-text {
    max-width: 80%;
  }
}
.features .readmore {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.ourteam {
  text-align: center;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.ourteam img {
  grid-row: 1/-1;
  grid-column: 1/-1;
  z-index: 1;
  filter: grayscale(100%);
  height: 100%;
  max-height: 50vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ourteam .ourteam-content {
  grid-row: 1/-1;
  grid-column: 1/-1;
  text-align: center;
  margin: auto 1em;
  padding: 3em 1em;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ourteam-overlay {
  background-color: hsla(196, 63%, 14%, 0.85);
  grid-row: 1/-1;
  grid-column: 1/-1;
  z-index: 2;
}
.ourteam-overlay h2 {
  color: white;
}

footer {
  position: relative;
  overflow: hidden;
  margin-top: auto;
  padding: 5em 2em;
  background-color: var(--clr-blue-500);
}
footer p {
  color: white;
  line-height: 1.35;
}
footer a:link, footer a:visited {
  color: white;
}
footer img {
  max-height: 100%;
  max-width: 100%;
}
footer .adresser {
  max-width: var(--width);
  margin: 0 auto;
  display: grid;
  gap: 1em;
}
@media screen and (min-width: 500px) {
  footer .adresser {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 900px) {
  footer .adresser {
    grid-template-columns: repeat(4, 1fr);
  }
}
footer .adresser .footer-logo {
  display: none;
}
@media screen and (min-width: 900px) {
  footer .adresser .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .adresser .footer-logo img {
    max-width: 100px;
  }
}

.some-footer {
  background-color: var(--clr-blue-600);
  text-align: center;
  padding: 0;
}
.some-footer a:link, .some-footer a:visited {
  color: white;
}
.some-footer span {
  margin-right: 5px;
  margin-left: 5px;
}

.theme-info {
  font-size: 1.2rem;
  text-align: center;
  margin: 0;
  padding: 1em;
  background-color: var(--clr-blue-600);
  color: rgba(255, 255, 255, 0.25);
}

.post_thumbnail {
  height: 30vh;
  overflow: hidden;
}
.post_thumbnail img {
  width: 100vw;
  height: 30vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.kiropraktorgruppen {
  text-align: center;
  padding: 1.5em 0.5em;
}
.kiropraktorgruppen p {
  text-transform: uppercase;
  font-size: 90%;
  margin: 0;
  padding: 0;
}
.kiropraktorgruppen img {
  max-width: 200px;
  margin: 0 auto;
  margin-top: 1rem;
}
@media screen and (min-width: 650px) {
  .kiropraktorgruppen {
    display: flex;
    flex-direction: row;
    gap: 1em;
    justify-content: center;
    align-items: center;
  }
  .kiropraktorgruppen img {
    margin: 0;
  }
}

.ansatte-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}
@media screen and (min-width: 650px) {
  .ansatte-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 950px) {
  .ansatte-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.ansatte-card {
  position: relative;
  border: 1px solid gray;
  display: flex;
  flex-direction: column;
  background-color: white;
}

.ansatte-foto {
  grid-column: 1/-1;
  grid-row: 1/3;
  overflow: hidden;
  max-height: 500px;
}
.ansatte-foto img {
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.ansatte-info {
  padding: 1.5em;
  grid-column: 2/-2;
  grid-row: 3/4;
}
@media screen and (min-width: 950px) {
  .ansatte-info {
    grid-column: 3/-2;
    grid-row: 1/-1;
  }
}

.ansatte-small {
  position: absolute;
  top: 0;
  right: 2em;
  background-color: var(--clr-blue-400);
  color: white;
  padding: 5px 25px;
  font-size: 1rem;
}

.cat-title {
  grid-column: 1/-1;
  margin-bottom: 0;
}

.map {
  border-top: 1px solid var(--clr-blue-600);
}

.places {
  display: none;
  gap: 1em;
  margin-bottom: 2em;
  overflow: hidden;
}
.places img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 250ms ease-out;
}
@media screen and (min-width: 1000px) {
  .places {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.place {
  max-height: 300px;
  height: 300px;
}

.place-adress {
  display: block;
  width: 100%;
  max-height: 300px;
  background-color: var(--clr-blue-600);
  color: white;
  font-size: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  opacity: 0.9;
  transition: transform 300ms ease-out;
  transform: translateY(-125%);
}
@media screen and (min-width: 1000px) {
  .place-adress {
    transform: translateY(200%);
  }
}

.place:hover .place-adress {
  transform: translateY(-125%);
}