@font-face {
    font-family: 'LEMONMILK';
    src: url('../fonts/LEMONMILK-Bold.otf');
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue.otf');
}

:root {

    /* fonts */

    --header-font: 'LEMONMILK';
    --body-font: 'Helvetica Neue';

    /* colors */

    --primary: #1b2f6e;
    --secondary: #111;
    --tertiary: #e9bb47;

    --button-color: #fff;
    --button-hover-bg: #a30000;

    --button-icon: #111;
    --button-icon-bg: #fff;

    --txt-primary: #666;
    --txt-secondary: #1b1b1b;

}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--header-font);
}

a {
    text-decoration: none;
}

p,
span,
a,
button,
ol,
ul,
li {
    font-family: var(--body-font);
}

body {
    color: var(--secondary);
    position: relative;
}

p {
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.4px;
}

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

.primary-btn {
    font-weight: 600;
    padding: 14px 24px;
    border: 0;
    border-radius: 50px;
    background-color: var(--primary);
    color: var(--button-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    max-width: max-content;
}

.primary-btn i {
    background: var(--button-icon-bg);
    color: var(--button-icon);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-btn:hover {
    background-color: var(--button-hover-bg);
    color: var(--button-color);
    transform: translateY(-2px);
}

.section-heading {
    font-size: 48px;
    line-height: 1.3;
}

.head_italic {
    font-style: italic;
    color: var(--tertiary);
}

/*----------------------------------------------- slick slider start --------------------------------------------------------*/

.slick-prev,
.slick-next {
    position: absolute;
    content: ' ';
    display: block;
    height: 44px;
    width: 44px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translateY(-50%);
    padding: 0;
    border: none;
    z-index: 1;
    background: #fbf7f5;
    box-shadow: 0 2px 10px #36363626;
    border-radius: 50%;
    transition: all .3s ease;
}

.slick-prev::before {
    background: url('../images/lft-icn.png');
}

.slick-next {
    right: 4px;
}

.slick-next::before {
    background: url('../images/rigt-icn.png');
}

.slick-prev::before,
.slick-next::before {
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
    font-size: 18px;
    line-height: 1;
    color: var(--secondary);
    top: 10px;
    left: 10px;
    opacity: 1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slick-slide {
    padding: 10px;
}

.slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.slick-dots li {
    list-style: none;
    margin: 0 10px;
}

.slick-dots button {
    border: none;
    background: #ffffff;
    display: block;
    height: 6px;
    width: 6px;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
    transition: all .3s ease;
}

.slick-dots li button:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    transition: 0.3s;
    display: inline-block;
}

.slick-dots li.slick-active button:before {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: -2px;
    background: var(--tertiary);
}

/*----------------------------------------------- slick slider --------------------------------------------------------*/


/*---------------------------------------------------- Header CSS Start---------------------------------------------- */

#header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo img {
    max-height: 100px;
}

header .navbar {
    background: #fff;
    padding: 0px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

header .navbar .navbar-nav .nav-item a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--txt-primary);
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

header .navbar .navbar-nav .nav-item a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--primary);
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

header .navbar .navbar-nav .nav-link.active,
header .navbar .navbar-nav .nav-item a:hover {
    color: var(--primary);
}

header .navbar .navbar-nav .nav-link.active::after,
header .navbar .navbar-nav .nav-item a:hover::after {
    width: 100%;
}

header .navbar .contact-btn {
    padding: 10px 18px;
    font-weight: 500;
}

/*---------------------------------------------------- Header CSS End---------------------------------------------- */

/*---------------------------------------------------- Footer CSS Start---------------------------------------------- */

/*--------------------------------------------------- Hero banner CSS Start ---------------------------------------------------------*/

#page-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 0;
    background: url('../images/mpc-banner.jpg') rgba(0, 0, 0, 0.5);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: darken;
    background-attachment: fixed;
}

#page-banner .banner_title {
    color: #fff;
}

/*--------------------------------------------------- Hero banner CSS End ---------------------------------------------------------*/


/*---------------------------------------------------- Footer CSS Start---------------------------------------------- */

.site-footer {
    position: relative;
    background: url('../images/entreprenours-img.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    color: var(--primary);
    padding: 70px 0 10px;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.80);
    z-index: 1;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 100px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--txt-secondary);
}

.footer-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary);
}

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

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

.footer-links a {
    color: var(--txt-secondary);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--txt-secondary);
}

.footer-contact a {
    color: var(--txt-secondary);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: var(--txt-secondary);
}

/*---------------------------------------------------- Footer CSS End---------------------------------------------- */


/*---------------------------------------------------- Responsive -----------------------------------------------------*/


@media (max-width: 992px) {

    /*----------------------------------------------- Common CSS START ----------------------------------*/

    .section-heading {
        font-size: 28px;
    }

    /*----------------------------------------------- Common CSS END ----------------------------------*/

    /*----------------------------------------------- Header Start ----------------------------------*/

    header .navbar {
        padding: 30px;
    }

    .navbar-collapse {
        padding: 20px 0;
    }

    header li.nav-item {
        border-bottom: 1px solid #dadada;
        padding: 3px 0;
    }

    header li.nav-item:has(.active) {
        background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 22%, rgb(248 249 251) 100%);
    }

    header .navbar .navbar-nav li.nav-item .nav-link.active {
        color: #fff;
    }

    header .navbar .navbar-nav .nav-item a::after {
        display: none;
    }

    /*----------------------------------------------- Header End ----------------------------------*/

    /*----------------------------------------------- Footer CSS start ----------------------------------*/
    

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /*----------------------------------------------- Footer CSS End ----------------------------------*/

}

@media (max-width: 767px) {

    /*----------------------------------------------- Common CSS START ----------------------------------*/

    p {
        font-size: 15px;
    }

    /*----------------------------------------------- Common CSS END ----------------------------------*/

    /*----------------------------------------------- Header CSS Start ----------------------------------*/

    header .navbar {
        padding: 0;
    }

    header .logo img {
        max-width: 75px;
    }

    /*----------------------------------------------- Header CSS End ----------------------------------*/

    /*--------------------------------------------------- Hero banner CSS Start --------------------------------------------*/

    #page-banner {
        padding: 80px 0;
    }

    #page-banner .banner_title {
        color: #fff;
    }

    #page-banner {
        background-position: right;
    }

    /*--------------------------------------------------- Hero banner CSS End -----------------------------------------------*/



    /*----------------------------------------------- Button CSS start ----------------------------------*/

    .primary-btn{
        padding: 8px 16px;
        border-radius: 30px;
    }

    .primary-btn i{
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    /*----------------------------------------------- Button CSS end ----------------------------------*/


    /*----------------------------------------------- Footer CSS start ----------------------------------*/

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 20px;
    }

    /*----------------------------------------------- Footer CSS End ----------------------------------*/


}