@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* font-family: "Manrope", sans-serif; */
/* font-family: "Inter", sans-serif; */
/* font-family: "Playfair Display", serif; */

/* CSS Boilerplate */

/* Reset some default browser styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Set base font and background */
html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
    /* font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5; */
    background-color: #fff;
    color: #222;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    /* margin-bottom: 0.5em; */

}

/* Links */
a {
    color: #222;
    text-decoration: none;
    cursor: pointer;
}

.special-heading {
    font-family: "Playfair Display", serif;
    font-style: italic;
}

/* desktop navigation */
.navigation {
    width: 100%;
    height: 100px;
    background-color: #fff;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;


    .naviContainer {
        width: 100%;
        height: 100%;
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: space-between;

        .logo {
            width: 20%;
            height: auto;
            overflow: hidden;

            img {
                width: 200px;
                height: auto;
            }
        }

        .nav-items {
            width: 50%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-evenly;

            ul {
                list-style: none;
                display: flex;
                align-items: center;
                justify-content: space-evenly;
                width: 100%;
                height: 100%;
            }

            a {
                font-size: 1.1rem;
                line-height: 1.8rem;
                font-weight: 500;
                color: #181818;
                position: relative;
                transition: all 0.3s ease-in-out;
            }
        }

        .nav-cta {
            width: 20%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-end;

            a {
                font-size: 1.1rem;
                line-height: 1.8rem;
                font-weight: 500;
                color: #fafafa;
                background: linear-gradient(90deg, #3B0070, #931BFF);
                padding: 10px 20px;
                border-radius: 15px;
            }
        }
    }
}

.nav-items a {
    transition: all 0.3s ease-in-out;
    position: relative;
}

.nav-items a>i {
    /* color: #3D3C50; */
    color: #CB1725;
    transition: all 0.3s ease-in-out;
    position: absolute;
    right: -25px;
}

.nav-items a:hover i {
    /* color: #574270; */
    color: #9E1621;
    transform: rotate(90deg);
}


@media only screen and (max-width:768px) {
    .navigation {
        display: none;
    }
}

/* desktop navigation */

@media only screen and (max-width:768px) {
    .navigation {
        display: none;
    }
}


/* cta section */
.ctaSection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .ctaContainer {
        width: 100%;
        height: auto;
        max-width: 1400px;
        margin: 50px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* padding: 80px 60px; */
        /* background: linear-gradient(140deg, #6076da, #684F88); */
        background: linear-gradient(140deg, #382A4B, #684F88, #9174B8, #574270);
        border: 0.5px solid #382A4B40;
        border-radius: 25px;
        overflow: hidden;
        position: relative;

        .absolute-circle {
            position: absolute;
            right: -80px;
            top: -100px;
            background-color: #fff;
            border-radius: 50%;
            width: 500px;
            height: 500px;
        }

        .absolute-circle-2 {
            position: absolute;
            right: -170px;
            top: -180px;
            /* background-color: #fff; */
            background: none;
            border: 30px solid #fff;
            border-radius: 50%;
            width: 650px;
            height: 650px;
            z-index: 8;
        }

        .cta-left {
            width: 60%;
            height: auto;
            padding: 80px 50px;

            h4 {
                display: inline-block;
                /* font-size: 1.1rem; */
                background-color: #F3E5FF;
                padding: 3px 10px;
                border-radius: 5px;
                margin-bottom: 20px;
                font-weight: 500;

            }

            h2 {
                font-size: 2.5rem;
                line-height: 3rem;
                margin-bottom: 30px;
                max-width: 70%;
                color: #fafafa;
            }

            >p {
                color: #fbfbfb;
                font-size: 1.1rem;
                max-width: 70%;
                text-align: left;
                margin-bottom: 50px;
            }

            .cta-btn {
                border: 1px solid #fdfdfd;
                background-color: #f9f9f9;
                color: #171717;
                padding: 10px 20px;
                border-radius: 15px;
                transition: all .3s ease-in-out;

            }

            .cta-btn:hover {
                transform: translateX(5px);
            }

        }

        .cta-right {
            width: 40%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            z-index: 9;

            img {
                width: 100%;
                height: auto;
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .ctaSection {
        padding: 0 10px;
        
        .ctaContainer {
            padding: 0;
            margin: 40px 0;
            flex-wrap: wrap;
            border-radius: 15px;
            border: none;

            .absolute-circle,
            .absolute-circle-2 {
                display: none;
            }

            .cta-left {
                display: block;
                width: 100%;
                padding: 50px 20px;
                align-items: center;
                text-align: center;
                justify-content: center;
                flex-direction: column;

                h4 {
                    text-align: center;
                    display: inline-block;
                    font-size: 14px;
                    margin-bottom: 10px;
                }

                h2 {
                    font-size: 2rem;
                    line-height: 2.5rem;
                    width: 100%;
                    max-width: 100%;
                    margin-bottom: 15px;
                }

                >p {
                    font-size: 1rem;
                    line-height: 1.4rem;
                    text-align: center;
                    max-width: 100%;
                    width: 100%;
                    margin-bottom: 40px;
                }

            }

            .cta-right {
                display: none !important;
            }
        }
    }
}

/* cta section */


/* footer section */
.footer-Section {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
    box-shadow: -2px 0 10px #382A4B25;

    .footerContainer {
        width: 100%;
        height: auto;
        max-width: 1400px;
        margin-bottom: 30px;
        display: flex;
        align-items: start;
        justify-content: space-between;
        gap: 40px;
        margin-top: 50px;
        /* padding: 30px 0; */

        .footer-Child-1 {
            width: 25%;
            height: auto;
            overflow: hidden;
            display: flex;
            align-items: start;
            justify-content: start;
            flex-direction: column;

            img {
                width: 200px;
                height: auto;
                margin-bottom: 20px;
            }

            p {
                color: #333;
                margin-bottom: 30px;
            }

            h5 {
                font-size: 1rem;
                color: #222;
                margin-bottom: 15px;
            }

            .foot-social {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 20px;
                margin-bottom: 30px;

                a>i {
                    font-size: 1.1rem;
                    color: #382A4B;
                    padding: 8px;
                    border-radius: 10px;
                    background-color: #E9CFFF;
                }
            }


        }

        .footer-Child-2,
        .footer-Child-3,
        .footer-Child-4 {
            width: 25%;
            height: auto;
            min-height: 200px;
            overflow: hidden;
            display: flex;
            align-items: start;
            justify-content: flex-start;
            flex-direction: column;

        }

        .footer-Child-2 {

            h4 {
                font-size: 1.2rem;
                color: #181818;
                margin-bottom: 10px;
                font-weight: 600;
            }

            ul>li {
                list-style: none;
                margin-bottom: 8px;
            }

            a {
                font-size: 1rem;
                font-weight: 450;
                color: #262626;

                i {
                    font-size: 1rem;
                    color: #3B0070;
                }
            }

        }

        .footer-Child-3 {

            h4 {
                font-size: 1.2rem;
                color: #181818;
                margin-bottom: 10px;
                font-weight: 600;
            }

            ul>li {
                list-style: none;
                margin-bottom: 8px;
            }

            a {
                font-size: 1rem;
                font-weight: 450;
                color: #262626;
            }
        }

        .footer-Child-4 {

            h4 {
                font-size: 1.2rem;
                color: #181818;
                margin-bottom: 10px;
                font-weight: 600;
            }
        }

        a {
            font-size: 1rem;
            font-weight: 450;
            color: #262626;
            margin-bottom: 8px;

            i {
                font-size: 1rem;
                color: #3B0070;
            }
        }

        p {
            font-size: 1rem;
            font-weight: 450;
            color: #262626;

            i {
                font-size: 1rem;
                color: #3B0070;
            }
        }

    }

    .foot-hr {
        width: 100%;
        max-width: 1400px;
        height: 1.5px;
        background-color: #363545;
        border: none;
        border-radius: 50px;
    }

    .foot-legal {
        width: 100%;
        height: auto;
        max-width: 1400px;
        margin-top: 20px;
        margin-bottom: 20px;
        /* padding: 0 20px; */
        display: flex;
        align-items: center;
        justify-content: space-between;

        .f-left {
            width: 50%;

            p {
                font-size: 1rem;
                color: #525252;
            }
        }

        .f-right {
            width: 50%;
            display: flex;
            align-items: center;
            justify-content: end;
            gap: 20px;

            a {
                font-size: 1rem;
                color: #525252;
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .footer-Section {
        padding: 10px;

        .footerContainer {
            padding: 0;
            margin-bottom: 0 !important;
            flex-wrap: wrap;

            .footer-Child-1 {
                width: 100%;
                height: auto;
            }

            .footer-Child-2,
            .footer-Child-3 {
                width: 45%;
                height: auto;
            }

            .footer-Child-4 {
                width: 100%;
                height: auto !important;
                min-height: auto !important;
                margin-bottom: 40px;
            }

            .foot-hr {
                width: 100%;
                height: 1px;
            }

        }

        .foot-legal {
            width: 100%;
            /* margin-top: 0px !important; */
            flex-wrap: wrap !important;
            flex-direction: column !important;
            align-items: center;
            text-align: center;
            justify-content: center;


            .f-left,
            .f-right {
                width: 100% !important;
                max-width: 100%;
                margin-bottom: 10px;
                height: auto;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }
    }
}

/* footer section */