@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Fredoka:wght@300..700&display=swap');

:root {
    /*  Font Family  */
    --font-family-primary: "Fredoka", sans-serif;
    --font-family-secondary: "Figtree", sans-serif;
    /* Color */
    --white: #ffffff;
    --black: #000000;
    --lightblue: #DBEAF7;
    --purple: #9A26B1;
    --green: #88C90D;
    --darkgrey: #2D2D2D;
    /*Text-size*/
    --font-40: 40px;
    --font-38: 38px;
    --font-28: 28px;
    --font-26: 26px;
    --font-24: 24px;
    --font-20: 20px;
    --font-18: 18px;
    /*Line Height*/
    --leading-28: 28px;
    /*spacing*/
    --space100: 100px;
    --space50: 50px;
    /* Radius */
    --rounded-50: 50px;
  
}
/*  BreakPoints  */
@media (max-width: 1920px) {
    :root {
        /*Text-size*/
        --font-40: 36px;
        --font-38: 34px;
        --font-28: 28px;
        --font-26: 24px;
        --font-24: 22px;
        /* spacing */
        --space100: 100px;
    }
}
@media (max-width: 1400px) {
    :root {
        /*Text-size*/
        --font-40: 36px;
        --font-38: 34px;
        /* spacing */
        --space100: 80px;
    }
}

@media (max-width: 1200px) {
    :root {
        /*Text-size*/
        --font-40: 34px;
        --font-38: 32px;
        --font-28: 26px;
        --font-26: 24px;
        /* spacing */
        --space100: 70px;
    }
}

@media (max-width: 992px) {
    :root {
        /*Text-size*/
        --font-40: 32px;
        --font-38: 30px;
        --font-18: 16px;
        --font-28: 24px;
        --font-26: 22px;
        --font-24: 22px;
        /* spacing */
        --space100: 60px;
        --space50: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        /*Text-size*/
        --font-40: 30px;
        --font-38: 28px;
        --font-28: 22px;
        --font-26: 20px;
        --font-24: 20px;
        --font-20: 18px;
        /* spacing */
        --space100: 50px;
        --space50: 35px;
    }
}

@media (max-width: 576px) {
    :root {
        /*Text-size*/
        --font-40: 30px;
        --font-38: 28px;
        /* spacing */
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-family: var(--font-family-primary);
    font-size: clamp(26px, 3.125vw, 54px);
    font-weight: 400;
    line-height: 1.2em;
}

@media (max-width:992px) and (min-width: 576px) {
    h2 {
        font-size: 26px !important;
    }
}

h2 {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 500;
    line-height: 1.1em;
    font-family: var(--font-family-primary);
}

h3 {
    font-size: clamp(24px, 4vw, 28px);
    line-height: 1.2em;
    font-weight: 600;
    font-family: var(--font-family-primary);
}

h4 {
    font-size: clamp(20px, 3vw, 24px);
    line-height: 1.2em;
    font-family: var(--font-family-primary);
}

h5 {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.2em;
    font-family: var(--font-family-primary);
    color: #464646;
}

h6 {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.4em;
    font-family: var(--font-family-primary);
}

p,
a {
    font-style: normal;
    font-weight: 400;
    font-size: clamp(15px, 2vw, 16px) !important;
    color: #464646 !important;
}

.font-figtree {
    font-family: var(--font-family-secondary) !important;
}

ul {
    margin: 0;
    padding: 0;
}

footer li,
header li {
    list-style: none;
}

a,
a:hover,
a:focus {
    text-decoration: none !important;
}

img {
    border-style: none;
}

.text-violet {
    color: var(--purple)
}

.text-green {
    color: var(--green);
}

/*.btn-violet {
    background: #9A26B1;
    color: #fff !important;
    padding: 10px 15px;
    display: inline-block;
}*/

.btn-violet,
.btn-green {
    position: relative;
    display: inline-block;
    width: 98px;
    height: 44px;
    transform: rotate(-0deg) skew(0deg);
}

.btn-violet span,
.btn-green span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--purple);
    transition: 0.5s;
    font-size: clamp(15px, 2vw, 16px) !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 0 10px 0 10px
}

.btn-green span {
    background: #88C90D;
}

.btn-violet:hover span:nth-child(3),
.btn-green:hover span:nth-child(3) {
    transform: translate(10px, -10px);
    opacity: 1;
}

/*    .btn-violet:hover span:nth-child(4)
    {
        transform: translate(30px, -30px);
        opacity: 0.8;
    }
*/
.btn-violet:hover span:nth-child(2),
.btn-green:hover span:nth-child(2) {
    transform: translate(5px, -5px);
    opacity: 0.6;
}

/*
    .btn-violet:hover span:nth-child(2)
    {
        transform: translate(10px, -10px);
        opacity: 0.4;
    }
*/
.btn-violet:hover span:nth-child(1),
.btn-green:hover span:nth-child(1) {
    transform: translate(0, 0);
    opacity: 0.2 !important;
}

/*
.btn-green {
    background: #88C90D;
    color: #fff !important;
    padding: 10px 15px;
    display: inline-block;
}
*/
.navbar {
    background: #fff;
}

#hm-banner {
    background: url(../img/ministones-to-milestones-moment-of-motherhood.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-block: 50px;
    margin-top: 86px;

    /* background-attachment: fixed; */
}

/* @media (max-width: 992px) and (min-width: 576px) {
    #hm-banner {
        margin-top: 83px;
    }
}

@media (max-width: 576px) {
    #hm-banner {
        margin-top: 75px;
    }
} */

.bg-car {
    background: url(../img/ministones-to-milestones-motherhood-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}


/*************/
body {
    color: var(--darkgrey);
}

p,a {
    font-size: var(--font-18) !important;
    line-height: var(--leading-28) !important;
    color: var(--darkgrey);
}

/*Comman- Class*/
/*margin*/
.my-100 {
    margin-block: var(--space100);
}
.mb-100 {
    margin-bottom: var(--space100);
}

.mb-10 {
    margin-bottom: 10px
}

.mb-15 {
    margin-bottom: 15px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-50 {
    margin-bottom: var(--space50);
}
.mt-50 {
    margin-top: var(--space50);
}

/*padding*/
.py-100 {
    padding-block: var(--space100);
}

/*Inner-Banner*/
#inner-banner {
    background-color: var(--lightblue);
    padding: 200px 0px 76px 0;
    text-align: center;
}

#inner-banner h1 {
    font-size: var(--font-40);
    color: var(--purple);
    font-weight: 500;
    line-height: normal;
    font-family: var(--font-family-primary)
}

.cloud-img {
    width: 1400px;
    margin-top: -11px;
    filter: drop-shadow(0px 7px 4px #00000015);
}

@media (min-width: 1400px) {
    .cloud-img {
        width: 100% !important;
    }
}

#header .navbar-nav
{
    column-gap: 15px;
}
#header .nav-link
{
    color: #2D2D2D;
    text-decoration: none;
    position: relative;
    transition: all 0.2s ease-in-out;
}

   #header .nav-link:hover,#header .nav-link.active
    {
        color: #9A26B1 !important;
        transform: translateY(-3px);
    }

    #header .nav-link.btn-violet:hover, #header .nav-link.btn-violet.active
    {
        color: #9A26B1 !important;
        transform: translateY(0px);
    }
   #header .nav-link::before
    {
        content: "";
        position: absolute;
        z-index: -1;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 3px;
        background-color: #9A26B1;
        transform: scaleY(0);
        transform-origin: bottom;
        transition: all 0.2s ease-in-out;
    }


    #header .nav-link.btn-violet::before{
        display: none
    }
    #header .nav-link:hover::before, #header .nav-link.active::before
    {
        transform: scaleY(1);
    }
.dropdown-menu {

    border-radius: 0 10px 0 10px;
    overflow: hidden;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: #9A26B1;
    color: #fff !important;
}

@media (min-width: 992px) {

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.35s ease;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .navbar .nav-item:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }
}

/* ensure mobile click works normally */
.dropdown-menu {
    border-radius: 0;
}

.heading {
    font-size: var(--font-38);
    color: var(--purple);
    font-weight: 500;
    line-height: normal;
    font-family: var(--font-family-primary);
    position: relative;
    padding-bottom: 15px;
}

    .heading::after
    {
        content: '';
        width: 200px;
        height: 2px;
        background: var(--purple);
        display: block;
        position: absolute;
        bottom: 6px;
    }

    .heading::before
    {
        content: '';
        width: 104px;
        height: 2px;
        background: var(--green);
        display: block;
        position: absolute;
        bottom: 0;
    }
/**/
.text-center.heading {
    font-size: var(--font-38);
    color: var(--purple);
    font-weight: 500;
    line-height: normal;
    font-family: var(--font-family-primary);
    position: relative;
    padding-bottom: 15px;
}

    .text-center.heading::after {
        content: '';
        width: 200px;
        height: 2px;
        background: var(--purple);
        display: block;
        position: absolute;
        bottom: 6px;
        left: 50%;
        transform: translateX(-50%);
    }

    .text-center.heading::before {
        content: '';
        width: 104px;
        height: 2px;
        background: var(--green);
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
/**/


.subheading {
    font-size: var(--font-28);
    color: var(--purple);
    font-weight: 500;
    line-height: normal;
    font-family: var(--font-family-primary);
    position: relative;
    padding-bottom: 10px;
}

    .subheading::after
    {
        content: '';
        height: 2px;
        background: var(--purple);
        width: 140px;
        display: block;
        position: absolute;
        bottom: 6px;
    }

    .subheading::before
    {
        content: '';
        height: 2px;
        background: var(--green);
        width: 70px;
        display: block;
        position: absolute;
        bottom: 0;
    }



.heading-line-center,
.heading-line {
    position: relative;
}

.heading-line-center::after,
.heading-line::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--purple);
}

.heading-line-center::before,
.heading-line::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 104px;
    height: 2px;
    background: var(--green);
}

@media (min-width: 992px) {

    .heading-line::after,
    .heading-line::before {

        left: 0px !important;
        transform: translateX(0%) !important;
    }
}

#signature-program {
    background: url(../img/ministones-to-milestones-signature-programs.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width:992px){
#signature-program
{
    background-size: cover;
}
}
.signature-card-wrapper .signature-card {
    background: linear-gradient(270deg, var(--purple) 0%, var(--purple) 100%);
    background-size: 100% 0%;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    transition: all 0.6s ease-in-out;

}

.signature-card-wrapper {
    background: var(--white);
}

.signature-card-wrapper .image-box img {
    transition: all 0.8s ease-in-out;
    transform: scale(1.01);
}

.signature-card-wrapper:hover .image-box img {
    transform: scale(1.15);
}

.signature-card-wrapper .card-title {
    color: var(--purple);
    transition: all 0.6s ease-in-out;

}

.signature-card-wrapper .card-text {
    color: var(--darkgrey);
    transition: all 0.6s ease-in-out;

}

.signature-card-wrapper:hover .signature-card {
    background-size: 100% 100%;
}

.signature-card-wrapper .signature-card:hover .card-text,
.signature-card-wrapper .signature-card:hover .card-title {
    color: var(--white) !important;
}

.signature-card-wrapper .go-to {
    background: var(--white);
    width: 40px;
    line-height: 0;
    height: 40px;
    border-radius: 73px;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease-in-out;
    border: 1px solid var(--darkgrey);
    color: var(--darkgrey);
}

.signature-card-wrapper:hover .go-to {
    color: var(--purple);
    border: 1px solid var(--white);
}

#signature-program .top-right-cloud {
    position: absolute;
    top: -35px;
    right: 0;
}

#signature-program .left-bottom-cloud {
    position: absolute;
    bottom: -35px;
    left: 0;
}

.social-impact-bg {
    background: url(../img/ministones-to-milestones-our-social-impact.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.why-us-bg {
    background: url(../img/ministones-to-milestones-why-us.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#our-social-impact .row {
    border-radius: 20px;
    overflow: hidden;
}

#our-social-impact .btn-green {
    width: 172px;
}

#refer {
    background: url(../img/ministones-to-milestones-refer-bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.why-us-bg {
    background: url(../img/ministones-to-milestones-why-us.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonial-bg {
    background: url(../img/ministones-to-milestones-testimonials.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width:992px) {
    .testimonial-bg {
        background: var(--green)
    }
}


#testimonials .testimonials-card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
}

#testimonials .testimonial-bg .pencil {
    position: absolute;
    top: 109px;
    right: -39px;
    width: 236px;
}

@media (max-width: 992px) {
    #testimonials .testimonial-bg .pencil {
        display: none;
    }
}

#testimonials .owl-nav button {
    background: transparent !important;
    border: none !important;
}

#testimonials .owl-nav img {
    width: 50px;
    height: auto;
}

#testimonials .owl-nav {
    display: flex;
    justify-content: space-between;

    width: 121%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 992px) {
    #testimonials .owl-nav {
        position: static !important;
        width: fit-content !important;
        margin-inline: auto;
        transform: unset !important;
    }
}

#testimonials .owl-nav {
    display: flex;
    justify-content: space-between;

    width: 121%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tab-group img {
    border-radius: var(--rounded-50);
}

.vertical-image {
    border-radius: var(--rounded-50);
    overflow: hidden;
}

/* accordion */
.accordion .accordion-item {
    margin-bottom: 20px;
    border-radius: 20px;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    border: 1px solid var(--purple);
    border: 1px solid var(--purple);
}

.accordion-button {
    border-radius: 20px;
    padding: 10px 20px;
    line-height: normal;
    font-family: var(--font-family-primary);
    font-size: var(--font-24);
    font-weight: 400;
}

.accordion-button:focus {
    box-shadow: unset;
}

.accordion .accordion-button:not(.collapsed) {
    background: var(--purple);
    color: var(--white);
    box-shadow: unset;
    border: 1px solid transparent;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.accordion-body {
    border-radius: 20px;
}

.accordion-button::after {
    content: "\F123";
    font-family: bootstrap-icons !important;
    transition: transform 0.9s ease;
    background: unset;
    width: auto;
    height: auto;
    font-size: 20px;
}

.accordion-button:not(.collapsed)::after {
    content: " \F11E";
    font-family: bootstrap-icons !important;
    background: unset;
}

/*Tabs*/
.inner-custom-pills.inner-custom-pills {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.inner-custom-pills.inner-custom-pills .nav-link::after {
    content: unset;
}
.custom-pills {
    display: flex;
    flex-direction: column;
}

.custom-pills .nav-link {
    position: relative;
    margin-bottom: 15px;
    padding: 10px 25px;
    font-family: var(--font-family-primary);
    border: 1px solid var(--darkgrey);
    background: #ffffff;
    color: var(--darkgrey);
    font-weight: 600;
    font-size: var(--font-20) !important;
}

.custom-pills .nav-link::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 18px solid var(--darkgrey);
}

.custom-pills .nav-link.active {
    background: var(--green);
    color: var(--white) !important;
    border-color: var(--green);
}


.custom-pills .nav-link.active::after {
    border-left-color: var(--green);
}
@media (max-width: 992px) {
    .custom-pills {
        position: relative;
        height: 100%;
        top: 0;
    }
}
/*-----------*/
    .home .custom-pills {
        position: relative;
        height: 100%;
        top: 0;
    }
    .home .custom-pills .nav-link .cutout-heading {
        padding: 5px 12px;
        margin-inline: -54px 24px;
        border-radius: 50px;
        border: 1px solid var(--purple);
        background: #ffffff;
        color: var(--purple);
        font-weight: 600;
        font-size: var(--font-24) !important;
        height: 52px;
        width: 52px;
    }
.verticals-work .vertical-image {
    height: 412px;
    width: 100%;
}
    .verticals-work .vertical-image img {
        object-fit: cover;
        height: 412px;
        width: 100%;
    }

@media (max-width: 992px) {
    .home .custom-pills .nav-link .cutout-heading {
            display: none;
        }
    }

    .home .custom-pills .nav-link.active {
        background: var(--purple);
        border-color: var(--purple);
    }

    .home .custom-pills .nav-link.active::after {
        border-left-color: var(--purple);
    }

    @media (max-width: 992px) {
        .custom-pills {
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-bottom: 30px;
        }

        .custom-pills .nav-link {
            margin-bottom: 0;
            padding: 10px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 220px;
        }

        .custom-pills .nav-link::after {
            content: unset;
        }
    }


    @media (max-width: 992px) {
        .vertical-image {
            /* width: 300px; */
            margin: auto;
            height: 350px;
            margin-top: 31px;
        }
    }

    .vertical-image .text-overlay {
        background: linear-gradient(180deg, #0000 0%, #000000E5 100%);
        height: 200px;
        align-content: end;
    }

    /* signature*/
    .signature .title {
        font-size: var(--font-26);
        font-weight: 500;
        font-family: var(--font-family-primary);
        line-height: normal;
        color: #4e4e4e;
    }

    .signature img , .about-us .img{
        border-radius: 30px;
        height: 503px;
        object-fit: cover;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    @media (max-width: 992px) {
        .signature img {
            height: auto;
        }
    }

    .touch-box {
        background-color: var(--lightblue);
        border-radius: 20px;
        padding: 30px 20px;
    }

    .touch-box .content.content p {
        font-size: var(--font-24) !important;
        font-weight: 600 !important;
        color: var(--purple) !important;
        line-height: normal;
    }

    .touch-box .btn-green {
        width: 130px;
        height: 45px;
    }

    ul.custom-bullet {
        list-style: none;
        padding-left: 0;
    }

        ul.custom-bullet li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            font-size: var(--font-18);
            color: var(--darkgrey);
            line-height: normal;
            font-weight: 500;
            font-family: var(--font-family-secondary);
        }

            ul.custom-bullet li::after {
                content: '';
                background: url('../../assets/img/bullet-img.png') no-repeat left center;
                background-size: 16px 16px;
                width: 16px;
                height: 16px;
                position: absolute;
                left: 0;
                top: 3px;
            }

    .subtitle {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px;
        font-size: var(--font-26) !important;
        color: #4e4e4e !important;
        line-height: normal;
        font-weight: 500;
        font-family: var(--font-family-primary);
    }

        .subtitle::after {
            content: '';
            background: url('../../assets/img/bullet-img.png') no-repeat left center;
            background-size: 20px 20px;
            width: 20px;
            height: 20px;
            position: absolute;
            left: 0;
            top: 3px;
        }

        .subtitle.purple-subtitle {
            color: var(--purple) !important;
            font-family: var(--font-family-primary);
        }

            .subtitle.purple-subtitle::after {
                content: '';
                background: url('../../assets/img/purplebullet-img.png') no-repeat left center;
                background-size: 20px 20px;
                width: 20px;
                height: 20px;
            }

    .mini-subtitle {
        color: #4e4e4e;
        font-weight: 500;
        font-size: var(--font-22);
        font-family: var(--font-family-primary);
        line-height: normal;
        margin-bottom:10px;
    }


    /*Table*/
    .signature table.table thead th {
        font-size: var(--font-26);
        font-family: var(--font-family-primary);
        font-weight: 500;
        color: var(--white);
        line-height: normal;
        background-color: var(--darkgrey);
        text-align: center;
        padding: 20px;
    }

    .signature table.table tbody th {
        font-size: var(--font-18);
        font-family: var(--font-family-secondary);
        font-weight: 600;
        color: var(--darkgrey);
        line-height: normal;
        padding: 20px;
    }

    .signature table.table tbody td {
        font-size: var(--font-18);
        font-family: var(--font-family-secondary);
        font-weight: 400;
        color: var(--darkgrey);
        line-height: normal;
        padding: 20px;
    }

    .signature table.table {
        margin: 30px 0;
        border: 1px solid #4e4e4e;
        border-collapse: separate !important;
        border-spacing: 0;
        border-radius: 30px;
    }

    .signature .table thead th:first-child {
        border-top-left-radius: 30px;
    }

    .signature .table thead th:last-child {
        border-top-right-radius: 30px;
    }

    .signature .table tbody th {
        border-right: 1px solid #4e4e4e;
    }

    .signature .table tbody tr:last-child {
        border: transparent;
    }

        .signature .table tbody tr:last-child th:first-child {
            border-bottom-left-radius: 30px;
        }

        .signature .table tbody tr:last-child td:last-child {
            border-bottom-right-radius: 30px;
        }

    /*footer*/



    .border-line {
        color: #2D2D2D !important;
        opacity: unset !important;
    }

    .footer-links li a:hover,
    .links-hover:hover {
        color: #9A26B1 !important;
    }

    @media(min-width: 576px) {
        .links-dot ul li {
            list-style: disc !important;
        }
    }


    .text-violet {
        color: #9A26B1 !important;
    }

    .text-frekoda {
        font-family: "Fredoka", sans-serif;
    }

    .social-icons-style {
        background: #2D2D2D;
        color: #ffffff;
        padding: 11px 12px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background 0.35s ease, transform 0.25s ease, box-shadow 0.35s ease;
    }

        /* Hover effect */
        .social-icons-style:hover {
            background: #9A26B1;
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 10px 25px rgba(154, 38, 177, 0.45);
        }

        /* Click/press feel */
        .social-icons-style:active {
            transform: translateY(-1px) scale(0.97);
            box-shadow: 0 6px 15px rgba(154, 38, 177, 0.35);
        }

    footer {
        background: url('assets/img/footer-bg.png'), url('assets/img/footer-bg.webp');
        background-repeat: no-repeat;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .space-up {
        padding-top: 170px;
    }

    .space-bott {
        margin-bottom: 30px;
    }

    @media(min-width: 992px) {
        .content-shift {
            margin-left: 40px;
        }
    }
    .small-text {
        font-size: 16px !important;
    }
    .pos-sticky {
        position: sticky;
        top: 150px;
    }
    .sub-subtitle {
        font-size: var(--font-24) !important;
        font-family: var(--font-family-secondary) !important;
        color: var(--darkgrey)!important;
        line-height: normal;
        font-weight: 600;
        margin-bottom:15px;
    }
.contact-box{
/*    padding-left:25px;*/
    width:100%;
    position:relative;
    overflow:hidden;
}
.contact-box .contact-card {
    border-radius: 10px;
    border: 1px solid var(--purple);
    padding: 20px 20px 20px 100px;

}
    .contact-box .contact-card .icon {
        position: absolute;
        height: 70px;
        width: 70px;
        border-radius: 50%;
        background: var(--purple);
        color: var(--white);
        text-align: center;
        align-self: center;
        font-size: 30px;
        left:20px;
        padding-top: 12px;
        top: 50%;
        transform: translateY(-50%);
    }
    .contact-box .contact-card .detail {
        font-family: var(--font-family-secondary);
        font-size: var(--font-26) !important;
        font-weight: 500;
        color: var(--darkgrey) !important;
        line-height: normal !important;
        white-space: nowrap; 
        overflow: hidden; 
        text-overflow: ellipsis; 
        display:block;
    }
    .contact-box .contact-card .bg-icon {
        position: absolute;
        font-size:130px;
        bottom: -65px;
        right: -10px;
        opacity: 0.1;
    }
     
/* Start Form*/
.form-card {
    border: 1px solid var(--purple);
    border-radius:10px;
    margin-bottom:30px;
}
.form-body {
    padding:30px;
}
.form-heading{
    background:var(--purple);
    color:var(--white);
    width:100%;
    text-align:center;
    padding-block:30px;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
}
.form-control, .form-select {
    border-radius: 10px;
    border: 1px solid var(--purple);
    height: 50px;
    margin-bottom: 30px;
    color: var(--darkgrey);
    font-family: var(--font-family-secondary);
}

    .form-select option {
        color: var(--darkgrey);
        font-family: var(--font-family-secondary);
    }

    .form-control::placeholder {
        color: var(--darkgrey);
        font-family: var(--font-family-secondary);
    }

    .form-control:focus, textarea.form-control:focus, .form-select:focus {
        box-shadow: unset;
        border: 1px solid var(--black);
    }

    .form-control:hover, textarea.form-control:hover, .form-select:hover {
        box-shadow: unset;
        border: 1px solid var(--darkgrey);
    }
    textarea.form-control {
        height: auto;
    }
.dropdown-toggle::after {
    content: unset;
}
.floating-btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: var(--purple);
    font-size: 18px!important;
    font-family:var(--font-family-primary);
    text-align: center;
    line-height: normal;
    border-radius:0px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 9999;
    color:var(--white)!important;
    padding:10px 15px;
    border:3px solid var(--purple);
    transition:0.5s all ease;
    font-weight:500;
}
    .floating-btn:hover {
        background-color: var(--white);
        font-size: 28px;
        color: var(--purple) !important;
    }
.tag-box {
    background-color: var(--green);
    font-size:var(--font-24) !important;
    font-family: var(--font-family-primary);
    text-align: left;
    line-height: normal;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    color: var(--white) !important;
    padding: 10px 15px;
    border: 3px solid var(--green);
    font-weight: 500;
}
.experts-group {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius:10px;
    padding:25px 30px;
}
