:root {
  --font: "EB Garamond", serif;
  --font-title: "Playfair Display", serif;
  --font-sans-serif: "Manrope", sans-serif;
  --black: #1c1f33;
  --black--acc: #222;
  --gray: #eee;
  --gray-1: #ededed;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

body {
  font-size: 1.1rem;
  background: var(--preview-bg);
  color: var(--black);
  /* background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/567707/paper_fibers.png)
    repeat; */
  background: url("./images/5308.jpg");
  /* background-size: contain; */

  padding: 2rem 0;
  line-height: 1.3;
  /* text-align: justify; */
  column-break-inside: avoid;
}

body {
  /* background-color: #ebebeb; */
  overflow-y: scroll !important;
  overflow-x: hidden !important;
}

::-webkit-scrollbar {
  block-size: 10px;
  inline-size: 7px;
}

::-webkit-scrollbar-track {
  background: #ecebeb;
}

::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: #b8751e;
}

a {
  text-decoration: none;
  display: block;
  color: var(--black);
}
a:hover,
a:focus,
a:active,
a:visited {
  color: var(--black--acc);
}

.main__wrapper {
  max-width: 90%;
  margin: auto;
}

h1 {
  font: bold 30px/1 "Playfair Display" !important;
  text-align: center;
  font-weight: 800 !important;
}
@media (min-width: 700px) {
  h1 {
    font: bold 34px/1 "Playfair Display" !important;
  }
  .main__wrapper {
    max-width: 80%;
    margin: auto;
  }
}

h3 {
  font: italic 20px var(--font-title) !important;
  margin-bottom: 1rem;
}

h4 {
  font: 20px/1.2 var(--font-title) !important;
}

h5 {
  font: 700 20px/1 var(--font) !important;
  transition: 0.3s ease;
}

p {
  line-height: 1.3;
}
p a {
  display: inline;
}

em {
  font-style: italic;
}

.title--large {
  font-family: var(--font-title);
  font-size: 32px;
  font-style: italic;
  text-align: left;
  margin-bottom: 0.8rem;
}
@media (min-width: 700px) {
  .title--large {
    font-size: 35px;
    margin: 0;
  }
}

@media (min-width: 700px) {
  main {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 23%;
    grid-template-rows: repeat(5, auto);
    grid-gap: 1.2rem;
  }
}
main h1,
main aside {
  grid-column: 1/-1;
}
@media (min-width: 700px) {
  main .main-title {
    grid-column: 1/-1;
  }
}
@media (min-width: 1024px) {
  main .main-title {
    grid-column: 1/-2;
  }
}
@media (min-width: 700px) {
  main .terrarium {
    grid-column: 1 / span 4;
  }
}
@media (min-width: 1024px) {
  main .terrarium {
    grid-column: 1 / span 4;
  }
}
@media (min-width: 700px) {
  main .main-text {
    grid-column: span 5;
  }
}
@media (min-width: 1024px) {
  main .main-text {
    grid-column: span 2;
  }
}
@media (max-width: 699px) {
  main .terrarium {
    padding-right: 1.2rem !important;
  }
  main .sidebar {
    padding-right: 1.2rem;
  }
}
@media (min-width: 700px) {
  main .sidebar {
    grid-column: 1/-1;
  }
}
@media (min-width: 1024px) {
  main .sidebar {
    grid-row: 2/6;
    grid-column: 5/6;
  }
}
main .social {
  grid-column: 1/-2;
  grid-row: 8/9;
}
main .article-bar-1 {
  grid-row: span 4;
}
@media (min-width: 700px) {
  main .hogwarts {
    grid-row: span 3;
  }
}
@media (min-width: 1024px) {
  main .hogwarts {
    grid-column: 3;
    grid-row: span 2;
  }
}
@media (min-width: 700px) {
  main .menu {
    grid-column: 1/-1;
    grid-row: 13;
  }
}
@media (min-width: 1024px) {
  main .menu {
    grid-row: 7/8;
    grid-column: 2/4;
  }
}
@media (min-width: 700px) and (max-width: 1024px) {
  main .toggles {
    grid-column: 3/6;
    grid-row: 10/13;
  }
}
@media (min-width: 700px) and (max-width: 1024px) {
  main .plan {
    grid-column: span 4;
  }
}
@media (min-width: 700px) and (max-width: 1024px) {
  main .style,
  main .magazine,
  main .pasta {
    grid-column: 1/3;
  }
}
main .cssgrid-collection {
  grid-column: 1/-1;
  grid-row: 9;
}

.span--2 {
  grid-column: span 2;
}

.long--2 {
  grid-row: span 2;
}

.long--4 {
  grid-row: span 4;
}

.with-border {
  border-top: 1px solid;
  padding-top: 0.6rem;
}

figcaption {
  font-style: italic;
  font-size: 90%;
}

aside {
  text-align: center;
  padding: 3px 0;
  border: solid var(--black);
  border-width: 2px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 1.5rem 0;
}
@media (min-width: 700px) {
  aside {
    margin: 0;
  }
}
aside > div {
  display: flex;
  align-items: center;
  border: solid var(--black);
  border-width: 1px 0;
}
aside > div > div {
  flex: 1;
  padding: 8px;
}

@media (min-width: 700px) {
  .multi-column {
    column-count: 2;
    column-gap: 1.3rem;
    margin-top: 0.75rem;
  }
  .multi-column-3 {
    column-count: 3;
  }
}
.sidebar {
  margin-top: 3rem;
}
@media (min-width: 700px) and (max-width: 1024px) {
  .sidebar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0;
  }
  .sidebar h3 {
    width: 100%;
    text-align: center;
  }
  .sidebar > a {
    flex: 0 1 48%;
    margin: 1.5rem 0;
    padding: 0;
  }
  .sidebar .slack-ui {
    border-top: 0;
  }
  .sidebar .pie {
    order: 3;
  }
}
@media (min-width: 1024px) {
  .sidebar {
    display: block;
    border-left: 1px solid;
    padding-left: 1.2rem;
    margin: 0;
  }
}

.main-text.multi-column {
  margin: 0;
}
.main-text.multi-column p {
  margin-bottom: 0.8rem;
}

.hogwarts {
  text-align: center;
  height: 100%;
  border: 2px solid transparent;
  outline: 3px solid var(--black);
  box-shadow: inset 0 0 0 1px var(--black);
  width: calc(100% - 4px);
  margin: 1.5rem auto;
  overflow: hidden;
}
@media (min-width: 700px) {
  .hogwarts {
    margin: 0;
  }
}
.hogwarts__title {
  font: 800 24px/1 var(--font-sans-serif);
  text-transform: uppercase;
  background: var(--black);
  color: var(--gray);
  padding: 0.8rem 0.8rem 0.9rem;
  transition: 0.2s ease;
}
@media (min-width: 700px) and (max-width: 1024px) {
  .hogwarts__title {
    font: 800 21px/1.2 var(--font-sans-serif);
    padding: 1.5rem 0.5rem;
  }
}
.hogwarts__image {
  height: 100%;
  position: relative;
}
.hogwarts__image img {
  transform: rotate(60deg);
  height: 150%;
  position: absolute;
  border: 0;
  width: 250%;
  left: -70%;
  bottom: -35%;
}
@media (min-width: 700px) and (max-width: 1024px) {
  .hogwarts__image img {
    bottom: -20%;
  }
}
.hogwarts__image span {
  font-style: italic;
  max-width: 110px;
  position: absolute;
  top: 7%;
  left: 18%;
  font-size: 22px;
  line-height: 0.9;
  transform: rotate(-5deg);
}

.terrarium {
  margin: 1.5rem 0;
}
@media (min-width: 700px) {
  .terrarium {
    margin: 0 0 1.5rem;
  }
}
@media (max-width: 700px) {
  body {
    padding: 0 !important;
  }
}
.terrarium figure {
  height: 100%;
}
.terrarium img {
  margin-top: 20px;
  width: 100%;
  object-fit: cover;
  object-position: right;
}

.pie {
  line-height: 0;
  color: var(--gray);
  text-align: left;
}
.pie__image {
  margin: 0;
  border: 1px solid black;
  /* max-height: 15rem; */
  width: 100%;
  object-fit: cover;
}
.pie__subtitle {
  background: #000000;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.4rem 1rem;
  font: 14px var(--font-sans-serif);
  color: var(--gray);
}
.pie__content {
  background: #000;
  padding: 1rem 1rem 1.2rem;
  color: var(--gray);
  font-size: 13px !important;
}

.sidebar-item {
  margin: 2rem 0;
  padding: 2rem 0 0;
}
.sidebar-item h5 {
  text-align: center;
  width: 100%;
  padding: 0.5rem;
  margin: auto;
}
.sidebar-item p {
  margin-top: 1rem;
}
.sidebar-item:hover h5 {
  transition: 0.3s ease;
  background: var(--black);
  color: #fff;
}

.item-with-image {
  margin-top: 1.5rem;
}
.item-with-image h4 {
  font-size: 24px;
  text-align: left;
  margin-bottom: 0.5rem;
  transition: 0.2s ease;
}
@media (min-width: 700px) {
  .item-with-image {
    margin: 0;
  }
}
.item-with-image:not(.cssgrid-collection):hover h4 {
  color: white !important;
  background: var(--black);
}
.magazine {
  border: 1px solid;
  border-width: 1px 0;
  padding-bottom: 1rem;
}

.menu {
  margin: 1.5rem 0;
}
@media (min-width: 1024px) {
  .menu {
    margin: 0;
  }
}
.menu figure {
  height: 100%;
}
.menu img {
  height: 90%;
  object-fit: cover;
  object-position: left;
}

.cssgrid-collection {
  display: flex;
  align-content: stretch;
  border-top: 1px solid;
  padding-top: 1rem;
}
.cssgrid-collection h4 {
  margin: 0 0 0.8rem;
}
.cssgrid-collection__image {
  flex: 0 0 32%;
  margin-right: 1.5rem;
}
.cssgrid-collection img {
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.cssgrid-collection p a {
  border-bottom: 1px dashed;
}
.cssgrid-collection p a:hover {
  border-bottom: 1px solid;
}

@media (min-width: 1024px) {
  .captcha {
    margin-top: 0;
  }
}

.workout {
  border: 2px solid transparent;
  outline: 3px solid var(--black);
  box-shadow: inset 0 0 0 1px var(--black);
  width: calc(100% - 4px);
  margin: 3rem auto 0.2rem;
}
.workout__image {
  padding: 2px;
}
.workout__image img {
  height: 16rem;
  object-fit: cover;
  object-position: left;
  border: none;
}
@media (min-width: 1024px) {
  .workout__image img {
    height: 25rem;
  }
}
.workout__blurb {
  font: 22px/1.1 var(--font-sans-serif);
  text-align: center;
  padding: 0.5rem;
  color: var(--black);
  margin: -1rem 0.5rem 0.3rem;
}
.workout__title {
  font: 18px/1.1 var(--font-sans-serif);
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  background: var(--black);
  color: var(--gray);
  transition: 0.2s ease;
}

.social {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: max-content auto;
  color: var(--gray);
  text-align: left;
}
.social__image {
  margin: 0;
  border: 0;
  grid-row: span 2;
  height: 100%;
  object-fit: cover;
}
.social__subtitle {
  background: #999;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.4rem 1rem;
  color: var(--gray);
  font: 14px var(--font-sans-serif);
}
.social__content {
  background: #666;
  padding: 1rem;
  color: var(--gray);
  grid-column: 2;
}

.plan {
  padding-bottom: 1rem;
}
@media (min-width: 700px) and (max-width: 1024px) {
  .plan {
    grid-column: span 3;
    margin: 0 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .plan {
    border-bottom: 1px solid;
  }
}

.pie:hover img,
.social:hover img,
.menu:hover img,
.terrarium:hover img,
.plan:hover img,
.toggles:hover img,
.workout:hover img,
.cssgrid-collection__image:hover img {
  filter: grayscale(0);
}

.workout:hover .workout__title {
  background: transparent;
  color: var(--black);
}

.hogwarts:hover .hogwarts__title {
  background: transparent;
  color: var(--black);
}

.video-gallery {
  margin: 10px 10px;
  border: solid 15px rgb(0, 0, 0);
  text-align: center;
  position: relative;
}

.heading {
  position: relative;
  top: -30px;
}

blockquote {
  background-color: #fff;
  display: inline-block;
  margin: 0;
  padding: 1em;
  position: relative;
}

/* .content1:before {
  background-color: rgb(241 243 243);
  bottom: -10%;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: -10%;
  animation: clockwise 30s infinite linear;
}

.content1:after {
  animation: counter 30s infinite linear;
  background-color: rgb(241 243 243);
  bottom: 10%;
  content: "";
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 10%;
} */

@keyframes clockwise {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes counter {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.rec {
  height: 0px;
  /* padding-left: 15px; */
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}

.rec h4 {
  color: rgb(0, 0, 0);
  font-size: 35px !important;
  text-align: left;
}

.rec .circle {
  border-radius: 50%;
  background: red;
  height: 22px;
  width: 22px;
  margin: 0;
}

.circle::after {
  animation: pulse 1000ms cubic-bezier(0.9, 0.7, 0.5, 0.9) infinite;
}

@keyframes pulse {
  0% {
    opacity: 0;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.4;
  }
}

.circle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: red;
  border-radius: 50%;
  z-index: -1;
}

.videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.video {
  margin: 10px;
}

.video p {
  margin: 0px;
}

/* new slider-section */

.partner-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  /* max-width: 1000px; */
  margin: auto;
  padding: 2rem 1rem;
}

.partner-block {
  width: 130px;
  /* height: 100% !important; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 10px;
  transition: transform 0.3s ease;
}

.partner-block:hover {
  transform: scale(1.05);
}

.partner-block img {
  max-height: 80px; /* increased from 60px */
  max-width: 125px;
  object-fit: contain;
  margin-bottom: 10px;
}

.logo-caption {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-style: italic;
  color: #222;
  border-top: 1px solid #ddd;
  padding-top: 6px;
  line-height: 1.2;
  width: 100%;
  margin-top: auto !important;
}

/* Optional: Slight increase in size on larger screens */
@media (min-width: 1200px) {
  .partner-block {
    width: 170px;
  }

  .partner-block img {
    max-height: 90px;
  }
}

/* new slider-section */

/* Styles for mobile devices */
@media screen and (max-width: 767px) {
  .video-gallery {
    border: none;
  }

  .content1:before {
    display: none !important;
  }
  .content1:after {
    display: none !important;
  }

  .slider-section {
    justify-content: center; /* Align images to the center on mobile */
  }

  #background img {
    height: 95px !important;
  }

  #background figure {
    margin-right: 20px !important;
  }

  div#gallery {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 390px) {
  div#gallery {
    margin-right: 0px !important;
  }

  #background img {
    height: 175px !important;
  }
}

div#background {
  /* height: 700px; */
  width: 100%;
  padding-top: 50px;
}

div#gallery {
  max-width: 1200px;
  margin: auto;
  margin-right: 100px;
}

#background img {
  height: 150px;
  margin: 0px;
}

#background figure {
  float: right;
  position: relative;
  background-color: white;
  text-align: center;
  font-size: 15px;
  padding: 10px;
  margin: 10px;
  box-shadow: 1px 2px 3px black;
}

figure.pic1 {
  -webkit-transform: rotate(-10deg);
  z-index: 1;
}

figure.pic2 {
  -webkit-transform: rotate(15deg);
  z-index: 2;
}

figure.pic3 {
  -webkit-transform: rotate(-15deg);
  z-index: 1;
}

figure.pic4 {
  -webkit-transform: rotate(5deg);
  z-index: 1;
}

figure.pic5 {
  -webkit-transform: rotate(5deg);
  z-index: 1;
}

figure.pic6 {
  -webkit-transform: rotate(-8deg);
  z-index: 1;
}

figure.pic7 {
  -webkit-transform: rotate(2deg);
  z-index: 1;
}

figure.pic8 {
  -webkit-transform: rotate(-13deg);
  z-index: 1;
}

figure.pic9 {
  -webkit-transform: rotate(-7deg);
  z-index: 1;
}

figure.pic10 {
  -webkit-transform: rotate(2deg);
  z-index: 1;
}

figure.pic11 {
  -webkit-transform: rotate(-3deg);
  z-index: 1;
}

#background figure:hover {
  /* box-shadow: 5px 10px 10px black; */
  -webkit-transform: scale(1.1, 1.1);
  z-index: 20;
  transition: all 0.3s ease-out; /* Adjust the duration and timing function as needed */
}

.content2::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0px 0px;
  border-color: #fff transparent transparent #fff;
  position: absolute;
  right: -23px;
  top: 0px;
}

.tri {
  /* float: right; */
  width: 50px;
  height: 50px;
  right: -12px;
  background: #eeeeee;
  top: 68px;
  position: absolute;
  transform: rotate(48deg);
  border-radius: 9px;
}

.grid1 {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(3rem, 1fr));
  align-items: start;
}
@media (max-width: 60em) {
  .grid1 {
    grid-gap: 1rem;
  }
}
.grid__item {
  background-color: #fff;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.2s;
}
.grid__item:hover {
  transform: translateY(-0.5%);
  box-shadow: 0 4rem 8rem rgba(0, 0, 0, 0.2);
}

.card__img {
  display: block;
  width: 100%;
  height: 14rem;
  object-fit: cover;
}
.card__content {
  padding: 1rem;
}
.card__header {
  font-size: 1.5rem;
  font-weight: 500;
  color: #0d0d0d;
  margin-bottom: 0.5rem;
}
.card__text {
  letter-spacing: 0.1rem;
  line-height: 1.7;
  color: #3d3d3d;
  margin-bottom: 1.5rem;
}
.card__btn {
  display: block;
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  text-align: center;
  border: none;
  border-radius: 0.4rem;
  transition: 0.2s;
  cursor: pointer;
}

.content {
  font-size: 0;
  line-height: 0;
  word-spacing: -0.31em;
  /* display: inline-block; */
  /* margin: 30px 2% 0 2%; */
}
.collumns {
}

.newspaper-layout {
  column-count: 5;
  column-gap: 30px;
  column-rule: 1px solid #2f2f2f;
}

@media (max-width: 1600px) {
  .newspaper-layout {
    column-count: 4;
  }
}

@media (max-width: 1200px) {
  .newspaper-layout {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .newspaper-layout {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .newspaper-layout {
    column-count: 1;
  }
}

.collumn-new {
  font-size: 14px;
  line-height: 20px;
  /* width: 16.6%; */
  /* display: inline-block; */
  padding: 0 1% 0 1%;
  vertical-align: top;
  margin-bottom: 10px;
  transition: all 0.7s;
}
.collumn {
  font-size: 14px;
  line-height: 20px;
  width: 16.6%;
  display: inline-block;
  padding: 0 1% 0 1%;
  vertical-align: top;
  margin-bottom: 50px;
  transition: all 0.7s;
}
.collumn + .collumn {
  border-left: 1px solid #2f2f2f;
}
.collumn .headline {
  text-align: center;
  line-height: normal;
  font-family: "Playfair Display", serif;
  display: block;
  margin: 0 auto;
}
.collumn .headline.hl1 {
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  padding: 10px 0 10px 0;
}

.headline.hl2 {
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  box-sizing: border-box;
  padding: 10px 0 10px 0;
}

.collumn .headline.hl2:before {
  border-top: 1px solid #2f2f2f;
  content: "";
  width: 100px;
  height: 7px;
  display: block;
  margin: 0 auto;
}
.collumn .headline.hl2:after {
  border-bottom: 1px solid #2f2f2f;
  content: "";
  width: 100px;
  height: 13px;
  display: block;
  margin: 0 auto;
}

.headline.hl3 {
  font-weight: 600;
  /* font-style: italic; */
  font-size: 24px;
  box-sizing: border-box;
  padding: 10px 0 10px 0;
  background-color: black;
  color: white;
}
.headline.hl3-new {
  font-weight: 600;
  /* font-style: italic; */
  font-size: 20px;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  padding: 10px 5px 10px 5px;
  background-color: black;
  color: white;
  width: 100%;
}
.headline.h3 {
  font-weight: 400;
  font-style: italic;
  font-size: 30px;
  box-sizing: border-box;
  padding: 10px 0 10px 0;
}
.collumn .headline.hl4 {
  font-weight: 700;
  font-size: 12px;
  box-sizing: border-box;
  padding: 10px 0 10px 0;
}
.collumn .headline.hl4:before {
  border-top: 1px solid #2f2f2f;
  content: "";
  width: 100px;
  height: 7px;
  display: block;
  margin: 0 auto;
}
/* .collumn .headline.hl4:after {
  border-bottom: 1px solid #2f2f2f;
  content: "";
  width: 100px;
  height: 10px;
  display: block;
  margin: 0 auto;
} */

.collumn .headline.hl5 {
  font-weight: 400;
  font-size: 35px;
  text-transform: uppercase;
  font-style: italic;
  box-sizing: border-box;
  padding: 10px 0 10px 0;
}
.collumn .headline.hl6 {
  font-weight: 400;
  font-size: 18px;
  box-sizing: border-box;
  padding: 10px 0 10px 0;
}
.collumn .headline.hl6-new {
  font-weight: 400;
  font-size: 16px;
  box-sizing: border-box;
  padding: 10px 0 10px 0;
}
.collumn .headline.hl6:before {
  border-top: 1px solid #2f2f2f;
  content: "";
  width: 100px;
  height: 7px;
  display: block;
  margin: 0 auto;
}
.collumn .headline.hl6:after {
  border-bottom: 1px solid #2f2f2f;
  content: "";
  width: 100px;
  height: 10px;
  display: block;
  margin: 0 auto;
}
.collumn .headline.hl6-new:before {
  border-top: 1px solid #2f2f2f;
  content: "";
  width: 100px;
  height: 7px;
  display: block;
  margin: 0 auto;
}
.collumn .headline.hl6-new:after {
  border-bottom: 1px solid #2f2f2f;
  content: "";
  width: 100px;
  height: 10px;
  display: block;
  margin: 0 auto;
}
.collumn .headline.hl7 {
  font-weight: 700;
  font-size: 12px;
  box-sizing: border-box;
  display: block;
  padding: 10px 0 10px 0;
}
.collumn .headline.hl8 {
  font-weight: 700;
  font-size: 12px;
  box-sizing: border-box;
  padding: 10px 0 10px 0;
}
.collumn .headline.hl9 {
  font-weight: 700;
  font-size: 12px;
  box-sizing: border-box;
  padding: 10px 0 10px 0;
}
.collumn .headline.hl10 {
  font-weight: 700;
  font-size: 12px;
  box-sizing: border-box;
  padding: 10px 0 10px 0;
}
.collumn .citation {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 30px;
  /*font-style: italic;*/
  text-align: center;
  font-weight: 400;
  display: block;
  /* margin: 40px 0 40px 0; */
  font-feature-settings: "liga", "dlig";
}
.collumn .citation:before {
  border-top: 1px solid #2f2f2f;
  content: "";
  width: 100px;
  height: 16px;
  display: block;
  margin: 0 auto;
}
.collumn .citation:after {
  /* border-bottom: 1px solid #2f2f2f; */
  content: "";
  width: 100px;
  height: 16px;
  display: block;
  margin: 0 auto;
}
.collumn .figure {
  margin: 0 0 20px;
}
.collumn .figcaption {
  font-style: italic;
  font-size: 12px;
}
.media {
  /* -webkit-filter: sepia(80%) contrast(1) opacity(0.8);
  filter: sepia(80%) grayscale(1) contrast(1) opacity(0.8);
  mix-blend-mode: multiply; */
  width: 100%;
}
.media-new {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/*________________________________________________________________________________________________________________________________*/
/*MEDIAQUERIES*/
@media only all and (max-width: 1300px) {
  .weatherforcastbox {
    display: none;
  }
}
@media only all and (max-width: 1200px) {
  .collumn {
    width: 31%;
  }
}
@media only all and (max-width: 900px) {
  .collumn {
    width: 47%;
  }
}
@media only all and (max-width: 600px) {
  .collumn {
    width: 100%;
  }
  .collumn + .collumn {
    border-left: none;
    border-bottom: 1px solid #2f2f2f;
  }
  header {
    max-width: 320px;
    font-size: 60px;
    line-height: 54px;
    overflow: hidden;
  }
}

/* pr  */

.poster {
  /* aspect-ratio: 4/5; */
  width: 100%;
  background: white;
  margin: auto;
  position: relative;
  overflow: hidden;
  display: flex;
}
.poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.1;
  background: #cdccc4;
}
.poster--content {
  padding: 2.5%;
  display: flex;
  flex-direction: column;
}
.poster--image {
  width: 100%;
  position: relative;
  z-index: 0;
}
.poster--image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 10/6;
  position: relative;
}
.poster--image::before {
  content: "";
  position: absolute;
  inset: 0;
  bottom: 2px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
  mix-blend-mode: darken;
  background: black;
}
.poster--image h1 {
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 3.5rem !important;
  font-weight: 1000;
  font-style: normal;
  color: white;
}
.poster--body {
  margin-top: 10px;
  font-size: 0.6rem;
  -moz-column-count: 3;
  column-count: 3;
  flex-grow: 1;
  flex-shrink: 0;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  -moz-column-fill: balance;
  column-fill: balance;
  font-weight: 600;
  margin-inline: 20px;
  position: relative;
}
.poster--body p {
  text-indent: 20px;
  line-height: 0.8rem;
  text-align: left;
}
.poster--body p:not(:first-of-type) {
  margin-top: 10px;
}
.poster--body p:last-of-type::after {
  content: "";
  display: inline-block;
  width: 100%;
}
.poster--body .spacer {
  margin-top: 30px;
}
.poster--body .logo {
  position: absolute;
  bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  right: 0px;
}
.poster--body .logo--text {
  font-size: 1rem;
  font-weight: 900;
}
.poster--body .logo--symbol {
  font-size: 2rem;
  font-weight: 800;
}
.poster--footer {
  text-align: left;
  font-size: 0.5rem;
  margin-top: 12px;
  font-weight: 800;
  margin-inline: 8px;
}
.poster--footer::after {
  content: "";
  display: inline-block;
  width: 100%;
}

.bnw {
  /* filter: url(filters.svg#grayscale); Firefox 3.5+ */
  filter: gray; /* IE5+ */
  -webkit-filter: grayscale(1); /* Webkit Nightlies & Chrome Canary */
  -webkit-transition: all 0.8s ease-in-out;
}

.bnw:hover {
  filter: none;
  -webkit-filter: grayscale(0);
}

.gallery {
  width: 100%;
  column-count: 4;
  column-gap: 25px;
  margin: 30px auto;
}

.image-container {
  /* border: 2px solid black; */
  /* outline: 2px solid black; */
  border: 1px solid #000;
  box-shadow: 2px 2px 0 #222;
  padding: 2px;
  display: inline-block;
  margin-bottom: 20px;
  max-width: 95%;
  margin: 10px auto !important;
}

.image-container .gallery-img {
  /* border: 1px solid black; */
  height: auto;
  width: 100%;
  display: block;
  max-width: 100%;
  cursor: pointer;
  transition: all 0.2s;
}

.modal {
  padding-top: 2%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  /* background-color: white; */
  max-width: 60%;
  margin: auto;
  text-align: center;
}

.modal-img {
  width: 100%;
  height: auto;
  max-height: 650px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .gallery {
    column-count: 3;
  }
}

@media (max-width: 800px) {
  .gallery {
    column-count: 2;
  }
  .modal-content {
    max-width: 85%;
  }
}

@media (max-width: 600px) {
  .gallery {
    column-count: 1;
  }

  .modal {
    padding-top: 30%;
  }
}

.panel-content {
  width: 100%;
  column-count: 1;
  column-gap: 25px;
  margin: 30px auto;
}

.golden-highlight {
  /* color: #a445b2; Luxurious purple color */
  font-weight: 700;
  font-size: 30px; /* Slightly larger font size */
  background: linear-gradient(45deg, #d4af37, #ffd700); /* Gold gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Gold gradient text effect */
  font-family: "Playfair Display", serif; /* Elegant font family */
}

/* Image Container Styling */
.image-container1 {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 100%; /* Full width */
  height: 250px; /* Set a fixed height for uniformity */
}

/* Image Styling */
.image-container1 img {
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  object-fit: cover; /* Maintain aspect ratio, cover the container */
  object-position: top;
  border: 2px solid #ddd; /* Light border for definition */
  border-radius: 10px;
}

/* Owl Carousel Custom Styling */
.owl-carousel1 .owl-stage-outer {
  padding: 20px 0;
}

/* Owl Carousel Custom Styling */
.owl-carousel1 .owl-nav {
  position: absolute !important;
  /* top: 50% !important; */
  width: 100% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  justify-content: space-between !important; /* Position buttons at far ends */
  padding: 0 10px !important; /* Adjust padding */
  z-index: 10 !important; /* Ensure buttons are on top */
}

.owl-carousel1 .owl-nav button {
  background: rgb(
    194 194 194 / 90%
  ) !important; /* Light background for contrast */
  border-radius: 50% !important; /* Circular shape */
  border: none !important; /* Remove border */
  padding: 10px !important; /* Consistent padding */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important; /* Softer shadow for depth */
  transition: background 0.3s, transform 0.2s !important; /* Smooth transition */
  cursor: pointer; /* Pointer on hover */
  width: 40px; /* Set a fixed width for buttons */
  height: 40px; /* Set a fixed height for buttons */
  display: flex; /* Center align content */
  justify-content: center; /* Center align content */
  align-items: center; /* Center align content */
}

/* Button Hover Effect */
.owl-carousel1 .owl-nav button:hover {
  background: #5b5b5b !important; /* Highlight background on hover */
  color: #fff !important; /* White color for text on hover */
  transform: scale(1.1); /* Slightly enlarge button */
}

/* Icon Styles */
.owl-carousel1 .owl-nav button span {
  font-size: 20px; /* Font size for arrows/icons */
  color: #000 !important; /* Text color */
}

/* biryani video starts */

.biryani-video-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

/* Keeping your desired width */
.biryani-frame {
  max-width: 380px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #222;
  background: #fff;
  padding: 1rem;
  font-family: "Playfair Display", serif;
  text-align: center;
}

.biryani-video {
  width: 100%;
  height: auto;
  border: 2px solid #000;
}

.video-caption {
  margin-top: 0.75rem;
  font-size: 14px;
  font-style: italic;
  color: #333;
  border-top: 1px solid #000;
  padding-top: 0.5rem;
}

.biryani-divider {
  max-width: 60px;
  border: 1px dashed #aaa;
  opacity: 0.5;
  margin: 0.5rem auto;
}

/* biryani video ends */

/* qoutes start  */
/* Adjusted to match visual flow with narrower video frame */
.newspaper-quote {
  max-width: 420px;
  width: 100%;
  background: #fdfcfb;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 1.2rem 1.2rem 1rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
  position: relative;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quote-text {
  font-size: 1.2rem;
  color: #222;
  margin: 0;
  z-index: 2;
  position: relative;
  line-height: 1.5;
}

.quote-mark {
  font-size: 3.5rem;
  color: #bbb;
  font-family: Georgia, serif;
  position: absolute;
  top: 6px;
  left: 14px;
  z-index: 1;
  pointer-events: none;
  line-height: 1;
}

.quote-mark.right {
  left: auto;
  right: 14px;
  top: auto;
  bottom: 6px;
}

/* qoutes end  */

/* === Editorial Static Newspaper Section === */

.editorial-section {
  /* max-width: 1200px; */
  margin: 4rem auto;
  /* padding: 2rem 1rem; */
  background: #fefefe;
  /* border-top: 3px double #111;
  border-bottom: 3px double #111; */
  font-family: "Playfair Display", serif;
}

.editorial-heading {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  border-bottom: 2px solid #111;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.editorial-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 30px;
}

.editorial-article {
  background: #ffffff;
  border: 1px solid #000;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.8rem;
  box-shadow: 2px 2px 0 #000;
}

.editorial-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid #000;
}

.editorial-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  border-bottom: 1px solid #000;
  padding-bottom: 0.4rem;
  margin: 0;
}

.editorial-paragraph {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  margin: 0;
  color: #1c1f33;
}

/* founders kitchen new style starts here  */
/* Founders' Kitchen – Center Image Newspaper Section */
.newspaper-feature-hero {
  /* max-width: 1200px; */
  /* margin: 3rem auto; */
  padding: 2rem 0px;
  background: #fff;
  font-family: "Playfair Display", serif;
  /* border-top: 3px double #000;
  border-bottom: 3px double #000; */
}

.headline-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.headline-main {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.headline-sub {
  font-style: italic;
  font-size: 1rem;
  color: #333;
  max-width: 600px;
  margin: 0.5rem auto 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.feature-column {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  color: #111;
}

.feature-column h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 1rem 0 0.5rem;
  text-transform: uppercase;
}

.feature-image {
  text-align: center;
}

.feature-image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #333;
  margin-bottom: 0.5rem;
}

.feature-image figcaption {
  font-size: 0.9rem;
  font-style: italic;
  color: #555;
  text-align: center;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-image {
    order: -1;
  }
}
/* founders kitchen new style ends here  */

/* === Grand Finale: Wall of Gratitude === */
/* .finale-wall {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #f7f3ec;
  padding: 4rem 0;
  border-top: 3px double #000;
  border-bottom: 3px double #000;
  font-family: "Playfair Display", serif;
} */

.finale-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 1.5rem;
}

.finale-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.finale-intro {
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  color: #333;
  max-width: 800px;
  margin: 1rem auto 3rem;
}

.finale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.finale-block {
  background: #fff;
  border: 1px solid #222;
  box-shadow: 2px 2px 0 #000;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.finale-block-title {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  /* margin-bottom: 0.75rem; */
  border-bottom: 1px solid #333;
  padding-bottom: 0.25rem;
}

.finale-block-text {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  color: #111;
}

@media (max-width: 768px) {
  .finale-grid {
    grid-template-columns: 1fr;
  }
  .finale-intro {
    margin-bottom: 2rem;
  }
  .finale-title {
    font-size: 1.75rem;
  }
}
