/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.6
Tested up to: 7.0
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

/* :root{
    --primary-color: #3c66a0;
    --secondary-color: #5cb85c;
    --accent-color: #00b4d8;

    --heading-color: #1f2937;
    --text-color: #6b7280;
    --heading-font:'Cormorant Garamond',serif;
    --body-font:'Outfit',sans-serif;
	
	
    --white-color: #ffffff;
    --light-color: #f8f9fa;
    --border-color: #e5e7eb;

    --gradient-primary: linear-gradient(135deg, #3c66a0, #5cb85c);
    --gradient-secondary: linear-gradient(135deg, #3c66a0, #00b4d8);

    --box-shadow: 0 10px 30px rgba(60,102,160,0.15);
    --transition: all .4s ease;
} */

:root{
    --primary:#096467;
    --secondary:#59d0c8;
    --heading:#096467;
    --text:#7b798c;
    --white:#fff;
    --bg:#faf7f7;
   --section-padding: 70px 0;
    --heading-font:'Cormorant Garamond',serif;
     --body-font:'DM Sans', sans-serif;
  --gradient-primary: linear-gradient(135deg, #59d0c8, #096467);
  --gradient-secondary: linear-gradient(135deg, #096467, #59d0c8);
}

body{
    font-family:var(--body-font);
    overflow-x:hidden;
    background:var(--bg);
}

.section-title {
    font-family: var(--heading-font);
    font-size: 51px;
    line-height: 59px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 20px;
}
/* h1,h2, h3, h4, h5, h6{
    font-family: var(--heading-font);
} */
p{
    font-family:var(--body-font);
    font-size:17px;
    font-weight:400;
    line-height:28px;
    color:var(--text);
}
@media(max-width:991px){
    .section-title{
        font-size:42px;
    }
}

.container-fluid {
    width: 98%;
}
a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}
header.header-section {
    padding: 25px 0 7px 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
    background-color: transparent;
    color: #096467;
    font-weight: normal;
    text-decoration: none;
    border-color: white;
    font-size: 18px;
   font-family:var(--body-font);
    font-weight: 600;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    line-height: 40px;
    height: 40px;
    padding: 0px 8px;
    vertical-align: baseline;
    width: auto;
    display: block;
    color: #222;
    text-transform: none;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border: 0;
    border-radius: 0px;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    outline: none;
    font-size: 18px;
   font-family:var(--body-font);
    font-weight: 600;
}
img.img-fluid.logo {
    width: 100%;
}
/* Hero-section */

.hero-section{
    min-height:660px;
    border-radius:30px;
    overflow:hidden;
    margin:15px;
    position:relative;
    display:flex;
    align-items:center;
    background:url(images/neptune-banners.avif) center center/cover no-repeat;
}


 .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(1 35 39 / 71%) 0%, rgb(1 26 29 / 0%) 45%, rgb(1 43 43 / 0%) 100%);
}

.hero-content{
    max-width:700px;
    position:relative;
    z-index:2;
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: 69px;
    line-height: 67px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
}
.hero-content p {
    color: #ffffff;
    opacity: .95;
    max-width: 511px;
    margin-bottom: 40px;
}
.hero-btn {
    background: #f2f2f2cf;
    color: var(--primary);
    padding: 18px 35px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 500;
}
.hero-btn:hover {
background-color: var(--primary);
color: #fff;
}

@media(max-width:991px){

.hero-content h1{
    font-size:60px;
}

.hero-section{
    min-height:700px;
}

}

/* About-us */

.about-section{
    padding: var(--section-padding);
    background:#faf7f7;
}

img.img-fluid.cosmetics-icon{
    width:27px;
}

.sub-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    /* margin-bottom: 20px; */
}

.about-images{
    position:relative;
    max-width:550px;
}

.about-img{
    overflow:hidden;
    border-radius:20px;
}

.about-img img{
    width:100%;
    display:block;
}

.about-img-1{
    max-width:420px;
}

.about-img-2 {
    max-width: 420px;
    margin-left: auto;
    margin-top: -202px;
    border: 8px solid #fff;
    border-radius: 20px;
}
.about-circle{
    position:absolute;
    top:120px;
    right:40px;
    width:120px;
    height:120px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:12px;
    line-height:1.4;
    padding:15px;
    z-index:2;
}

.about-list{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.about-list li{
    position:relative;
    padding-left:30px;
    margin-bottom:15px;
    color:var(--text);
}

.about-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:var(--primary);
    font-weight:600;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
    gap: 10px;
}
.about-btn:hover{
    color:#fff;
    transform:translateY(-3px);
}

.team-box {
    background: var(--gradient-secondary);
    color: #fff;
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    min-width: 200px;
}
.team-box h3{
    font-family:var(--heading-font);
    font-size:55px;
    margin-bottom:5px;
    color:#fff;
    line-height:1;
}
.team-box svg {
    vertical-align: middle;
    color: #cbc4c48f;
}
.team-box span{
    font-size:14px;
}

/* Counter Section */

.counter-wrapper {
    margin-top: 50px;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
}
.counter-box{
    text-align:center;
    padding:20px 15px;
    height:100%;
}

.counter-box h3 {
    font-size: 53px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'Lora', serif;
    font-weight: 500;
}

.counter-box p{
    max-width:180px;
    margin:0 auto;
    line-height:1.6;
}

@media(max-width:991px){

    .about-img-2{
        margin-top:20px;
        margin-left:60px;
    }

    .about-circle{
        right:20px;
    }

    .team-box h3{
        font-size:45px;
    }

    .counter-box h3{
        font-size:50px;
    }

}

@media(max-width:767px){

    .about-circle{
        width:90px;
        height:90px;
        font-size:10px;
        top:90px;
    }

    .team-box{
        width:100%;
    }

   .counter-wrapper {
    margin-top: 25px;
    padding-top: 15px;
}
    .counter-box h3{
        font-size:40px;
    }

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

}
.about-circle{
    position:absolute;
    top:75px;
    right:40px;
    width:145px;
    height:145px;
    background:var(--primary);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.about-circle svg{
    position:absolute;
    /* width:100%; */
    height:100%;
    animation:rotateText 12s linear infinite;
}

.about-circle text{
    fill:#fff;
    font-size:10px;
    font-weight:500;
    letter-spacing:2px;
    text-transform:capitalize;
}

.circle-icon{
    width:45px;
    height:45px;
    /* background:#fff; */
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
}

@keyframes rotateText{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
@media(max-width:767px){

    .about-circle{
        width:90px;
        height:90px;
    }

    .about-circle text{
        font-size:8px;
    }

    .circle-icon{
        width:35px;
        height:35px;
    }

}


/* Contact-us */

.service-section {
    padding: var(--section-padding);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    background: #faf7f7 url("images/bg-neptune.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.service-section .section-title {
    max-width: 700px;
    margin: 15px auto 20px;
    text-align: center;
    font-size: 54px;
}
.service-section .sub-heading{
    justify-content:center;
}

.service-section > .container > .row:first-child p{
    max-width:650px;
    margin:auto;
}

.service-card{
    position:relative;
    border-radius:25px;
    overflow:hidden;
    transition:.4s ease;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
   height: 360px;
    object-fit:cover;
}

.service-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, #096467, #096467d4, transparent);
}

.service-icon{
    width:55px;
    height:55px;
    background:#fff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.service-icon i{
    font-size:22px;
    color:var(--primary);
}

.service-content h3{
    font-family:'Cormorant Garamond',serif;
    color:#fff;
    font-size:32px;
    margin-bottom:10px;
}

.service-content p{
    color:#fff;
    margin:0;
    font-size:15px;
    line-height:1.7;
}

.service-bottom{
    margin-top:50px;
}

.service-bottom p{
    margin:0;
    color:#8d8b9a;
}

.service-bottom a{
    color:var(--primary);
    font-weight:600;
    text-decoration:underline;
}

@media(max-width:991px){

    .service-card img{
        height:380px;
    }

}

@media(max-width:767px){

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

    .service-card img{
        height:320px;
    }

    .service-content h3{
        font-size:26px;
    }

}

/* why-choose section */

.why-choose-section{
   background:var(--bg) ;
    padding: var(--section-padding);
}

.feature-box{
    display:flex;
    gap:20px;
    padding-top:30px;
    margin-top:30px;
    border-top:1px solid #e5e5e5;
}

.feature-icon{
    width:60px;
    min-width:60px;
    height:60px;
    background:#f2f2f2;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon img{
    width:28px;
}

.feature-content h5 {
    color: #2d6664;
    font-size: 29px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: var(--heading-font);
}
.image-box{
    border-radius:25px;
    overflow:hidden;
}
img.img-fluid.why-choose-icon {
    width: 78%;
}
.image-box img{
    width:100%;
    display:block;
}

/* Our process */

.process-wrapper{
    background:var(--bg);
    border-radius:25px;
    overflow:hidden;
}
section.process-section .section-title {
    font-family: var(--heading-font);
    font-size: 49px;
    line-height: 55px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 20px;
}
.process-image{
    position:relative;
    height:100%;
}

.process-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.process-overlay{
    position:absolute;
    left:40px;
    bottom:40px;
    color:#fff;
}

.process-overlay span{
    display:block;
    margin-bottom:10px;
}

.process-overlay h3 {
    font-size: 38px;
    line-height: 45px;
    font-weight: 500;
    font-family: var(--heading-font);
    /* font-family: 'Lora', serif; */
}

.process-content {
    padding: 60px;
    background: #f1e6e9;
}
.process-content p{
    color:#8d8d8d;
    line-height:1.9;
}

.process-list{
    margin-top:30px;
}

.process-list ul{
    list-style:none;
    padding:0;
    margin:0;
}

.process-list li{
    margin-bottom:15px;
    color:#5f5f5f;
    position:relative;
    padding-left:25px;
}

.process-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--primary);
}

.process-btn{
    display:inline-block;
    margin-top:25px;
    background:#2d8b87;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
}

.process-btn:hover{
    color:#fff;
}

@media(max-width:991px){

    .process-content{
        padding:35px 25px;
    }

    .process-overlay h3{
        font-size:32px;
    }

}
.process-image {
    position: relative;
    overflow: hidden;
    border-left: 25px;
}

.process-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(to top, #096467ed, #096467b8, transparent);
}
.process-overlay{
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 3;
    color: #fff;
}

/* How we work */

.work-process{
    background:var(--bg);
    padding: var(--section-padding);
}
section.process-section {
    padding: var(--section-padding);
}
.process-step {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.step-number {
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
    color: var(--primary);
    font-family: 'Lora', serif;
}
.step-content h4 {
    color: var(--primary);
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.work-image-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:30px;
}

.work-image-wrapper img{
    width:100%;
    display:block;
}

.work-image-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 40px;
    color: #fff;
    background: linear-gradient(to top, #004749, #096467cc, transparent);
}

.work-image-content h4 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    padding: 0 137px 0 0;
    font-family: var(--heading-font);
}
.contact-box{
    display:flex;
    align-items:center;
    gap:12px;
}

.contact-icon{
    width:42px;
    height:42px;
    background:#fff;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
}

.contact-box a{
    color:#fff;
    text-decoration:none;
    font-size:20px;
}

@media(max-width:991px){

    .step-number{
        font-size:36px;
        min-width:55px;
    }

    .step-content h4{
        font-size:24px;
    }

    .work-image-content{
        padding:25px;
    }

    .work-image-content h4{
        font-size:24px;
    }
}


/* Faq */

.faq-wrapper {
    position: relative;
    padding: 70px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(90deg, #012b2c 0%, rgb(1 26 29 / 0%) 45%, rgb(1 43 43 / 0%) 100%), url(images/faq-bg.png) center center / cover no-repeat;
}

.faq-wrapper::before{
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        90deg,
        rgba(8,74,77,.95) 0%,
        rgba(13,98,100,.92) 50%,
        rgba(17,116,118,.90) 100%
    ); */
}

.faq-wrapper > .row{
    position: relative;
    z-index: 2;
}

.faq-subtitle{
    display: block;
    color: #fff;
    margin-bottom: 15px;
    font-size: 14px;
}

.faq-content{
    color: #fff;
}

.faq-content p{
    color: rgba(255,255,255,.85);
    margin-top: 25px;
}

.faq-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0f7674;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    margin-top: 25px;
    font-weight: 500;
}

.faq-btn:hover{
    color: #0f7674;
}

.custom-faq .accordion-item{
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.15);
    border-radius: 0;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: transparent;
    color: #fff;
    font-family: 'Lora', serif;
    line-height: 40px;
    font-size: 21px;
}
.custom-faq .accordion-button{
        background: transparent;
    color: #fff;
    font-family: 'Lora', serif;
    line-height: 40px;
    font-size: 21px;
}
.custom-faq .accordion-button::after{
    filter: brightness(0) invert(1);
}

.custom-faq .accordion-body{
    color: rgba(255,255,255,.85);
    font-size: 18px;
    line-height: 1.8;
    padding: 0 0 30px;
}

@media(max-width:991px){

    .faq-wrapper{
        padding: 40px 25px;
    }

    .custom-faq .accordion-button{
        font-size: 22px;
        line-height: 1.4;
    }

}

/* Testimonial-section */

section.testimonial-section {
    background: #faf7f7 url(images/bg-neptune.png);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30px;
    margin-top: 70px;
}
.testimonial-wrapper{
    /* background: #f8f5f5; */
    border-radius: 30px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.testimonial-heading{
    max-width: 800px;
    margin: 0 auto 60px;
}

.testimonial-subtitle{
    display: block;
    color: #7fc7c3;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-card{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.testimonial-card img{
    width: 100%;
    display: block;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(to top, #096467, #0964678f, transparent);
    z-index: 1;
}

.testimonial-content{
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 100%;
    text-align: center;
    z-index: 2;
    color: #fff;
    padding: 0 15px;
}

.testimonial-content h4{
    font-size: 24px;
    margin-bottom: 5px;
    color: #fff;
}

.testimonial-content span{
    font-size: 15px;
    color: rgba(255,255,255,.9);
}

@media(max-width:991px){

    .testimonial-wrapper{
        padding: 50px 20px;
    }

    .testimonial-heading{
        margin-bottom: 40px;
    }

}

/* contact-us */
section.contact-section {
    padding: var(--section-padding);
}
.contact-wrapper{
    background:#f8f5f5;
    border-radius:30px;
    /* padding:50px; */
    position:relative;
    overflow:hidden;
}

.contact-info{
    display:flex;
    gap:30px;
    margin-bottom:30px;
}

.info-box{
    display:flex;
    align-items:center;
    gap:15px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.submit-btn {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
    gap: 10px;
    width: 100%;
    border: none;
}

.info-icon{
    width:50px;
    height:50px;
    min-width:50px;
    background:var(--primary);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
}

.info-box p{
    margin:0;
    color:#7b7b7b;
    line-height:1.7;
}

.info-box a{
    display:block;
    color:#7b7b7b;
    text-decoration:none;
    line-height:1.8;
}

.map-box {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--primary);
}
.map-box iframe{
    width:100%;
    height:555px;
    border:0;
}

.contact-subtitle{
    display:block;
    color:#83c9c4;
    font-size:14px;
    margin-bottom:15px;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
    padding: 1px 0 5px 6px;
    font-size: 17px;
    margin: 20px 0 0 0;
    border-radius: 6px;
    border: 1px solid #096467;
}
textarea {
    resize: vertical;
    width: 100%;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    height: 170px;
    padding: 1px 0 5px 6px;
    font-size: 17px;
    margin: 20px 0 0 0;
	border-radius: 6px;
    border: 1px solid #096467;
}
.contact-content .form-control,
.contact-content .form-select{
    height:60px;
    border:1px solid #ececec;
    background:#fff;
    border-radius:15px;
    margin-bottom:20px;
    box-shadow:none;
}

.contact-content textarea.form-control{
    height:140px;
    resize:none;
    padding-top:18px;
}

.contact-content .form-control:focus,
.contact-content .form-select:focus{
    border-color:#0b7471;
    box-shadow:none;
}

.contact-btn{
    border:none;
    background:#0b7471;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:500;
    transition:.3s;
}

.contact-btn:hover{
    background:#085d5a;
}

@media(max-width:991px){
    .contact-info{
        flex-direction:column;
        gap:20px;
    }

    .map-box{
        margin-bottom:40px;
    }

}

/* Modal-form */
.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
    font-family: var(--heading-font);
    font-size: 31px;
    font-weight: 800;
    color: var(--primary);
}

/* footer-css */

.footer-section {
    padding: var(--section-padding);
    background: #faf7f7;
}

.footer-title span{
    color:#5bd6c4;
}
.footer-main {

    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #003334 0%, #096467b8 45%, rgb(1 43 43 / 0%) 100%), url(images/faq-bg.png) center center / cover no-repeat;
}
.footer-main::before{
    content:"";
    position:absolute;
    inset:0;
    background:url('images/footer-bg.jpg') center/cover;
    opacity:.12;
}

.footer-main .row{
    position:relative;
    z-index:2;
}

img.img-fluid.footer-logo {
    width: 65%;
    padding: 0 0 15px 0;
}
.footer-logo h3{
    color:#fff;
    font-size:40px;
    margin:0;
    font-family:'Cormorant Garamond',serif;
}

.footer-brand p,
.footer-info p{
    color:rgba(255,255,255,.85);
}

.newsletter-form{
    display:flex;
    margin-top:25px;
}

.newsletter-form input{
    flex:1;
    border:none;
    height:55px;
    padding:0 20px;
    border-radius:10px 0 0 10px;
}

.newsletter-form button{
    width:60px;
    border:none;
    background:var(--primary);
    color:#fff;
    border-radius:0 10px 10px 0;
}

.footer-main h4 {
    color: #fff;
    margin-bottom: 25px;
    font-family: var(--heading-font);
    font-size: 31px;
    font-weight: 700;
}
.contact-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.contact-item .icon{
    width:45px;
    height:45px;
    background:#fff;
    color:#0a7473;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-item h5,
.footer-info h5{
    color:#fff;
    font-size:21px;
    margin-bottom:5px;
    font-family:'Cormorant Garamond',serif;
}

.contact-item span{
    color:rgba(255,255,255,.85);
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:40px;
    padding-top:30px;
    position:relative;
    z-index:2;
}
ul.footer-links li a {
    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    color: rgba(255, 255, 255, .85);
}
.footer-bottom p{
    color:#fff;
    margin:0;
}

.social-wrap{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:15px;
}

.social-wrap span{
    color:#fff;
}

.social-wrap a{
    width:45px;
    height:45px;
    background:#fff;
    color:#0a7473;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

@media(max-width:991px){

    .footer-title{
        font-size:55px;
    }

    .footer-main{
        padding:40px 25px;
    }

    .social-wrap{
        justify-content:flex-start;
        margin-top:20px;
    }

}

/* Marquee */

.marquee-wrapper{
    overflow:hidden;
}

.marquee-content{
    display:flex;
    align-items:center;
    gap:30px;
    width:max-content;
    animation:marquee 25s linear infinite;
}

.marquee-content span{
    font-family:'DM Sans',sans-serif;
    font-size:70px;
    font-weight:700;
    color:#0a7473;
    white-space:nowrap;
}

.marquee-content span:nth-child(even){
    color:#5bd6c4;
    font-size:50px;
}

@keyframes marquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}


/* our-products */

.product-section{
    padding:var(--section-padding);
    background:#faf7f7;
}
.product-section h2.section-title {
    padding: 0 222px;
    text-align: center;
}
.product-section p {
    padding: 0 245px;
    text-align: center;
}

.product-slider{
    margin-top:50px;
}

.product-card{
    position:relative;
    border-radius:25px;
    overflow:hidden;
    height:350px;
}

.product-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.product-card:hover img{
    transform:scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(to top, rgb(7 96 95), rgb(7 96 95 / 47%), transparent);
}

.product-count {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #ffffff85;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.product-overlay h3 {
    color: #fff;
    font-size: 26px;
    font-family: var(--heading-font);
    margin-bottom: 10px;
    font-weight: 800;
}
.product-overlay p{
    color:#fff;
    margin-bottom:20px;
}

.product-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

.product-btn i{
    transition:.3s;
}

.product-btn:hover i{
    transform:translateX(5px);
}

.owl-dots{
    margin-top:35px;
    text-align:center;
}

.owl-dot span{
    width:10px;
    height:10px;
    background:#73d8cc !important;
}

.owl-dot.active span{
    width:35px;
    border-radius:30px;
    background:var(--primary) !important;
}

@media(max-width:767px){

    .product-card {
    height: 335px;
}
.product-section h2.section-title {
    padding: 2px 0px; 
    text-align: center;
}
	.product-section p {
    padding: 0 0;
    text-align: center;
}
	section.testimonial-section {
    margin-top: 45px;
}
	.work-process {
    padding: 0 0;
}
    .product-overlay{
        padding:25px;
    }

    .product-overlay h3{
        font-size:32px;
    }

}

/* Responsive */

@media(max-width:767px){
    header.header-section a.about-btn {
    display: none;
}
.mega-menu-toggle {
    width: 50px;
}
#mega-menu-wrap-primary .mega-menu-toggle {
    z-index: 1;
    background-color: #096467;
    border-radius: 2px;
    line-height: 40px;
    height: 39px;
    text-align: left;
    user-select: none;
    outline: none;
    white-space: nowrap;
    display: flex;
    margin: 0 0 0 100px;
}
img.img-fluid.logo {
    width: 100%;
}
header.header-section {
    padding: 25px 0 0px 0;
}
.hero-content h1 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    margin: 0 0 20px 0;
}
.hero-section {
    min-height: 425px;
}
.hero-content p {
    margin-bottom: 20px;
    padding: 0 8px 0 0;
}
.hero-overlay {
    background: linear-gradient(90deg, rgb(1 35 39) 0%, rgb(1 28 29 / 59%) 45%, rgb(1 43 43 / 0%) 100%);
}
.hero-btn {
    padding: 15px 17px;
}
.sub-heading {
    font-size: 19px;
    margin-bottom: 0;
}
img.img-fluid.cosmetics-icon {
    width: 40px;
}
.section-title {
    font-size: 31px;
    line-height: 43px;
    font-weight: 700;
}
.about-btn {
    padding: 12px 25px;
}
.about-circle {
    top: 243px;
    right: 17px;
}
.about-img-2 {
    margin-left: 0;
}
.counter-box {
    padding: 11px 6px;
}
.service-section .section-title {
    font-size: 31px;
    line-height: 37px;
    font-weight: 700;
}

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

section.why-choose-section {
    padding: 50px 0;
}
section.why-choose-section {
    padding: 50px 0;
}
.product-slider {
    margin-top: 10px;
}
section.process-section {
    padding: 0;
}
section.process-section .section-title {
    font-size: 39px;
    line-height: 40px;
}
section.product-section {
    padding: 0;
}
.process-overlay {
    left: 24px;
    bottom: 7px;
}
.work-image-content h4 {
    padding: 0 51px 0 0;
}
.faq-content h2 {
    font-size: 36px;
    line-height: 40px;
    padding: 16px 0 0 0;
}
.custom-faq .accordion-button:not(.collapsed) {
    line-height: 32px;
    font-size: 19px;
}
.custom-faq .accordion-body {
    font-size: 18px;
    line-height: 29px;
    padding: 20px 0 10px;
}
.custom-faq .accordion-button {
     line-height: 32px;
    font-size: 19px;
}
section.contact-section {
    padding: 40px 0;
}
/* input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    margin: 20px 0 0 4px;
} */
/* textarea.wpcf7-form-control.wpcf7-textarea {
    margin: 20px 0 0 4px;
} */
.marquee-content span {
    font-size: 45px;
}
.footer-main h4 {
    margin-bottom: 15px;
}
.footer-bottom {
    margin-top: 10px;
}
.chaty-widget.right-position {
    display: none;
}
.social-wrap a {
    width: 45px;
    height: 38px;
}

}
#sequence {
    width: 100%;
    float: left;
    background: linear-gradient(82deg, #096467 0%, rgb(9 100 103) 53%, #49aeab 100%);
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #ffffff !important;
    margin: 0 !important;
}
#sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: none !important;
    border-right: 1px solid #ffffff;
}

/* Inner-pages */


section.innerpages {
    padding: 50px 0 0 0;
}
section.innerpages .section-title {
    font-family: var(--heading-font);
    font-size: 51px;
    line-height: 52px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 20px;
}
h5.heading-text {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: #2b2b2b;
}