:root {
  --bg: #f7f5f1;
  --dark: #100f17;
  --footer: #1c272b;
  --accent: #c32f41;
  --muted: #77777b;
  --white: #fff;
  --heading-font: "kudryashev-d-contrast-sans", Georgia, serif;
  --menu-font: "kudryashev-d-contrast", "Times New Roman", serif;
  --body-font: "Work Sans", Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--dark);
  font-family: var(--body-font);
  font-weight: 300;
  overflow-x: hidden;
}
a { color: inherit; }

/* Header */
.site-header {
  position: relative;
  z-index: 1000;
  background: #fff;
      padding: 10px;
}

.site-header.inner {
    position: relative;
    z-index: 1000;
    background: #f7f5f1;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.header-inner {
  min-height: 76px;
  padding: 0 55px;
}
.logo-wrap { line-height: 0; }
.site-logo {
  display: block;
  width: 120px;
  height: auto;
}
.main-nav { gap: 10px; }
.main-nav .nav-link {
  position: relative;
  padding: 8px 6px !important;
  color: #18171d;
  font-family: var(--menu-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}
.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { transform: scaleX(1); }
.phone-item { margin-left: 2px; }

.main-nav .dropdown-toggle::after { display: none; }
.main-nav .dropdown-menu {
  min-width: 190px;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  background: #fff;
}
.main-nav .dropdown-item {
  padding: 8px 16px;
  color: #18171d;
  font-family: var(--menu-font);
  font-size: 14px;
  font-weight: 400;
}
.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus { background: var(--bg); color: var(--accent); }
.phone-link {
    font-family: var(--body-font) !important;
    font-size: 16px !important;
    font-weight: bold !important;
}

/* Shared headings */
.section-heading h1,
.story-copy h1,
.celebrations-title h1 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: .98;
}
.section-heading h1 { font-size: 3.563rem; }
.section-kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Hero */
.hero-section { width: 100%; background: #111; }
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item { width: 100%; }
.hero-section .carousel-item { height: min(41.5vw, 631px); min-height: 300px; }
.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gallery */
.gallery-section { background: var(--bg); }
.section-space { padding: 68px 0 84px; }
.gallery-container { max-width: 1290px; }
.gallery-grid { margin-top: 25px; }
.gallery-card { text-align: center; }
.gallery-image-link { display: block; overflow: hidden; }
.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 650 / 572;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-card:hover img { transform: scale(1.02); }
.gallery-card h5 {
    margin: 11px 0 3px;
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 300;
    line-height: 50px;
}
.gallery-card h5 a,
.gallery-category { text-decoration: none; }
.gallery-category {
  color: #777;
  font-size: 14px;
}

/* Story */
.story-section {
  display: flex;
  width: 100%;
  min-height: 850px;
  background: var(--bg);
}
.story-image-col {
  width: 50%;
  min-height: 850px;
  background-image: url("../images/homeimgNew.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.story-copy-col {
  display: flex;
  align-items: center;
  width: 50%;
}
.story-copy {
  width: 100%;
  max-width: 650px;
  padding: 75px 11% 75px 14%;
}
.story-copy h1 {
  margin-bottom: 34px;
  font-size: 3.563rem;
}
.story-text p {
  margin: 0 0 21px;
  color: #626267;
  font-size: 100%;
  line-height: 1.55;
  text-align: justify;
}
.story-text p:last-child { margin-bottom: 0; }

/* Testimonials */
.testimonials-section {
  padding: 85px 0 46px;
  background: var(--bg);
}
.testimonials-heading { margin-bottom: 29px; }
.testimonial-carousel { max-width: 1120px; margin: 0 auto; }
.testimonial-quote {
  min-height: 54px;
  margin: 0 auto;
  color: #55545a;
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 35px;
  text-align: center;
}
.testimonial-people {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-top: 19px;
}
.testimonial-person {
  width: 42px;
  height: 42px;
  padding: 2px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  opacity: .72;
  transition: opacity .2s ease, transform .2s ease;
}
.testimonial-person.active { opacity: 1; transform: translateY(-1px); }
.testimonial-person img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 19px;
}
.testimonial-arrow {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid #e3dfda;
  border-radius: 50%;
  background: transparent;
  color: #777;
  font-size: 14px;
  line-height: 26px;
}
.testimonial-arrow:hover { background: #fff; }
.celebrations-title { margin-top: 61px; }
.celebrations-title h1 { font-size: 3.563rem; }

/* Video */
.video-section {
  position: relative;
  height: 450px;
  overflow: hidden;
  background: #111;
}
.video-bg,
.video-bg iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-bg iframe {
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.15);
}

/* Marquee */
.marquee-section {
  min-height: 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.marquee-track { width: 100%; overflow: hidden; }
.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    min-width: max-content;
    padding: 25px 0;
    animation: marquee 28s linear infinite;
    font-family: var(--heading-font);
    font-size: 35px;
    line-height: 1;
    white-space: nowrap;
}
.marquee-content b { font-family: var(--body-font); font-size: 13px; font-weight: 500; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Footer */
.site-footer {
  background: var(--footer);
  color: #fff;
  padding-top: 53px;
}
.footer-intro { align-items: center; }
.footer-logo { width: 200px; height: auto; display: block; }
.footer-intro h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 3.563rem;
  font-weight: 300;
  line-height: .92;
}
.footer-main { margin-top: 63px; }
.footer-about p,
.footer-column a,
.footer-column p {
  color: rgba(255,255,255,.86);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}
.footer-about { padding-right: 10%; }
.footer-column h6 {
  margin: 0 0 23px;
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 300;
}
.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 13px;
  text-decoration: none;
}
.footer-column a:hover { color: #fff; }
.footer-contact i { margin-right: 7px; color: var(--accent); }
.footer-bottom {
  margin-top: 67px;
  padding: 17px 0 20px;
  border-top: 1px solid rgba(255,255,255,.03);
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.65); font-size: 12px; }
.footer-bottom a { color: #fff; text-decoration: none; }

/* Floating actions */
.whatsapp-float,
.scroll-top {
  position: fixed;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
}
.whatsapp-float {
    right: 40px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    background: #25d366;
    color: #fff;
    font-size: 20px;
}
.scroll-top {
    right: 10px;
    bottom: 68px;
    width: 40px;
    height: 40px;
    border: 0;
    background: #151b1d;
    color: #fff;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}
.scroll-top.show { opacity: 1; pointer-events: auto; }

/* Responsive */
@media (max-width: 1279.98px) {
  .header-inner { padding: 0 30px; }
  .main-nav { gap: 2px; }
  .main-nav .nav-link { font-size: 16px; }
  .story-copy { padding-left: 10%; padding-right: 5%; }
  .story-section, .story-image-col { min-height: 760px; }
  .story-text p { font-size: 16px; }
}

@media (max-width: 991.98px) {
  .header-inner { min-height: 70px; padding: 0 24px; }
  .site-logo { width: 78px; }
  .navbar-collapse {
    padding: 10px 0 15px;
    background: transparent;
  }
  .main-nav { align-items: stretch !important; gap: 0; }
  .main-nav .nav-link { padding: 10px 0 !important; font-size: 13px; }
  .main-nav .nav-link::after { left: 0; right: auto; width: 45px; bottom: 5px; }
  .phone-item { margin-left: 0; }
  .main-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    padding: 0 0 5px;
    box-shadow: none;
    background: transparent;
  }
  .main-nav .dropdown-item { padding: 8px 0 8px 15px; font-size: 12px; }

  .hero-section .carousel-item { height: 55vw; min-height: 330px; }
  .story-section { min-height: 0; flex-direction: column; }
  .story-image-col { width: 100%; min-height: 560px; }
  .story-copy-col { width: 100%; }
  .story-copy { max-width: none; padding: 65px 9% 75px; }
  .story-copy h1 { font-size: 48px; }
  .story-text p { font-size: 13px; }
  .desktop-break { display: none; }

  .video-section { height: 380px; }
  .footer-main { margin-top: 48px; }
  .footer-about { padding-right: 0; margin-bottom: 35px; }
}

@media (max-width: 575.98px) {
  .header-inner { min-height: 66px; padding: 0 18px; }
  .site-logo { width: 72px; }
  .section-space { padding: 50px 0 58px; }
  .section-heading h1 { font-size: 39px; }
  .section-kicker { font-size: 9px; }
  .gallery-grid { margin-top: 20px; }
  .gallery-card h5 { font-size: 15px; }

  .hero-section .carousel-item { height: 72vw; min-height: 290px; }
  .hero-image { object-position: center; }

  .story-image-col { min-height: 390px; }
  .story-copy { padding: 48px 7% 58px; }
  .story-copy h1 { font-size: 40px; margin-bottom: 25px; }
  .story-text p { font-size: 12px; line-height: 1.6; }

  .testimonials-section { padding: 38px 0 38px; }
  .testimonial-quote { min-height: 0; font-size: 13px; line-height: 1.45; }
  .celebrations-title { margin-top: 50px; }
  .celebrations-title h1 { font-size: 38px; }

  .video-section { height: 255px; }
  .marquee-section { min-height: 57px; }
  .marquee-content { gap: 17px; font-size: 16px; padding: 15px 0; }

  .site-footer { padding-top: 42px; }
  .footer-logo { width: 160px; margin-bottom: 34px; }
  .footer-intro h2 { font-size: 35px; }
  .footer-main { margin-top: 42px; }
  .footer-column { margin-bottom: 28px; }
  .footer-column h6 { margin-bottom: 15px; }
  .footer-bottom { margin-top: 30px; }
}

/* About page */
.page-title-section {
  
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-align: center;
  padding: 3em 0 3em;
  
}
.page-title-section h1 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 3.563rem;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
}
.about-main-section {
  background: var(--bg);
  padding: 82px 0 95px;
}
/*.about-main-container { max-width: 1110px; }*/
.about-visual-col { padding-right: 48px; }
.about-visual {
  position: relative;
  height: 520px;
  width: 100%;
}
.about-back-image {
  position: absolute;
  left: 0;
  top: 55px;
  width: 304px;
  height: 403px;
  object-fit: cover;
  display: block;
}
.about-front-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 283px;
  height: 310px;
  object-fit: cover;
  display: block;
}
.about-rotating-label {
  position: absolute;
  z-index: 3;
  width: 138px;
  height: 136px;
  object-fit: contain;
  left: 235px;
  top: 0;
  animation: aboutRotate 18s linear infinite;
}
@keyframes aboutRotate { to { transform: rotate(360deg); } }
.about-content-col { padding-left: 25px; }
.about-content { max-width: 500px; }
.about-kicker {
  margin-bottom: 17px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .12em;
  color: #777;
}
.about-content h2 {
  margin: 0 0 25px;
  font-family: var(--heading-font);
  font-size: 3.563rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.045em;
}
.about-description p {
  margin: 0 0 16px;
  color: #77777b;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  text-align: left;
}
.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 26px;
}
.about-stat-title {
  margin-bottom: 1px;
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 300;
  line-height: 1;
}
.about-stat-number {
  font-family: var(--heading-font);
  font-size: 55px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.03em;
}
.about-stat-number span { font-size: .7em; }

@media (max-width: 991.98px) {
  .page-title-section { height: 100px; }
  .about-main-section { padding: 65px 0 75px; }
  .about-visual-col { padding-right: 0; margin-bottom: 55px; }
  .about-content-col { padding-left: 0; }
  .about-content { max-width: 700px; margin: 0 auto; }
  .about-visual { max-width: 620px; margin: 0 auto; }
}
@media (max-width: 575.98px) {
  .page-title-section { height: 86px; }
  .page-title-section h1 { font-size: 39px; }
  .about-main-section { padding: 50px 0 60px; }
  .about-visual { height: 390px; }
  .about-back-image { top: 28px; width: 64%; height: 300px; }
  .about-front-image { width: 58%; height: 250px; }
  .about-rotating-label { width: 105px; height: 103px; left: 49%; top: 0; }
  .about-content h2 { font-size: 40px; }
  .about-description p { font-size: 12px; line-height: 1.6; }
  .about-stats { gap: 38px; margin-top: 25px; }
  .about-stat-number { font-size: 40px; }
}

/* Videography page */
.videography-section {
  background: var(--bg);
  padding: 28px 0 38px;
}
.videography-container {
  max-width: 1290px;
}
.video-grid {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 28px;
}
.video-grid-item {
  display: flex;
}
.video-card {
  width: 100%;
  background: #000;
  overflow: hidden;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-see-more {
  padding-top: 31px;
}
.video-see-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 101px;
  min-height: 37px;
  padding: 8px 16px;
  border-radius: 2px;
  background: var(--accent);
  color: #fff;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}
.video-see-more-btn:hover {
  color: #fff;
  opacity: .9;
  transform: translateY(-1px);
}
.video-see-more-btn i { font-size: 13px; }

@media (max-width: 991.98px) {
  .videography-section { padding: 24px 0 35px; }
  .video-grid { --bs-gutter-x: 20px; --bs-gutter-y: 22px; }
  .video-see-more { padding-top: 27px; }
}

@media (max-width: 575.98px) {
  .videography-section { padding: 18px 0 30px; }
  .video-grid { --bs-gutter-x: 14px; --bs-gutter-y: 18px; }
  .video-see-more { padding-top: 23px; }
}

/* Photography page */
.photography-section{background:var(--bg);padding:62px 0 112px}.photography-grid{--bs-gutter-x:28px;--bs-gutter-y:26px}.photography-card{text-align:center}.photography-image-link{display:block;overflow:hidden}.photography-card img{display:block;width:100%;aspect-ratio:650/572;object-fit:cover;transition:transform .45s ease}.photography-card:hover img{transform:scale(1.015)}.photography-card h5{margin:10px 0 0;font-family:var(--heading-font);font-size:24px;font-weight:300;line-height:1.25}.photography-card h5 a{color:inherit;text-decoration:none}
@media(max-width:991.98px){.photography-section{padding:45px 0 75px}.photography-container{max-width:760px}.photography-grid{--bs-gutter-x:24px;--bs-gutter-y:28px}}
@media(max-width:575.98px){.photography-section{padding:32px 0 55px}.photography-grid{--bs-gutter-x:0;--bs-gutter-y:28px}.photography-card h5{font-size:15px}}

/* Contact page */
/*.contact-title-section { height: 128px; }*/
.contact-main-section {
  background: var(--bg);
  padding: 106px 0 110px;
}
.contact-main-container { max-width: 1170px; }
.contact-content-row { --bs-gutter-x: 56px; }
.contact-copy-col { padding-left: 0; }
.contact-copy { max-width: 390px; }
.contact-kicker {
  margin: 0 0 22px;
  color: #202037;
  font-family: var(--menu-font);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.contact-copy h2 {
  margin: 0 0 29px;
  font-family: var(--heading-font);
  font-size: 3.563rem;
  font-weight: 300;
  letter-spacing: -.045em;
  line-height: .88;
}
.contact-description p {
  margin: 0;
  color: #77777b;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.58;
}
.contact-details { margin-top: 28px; }
.contact-detail {
  display: flex;
  align-items: center;
  min-height: 33px;
  margin-bottom: 8px;
  color: #77777b;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 300;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail i {
  width: 27px;
  margin-right: 7px;
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}
.contact-detail a { color: #77777b; text-decoration: none; }
.contact-detail:nth-child(2) a { color: #11131a; font-weight: 500; }
.contact-detail a:hover { color: var(--accent); }
.contact-image-col { padding-right: 0; }
.contact-image-wrap { width: 100%; overflow: hidden; }
.contact-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 800 / 533;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .contact-title-section { height: 105px; }
  .contact-main-section { padding: 70px 0 80px; }
  .contact-main-container { max-width: 760px; }
  .contact-content-row { --bs-gutter-x: 0; }
  .contact-copy-col { margin-bottom: 50px; }
  .contact-copy { max-width: 680px; }
  .contact-image-col { padding: 0; }
}

@media (max-width: 575.98px) {
  .contact-title-section { height: 86px; }
  .contact-main-section { padding: 48px 0 60px; }
  .contact-copy-col { margin-bottom: 35px; }
  .contact-kicker { margin-bottom: 16px; font-size: 10px; }
  .contact-copy h2 { margin-bottom: 25px; font-size: 40px; }
  .contact-description p { font-size: 12px; line-height: 1.6; }
  .contact-details { margin-top: 23px; }
}


/* Wedding portfolio / masonry gallery */
.portfolio-title-section {
  background: var(--bg);
  padding: 60px 0 40px;
}
.portfolio-title-container {
  max-width: 1230px;
  padding-left: 0;
  padding-right: 0;
}
.portfolio-title-section h1 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(30px, 2.5vw, 42px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.035em;
}
.portfolio-date {
  display: none;
}
.portfolio-gallery-section {
  background: var(--bg);
  padding: 0 0 70px;
}
.portfolio-gallery-container {
  max-width: 1230px;
  padding-left: 0;
  padding-right: 0;
}
.portfolio-gallery {
  width: 100%;
  min-height: 200px;
}
.portfolio-gallery-item {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.portfolio-gallery-item a {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #e9e6e1;
}
.portfolio-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
  transition: transform .45s ease;
}
.portfolio-gallery-item a:hover img {
  transform: scale(1.018);
}
.portfolio-banner-wrap {
  width: 100%;
  margin-top: 34px;
}
.portfolio-banner-wrap a,
.portfolio-banner-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.portfolio-banner-wrap a {
  overflow: hidden;
}
.portfolio-banner-wrap img {
  transition: transform .4s ease;
}
.portfolio-banner-wrap a:hover img {
  transform: scale(1.01);
}

.portfolio-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(10, 12, 13, .92);
}
.portfolio-lightbox-overlay img {
  display: block;
  max-width: min(94vw, 1500px);
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.portfolio-lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 36px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
}
.lightbox-open { overflow: hidden; }

@media (max-width: 1279.98px) {
  .portfolio-title-container,
  .portfolio-gallery-container { padding-left: 30px; padding-right: 30px; }
}
@media (max-width: 991.98px) {
  .portfolio-title-section { padding-top: 8px; padding-bottom: 16px; }
  .portfolio-title-container,
  .portfolio-gallery-container { padding-left: 24px; padding-right: 24px; }
  .portfolio-gallery-section { padding-bottom: 50px; }
  .portfolio-banner-wrap { margin-top: 25px; }
}
@media (max-width: 575.98px) {
  .portfolio-title-section { padding: 7px 0 13px; }
  .portfolio-title-container,
  .portfolio-gallery-container { padding-left: 30px; padding-right: 30px; }
  .portfolio-title-section h1 { font-size: 23px; }
  .portfolio-gallery-section { padding-bottom: 35px; }
  .portfolio-banner-wrap { margin-top: 20px; }
  .portfolio-lightbox-overlay { padding: 20px; }
  .portfolio-lightbox-close { top: 5px; right: 8px; }
}

/* =========================================================
   COMMON DESKTOP FONT SIZE FIX
   ========================================================= */

@media (min-width: 992px) {

    /* Navigation */
    .main-nav .nav-link {
        font-size: 17px !important;
    }

    .main-nav .dropdown-item {
        font-size: 15px !important;
    }

    .phone-link {
        font-size: 17px !important;
    }

    /* Small section labels / kickers */
    .section-kicker,
    .about-kicker,
    .contact-kicker {
        font-size: 15px !important;
    }

    /* Gallery titles */
    .gallery-card h5,
    .photography-card h5 {
        font-size: 27px !important;
        line-height: 1.3 !important;
    }

    .gallery-category {
        font-size: 15px !important;
    }

    /* Main content paragraphs */
    .story-text p,
    .about-description p,
    .contact-description p {
        font-size: 17px !important;
        line-height: 1.65 !important;
    }

    /* Testimonials */
    .testimonial-quote {
        font-size: 20px !important;
        line-height: 1.6 !important;
    }

    /* About statistics */
    .about-stat-title {
        font-size: 20px !important;
    }

    /* Footer */
    .footer-about p,
    .footer-column a,
    .footer-column p {
        font-size: 17px !important;
        line-height: 1.6 !important;
    }

    .footer-column h6 {
        font-size: 21px !important;
    }

    /* Marquee */
    .marquee-content {
        font-size: 36px !important;
    }

    .marquee-content b {
        font-size: 14px !important;
    }

    /* Contact details */
    .contact-detail {
        font-size: 17px !important;
    }

    /* Buttons */
    .video-see-more-btn {
        font-size: 16px !important;
    }

    /* Portfolio */
    .portfolio-title-section h1 {
        font-size: 42px !important;
    }
}

/* =========================================================
   COMMON MOBILE FONT SIZE FIX
   ========================================================= */
@media (max-width: 575.98px) {

    /* General body text */
    body {
        font-size: 16px;
    }

    /* Navigation */
    .main-nav .nav-link {
        font-size: 16px !important;
    }

    .main-nav .dropdown-item {
        font-size: 15px !important;
    }

    .phone-link {
        font-size: 16px !important;
    }

    /* Section headings */
    .section-kicker,
    .about-kicker,
    .contact-kicker {
        font-size: 12px !important;
    }

    /* Gallery */
    .gallery-card h5,
    .photography-card h5 {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    .gallery-category {
        font-size: 15px !important;
    }

    /* Story / common paragraphs */
    .story-text p,
    .about-description p,
    .contact-description p {
        font-size: 16px !important;
        line-height: 1.65 !important;
    }

    /* Testimonials */
    .testimonial-quote {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    /* Footer */
    .footer-about p,
    .footer-column a,
    .footer-column p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    .footer-column h6 {
        font-size: 20px !important;
    }

    /* Marquee */
    .marquee-content {
        font-size: 20px !important;
    }

    .marquee-content b {
        font-size: 14px !important;
    }

    /* Contact details */
    .contact-detail {
        font-size: 16px !important;
    }

    .contact-detail i {
        font-size: 24px !important;
    }

    /* Buttons */
    .video-see-more-btn {
        font-size: 16px !important;
    }

    /* Portfolio */
    .portfolio-title-section h1 {
        font-size: 28px !important;
    }
}