/*
 Theme Name: HollisHill Child
 Theme URI: https://wpastra.com/
 Description: Child Theme for Astra Theme
 Author: Your Name
 Template: astra
 Version: 1.0.0
*/

/* Common css */
:root {
      --ivory: #BAAEA1;
      --navy: #050A2D;
      --sec-bg: #F4F6FC;
      --white: #ffffff;
      --black: #000000;
      --input-text-color: #717990;
      --max-width: 1460px;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block;
}

body, ol, ul, li, div, p, span, form, h1, h2, h3, h4, h5, h6, table, thead, th, tbody, tr, td, img, input, textarea, dd, dt, dl {
    word-wrap: break-word;
    outline: none;
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

textarea {
    overflow: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, dd, dt, dl {
    -webkit-margin-before: 0px;
    -webkit-margin-after: 0px;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
}

a img, img {
    border: none;
    outline: none !important;
}

img {
    width: auto;
    max-width: 100%;
    display: block;
}

input[type=submit], input[type=reset], input[type=button], button {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

a, button {
    cursor: pointer;
    text-decoration: none;
    outline: 0 !important;
    color: inherit;
    transition: .3s;
}

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

input {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    outline: 0 !important;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-font-smoothing: antialiased;
    background-color: #fff;
    font-family: "Inter", sans-serif;
}

::selection {
    text-shadow: none;
    background: #4183c466;
}

ul, menu, dir {
    margin: 0;
    padding: 0;
    display: block;
    list-style-type: none;
}

*, *:after, *:before {
    box-sizing: border-box;
    outline: 0;
}

/* Layout & Typography */
/* font-family: "Inter", sans-serif;
font-family: "Playfair Display", serif; */

.layout {
    width: 100%;
    max-width: var(--max-width);
    padding: 0 30px;
    margin: 0 auto;
}

h1{
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 56px;
    color: var(--navy);
    display: block;
    text-transform: uppercase;
}
h2{
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 44px;
    color: var(--navy);
    display: block;
    position: relative;
    text-transform: uppercase;
}
h3{
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    color: var(--black);
    display: block;
    position: relative;
}
h4{
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: var(--black);
    display: block;
    position: relative;
}
.highlight-text{
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: var(--navy);
    display: block;
    text-align: center;
    letter-spacing: 3px;
}
p {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: var(--navy);
    display: block;
}
.sec-pad{
    padding: 100px 0px;
}
.top-pad-0{
    padding-top: 0px !important;
}
.align-center{
    display: flex;
    align-items: center;
}


/* Button Styles */
.fill-btn, .contact-form-main div.wpforms-container-full button[type=submit], .contact-form-main div.wpforms-container-full button[type=submit]:not(:hover):not(:active) {
    font-family: "PT Sans", sans-serif;    
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 64px;
    border: 1px solid var(--ivory);
    background: var(--ivory);
    color: var(--white);
    transition: 0.3s ease;   
    display: inline-block; 
    height: auto;
    border-radius: unset;
}
.fill-btn:hover, .contact-form-main div.wpforms-container-full button[type=submit]:hover {
    background: var(--white);
    color: var(--ivory);
}

/* header section */
/* top header */
.top-header{
    background: var(--navy);
}
.top-header-inner{
    padding: 8px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wel-text p{
    font-family: "PT Sans", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    color: var(--white);
    display: block;
}
.top-menu-text{
    padding: 3px 16px;
    font-family: "PT Sans", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    display: block;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.top-menu-text:hover{
    color: var(--ivory);
}
.top-head-social{
    gap: 12px;
    padding-left: 16px;
}
.top-head-social a{
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* header middle */
.header-main{
    background: #E5E2D9;
}
.header-main.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /* background: #fff; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header-mid-inner{
    display: flex;
    align-items: center;
    padding: 25px 0px;
}
.logo-part{
    flex: 1 0 0;
    display: flex;
    justify-content: center;
}
.header-logo{
    margin-left: 100px;
    overflow: hidden;
}
.auth-part{
    gap: 16px;
}
.auth-link {
    gap: 2px;
}
.auth-link a{
    font-family: "PT Sans", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    color: var(--black);
    display: block;
    transition: 0.3s ease;
}
.auth-link a:hover{
    color: var(--navy);
}

.header-main.fixed .header-logo img{
    max-width: 222px;
}
.header-main.fixed .auth-link a, .header-main.fixed .nav-link a{
    font-size: 15px;
    line-height: 16px;
}
.header-main.fixed .header-bottom-inner{
    padding: 15px 0px;
}

/* header bottom */
.header-bottom-inner{
    border-top: 1px solid var(--navy);
    padding: 24px 0px;
}
.nav-link{
    gap: 90px;
    justify-content: center;
}
.nav-link a {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: var(--black);
    display: block;
    transition: 0.3s ease;
}
.nav-link a:hover, .nav-link a.active {
    color: var(--ivory);
}
.hamburger{
    padding: 7px 7px;
    font-size: 22px;
    background: var(--navy);
    color: #fff !important;
    border-radius: 5px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
/* mobile menu */
.mob-menu-main{
    position: fixed;
    left: -100%;
    top: 90px;
    height: calc(100% - 90px);
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    transition: 0.3s ease;
    overflow: auto;
    z-index: 10;
}
.header-section.mob-sticky .mob-menu-main{
    top: 90px;
    height: calc(100% - 90px);
}
.mob-menu-main.open{
    left: 0;
}
.mob-menu-inner{
    padding: 30px 30px;
}
.mob-menu-inner .nav-link{
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
}
.mob-menu-inner .nav-link a {
    padding: 10px 10px 10px 20px;
    align-self: stretch;
}
.mob-menu-inner .nav-link a:hover,.mob-menu-inner .nav-link a.active{
    background: var(--ivory);
    color: var(--navy);
}
.mob-menu-inner .auth-part{
    display: flex;
    margin-top: 30px;
    margin-left: 20px;
}

/* hollishill belong */
.hollis-belong-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: auto;
}
.hollis-belong-inner > *, .trade-access-inner > *:not(a){
    color: var(--black);
}
.hollis-belong-inner h2, .trade-access-inner h2, .story-content-inner h2, .about-hill-inner h2, .our-philo-right-inner h2, .lookbook-inner h2{
    margin: 8px 0px 32px;
}

/* trade access */
.trade-access-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 50px;
    border: 1px solid var(--navy);
    border-right-width: 6px;
    border-bottom-width: 6px;
}
.trade-access-inner h2{
    max-width: 1100px;
    width: 100%;
}

/* footer */
.footer-top{
    background: var(--navy);
}
.footer-top-inner{
    display: flex;
    justify-content: space-between;
}
.footer-top-left{
    max-width: 470px;
    width: 100%;
    margin-right: 20px;
    display: block;
}
.newsletter-main{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-logo{
    margin-bottom: 32px;
    display: inline-block;
}
.newsletter-field{
    position: relative;
    margin-bottom: 16px;
}
.newsletter-field div.wpforms-container-full:not(:empty){
    margin: 0px auto;
}
.newsletter-field .wpforms-container .wpforms-field{
    padding: 0px;
}
.newsletter-field .wpforms-container .wpforms-field-label{
    display: none;
}
input[type="text"].email-field, .newsletter-field .wpforms-container input[type=email], .newsletter-field div.wpforms-container-full input[type=email]{
    width: 100%;
    padding: 12px 55px 12px 16px;
    background: var(--white);
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: var(--input-text-color);
    border: 0px !important;
    position: relative;
    box-shadow: none !important;
    border-color: transparent !important;
}
button.email-submit, .newsletter-field .wpforms-submit-container{
    border: none;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    width: 32px;
    min-width: 32px;
    height: 32px;
    position: absolute !important;
    right: 4px;
    top: 50%;
    background: transparent;
    padding: 0px;
    transform: translateY(-50%);
    margin: 0px !important;
}
.newsletter-field .wpforms-submit{
    background: transparent url(assets/images/submit-btn.svg) no-repeat !important;    
    font-size: 0px !important;
    background-position: center center !important;
    width: 32px;
    height: 32px !important;
    padding: 0px !important;
}
.newsletter-field .wpforms-submit-spinner{
    margin-left: -10px;
}
.newsletter-main h3{
    color: var(--white);
}
.followus-main{
    gap: 12px;
}
.follow-text{
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    color: var(--input-text-color);
    display: inline-block;
    text-transform: uppercase;
}
.follow-hollis{
    font-family: "PT Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    color: var(--white);
}
.f-social-icon-row{
    gap: 8px;
}
.f-social-icon-row a{
    width: 40px;
    min-width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: 0.3s ease;
    border: 1px solid var(--white);
}
.f-social-icon-row a:hover{
    background: var(--navy);
    color: var(--white);
}
.footer-top-right{
    display: flex;
    gap: 40px;
}
.footer-link-col{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.f-link-title{
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 42px;
    color: var(--black);
    display: block;
}
.f-link-text{
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 42px;
    text-transform: uppercase;
    color: var(--white);
    display: block;
    transition: 0.3s ease;
}
.f-link-text:hover{
    color: var(--input-text-color);
}

/* footer bottom */
.footer-bottom-inner{
    padding: 12px 0px;
}
.footer-bottom-inner p{
    font-size: 16px;
    line-height: 42px;
    color: var(--black);

}

/* story slider */
.story-slider-main{
    position: relative;
}
.story-slider-content{
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.story-content-inner{
    max-width: 573px;
    width: 100%;
    background: rgba(229, 226, 217, 0.7);  
    padding: 64px 64px;  
}
.story-content-inner span{
    text-align: left;
}
.story-content-inner p{
    margin-bottom: 32px;
}
.story-slide img{
    min-height: 992px;
    width: 100%;
    object-fit: cover;
}
/* hero slider */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: 78vh;
    overflow: hidden;
}
.hero-static-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; 
    pointer-events: none;
}
.hero-static-content h1{
    font-size: 70px;
    line-height: 100px;
    color: var(--white);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 0px 20px;
    text-align: center;
}
.hero-slider, .hero-wrapper .slide-item {
    height: 78vh;
    width: 100%;
}

.hero-wrapper .slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    display: block;
}
/* Custom Dots Styling */
.hero-wrapper .slick-dots {
    bottom: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    width: 100%;
    z-index: 20;
}

.hero-wrapper .slick-dots li {
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    width: auto;
}

.hero-wrapper .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px; /* Matching small rectangular width */
    height: 10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #FFFFFF;
    
}

.hero-wrapper .slick-dots li.slick-active button {
    width: 30px;
}

/* explore section */
.explore-light-main{
    background: var(--sec-bg);
}
.explore-title{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.explore-light-row{
    /* margin-top: 64px; */
    padding: 0px 82px;
    display: flex;
    gap: 24px;
}
.explore-light-block{
    width: 25%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.explore-light-block img{
    width: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.5s ease, filter 0.5s ease;
}
.explore-light-block:hover img{
    transform: scale(1.04);
}
.explore-light-block:after {
    content: '';
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(5, 10, 45, 0.8) 100%);
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    transition: opacity 0.5s ease;
    opacity: 0;
}
.explore-light-block:hover:after{
    opacity: 1;
}
.explore-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: absolute;
    bottom: 63px;
    left: 0px;
    right: 0px;
    z-index: 2;
}
.explore-link{
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--white) !important;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: 0;
}
.explore-light-block:hover .explore-link{
    opacity: 1;
}
.explore-tag{
    background: var(--ivory) !important;
    color: var(--white) !important;
    pointer-events: none;
}

/* lighting page */
.hero-main{
    position: relative;    
}
.hero-main:after{
    content: '';
    background: rgba(5, 10, 45, 0.5);
}
.hero-img, .hero-main:after{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
.hero-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-inner{
    padding: 125px 0px;
    position: relative;
    z-index: 2;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}
.hero-inner h1{
    font-weight: 400;
    color: var(--white);
    text-align: center;
}
.breadcrumb{
    gap: 12px;    
}
.breadcrumb a, .breadcrumb span{
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--white);
}

/* collection css */
.collection-inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;  
}
.collection-img{
    padding: 50px 80px;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 296 / 270;
}
.collection-img img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: transform 0.5s ease, filter 0.5s ease;
}
.collection-block:hover img {
    transform: scale(1.06);
}
.collection-content p{
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    margin-top: 10px;
}

/* about us  */
.about-hill{
    background: var(--sec-bg);    
    text-align: center;
}
.about-hill-inner{
    position: relative;
}
.about-content-main{
    max-width: 810px;
    width: 100%;
    margin: auto;
    display: block;
}
.about-hill-inner span,.about-hill-inner h2, .about-hill-inner p, .our-philo-right-inner span, .our-philo-right-inner h2, .our-philo-right-inner p, .our-philo-right-inner ul li{
    color: var(--black);
}
.about-hills-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.cross-img-1{
    position: absolute;
    top: 4%;
    left: -3%;
}
.cross-img-2{
    position: absolute;
    bottom: 11%;
    left: -3%;
}
.cross-img-3{
    position: absolute;
    bottom: 18%;
    right: -3%;
}
.our-philo-inner{
    display: flex;
    align-items: center;
}
.our-philo-left, .our-philo-right{
    width: 50%;
}
.our-philo-left{
    align-self: stretch;
}
.our-philo-left img{    
    object-fit: cover;
    height: 100%;
}
.our-philo-right-inner{
    padding: 62px 62px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.philo-italic{
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    font-style: italic;
    color: var(--black);
    display: block;
    margin-bottom: 32px;
}
.endure-reverse{
    flex-direction: row-reverse;
}

#ast-scroll-top{
    background-color: var(--navy);
}
/* look book */
 .lookbook-inner{
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: auto;
    display: block;
}
.lookbook-inner > *{
    color: var(--black);
}
.lookbook-gallery{
    background: var(--sec-bg);
}
.gallery-item{
    width: calc(25% - 12px);
    margin-bottom: 16px;
    overflow: hidden;
}
.gallery-item img{
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease, filter 0.5s ease;
    width: 100%;
}
.gallery-item:hover img{
    transform: scale(1.06);
}
.view-more-action{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.hidden{
    display:none;
}

/* contact page */
.contact-content-main{
    background: var(--sec-bg);
}
.contact-content-main .lookbook-inner{
    max-width: 1090px;
}
.contact-info-main-inner{
    display: flex;
    gap: 100px;  
    justify-content: center;  
}
.contact-info-row{
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 50%;    
    margin-right: 30px;
}
.contact-form-main{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contact-info-block{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-title{
    font-weight: 400;
}
.contact-info-block p{
    color: var(--black);
}
.contact-info-block a{
    font-family: "PT Sans", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 32px;
    color: var(--black);
    display: block;    
    transition: 0.3s ease;
}
.contact-info-block a:hover{
    opacity: 0.8;
}

.contact-form-main h3{
    font-weight: 400;
}
.contact-form {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 16px;
    }

    .contact-form-main .wpforms-container{
        width: 100%;
        margin: 0px !important;
    }
    .contact-form-main .wpforms-container .wpforms-field{
        padding: 0px 0px 16px;
    }

    .form-field, .contact-form-main .wpforms-container .wpforms-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-field.full-width {
      grid-column: 1 / -1;
    }

    .form-field label, .contact-form-main .wpforms-container .wpforms-field-label  {
      font-family: "PT Sans", sans-serif;
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
      color: var(--black);
      text-transform: capitalize;
      display: block;
      margin-bottom: 0px;
    }

    .form-field input,
    .form-field select, .form-field textarea, .contact-form-main div.wpforms-container-full input[type=text], .contact-form-main div.wpforms-container-full input[type=email], .contact-form-main div.wpforms-container-full .wpforms-form textarea {
      padding: 18px 15px;
      border: 1px solid #D9D9D9;
      background-color: var(--white);
      font-size: 18px;
      transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        transform 0.12s ease;
      outline: none;
      font-family: "PT Sans", sans-serif;
      border-radius: unset;
      height: auto;
    }
    .form-field textarea, .contact-form-main div.wpforms-container-full .wpforms-form textarea{
        resize: none;
        height: 100px;
    }

    .form-field input::placeholder {
      color: #9ca3af;
    }

    /* Hover / focus effects */
    .form-field input:hover,
    .form-field select:hover, .form-field textarea:hover, .contact-form-main div.wpforms-container-full input[type=text]:hover, .contact-form-main div.wpforms-container-full input[type=email]:hover, .contact-form-main div.wpforms-container-full .wpforms-form textarea:hover {
      border-color: #94a3b8;
      background-color: #ffffff;
    }

    .form-field input:focus,
    .form-field select:focus, .form-field textarea:focus, .contact-form-main div.wpforms-container-full input[type=text]:focus, .contact-form-main div.wpforms-container-full input[type=email]:focus, .contact-form-main div.wpforms-container-full .wpforms-form textarea:focus {
      border-color: var(--ivory);
      background-color: #ffffff;
      box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25),
                  0 10px 25px rgba(15, 23, 42, 0.10);
      transform: translateY(-1px);
    }

    /* Button row */
    .form-actions {
      grid-column: 1 / -1;
      display: flex;
      justify-content: flex-start;
      margin-top: 16px;
    }
    /* term & condition */
    .policy-inner{
        display: flex;
    }
    .policy-sidebar{
        display: flex;
        flex-direction: column;      
        border-right: 1px solid #D9D9D9;  
    }
    .policy-sidebar a{
      font-family: "PT Sans", sans-serif;
      font-size: 16px;
      line-height: 32px;
      font-weight: 400;
      color: var(--black);
      background: var(--white);
      display: block;
      padding: 12px 16px;
    }
    .policy-sidebar a:hover{
        background: var(--sec-bg);
    }
    .policy-sidebar a.active{
        background: var(--ivory);
        color: var(--white);
    }
    .policy-content-main{
        padding: 0px 56px;
        flex: 1 0 0;
    }
    .policy-block{
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .policy-block h2{
        text-align: center;
        font-weight: 400;
        color: var(--black);
    }
    .policy-content-row{
        display: flex;
        flex-direction: column;
        gap: 45px;
    }
    .policy-content-block h5, .policy-content-block p, .policy-content-block ul li, .policy-content-block a{
      font-family: "PT Sans", sans-serif;
      font-size: 20px;
      line-height: 32px;
      font-weight: 300;
      color: var(--black);
      display: block;
    }
     .policy-content-block p, .policy-content-block ul li, .policy-content-block a{
        font-size: 16px;
        line-height: 24px;        
     }
     .policy-content-block ul li{
        list-style-type: disc;
        display: list-item;
        margin-left: 25px;
     }
     .policy-content-block h5:not(:first-child){
        margin-top: 45px;
     }
     .policy-content-block p {
        margin-top: 10px;
    }
    .policy-content-block h5 + p {
        margin-top: 0px;
    }

    .policy-toggle, a.policy-close{
        display: none;
     }
     .policy-overlay, .policy-close{
        opacity: 0;
        visibility: hidden;
    }
    .policy-toggle{
        box-shadow: 0 0 0 0 rgba(0,0,0,.2);
        animation: glowPulse 1.5s infinite ease-in-out;
    }

    @keyframes glowPulse {
        0% {
            box-shadow: 0 0 0 0 rgba(0,0,0,.25);
        }
        50% {
            box-shadow: 0 0 12px 6px rgba(0,0,0,.35);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(0,0,0,.25);
        }
    }

    /* find sales rep */
.sales-rep-inner{
    display: flex;
    gap: 70px;
}
.sales-rep-left, .sales-rep-right{
    width: 50%;
}
.sales-rep-title-block{
    margin-bottom: 24px;
    display: block;
}
.sales-rep-title-block h3{
    font-weight: 400;
    margin-bottom: 8px;
}
.sales-rep-title-block p{
    color: var(--black);
}
.sales-rep-data-main{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sales-rep-form form{
    display: flex;
    align-items: center;
    gap: 10px;
}
.sales-rep-form form input{
    flex: 1 0 0;
    padding: 15px 15px;
    border: 1px solid #F0F0F0;
    background: #F0F0F0;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    outline: none !important;
    font-family: "PT Sans", sans-serif;
    height: auto;
    border-radius: unset;
}
.sales-rep-form form .submit-btn{
    padding: 16px 40px;
    outline: unset !important;
}
.sales-rep-form form .submit-btn:hover{
   border-color: var(--ivory);
}
.sales-rep-data-row{
    display: flex;
    flex-direction: column;
}
.sales-rep-data-block{
    padding: 16px 0px;
    border-bottom: 1px solid #DDDDDD;
}
.sales-rep-data-block span, .map-hover-block span{
    color: #666666;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    display: block;
    font-family: "PT Sans", sans-serif;
    margin-bottom: 8px;
}
.sales-rep-data-block p, .map-hover-block p{
    color: var(--black);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sales-rep-data-pagi{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
}
.sales-rep-data-pagi a{
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--sec-bg);
    color: #000;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-family: "PT Sans", sans-serif;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.3s ease;
}
.sales-rep-data-pagi a:hover,  .sales-rep-data-pagi a:focus, .sales-rep-data-pagi a.active{
    color: var(--white);
    background: var(--navy);
}

/* map */
    #map{
      height:100%;
    }
    .highlight-marker{
      background: var(--navy);
      border-radius:50%;
      width:10px;
      height:10px;
      border:1px solid var(--white);
      box-shadow:0 0 5px rgba(0,0,0,.5);
    }
    .sales-rep-tooltip{
        border-radius: 10px;
        padding: 12px;   
        background: var(--white);     
        border: unset;
        width: 250px;
    }

    /* ship and freight */
    .trade-access-inner.ship-trade h2, .trade-access-inner.ship-trade p{
        margin-bottom: 16px;
    }
    .ship-policy-main{
        background: #BAAEA1;
    }
    .ship-policy-inner{
        display: flex;
        gap: 30px;
    }
    .ship-policy-block{
        width: calc(33.33% - 10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .ship-policy-block .ship-policy-icon{
        margin-bottom: 16px;
    }
    .ship-policy-block h3{
        margin: 0px 0px 16px;
        font-size: 30px;
        line-height: 52px;
    }
    .ship-policy-block p, .ship-policy-block .highlight-text, .pac-claim-content p{
        color: var(--black);
    }
    .pac-claim-inner{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .pac-claim-block{
        display: flex;
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .pac-claim-img, .pac-claim-img img{
        width: 100%;
    }
    .pac-claim-content h3{
        font-size: 36px;
        line-height: 52px;
    }
    .pac-claim-content h4{
        margin: 16px 0px;
        font-weight: 400;
        font-style: italic;
    }

    /* Lighting css */
.explore-lighting-inner *, .built-inner *{color: var(--black); text-align: center; }
.explore-lighting-inner{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.explore-lighting-content, .built-content{
    max-width: 940px;
    width: 100%;
    margin: auto;
}
.explore-lighting-content h2, .built-content h2{
    margin: 8px 0px 16px;
}
.explore-lighting-row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.explore-lighting-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #DDDDDD;
    padding: 64px 32px 48px;
}
.explore-lighting-img{
    margin-bottom: 32px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
}
.explore-lighting-block h3, .built-card-block h3{
    font-size: 36px;
    line-height: 42px;
}
.explore-lighting-block .explore-sub-text{
    font-size: 18px;
    line-height: 32px;
    font-style: italic;
    font-weight: 400;
    margin: 8px 0px;
    font-family: "Playfair Display", serif;
}
.explore-lighting-block p{
    font-size: 16px;
    line-height: 24px;
}
.full-text{
    text-align: center;
    padding: 24px 20px;
    background: var(--ivory);
}
.full-text p{
    font-family: "Playfair Display", serif;
    font-size: 42px;
    line-height: 42px;
    font-style: italic;
    font-weight: 400;
    color: var(--white);
}
.function-lighting{
    position: relative;
}
.fun-img{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.fun-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.function-lighting-inner{
    max-width: 520px;
    width: 100%;
    padding: 284px 0px;
    position: relative;
    z-index: 2;
}
.function-lighting-content *{color: var(--navy);text-align: left;}
.function-lighting-content{
    padding: 64px 64px;
    background: var(--white);
}
.function-lighting-content h2{
    margin: 8px 0px 32px;
}
.content-list li{
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-family: "PT Sans", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    
}
.content-list li:not(:last-child){
    margin-bottom: 8px;
}
.content-list li span{
    color: var(--black);
    opacity: 0.7;
}
.content-list img.emoji{
    width: 14px !important;
}
.built-inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.built-card-row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.built-card-block{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.built-card-block .explore-lighting-img{
    margin-bottom: 16px;
}
.built-card-block h3{
    font-weight: 400;
    margin-bottom: 10px;
}
.built-card-block p{
    font-style: italic;
}
.lighting-trade h2{
    margin-bottom: 16px;
}
.lighting-trade a{
    margin-top: 16px;
}

/* lighting product  */
.l-product-inner, .l-product-row{
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.l-product-inner h2{
    text-align: center;
}
.l-product-tab {
    display: flex;
    justify-content: center;
    align-items: center;
}
.brand-tab{
    font-size: 18px;
    line-height: 15px;
    padding: 15px 15px;
    color: var(--black);
    background: rgb(5, 10, 45, 0.1);
    text-transform: uppercase;
    transition: 0.3s ease;
}
.brand-tab.active, .brand-tab:hover{
    background: var(--navy);
    color: var(--white);
}
.l-product-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.l-product-block{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.l-product-img{
    display: flex;
    justify-content: center;
}
.l-product-img img{
    max-width: 100%;
    height: auto;
}
.l-product-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.l-product-chips{
    padding: 0px 16px;
    font-family: "PT Sans", sans-serif;
    font-size: 16px;
    line-height: 32px;
    color: var(--black);
    background: #E5E2D9;
    align-self: flex-start;
    font-weight: 400;
}
.l-product-content h3{
    font-size: 24px;
    line-height: 34px;
    color: var(--black);
    align-self: flex-start;
    font-weight: 400;
}
.l-product-price{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-family: "PT Sans", sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: var(--black);
    font-weight: 400;
    padding: 3px 0px;
}
.l-product-price > div:first-child{
    border-right: 1px solid var(--black);
    padding-right: 16px;
}
.l-product-content p{
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    align-self: flex-start;
    font-weight: 400;
}
.pac-claim{
    background: var(--navy);
}
.pac-claim *, .pac-claim-content p{
    color: var(--white);
}
.pac-claim-content h3{
    margin-bottom: 16px;
}

/* coming soon */
.cat-coming-soon{
    position: relative;
}
.cat-coming-soon:after{
    content: '';
    background: rgba(5, 10, 45, 0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
.coming-soon-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.coming-soon-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.coming-soon-content{    
    position: relative;
    text-align: center;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 260px 0px;
    max-width: 900px;
    margin: auto;
}
.coming-soon-content h1, .coming-soon-content p{
    color: var(--white);
    padding: 0px 20px;
}

@media screen and (max-width: 1499px) {
    .cross-img-2{        
        bottom: 9%;
        left: -2.5%;
        max-width: 200px;
    }
    .cross-img-3{     
        bottom: 14%;
        right: -2%;
        max-width: 200px;
    }
    /* lighting css */
    .full-text p{
        font-size: 30px;
        line-height: 34px;
    }
}

@media screen and (max-width: 1399px) {
    .hero-content-inner{
        padding: 180px 0px;
    }
    .story-slide img{
        min-height: 700px;     
    }
    .explore-light-row{
        padding: 0px 30px;
    }
    /* lighting css */
    .function-lighting-inner{
        padding: 200px 0px;
    }
}
@media screen and (max-width: 1299px) {
    .explore-light-row{
        flex-wrap: wrap;
    }
    .explore-light-block{
        width: calc(33.33% - 16px);
    }
}
@media screen and (max-width: 1199px) {
    .hero-inner{
        padding: 120px 0px;
    }

    .cross-img-2{        
        bottom: 2%;
        max-width: 150px;
    }
    .cross-img-3{     
        bottom: 2%;
        max-width: 150px;
    }
    .our-philo-right-inner{
        padding: 30px 30px;
    }
}

@media screen and (max-width: 1024px) {
    .sec-pad{
        padding: 70px 0px;
    }
    h1{
        font-size: 38px;
        line-height: 48px;
    }
    h2{
        font-size: 32px;
        line-height: 42px;
    }
    h3{
        font-size: 30px;
        line-height: 40px;
    }
    h4{
        font-size: 23px;
        line-height: 32px;
    }
    /* header */
    .top-header,.auth-part,.header-bottom{display: none;}
    .hamburger{
        display: flex;
    }
    .header-mid-inner{justify-content: space-between;}
    .logo-part{
        flex: unset;
        justify-content: flex-start;
    }
    .header-logo{
        margin-left: 0px;
        max-width: 222px;
    }

    /* footer */
    .f-link-text{
        font-size: 16px;
        line-height: 40px;
    }

    

    /* story slider */
    .story-content-inner{
        padding: 45px 45px;
    }

    
    .explore-content{
        bottom: 40px;
        gap: 15px;
    }
    .explore-link{
        font-size: 16px;
        line-height: 24px;
    }
    .explore-content .fill-btn{
        padding: 16px 30px;
        letter-spacing: 1px;
    }

    .collection-img{
        padding: 20px 30px;
    }

    .cross-img-1, .cross-img-2, .cross-img-3{ 
        display: none;
     }
     .about-hills-content{
        gap: 20px;
     }
     .about-content-main{
        max-width: unset;
     }
     /* look book */
     .gallery-item{
        width: calc(33.33% - 12px);
    }

    /* contact page */
    .contact-info-main-inner, .contact-info-row{
        gap: 30px;
    }

    /* find sales rep */
    .sales-rep-inner{
        flex-direction: column;
        gap: 30px;
    }
    .sales-rep-left, .sales-rep-right{
        width: 100%;
    }
    .sales-rep-right{
        height: 500px;
    }

    /* ship and freight */
    .ship-policy-inner{
        gap: 20px;
    }
    .ship-policy-icon img{
        height: 70px;
    }
    .ship-policy-block h3,.pac-claim-content h3 {
        font-size: 24px;
        line-height: 40px;
    }
    .pac-claim-inner{
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .pac-claim-content h4{
        font-size: 20px;
        line-height: 34px;
        margin: 10px 0px;
    }

     /* lighting css */
     .explore-light-block{
        width: calc(50% - 16px);
    }
    .explore-lighting-block h3, .built-card-block h3{
        font-size: 28px;
        line-height: 40px;
    }
    .explore-lighting-block{
        padding: 40px 20px;
    }
    .explore-lighting-img{margin-bottom: 25px;}
    /* lighting css */
    .full-text p{
        font-size: 24px;
        line-height: 30px;
    }
    .function-lighting-inner {
        padding: 130px 0px;
    }
    .built-inner{
        gap: 40px;
    }
    .built-card-row{
        gap: 20px;
    }

    /* hero slider */
    .hero-static-content h1{
        font-size: 54px;
        line-height: 70px;
    }
    .hero-wrapper{
        height: 60vh;
    }
    .hero-slider, .hero-wrapper .slide-item {
        height: 60vh;
        width: 100%;
    }

    .contact-form-main{
        width: 70%;
    }

    /* coming soon */
    .coming-soon-content{
        padding: 200px 0px;
        max-width: 870px;
    }
}

@media screen and (max-width: 950px) {
    /* lighting product  */
    .l-product-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .l-product-block{
        gap: 30px;
    }
}

@media screen and (max-width: 767px) {
    .sec-pad{
        padding: 50px 0px;
    }
    h1{
        font-size: 34px;
        line-height: 46px;
    }
    h2{
        font-size: 28px;
        line-height: 38px;
    }
    h3{
        font-size: 24px;
        line-height: 34px;
    }
    h4 {
        font-size: 22px;
        line-height: 30px;
    }
    .fill-btn{
        padding: 16px 20px;
        font-size: 15px;
        line-height: 15px;
        letter-spacing: 1px;

    }
    /* header */
    .mob-menu-inner .nav-link a {
        padding: 10px 10px;
        font-size: 16px;
        line-height: 16px;
    }
    .auth-link a{
        font-size: 16px;
        line-height: 16px;
    }
    .mob-menu-inner .auth-part{
        margin-top: 20px;
        margin-left: 10px;
    }

    /* footer */
    .footer-top-left{
        margin-right: 12px;
    }
    .footer-logo{
        margin-bottom: 10px;
    }
    .footer-link-col{
        gap: 15px;
    }
    .f-link-title{
        font-size: 18px;
        line-height: 36px;
    }
    /* tarde access */
    .hollis-belong-inner h2, .trade-access-inner h2, .story-content-inner h2, .about-hill-inner h2, .our-philo-right-inner h2, .lookbook-inner h2{
            margin: 8px 0px 25px;
    }
    .trade-access-inner{
        padding: 35px 35px;
    }
    
    /* story slider */
    .story-content-inner p{
        margin-bottom: 25px;
    }
    .story-slide img{
        min-height: 400px;
    }
    .story-content-inner {
        padding: 30px 30px;
    }

    .explore-light-row{
        flex-wrap: wrap;
    }
    .explore-light-block{
        width: calc(50% - 12px);
    }
    .hero-inner {
        padding: 70px 0px;
    }

    .collection-inner{
        grid-template-columns: repeat(2, 1fr);
    }

    .our-philo-inner{
        flex-direction: column;
    }
    .our-philo-left, .our-philo-right{
        width: 100%;
    }
    .philo-italic{
        margin-bottom: 25px;
        font-size: 20px;
        line-height: 28px;
    }
    /* look book */
     .gallery-item{
        width: calc(50% - 8px);     
    }

    /* contact page */
    .contact-info-main-inner{
        gap: 30px;
        flex-direction: column;
    }
    .contact-info-row, .contact-form-main{
        width: 100%;
        margin-right: 0px;
    }

    /* sidebar panel */
    .policy-main{
        position: relative;
    }
    .policy-content-main{
        padding: 0px;
    }
    .policy-toggle{
        cursor: pointer;
        margin-bottom: 15px;
        position: absolute;
        top: 10px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--ivory);
        color: var(--white);
        border-radius: 50%;
  }

  /* overlay (blur + dim) */
  .policy-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.25);
    backdrop-filter:blur(6px);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:1000;
  }
  .policy-sidebar{
    position:fixed;
    top:0;
    left:0;
    height:100vh;
    width:290px;
    background:var(--white);
    padding:25px;
    transform:translateX(-100%);
    transition:.35s ease;
    z-index:1001;
    box-shadow:0 0 20px rgba(0,0,0,.15);
  }
   .policy-close{
    position:fixed;
    top: 12px;
    left: 240px;
    border:0;
    background:var(--ivory);;
    color:var(--white);
    width:30px;
    height:30px;
    border-radius:50%;
    cursor:pointer;
    font-size:14px;
    line-height:30px;
    text-align:center;
    padding: 0px !important;
    z-index: 1002;
    visibility: hidden;
    opacity: 0;
  }

  .policy-sidebar a{
    display:block;
  }
  .policy-sidebar a:nth-child(1){
    margin-top: 30px;
  }

  /* when active */
  .policy-sidebar.active{
    transform:translateX(0);
  }

  .policy-overlay.active, .policy-close.active{
    opacity:1;
    visibility:visible;
  }

  /* ship and freight */
   .ship-policy-inner{
    flex-wrap: wrap;
    justify-content: center;
   }
    .ship-policy-block{
        width: calc(50% - 10px);
    }
    .ship-policy-icon img{
        height: 50px;
    }

     /* lighting css */
    .explore-lighting-block h3, .built-card-block h3{
        font-size: 24px;
        line-height: 34px;
    }
    .explore-lighting-block .explore-sub-text{
        font-size: 16px;
        line-height: 28px;
    }
    .explore-lighting-block{
        padding: 30px 20px;
    }
    .function-lighting-inner {
        padding: 80px 0px;
    }
    .function-lighting-content{
        padding: 35px 35px;
        background: rgba(255, 255, 255, 0.7);
    }
    .function-lighting-content h2 {
        margin: 8px 0px 25px;
    }
    .built-card-row{
        grid-template-columns: repeat(2, 1fr);     
    }
    /* hero slider */
    .hero-static-content h1{
        font-size: 40px;
        line-height: 50px;
    }
    .hero-wrapper{
        height: 40vh;
    }
    .hero-slider, .hero-wrapper .slide-item {
        height: 40vh;
        width: 100%;
    }
    .hero-wrapper .slick-dots{
        bottom: 10px;
    }

    /* coming soon */
    .coming-soon-content {
        padding: 100px 0px;    
    }

}

@media screen and (max-width: 599px) {
    .footer-top-inner{
        flex-direction: column;
        gap: 30px;
    }
    .footer-top-right{
        gap: 20px;
    }

    /* story slider */
    .story-content-inner,.hero-content-block{
        background: rgba(255, 255, 255, 0.7);
    }

    .explore-light-block{
        width: 100%;
    }

    .about-hills-content {
        gap: 15px;
    }

    /* find sales rep */
    .sales-rep-data-pagi{
        gap: 5px;
        padding: 16px 0px;
    }
    .sales-rep-data-pagi a{
        font-size: 14px;
        line-height: 20px;
        width: 35px;
        height: 35px;
    }
    .sales-rep-form form .submit-btn{
        padding: 16px 20px;
    }
    .sales-rep-form form input{
        width: 100%;
    }
    /* ship and freight */
    .pac-claim-inner{
        grid-template-columns: repeat(1, 1fr);        
    }
    .pac-claim-block{
        gap: 15px;
    }

    /* lighting css */
    .explore-lighting-row {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .layout{
        padding: 0px 20px;
    }
    h1{
        font-size: 30px;
        line-height: 40px;
    }
    h2{
        font-size: 22px;
        line-height: 32px;
    }
    h3{
        font-size: 18px;
        line-height: 28px;
    }
    p{
        font-size: 16px;
        line-height: 30px;
    }

   
    /* tarde access */    
    .trade-access-inner{
        padding: 25px 25px;
    }
    .trade-access-inner .fill-btn{
        line-height: 20px;
    }
    .hero-inner {
        padding: 50px 0px;
        gap: 5px;
    }

    .collection-inner{
        grid-template-columns: repeat(1, 1fr);
    }
    .our-philo-right-inner{
        padding: 30px 20px;
    }
    /* look book */
     .gallery-item{
        width: 100%;     
    }
    .gallery-item img{
        width: 100%;
        object-fit: cover;
    }

    /* contact page */
    .contact-info-row{
        gap: 15px;
    }
    .contact-title, .contact-form-main h3{
        font-weight: 700;
    }
    .form-field input, .form-field select, .form-field textarea,  .contact-form-main div.wpforms-container-full input[type=text], .contact-form-main div.wpforms-container-full input[type=email], .contact-form-main div.wpforms-container-full .wpforms-form textarea {
        padding: 12px 12px;
    }

     /* ship and freight */   
    .ship-policy-block{
        width: 100%;
    }
    .ship-policy-block h3 {
        font-size: 22px;
        line-height: 35px;
    }
    /* lighting css */
    .built-card-row{
        grid-template-columns: repeat(1, 1fr);     
    }

    /* hero slider */
    .hero-static-content h1{
        font-size: 32px;
        line-height: 40px;
    }
    .hero-wrapper{
        height: 50vh;
    }
    .hero-slider, .hero-wrapper .slide-item {
        height: 50vh;
        width: 100%;
    }

    /* lighting product  */
    .l-product-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .l-product-block{
        gap: 20px;
    }
}

@media screen and (max-width: 380px) {
    .story-content-inner {
        padding: 20px 20px;
    }
}
