@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

body {
    /* font-family: "Inter Tight", sans-serif; */
    font-family: "Montserrat", sans-serif;
    /* font-family: "Space Grotesk", sans-serif; */
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Space Grotesk", sans-serif;
}

.max-w-fit {
    max-width: fit-content;
}

.btn-black {
    background-color: #000;
    color: #fff;
    border: none
}

/********** Global Styles **********/

:root {
    --black-color: #000000;
    --grey-color: #5B6A82;
    --white-color: #FFFFFF;

}

.btn-custom-group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    vertical-align: middle;
    transition: transform 0.2s ease;
    font-family: "Inter Tight", sans-serif;
}

.btn-custom-group .btn-label {
    background-color: var(--white-color);
    color: var(--black-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    display: inline-block;
    font-family: "Inter Tight", sans-serif;
}

/* The Circular Icon Part */
.btn-custom-group .btn-icon {
    width: 44px;
    height: 44px;
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.btn-custom-group .btn-icon i {
    font-size: 16px;
    transition: color 0.3s ease;
    rotate: 315deg;
}

/* Global Hover Logic */
.btn-custom-group:hover {
    opacity: 0.9;
}

.btn-custom-group:hover .btn-icon {
    background-color: var(--grey-color);
    color: var(--white-color);
}

.btn-custom-group:active {
    transform: scale(0.96);
}

/* Dark variant */

.btn-custom-group.btn-dark-variant .btn-label {
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
}

.btn-custom-group.btn-dark-variant .btn-icon {
    width: 48px;
    height: 48px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
}


/********** Navigation bar ************/

header.main-header {
    position: absolute;
    top: 10px;
    z-index: 99;
    width: 100%;
    margin: 0 auto;
}

.navbar-brand img {
    width: 120px;
    height: auto;
}

.navbar-nav .nav-link {
    color: var(--white-color);
    font-weight: 400;
    margin-right: 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #dddddd !important;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.dropdown-menu {
    border-radius: 14px;
    border: none;
    padding: 12px 0;
}

.dropdown-item {
    padding: 8px 18px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #f3f3f3;
}

@media (min-width: 992px) {

    .navbar-nav .dropdown:hover>.dropdown-menu,
    .navbar-nav .dropdown:focus-within>.dropdown-menu {
        display: block;
    }
}


/*****Carousel Slider*****/

.hero-wrap {
    background:
        url('../images/hero-bg.png') no-repeat top center,
        #000;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-wrap .hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white-color);
}

.hero-wrap .hero-content p {
    color: var(--white-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Hero banner carousel */

.hero-wrap .owl-carousel .owl-nav.disabled {
    display: block !important;
}

.hero-wrap .gallery-section {
    padding: 0px 0 80px;
}

.hero-wrap .gallery-section .owl-item {
    transition: all 0.4s ease;
    opacity: 0.5;
    transform: scale(0.85);
}

.hero-wrap .gallery-section .owl-item.center {
    opacity: 1;
    transform: scale(1.1);
    z-index: 2;
}

.hero-wrap .gallery-section .card-gallery {
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.hero-wrap .gallery-section .card-gallery img {
    width: 100%;
    /* height: 500px; 
    object-fit: cover;*/
}

.hero-wrap .gallery-section .card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px 50px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    text-align: center;
    font-size: 16px;
    color: var(--white-color);
}

/* Custom Navigation Buttons */
.hero-wrap .gallery-section .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid #666 !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    color: #fff !important;
}

.hero-wrap .gallery-section .owl-prev {
    left: -60px;
}

.hero-wrap .gallery-section .owl-next {
    right: -60px;
}


/* **About section** */

.about-section {
    padding: 40px 0;
}

.about-section .sub-title {
    color: var(--primary-color);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
}

.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black-color);
}

.about-section p {
    color: var(--black-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}


.counter-section .counter-item h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: var(--black-color);
}

.counter-section .counter-item p {
    font-size: 16px;
    color: var(--black-color);
    line-height: 1.6;
    margin-top: 5px;
}

/* Our Portfolio A Collection of Visual Stories */

.portfolio-section {
    padding: 40px 0;
    background-color: var(--black-color);
}

.portfolio-section .section-header .sub-title {
    color: var(--white-color);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.portfolio-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white-color);
}

.portfolio-section .portfolio-frame {
    background-color: #fff;
    padding: 5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.portfolio-section .portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.portfolio-section .portfolio-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
    opacity: 1;
}

.portfolio-section .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
}

.portfolio-section .portfolio-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.portfolio-section .portfolio-frame:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-section .portfolio-frame:hover img {
    transform: scale(1.15);
    opacity: 0.6;
}

.portfolio-section .portfolio-overlay h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-section .portfolio-overlay p {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.portfolio-section .portfolio-frame:hover h5,
.portfolio-section .portfolio-frame:hover p {
    transform: translateY(0);
}

.portfolio-section .btn-view {
    background: #fff;
    color: #000;
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.portfolio-section .btn-view:hover {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}

/* **Our Collections ** */

.collections-section {
    padding: 40px 0;
}

.collections-section .section-header .sub-title {
    color: var(--black-color);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.collections-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black-color);
}

.collections-section .section-header p {
    color: var(--black-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}


.collections-section .collections-row {
    border: 1px solid #1E1E1E !important;
}

.collections-section .row {
    min-height: 500px;
}

.collections-section .collection-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.collections-section .collection-content {
    max-width: 500px;
}

.collections-section .collection-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black-color);
}

.collections-section .collection-content p {
    font-size: 16px;
    color: var(--black-color);
    line-height: 1.6;
}

.collections-section .collections-row .col-lg-6 {
    transition: background-color 0.4s ease, color 0.4s ease;
}

.collections-section .collections-row:hover .col-lg-6.d-flex {
    background-color: #000000 !important;
}

.collections-section .collections-row:hover .collection-content h2,
.collections-section .collections-row:hover .collection-content p {
    color: #ffffff !important;
}

.collections-section .collections-row:hover .btn-label {
    background-color: var(--white-color);
    color: var(--black-color);
}

.collections-section .collections-row:hover .btn-icon {
    background-color: var(--black-color);
    color: var(--white-color);
    border: 1px solid var(--white-color);

}


/* **Blog** */

.blog-section {
    padding: 40px 0;
    background-color: #000;
}

.blog-section .section-header .sub-title {
    color: var(--white-color);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white-color);
}

.blog-section .section-header p {
    color: var(--white-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.blog-section .card {
    background-color: transparent;
    border: none;
}

.blog-section .blog-img {
    height: 250px;
    object-fit: cover;

}

.blog-section .card-body {
    background-color: var(--white-color);
    margin-top: -20px;
    position: relative;
    z-index: 2;
    border-top-left-radius: 25px !important;
    border-top-right-radius: 25px !important;
    padding: 20px;
}

.blog-section .card-title {
    font-weight: 700;
    font-size: 22px;
    color: var(--black-color);
}

.blog-section .btn-dark {
    background-color: var(--black-color);
    color: var(--white-color);
    border: none;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.blog-section .btn-dark:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.blog-section .carousel-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.blog-section .nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    background-color: transparent;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-section .customPrevBtn {
    background-color: var(--white-color) !important;
    color: var(--black-color) !important;
}

.blog-section .customNextBtn:hover {
    background-color: var(--white-color);
    color: var(--black-color);
}

.blog-section .blog-carousel .owl-item {
    padding-bottom: 20px;
}


/* Force owl carousel items to fill the maximum height of the row */
.blog-section .blog-carousel .owl-stage {
    display: flex;
}

.blog-section .blog-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.blog-section .blog-carousel .item,
.blog-section .blog-carousel .card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.blog-section .blog-carousel .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-section .blog-carousel .card-body .btn {
    margin-top: auto;
}









/*  */


.contact-cta-section {
    padding: 40px 0;
    background:
        url('../images/ctabg.png') no-repeat top center,
        #fff;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.contact-cta-section .contact-content .sub-title {
    color: var(--black-color);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-cta-section .contact-content h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black-color);
}

.contact-cta-section .image-stack {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}




/* Footer */
.footer {
    background-color: var(--black-color);
}

.footer h5 {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.footer .text-secondary {
    color: #a0a0a0 !important;
    line-height: 1.6;
}

.footer-links a:hover {
    color: var(--white-color) !important;
}

/* Newsletter Specific Styling */
.footer .newsletter-form {
    display: flex;
    background: var(--white-color);
    border-radius: 50px;
    padding: 2px;
}

.footer .newsletter-form .form-control {
    background: transparent;
    box-shadow: none;
}

.footer .newsletter-form .form-control::placeholder {
    color: #999;
}

.footer .btn-subscribe {
    background-color: #333333;
    color: var(--white-color);
    border: none;
    font-size: 14px;
    font-weight: 500;
    margin: 4px;
    padding: 10px 25px;
    transition: background 0.3s ease;
}

.footer .btn-subscribe:hover {
    background-color: #444444;
    color: var(--white-color);
}

/* Adjustments for icons to match image scale */
.footer .footer i {
    width: 20px;
    text-align: center;
}

.newsletter-shortcode-wrap .rm_form_container {
    background: transparent;
    border-radius: 24px;
    padding: 0px;
    max-width: 320px;
}

/* Label */
.newsletter-shortcode-wrap .rm_form_label {
    color: #fff !important;
}

.newsletter-shortcode-wrap .rm_form_container form,
.newsletter-shortcode-wrap .rm_form_container .rm_form,
.newsletter-shortcode-wrap .rm_form_container .rm_form_wrapper {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
    align-items: center;
}

/* Email Input */
.newsletter-shortcode-wrap input[type="email"],
.newsletter-shortcode-wrap input[type="text"],
.newsletter-shortcode-wrap .rm_form_container input[type="text"],
.newsletter-shortcode-wrap .rm_form_container input[type="email"] {
    /* flex: 1 1 220px; 
    border-radius: 40px;*/
    border: 1px solid #fff !important;
    background: transparent;
    color: #fff;
    padding: .625em !important;
    min-height: 50px;
}

.newsletter-shortcode-wrap input[type="email"]::placeholder {
    color: #666;
}

/* Submit Button */
.newsletter-shortcode-wrap input[type="submit"],
.newsletter-shortcode-wrap button,
.newsletter-shortcode-wrap .rm_submit,
.newsletter-shortcode-wrap .rm_button {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #fff;
    border-radius: 40px;
    min-height: 52px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-shortcode-wrap input[type="submit"]:hover,
.newsletter-shortcode-wrap button:hover,
.newsletter-shortcode-wrap .rm_button:hover {
    background: #b0b0b0d4 !important;
    color: #fff !important;
    border-color: #fff;
}

.footer-newsletter-column {
    display: flex;
    flex-direction: column;
}

.footer-copyright-wrap {
    margin-top: 40px;
}

.footer-copyright-text {
    margin-bottom: 0;
    max-width: 320px;
}

.footer-copyright-text p,
.footer-copyright-text a {
    color: inherit;
    margin: 0;
    text-decoration: none;
}

.footer-copyright-text a:hover {
    color: #fff;
}


/* **wildlife** */
.home .navbar {
    border-bottom: none;
}

.navbar {
    border-bottom: 1px solid #ffffff26;
}

.inner-banner {
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 180px 0 80px;
    min-height: 400px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.inner-banner .row {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inner-banner h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.inner-banner .breadcrumb {
    background: transparent;
    padding: 0;
    display: flex;
    justify-content: center;
    list-style: none;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: #a0a0a0 !important;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff !important;
}

.breadcrumb-item.active {
    color: #fff !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\203A";
    color: #a0a0a0;
    padding: 0 10px;
    font-size: 20px;
    vertical-align: middle;
    line-height: 1;
}

/* **wildlife-content** */


.wildlife-content {
    padding: 40px 0;
}


.wildlife-content .sub-title {
    color: var(--black-color);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 500;
}

.wildlife-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black-color);
}

.wildlife-content p {
    color: var(--black-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.wildlife-content img {
    width: 100%;
    height: auto;
    display: block;
}

.wildlife-content .wildlife-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.wildlife-content .wildlife-image img {
    width: 100%;
    transition: transform 0.4s ease;
}

.wildlife-content .image-overlay {
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 20px;
    transition: bottom 0.4s ease;
}

.wildlife-content .wildlife-image:hover .image-overlay {
    bottom: 0;
}

.wildlife-content .wildlife-image:hover img {
    transform: scale(1.05);
}

.wildlife-content .image-overlay h4 {
    margin-bottom: 8px;
    font-size: 22px;
    text-align: center;
}

.wildlife-content .image-overlay p {
    margin: 0;
    font-size: 16px;
}


/* Gallery Section */

.gallery-section {
    padding: 40px 0;
    background-color: var(--black-color);
}

.gallery-section .section-header .sub-title {
    color: var(--white-color);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.gallery-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white-color);
}

.gallery-section .gallery-frame {
    background-color: transparent;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.gallery-section .gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.gallery-section .gallery-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
    opacity: 1;
    max-height: 425px;
    object-fit: cover;
}

.gallery-section .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
}

.gallery-section .gallery-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.gallery-section .gallery-frame:hover .gallery-overlay {
    opacity: 1;
}

.gallery-section .gallery-frame:hover img {
    transform: scale(1.05);
    opacity: 0.6;
}

.hatch-popup-trigger,
.single-portfolio .content-styled img {
    cursor: pointer;
}

.hatch-popup-trigger:focus-visible,
.single-portfolio .content-styled img:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.hatch-image-popup .modal-content {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hatch-image-popup .modal-dialog {
    max-width: min(1100px, calc(100vw - 2rem));
}

.hatch-image-popup .modal-body {
    position: relative;
    padding: 0;
}

.hatch-image-popup__img {
    max-height: 82vh;
    width: auto;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.hatch-image-popup__caption {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 18px;
}

.hatch-image-popup__close {
    background-color: #fff;
    border-radius: 999px;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
}

.gallery-section .gallery-overlay h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-section .gallery-overlay p {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-section .gallery-frame:hover h5,
.gallery-section .gallery-frame:hover p {
    transform: translateY(0);
}

.gallery-section .btn-view {
    background: #fff;
    color: #000;
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.gallery-section .btn-view:hover {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}

/* **Our Recent Collections ** */

.our-recent-collection {
    padding: 40px 0;
}

.our-recent-collection .sub-title {
    color: var(--black-color);
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
}

.our-recent-collection h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black-color);
    text-align: center;
}

.our-recent-collection p {
    color: var(--black-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.our-recent-collection .card-img-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    transition: all 0.3s ease;
}

#collection-carousel .item:hover .card-img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

#collection-carousel .card {
    cursor: pointer;
    margin-bottom: 20px;
}

#collection-carousel .card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

#collection-carousel .card h3 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

#collection-carousel .card p {
    color: var(--white-color);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

#collection-carousel .card .btn i {
    rotate: 315deg;
}

.portfolio-archive-collection__icon-link {
    width: 40px;
    height: 40px;
}

.our-recent-collection .btn-black {
    transition: all 0.5s ease-in-out;
}

.our-recent-collection .btn-black:hover {
    background-color: #000;
    color: #fff;
    border: none;
    transform: scale(1.1);
}

.page-editor-content,
.standard-page-section {
    background: #fff;
}

.content-styled {
    color: var(--black-color);
    font-size: 16px;
    line-height: 1.8;
}

.content-styled h1,
.content-styled h2,
.content-styled h3,
.content-styled h4,
.content-styled h5,
.content-styled h6 {
    margin-bottom: 18px;
}

.content-styled p,
.content-styled ul,
.content-styled ol,
.content-styled blockquote {
    margin-bottom: 18px;
}

.content-styled a {
    color: #111;
}

.contact-form-wrap .form-control,
.wpcf7-form .form-control {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid #d8d8d8;
    padding: 14px 18px;
    box-shadow: none;
}

.contact-form-wrap textarea.form-control,
.wpcf7-form textarea.form-control {
    min-height: 180px;
}

.wpcf7-not-valid-tip {
    font-size: 13px;
    margin-top: 6px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 20px 0 0;
    border-radius: 12px;
}

.contact-form-wrap .btn-dark {
    min-height: 52px;
}

.page-story,
.page-copy-grid,
.page-highlights,
.contact-page-layout,
.blog-page-layout,
.gallery-landing-hero,
.gallery-copy-panels,
.gallery-masonry-section,
.single-post-layout {
    padding: 48px 0;
}

.page-story {
    background: linear-gradient(180deg, #ffffff 0%, #f6f3ee 100%);
}

.page-story--about {
    padding-top: 64px;
    padding-bottom: 64px;
}

.page-story__title,
.contact-page-layout h2,
.blog-page-layout h2,
.gallery-landing-hero h2,
.single-post-layout__article h1 {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.page-story__lead {
    font-size: 20px;
    line-height: 1.6;
    max-width: 580px;
    color: #3c3c3c;
}

.page-story__image-card,
.blog-feature-card,
.contact-map-panel,
.single-post-layout__article {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.page-story__image-card img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.page-story__caption {
    padding: 18px 22px;
    font-size: 14px;
    color: #5B6A82;
}

.page-story__content {
    max-width: 560px;
}

.page-copy-grid {
    background: #fff;
    padding-top: 0;
    padding-bottom: 56px;
}

.page-copy-grid__panel,
.contact-detail-card,
.gallery-copy-panels__card,
.blog-post-card {
    border-radius: 26px;
    padding: 32px;
    height: 100%;
}

.page-copy-grid__panel,
.blog-post-card {
    background: #f6f3ee;
}

.page-copy-grid__panel--accent,
.gallery-copy-panels__card--accent,
.contact-detail-card--dark {
    background: #000;
    color: #fff;
}

.page-copy-grid__panel--accent .content-styled,
.gallery-copy-panels__card--accent .content-styled,
.contact-detail-card--dark .content-styled {
    color: #fff;
}

.page-highlights {
    background: linear-gradient(180deg, #f8f8f8 0%, #f1eadf 100%);
    padding-top: 56px;
    padding-bottom: 72px;
}

.page-highlights__intro {
    margin-bottom: 24px;
}

.page-highlights__intro h3 {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 0;
}

.page-highlights__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-content: start;
}

.page-highlights__card {
    border-radius: 24px;
    background: #fff;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.page-highlights__value {
    font-family: "Space Grotesk", sans-serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-quote {
    border-radius: 28px;
    background: linear-gradient(140deg, #111111 0%, #2d2d2d 100%);
    color: #fff;
    padding: 36px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.page-quote::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 42%);
    pointer-events: none;
}

.page-quote .content-styled {
    position: relative;
    color: #fff;
    font-size: 22px;
    line-height: 1.6;
}

.page-quote cite {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-style: normal;
}

.page-highlights__sidebar {
    display: grid;
    gap: 22px;
    align-content: start;
}

.page-cta-card {
    border-radius: 28px;
    background: #f4eadc;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.page-cta-card .content-styled {
    color: #2d2d2d;
}

.contact-page-layout {
    background: linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
}

.contact-page-layout__intro {
    margin-bottom: 28px;
}

.contact-detail-stack {
    /* display: grid;
    gap: 18px; */
}

.contact-detail-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 18px;
}

.contact-detail-card--dark {
    background: #111;
    border-color: #111;
    color: #fff;
}

.contact-detail-card--dark .contact-detail-card__label {
    color: rgba(255, 255, 255, 0.72);
}

.contact-detail-card--dark p,
.contact-detail-card--dark a,
.contact-detail-card--dark h3,
.contact-detail-card--dark .content-styled {
    color: #fff;
}

.contact-detail-card__label,
.blog-post-card__meta,
.blog-feature-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 700;
    color: #5B6A82;
}

.contact-detail-card h3 {
    font-size: 28px;
    margin: 12px 0 10px;
}

.contact-detail-card h3 a,
.blog-post-card h3 a {
    text-decoration: none;
    color: var(--black-color);
    font-size: 20px;
    font-weight: 500;
}

.contact-detail-card__note {
    margin-top: 14px;
}

.contact-map-panel {
    padding: 32px;
}

.contact-map-panel__embed iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 24px;
}

.blog-page-layout {
    background: #fff;
}

.blog-page-layout__intro {
    max-width: 760px;
    margin: 0 auto 42px;
}

.blog-page-layout__intro .content-styled {
    max-width: 680px;
}

.blog-feature-card__media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.blog-feature-card__content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-feature-card__content h3 {
    font-size: 34px;
    margin-bottom: 18px;
}

.blog-feature-card__meta {
    margin-top: 12px;
}

.blog-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.blog-post-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.blog-post-card__media {
    display: block;
    margin: -32px -32px 0;
}

.blog-post-card__media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-post-card__body {
    padding-top: 26px;
}

.blog-post-card h3 {
    font-size: 24px;
    line-height: 1.3;
    margin: 14px 0;
}

.blog-post-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    color: #000;
}

.blog-post-card__link::after {
    content: "\2192";
}

.gallery-landing-hero {
    background:
        linear-gradient(180deg, rgba(246, 243, 238, 0.8) 0%, rgba(255, 255, 255, 0.94) 100%),
        repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.05) 3px, transparent 3px, transparent 46px);
    overflow: hidden;
}

.gallery-landing-hero__collage {
    position: relative;
    min-height: 500px;
}

.gallery-landing-hero__content,
.gallery-landing-hero__support,
.gallery-storyboard__article,
.gallery-storyboard__card .content-styled {
    font-size: 17px;
    line-height: 1.8;
}

.gallery-landing-hero__frame {
    position: absolute;
    overflow: hidden;
    border: 6px solid #111;
    background: #fff;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.18);
}

.gallery-landing-hero__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-landing-hero__frame--1 {
    inset: 0 auto auto 10%;
    width: 48%;
    height: 280px;
    transform: rotate(-6deg);
}

.gallery-landing-hero__frame--2 {
    inset: 18% 8% auto auto;
    width: 38%;
    height: 220px;
    transform: rotate(5deg);
}

.gallery-landing-hero__frame--3 {
    inset: auto auto 0 26%;
    width: 44%;
    height: 210px;
    transform: rotate(-2deg);
}

.gallery-landing-hero__summary {
    margin-top: 40px;
    padding: 26px 30px;
    border-radius: 28px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(6px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.gallery-landing-hero__summary-mark {
    margin-bottom: 14px;
    color: rgba(17, 17, 17, 0.55);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
}

.gallery-storyboard {
    padding: 30px 0 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 243, 238, 0.9) 100%);
}

.gallery-storyboard__article,
.gallery-storyboard__card {
    border-radius: 28px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.gallery-storyboard__article {
    padding: 34px;
    height: 100%;
}

.gallery-storyboard__article p:last-child,
.gallery-storyboard__card .content-styled p:last-child {
    margin-bottom: 0;
}

.gallery-storyboard__aside {
    display: grid;
    gap: 22px;
}

.gallery-storyboard__card {
    padding: 32px;
}

.gallery-storyboard__card h3 {
    font-size: 30px;
    margin-bottom: 14px;
}

.gallery-storyboard__card--accent {
    background: #111;
    border-color: #111;
    color: #fff;
}

.gallery-storyboard__card--accent h3,
.gallery-storyboard__card--accent .content-styled,
.gallery-storyboard__card--accent .content-styled p {
    color: #fff;
}

.gallery-copy-panels {
    background: #fff;
}

.gallery-copy-panels__card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f6f3ee;
}

.gallery-copy-panels__card--accent {
    background: #111;
    border-color: #111;
    color: #fff;
}

.gallery-copy-panels__card--accent h3,
.gallery-copy-panels__card--accent p,
.gallery-copy-panels__card--accent .content-styled {
    color: #fff;
}

.gallery-copy-panels__card h3 {
    font-size: 30px;
    margin-bottom: 16px;
}

.gallery-masonry-section {
    background: #0f0f0f;
}

.gallery-masonry-section .section-header .sub-title,
.gallery-masonry-section .section-header h2 {
    color: #fff;
}

.gallery-masonry-grid {
    columns: 3 280px;
    column-gap: 22px;
}

.gallery-masonry-card {
    break-inside: avoid;
    margin-bottom: 22px;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-masonry-card:hover,
.gallery-masonry-card:focus {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
}

.gallery-masonry-card__image img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-masonry-card__body {
    padding: 22px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.gallery-masonry-card__body h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.portfolio-story-hero {
    background:
        linear-gradient(180deg, rgba(246, 243, 238, 0.9) 0%, rgba(255, 255, 255, 0.98) 100%),
        radial-gradient(circle at top right, rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0) 42%);
    padding: 46px 0 30px;
}

.portfolio-story-hero__collage {
    min-height: 520px;
}

.portfolio-story-hero__terms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.portfolio-story-hero__term {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #111;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
}

.portfolio-story-hero__term:hover,
.portfolio-story-hero__term:focus {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
}

.portfolio-story-hero__summary {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 0.9fr);
    gap: 24px;
    margin-top: 48px;
}

.portfolio-story-hero__summary-card,
.portfolio-story-hero__stats {
    border-radius: 28px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-story-hero__summary-card {
    padding: 28px 30px;
}

.portfolio-story-hero__summary-mark {
    margin-bottom: 14px;
    color: rgba(17, 17, 17, 0.55);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
}

.portfolio-story-hero__stats {
    display: grid;
    gap: 1px;
    overflow: hidden;
    background: rgba(17, 17, 17, 0.08);
}

.portfolio-story-hero__stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    padding: 22px 24px;
    background: #fff;
}

.portfolio-story-hero__stat-value {
    color: #111;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.portfolio-story-hero__stat-label {
    margin-top: 10px;
    color: #5b6a82;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.portfolio-storyboard .gallery-storyboard__card .sub-title {
    color: rgba(17, 17, 17, 0.55);
}

.portfolio-storyboard__facts .content-styled,
.portfolio-storyboard__facts .content-styled p {
    color: #fff;
}

.portfolio-storyboard__fact-list {
    display: grid;
    gap: 22px;
}

.portfolio-storyboard__fact {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.portfolio-storyboard__fact:first-child {
    padding-top: 0;
    border-top: 0;
}

.portfolio-storyboard__fact-label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.portfolio-storyboard__fact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-storyboard__fact-links a,
.portfolio-storyboard__cta-link {
    color: #fff;
    text-decoration: none;
}

.portfolio-storyboard__fact-links a:hover,
.portfolio-storyboard__fact-links a:focus,
.portfolio-storyboard__cta-link:hover,
.portfolio-storyboard__cta-link:focus {
    color: #d4d4d4;
}

.portfolio-storyboard__cta-link {
    font-size: 18px;
    font-weight: 600;
}

.portfolio-detail-gallery {
    padding-top: 36px;
}

.portfolio-related-work {
    padding: 56px 0 70px;
    background: linear-gradient(180deg, #fff 0%, #f6f3ee 100%);
}

.portfolio-related-work .section-header p {
    max-width: 720px;
    color: #5b6a82;
}

.portfolio-related-card {
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-related-card:hover,
.portfolio-related-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 24px 38px rgba(0, 0, 0, 0.14);
}

.portfolio-related-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
}

.portfolio-related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.portfolio-related-card:hover .portfolio-related-card__image img,
.portfolio-related-card:focus-within .portfolio-related-card__image img {
    transform: scale(1.04);
}

.portfolio-related-card__body {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.portfolio-related-card__body h3 {
    font-size: 24px;
    margin-bottom: 0;
}

.portfolio-related-card__body h3 a {
    color: #111;
    text-decoration: none;
}

.portfolio-related-card__body p {
    margin-bottom: 0;
    color: #5b6a82;
}

.portfolio-related-card__link {
    color: #111;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.portfolio-related-card__link:hover,
.portfolio-related-card__link:focus {
    color: #5b6a82;
}

.portfolio-related-work__cta {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.single-post-layout {
    background: #fff;
}

.single-post-layout__article {
    max-width: 960px;
    margin: 0 auto;
    padding: 34px;
}

.single-post-layout__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    color: #5B6A82;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 700;
}

.single-post-layout__media {
    margin-bottom: 30px;
    border-radius: 24px;
    overflow: hidden;
}

.single-post-layout__media img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-layout__content h2,
.single-post-layout__content h3 {
    margin-top: 30px;
}

.single-post-layout__content img {
    max-width: 100%;
    height: auto;
    margin: 18px 0;
    border-radius: 18px;
}

.single-post-layout__footer {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}






/* Responsive Styles */

@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .hero-wrap .hero-content h1 {
        font-size: 48px !important;
    }

    .hero-wrap .gallery-section .owl-prev {
        left: -30px;
    }

    .hero-wrap .gallery-section .owl-next {
        right: -30px;
    }

    .counter-section .counter-item h2 {
        font-size: 32px;
    }

    .counter-section .counter-item p {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.92);
        padding: 16px;
        border-radius: 16px;
        margin-top: 0px;
    }

    .dropdown-menu {
        background: transparent;
        box-shadow: none;
    }

    .dropdown-item {
        color: #fff;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: transparent;
        color: #ddd;
    }

    .page-story__title,
    .contact-page-layout h2,
    .blog-page-layout h2,
    .gallery-landing-hero h2,
    .single-post-layout__article h1 {
        font-size: 34px;
    }

    .blog-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-highlights__intro h3 {
        font-size: 26px;
    }

    .gallery-landing-hero__collage {
        min-height: 420px;
    }

    .portfolio-story-hero__collage {
        min-height: 440px;
    }

    .portfolio-story-hero__summary {
        grid-template-columns: 1fr;
    }

    .gallery-storyboard__card h3 {
        font-size: 26px;
    }

    .gallery-landing-hero__frame--1 {
        left: 4%;
        width: 54%;
    }

    .gallery-landing-hero__frame--2 {
        right: 2%;
        width: 42%;
    }

    .gallery-landing-hero__frame--3 {
        left: 22%;
        width: 50%;
    }

    .portfolio-related-card__body h3 {
        font-size: 22px;
    }

}

@media (max-width: 767.98px) {

    .page-story,
    .page-copy-grid,
    .page-highlights,
    .contact-page-layout,
    .blog-page-layout,
    .gallery-landing-hero,
    .gallery-storyboard,
    .gallery-copy-panels,
    .gallery-masonry-section,
    .portfolio-story-hero,
    .portfolio-related-work,
    .single-post-layout {
        padding: 32px 0;
    }

    .page-story__title,
    .contact-page-layout h2,
    .blog-page-layout h2,
    .gallery-landing-hero h2,
    .single-post-layout__article h1 {
        font-size: 28px;
    }

    .portfolio-story-hero h2 {
        font-size: 28px;
    }

    .page-story__lead {
        font-size: 18px;
    }

    .page-story__image-card img,
    .blog-feature-card__media img {
        min-height: 320px;
    }

    .page-copy-grid__panel,
    .contact-detail-card,
    .gallery-storyboard__article,
    .gallery-storyboard__card,
    .gallery-copy-panels__card,
    .blog-post-card,
    .single-post-layout__article,
    .portfolio-story-hero__summary-card,
    .portfolio-story-hero__stat,
    .portfolio-related-card__body,
    .contact-map-panel,
    .blog-feature-card__content,
    .page-cta-card {
        padding: 24px;
    }

    .page-highlights__grid,
    .blog-post-grid {
        grid-template-columns: 1fr;
    }

    .page-highlights__intro h3 {
        font-size: 24px;
    }

    .blog-post-card__media {
        margin: -24px -24px 0;
    }

    .gallery-landing-hero__collage {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .gallery-landing-hero__summary {
        margin-top: 26px;
        padding: 24px;
    }

    .portfolio-story-hero__collage {
        min-height: auto;
    }

    .portfolio-story-hero__summary {
        gap: 18px;
        margin-top: 28px;
    }

    .portfolio-story-hero__terms {
        gap: 10px;
    }

    .portfolio-story-hero__term {
        width: 100%;
        justify-content: center;
    }

    .gallery-landing-hero__frame {
        position: relative;
        inset: auto;
        width: 100%;
        height: 220px;
        transform: none;
    }

    .portfolio-story-hero__stat-value {
        font-size: 34px;
    }

    .portfolio-related-card__body h3 {
        font-size: 22px;
    }

    .gallery-masonry-grid {
        columns: 1;
    }

    .contact-map-panel__embed iframe {
        min-height: 300px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-wrap .gallery-section .owl-next {
        right: -20px;
    }

    .hero-wrap .gallery-section .owl-prev {
        left: -20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .hero-wrap .gallery-section .owl-next {
        right: -20px;
    }

    .hero-wrap .gallery-section .owl-prev {
        left: -20px;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        float: right;
        text-align: right;
    }
}

@media (max-width: 767.98px) {
    .collections-section .collection-img {
        height: 350px !important;
    }

    .hero-wrap .gallery-section .owl-next {
        right: 0px;
    }

    .hero-wrap .gallery-section .owl-prev {
        left: 0px;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        float: right;
        text-align: right;
    }
}

@media (max-width: 420px) {

    .contact-detail-card h3 a,
    .blog-post-card h3 a {
        font-size: 16px;

    }

}