:root {
  --color-primary: #60c8d5;
  --color-accent: #e96123;
  --color-gold: #fbb03b;
  --color-text: #202628;
  --color-background: #f5f7f7;
  --color-dar-bg: #d7dbdf;
  --shadow-small: 0 8px 24px rgba(20, 35, 40, 0.08);
  --content-width: 1400px;
}

@font-face {
  font-family: "ScriptFont";
  src: url("../fonts/ScriptFont/GoldenHopes.otf");
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  color: var(--color-text);
  background-color: var(--color-background);
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.ScriptFont {
  font-family: "ScriptFont", cursive;
}

.header_section {
  position: relative;
  z-index: 100;
  padding: 10px 0;
}

.header_section .container-fluid {
  padding-inline: clamp(18px, 4vw, 60px);
}

.custom_nav-container {
  z-index: 1000;
  padding: 5px 0;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  margin: 0 4px;
  padding: 9px 18px;
  color: #141a1a;
  text-align: center;
  border-radius: 999px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active .nav-link,
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item:hover .nav-link {
  color: #fff;
  background-color: var(--color-primary);
  transform: translateY(-1px);
}

.custom_nav-container .navbar-toggler {
  border: 0;
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url("../images/menu.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.Hero-container {
  width: min(var(--content-width), 100%);
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.hero_area {
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    url("../images/Bellows.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
}

.Hero-itemLeft {
  width: 100%;
  min-width: 0;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 30;
  overflow: visible;
}

.photo-stack {
  position: relative;
  width: min(72%, 338px);
  aspect-ratio: 2 / 6;
  transform: translateY(10%);
  position: relative;
  z-index: 30;
  isolation: isolate;
  cursor: pointer;
}

.photo-stack__card {
  --stack-x: 0;
  --stack-y: 0;
  --stack-rotate: 0deg;
  position: absolute;
  inset: 0;
  margin: 0;
  padding: clamp(0.55rem, 1vw, 0.9rem);
  background: #fff;
  border-radius: 0.35rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--stack-x), var(--stack-y), 0)
    rotate(var(--stack-rotate))
    scale(0.94);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 450ms ease;
  will-change: transform, opacity;
}

.photo-stack__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.15rem;
}

.photo-stack__card.is-active {
  --stack-rotate: -2deg;
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) rotate(var(--stack-rotate)) scale(1);
}

.photo-stack__card.is-next {
  --stack-x: 14px;
  --stack-y: 10px;
  --stack-rotate: 3deg;
  z-index: 4;
  opacity: 1;
}

.photo-stack__card.is-third {
  --stack-x: -12px;
  --stack-y: 17px;
  --stack-rotate: -5deg;
  z-index: 3;
  opacity: 1;
}

.photo-stack__card.is-fourth {
  --stack-x: 20px;
  --stack-y: 24px;
  --stack-rotate: 6deg;
  z-index: 2;
  opacity: 1;
}

.photo-stack__card.is-fifth {
  --stack-x: -20px;
  --stack-y: 30px;
  --stack-rotate: -7deg;
  z-index: 1;
  opacity: 1;
}

.photo-stack__card.is-leaving {
  z-index: 10;
  opacity: 0;
  transform: translate3d(-115%, -12%, 0) rotate(-18deg) scale(0.9);
}

.photo-stack__empty {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  border: 2px dashed rgba(0, 0, 0, 0.2);
}

.Hero-itemRight {
  min-width: 0;
  display: grid;
  place-items: center;
  text-align: center;
  transform: translateX(-10%);
}

.Hero-itemRight .detail_box {
  width: min(120%, 780px);
}

.hero-logo {
  display: block;
  width: min(120%, 696px);
  max-height: 55vh;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.hero-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--color-accent);
  font-size: 0.816rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.Hero-container h1 {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: clamp(2.304rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  font-weight: 700;
}

.Hero-container h1 .ScriptFont {
  display: block;
  color: var(--color-accent);
  font-size: 1.05em;
  font-weight: 400;
}

.hero-summary {
  max-width: 580px;
  margin: 0 auto 1.5rem;
  color: #424242;
  font-size: clamp(0.96rem, 1.44vw, 1.152rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero-button {
  min-width: 204px;
  padding: 1.02rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-small);
}

.hero-button--primary {
  color: #fff;
  background: var(--color-primary);
}

.hero-button--primary:hover {
  color: #fff;
  background: #45b5c3;
}

.hero-button--secondary {
  color: var(--color-text);
  background: #fff;
  border-color: rgba(32, 38, 40, 0.18);
}

.hero-button--secondary:hover {
  color: var(--color-text);
}

.layout_padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.quality_section {
  position: relative;
  z-index: 1;
  margin-top: -2px;
  color: #ffffff;
  background-image: url("../images/QualityBD.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.quality_section .quality_container {
  position: relative;
}

.quality_section .quality_intro {
  margin-bottom: 1.5rem;
}

.quality_section .quality_intro img {
  display: block;
  width: 100%;
  height: auto;
}

.quality_section .quality_container .box {
  display: block;
}

.quality_section .quality_container .detail-box {
  display: flex;
  align-items: stretch;
  margin-top: 40px;
  padding: 10px 5px !important;
  border-radius: 15px;
}

.quality_section .quality_container .detail-box .img-box {
  width: 94px;
  min-height: 100%;
  height: auto;
  margin-right: 15px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 0 0 94px;
  max-width: 94px;
  padding: 0;
}

.quality_section .quality_container .detail-box .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 8px 5px;
  object-fit: contain;
}

.quality_section .quality_container .detail-box .text-box {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quality_section .quality_container .detail-box .text-box h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.quality_section .quality_container .detail-box .text-box p {
  width: 100%;
  margin: 0;
}

.events-section {
  padding: clamp(4rem, 8vw, 7.5rem) 1.25rem;
}

.events-container {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.events-heading {
  text-align: center;
}

.events-heading h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(340px, 480px));
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.event-card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  overflow: hidden;
  justify-self: center;
}

.event-card__image-link {
  display: block;
}

.event-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 5px solid var(--color-text);
  object-fit: cover;
  transition: border-color 180ms ease;
}

.event-card:hover .event-card__image,
.event-card:focus-within .event-card__image {
  border-color: rgb(96 200 213 / 75%);
}

.event-card__content {
  padding: 1rem 1.25rem 1.5rem;
}

.event-card__date {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.event-card__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  transition: color 180ms ease;
  color: var(--color-text);
}

.event-card__content p:last-child {
  margin: 0;
}

.event-card:hover .event-card__date,
.event-card:hover .event-card__title,
.event-card:focus-within .event-card__date,
.event-card:focus-within .event-card__title {
  color: var(--color-primary);
}

.events-actions {
  margin-top: 2.25rem;
  text-align: center;
}

.event-card__image-link:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

.testimonials {
  --testimonials-accent: var(--color-primary, #60c8d5);
  --testimonials-text: var(--color-text, #202628);
  --testimonials-surface: transparent;
  --testimonials-width: 700px;
  position: relative;
  padding: clamp(4rem, 8vw, 7.5rem) 1.25rem;
  color: var(--testimonials-text);
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(65%, 920px);
  height: 1px;
  background: #424242;
  transform: translateX(-50%);
}

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

.testimonials__inner {
  width: min(100%, var(--testimonials-width));
  margin-inline: auto;
}

.testimonials__heading {
  margin-bottom: 2.75rem;
  text-align: center;
}

.testimonials__heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.testimonials__heading p {
  margin: 0.5rem 0 0;
}

.testimonials-carousel {
  position: relative;
  padding-bottom: 1.75rem;
}

.testimonials-carousel__viewport {
  min-height: clamp(430px, 62vw, 570px);
  overflow: hidden;
  border: 1px solid #202628;
  background: var(--testimonials-surface);
  clip-path: polygon(
    0 15%, 7% 8%, 15% 0,
    85% 0, 93% 8%, 100% 15%,
    100% 85%, 93% 92%, 85% 100%,
    15% 100%, 7% 92%, 0 85%
  );
}

.testimonial-card {
  min-height: inherit;
  padding: clamp(2rem, 6vw, 3rem);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.25rem;
  text-align: center;
}

.testimonial-card[hidden] {
  display: none;
}

.testimonial-card__photo {
  width: clamp(180px, 33vw, 338px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
}

.testimonial-card__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.testimonial-card__content h3 {
  position: relative;
  margin: 0 0 1.25rem;
  padding-bottom: 0.7rem;
  color: var(--testimonials-accent);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.testimonial-card__content h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 125px;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
}

.testimonial-card blockquote,
.testimonial-card blockquote p {
  margin: 0;
}

.testimonial-card blockquote footer {
  margin-top: 0.6rem;
  font-weight: 600;
}

.testimonial-card__quote {
  display: block;
  width: 34px;
  margin: 1rem auto 0;
}

.testimonials-carousel__button {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: var(--testimonials-accent);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.testimonials-carousel__button--previous {
  left: 8%;
  background-image: url("../images/prev.png");
}

.testimonials-carousel__button--next {
  right: 8%;
  background-image: url("../images/next.png");
}

.testimonials-carousel__button:hover {
  background-color: #252525;
  transform: translateY(-2px);
}

.testimonials-carousel__button:focus-visible {
  outline: 3px solid var(--color-gold, #fbb03b);
  outline-offset: 3px;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
  background-image: url("../images/360Camera.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

.about-container {
  width: min(var(--content-width, 1400px), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
  justify-content: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.about-visual {
  min-width: 0;
  display: grid;
  place-items: center;
}

.about-composite {
  position: relative;
  width: min(100%, 400px);
  aspect-ratio: 1 / 3;
  isolation: isolate;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
  background-size: cover;
  background-position: center;
  color: #f5f7f7;
}

.about-container {
  padding: 0 55px 0 25px;
  width: min(var(--content-width, 1400px), 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.about-content {
  flex: 0 1 620px;
  width: min(100%, 620px);
  max-width: 620px;
}

.about-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--color-accent, #e96123);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-content h2 {
  margin: 0 0 1.25rem;
  color: var(--color-background);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.02;
}

.about-content h2 .ScriptFont {
  color: var(--color-primary, #60c8d5);
  font-size: 1.42em;
  font-weight: 500;
  white-space: nowrap;
}
/*here here*/
.about-content p:not(.about-eyebrow) {
  margin: 0 0 1rem;
  color: var(--color-dar-bg);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.about-visual {
  padding: 10% 200px 0 0;
  flex: 0 0 200px;
  width: 200px;
  min-width: 200px;
  display: grid;
  place-items: center;
}

.about-composite {
  position: relative;
  width: 195px;
  max-width: 100%;
  aspect-ratio: 1 / 3;
  isolation: isolate;
  transform: rotate(10deg);
  transform-origin: center;
  border-radius: 0.35rem;
  box-shadow: 0 18px 45px rgba(0,0,0,.18),
    0 4px 12px rgba(0,0,0,.12);
}

.about-composite__camera {
  position: absolute;
  z-index: 1;
  left: 6.33%;
  top: 67.11%;
  width: 87.34%;
  height: 23.11%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-composite__overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.showSMALL {
  display: none;
}

.contact_section {
  background-image: url("../images/cameraBG.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  color: #424242;
  overflow-x: hidden;
}

.contact_section h1 {
  margin-top: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #60c8d5;
}

.contact_section h2 {
  margin-bottom: 65px;
  font-weight: bold;
}

.contact_section form {
  padding-right: 35px;
}

.contact_section input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  padding-right: 15px;
  background-color: #ffffff;
  outline: none;
  color: #868686;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

input[type="date"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  padding-right: 15px;
  background-color: #ffffff;
  outline: none;
  color: #868686;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact_section .ri-arrow-down-s-line {
  color: #868686;
}

.custom-dropdown button {
  width: 100%;
  text-align: left;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  padding-right: 15px;
  background-color: #ffffff;
  outline: none;
  color: #868686;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 5px 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-dropdown button i {
  font-size: 15px;
  padding-right: 15px;
}

.custom-dropdown button:hover i {
  color: #60c8d5;
}

.Custom-menu {
  position: absolute;
  top: 53px;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border: 1px solid #ccc;
  background: white;
  z-index: 10;
}

.Custom-menu.hidden {
  display: none;
}

.dropdown-item {
  padding: 10px;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}

.clarify {
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 100;
}

.contact_section input::placeholder,
.contact_section textarea::placeholder {
  color: #868686;
}

.contact_section textarea.message-box {
  height: 120px;
  width: 100%;
  border-radius: 5px;
  border: solid 1px #ccc;
  padding: 10px;
  color: #101010;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact_section .btn-submit {
  width: auto;
  min-width: 204px;
  height: auto;
  margin: 15px auto 0;
  padding: 1.02rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-primary, #60c8d5);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.contact_section .btn-submit:hover {
  color: #ffffff;
  background: #45b5c3;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-small, 0 8px 24px rgba(20, 35, 40, 0.08));
}

.contact_section .btn-submit:active {
  transform: translateY(0);
}

.contact_section .btn-submit:focus-visible {
  outline: 3px solid var(--color-gold, #fbb03b);
  outline-offset: 3px;
}

.contact_section .img-box {
  position: relative;
}

.contact_section .img-box img {
  width: 100%;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 80%;
  margin: 0px 0 0 25px;
}

.custom-dropdown {
  position: relative;
  user-select: none;
}

.dropdown-item {
  padding: 10px 12px;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}

.HoursContainer,
.GuestContainer {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 1.1rem;
}

.HoursContainer input,
.GuestContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radiomark {
  position: absolute;
  top: 0;
  left: 5px;
  height: 25px;
  width: 25px;
  background-color: #eeeeee;
  border-radius: 50%;
  border: solid 1px #aaa;
  box-shadow: inset 1px 1px 2px 0px rgba(50, 50, 50, .2 );
}

.HoursContainer:hover input ~ .radiomark,
.GuestContainer:hover input ~ .radiomark {
  background-color: #ccc;
}

.HoursContainer input:checked ~ .radiomark,
.GuestContainer  input:checked ~ .radiomark {
  background-color: #60c8d5;
}

.radiomark:after {
  content: "";
  position: absolute;
  display: none;
}

.HoursContainer input:checked ~ .radiomark:after,
.GuestContainer input:checked ~ .radiomark:after {
  display: block;
}

.HoursContainer .radiomark:after,
.GuestContainer .radiomark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.AddOncontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1.1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.AddOncontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border: solid 1px #aaa;
  box-shadow: inset 1px 1px 2px 0px rgba(50, 50, 50, .3 );
}

.AddOncontainer:hover input ~ .checkmark {
  background-color: #ccc;
}

.AddOncontainer input:checked ~ .checkmark {
  background-color: rgba(96,200,213,.4);
}

.checkmark:after {
  content: "✓";
  position: absolute;
  display: none;
  font-size: 2.1rem;
  color: #60c8d5;
}

.AddOncontainer input:checked ~ .checkmark:after {
  display: block;
}

.AddOncontainer .checkmark:after {
  left: 1px;
  top: -20px;
  width: 5px;
  height: 25px;
}

.clarify {
  font-size: 1rem;
  font-style: italic;
  font-weight: 100;
}

/* =========================================================
   Site footer
   ========================================================= */

.site-footer {
  color: #f5f7f7;
  border-top: 5px solid var(--color-primary);
    background:
    linear-gradient(135deg, rgba(96, 200, 213, .14), rgba(233, 97, 35, .12)),
    #202628;
  border-top: 6px solid var(--color-primary, #60c8d5);
  box-shadow: 0 -10px 30px rgba(20, 35, 40, .12);
}

.site-footer__inner {
  width: min(var(--content-width), 100%);
  margin-inline: auto;
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem) 2rem;
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(320px, 1.35fr) minmax(220px, .9fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.site-footer__heading {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.25;
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links li + li {
  margin-top: .45rem;
}

.site-footer__links a,
.site-footer__contact-link,
.site-footer__top-link {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}

.site-footer__links a:hover,
.site-footer__contact-link:hover,
.site-footer__top-link:hover {
  color: var(--color-primary);
}

.site-footer__rule {
  display: block;
  width: 128px;
  max-width: 100%;
  height: 2px;
  margin: 1.2rem 0;
  background: linear-gradient(90deg, var(--color-primary, #60c8d5), var(--color-accent, #e96123));
}

.site-footer__feature-link {
  display: inline-block;
  margin-top: .35rem;
  color: #fff;
  font-family: "ScriptFont", cursive;
  font-size: 1.35rem;
  text-decoration: none;
}

.site-footer__feature-link strong {
  margin-left: .25rem;
  font-family: "Raleway", sans-serif;
  font-size: .72em;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer__brand {
  text-align: center;
}

.site-footer__logo-link {
  display: inline-block;
}

.site-footer__logo {
  display: block;
  width: min(100%, 290px);
  max-height: 150px;
  margin: 0 auto .45rem;
  object-fit: contain;
}

.site-footer__tagline {
  margin: 0 0 .7rem;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
}

.site-footer__tagline .ScriptFont {
  position: relative;
  top: 10px;
  display: inline-block;
  margin-left: .25rem;
  color: var(--color-primary);
  font-size: 2em;
  font-weight: 400;
  line-height: 1;
}

.site-footer__location,
.site-footer__credit,
.site-footer__copyright {
  margin: 0;
  color: var(--color-dar-bg);
  font-size: .72rem;
  letter-spacing: .1em;
  line-height: 1.7;
}

.site-footer__location {
  text-transform: uppercase;
}

.site-footer__credit {
  margin-top: 1rem;
}

.site-footer__copyright {
  margin-top: 1.7rem;
  text-align: center;
}

.site-footer__connect {
  text-align: center;
}

.site-footer__connect .site-footer__heading {
  max-width: 280px;
  margin-inline: auto;
}

.site-footer__connect .site-footer__rule {
  margin-inline: auto;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
}

.site-footer__socials a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--color-dar-bg);
  transition: color .2s ease, transform .2s ease;
}

.site-footer__socials a:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.site-footer__socials svg,
.site-footer__top-link svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.site-footer__contact-link {
  display: inline-block;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
}

.site-footer__top-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}

.site-footer__top-link svg {
  width: 18px;
  height: 18px;
}

.site-footer a:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
}

.gallery{
  padding: 15% 25px;
}
