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

/* ======================================= VARIABLES CSS ======================================= */
:root {
    --header-height: 4rem;

    /* ======================================= COLORS ======================================= */
    /*Purple 250 - Green 142 - Blue 230 - Pink 340*/
    --hue-color: 0;

    --first-color: hsl(348, 100%, 32%);
    --first-color-second: hsl(348, 93%, 61%);
    --first-color-alt: hsl(348, 94%, 53%);
    --first-color-lighter: hsl(348, 100%, 85%);
    --first-color-lighter-dark: hsl(348, 85%, 30%);
    /* --second-color: hsl(240, 97%, 26%); */
    --second-color: hsl(240, 65%, 36%);
    --second-color-hover: hsl(240, 65%, 46%);
    --title-color: hsl(348, 15%, 15%);
    --text-color: hsl(348, 15%, 45%);
    --text-color-light: hsl(0, 15%, 65%);
    --input-color: hsl(0, 75%, 96%);
    --body-color: hsl(0, 65%, 99%);
    --container-color: white;
    --white-color: var(--container-color);
    --black-color: black;
    --scroll-bar-color: hsl(0, 12%, 90%);
    --scroll-bar-thumb-color: hsl(0, 12%, 80%);
    --border-color: #DADCE0;

    /* ======================================= FONT & TYPORGRAPHY ======================================= */
    --body-font: 'Poppins', sans-serif;

    --biggest-font-size: 4rem;
    --bigger-font-size: 3rem;
    --big-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /* ======================================= Z INDEX ======================================= */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/* ======================================= FONT SIZE FOR LARGER SCREENS ======================================= */
@media screen and (min-width: 968px) {
    :root {
        --biggest-font-size: 5rem;
        --bigger-font-size: 4rem;
        --big-font-size: 3rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

/* ======================================= BASE ======================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: overlay;
}

body {
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    /* background-color: var(--body-color); */
    /* background-image: linear-gradient(359deg, rgba(92, 88, 88, 0.02) 0%, rgba(92, 88, 88, 0.02) 8%, transparent 8%, transparent 27%, rgba(152, 152, 152, 0.02) 27%, rgba(152, 152, 152, 0.02) 80%, rgba(61, 48, 48, 0.02) 80%, rgba(61, 48, 48, 0.02) 100%), linear-gradient(250deg, rgba(9, 9, 9, 0.02) 0%, rgba(9, 9, 9, 0.02) 33%, transparent 33%, transparent 40%, rgba(240, 240, 240, 0.02) 40%, rgba(240, 240, 240, 0.02) 68%, rgba(141, 141, 141, 0.02) 68%, rgba(141, 141, 141, 0.02) 100%), linear-gradient(107deg, rgba(229, 229, 229, 0.02) 0%, rgba(229, 229, 229, 0.02) 12%, transparent 12%, transparent 24%, rgba(89, 89, 89, 0.02) 24%, rgba(89, 89, 89, 0.02) 38%, rgba(206, 206, 206, 0.02) 38%, rgba(206, 206, 206, 0.02) 100%), linear-gradient(64deg, rgba(129, 121, 121, 0.02) 0%, rgba(129, 121, 121, 0.02) 33%, transparent 33%, transparent 73%, rgba(191, 191, 191, 0.02) 73%, rgba(191, 191, 191, 0.02) 78%, rgba(83, 83, 83, 0.02) 78%, rgba(83, 83, 83, 0.02) 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255)); */
    color: var(--black-color);
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

ul {
    list-style: none;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: red;
}

img {
    max-width: 100%;
    height: auto;
}

input::-webkit-input-placeholder, button::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font: inherit;
}

input::-moz-placeholder, button::-moz-placeholder, textarea::-moz-placeholder {
    font: inherit;
}

input:-ms-input-placeholder, button:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font: inherit;
}

input::-ms-input-placeholder, button::-ms-input-placeholder, textarea::-ms-input-placeholder {
    font: inherit;
}

input, button, textarea, input::placeholder, button::placeholder, textarea::placeholder {
    font: inherit;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
}

::selection {
    color: var(--white-color);
    background-color: hsl(var(--hue-color), 59%, 64%);
}

::-moz-selection {
    color: var(--white-color);
    background-color: hsl(var(--hue-color), 59%, 64%);
}

.section {
    overflow-x: hidden;
}

/* ======================================= REUSABLE CSS CLASSES ======================================= */
.section {
    padding: 4rem 0 8rem;
}

.section__title {
    font-size: var(--big-font-size);
    font-weight: 600;
    color: var(--white-color);
    margin-top: 5rem;
}

.section__subtitle {
    display: block;
    margin-bottom: 3rem;
}

.section__title, .section__subtitle {
    text-align: center;
}

.container {
    max-width: 1024px;
    width: calc(100% - 3rem);
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.grid {
    display: -ms-grid;
    display: grid;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: .75rem 1.25rem;
    background-color: var(--second-color);
    color: var(--white-color);
    font-weight: 500;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    border-radius: .25rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    -ms-border-radius: .25rem;
    -o-border-radius: .25rem;
}

.btn:hover {
    background-color: var(--second-color-hover);
}

.ghost--btn {
    display: inline-block;
    color: var(--first-color);
    font-weight: 500;
    background: none;
    border-radius: .25rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    -ms-border-radius: .25rem;
    -o-border-radius: .25rem;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.ghost--btn:hover {
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
}


.btn--secondary {
    padding: .87rem 1rem !important;
    border: 2px solid var(--white-color);
    color: var(--white-color);
    background: none;
}

.btn--secondary:hover {
    border-color: var(--first-color-alt);
    color: var(--first-color-alt);
    background: var(--white-color);
}

/* ----------------------------------- FOR SMALLER COMMENTS ----------------------------------- */
/* -----------------------------------  ----------------------------------- */

/* ======================================= HEADER ======================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    padding: 0 1rem;
    background-color: var(--white-color);
    /* background: hsl(0, 26%, 91%); */
    /* background-color: transparent; */
    z-index: var(--z-fixed);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    transition: .1s;
    -webkit-transition: .1s;
    -moz-transition: .1s;
    -ms-transition: .1s;
    -o-transition: .1s;
}

.header__logo {
    color: var(--dark-color);
}

.header__toggle {
    font-size: 1.7rem;
    cursor: pointer;
}

/* ======================================= NAVBAR ======================================= */
@media screen and (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        background-color: var(--body-color);
        width: 80%;
        height: 100vh;
        padding: 2rem 0;
        z-index: var(--z-fixed);
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
        overflow-y: auto;
    }
}

.nav::-webkit-scrollbar {
    display: none;
}

.nav__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.nav__perfil {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.nav__perfil .nav__img img {
    width: 240px;
}

.nav__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1rem;
}

.nav__img img {
    width: 70px;
}

.nav__name {
    display: block;
    font-size: var(--nav-name-font-size);
    color: var(--white-color);
}

.nav__item {
    margin-bottom: 2rem;
}

.nav__link {
    color: var(--first-color-light);
    /* color: var(--white-color); */
}

.nav__link:hover {
    /* color: var(--white-color); */
    color: var(--first-color-lighter-dark);
}

/* -------------------- SHOW MENU -------------------- */
.show {
    left: 0;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

/* -------------------- ACTIVE LINK -------------------- */
.active-link {
    position: relative;
    color: var(--first-color) !important;
}

.active-link::before {
    content: '';
    position: absolute;
    background-color: var(--first-color);
    width: 100%;
    height: 2px;
    bottom: -.75rem;
    left: 0;
}

/* -------------------- ACTIVE HEADER -------------------- */
.scroll-header {
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    top: 0 !important;
    /* top: 11px !important; */
}

/* -------------------- DROPDOWN -------------------- */
.dropdown__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.dropdown__icon {
    font-size: 1.3rem;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.dropdown__menu {
    margin: 1rem 0 0 1rem;
    display: none;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.dropdown__item {
    margin: .5rem 0 .5rem .5rem;
}

.dropdown:hover>.dropdown__menu {
    display: block;
    background-color: var(--scroll-bar-color);
    color: black;
    padding: .25rem;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
}

.dropdown:hover .dropdown__icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* ======================================= HOME ======================================= */
.mco {
    padding-bottom: 6rem;
}

.mco-bg {
    position: relative;
    background: url('../images/crm.jpg');
    max-height: 28rem;
    background-position: center;
    background-size: cover;
}

.mco-bg::before,
.bill-cont::before {
    content: '\A';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
}

.crm__card-container,
.mco__card-container {
    margin-top: 12rem;
    gap: 3rem;
}

.card-container {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

.card {
    background-color: var(--container-color);
    padding: 1.5rem;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    transition: .3s !important;
    -webkit-transition: .3s !important;
    -moz-transition: .3s !important;
    -ms-transition: .3s !important;
    -o-transition: .3s !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}

.card-img {
    display: inline-block;
    background-color: var(--input-color);
    color: var(--first-color-rich);
    padding: .5rem .75rem;
    width: 80px;
    height: auto;
    border-radius: .25rem;
    margin-bottom: 1rem;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    -ms-border-radius: .25rem;
    -o-border-radius: .25rem;
}

.card:hover .card-img {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}

:is(.home, .featured, .about) .section__title {
    margin-top: 0;
    color: var(--first-color);
}

.about svg {
    fill: var(--first-color);
}

.home__container .card-img {
    margin-bottom: .25rem;
}

.home__container .card-title {
    margin-bottom: 1rem;
    font-weight: 600;
}

.featured__container .card-img {
    background: none;
}

.featured__container .card:hover .card-img {
    background: none;
}

.svg__color {
    color: var(--first-color-rich);
}

.card-title {
    font-size: var(--h2-font-size);
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 1.75rem;
}

.card-description {
    font-size: var(--small-font-size);
    line-height: 1.65;
}

.card ul {
    margin-top: .5rem;
}

:is(.card-container, .card, .main-content) li {
    font-size: var(--small-font-size);
    list-style: circle;
    margin: 0 0 .2rem 2rem;
}

.notice {
    margin-top: 2rem;
    text-align: center;
}

.notice a {
    color: var(--first-color);
    font-weight: 500;
}

.notice a:hover {
    text-decoration: underline;
}

/* ======================================= FEATURED ======================================= */
.featured__container {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 3rem;
    align-items: flex-start;
    margin-top: 4rem;
}

.featured__card .card-img {
    width: 120px;
    margin-bottom: 0;
}

.featured__card-title {
    font-size: var(--h2-font-size);
    font-weight: 600;
    margin-bottom: .5rem;
}

.featured__btn {
    margin-top: .75rem;
}


/* ======================================= MCO ======================================= */
.mco__container {
    position: relative;
}

.mco__card-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.mco__menu {
    position: absolute;
    top: calc((var(--header-height) * -1) - 80px);
    left: 0;
    background-color: hsl(0deg 0% 100% / 60%);
    border-radius: 0 0 1rem 1rem;
    -webkit-border-radius: 0 0 1rem 1rem;
    -moz-border-radius: 0 0 1rem 1rem;
    -ms-border-radius: 0 0 1rem 1rem;
    -o-border-radius: 0 0 1rem 1rem;
}

.mco__menu .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mco__menu .nav__item {
    padding: 0.75rem 0;
    margin: 0 .5rem;
}

.mco__menu .nav__link {
    color: var(--black-color);
}

.mco__menu .active-link::before {
    bottom: -.25rem;
}

/* ======================================= CRM ======================================= */
.crm__card-container .card {
    min-height: auto;
}

.main-content .col-2 {
    gap: 2rem;
    column-count: 2;
    margin-top: .75rem;
}

.main-title {
    font-weight: 600;
    text-align: center;
    margin: 0 0 1rem;
    font-size: var(--h1-font-size);
}

.main-description {
    font-size: var(--small-font-size);
    line-height: 1.65;
    margin-bottom: .25rem;
}

.main-description b {
    font-weight: 500;
    color: var(--black-color);
}

.main-btn {
    margin: 1rem 0 2rem;
}

.main-content .card-title {
    margin-bottom: 1rem;
}

.content__section {
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 4rem;
}

.billing-container {
    margin-top: 2rem;
}

.bill-cont {
    position: relative;
    background: url('https://images.unsplash.com/photo-1562240020-ce31ccb0fa7d?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MXx8YmlsbHN8ZW58MHx8MHx8&auto=format&fit=crop&w=500&q=60');
    background-size: 100% 145%;
    background-attachment: fixed;
    margin-bottom: 6rem;
    padding: 3rem 0;
    color: var(--white-color);
}

.bill-cont::before {
    background: rgba(0, 0, 0, .8);
}

.bill-cont .main-title {
    color: var(--white-color);
}

.bill-cont li {
    color: var(--input-color);
}

.desc-gap .card-description {
    margin: .5rem 0;
}

.bill-card,
.pl-container,
.contact-container {
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}

.no-m .card-title {
    margin-bottom: 1rem;
}

.csr {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

}

.csr .card-title,
.tc .card-title {
    color: var(--second-color);
    text-align: center;
}

.pdd .card-title {
    margin: 1rem 0 .25rem;
}

.implementation__card-container {
    margin-top: 17rem;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}

.m548 .card-img,
.mco__card-container .card-img,
.crm__card-container .card-img {
    margin-bottom: 0;
}

.m548 .card-title,
.mco__card-container .card-title,
.crm__card-container .card-title {
    margin-bottom: 1rem;
}

.brm-container {
    margin: 4rem 0;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}

.brm-container .main-title {
    text-align: left;
}

.brm-container svg {
    margin-top: 3rem;
}

.no-p {
    padding-bottom: 0;
}

.no-p .footer {
    margin-top: 6rem;
}

/* ======================================= CONTACT ======================================= */
.contact-container .card-description {
    margin: .75rem 0;
}

.form__div {
    position: relative;
    height: 48px;
    margin-bottom: 1.5rem;
}

.form__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: var(--normal-font-size);
    border: 1px solid var(--border-color);
    border-radius: .5rem;
    outline: none;
    padding: 1rem;
    background: none;
    z-index: 1;
}

.form__label {
    position: absolute;
    left: 1rem;
    top: .725rem;
    padding: 0 .25rem;
    background-color: var(--white-color);
    color: var(--text-color);
    font-size: var(--normal-font-size);
    transition: .3s;
}

.form__button {
    display: block;
    margin-left: auto;
    padding: .75rem 2rem;
    outline: none;
    border: none;
    background-color: var(--first-color);
    color: var(--white-color);
    font-size: var(--normal-font-size);
    border-radius: .5rem;
    cursor: pointer;
    margin-top: 10.5rem;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.form__button:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, .15);
}

/*Input focus move up label*/
.form__input:focus+.form__label,
.form__input+.active-label {
    top: -.5rem;
    left: .8rem;
    color: var(--first-color);
    font-size: var(--small-font-size);
    font-weight: 500;
    z-index: 10;
}

/*Input focus sticky top label*/
.form__input:not(:placeholder-shown).form__input:not(:focus)+.form__label,
.active-label {
    top: -.5rem;
    left: .8rem;
    font-size: var(--small-font-size);
    font-weight: 500;
    z-index: 10;
}

/*Input focus*/
.form__input:focus {
    border: 1.5px solid var(--first-color);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

textarea {
    min-height: 200px !important;
    resize: none;
}

/* ======================================= FOOTER ======================================= */
.footer {
    padding-bottom: 3rem;
}

.footer__container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer__logo {
    color: var(--title-color);
}

.footer__title {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer__description {
    font-size: var(--small-font-size);
}

.footer__description a {
    color: var(--text-color);
}

.footer__description a:hover {
    text-decoration: underline;
    color: var(--title-color);
}

.footer__logo, .footer__title {
    font-size: var(--h3-font-size);
}

.footer__link {
    display: inline-block;
    margin-bottom: .75rem;
    color: var(--text-color);
}

.footer__link:hover {
    color: var(--first-color);
}

.footer__social {
    font-size: 1.5rem;
    color: var(--title-color);
    margin-right: 1.5rem;
}

.footer__social:hover {
    color: var(--first-color);
}

.footer__copy {
    text-align: center;
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    margin-top: 4rem;
}

/* ======================================= SCROLL UP ======================================= */
.scrollup {
    position: fixed;
    right: 2rem;
    bottom: -20%;
    background-color: var(--first-color);
    opacity: .8;
    padding: .4rem .3rem 0rem;
    border-radius: .4rem;
    z-index: var(--z-tooltip);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.scrollup:hover {
    background-color: var(--first-color-alt);
}

.scrollup__icon {
    font-size: 1.5rem;
    color: var(--white-color);
}

/* -------------------- SHOW SCROLL -------------------- */
.show-scroll {
    bottom: 5rem;
}

::-webkit-scrollbar {
    width: .65rem;
}

::-webkit-scrollbar-thumb {
    border-radius: .5rem;
    background-color: hsl(348, 55%, 30%);
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(348, 85%, 40%);
}

/* ======================================= MEDIA QUERIES ======================================= */
@media screen and (max-width: 968px) {

    .crm__card-container,
    .mco__card-container {
        margin-top: 16rem;
        gap: 3rem;
    }
}

@media screen and (max-width: 476px) {
    .home {
        padding-top: 2rem;
    }

    :is(.home, .featured, .about) .section__title {
        margin-bottom: 2rem;
    }

    .featured__container {
        padding: 2rem;
        box-shadow: rgb(17 12 46 / 15%) 0px 9px 34px 0px;
    }

    .featured .section__title {
        margin-bottom: 0;
    }

    .crm__card-container,
    .mco__card-container {
        margin-top: 14rem;
        gap: 3rem;
    }
}

@media screen and (max-width: 380px) {
    .content__section {
        /* grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); */
    }

    .scard,
    .brm-div {
        max-width: 98%;
    }

    .brm-container svg {
        width: 81%;
    }
}

@media screen and (max-width: 335px) {
    .content__section {
        grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
    }

    .scard,
    .m675 .card,
    .brm-div {
        max-width: 81%;
    }

    .bill-card {
        width: 200px;
    }

    .brm-container svg {
        width: 81%;
    }
}

@media screen and (max-width: 576px) {
    .mco__menu {
        left: -17px;
        font-size: var(--small-font-size);
    }
}

@media screen and (min-width: 576px) {
    .nav {
        width: 288px;
    }

    .card {
        min-height: 367px;
    }

    :is(.home__container, .about__container) .card-container {
        margin-top: 3rem;
    }

    .home__container .card {
        min-height: 415px;
    }

    .about__container .card {
        min-height: 423px;
    }

    .mco__menu .nav__item {
        margin: 0 1.5rem;
    }
}

/* @media screen and (min-width: 576px) and (max-width: 768px) {
    .mco .card:last-child {
        grid-column: 2;
        grid-row: 1;
    }

    .mco .card:nth-child(2) {
        grid-column: span 2;
    }

    .mco .card:nth-child(3) {
        grid-column: 2;
        grid-row: -3;
    }
} */

@media screen and (min-width: 768px) {
    body {
        margin: 0;
    }

    main {
        margin-top: var(--header-height);
    }

    .header__logo, .header__toggle {
        display: none !important;
    }

    .nav {
        width: 100%;
    }

    .nav__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .nav__perfil {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        text-align: initial;
        margin-bottom: 0;
    }

    .nav__img {
        width: 120px;
        height: 40px;
        margin-right: .5rem;
        margin-bottom: 0;
    }

    .nav__img img {
        width: 120px;
    }

    .nav__name {
        color: var(--dark-color);
    }

    .nav__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .nav__item {
        margin: 0 1.5rem;
        padding: 1.4rem 0;
    }

    .nav__link {
        color: var(--dark-color);
    }

    .nav__link:hover {
        color: var(--first-color);
    }

    /* -------------------- ACTIVE LINK NEW COLOR -------------------- */
    .active {
        color: var(--first-color);
    }

    .dropdown {
        position: relative;
    }

    .dropdown__menu {
        position: fixed;
        margin-top: -.8rem;
        top: calc(var(--header-height) + 1rem);
        padding: .5rem 1.5rem !important;
        -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        background-color: var(--white-color) !important;
        border-radius: .5rem;
        -webkit-border-radius: .5rem;
        -moz-border-radius: .5rem;
        -ms-border-radius: .5rem;
        -o-border-radius: .5rem;
    }

    .dropdown__item {
        margin: .5rem 0;
    }

    .m548 .card {
        min-height: 548px !important;
    }

    .m675 .card {
        min-height: 675px !important;
    }

    .m345 .card {
        min-height: 345px !important;
    }

    .implementation__card-container .card {
        min-height: 200px !important;
    }

    .m140 .card {
        min-height: 140px !important;
    }

    .imp-cont .card {
        min-height: 250px !important;
    }

    .m .card {
        min-height: 100px;
    }

    .m268 {
        min-height: 268px !important;
    }
}

@media screen and (min-width: 862px) {
    .mco__card-container .card:last-child {
        grid-column: 3;
    }

    .mco__card-container .card:nth-child(4),
    .mco__card-container .card:last-child {
        margin-top: -9rem;
    }
}

@media screen and (min-width: 1024px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1024px;
    }
}

/* ----------------------------------- IF(DEVICE.SUPPORTS === HOVER) return ----------------------------------- */
/* @media (hover) {
    .card__content {
        transform: translateY(70%);
        -webkit-transform: translateY(70%);
        -moz-transform: translateY(70%);
        -ms-transform: translateY(70%);
        -o-transform: translateY(70%);
        transition: transform .5s ease-in-out;
        -webkit-transition: transform .5s ease-in-out;
        -moz-transition: transform .5s ease-in-out;
        -ms-transition: transform .5s ease-in-out;
        -o-transition: transform .5s ease-in-out;
    }
} */

/* @media handheld, (hover:none) {} */

/* @media screen and (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition-delay: 0s !important;
    }
} */