/*==================================================
R & P BUILDERS
COMMON STYLE.CSS
Author : R & P Builders
Version : 1.0
==================================================*/

/*==================================================
GOOGLE FONT
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================================
CSS VARIABLES
==================================================*/
:root{

    /* Brand Colors */
    --primary:#1B2433;
    --secondary:#D4AF37;
    --white:#ffffff;
    --black:#111111;

    /* Text */
    --text:#666666;
    --heading:#1B2433;

    /* Background */
    --light:#F8FAFC;
    --gray:#f5f5f5;

    /* Border */
    --border:#e9ecef;

    /* Shadows */
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --shadow-lg:0 20px 50px rgba(0,0,0,.15);

    /* Radius */
    --radius:12px;

    /* Transition */
    --transition:.35s ease;

}

/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.8;

    color:var(--text);

    background:var(--white);

    overflow-x:hidden;

}

img{

    max-width:100%;
    height:auto;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul,
ol{

    margin:0;
    padding:0;
    list-style:none;

}

button{

    border:none;
    outline:none;
    cursor:pointer;

}

input,
textarea,
select{

    outline:none;
    border:none;

}

section{

    position:relative;
    padding:100px 0;

}

/*==================================================
TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--heading);
    font-weight:700;
    line-height:1.3;

}

h1{
    font-size:60px;
}

h2{
    font-size:42px;
}

h3{
    font-size:32px;
}

h4{
    font-size:24px;
}

h5{
    font-size:20px;
}

h6{
    font-size:18px;
}

p{

    color:var(--text);
    margin-bottom:18px;

}

/*==================================================
COMMON BUTTONS
==================================================*/
.navbar .btn-warning{
    padding:14px 38px;
    border-radius:50px;
    font-weight:700;
}



.btn{

    padding:14px 34px;
    border-radius:50px;
    font-weight:600;

    transition:var(--transition);

}

.btn-warning{

    background:var(--secondary);
    color:var(--primary);
    border:none;

}

.btn-warning:hover{

    background:var(--primary);
    color:var(--white);

    transform:translateY(-3px);

}

.btn-outline-light{

    border:2px solid var(--white);
    color:var(--white);

}

.btn-outline-light:hover{

    background:var(--secondary);
    border-color:var(--secondary);
    color:var(--primary);

}

.btn-outline-dark{

    border:2px solid var(--primary);
    color:var(--primary);

}

.btn-outline-dark:hover{

    background:var(--primary);
    color:var(--white);

}

/*==================================================
SECTION TITLE
==================================================*/

.section-title{

    margin-bottom:60px;

}

.section-title span{

    display:inline-block;

    color:var(--secondary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

    font-weight:700;

    margin-bottom:12px;

}

.section-title h2{

    margin-bottom:18px;

}

.section-title p{

    max-width:700px;

    margin:auto;

}

/*==================================================
UTILITY CLASSES
==================================================*/

.bg-light{

    background:var(--light);

}

.bg-primary{

    background:var(--primary);

}

.text-primary{

    color:var(--primary)!important;

}

.text-secondary{

    color:var(--secondary)!important;

}

.rounded-custom{

    border-radius:var(--radius);

}

.shadow-custom{

    box-shadow:var(--shadow);

}

.shadow-lg-custom{

    box-shadow:var(--shadow-lg);

}

.transition{

    transition:var(--transition);

}

.object-cover{

    object-fit:cover;

}

.overflow-hidden{

    overflow:hidden;

}


/*==================================================
TOP BAR
==================================================*/

.top-bar{
    background:var(--primary);
    color:var(--white);
    font-size:14px;
    padding:10px 0;
}

.top-bar a{
    color:var(--white);
    transition:var(--transition);
}

.top-bar a:hover{
    color:var(--secondary);
}

.top-bar i{
    color:var(--secondary);
    margin-right:8px;
}

.top-contact{
    display:flex;
    align-items:center;
    gap:25px;
}

.top-social{
    display:flex;
    justify-content:flex-end;
    gap:15px;
}

.top-social a{
    width:36px;
    height:36px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.top-social a:hover{
    background:var(--secondary);
    color:var(--primary);
    border-color:var(--secondary);
}

/*==================================================
HEADER
==================================================*/

.site-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#fff;
    box-shadow:0 2px 20px rgba(0,0,0,.05);
}

/*==================================================
NAVBAR
==================================================*/

.navbar{
    padding:5px 0;
    background:#fff;
    transition:var(--transition);
}

.navbar{
    align-items:center;
}

.navbar-nav{
    align-items:center;
}

.navbar-brand{
    display:flex;
    align-items:center;
}

.navbar-brand img{
    height:80px;
     width:auto;
    transition:0.3s;
  /*  transition:var(--transition);  */
}

.navbar-brand span{
    margin-left:12px;
    font-size:28px;
    font-weight:700;
    color:var(--primary);
}


.navbar-brand{
    margin-top:-4px;
}


/*==================================================
MENU
==================================================*/

.navbar-nav{
    gap:16px;
}

.navbar-nav .nav-link{
    color:var(--primary);
    font-weight:600;
    font-size:15px;
    padding:12px 18px;
    transition:var(--transition);
    position:relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:var(--secondary);
}

.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    left:18px;
    bottom:6px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width:calc(100% - 36px);
}

/*==================================================
NAVBAR BUTTON
==================================================*/

.navbar .btn{
    margin-left:20px;
}


.navbar .btn-warning:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(212,175,55,.35);
}

/*==================================================
DROPDOWN MENU
==================================================*/

.dropdown-menu{
    border:none;
    border-radius:12px;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
    padding:10px 0;
}

.dropdown-item{
    padding:12px 20px;
    font-weight:500;
    transition:var(--transition);
}

.dropdown-item:hover{
    background:var(--secondary);
    color:var(--primary);
}

/*==================================================
STICKY HEADER
==================================================*/

.site-header.scrolled .navbar{
    padding:6px 0;
}

.site-header.scrolled .navbar-brand img{
    height:75px;
}








/*==================================================
BOOTSTRAP TOGGLER
==================================================*/

.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

.navbar-toggler i{
    color:var(--primary);
    font-size:28px;
}

/*==================================================
MOBILE MENU
==================================================*/

@media(max-width:991px){

    .top-bar{
        display:none;
    }

    .navbar{
        padding:12px 0;
    }

    .navbar-collapse{
        background:#fff;
        margin-top:15px;
        padding:20px;
        border-radius:12px;
        box-shadow:0 15px 40px rgba(0,0,0,.08);
    }

    .navbar-nav{
        gap:0;
    }

    .navbar-nav .nav-link{
        padding:14px 10px;
        border-bottom:1px solid var(--border);
    }

    .navbar .btn{
        margin:20px 0 0;
        width:100%;
    }

    .navbar-brand img{
        height:55px;
    }

}

/*==================================================
SMALL MOBILE
==================================================*/

@media(max-width:576px){

    .navbar-brand img{
        height:48px;
    }

    .navbar-brand span{
        font-size:22px;
    }

}


/*==================================================
HERO SECTION
==================================================*/

.hero-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}


.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(27,36,51,.58);
}

.hero-image img{
    max-width:115%;
    border-radius:20px;
    border:3px solid rgba(212,175,55,.35);
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.hero-content{
    position:relative;
    z-index:2;
    color:var(--white);
}

.hero-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:rgba(212,175,55,.15);
    border:1px solid rgba(212,175,55,.40);
    border-radius:50px;
    color:var(--secondary);
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:20px;
}

.hero-title{
    color:var(--white);
    font-size:64px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-title span{
    color:var(--secondary);
}

.hero-text{
    max-width:560px;
    color:rgba(255,255,255,.90);
    font-size:18px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.hero-image img{
    animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}


/*==================================================
HERO SCROLL INDICATOR
==================================================*/

.scroll-down{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    z-index:5;
}

.scroll-down a{
    width:50px;
    height:50px;
    border:2px solid rgba(255,255,255,.35);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:var(--transition);
    animation:bounce 2s infinite;
}

.scroll-down a:hover{
    background:var(--secondary);
    color:var(--primary);
    border-color:var(--secondary);
}

@keyframes bounce{
    0%,20%,50%,80%,100%{
        transform:translateY(0);
    }
    40%{
        transform:translateY(-10px);
    }
    60%{
        transform:translateY(-5px);
    }
}

/*==================================================
INNER PAGE BANNER
==================================================*/

.page-banner{
    position:relative;
    padding:140px 0 100px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:hidden;
}

.page-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(27,36,51,.75);
}

.page-banner-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.page-banner h1{
    color:#fff;
    margin-bottom:18px;
    font-size:52px;
    font-weight:800;
}

.page-banner p{
    color:rgba(255,255,255,.85);
    max-width:700px;
    margin:0 auto;
}

/*==================================================
BREADCRUMB
==================================================*/

.breadcrumb-nav{
    margin-top:25px;
}

.breadcrumb{
    justify-content:center;
    margin:0;
    background:transparent;
}

.breadcrumb-item{
    font-weight:500;
}

.breadcrumb-item a{
    color:var(--secondary);
}

.breadcrumb-item.active{
    color:#fff;
}

.breadcrumb-item + .breadcrumb-item::before{
    color:rgba(255,255,255,.60);
}

/*==================================================
COMMON PAGE HEADER
==================================================*/

.page-header{
    margin-bottom:70px;
    text-align:center;
}

.page-header .subtitle{
    display:inline-block;
    color:var(--secondary);
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.page-header h2{
    margin-bottom:20px;
}

.page-header p{
    max-width:720px;
    margin:auto;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

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

    .hero-title{
        font-size:48px;
    }

    .page-banner{
        padding:120px 0 90px;
    }

    .page-banner h1{
        font-size:42px;
    }

}

@media(max-width:767px){

    .hero-section{
        text-align:center;
        min-height:650px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-title{
        font-size:38px;
    }

    .hero-text{
        font-size:16px;
    }

    .page-banner{
        padding:100px 0 70px;
    }

    .page-banner h1{
        font-size:34px;
    }

}

@media(max-width:576px){

    .hero-title{
        font-size:30px;
    }

    .hero-text{
        font-size:15px;
    }

    .page-banner h1{
        font-size:28px;
    }

    .scroll-down{
        display:none;
    }

}


/*==================================================
FOOTER
==================================================*/

.footer{
    position:relative;
    background:var(--primary);
    color:rgba(255,255,255,.80);
    padding:80px 0 0;
}

.footer p{
    color:rgba(255,255,255,.75);
    margin-bottom:20px;
}

.footer-logo{
    margin-bottom:25px;
}

.footer-logo img{
    height:70px;
    width:auto;
}

.footer-title{
    color:var(--white);
    font-size:22px;
    font-weight:700;
    margin-bottom:30px;
    position:relative;
}

.footer-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:60px;
    height:3px;
    background:var(--secondary);
}

/*==================================================
FOOTER LINKS
==================================================*/

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

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

.footer-links a{
    color:rgba(255,255,255,.75);
    transition:var(--transition);
}

.footer-links a:hover{
    color:var(--secondary);
    padding-left:8px;
}

.footer-links i{
    color:var(--secondary);
    margin-right:10px;
}

/*==================================================
CONTACT INFO
==================================================*/

.footer-contact li{
    display:flex;
    align-items:flex-start;
    margin-bottom:18px;
}

.footer-contact i{
    color:var(--secondary);
    width:24px;
    margin-top:5px;
}

.footer-contact span,
.footer-contact a{
    color:rgba(255,255,255,.75);
}

/*==================================================
SOCIAL ICONS
==================================================*/

.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.20);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:var(--transition);
}

.footer-social a:hover{
    background:var(--secondary);
    color:var(--primary);
    border-color:var(--secondary);
}

/*==================================================
NEWSLETTER
==================================================*/

.newsletter-form{
    position:relative;
    margin-top:25px;
}

.newsletter-form input{
    width:100%;
    height:56px;
    border-radius:50px;
    padding:0 65px 0 20px;
    background:#fff;
}

.newsletter-form button{
    position:absolute;
    top:5px;
    right:5px;
    width:46px;
    height:46px;
    border-radius:50%;
    background:var(--secondary);
    color:var(--primary);
    transition:var(--transition);
}

.newsletter-form button:hover{
    background:#fff;
}

/*==================================================
COPYRIGHT
==================================================*/

.footer-bottom{
    margin-top:60px;
    padding:22px 0;
    border-top:1px solid rgba(255,255,255,.10);
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.70);
}

.footer-bottom a{
    color:var(--secondary);
}

/*==================================================
WHATSAPP BUTTON
==================================================*/

.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:95px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.20);
    transition:var(--transition);
}

.whatsapp-btn:hover{
    transform:scale(1.1);
    color:#fff;
}

/*==================================================
BACK TO TOP
==================================================*/

.back-to-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--secondary);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    opacity:0;
    visibility:hidden;
    transition:var(--transition);
    z-index:999;
    box-shadow:var(--shadow);
}

.back-to-top.active{
    opacity:1;
    visibility:visible;
}

.back-to-top:hover{
    background:var(--primary);
    color:#fff;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

    .footer{
        text-align:center;
    }

    .footer-title::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-contact li{
        justify-content:center;
    }

    .footer-social{
        justify-content:center;
    }

}

@media(max-width:576px){

    .footer{
        padding-top:60px;
    }

    .footer-logo img{
        height:60px;
    }

    .whatsapp-btn{
        width:55px;
        height:55px;
        font-size:24px;
    }

    .back-to-top{
        width:50px;
        height:50px;
    }

}

/*==================================================
COMMON CARDS
==================================================*/

.card-custom{
    background:#fff;
    border:none;
    border-radius:16px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.card-custom:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

/*==================================================
SERVICE CARD
==================================================*/

.service-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:16px;
    transition:var(--transition);
    box-shadow:var(--shadow);
    height:100%;
}

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

.service-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:rgba(212,175,55,.10);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
    font-size:40px;
    transition:var(--transition);
}

.service-card:hover .service-icon{
    background:var(--secondary);
    color:var(--primary);
}

.service-card h4{
    margin-bottom:15px;
}

.service-card p{
    margin-bottom:20px;
}

/*==================================================
PROJECT CARD
==================================================*/

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    box-shadow:var(--shadow);
}

.project-card img{
    width:100%;
    transition:.5s;
}

.project-card:hover img{
    transform:scale(1.08);
}

.project-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(27,36,51,.95),
    rgba(27,36,51,.15));
    display:flex;
    align-items:flex-end;
    padding:30px;
}

.project-content{
    color:#fff;
}

.project-content span{
    color:var(--secondary);
    font-size:14px;
    font-weight:600;
}

.project-content h4{
    color:#fff;
    margin:10px 0;
}

/*==================================================
TEAM CARD
==================================================*/

.team-card{
    text-align:center;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

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

.team-card img{
    width:100%;
}

.team-content{
    padding:25px;
}

.team-content h4{
    margin-bottom:8px;
}

.team-content span{
    color:var(--secondary);
    font-weight:600;
}

.team-social{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:20px;
}

.team-social a{
    width:38px;
    height:38px;
    border-radius:50%;
    background:var(--light);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
}

.team-social a:hover{
    background:var(--secondary);
}

/*==================================================
TESTIMONIAL CARD
==================================================*/

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:var(--shadow);
    position:relative;
}

.testimonial-card::before{
    content:"\201C";
    position:absolute;
    top:20px;
    right:25px;
    font-size:70px;
    color:rgba(212,175,55,.15);
    font-family:serif;
}

.testimonial-rating{
    color:#FFC107;
    margin-bottom:15px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    margin-top:25px;
}

.testimonial-user img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    margin-right:15px;
}

/*==================================================
COUNTER SECTION
==================================================*/

.counter-section{
    background:var(--primary);
    color:#fff;
}

.counter-box{
    text-align:center;
    padding:30px;
}

.counter-box i{
    font-size:45px;
    color:var(--secondary);
    margin-bottom:20px;
}

.counter-box h2{
    color:#fff;
    font-size:48px;
    margin-bottom:10px;
}

.counter-box p{
    color:rgba(255,255,255,.80);
    margin:0;
}

/*==================================================
FEATURE BOX
==================================================*/

.feature-box{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:25px;
    background:#fff;
    border-radius:14px;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-icon{
    width:70px;
    height:70px;
    background:rgba(212,175,55,.12);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:28px;
    flex-shrink:0;
}

.feature-content h4{
    margin-bottom:10px;
}

/*==================================================
CTA SECTION
==================================================*/

.cta-section{
    background:linear-gradient(rgba(27,36,51,.92),
    rgba(27,36,51,.92)),
    url('../images/banners/cta.jpg') center/cover;
    text-align:center;
    color:#fff;
}

.cta-section h2{
    color:#fff;
    margin-bottom:20px;
}

.cta-section p{
    color:rgba(255,255,255,.85);
    max-width:700px;
    margin:auto auto 35px;
}

/*==================================================
BADGES
==================================================*/

.badge-custom{
    display:inline-block;
    background:rgba(212,175,55,.15);
    color:var(--secondary);
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/*==================================================
IMAGE HOVER
==================================================*/

.image-hover{
    overflow:hidden;
    border-radius:16px;
}

.image-hover img{
    transition:.5s;
}

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

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

    .feature-box{
        flex-direction:column;
        text-align:center;
    }

    .feature-icon{
        margin:auto;
    }

}

@media(max-width:576px){

    .service-card,
    .testimonial-card,
    .team-content{
        padding:25px;
    }

    .counter-box h2{
        font-size:36px;
    }

}

/*==================================================
LOADER
==================================================*/

.preloader{
    position:fixed;
    inset:0;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.loader{
    width:60px;
    height:60px;
    border:5px solid var(--light);
    border-top:5px solid var(--secondary);
    border-radius:50%;
    animation:loaderSpin 1s linear infinite;
}

@keyframes loaderSpin{
    to{
        transform:rotate(360deg);
    }
}

/*==================================================
FORM ELEMENTS
==================================================*/

.form-control,
.form-select{

    height:56px;
    border:1px solid var(--border);
    border-radius:12px;
    padding:12px 18px;
    box-shadow:none;
    transition:var(--transition);

}

textarea.form-control{

    height:160px;
    resize:none;

}

.form-control:focus,
.form-select:focus{

    border-color:var(--secondary);
    box-shadow:0 0 0 .2rem rgba(212,175,55,.15);

}

/*==================================================
FAQ ACCORDION
==================================================*/

.accordion-item{

    border:none;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:15px;
    box-shadow:var(--shadow);

}

.accordion-button{

    font-weight:600;
    padding:18px 22px;
    background:#fff;

}

.accordion-button:not(.collapsed){

    background:var(--primary);
    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:22px;

}

/*==================================================
TIMELINE
==================================================*/

.timeline{

    position:relative;
    padding-left:40px;

}

.timeline::before{

    content:"";
    position:absolute;
    left:12px;
    top:0;
    bottom:0;
    width:3px;
    background:var(--secondary);

}

.timeline-item{

    position:relative;
    margin-bottom:40px;

}

.timeline-item::before{

    content:"";
    position:absolute;
    left:-36px;
    top:8px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:var(--secondary);

}

/*==================================================
PROGRESS BAR
==================================================*/

.progress{

    height:10px;
    border-radius:50px;
    background:#eee;

}

.progress-bar{

    background:var(--secondary);

}

/*==================================================
TABLE
==================================================*/

.table{

    border-radius:12px;
    overflow:hidden;
    box-shadow:var(--shadow);

}

.table thead{

    background:var(--primary);
    color:#fff;

}

.table th,
.table td{

    padding:15px;

}

/*==================================================
GALLERY
==================================================*/

.gallery-item{

    position:relative;
    overflow:hidden;
    border-radius:16px;

}

.gallery-item img{

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-overlay{

    position:absolute;
    inset:0;
    background:rgba(27,36,51,.70);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;

    transition:var(--transition);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay i{

    color:#fff;
    font-size:36px;

}

/*==================================================
PRICING CARD
==================================================*/

.pricing-card{

    background:#fff;
    border-radius:16px;
    box-shadow:var(--shadow);
    padding:40px;
    text-align:center;
    transition:var(--transition);

}

.pricing-card:hover{

    transform:translateY(-10px);

}

.pricing-price{

    font-size:52px;
    color:var(--secondary);
    font-weight:700;

}

/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

    background:var(--secondary);
    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary);

}

/*==================================================
SELECTION
==================================================*/

::selection{

    background:var(--secondary);
    color:var(--primary);

}

/*==================================================
SPACING UTILITIES
==================================================*/

.py-120{

    padding-top:120px;
    padding-bottom:120px;

}

.pt-120{

    padding-top:120px;

}

.pb-120{

    padding-bottom:120px;

}

.mt-80{

    margin-top:80px;

}

.mb-80{

    margin-bottom:80px;

}

/*==================================================
BORDER RADIUS
==================================================*/

.radius-10{

    border-radius:10px;

}

.radius-15{

    border-radius:15px;

}

.radius-20{

    border-radius:20px;

}

/*==================================================
ANIMATION
==================================================*/

.fade-up{

    opacity:0;
    transform:translateY(30px);
    transition:all .7s ease;

}

.fade-up.show{

    opacity:1;
    transform:translateY(0);

}

/*==================================================
PRINT
==================================================*/

@media print{

    .top-bar,
    .navbar,
    .footer,
    .whatsapp-btn,
    .back-to-top{

        display:none!important;

    }

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

    .py-120{

        padding-top:80px;
        padding-bottom:80px;

    }

}

@media(max-width:767px){

    section{

        padding:70px 0;

    }

    h1{

        font-size:38px;

    }

    h2{

        font-size:32px;

    }

    h3{

        font-size:26px;

    }

}

@media(max-width:576px){

    .py-120{

        padding-top:60px;
        padding-bottom:60px;

    }

}

