:root {
    --primary: #F37521;
    --secondary: #EEC519;
    --backGround: #F3F097;
    --creamWhite: #FFF5EE;
}

h3, h4, p, a, li {
    font-family:"urbane-rounded";
    letter-spacing: .25px;
}

/*-----------------------------------------
HERO SECTION
-----------------------------------------*/
.dp-home-hero {
    background-image: url(/wp-content/uploads/2025/07/Home-Page_1-1.jpg);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    /* background: #F37521; */
    /* background: linear-gradient(90deg, rgba(243, 117, 33, 1) 0%, rgba(238, 197, 25, 1) 21%, rgba(238, 197, 25, 1) 83%, rgba(243, 240, 151, 1) 100%); */
    background-size: cover;
    background-repeat: no-repeat;

}

@media(min-width: 1600px) {
    .dp-home-hero {
        background-position: 100% 20%;
    }
}

.dp-accent-img {
    position: absolute;
}

.hero-btn-wrapper {
    display: flex;
    gap: 10px;
}

.hero-large-flower {
    display: none;
    animation: horizontal 4.2s ease-in-out infinite;
    width: 250px;
    bottom: 10%;
    left: 4%;
}

.hero-small-flower {
    display: none;
    animation: vertical 4.4s ease-in-out infinite;
    width: 150px;
    top: -15%;
    left: 32%;
}

.hero-large-diamond {
    display: none;
    animation: horizontal 5.2s ease-in-out infinite;
    width: 175px;
    top: 20px;
    right: 0px;
}

.hero-small-diamond {
    display: none;
    animation: vertical 4.5s ease-in-out infinite;
    width: 75px;
    bottom: 150px;
    right: 50px;
}

.hero-small-puffy-flower {
    display: none;
    animation: horizontal 3.5s ease-in-out infinite;
    width: 60px;
    right: 50px;
    top: 20%;
}

.dp-home-hero h1 {
    color: var(--offWhite);
    position: relative;
    z-index: 1;
    line-height: 1;
    font-size: 75px;
    margin-bottom: 25px;
    width: 90%;
    text-shadow: -6px 6px 0 var(--primary);
}

.dp-home-hero p {
    font-size: 18px;
    color: var(--creamWhite);
    background: var(--primary);
    padding: 25px;
    border-radius: 30px;
    z-index: 1;
    position: relative;
    font-weight: 200;
    letter-spacing: .25px;
    margin-bottom: 40px;
    width: 80%;
}

.home-hero-image {
    position: absolute;
    top: 60%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 0;
    width: 500px;
    height: auto;
}

.dp-home-hero .yellow-btn {
    display: block;
    transform: translateY(60px);
    text-align: center;
    width: fit-content;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 600;
}

@keyframes horizontal {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(0) translateX(7px); }
  100% { transform: translateY(0) translateX(0); }
}

@keyframes vertical {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(8px) translateX(0); }
  100% { transform: translateY(0) translateX(0); }
}

/*-----------------------------------------
PRODUCT SECTION
-----------------------------------------*/
.dp-home-products {
    padding: 30px 0 15px;
    background: var(--creamWhite);
    overflow: hidden;
}
.dp-home-products h2 {
    color: var(--primary);
    text-align: center;
}
.product-card {
    position: relative;
}
.dp-home-products .product-card a {
    height: 100%;
    display: block;
}
.product-card a:hover h4 {
    font-weight: 700;
}
.product-card a:hover h4:after {
    bottom: -2px;
    opacity: .5;
}
.product-card h4 {
    position: relative;
}
.product-card h4:after {
    transition: linear .1s;
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    opacity: 0;
}
.product-coming-soon {
    position: absolute;
    top: 0;
    text-align: center;
    width: 100%;
    background: rgba(243, 117, 33, .3);
    color: var(--creamWhite);
    padding: 60% 0;
    height: calc(100% - 38px);
    border-radius: 50px;
    margin: 0;
    left: 0;
    font-family: 'eight';
    font-size: 38px;
    line-height: 1;
}
.product-slider .owl-item img {
    background: var(--secondary);
    border-radius: 50px;
    height: 275px;
    width: 250px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.product-slider .owl-nav {
    display: none;
}

.product-slider .owl-item h4 {
    color: var(--primary);
    font-weight: 300;
    margin-top: 20px;
    text-align: center;
    font-weight: 400;
    width: fit-content;
    margin: 20px auto;
}

.product-slider .owl-nav button {
    background: rgba(243, 117, 33, .7);
    color: var(--secondary);
    padding: 10px 16px;
    border: none;
    border-radius: 100px;
    font-size: 14px;
    transition: linear.1s;
}

.product-slider .owl-next {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.product-slider .owl-prev {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

/*-----------------------------------------
BANNER SECTION
-----------------------------------------*/
.dp-home-banner {
    margin: 67px 0 0;
    padding: 15px 0;
    background: var(--creamWhite);
    overflow: hidden;
    pointer-events: none;
    max-height: 56px;
}

.dp-home-banner .name-carousel .owl-item p {
    color: var(--primary);
    margin: 0;
    text-align: center;
    font-weight: 200;
    font-size: 18px;
}

.dp-home-banner .owl-nav {
    display: none;
}

.name-carousel .owl-item {
    display: flex;
    min-width: fit-content !important;
    align-items: center;
}

.banner-text {
    min-width: fit-content;
}

.name-carousel img {
    width: 25px;
    margin: auto 20px;
    text-align: center;
    display: block;
}


/*-----------------------------------------
CONTENT SECTION
-----------------------------------------*/
.dp-home-content {
    padding: 70px 0 0;
    position: relative;
    background: var(--secondary);
}
.dp-home-content .container {
    background: var(--primary);
    padding: 125px 75px;
    border-radius: 40px
}
.dp-mobile-accent {
    display: none;
    width: 275px;
    height: 275px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.dp-content-inner h2, .dp-content-inner p {
    color: var(--creamWhite);
}
.dp-content-inner h2 {
    font-size: 65px;
    line-height: 1;
}
.dp-content-inner p {
    margin: 30px 0 50px;
    font-weight: 200;
    font-size: 20px;
}

.dp-content-inner .white-btn {
    margin: auto;
    display: block;
    width: fit-content;
    text-align: center;
}

.dp-content-img {
    bottom: 0;
    right: 0;
    height: 100%;
}
.dp-content-accent-img {
    width: 375px;
    right: -45px;
    bottom: -18%;
    z-index: 1;
}
.content-accent-img-one {
    width: 70px;
    top: 30px;
    right: 30px;
    z-index: 1;
}
.content-accent-img-two {
    width: 30px;
    top: 25px;
    right: 20px;
    z-index: 1;
}
#mc_embed_signup {
    background: none !important;
    font-family:"urbane-rounded" !important;
    letter-spacing: .25px;
}
#mc_embed_shell #mc_embed_signup {
    width: 100%;
}
.indicates-required, .mc-field-group label {
    display: none;
}
#mce-EMAIL {
    font-size: 16px;
    border: none;
    border-radius: 50px;
    padding: 10px 10px 10px 20px;
    width: 100%;
    background: rgba(255, 255, 255, .6);
}
#mc-embedded-subscribe {
    background: var(--primary);
    color: var(--creamWhite);
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    transition: linear .1s;
    border: none;
    margin-top: 15px;
}

#mc-embedded-subscribe:hover {
    background: var(--secondary);
    color: var(--creamWhite);
}
#mce-success-response {
    color: var(--primary);
    padding: 10px 0;
}
/*-----------------------------------------
WHY SECTION
-----------------------------------------*/
.dp-home-why {
    padding: 50px 15px;
    background: var(--creamWhite);
    position: relative;
}

.dp-home-why h2 {
    color: var(--primary);
    text-align: center;
    margin: 30px 0;
}

.why-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.why-dosepop-item {
    padding: 10px;
    background: var(--primary);
    border-radius: 50px;
    margin-bottom: 30px;
    width: 48%;
    display: flex;
    align-items: center;
}

.why-dosepop-item p {
    color: var(--creamWhite);
    margin: 0;
    font-size: 20px;
    padding: 0 10px 0 20px;
    line-height: 1.4;
    letter-spacing: .25px;
    font-weight: 400;
}
.dp-home-why .pop {
    position: absolute;
    bottom: -35px;
    right: -38px;
}
.why-dosepop-item img {
    height: 60px;
    min-width: 60px;
    background: var(--secondary);
    padding: 10px;
    border-radius: 50px;
}
.why-accent-one {
    width: 75px;
    top: -25px;
    left: 27%;
}
.why-accent-two {
    width: 50px;
    left: 45%;
}
.why-accent-three {
    width: 75px;
    top: 40px;
    right: 24%;
    z-index: 0;
}
.dp-home-why {
    background: var(--secondary);
}

.dp-home-why h2 {
    color: var(--primary);
    position: relative;
    width: fit-content;
    margin: 0 auto 70px auto;
}

.dp-home-why .why-dosepop-item {
    background: var(--creamWhite);
}

.dp-home-why .why-dosepop-item img {
    background: var(--secondary);
}

.dp-home-why .why-dosepop-item p {
    color: var(--primary);
}
.why-accent-one-mobile.dp-accent-img, .why-accent-two-mobile.dp-accent-img {
    display: none;
}

/*-----------------------------------------
SERVICES SECTION
-----------------------------------------*/
.dp-home-services {
    padding: 50px 0;
    background: var(--creamWhite);
}

.dp-home-services h2 {
    color: var(--primary);
    text-align: center;
}

.dp-service-card-inner h3 {
    font-size: 18px;
    color: var(--primary);
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    position: relative;
    width: fit-content;
    margin: 20px auto;
}

.dp-service-card-inner h3:after {
    transition: linear .1s;
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    opacity: 0;
}

.dp-service-card a:hover h3 {
    font-weight: 700;
}
.dp-service-card a:hover h3:after {
    bottom: -2px;
    opacity: .5;
}
.product-slider {
    padding-inline: 0;
}
.owl-stage {
    width: 100%;
}
.owl-item {
    width: 175px;
}
.product-slider-title {
    text-align: center;
    font-size: 14px;
}
.dp-service-img-wrapper {
    position: relative;
    overflow: hidden;
}

.dp-service-img-wrapper img {
    position: relative;
    z-index: 1;
}
.dp-service-card-wrapper .col-6.col-lg-3:nth-child(4) .dp-service-img-wrapper img {
    transform: translateY(30px);
}
.dp-service-card {
    padding: 0 10px;
}

.dp-service-img-wrapper:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 50% 50% 0 0;
    height: 85%;
    width: 100%;
    z-index: 0;
}
.services-blurb {
    color: var(--primary);
    text-align: center;
    font-size: 18px;
}
/*-----------------------------------------
HOW IT WORKS SECTION
-----------------------------------------*/
.home #how-it-works {
    overflow: hidden;
    background: var(--primary);
}
.home #how-it-works h2 {
    color: var(--creamWhite);
}
    
/*-----------------------------------------
RESPONSIVE SECTION
-----------------------------------------*/
@media (max-width: 1199px) {
    .home-hero-image {
        left: -20%;
    }
}

@media (max-width: 1150px) {
    .home-hero-image {
        left: -28%;
    }
}

@media (max-width: 1040px) and (min-width: 992px) {
    .home-hero-image {
        left: -33%;
    }
}



@media(min-width: 1600px) {
    .home-hero-image {
        left: 10%
    }
}

/* iphone 12 - 14 */
@media(max-width: 430px) and (min-width:391px){
    .dp-home-services h3 .one-line {
        transform: translateX(0px) !important;
    }
}
@media(max-width: 390px) and (min-width:361px){
    .dp-home-services h3 .one-line {
        transform: translateX(-6px) !important;
    }
}


@media(max-width: 360px) and (min-width:321px){
    .dp-home-hero .home-hero-image {

    }
}
@media(max-width: 320px) {
    .dp-home-hero .home-hero-image {
    }
    .dp-home-hero h1 {
        font-size: 36px !important;
    }
    .yellow-btn {
        padding: 10px 20px !important
    }
}

@media(max-width: 767px) {
    h2 {
        font-size: 30px;
    }
    /*-----------------------------------------
    HERO SECTION
    -----------------------------------------*/
    .dp-home-hero {
        margin-top: 0;
        padding: 50px 0;   
        background-size: cover;
        /* background: radial-gradient(circle, rgba(243, 240, 151, 1) 0%, rgba(238, 197, 25, 1) 68%, rgba(243, 117, 33, 1) 99%); */
        background-position: 25% 100%;
    }
    .hero-large-diamond, .hero-small-diamond  {
        display: none;
    }
    .dp-home-hero h1 {
        color: var(--offWhite);
        position: relative;
        z-index: 1;
        line-height: 1;
        font-size: 45px;
        text-shadow: -4px 4px 0 var(--primary);
    }
    
    .home-hero-image {
        position: absolute;
        bottom: -45px;
        left: -60px;
        z-index: 0;
        height: auto;
    }
    
    .hero-large-flower {
        display: none;
    }
    
    .hero-small-puffy-flower {
        width: 50px;
        right: -15px;
        top: 20%;
    }
    
    .dp-home-hero p {
        display: none;
        font-size: 14px;
        line-height: 1.2;
        color: var(--secondary);
        background: var(--primary);
        padding: 15px;
        border-radius: 30px;
        z-index: 1;
        position: relative;
        width: 100%;
        transform: translateX(-50px);
        width: 140%;
        transform: translateX(-90px);
    }
    
    .dp-home-hero .yellow-btn {
        display: block;
        text-align: center;
        transform: none;
    }
    
    /*-----------------------------------------
    PRODUCT SECTION
    -----------------------------------------*/
    .dp-home-products {
        padding: 30px 0 15px;
        background: var(--creamWhite);
    }
    .product-slider .owl-nav {
        display: block;
    }
    
    .product-slider .owl-item img {
        background: var(--secondary);
        border-radius: 40px;
        height: 225px;
    }
    
    .product-slider .owl-item h4 {
        color: var(--primary);
        font-weight: 300;
        margin-top: 20px;
    }
    
    .product-slider .owl-nav button {
        background: rgba(243, 117, 33, .7);
        color: var(--secondary);
        padding: 10px 16px;
        border: none;
        border-radius: 100px;
        font-size: 14px;
        transition: linear.1s;
    }
    
    .product-slider .owl-next {
        position: absolute;
        right: -5px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .product-slider .owl-prev {
        position: absolute;
        left: -5px;
        top: 50%;
        transform: translateY(-50%);
    }
    .product-coming-soon {
        font-size: 26px;
        border-radius: 25px;
    }
    
    /*-----------------------------------------
    BANNER SECTION
    -----------------------------------------*/
    .dp-home-banner {
        margin: 43px 0 0;
    }
    .dp-home-banner .name-carousel {
        margin: 0;
        padding: 0;
    }
    
    .dp-home-banner .name-carousel .owl-item p {
        color: var(--primary);
    }
    
    .name-carousel .owl-stage-outer {
        width: 100%;
    }
    
    /*-----------------------------------------
    CONTENT SECTION
    -----------------------------------------*/
    .dp-home-content .container {
        padding: 0;
        background: none;
        width: calc(100% - 30px);
    }
    .dp-content-inner p {
        margin: 15px 0;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.2;
    }
    .dp-home-content {
        background: var(--primary);
        overflow:hidden;
        padding: 20px 0;
    }
    .dp-content-inner {
        background: var(--creamWhite);
        padding: 20px 20px 300px;
        border-radius: 25px;
        text-align: center;
    }
    .dp-content-img {
        bottom: 0;
        right: 0;
        height: 275px;
        z-index: 10;
    }
    .dp-content-inner h2 {
        font-size: 30px;
    }
    .dp-mobile-accent {
        display: block;
    }
    .dp-content-inner h2, .dp-content-inner p {
        color: var(--primary);
        padding: 0;
        position: relative;
        z-index: 1;
    }
    .dp-content-accent-img {
        display: none;
        width: 225px;
        right: -30px;
        bottom: -35%;
        z-index: 1;
    }
    .dp-content-inner .orange-btn {
        margin: inherit;
    }
    
    .content-accent-img-one {
        top: 75px;
        bottom: auto;
        right: 20px;
    }
    
    .content-accent-img-two {
        top: 65px;
        right: 15px;
        bottom: auto;
    }
    .content-accent-img-one, .content-accent-img-two {
        display: none;
    }
    .dp-content-inner .white-btn {
        font-size: 18px;
    }
        
    /*-----------------------------------------
    WHY SECTION
    -----------------------------------------*/
    .dp-home-why {
        padding: 30px 15px;
        background: var(--creamWhite);
        overflow:hidden;
    }
    
    .dp-home-why h2 {
        color: var(--primary);
        text-align: center;
        margin: 0 auto 50px auto;
    }
    
    .why-wrapper {
        width: 110%;
    }
    
    .dp-home-why .why-dosepop-item {
        padding: 10px;
        background: var(--primary);
        border-radius: 50px 0 0 50px;
        transform: translateX(-2px);
        margin-bottom: 15px;
        width: 110%;
    }
    
    .dp-home-why .why-dosepop-item p {
        color: var(--creamWhite);
        margin: 0;
        font-size: 14px;
        padding: 0 0 0 10px;
        line-height: 1.2;
        letter-spacing: .25px;
        font-weight: 300;
    }
    .why-accent-one {
        top: 20px;
        left: 10%;
        width: 35px;
        display: none;
    }
    .why-accent-two {
        right: 20px;
        top: auto;
        left: auto;
        bottom: 20px;
        z-index: 1;
        display: none;
    }
    
    .why-accent-three {
        width: 50px;
        top: 20%;
        right: 5%;
        z-index: 0;
    }
    .dp-home-why .pop {
        bottom: -20px;
        right: -21px;
    }
    .why-accent-one-mobile.dp-accent-img {
        display: block;
        width: 50px;
        top: -15px;
    }
    .why-accent-two-mobile.dp-accent-img {
        display: block;
        width: 50px;
        right: 0;
        top: 20px;
    }
    .why-dosepop-item img {
        height: 45px;
        min-width: 45px;
        padding: 8px;
    }
    
    /*-----------------------------------------
    SERVICES SECTION
    -----------------------------------------*/
    .dp-home-services {
        padding: 30px 15px;
        background: var(--secondary);
    }
    
    .dp-home-services h2 {
        color: var(--primary);
        text-align: center;
        font-size: 24px;
        margin: 0;
    }
    .services-blurb {
        padding: 0;
        font-size: 12px;
    }
    .dp-service-card-inner h3 {
        font-size: 13px;
        color: var(--primary);
        text-align: center;
        margin-top: 10px;
    }
    .dp-home-services h3 .one-line {
        white-space: nowrap;
        transform: translateX(-12px);
        width: 100%;
        display: block;
    }
    .dp-service-card-wrapper .col-6.col-lg-3:nth-child(4) .dp-service-img-wrapper img {
    transform: translateY(20px);
    }
    .dp-service-card {
        padding: 0;
    }
    .product-slider {
        padding-inline: 0;
    }
    .owl-stage {
        width: 100%;
    }
    .product-slider-title {
        text-align: center;
        font-size: 14px;
    }
    .name-carousel .owl-item p {
        width: 100% !important;
        text-align: center;
        font-size: 18px;
        margin: 0;
    }
    .name-carousel .owl-nav {
        display: none;
    }
}

.home_keeping .stars {
    position: absolute;
    top: 30px;
    right: 45px;
    display: flex;
    flex-direction: column;
}

.home_keeping .stars img {
    width: 86px;
    height: auto;
}

.home_keeping .stars img+img {
    width: 24px;
    position: absolute;
    top: -5px;
    right: -5px;
}

@media(max-width:991px) {
    .home_keeping .stars {
        top: auto;
        right: auto;
        bottom: 14%;
        left: 12%;
        display: flex;
        flex-direction: column;
    }

    .home_keeping .stars img {
        width: 60%;
        height: auto;
    }

    .home_keeping .stars img+img {
        width: 18%;
        top: -2%;
        left: -2%;
        right: auto
    }

    .home_keeping .image-main {
        width: 85%;
    }

    .home_keeping .white-btn {
        font-size: 16px;
        padding: 10px 50px;
    }
}

@media (max-width: 767.9px) {
    .home_keeping .dp-marketing-content .dp-title {
        font-size: 36px;
        margin: 0;
        padding-inline: 30px;
    }

    .home_keeping .dp-marketing-content p {
        margin-left: 0;
        margin-right: 0;
        line-height: 1.65;
        font-weight: 200;
        font-size: 14px;
        padding-inline: 30px;
    }
}
section.dp-marketing.home {
    background: #f3f097 !important;
}

/* Tablet Only*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
   #waitlist-dpop img:first-child {
    display: none;
}
.dp-home-hero h1{
    font-size: 42px;
}
.dp-home-hero{
    padding:15px 0px;
}
.desktop-btn {
        display: block !important;
    }
        .mobile-btn {
         display: none !important; 
    }
    .dp-home-banner{
        margin:0;
    }
    .dp-home-products h2{
        margin-bottom: 25px;
        font-size: 42px;
    }
    .product-slider .owl-item img{
        height: 225px;
        width: 225px;
    }
    .gate_keeping {
        padding-left: 20px;
        padding-right: 20px;
    }
    .home_keeping .image-main {
        width: 55%;
    }
    .home_keeping .stars img {
        width: 35%;
    }
    .home_keeping .stars img+img {
        width: 10%;
    }
    .dp-marketing {
        padding-bottom: 40px;
    }
    .gate_keeping .dp-title {
        font-size: 42px;
    }
    .how-it-works h2 {
        font-size: 42px;
    }
    .how-it-works-card p{
        height:0;
    }
    .how-it-works-card img{
        width:40%;
    }
    .dp-home-content .container {
    padding: 75px 75px;
    }
    #waitlist-dpop .dp-content-img {
        height: 50%;
    }
    .dp-content-inner h2 {
    font-size: 42px;
    }
    .dp-home-why h2{
        font-size: 42px;
    }
    .why-dosepop-item p {
    font-size: 16px;
    }
    .dp-home-services h2{
        font-size: 42px;
    }
    .how-it-works-card p {
    font-size: 14px;
}
}
.how-p {
    font-size: 18px;
    color: #fff5ee;;
    width: 80%;
    margin: 25px auto;
    text-align: center;
}