* {
  scroll-behavior: smooth;
}
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: "Inria Serif", serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #1e1e1e;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.dateIg {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}
.navMain {
  top: 0;
  position: fixed;
  display: flex;
  width: 100%;
  justify-content: center;
  padding-block: 0.75rem;
  z-index: 2;
  background-color: white;
  transition: 0.3s;
  height: 9vh;
}
.navMainContainer {
  display: flex;
  width: 90%;
  justify-content: space-between;
  z-index: 2;
  background-color: white;
}
.navMainContainer img {
  height: 100%;
}
.displayNone {
  display: none;
}
.fa-bars {
  font-size: 3rem;
  background: linear-gradient(
    90deg,
    rgba(174, 134, 37, 1) 0%,
    rgba(247, 239, 138, 1) 35%,
    rgba(210, 172, 71, 1) 65%,
    rgba(237, 201, 103, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

#about,
#offers,
#blog,
#blogFull {
  width: 95%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
h1 {
  font-size: 32px;
}
.background {
  display: none;
}
main {
  background: rgba(0, 0, 0, 0.35) url("images/bgImage.jpg");
  background-size: cover;
  background-blend-mode: darken;
  background-position: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-block: 10rem;
}
main h1 {
  font-weight: 700;
  color: white;
}
main p {
  font-size: 20px;
  color: white;
  padding-inline: 0.5rem;
}
button {
  font-size: 20px;
}
span {
  background: linear-gradient(
    90deg,
    rgba(174, 134, 37, 1) 0%,
    rgba(247, 239, 138, 1) 35%,
    rgba(210, 172, 71, 1) 65%,
    rgba(237, 201, 103, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
button {
  border: none;
  outline: none;
  background: linear-gradient(
    90deg,
    rgba(174, 134, 37, 1) 0%,
    rgba(247, 239, 138, 1) 35%,
    rgba(210, 172, 71, 1) 65%,
    rgba(237, 201, 103, 1) 100%
  );
  border-radius: 8px;
  padding-block: 0.75rem;
  color: #544112;
  font-weight: 400;
  letter-spacing: 0.075rem;
  width: 75%;
}
button:last-child:hover {
  cursor: pointer;
}
#about {
  margin-top: 0rem;
  background-color: #ede8de;
  width: 100%;
}
.tile {
  display: flex;
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ede8de;
  border-radius: 8px;
  margin-top: 1.5rem;
}
.tile p {
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
}
.tile h1 {
  text-align: center;
  margin: 0;
}
.tile img {
  width: fit-content;
}
.offer img {
  border-radius: 16px;
}
#offers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#offers h1 {
  margin-bottom: 0;
}
.offer h2 {
  margin-top: 0;
  text-align: center;
}
.offer p {
  text-align: justify;
  padding-inline: 1rem;
}
.offer {
  max-width: 1440px;
}
.offerSlider {
  display: flex;
  justify-content: space-around;
  width: 200vw;
  transform: translateX(25%);
  transition: 0.5s;
}
.changeT {
  transform: translateX(-25%);
}
.changeM {
  transform: translateX(25%);
}
img {
  max-width: 100%;
}
.offerButtons {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.offerButtons button:nth-child(2) {
  width: 50%;
}
.offerButtons button:nth-child(1),
.offerButtons button:nth-child(3) {
  width: 15%;
  padding-inline: 0.75rem;
  padding-block: 0.25rem;
}
.articleM,
.articleM div {
  background-color: #ede8de;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 16px;
}
.articleM {
  border-radius: 16px;
  object-fit: cover;
}
.articleM img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}
.articleM p {
  width: 90%;
  text-align: justify;
  font-size: 16px;
}
.articleM button {
  background-color: #455a64;
  width: 100%;
  margin-bottom: 1rem;
}
.articleM a {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.articleM button:hover {
  cursor: pointer;
}
.articleM h2 {
  margin-block: 0;
  margin-top: 0.75rem;
}
.articleS {
  background-color: #ede8de;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 7px;
}
.articleS div:first-child {
  width: 40%;
  height: 148px;
}
.articleS div img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 7px 0 0 7px;
}
.articleS p {
  font-size: 16px;
}
.articleS h3,
.articleS p,
.articleS a {
  margin: 0;
}
.articleS button:hover {
  cursor: pointer;
}
.artSright {
  width: 65%;
  padding-left: 0.5rem;
}
.artSright div {
  display: flex;
  justify-content: right;
  align-items: center;
  padding-right: 0.5rem;
}
.articles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.articles button {
  font-size: 14px;
  height: 100%;
  padding-block: 0.5rem;
}
.articles a {
  width: 100%;
  display: flex;
  justify-content: right;
  align-items: center;
  margin-top: 1rem;
}
footer img {
  width: fit-content;
}
footer .logoFooter {
  width: 40%;
}
.phone,
.mail {
  display: flex;
}
.phone img,
.mail img {
  width: 10%;
  padding-right: 0.25rem;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ede8de;
  text-align: center;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  #main {
    position: relative;
    width: 100vw;
  }
  .background {
    display: flex;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }

  .offerButtons button:nth-child(1),
  .offerButtons button:nth-child(3) {
    width: 30%;
    padding-inline: 0.75rem;
    padding-block: 0.5rem;
  }
  span {
    background: linear-gradient(
      90deg,
      rgba(174, 134, 37, 1) 0%,
      rgba(247, 239, 138, 1) 35%,
      rgba(210, 172, 71, 1) 65%,
      rgba(237, 201, 103, 1) 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
  .navMain {
    top: 0;
    position: fixed;
    display: flex;
    width: 100%;
    justify-content: center;
    padding-block: 0.75rem;
    z-index: 2;
    background-color: white;
    transition: 0.3s;
  }
  .navMainContainer {
    display: flex;
    max-width: 1640px;
    justify-content: space-between;
    z-index: 2;
    background-color: white;
  }
  .displayNone {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #offers .displayNone {
    flex-direction: column;
    gap: 0;
  }
  #offers .displayNone div {
    display: flex;
    gap: 1.5rem;
    flex-direction: row;
  }
  #offers .displayNone div p {
    margin: 0;
    padding-block: 1rem;
  }
  hr {
    margin: 0;
    width: 100%;
  }
  .displayNone li:last-child {
    background: linear-gradient(
      90deg,
      rgba(174, 134, 37, 1) 0%,
      rgba(247, 239, 138, 1) 35%,
      rgba(210, 172, 71, 1) 65%,
      rgba(237, 201, 103, 1) 100%
    );
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
  }
  .displayNone li:last-child:hover {
    cursor: pointer;
  }
  .displayBurger {
    display: none;
  }
  .navMain img {
    max-width: none;
  }
  .fa-bars {
    font-size: 3rem;
    color: #ede8de;
  }
  #offers,
  #blog,
  #blogFull {
    max-width: 1440px;
    display: flex;
  }
  main {
    flex-direction: row-reverse;
    margin-top: 5rem;
    background: none;
  }
  main img {
    width: fit-content;
  }
  main div {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  main h1 {
    color: white;
  }
  h1 {
    font-size: 48px;
  }
  main p {
    color: white;
    font-size: 28px;
    width: 50%;
  }
  p {
    font-size: 24px;
  }
  button {
    width: 30%;
  }
  .articleS button {
    width: 100%;
  }
  .articles a {
    width: 40%;
  }
  button:last-child {
    background-color: #455a64;
  }
  #about {
    width: 100%;
    flex-direction: row;
    padding-top: 1rem;
    background-color: #ede8de;
    padding-block: 2rem;
    justify-content: center;
    align-items: baseline;
  }
  .tile {
    display: flex;
    padding: 1rem;
    flex-direction: column;
    background-color: #ede8de;
    border-radius: 0;
    margin-top: 0;
    padding-bottom: 5rem;
  }
  .tile p {
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    max-width: 440px;
  }
  .tile h1 {
    text-align: center;
    margin: 0;
  }
  #offers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .offer img {
    border-radius: 16px;
    width: 45%;
  }
  #offers h1 {
    margin-bottom: 1rem;
  }
  .offer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    margin-top: 5rem;
  }
  .offerTextButton {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45%;
  }
  .offerText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .offerText h2 {
    margin-top: 0;
    text-align: left;
    width: 100%;
    font-size: 24px;
  }
  .offerText p {
    text-align: justify;
    padding-inline: 0;
    font-size: 20px;
  }
  .offerButtons {
    width: 100%;
    display: flex;
    justify-content: left;
  }
  .offerButtons button {
    width: 20%;
  }
  img {
    max-width: 100%;
  }
  .articlesAll {
    display: flex;
    width: 100%;
    gap: 5rem;
    justify-content: space-between;
    align-items: center;
  }
  .articleM,
  .articleM div {
    background-color: #ede8de;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 16px;
  }
  .articleM {
    border-radius: 16px;
    width: 50%;
  }
  .articleM a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .articleM img {
    width: 100%;
    border-radius: 16px 16px 0 0;
  }

  .articleM p {
    width: 90%;
    text-align: justify;
    font-size: 20px;
  }
  .articleM button {
    background-color: #455a64;
    width: 90%;
    margin-bottom: 1rem;
  }
  .articleM h2 {
    margin-block: 0;
    margin-top: 0.75rem;
    font-size: 36px;
  }
  .articleS {
    background-color: #ede8de;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 25%;
  }
  .articleS img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .articleS div:first-child {
    object-fit: cover;
    width: 45%;
  }
  .articleS p {
    font-size: 20px;
  }
  .articleS h3 {
    font-size: 30px;
  }
  .articleS h3,
  .articleS p,
  .articleS button {
    margin: 0;
  }
  .articleS button {
    background-color: #455a64;
    padding: 0.5rem;
    font-size: 18px;
  }
  .artSright {
    width: 100%;
    padding-inline: 1rem;
  }
  .artSright div {
    display: flex;
    justify-content: right;
    align-items: center;
  }
  .articles {
    display: flex;
    flex-direction: column;
    gap: auto;
    margin-top: 0;
    width: 50%;
    justify-content: space-between;
  }
  footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #ede8de;
    text-align: left;
    margin-top: 2rem;
    font-size: 20px;
  }
  .footer {
    width: 90%;
    display: flex;
    justify-content: center;
    padding-block: 2rem;
    gap: 7rem;
  }
  footer p {
    font-size: 20px;
  }
  footer img {
    object-fit: contain;
  }
  footer .logoFooter {
    width: auto;
  }
  footer .logoFooter {
    max-width: 30%;
  }
  .logoFooterContainer {
    display: flex;
    gap: 1.5rem;
  }
  .logoFooterContainer p {
    text-align: left;
    margin: 0;
  }
  .footerLogoSocials {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: left;
    width: 30%;
  }
  .footerLogoSocials div:last-child {
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 1rem;
    align-items: left;
  }
  footer nav p {
    margin-block: 0.25rem;
    text-align: left;
    font-weight: 400;
  }
  footer h3 {
    margin-block: 0rem;
    margin-bottom: 1rem;
    text-align: left;
  }
  .adress {
    width: 15%;
    text-align: left;
  }
  .contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .contact h3 {
    padding-left: 6rem;
    width: 100%;
  }
  .contact .phone,
  .contact .mail {
    width: 100%;
  }
  .footer .mail p {
    font-size: 24px;
  }
  .footer .phone p {
    font-size: 40px;
    font-weight: bold;
  }
  .footerNone {
    display: flex;
  }
  .mobileIcons {
    display: none;
  }
  .articleMFull {
    background-color: #ede8de;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    border-top: 120px solid transparent;
    margin: -120px 0 0;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
  }
  .articleMFull .artText {
    background-color: #ede8de;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    border-radius: 16px;
  }
  .articleMFull .artText p {
    overflow-x: scroll;
  }
  .articleMFull .artText p {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
  }
  .articleMFull .artText p::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }
  .articleMFull .dateIg p {
    overflow-x: hidden;
  }
  .artImg {
    width: 60%;
    height: 500px;
    object-fit: cover;
  }
  .artImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .articleMFull {
    border-radius: 16px;
  }
  .articleMFull p {
    width: 90%;
    text-align: justify;
    font-size: 16px;
  }
  .articleMFull button {
    background-color: #455a64;
    width: 90%;
    margin-bottom: 1rem;
  }
  .articleMFull button:hover {
    cursor: pointer;
  }
  .articleMFull h2 {
    margin-block: 0;
    margin-top: 0.75rem;
  }
  .articlesAllFull {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #blogFull {
    margin-top: 8vh;
  }
  .redLine {
    border-bottom: 5px solid red;
  }
  .offerButtons button {
  }
}
@media (max-width: 768px) {
  .footerNone {
    display: none;
  }
  .footer p {
    font-size: 19px;
  }
  .footer h3 {
    font-size: 30px;
  }
  .phone,
  .mail {
    justify-content: center;
    align-items: center;
  }

  footer {
    padding-block: 2rem;
  }
  .mobileIcons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .displayBurger {
    z-index: ;
  }
  .offer {
    padding-inline: 0.75rem;
  }
  #offers {
    width: 100vw;
    overflow-x: hidden;
  }
  .offerSlider {
    width: 200vw;
    overflow-x: hidden;
  }
  .articleMFull {
    border-radius: 6px;
    background-color: #ede8de;
  }

  .articleMFull img {
    border-radius: 6px 6px 0 0;
  }
  .articleMFull .artText {
    justify-content: space-around;
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: column;
  }
  .articleMFull p {
    width: 90%;
    text-align: justify;
    font-size: 16px;
  }
  .articleMFull button {
    background-color: #455a64;
    width: 90%;
    margin-bottom: 1rem;
  }
  .articleMFull button:hover {
    cursor: pointer;
  }
  .articleMFull h2 {
    margin-block: 0;
    margin-top: 0.75rem;
  }
  .articlesAllFull {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #blogFull {
    margin-top: 8vh;
  }
  .dateIg {
    margin-bottom: 0.5rem;
    margin-top: 0;
  }
  .dateIg button {
    font-weight: bold;
  }
}
button:hover {
  cursor: pointer;
}
li:hover {
  cursor: pointer;
}
nav p:hover {
  cursor: pointer;
}
.menu {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: fixed;
  z-index: 4;
  left: 0;
  top: -100vh;
  background-color: rgba(255, 255, 255, 0.8);
  padding-top: 0.75rem;
  transition: 0.5s;
}
.menu ul {
  list-style-type: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 60vh;
  padding-left: 0;
}
.menu ul li {
  font-size: 32px;
  padding-block: 1rem;
}
.menu img {
  height: 9vh;
}
.show {
  top: 0;
}
article {
  width: 100%;
}

.dateIg p,
.dateIg button {
  width: auto;
  margin: 0;
}
.articleMFull button {
  font-size: 16px;
  width: fit-content;
  position: relative;
  z-index: 1;
}
a:visited {
  text-decoration: none;
  color: #1e1e1e;
}
a {
  text-decoration: none;
}
li a {
  color: #1e1e1e;
}
