@font-face {
  font-display: swap;
  font-family: "Parkinsans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/parkinsans/parkinsans-v2-latin_latin-ext-300.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Parkinsans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/parkinsans/parkinsans-v2-latin_latin-ext-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Parkinsans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/parkinsans/parkinsans-v2-latin_latin-ext-500.woff2") format("woff2");
  size-adjust: 102%;
  ascent-override: 90%;
  descent-override: 20%;
}
@font-face {
  font-display: swap;
  font-family: "Parkinsans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/parkinsans/parkinsans-v2-latin_latin-ext-600.woff2") format("woff2");
  size-adjust: 102%;
  ascent-override: 90%;
  descent-override: 20%;
}
@font-face {
  font-display: swap;
  font-family: "Parkinsans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/parkinsans/parkinsans-v2-latin_latin-ext-700.woff2") format("woff2");
  size-adjust: 102%;
  ascent-override: 90%;
  descent-override: 20%;
}
@font-face {
  font-display: swap;
  font-family: "Parkinsans";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/parkinsans/parkinsans-v2-latin_latin-ext-800.woff2") format("woff2");
  size-adjust: 102%;
  ascent-override: 90%;
  descent-override: 20%;
}
@font-face {
  font-family: "pacifico";
  src: url("../fonts/pacifico/Pacifico-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "justme";
  src: url("../fonts/justme/JustMeAgainDownHere-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  color: #1e1e1e;
  box-sizing: border-box;
}

.lgbt-text-color {
  background: linear-gradient(45deg, #ef4643, #f9a12a, #f8cf0c, #37b44a, #436db5, #b056a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
}

.pacifico-font {
  font-family: "pacifico", sans-serif;
}

.justme-font {
  font-family: "justme", sans-serif;
}

.bold {
  font-weight: bold;
}

.primary-shadow {
  box-shadow: 0 0 5px #d1d1d1;
}

.rainbow-underline {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.rainbow-underline::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0);
  height: 3px;
  width: 100%;
  background: linear-gradient(45deg, #ef4643, #f9a12a, #f8cf0c, #37b44a, #436db5, #b056a1);
  border-radius: 5px;
}

body {
  margin: 0;
  font-family: "Parkinsans", sans-serif;
}

header {
  position: fixed;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  border-radius: 50px;
  background-color: #f8cf0c;
  box-shadow: 0 0 2px #bababa;
  z-index: 10;
}

nav {
  width: clamp(200px, 95%, 2000px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(13px, 1.8vw, 18px);
}
nav .nav__ul-container {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background-color: #f8cf0c;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 650px) {
  nav .nav__ul-container {
    position: relative;
    top: unset;
    left: unset;
    width: clamp(350px, 70%, 700px);
    height: auto;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    place-items: unset;
  }
}
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 30px;
}
@media (min-width: 650px) {
  nav ul {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
  }
}
nav ul li {
  text-transform: uppercase;
  text-align: center;
  font-size: 24px;
}
@media (min-width: 650px) {
  nav ul li {
    font-size: clamp(13px, 1.8vw, 18px);
  }
}
nav .active-page {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
nav .active-page::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, 0);
  height: 2px;
  width: 100%;
  background: linear-gradient(45deg, #ef4643, #f9a12a, #f8cf0c, #37b44a, #436db5, #b056a1);
  border-radius: 5px;
}
nav .nav__language {
  position: relative;
  text-transform: uppercase;
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  align-items: center;
  font-size: 18px;
}
@media (min-width: 650px) {
  nav .nav__language {
    font-size: clamp(13px, 1.8vw, 18px);
  }
}
nav .nav__change-language-container {
  display: flex;
  gap: 20px;
}
@media (min-width: 650px) {
  nav .nav__change-language-container {
    position: absolute;
    top: 100%;
    left: 50%;
    padding: 8px 0;
    display: grid;
    gap: 8px;
    transform: translate3d(-50%, -50%, 0) scale(0);
    transition: transform 0.1s ease-in-out;
    border-radius: 25px;
    background-color: #b5e4f9;
  }
  nav .nav__change-language-container .nav__language-item {
    padding: 0 16px;
    text-align: center;
    font-size: clamp(13px, 1.8vw, 18px);
  }
}
@media (min-width: 650px) {
  nav .change-language-open {
    transform: translate3d(-50%, 5px, 0) scale(1);
  }
}
nav .nav__active-language {
  position: relative;
  cursor: pointer;
}
@media (max-width: 649.99px) {
  nav .nav__active-language {
    font-weight: bold;
  }
}
nav a {
  text-decoration: none;
}
nav .nav__open-menu {
  width: clamp(20px, 5vw, 50px);
  aspect-ratio: 1/1;
  display: grid;
  gap: 6px;
  place-items: center;
  cursor: pointer;
  align-content: center;
}
@media (min-width: 650px) {
  nav .nav__open-menu {
    display: none;
  }
}
nav .nav__open-menu span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #1e1e1e;
  border-radius: 7px;
}
nav .nav__close-menu {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
  width: clamp(20px, 5vw, 50px);
  aspect-ratio: 1/1;
  gap: 1px;
  place-items: center;
  cursor: pointer;
}
@media (min-width: 650px) {
  nav .nav__close-menu {
    display: none;
  }
}
nav .nav__close-menu span {
  position: absolute;
  display: block;
  width: 20px;
  height: 1px;
  background-color: #1e1e1e;
  border-radius: 7px;
}
nav .nav__close-menu span:first-of-type {
  transform: rotate(45deg);
}
nav .nav__close-menu span:last-of-type {
  transform: rotate(-45deg);
}

.nav-open .nav__ul-container {
  transform: translate3d(-100%, 0, 0);
}
.nav-open .nav__ul-container .nav__close-menu {
  display: grid;
}

.nav__container-brand a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
}
.nav__container-brand img {
  width: clamp(30px, 4vw, 55px);
  aspect-ratio: 1/1;
  padding: 3px;
  filter: drop-shadow(0 0 1px #7e7e7e);
}

footer {
  position: relative;
  padding: 20px 0;
  background-color: #f8cf0c;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  box-shadow: 0 0 2px #bababa;
  z-index: 1;
}

.footer-content {
  width: clamp(200px, 95%, 2000px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-content img {
  width: clamp(120px, 20vw, 230px);
  height: auto;
  filter: drop-shadow(0 0 1px #7e7e7e);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 299.99px) {
  .footer-brand {
    gap: 20px;
  }
}
.footer-brand .address {
  font-size: clamp(16px, 2.5vw, 30px);
}

.footer-links {
  width: 55%;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-size: clamp(14px, 3.5vw, 24px);
}
@media (min-width: 430px) and (max-width: 1199.99px) {
  .footer-links {
    width: 100%;
  }
}
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 399.99px) {
  .footer-links ul {
    width: 100%;
  }
}
.footer-links li {
  margin-bottom: 20px;
}
@media (max-width: 419.99px) {
  .footer-links li {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.footer-links a {
  text-decoration: none;
  text-transform: lowercase;
}

.rights {
  min-width: 100%;
  text-align: right;
  font-size: clamp(12px, 1.8vw, 18px);
}

.nav__logo {
  height: 100%;
}

h2 {
  font-weight: 500;
}

.home-wave {
  position: absolute;
  bottom: -10px;
  width: 100%;
  height: 10vh;
  max-height: 200px;
  clip-path: url(#waveClip);
  background-color: #f8cf0c;
}

.bottom-curve {
  position: relative;
  bottom: -10px;
  width: 100%;
  height: 10vh;
  max-height: 200px;
  clip-path: url(#bottomClip);
  background-color: #fff;
}

body {
  overflow-x: clip;
}

h2 {
  font-size: clamp(18px, 4.5vw, 44px);
}

.header {
  overflow-x: clip;
  background-color: #f8cf0c;
}
.header .header-background {
  width: 100%;
  min-height: 600px;
  height: clamp(450px, 85vh, 1200px);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.header .header-text-container {
  position: relative;
}
.header .header-text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: clamp(200px, 75%, 1400px);
  margin: 0 auto;
}
@media (max-width: 575.99px) {
  .header .header-text {
    width: clamp(200px, 95%, 1400px);
    margin: 0 auto;
  }
}
.header .header-text a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 40px;
  text-decoration: none;
  font-size: clamp(13px, 2vw, 20px);
  background-color: #b5e4f9;
  border-radius: 30px;
  transition: background-color 0.1s ease-in-out;
}
.header .header-text a:hover {
  background-color: #6ecdf8;
}
@media (max-width: 575.99px) {
  .header .header-text a {
    padding: 4px 24px;
  }
}
.header .header-text p {
  text-decoration: underline;
}
.header h1 {
  margin: 0;
  position: relative;
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 80px);
  text-align: center;
}
.header h1 span {
  color: #fff;
}
.header h1 .h1-more {
  display: block;
}
.header p {
  position: relative;
  margin: 30px auto 80px auto;
  width: clamp(200px, 95%, 800px);
  font-size: clamp(16px, 2.3vw, 34px);
  font-style: italic;
  color: #fff;
  text-align: center;
  filter: drop-shadow(0 0 1px #000);
}
.header p:nth-of-type(odd) {
  padding-left: 7%;
}
@media (max-width: 299.99px) {
  .header p {
    margin: 30px 0;
    width: 100%;
  }
}
.header .debki-h1 {
  position: relative;
  color: #c4a307;
  font-weight: 600;
}
.header .sl-bgc {
  position: relative;
  z-index: 1;
  font-weight: 600;
  text-align: center;
  background: linear-gradient(45deg, #ef4643, #f9a12a, #f8cf0c, #37b44a, #436db5, #b056a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header .header-more {
  position: relative;
  width: 100%;
  margin: 20px 0 0 0;
  overflow-x: clip;
}
.header .header-more .more-container {
  width: clamp(200px, 95%, 2000px);
  margin: 0 auto;
}
.header .header-more .more-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% + 130px);
  aspect-ratio: 16/9;
  border-radius: 50%;
  background-color: #f8cf0c;
  z-index: -2;
}
@media (min-width: 700px) and (max-width: 899.99px) {
  .header .header-more .more-background {
    height: calc(100% + 150px);
  }
}
@media (min-width: 900px) {
  .header .header-more .more-background {
    top: 25%;
    height: calc(100% + 300px);
  }
}
.header .header-p-1,
.header .header-p-2 {
  position: relative;
}
.header .header-p-1 p,
.header .header-p-2 p {
  position: relative;
  color: #1e1e1e;
  margin: 0 auto;
  width: 100%;
  text-align: left;
  font-size: clamp(16px, 2.2vw, 24px);
  filter: none;
}
.header .header-p-2 {
  width: clamp(200px, 100%, 800px);
  margin-right: auto;
  margin-left: auto;
}
.header .header-p-2 p {
  font-weight: 600;
  margin: 50px auto;
}
.header .header-p-1 {
  width: clamp(200px, 100%, 1300px);
  margin: 20px auto 0 auto;
}
.about {
  width: clamp(200px, 95%, 2000px);
  margin: 0 auto 60px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.about h2 {
  text-transform: uppercase;
}
.about .content,
.about .gallery {
  position: relative;
  width: clamp(200px, 100%, 1000px);
}
@media (min-width: 1170px) {
  .about .content,
  .about .gallery {
    width: 50%;
  }
}
.about p {
  text-align: justify;
  margin: 0;
  font-size: clamp(13px, 1.8vw, 30px);
}
.about a {
  text-decoration: none;
}
.about .gallery {
  position: relative;
  margin: 60px 0 0 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
}
.about .pic-1,
.about .pic-2,
.about .pic-3 {
  aspect-ratio: 1/1;
}
.about .pic-1 img,
.about .pic-2 img,
.about .pic-3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 5px #d1d1d1;
}
.about .pic-1 {
  grid-column: span 5/span 5;
  grid-row: span 5/span 5;
  grid-column-start: 5;
}
.about .pic-2 {
  grid-column: span 4/span 4;
  grid-row: span 4/span 4;
  grid-row-start: 5;
  transform: translate(20%, -17%);
}
.about .pic-3 {
  grid-column: span 7/span 7;
  grid-row: span 7/span 7;
  grid-column-start: 5;
  grid-row-start: 6;
}

.container {
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 5px;
}
.container .pictogram {
  min-width: 120px;
  max-width: 160px;
  text-align: center;
  font-size: clamp(14px, 1.6vw, 2px);
}
.container img {
  width: clamp(40px, 15vw, 80px);
  height: 100%;
}

.debki,
.recommendations {
  width: clamp(200px, 95%, 2000px);
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.debki .img-container,
.recommendations .img-container {
  width: 90%;
  max-width: 400px;
}
@media (min-width: 900px) {
  .debki .img-container,
  .recommendations .img-container {
    width: 38%;
  }
}
.debki .text-container,
.recommendations .text-container {
  width: 100%;
  max-width: 600px;
}
@media (min-width: 900px) {
  .debki .text-container,
  .recommendations .text-container {
    width: 48%;
  }
}
.debki .text-container p,
.recommendations .text-container p {
  text-align: justify;
  font-size: clamp(13px, 1.8vw, 30px);
}
.debki .text-container,
.recommendations .text-container {
  padding: 20px;
  border-radius: 50px;
  font-size: clamp(13px, 2vw, 24px);
}
@media (min-width: 900px) {
  .debki .text-container,
  .recommendations .text-container {
    margin-top: 0;
    padding: 30px;
    border-radius: 80px;
    width: 52%;
    max-width: 1100px;
  }
}
.debki .title h2,
.recommendations .title h2 {
  margin: 0 auto;
  text-transform: uppercase;
  text-align: center;
}
.debki img,
.recommendations img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.debki .debki-more a,
.debki .recommendations-more a,
.recommendations .debki-more a,
.recommendations .recommendations-more a {
  display: block;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 80px;
  text-decoration: none;
  font-size: clamp(14px, 2vw, 24px);
  border-radius: 30px;
  background-color: #f8cf0c;
}
.debki .debki-more a:hover,
.debki .recommendations-more a:hover,
.recommendations .debki-more a:hover,
.recommendations .recommendations-more a:hover {
  background-color: #ffd900;
}
@media (max-width: 299.99px) {
  .debki .debki-more a,
  .debki .recommendations-more a,
  .recommendations .debki-more a,
  .recommendations .recommendations-more a {
    padding: 4px 40px;
  }
}

.debki-more a {
  display: block;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 80px;
  text-decoration: none;
  font-size: clamp(14px, 2vw, 24px);
  border-radius: 30px;
  background-color: #f8cf0c;
  box-shadow: 0 0 1px #8b8b8b;
}
.debki-more a:hover {
  background-color: #ffd900;
}
@media (max-width: 299.99px) {
  .debki-more a {
    padding: 4px 40px;
  }
}

.recommendations {
  flex-direction: row-reverse;
}
@media (min-width: 900px) {
  .recommendations {
    text-align: right;
  }
}
.recommendations img {
  -o-object-position: left;
     object-position: left;
}

.debki {
  margin-bottom: 20px;
}

.about-more {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 80px;
  text-decoration: none;
  font-size: clamp(14px, 2vw, 24px);
  border-radius: 30px;
  background-color: #f8cf0c;
}
.about-more:hover {
  background-color: #ffd900;
}
@media (max-width: 299.99px) {
  .about-more {
    padding: 4px 40px;
  }
}

.amc {
  width: 100%;
}

.about-arrow {
  margin-top: -10px;
}

.more {
  position: relative;
  padding: 80px 0 240px 0;
  overflow: clip;
}

.background-more {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reservations {
  position: relative;
  top: -160px;
  padding: 20px 0;
  border-radius: 55px;
  background-color: #fff;
  box-shadow: 0 0 5px #d1d1d1;
}
.reserv-content {
  position: relative;
  width: clamp(200px, 95%, 1400px);
  margin: 0 auto;
  z-index: 10;
}
@media (min-width: 900px) {
  .reserv-content {
    padding: 60px 0;
  }
}
.reserv-content .text {
  width: clamp(200px, 95%, 900px);
  margin: 0 auto;
}
.reserv-content ul {
  padding: 0;
  list-style: none;
}
@media (min-width: 900px) {
  .reserv-content ul {
    margin: 70px auto;
  }
}
.reserv-content ul li {
  display: flex;
  align-items: center;
  margin: 30px 0;
  font-size: clamp(16px, 2.3vw, 30px);
}
.reserv-content img {
  width: 40px;
  margin-right: 30px;
}
.reserv-content .details {
  position: relative;
  width: clamp(200px, 95%, 900px);
  margin: 0 auto;
  z-index: 10;
}
.reserv-content .details p {
  margin: 0;
  font-size: clamp(10px, 1.7vw, 18px);
  font-weight: 300;
  font-style: italic;
}

.map {
  position: relative;
  margin-top: -340px;
  padding: 300px 0 120px 0;
}
.map img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.map-container {
  display: grid;
  place-items: center;
}
.map-container iframe {
  width: clamp(200px, 95%, 1400px);
  aspect-ratio: 16/9;
}

.contact-content {
  width: clamp(200px, 95%, 1400px);
  margin: 80px auto;
  text-align: center;
  font-size: clamp(16px, 2vw, 30px);
}
@media (max-width: 299.99px) {
  .contact-content {
    margin: 100px auto;
  }
}
.contact-content .title {
  font-size: clamp(18px, 2vw, 40px);
  text-transform: uppercase;
}
.contact-content a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 299.99px) {
  .contact-content a {
    width: 182px;
  }
}
.contact-content .socials {
  width: clamp(200px, 95%, 700px);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media (max-width: 299.99px) {
  .contact-content .socials {
    margin: 60px auto 0 auto;
    gap: 10px;
  }
}
.contact-content img {
  width: 50px;
  margin-right: 5px;
}
@media (max-width: 299.99px) {
  .contact-content img {
    width: 30px;
    margin-right: 20px;
  }
}
.contact-content h2 {
  margin: 0 auto;
}
.contact-content .text {
  margin: 100px 0;
}
.contact-content p {
  margin: 0.5em 0;
}

.news {
  width: clamp(200px, 95%, 2000px);
  margin: 100px auto 80px auto;
  padding: 3px;
  border-radius: 55px;
  background: linear-gradient(160deg, #ef4643, #f9a12a, #f8cf0c, #37b44a, #436db5, #b056a1);
}

.news-container {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  background-color: #fff;
  border-radius: 52px;
}
@media (min-width: 600px) {
  .news-container {
    padding: 40px 0;
  }
}
.news-container .img {
  width: clamp(100px, 30%, 500px);
}
.news-container .img img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-container .content {
  width: clamp(200px, 60%, 1200px);
}
@media (max-width: 365px) {
  .news-container .content {
    width: clamp(200px, 90%, 1200px);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.news-container h2 {
  width: 100%;
  margin: 0;
  font-weight: 500;
  font-size: clamp(18px, 4.5vw, 44px);
}
.news-container .reserv-button {
  width: -moz-fit-content;
  width: fit-content;
}
.news-container a {
  display: inline-block;
  padding: 8px 60px;
  text-decoration: none;
  font-size: clamp(13px, 2vw, 20px);
  background-color: #b5e4f9;
  border-radius: 30px;
  transition: background-color 0.1s ease-in-out;
}
.news-container a:hover {
  background-color: #6ecdf8;
}
.news-container p {
  font-size: clamp(13px, 1.8vw, 30px);
  font-weight: 300;
}
.news-container .details {
  margin: 1em 0;
  display: flex;
  gap: 4vw;
  font-size: clamp(11px, 1.6vw, 24px);
}
.news-container .details img {
  width: clamp(14px, 2vw, 30px);
}
.news-container .item {
  display: flex;
  align-items: center;
  gap: 10px;
}/*# sourceMappingURL=home-1.0.3.css.map */