html {
    overflow-x: hidden;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: "Lato", sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

/* Start Header Css */

.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    padding: 30px 0px;
    z-index: 9;
}

.header.is-sticky {
    position: fixed;
    background: #807648;
    animation: slideDown 0.35s ease-out;
    z-index: 99;
    top: 0;
    padding: 20px 0px;
    height: unset;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav_content {
    position: relative;
}

.nav_content .logo {
    text-align: center;
}

.nav_content .logo img {
    margin: auto;
}

.nav_content .logo a:nth-child(2) img {
    display: none;
}

.is-sticky .nav_content .logo a:nth-child(1) img {
    display: none;
}

.is-sticky .nav_content .logo a:nth-child(2) img {
    display: block;
    width: 120px;
}

.press_text {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(0px, -50%);
}

.press_text a {
    color: #807648;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.is-sticky .nav_content .press_text a {
    color: #FFF;
}

.banner_section {
    position: relative;
}

.banner_section video {
    display: block;
    width: 100%;
    /* height: 100vh; */
    object-fit: cover;
    object-position: center;
}

.about_section {
    background: linear-gradient(158deg, #7DA5BA 16.34%, #94B5C6 45.52%, #E4ECF0 82.67%);
    padding-top: 70px;
    height: 916px;
    overflow: hidden;
    position: relative;
}

.about_text {
    max-width: 1000px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.about_text h2 {
    color: #FFF;
    font-size: 60px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.about_text small {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin: 30px 0px 36px;
    position: relative;
}

.about_text small::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 63px;
    height: 2px;
    background: #FFF;
}

.about_text p {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    max-width: 450px;
}

.girl_image {
    position: absolute;
    top: 55%;
    left: 0;
    z-index: -1;
}

.girl_image img {
    width: 1400px;
}

section.product_section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.20) 0%, rgba(188, 182, 158, 0.20) 75.88%, rgba(128, 118, 72, 0.20) 100%);
    padding: 50px 0px;
}

.product_section .sub_title {
    margin-bottom: 180px;
}

.sub_title h2 {
    color: #807648;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.product_content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

.product_item {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.product_image a {
    transition: 0.5s ease-in-out;
}

.product_image img {
    width: 100%;
    height: 370px;
    object-fit: contain;
}

.product_image a:nth-child(2) {
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
}

.product_item:hover .product_image a:nth-child(2) {
    opacity: 1;
}

.product_item:hover .product_image a:nth-child(1) {
    opacity: 0;
}

.product_text {
    text-align: center;
    opacity: 0;
    transition: 0.5s ease-in-out;
    margin-top: 20px;
}

.product_item:hover .product_text {
    opacity: 1;
}

.product_text h3 {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.product_text h4 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.product_text p {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.7px;
    padding-bottom: 10px;
}

.product_text a {
    border-radius: 40px;
    border: 1px solid #026560;
    background: #026560;
    max-width: 200px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    margin: auto;
    transition: 0.5s ease-in-out;
}

.product_text a:hover {
    background: transparent;
    color: #026560;
}

#prodact2 .product_text a {
    border: 1px solid #71391E;
    background: #71391E;
}

#prodact2 .product_text a:hover {
    background: transparent;
    color: #71391E;
}

#prodact3 .product_text a {
    border: 1px solid #E56911;
    background: #E56911;
}

#prodact3 .product_text a:hover {
    background: transparent;
    color: #E56911;
}

#prodact4 .product_text a {
    border: 1px solid #A50464;
    background: #A50464;
}

#prodact4 .product_text a:hover {
    background: transparent;
    color: #A50464;
}

#prodact5 .product_text a {
    border: 1px solid #4B276F;
    background: #4B276F;
}

#prodact5 .product_text a:hover {
    background: transparent;
    color: #4B276F;
}

.how_to_apply {
    padding: 80px 0px;
    position: relative;
}

.how_to_apply .sub_title {
    margin-bottom: 70px;
}

.how_to_apply_row {
    display: flex;
    justify-content: center;
    max-width: 1050px;
    margin: auto;
}

.apply_item {
    text-align: center;
    width: 30%;
}

.apply_item:nth-child(2) {
    width: 39%;
}

#apply_item_image {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.apply_item_image {
    height: 180px;
}

.apply_item_image img {
    height: 180px;
    object-fit: cover;
}

.apply_item_text {
    max-width: 250px;
    margin: auto;
    margin-top: 45px;
}

.apply_item_text p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #000000;
}

.footer {
    background: rgb(128, 118, 72, 0.10);
    padding: 23px 0px;
}

.footer_list {
    text-align: center;
}

.footer_list p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #807648;
}

.footer_list .social_icons li a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #807648;
    display: block;
}

.footer_list .social_icons li a:hover {
    background: #807648;
    color: #FFF;
}

.footer_list ul {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 0px;
}

.footer_list li {
    display: inline-block;
}

.footer_list li a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #807648;
    transition: 0.5s ease-in-out;
}


.footer_list li a:hover {
    color: #000;
}

.footer_list li a span {
    text-decoration: underline;
}

.peppermint_section {
    padding: 300px 0px;
    background: linear-gradient(350deg, rgba(16, 82, 44, 0.85) 21.06%, rgba(188, 214, 194, 0.65) 43.31%, rgba(188, 214, 194, 0.15) 93.92%);
    position: relative;
}


.lavender_details {
    padding: 300px 0px;
    background: linear-gradient(342deg, rgba(77, 48, 117, 0.85) 16.06%, rgba(177, 174, 205, 0.50) 54.99%, rgba(200, 205, 225, 0.50) 93.92%);
    position: relative;
}
.bergamot_details {
    padding: 300px 0px;
    background: linear-gradient(350deg, rgba(140, 42, 99, 0.85) 16.06%, rgba(190, 147, 174, 0.50) 54.99%, rgba(215, 200, 205, 0.50) 93.92%);
    position: relative;
}
.ginger_details {
    padding: 300px 0px;
    background: linear-gradient(342deg, rgba(213, 135, 89, 0.85) 16.06%, rgba(233, 214, 199, 0.50) 54.99%, rgba(234, 221, 205, 0.50) 93.92%);
    position: relative;
}
.sandalwood_details {
    padding: 300px 0px;
    background: linear-gradient(342deg, rgba(95, 34, 15, 0.85) 16.06%, rgba(241, 231, 229, 0.65) 54.99%, rgba(244, 237, 234, 0.50) 93.92%);
    position: relative;
}

.peppermint_content {
    text-align: center;
    padding: 0px 150px;
}



.peppermint_content .text h1 {
    color: #026560;
    font-size: 80px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
}

section.lavender_details .peppermint_content .text h1 {
    color: #4B276F;
} 
section.bergamot_details .peppermint_content .text h1 {
    color: #A50464;
}
section.ginger_details .peppermint_content .text h1 {
    color: #E56911;
}
section.sandalwood_details .peppermint_content .text h1 {
    color: #71391E;
}
.peppermint_content .text p {
    color: #026560;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 10px;
}

section.lavender_details .peppermint_content .text p {
    color: #4B276F;
}
section.bergamot_details .peppermint_content .text p {
    color: #A50464;
}
section.ginger_details .peppermint_content .text P {
    color: #E56911;
}
section.sandalwood_details .peppermint_content .text p {
    color: #71391E;
}

.bottom_bg {
    width: 100%;
    height: 232px;
    background: linear-gradient(151deg, #EEFBF2 16.28%, #BED6CC 81.34%);
    position: relative;
    padding: 0px 150px;
}
.lavender_bottom {
    width: 100%;
    height: 232px;
    background: linear-gradient(151deg, #E7EAF1 16.28%, #BEBED7 81.34%);
    position: relative;
    padding: 0px 150px;
}
.bergamot_bottom {
    width: 100%;
    height: 232px;
    background: linear-gradient(151deg, #EEE8EA 16.28%, #C7ABB3 81.34%);
    position: relative;
    padding: 0px 150px;
}

.bergamot_bottom .talent_img {
    right: 7%;
}


.ginger_bottom {
    width: 100%;
    height: 232px;
    background: linear-gradient(151deg, #F5EEE4 16.28%, #EBD6BF 81.34%);
    position: relative;
    padding: 0px 150px;
}
.sandalwood_bottom {
    width: 100%;
    height: 232px;
    background: linear-gradient(151deg, #F4EDEA 16.28%, #DEC7BF 81.34%);
    position: relative;
    padding: 0px 150px;
}


.peppermint_prodact {
    position: absolute;
    bottom: 61%;
    left: 7%;
}

/* .peppermint_prodact img {
    width: 530px;
} */
.bottom_bg .peppermint_prodact img {
    width: 530px;
}
.talent_img {
    position: absolute;
    bottom: 0px;
    right: 5%;
}
.bergamot_bottom .talent_img img {
    width: 660px;
}

.invigorating_main {
    padding-top: 80px;
    background: linear-gradient(180deg, #EEFBF2 0%, rgba(238, 251, 242, 0.00) 100%);
}
.lavender_flavor {
    padding-top: 80px;
    background: linear-gradient(180deg, #EEFBF2 0%, #FFF 100%);
}
.bergamot_flavor {
    padding-top: 80px;
    background: linear-gradient(180deg, #EBE4E6 0%, rgba(235, 228, 230, 0.00) 100%);
}
.ginger_flavor {
    padding-top: 80px;
    background: linear-gradient(180deg, #F2E7DA 0%, rgba(242, 231, 218, 0.00) 100%);
}
.sandalwood_flavor {
    padding-top: 80px;
    background: linear-gradient(180deg, #EBDED9 0%, rgba(235, 222, 217, 0.00) 100%);
}
.blended_text {
    max-width: 1000px;
    margin: auto;
    border: 1px solid #026560;
    border-radius: 30px;
    padding: 45px 125px;
    position: relative;
    text-align: center;
}
section.lavender_flavor .blended_text {
    border: 1px solid #4B276F;
}
section.bergamot_flavor  .blended_text {
    border: 1px solid #A50464;
}
section.ginger_flavor  .blended_text {
    border: 1px solid #E56911;
}
section.sandalwood_flavor  .blended_text {
    border: 1px solid #71391E;
}


.blendedimage {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.ginger_flavor  .blendedimage {
    position: absolute;
    top: -54px;
    left: 50%;
    transform: translate(-50%, 0%);
}
.ginger_flavor  .blendedimage  img,
.sandalwood_flavor .blendedimage img {
    width: 125px;
}

.sandalwood_flavor .blendedimage {
    top: -45px;
}

.lavender_flavor .blendedimage {
    top: -50px;
}
.lavender_flavor .blendedimage img{
    width: 142px;
}

section.bergamot_flavor .blendedimage {
    top: -40px;
}
.blendedimage::after {
    content: '';
    width: 170px;
    height: 50px;
    position: absolute;
    top: 34px;
    left: -16px;
    background: #eefbf2;
    z-index: -1;
}
section.bergamot_flavor .blendedimage::after {
    content: '';
    width: 170px;
    height: 50px;
    position: absolute;
    top: 34px;
    left: -25px;
    background: #ede6e8;
    z-index: -1;
}
section.ginger_flavor .blendedimage::after {
    content: '';
    width: 170px;
    height: 50px;
    position: absolute;
    top: 34px;
    left: -25px;
    background: #f3e8dc;
    z-index: -1;
}
section.sandalwood_flavor .blendedimage::after {
    content: '';
    width: 190px;
    height: 50px;
    position: absolute;
    top: 34px;
    left: -35px;
    background: #ecdfdb;
    z-index: -1;
}
.blended_text h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    color: #026560;
    margin: 20px 0px;
}

section.lavender_flavor .blended_text h3 {
    color: #4B276F;
}
section.bergamot_flavor .blended_text h3 {
    color: #A50464;
}
section.ginger_flavor .blended_text h3 {
    color: #E56911;
}
section.sandalwood_flavor .blended_text h3 {
    color: #71391E;
}
.blended_text p {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #026560;
}
section.lavender_flavor .blended_text p {
    color: #4B276F;
}
section.bergamot_flavor .blended_text p {
    color: #A50464;
}
section.ginger_flavor .blended_text P {
    color: #E56911;
}
section.sandalwood_flavor .blended_text p {
    color: #71391E;
}
.peppermint_video {
    max-width: 1000px;
    margin: auto;
}

.peppermint_video video {
    width: 100%;
    display: block;
}

.product_ingredients_main {
    max-width: 1000px;
    margin: auto;
}

.product_ingredients {
    padding: 80px 0px;
    position: relative;
}

.product_ingredients h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: #807648;
    margin-bottom: 10px;
}

.product_ingredients p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

.ingredients_img {
    display: flex;
    align-items: center;
    gap: 20px 40px;
    flex-wrap: wrap;
}

.invigorating_main hr {
    color: #807648;
    opacity: 1;
    max-width: 1000px;
    margin: 0px auto;
}

#invigorating_row .apply_item_image {
    height: 120px;
}

#invigorating_row .apply_item_image img {
    height: 120px;
    object-fit: cover;
}
div#my_product1 img {
    min-height: 160px;
    object-fit: cover;
}
.p-4.setdata_page {
    padding: 0rem !important;
}
.sandalwood_bottom .talent_img {
    overflow: hidden;
}
.sandalwood_bottom .talent_img img {
    width: 700px;
    position: relative;
    margin-bottom: -40px;
}



section.error_404 {
    height: 91.5vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.error_div h1 {
    color: rgb(128, 118, 72);
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.error_div p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: rgb(0, 0, 0);
    margin-bottom: 25px;
}

a.error-btn {
    border-radius: 40px;
   border: 1px solid #807648;
    background: #807648;
    max-width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    margin: auto;
    transition: 0.5s ease-in-out;
}
a.error-btn:hover {
    background: transparent;
    color: #807648;
}


/* ===================================================================== */
/* ===================================================================== */
/* =====================Press Release 04/11/2024 ======================= */
/* ===================================================================== */
/* ===================================================================== */


.press_release_sec{
    padding: 294px 0 100px;
}

.press_release_sec .container{
    max-width: 1000px;
    margin: auto;
    padding: 0;
}

.press_rel_date h3{
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; 
}
.press_rel_date h4{
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-transform: capitalize;
}
.press_rel_title{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.press_rel_title h2{
    color: #807648;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.press_rel_title p{
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; 
}

.press_release_content{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.press_sub_txt {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.press_sub_txt p{
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.press_imges_div{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.press_imges_div h2{
    color: #807648;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.press_txt_boxes{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.img_txt_box{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.paper_mint_txt{
    background: rgba(2, 101, 96, 0.20);       
    padding: 20px; 
    display: flex;
    align-items: end;            
}

#sandalwood_txt{
    background: rgba(113, 57, 30, 0.20);
}

#ginger_txt{
    background: rgba(229, 105, 17, 0.20);
}

#bergamot_txt{
    background: rgba(165, 4, 100, 0.20);
}

#lavender_txt{
    background: rgba(75, 39, 111, 0.20);
}

.availbility_txt{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.availbility_txt h2{
    color: #807648;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.availbility_txt p{
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.availbility_txt a{
    color: #807648;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration-line: underline;
    margin-top: 4px;
}

.source_txt{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.source_txt p{
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.source_txt a{
    color: #807648;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration-line: underline;
}

.contact_for_more {
    margin-top: 2px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    max-width: 490px;
    gap: 48px;
}
.contact_detail{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact_name h6{
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 133.333% */
}
.contact_name p{
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.contact_add{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact_add p{
    display: flex;
    flex-direction: row;
    gap: 9px;
}

.contact_add p a{
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
    text-decoration-line: unset;
}
.paper_mint_txt p {
    color: #000;
    font-size: 18.1px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.img_txt_box img{
    max-width: 660px;
}
ul.social_icons img {
    width: 20px;
}

.footer_list .social_icons li a img:last-child {
    display: none;
}

.footer_list .social_icons li a  {
    display: flex;
    align-items: center;
    justify-content: center;

}
ul.social_icons li:last-child a:hover img:first-child{
    display: none;
}
ul.social_icons li:last-child a:hover img:last-child{
    display: block;
}