/* Start custom CSS for html, class: .elementor-element-e678fc6 *//* ===========================
   Google Font
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===========================
   Global
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#fff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   Top Bar
=========================== */

.top-bar{
    background:#B89B72;
    color:#fff;
    font-size:14px;
}

.top-bar-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
    flex-wrap:wrap;
}

.top-left,
.top-right{
    display:flex;
    gap:25px;
}

/* ===========================
   Header
=========================== */

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.header-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;
}

/* Logo */

.logo img{
    width:180px;
    display:block;
}

/* Navigation */

.navbar ul{
    display:flex;
    list-style:none;
    gap:35px;
}

.navbar a{
    text-decoration:none;
    color:#1D3557;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.navbar a:hover{
    color:#B89B72;
}

/* CTA Button */

.btn-primary{
    display:inline-block;
    text-decoration:none;
    background:#1D3557;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:.35s;
}

.btn-primary:hover{
    background:#B89B72;
    transform:translateY(-2px);
}

/* Mobile Menu */

.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:6px;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:#1D3557;
    border-radius:5px;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:992px){

    .navbar,
    .btn-primary{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

    .header-content{
        height:80px;
    }

}

@media(max-width:768px){

    .top-bar-content{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    .top-left,
    .top-right{
        flex-direction:column;
        gap:5px;
    }

    .logo img{
        width:150px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dcfdcb3 *//* ===========================
   Hero Section
=========================== */

.hero{
    position:relative;
    height:90vh;
    min-height:650px;
    display:flex;
    align-items:center;
    overflow:hidden;

    background:url("http://studdardfinancial.com/wp-content/uploads/2019/08/home.jpg") center center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(17,35,59,.65);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
}

.hero-tag{
    display:inline-block;
    background:#B89B72;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.hero h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:700;
}

.hero p{
    font-size:18px;
    line-height:1.8;
    color:#f2f2f2;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* Primary Button */

.btn-primary{
    background:#B89B72;
    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:#ffffff;
    color:#1D3557;
}

/* Secondary Button */

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-secondary:hover{
    background:#fff;
    color:#1D3557;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:992px){

.hero{
    min-height:600px;
}

.hero h1{
    font-size:46px;
}

}

@media(max-width:768px){

.hero{
    text-align:center;
    min-height:550px;
}

.hero-content{
    max-width:100%;
}

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:16px;
}

.hero-buttons{
    justify-content:center;
}

}

@media(max-width:480px){

.hero h1{
    font-size:30px;
}

.hero-tag{
    font-size:13px;
}

.btn-primary,
.btn-secondary{
    width:100%;
    text-align:center;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-690c3de *//*=====================================
 Featured Section
=====================================*/

.featured-section{
    padding:100px 0;
    background:#f8fafc;
}

.section-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-heading span{
    color:#B89B72;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    font-size:14px;
}

.section-heading h2{
    margin:15px 0;
    font-size:42px;
    color:#1D3557;
}

.section-heading p{
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/* Logos */

.featured-logos{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:center;
    margin-bottom:70px;
}

.featured-logos img{
    width:100%;
    max-width:170px;
    margin:auto;
    display:block;
    filter:grayscale(100%);
    opacity:.8;
    transition:.3s;
}

.featured-logos img:hover{
    filter:none;
    opacity:1;
}

/* Trust Cards */

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.trust-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s;
}

.trust-card:hover{
    transform:translateY(-10px);
}

.icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#1D3557;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.trust-card h3{
    color:#1D3557;
    margin-bottom:15px;
    font-size:22px;
}

.trust-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/* Responsive */

@media(max-width:992px){

.featured-logos{
    grid-template-columns:repeat(2,1fr);
}

.trust-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.section-heading h2{
    font-size:32px;
}

.featured-logos{
    grid-template-columns:1fr;
}

.trust-grid{
    grid-template-columns:1fr;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c55fbdd *//*===================================
    FREE EBOOK SECTION
===================================*/

.ebook-section{
    padding:100px 0;
    background:#f8fafc;
}

.ebook-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    flex-wrap:wrap;
}

/* Left Side */

.ebook-content{
    flex:1;
    min-width:320px;
}

.section-badge{
    display:inline-block;
    background:#B89B72;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
    letter-spacing:.5px;
}

.ebook-content h2{
    font-size:46px;
    color:#183153;
    margin-bottom:20px;
    line-height:1.2;
}

.ebook-content p{
    font-size:17px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

/* Features */

.ebook-features{
    margin-bottom:40px;
}

.feature{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
    font-size:17px;
    color:#333;
}

.feature i{
    color:#B89B72;
    font-size:20px;
}

/* Buttons */

.ebook-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.download-btn{
    background:#183153;
    color:#fff;
    text-decoration:none;
    padding:16px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.download-btn:hover{
    background:#B89B72;
}

.consult-btn{
    border:2px solid #183153;
    color:#183153;
    text-decoration:none;
    padding:16px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.consult-btn:hover{
    background:#183153;
    color:#fff;
}

/* Right Image */

.ebook-image{
    flex:1;
    min-width:320px;
    text-align:center;
}

.ebook-image img{
    width:100%;
    max-width:420px;
    border-radius:15px;
    box-shadow:0 30px 70px rgba(0,0,0,.18);
    transition:.4s;
}

.ebook-image img:hover{
    transform:translateY(-8px);
}

/* Responsive */

@media(max-width:992px){

.ebook-wrapper{
    flex-direction:column-reverse;
    text-align:center;
}

.feature{
    justify-content:center;
}

.ebook-buttons{
    justify-content:center;
}

}

@media(max-width:768px){

.ebook-section{
    padding:70px 0;
}

.ebook-content h2{
    font-size:34px;
}

.ebook-content p{
    font-size:16px;
}

.ebook-buttons{
    flex-direction:column;
}

.download-btn,
.consult-btn{
    width:100%;
    text-align:center;
}

.feature{
    justify-content:flex-start;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-81010be *//*=================================
        ABOUT SECTION
==================================*/

.about-section{
    padding:110px 0;
    background:#fff;
}

.about-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    flex-wrap:wrap;
}

/* Image */

.about-image{
    flex:1;
    min-width:320px;
    text-align:center;
}

.about-image img{
    width:100%;
    max-width:470px;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
    transition:.4s;
}

.about-image img:hover{
    transform:scale(1.03);
}

/* Content */

.about-content{
    flex:1;
    min-width:320px;
}

.section-badge{
    display:inline-block;
    background:#B89B72;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:20px;
}

.about-content h2{
    font-size:46px;
    color:#183153;
    line-height:1.2;
    margin-bottom:25px;
}

.about-content p{
    color:#666;
    line-height:1.9;
    font-size:17px;
    margin-bottom:20px;
}

/* Features */

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:35px 0;
}

.about-feature{
    background:#f8fafc;
    padding:18px 20px;
    border-left:4px solid #B89B72;
    border-radius:10px;
    font-weight:500;
    color:#183153;
    transition:.3s;
}

.about-feature:hover{
    background:#183153;
    color:#fff;
}

/* Button */

.about-btn{
    display:inline-block;
    background:#183153;
    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.about-btn:hover{
    background:#B89B72;
}

/* Responsive */

@media(max-width:992px){

.about-wrapper{
    flex-direction:column;
}

.about-content{
    text-align:center;
}

.about-features{
    grid-template-columns:1fr;
    text-align:left;
}

}

@media(max-width:768px){

.about-section{
    padding:80px 0;
}

.about-content h2{
    font-size:34px;
}

.about-content p{
    font-size:16px;
}

.about-btn{
    width:100%;
    text-align:center;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-64c0093 *//*=================================
        SERVICES SECTION
==================================*/

.services-section{
    padding:110px 0;
    background:#f7f9fc;
}

.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-title span{
    display:inline-block;
    color:#B89B72;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.section-title h2{
    font-size:46px;
    color:#183153;
    margin-bottom:20px;
}

.section-title p{
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/* Grid */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.service-card{
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.service-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#183153;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    transition:.3s;
}

.service-card:hover .service-icon{
    background:#B89B72;
}

.service-card h3{
    color:#183153;
    font-size:24px;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
    min-height:90px;
}

.service-btn{
    display:inline-block;
    text-decoration:none;
    background:#183153;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.service-btn:hover{
    background:#B89B72;
}

/* Responsive */

@media(max-width:992px){

.services-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-title h2{
    font-size:38px;
}

}

@media(max-width:768px){

.services-grid{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:32px;
}

.section-title p{
    font-size:16px;
}

.service-card{
    padding:35px 25px;
}

}/* End custom CSS */