:root{
    --header-height: 3.5rem;

    /*============== Colors ========*/
    --text-color: #000000;
    --img-color: #223466;
    --bg-color: #ffffff; 
    --secondary-bg-color: #c9cace; 

    /*=========== Fonts & Typography ========*/
    --body-font:;
    --biggest-font-size: 4.5rem;
    --big-font-size: 2.5rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /*=========== Font Weight ========*/
    --font-regular: 400;
    --font-semi-bold: 600;
    --font-bold: 700;
    --font-extra-bold: 800;

    /*=========== Z-index ========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

*{
    margin: 0; padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

header{
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #ffffff;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    padding: 0px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .logo{
    width: 150px;
    height: 150px;
}

header .logo img{
    width: 150px;
    height: 150px;
}

header .navbar ul{
    list-style: none;
}

header .navbar ul li{
    position: relative;
    float: left;
}

header .navbar ul li a{
    font-size: var(--normal-font-size);
    padding: 20px;
    color: var(--text-color);
    display: block;
}

header .navbar ul li a:hover{
    border-bottom: 3px solid #000000;
}

header .navbar ul li ul{
    position: absolute;
    left: 0;
    width: 250px;
    background: var(--bg-color);
    display: none;
}

header .navbar ul li ul li{
    width: 100%;
    border-bottom: 1px solid var(--text-color);
}

header .navbar ul li ul li ul{
    left: 200px;
    top: 0;
}

header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul{
    display: block;
}

header #menu{
    font-size: var(--h1-font-size);
    color: var(--text-color);
    cursor: pointer;
    display: none;
}

section{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home{
    flex-wrap: wrap;
    /* background: url('../images/background.webp') no-repeat;
    background-size: 140% 100%;
    background-position: top; */
    padding: 1.5rem 10%;
    padding-top: 4rem;
}

.home .content{
    flex: 1 1 40rem;
    padding-top: 5rem;
    text-align: center;
}

.home .content h1{
    font-size: var(--big-font-size);
    color: var(--font-color);
}
.home .content h3{
    padding-top: 3rem;
    font-size: var(--h2-font-size);
    color: var(--font-color);
}
.home .content p{
    padding-top: 1rem;
    font-size: var(--h3-font-size);
    color: var(--font-color);
}

footer{
    /* background: var(--text-color); */
    padding: 70px 0px;
}

.lucy-power{
    position: relative;
    width: 100%;
    font-size: var(--h3-font-size);
    line-height: 1.5;
    color: rgb(85, 87, 89);
    box-sizing: border-box;
    margin: 0px auto;
    padding: 0px 10vw;
}

.content-wrapper{
    position: relative;
    margin-top: 60px;
}

.page-header{
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: calc(8rem + 20px) 0 8rem 0;
    background: var(--secondary-bg-color);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.page-header .bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-image: url('https://www.lakeviewcemetery.com/files/headers/header/pondatdawn.jpg');
}

.page-header .bg .row h1{
    position: absolute;
    margin-top: 120px;
    font-size: var(--big-font-size);
    color: var(--bg-color);
    margin-left: -20%;
}

/* .page-header::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url('../images/logo.jpeg') repeat-y top left;
    background-size: 80% auto;
    content: '';
} */

.lucy-power1{
    position: relative;
    width: 100%;
    font-size: var(--h3-font-size);
    line-height: 1.5;
    color: rgb(85, 87, 89);
    box-sizing: border-box;
    margin: 0px auto;
    padding: 0px 10vw;
}

.lucy-power1 .content-about-body{
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    margin-left: 5%;
    padding: 4rem 0;
    font-size: var(--h1-font-size);
    vertical-align: top;
}

.lucy-power1 .content-about-body::before{
    position: absolute;
    top: 4rem;
    left: -10%;
    width: 1px;
    height: calc(100%-8rem);
    background: #ffff00;
    content: '';
}

.lucy-power1 .content-about-body .content-bucket{
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lucy-power1 .content-about-body .content-bucket:first-child{
    padding-top: 0 !important;
}

.lucy-power1 .content-about-body .lucy-power{
    width: 100% !important;
    padding: 0 !important;
}

.lucy-power1 .content-about-body .lucy-power .intro{
    font-size: var(--h1-font-size);
    color: var(--text-color);
    letter-spacing: 0;
    line-height: 1.5;
}

.lucy-power1 .content-about-body .lucy-power p{
    font-size: var(--normal-font-size);
    color: var(--text-color);
    letter-spacing: 0;
    line-height: 1.5;
    margin-top: 2%;
}

.lucy-power1 .image-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #333;
    padding: 20% 30vw;
    margin-left: 5%;
}

.lucy-power1 .image-container input{
    appearance: none;
}

.lucy-power1 .image-container .dots{
    position: absolute;
    bottom: 40px;
    z-index: 10000;
    display: flex;
    gap: 6px;
}

.lucy-power1 .image-container .dots label{
    width: 10px;
    height: 10px;
    background: #FFF;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0.5;
    border: 2px solid #FFF;
}

.lucy-power1 .image-container input:nth-child(1):checked ~ .dots label:nth-child(1),
.lucy-power1 .image-container input:nth-child(2):checked ~ .dots label:nth-child(2),
.lucy-power1 .image-container input:nth-child(3):checked ~ .dots label:nth-child(3){
    opacity: 1;
}

.lucy-power1 .image-container .slider{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lucy-power1 .image-container .slider .slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #FF0000; */
    opacity: 0;
    background-size: cover;
    /* clip-path: circle(0% at 0% 50%); */
    transition: 1.5s;
    transition-delay: 0s;
    background-position: left;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.lucy-power1 .image-container .slider .slide:nth-child(even){
    /* clip-path: circle(0% at 100% 50%); */
    background-position: right;
}

.lucy-power1 .image-container input:nth-child(1):checked ~ .slider .slide:nth-child(1),
.lucy-power1 .image-container input:nth-child(2):checked ~ .slider .slide:nth-child(2),
.lucy-power1 .image-container input:nth-child(3):checked ~ .slider .slide:nth-child(3){
    opacity: 1;
    /* clip-path: circle(150% at 50% 50%);
    transition-delay: 1s; */
    background-position: center;
}

.lucy-power1 .image-container .slider .slide .content{
    position: relative;
    padding: 30px 50px 90px 80px;
    max-width: 100%;
}

.lucy-power1 .image-container .slider .slide .content h2{
    color: var(--bg-color);
    font-size: var(--h2-font-size);
}
.lucy-power1 .image-container .slider .slide .content p{
    color: var(--bg-color);
    font-size: var(--normal-font-size);
    background: #00000094;
    padding: 20px 60px;
}

.lucy-power1 .contact-tab{
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 1rem;
}

.lucy-power1 .contact-tab a{
    cursor: pointer;
}

.lucy-power1 .contact-tab .contact-box{
    width: 33.33%;
    color: var(--img-color);
    padding: 2rem 2rem;
    margin: 0 1rem;
}

.lucy-power1 .contact-tab .contact-box h1{
    font-size: var(--biggest-font-size);
    line-height: 1.5;
}

.lucy-power1 .contact-tab .contact-box:hover{
    font-size: var(--biggest-font-size);
    color: var(--bg-color) !important;
    background-color: var(--img-color);
    line-height: 1.5;
}

.lucy-power1 .contact-tab .contact-box h4{
    font-size: var(--h1-font-size);
    line-height: 1.5;
}
.lucy-power1 .contact-tab .contact-box p{
    font-size: var(--normal-font-size);
    line-height: 1.5;
}

.contact-section-box{
    margin: 0 auto;
    /* background: #0077B5; */
    padding: 0 10vw;
}

.contact-section-box .form-box{
    width: 100%;
    height: auto;
    flex: 50%;
    margin: 0 2rem;
    padding: 1rem 1rem;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0px 10px 0px var(--img-color);
}

.contact-section-box .contact-map{
    width: 100%;
    height: auto;
    flex: 50%;
}

.contact-form{
    width: 100%;
    height: 40px;
    color: var(--img-color);
    border: 1px solid #bcbcbc;
    border-radius: 5px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}
.contact-form-textarea{
    width: 100%;
    height: 130px;
    color: var(--img-color);
    border: 1px solid #bcbcbc;
    border-radius: 5px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.contact-section-box .form-box a{
    margin: 0;
}

.home-history-section{
    /* padding: 4rem 0; */
}

/* .home-history-section .history-section-col{ */
.home .history-section-col{
    float: left;
    position: relative;
    width: 33.3333%;
    text-align: center;
    box-sizing: border-box;
    padding: 0px 2em;
    text-decoration: none;
}

/* .home-history-section .history-section-col::before { */
.home .history-section-col::before {
    right: 2px;
}
/* .home-history-section .history-section-col::before,  */
.home .history-section-col::before, 
/* .home-history-section .history-section-col::after{ */
.home .history-section-col::after{
    position: absolute;
    top: 0px;
    width: 1px;
    height: 100%;
    content: "";
    background: rgba(217, 220, 224, 0.5);
}
/* .home-history-section .history-section-col::after{ */
.home .history-section-col::after{
    right: -2px;
}

/* .home-history-section .history-section-col p{ */
.home .history-section-col p{
    color: var(--text-color);
    margin-bottom: 1rem;
    padding: 0 10px;
}

/* .home-history-section .history-section-col .title{ */
.home .history-section-col .title{
    font-size: var(--h1-font-size);
    color: var(--text-color);
    line-height: 1.5;
}

.home-features{
    /* position: relative; */
}

.home-features .feature#first-feature{
    /* background-image: url('https://www.lakeviewcemetery.com/images/recent-loss-bg.jpg'); */
    background: var(--bg-color);
}
.home-features .feature#second-feature{
    /* background-image: url('https://www.lakeviewcemetery.com/images/recent-loss-bg.jpg'); */
    background: var(--bg-color);
}
.home-features .feature#third-feature{
    /* background-image: url('https://www.lakeviewcemetery.com/images/recent-loss-bg.jpg'); */
    background: var(--bg-color);
}

.home-features .feature{
    display: block;
    position: relative;
    padding: 4rem 0;
    border-bottom: 1px solid var(--img-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-features .feature:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    background-size: contain;
    background-repeat: repeat-y;
    content: '';
}

.home-features .feature:last-child{
    margin-bottom: 0;
}

.left-para{
    width: calc(29.1666666667% - 20px);
    margin-left: -30%;
}

.home-features .feature .left-para{
    width: calc(80% - 20px);;
}

.home-features .feature p{
    color: var(--text-color);
}
.home-features .feature p.title{
    font-size: var(--h2-font-size);
}

span.button-link{
    position: relative;
    display: inline-block;
    font-size: var(--normal-font-size);
    font-weight: var(--font-bold);
    color: var(--img-color);
    letter-spacing: 2;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
}

#gallery-section{
    text-align: center;
    padding: 4rem 0px;
}

#gallery-section i{
    font-size: var(--h1-font-size);
    color: var(--img-color);
    padding: 1rem 0px;
}

#gallery-section a{
    text-decoration: none;
}

#gallery-section p.intro{
    font-size: var(--h1-font-size);
    color: var(--img-color);
    padding: 1rem 0px;
    text-transform: capitalize;
}

#gallery-section p.sub-header{
    font-size: var(--normal-font-size);
    color: var(--img-color);
    text-transform: uppercase;
    margin-bottom: 4rem;
}

#gallery-section .image{
    position: relative;
    height: 19vw;
    width: calc(25% - 20px);
    margin-left: 20px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center center;
}

#gallery-section .image .content{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: var(--secondary-bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.6s;
}

#gallery-section .image .content:hover{
    opacity: 0.7;
}

#gallery-section .image .content p{
    font-size: var(--h2-font-size);
    padding: 4rem 1rem;
    margin: 2px 2px;
    transform: translateY(25px);
    transition: transform 0.6s;
}
/* span.button-link::before{
    position: absolute;
    top: calc(50% - 2px);
    right: -3em;
    display: block;
    width: 1.9rem;
    height: 1.9rem;
    background-color: var(--secondary-bg-color);
    content: '';
    transform: translate(0, -50%);
    border-radius: 50%;
}

span.button-link::after{
    position: absolute;
    top: calc(50% - 2px);
    right: -3.7em;
    display: block;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    font-size: .8rem;
    text-align: center;
    color: var(--bg-color);
    content: "\f0da" !important;
    transform: translate(0, -45%);

} */

.history-section{
    position: relative;
    background: var(--secondary-bg-color);
    overflow: hidden;
    padding: 4rem 0px;
}

.history-section .history-section-col{
    float: left;
    position: relative;
    width: 33.3333%;
    text-align: center;
    box-sizing: border-box;
    padding: 0px 2em;
    text-decoration: none;
}

.history-section .history-section-col::before {
    right: 2px;
}
.history-section .history-section-col::before, 
.history-section .history-section-col::after{
    position: absolute;
    top: 0px;
    width: 1px;
    height: 100%;
    content: "";
    background: rgba(217, 220, 224, 0.5);
}
.history-section .history-section-col::after{
    right: -2px;
}

.history-section .history-section-col p{
    color: var(--bg-color);
    margin-bottom: 1rem;
    padding: 0 10px;
}

.history-section .history-section-col .title{
    font-size: var(--h1-font-size);
    color: var(--bg-color);
    line-height: 1.5;
}


.container{
    max-width: 1170px;
    /* background: red; */
    margin: auto;
}

.row{
    display: flex;
    justify-content: space-around;
    padding: 20px 100px;
    /* margin-left: -20px; */
}

footer ul{
    list-style: none;
}

footer .container .row{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: left;
    padding: 7%;
}

footer .container .row .footer-col{
    position: relative;
    width: 25%;
    padding: 0px 15px;
}

footer .container .row .border::before{
    content: '';
    position: absolute;
    right: 0px;
    border-right: 1px solid #c9cace;
    height: 100%;
}

.footer #subscribe-fields .col{
    line-height: 3;
}

.footer #subscribe-fields .intro{
    font-size: var(--h1-font-size);
}

.footer #subscribe-fields .span10{
    width: calc(100% - 70%);
    margin-left: 20px;
}

.footer #subscribe-fields .span10 .btn{
    width: 100%;
}

.footer .footer-features{
    position: relative;
    background-image: url('https://www.lakeviewcemetery.com/images/footer-flowers.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    padding: 30px;
}

.footer .footer-features::before{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.2;
    content: "";
}

.row::before, .row::after
 {
    display: table;
    content: "";
    line-height: 0;
}

.row:after {
    clear: both;
}

.span12{
    width: calc(50% - 20px);
    margin-left: 20px;
}

.footer .footer-features .footer-box{
    background-color: rgba(85, 87, 89, 0.8);
    box-sizing: border-box;
    padding: 2em 10vw;
}

.footer .footer-features .footer-box p{
    margin-bottom: 0px;
    color: var(--bg-color);
    text-align: center;
    font-size: var(--h2-font-size);
}

.footer .footer-features .footer-box a{
    color: var(--bg-color);
    cursor: pointer;
}

.footer .footer-features .quote{
    position: relative;
    margin: 10em 0px 6em;
}

footer .footer-features .quote::before{
    top: -3em;
}

.footer .footer-features .quote::before, footer .footer-features .quote::after {
    position: absolute;
    left: 50%;
    width: 150px;
    height: 5px;
    content: "";
    transform: translate(-50%, 0px);
    perspective: 1000px;
    border-top: 1px solid rgb(217, 220, 224);
    border-bottom: 1px solid rgb(217, 220, 224);
}

footer .footer-features .quote::before, footer .footer-features .quote::after {
    position: absolute;
    left: 50%;
    width: 150px;
    height: 5px;
    content: "";
    transform: translate(-50%, 0px);
    perspective: 1000px;
    border-top: 1px solid rgb(217, 220, 224);
    border-bottom: 1px solid rgb(217, 220, 224);
}

footer .footer-features .quote blockquote, 
footer .footer-features .quote p{
    padding-left: 0px;
    color: rgb(255, 255, 255);
    -webkit-font-smoothing: antialiased;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    text-align: center;
    font-weight: var(--font-extra-bold);
    font-style: italic;
    margin-bottom: 1.5em;
}

/* footer .footer-features .socialicons{ */
.copy-right .socialicons{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

/* footer .footer-features .socialicons a{ */
.copy-right .socialicons a{
    color: var(--bg-color);
    font-size: var(--h1-font-size);
    margin: 10px;
}

.copy-right .socialicons a#instagram:hover{
    /* padding: 0.5rem 0.5rem; */
    color: #ee2a7c;
}

.copy-right .socialicons a#facebook:hover{
    color: blue
}
.copy-right .socialicons a#linkedin:hover{
    color: #0077B5
}
.copy-right .socialicons a#youtube:hover{
    color: red
}

.footer-col h4{
    font-size: var(--h2-font-size);
    position: relative;
    text-transform: capitalize;
    margin-bottom: 30px;
    color: var(--text-color);
    font-weight: var(--font-bold);
    width: max-content;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50%;
    background: var(--img-color);
    box-sizing: border-box;
    height: 2px;
}

.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}

.footer-col ul li a{
    font-size: var(--smaller-font-size);
    text-transform: capitalize;
    color: var(--text-color);
    text-decoration: none;
    font-size: var(--font-bold);
    /* color: #bbbbbb; */
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover{
    color: var(--text-color);
    padding-left: 10px;
}

.copy-right{
    background: #c9cace;
}

.copy-right .col{
    /* width: 50%; */
    padding: 25px;
}

.copy-right .col p{
    color: var(--text-color);
}

.copy-right .col a{
    color: var(--text-color);
}
.copy-right .col a:hover{
    color: var(--text-color);
    text-decoration: underline;
    /* bottom: 1px solid var(--img-color); */
}

.copy-right .btn-portion{
    display: flex;
    justify-content: space-between;
    text-align: center;
    /* width: 50%; */
}

.btn{
    width: 100%;
    padding: 15px 15px;
    text-align: center;
    margin: 10px;
    display: inline-block;
    color: var(--text-color);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    transition: 0.5s;
    border: 1px solid var(--img-color);
    cursor: pointer;
}

.btn:hover{
    background-color: var(--img-color);
    color: var(--bg-color);
}

/* @media screen and (min-width: 1150px){
    :root{
        --biggest-font-size: 10.5rem;
        --big-font-size: 5.5rem;
        --h1-font-size: 3rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
} */
@media(max-width: 991px){
    header{
        padding: 20px;
    }

    header #menu{
        display: initial;
    }

    header .logo{
        width: 100px;
        height: 100px;
    }

    header .logo img{
        width: 100px;
        height: 100px;
    }

    header .navbar{
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--bg-color);
        border-top: 1px solid var(--text-color);
        display: none;
        text-align: center;
        height: calc(80vh - 3rem);
        overflow-x: hidden;
        overflow-y: auto;
    }

    header .navbar ul li{
        width: 100%;
    }

    header .navbar ul li ul{
        position: relative;
        width: 100%;
    }

    header .navbar ul li ul li{
        background: var(--bg-color);
    }

    /* .lucy-power1 .image-container{
        padding: 20% 30vw;
    } */

    .lucy-power1 .image-container .dots{
        bottom: 20px;
        gap: 3px;
    }

    .lucy-power1 .image-container .dots label{
        width: 10px;
        height: 10px;
    }

    .lucy-power1 .image-container .slider .slide .content{
        /* position: relative; */
        padding: 20px 20px 60px 40px;
        max-width: 100%;
    }
    /* header .navbar ul li ul li ul{
        width: 100%;
        left: 0;
    } */

    .fa-times{
        transform: rotate(0deg);
    }

    header .navbar.nav-toggle{
        /* top: 7.4rem; */
        opacity: 1;
        display: initial;
    }

    .lucy-power{
        padding: 5%;
    }

    .page-header .bg .row h1{
        /* position: absolute;
        margin-top: 120px;
        font-size: var(--big-font-size);
        color: var(--bg-color); */
        margin-left: -15%;
    }

    .contact-section-box{
        flex-direction: column;
        margin: 0;
    }

    .contact-section-box .form-box{
        width: 100%;
        margin-bottom: 2rem;
    }

    .contact-section-box .contact-map{
        width: 100%;
    }

    .footer .lucy-power .row .col .intro{
        font-size: var(--h2-font-size) !important;
        line-height: 1.5;
    }

    .footer .footer-features{
        padding: 0px;
    }

    .footer #subscribe-fields .span10{
        width: calc(100% - 60%);
        margin-left: 20px;
    }
    
    .footer #subscribe-fields .span10 .btn{
        width: 100%;
    }

    .span12{
        width: calc(100% - 20px);
        margin-left: 20px;
    }

    .copy-right .btn-portion{
        width: 100%;
    }

    .copy-right .row{
        flex-direction: column;
        text-align: center;
    }

    .copy-right .col{
        width: 100%;
        padding: 10px;
    }
}

@media(max-width: 768px){
    .home .history-section-col{
        padding-top: 4rem;
        width: 100%;
        margin-bottom: 4rem;
        padding-bottom: 4rem;
    }

    .home .history-section-col::before {
        bottom: 2px;
        
    } 
    .home .history-section-col::before, 
    .home .history-section-col::after{
        position: absolute;
        top: auto;
        left: 20%;
        width: 60%;
        height: 1px;
        content: "";
        background: rgba(217, 220, 224, 0.5);
    }
    .home .history-section-col::after{
        bottom: -2px;
    }

    .home-features{
        margin-top: -20%;
    }

    .lucy-power{
        padding: 5%;
    }

    .lucy-power1 .image-container{
        padding: 40% 30vw;
    }

    .lucy-power1 .contact-tab{
        flex-direction: column;
    }

    .lucy-power1 .contact-tab .contact-box{
        width: 100%;
        margin: -1rem;
    }
    /* .lucy-power1 .image-container .dots{
        bottom: 20px;
        gap: 3px;
    }

    .lucy-power1 .image-container .dots label{
        width: 10px;
        height: 10px;
    } */

    .footer-col{
        width: 50% !important;
        margin-bottom: 30px;
    }
}

@media(max-width: 500px){
    .lucy-power{
        padding: 5%;
    }
    .footer-col{
        width: 100% !important;
        /* margin-bottom: 30px; */
    }
}