:root {
    --primary: #3232FA;
    --secondary-bg: #DBE2EA;
    --secondary: #3232FA;
    --secondary-green: #03ff80;
    --terciary: #3232FA;
    --main-text: #07232F;
    --dark-bg: #3232FA;
    --dark-grey: #9AAAB9;
    --light-grey: #F2F2F2;
    --content-width: 58.3333333333%;
    --gradient: linear-gradient(90deg, rgba(50,50,250,1) 50%, rgba(3,255,128,1) 120%);
    --gradient-smaller: linear-gradient(90deg, rgba(50,50,250,1) 0%, rgba(26,155,188,1) 54%, rgba(3,255,128,1) 130%);
    /* col-7 */
    /* --content-width: 41.6666666667%; */
    /* col-5 */
    --padding-left: 18%;
}


/* Custom scrollbar */


/* Works on Firefox */

* {
    scrollbar-width: thin;
    scrollbar-color: #cecece #fff;
}


/* Works on Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #f5f5f5;
}

*::-webkit-scrollbar-thumb {
    background-color: #777;
    border-radius: 20px;
}

html,
body {
    scroll-behavior: smooth;
    scroll-padding-top: 120px !important;
    overflow-x: hidden;
    max-width: 100%;
    font-family: 'Tajawal', Helvetica, Arial, sans-serif;
    line-height: normal;
}

.hidden {
    display: none !important;
}

.show-logo {
    display: flex !important;
}

.demonstration {
    width: 70%;
}



/* Navbar Styles */

.header-dark {
    transition: background-color 0.7s ease;
    background: var(--main-text);
    height: 4rem;
}

.header-primary {
    transition: background-color 0.7s ease;
    background: var(--gradient);
    height: 4rem;
}

.header-light {
    transition: background-color 0.7s ease;
    background: var(--gradient);
    height: 4rem;
}

.header-transparent{ 
    height: 4rem !important;
}

.logo-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5%;
    width: 160px;
}

#logoDark {
    display: none;
}

.navbar-nav>li {
    padding-left: 8px;
    padding-right: 8px;
}

.header-light .nav-item>a {
    color: #ffff;
}

.header-light .nav-item-primary>a {
    color: #ffff;
    font-weight: 600;
}

.header-text {
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-item>a {
    color: #fff;
    letter-spacing: 2px;
    font-weight: 600;
}

.header-light .nav-item>a:hover {
    color: #e2e2e2;
}

.nav-item>a:hover,
.nav-item>a:focus {
    color: #e2e2e2;
    transition: all 0.2s linear;
    transform: scale(1.15);
}

.nav-item-primary>a {
    color: #fff;
    letter-spacing: 2px;
    font-weight: 600;
}

.margin-header {
    margin-top: 0.65rem !important;
}

.header-light .nav-item-primary>a:hover {
    color: #e2e2e2;
    text-decoration: none !important;
}

.nav-item-primary>a:hover,
.nav-item-primary>a:focus {
    color: #fff;
    transition: all 0.2s linear;
    transform: scale(1.05);
}

.dropdown-menu {
    border-radius: 10px !important;
    background-clip: unset !important;
    padding: 7px !important;
}

.dropdown-menu a {
    text-decoration: none;
}

.dropdown-item:hover>.small-section-item-img {
    /* background-color: #fff; */
}

.dropdown-item>.small-section-item-img {
    /* background-color: var(--light-grey); */
}

.dropdown-item {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    margin-top: 2px;
    margin-bottom: 2px;
    padding-left: 4px;
    padding-right: 4px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    border-radius: 20px;
    background-color: transparent !important;
}

.dropdown-item:hover>span {
    color: #000 !important;
}

.dropdown-item:active {
    color: #ffff !important;
    background-color: transparent;
}

.dropdown-item span {
    color: var(--main-text);
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 1rem;
}

.dropdown-title {
    color: var(--dark-bg);
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 1rem;
}

.dropdown-toggle::after {
    display: none !important;
}


/* stroke text on hover */

.stroke ul li a {
    position: relative;
}

.stroke ul li a,
.stroke ul li a:after,
.stroke ul li a:before {
    transition: all .5s;
}

/* .stroke ul li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: red;
    background: #fff;
    height: 2px;
    text-decoration: dashed !important;
} */

.stroke ul li a:hover:after {
    /* width: 100%; */
}

.stroke-black ul li a:after {
    /* background: #000 !important; */
}

.custom-toggler .navbar-toggler-icon {
    background-image: url('../icons/table_rows.svg') !important;
}

.custom-togglerAlt .navbar-toggler-icon {
    background-image: url('../icons/table_rows_alt.svg') !important;
}

.white-bg {
    background-color: #ffff !important;
}

.btn-header {
    background: var(--primary);
    border-radius: 30px;
    border: none;
    min-height: 30px;
    height: 39px;
    padding: 7px 16px 0px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3 ease-out;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    color: #FFFFFF;
    transition: all 0.2s ease-in-out;
}

.btn-header:hover {
    background-color: #fff;
    /* border: 2px solid var(--primary); */
    color: var(--primary);
}

.btn-header-alternative {
    background: var(--secondary-green);
    border-radius: 30px;
    border: none;
    min-height: 30px;
    height: 39px;
    padding: 7px 16px 0px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3 ease-out;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--main-text);
    transition: all 0.2s ease-in-out;
}

.btn-header-alternative:hover {
    background-color: #fff;
    /* border: 2px solid var(--primary); */
    color: var(--primary);
}

.btn-header-white {
    background: #ffff;
    border-radius: 30px;
    border: none;
    min-height: 30px;
    height: 39px;
    padding: 7px 16px 0px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3 ease-out;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--primary);
    transition: all 0.2s ease-in-out;
}

.btn-header-white:hover {
    background-color: var(--secondary-green);
    /* border: 2px solid var(--primary); */
    color: var(--main-text);
}


.btn-header-primary {
    background: #fff;
    border-radius: 30px;
    border: none;
    min-height: 30px;
    height: 39px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3 ease-out;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    color: var(--primary);
    transition: all 0.2s ease-in-out;
}

.header-light .btn-header-primary {
    background: var(--primary);
    color: #fff
}

.navbar .navbar-toggler {
    z-index: 1000;
}

#show-btnheader {
    opacity: 0;
    pointer-events: none;
}

.big-numbers-section {
    background-repeat: no-repeat;
    background-image: url('../images/arts/big-numbers-bg-min.png');
    /* background-size: contain; */
    background-position: center;
    min-height: 70vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    z-index: 1;

    &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5) 34%; /* Adjust the darkness */
    z-index: -1;
    }

}

.bn-line {
    display: flex;
    height: 25rem;
    margin-right: 50px;
}

.bn-line-right {
    display: flex;
    flex-direction: row;
    height: 25rem;
}

.bn-component {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 14rem;
    text-align: center;
}

.bn-component-first {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 14rem;
    text-align: center;
    margin-right: 50px;
}

.bn-title {
    padding-top: 24px;
    padding-bottom: 14px;
    font-weight: 400;
    font-size: 28px;
    color: #ffff;
    display: flex;
    flex-direction: column;
}

.numbers-title {
    font-weight: 600;
    font-size: 38px;
    color: #ffff;
    display: flex;
    flex-direction: column;
}

.bn-desc {
    font-size: 22px;
    color: #ffff;
    max-width: 10rem;
    line-height: normal;
}

.big-number-text-container {
    display: flex;
    flex-direction: row;
    gap: 6px;
}

.full-height-div {
    height: 100vh; /* 100% of the viewport height */
    width: 100%;
    background-color: lightgray;
    border: 1px solid gray;
    display: none; /* Initially hide all divs */
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }

/* Navbar hover */

@media all and (max-width: 990px){
    .header-light .nav-item-primary>a {
        color: #ffff;
    }

    .header-light .nav-item-primary>a:hover {
        color: #bbb;
    }

    .demonstration {
        width: 50%;
    }
    .call-demo-img {
        text-align: center;
        margin-bottom: 2rem !important;
    }

    .footer-small {
        flex-direction: column !important;
        gap: 2rem !important;
    }
}

@media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: none;
    }
    
    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }
    .navbar .nav-item .dropdown-menu {
        margin-top: -1px;
    }
}

@media (max-width: 991.98px) {
    .dropdown-item:hover>span {
        color: #fff !important;
    }

    .btn-header {
        width: 100%;
        background-color: white;
    }
    .btn-header span{
        width: 100%;
        color: var(--primary);
    }
    #show-btnheader {
        opacity: 1 !important;
        pointer-events: painted;
        padding: 5px;
    }
    #hide-btnheader {
        opacity: 0;
        pointer-events: none;
    }
    .navbar-nav {
        margin-left: initial !important;
    }
    .navbar .navbar-collapse {
        background: var(--dark-bg);
        position: fixed;
        opacity: 0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transition: opacity 0.35s ease;
        display: flex;
        flex-direction: column;
        align-content: center;
        text-align: center !important;
    }
    ul .nav-item {
        display: flex;
        justify-content: center;
    }
    .dropdown {
        flex-direction: column;
    }
    .dropdown-menu {
        background-color: unset !important;
        border: unset !important;
    }
    .dropdown-title {
        display: none;
    }
    .dropdown-item>.small-section-item-img {
        padding: 6px !important;
    }
    .dropdown-item span {
        color: #fff !important;
    }
    .nav-item>a {
        color: #fff !important;
        font-size: 1.2rem;
    }
    .navbar .navbar-collapse.collapse {
        display: flex;
        opacity: 0;
        pointer-events: none;
    }
    .navbar .navbar-collapse.collapsing[style*="height"] {
        opacity: 1;
        height: 100vh !important;
        width: 100vw !important;
    }
    .navbar .navbar-collapse.collapsing {
        opacity: 0;
        height: 100vh;
    }
    .navbar .navbar-collapse.collapse.show {
        opacity: 1 !important;
        pointer-events: auto;
    }
    .navbar .navbar-collapse .navbar-nav {
        margin-right: initial !important;
        margin-top: auto;
        margin-bottom: auto;
    }
    .logo-image-container {
        width: 150px;
    }
    .home-text-container {
        justify-content: center;
    }
    .nav-button {
        margin-top: 10px;
    }
    .stroke ul li a:after {
        /* background: #fff !important; */
    }

    .mobile-container-call {
        display: flex;
        flex-direction: column;
        padding-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .mockups-title {
        flex-direction: column !important;
    }

    .mockups-title span {
        text-align: center !important;
    }

    .mockups-text {
        align-items: center !important;
    }

    .mockups-text img {
        display: none;
    }

    .mockups-img {
        width: 60vh;
    }

    .user-call-title {
        text-align: center !important;
        margin-top: 0rem !important;
    }

}


/* Body section */

.inner-body {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    background-color: #fff;
}

.section {
    min-height: 50vh;
}

.modal-backdrop.fade,
.modal-backdrop.fade.in {
    opacity: 0.7 !important;
}

.title {
    font-size: 2.5rem;
}

.subtitle {
    font-size: 1.3rem;
}

.description {
    font-size: 1rem;
}


@media only screen and (min-width: 768px) {
    .next-carousel {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .title {
        font-size: 1.825rem;
    }
    .solution-card-title {
        font-size: 1.25rem;
    }
    .solution-card-description {
        font-size: 1rem;
    }
    .solution-card {
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.24) !important;
    }
    .plan-main {
        font-size: 1.5rem !important;
        padding-right: 35% !important;
    }
    .home-icon>img {
        width: 150px;
    }
    .home-icon {
        display: none;
    }
    .home-icon-mobile {
        display: flex !important;
        padding-top: 10px;
    }
    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(100%);
    }
    .carousel-inner .carousel-item-start.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-100%);
    }

    .carousel-inner .carousel-item-clients-end.active,
    .carousel-inner .carousel-item-clients-next {
        transform: translateX(100%);
    }
    .carousel-inner .carousel-item-clients-start.active,
    .carousel-inner .carousel-item-clients-prev {
        transform: translateX(-100%);
    }
}

.img-mackbook {
    display: flex;
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 1200px) {
    .img-mackbook {
        max-width: 100%;
        height: auto;
    }
    .mockups-title span {
        max-width: 70% !important;
        font-size: 32px;
    }
    .grey-bg {
        height: 160px !important;
    }
}

@media only screen and (max-width: 1200px) and (min-width: 991px) {
    .plan-main {
        font-size: 1.85rem !important;
        padding-right: 30% !important;
    }
}

@media only screen and (max-width: 1800px) and (min-width: 1201px) {
    .plan-main {
        font-size: 2rem !important;
        padding-right: 40% !important;
    }

    .mockups-title span {
        max-width: 90% !important;
    }
}

/* Home section */

#home {
    height: 110vh !important;
    background: 
        linear-gradient(100deg, rgba(50,50,250,1) 7%, rgba(3,255,128,0.23) 97%), 
        url('../images/pics/1section-img-mint.png');
    position: relative;
    z-index: 1;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5); /* Darken the background overlay */
        z-index: -1;
    }

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.home-container {
    width: 100%;
    height: 100%;
    padding-left: 2%;
    padding-bottom: 5%;
}

.home-icon>img {
    width: 180px;
}

.home-icon {
    padding-top: 8%;
}

.home-icon-mobile {
    display: none;
}

.home-text-container {
    display: flex;
    flex-direction: column;
}

.home-main-title {
    color: #fff;
    line-height: normal;
    font-weight: 600;
    display: flex;
    flex-direction: column;
}

.home-sub-title {
    line-height: normal;
    font-weight: 400;
    color: #fff;
}

.text-none {
    text-decoration: none;
}

.btn-home {
    background: #fff;
    border-radius: 30px;
    border: none;
    min-height: 30px;
    height: 39px;
    padding: 7px 16px 0px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3 ease-out;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--primary);
    transition: all 0.2s ease-in-out;
}

.btn-home:hover {
    color: var(--primary);
    background-color: var(--primary);
    transition: all 0.2s ease-in-out;
}

.btn-home span {
    text-decoration: none;
    color: var(--primary);
}

.btn-home:hover span {
    color: #fff;
}


.btn-home-green {
    background: var(--secondary-green);
    border-radius: 30px;
    border: none;
    min-height: 30px;
    height: 39px;
    padding: 7px 16px 0px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--main-text);
    transition: all 0.2s ease-in-out;
}

.btn-home-green:hover {
    background-color: #ffff;
    color: var(--primary);
}

/* Contact modal Form */

.form-group label:not(.error) {
    font-size: 13px;
    letter-spacing: 0.04rem;
    font-weight: 400;
    margin-bottom: 4px;
    color: #777777;
}

.form-group>label {
    display: block;
}

.form-group>input,
.form-group>textarea {
    width: 100%;
    border-radius: 30px;
    background-color: #fff;
    line-height: 18px;
    padding: 10px 16px;
    min-height: 40px;
    font-size: .9rem;
    border: 1px solid #e6e8eb;
    height: calc(1.5em + .75rem + 2px);
    font-weight: 400;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-group>input:focus,
.form-group>textarea:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}

.form-group>textarea {
    height: auto;
}


/* Footer */

#footer {
    display: block;
    position: relative;
    line-height: 32px;
    font-size: 14px;
    font-weight: 400;
    background: var(--gradient);
}

#footer .widget-categories a {
    color: #fff;
}

#footer a:not(.btn):not(:hover) {
    color: #fff;
}

#footer a:not(.btn) {
    font-weight: 400;
}

#footer .footer-content {
    padding: 45px 30px 0px 30px;
    width: auto;
}

#footer .widget .widget-title,
#footer .widget h4,
#footer .widget .widget-title ul.list li a {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.widget-title {
    font-size: 20px !important;
    color: #fff !important;
    font-weight: 700 !important;
}

#footer .widget .widget-title ul li a,
#footer .widget h4 ul li a {
    font-size: 14px;
    line-height: 32px;
    color: #fff;
    font-weight: 400;
}

#footer .copyright-content {
    /* background-color: var(--primary); */
    font-size: 13px;
}

#footer .copyright-text a {
    text-decoration: none;
    /* opacity: 0.7; */
}

#footer .copyright-text a:hover {
    opacity: 1;
    color: #fff;
}

#footer .logo {
    margin-bottom: 54px;
    margin-top: 12px;
    max-width: 80px;
}

#footer .footer-logo {
    margin-bottom: 20px;
    margin-right: 18px;
    padding-right: 16px;
}

.footer-div {
    justify-content: space-between; 
    align-items: center;
}

.imediatum-logo {
    width: 10%;
}

.widget {
    position: relative;
}

.widget .widget-title,
.widget>h4 {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 24px;
    letter-spacing: 1px;
}

.widget:after,
.widget:before {
    clear: both;
    content: " ";
    display: table;
}

.widget .flickity-page-dots {
    margin-bottom: 20px;
}

.widget a {
    color: #fff;
}

.footer-item>a {
    color: #fff;
    text-decoration: none;
    font-size: 15px !important;
    font-weight: 400 !important;
}

.footer-item>a:hover {
    transition: all 0.2s linear;
    transform: scale(1.05);
    color: var(--primary);
}

.list {
    clear: both;
    display: block;
    position: relative;
    list-style-type: none !important;
    padding: 0;
}

.list li {
    line-height: 32px;
}

.list li a {
    color: #fff;
    text-decoration: none;
}

.bg-primary {
    background: var(--primary) !important;
}

.bg-dark-footer {
    background: var(--main-text) !important;
}


/* Animations */

.show {
    /*display: inline !important;*/
    opacity: 1 !important;
    transition: all 0.45s ease;
}

.show-div {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.animate {
    opacity: 0;
    transform: translateY(-30%);
    transition: all 1s ease;
}

#scrollToTopBtn {
    opacity: 0;
    position: fixed;
    right: 10px;
    bottom: 15px;
    border-radius: 100%;
    transition: all 0.45s ease;
    background-color: #bfbfbf;
}

#scrollToTopBtn img {
    width: 48px;
}

#scrollToTopBtn:hover {
    background-color: var(--primary) !important;
    opacity: 1;
    transition: all 0.2s linear;
    transform: scale(1.05);
    transition: border-left-width 0.3s ease;
    cursor: pointer;
}


/* Solutions */

.solution-title {
    font-weight: bold;
    color: var(--main-text);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.solution-description {
    color: var(--main-text);
    text-align: center;
    font-weight: 600;
    font-size: 32px;
}

.clients-description {
    color: #404040;
    text-align: center;
}

.solution-container {
    background: var(--secondary-bg);
}

.gradient {
    /* height: 72vh; */
    background: var(--gradient);
    margin-top: -270px !important;
    display: flex;
    flex-direction: row;
    z-index: 1;
}

.grey-bg {
    background: var(--secondary-bg);
    height: 272px;
}

.gradient-small {
    background: var(--gradient);
    height: 10vh;
}

.img-mockups {
    width: 54%;
    align-self: center;
}

.mockups-title {
    display: flex;
    flex-direction: row;
    margin-top: 16rem;
    margin-bottom: 7rem;
    line-height: 42px;
    width: 100%;
    align-items: center;
    /* justify-content: center; */
    /* padding-left: 20rem;
    padding-right: 20rem; */
}

.mockups-title span {
    max-width: 80%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-weight: bold;
    color: #ffff;
    text-align: start;
    font-size: 2rem;
    margin-bottom: 8rem;
}

@media only screen and (min-width: 1020px) and (max-width: 1199px) {

    .mockups-title span {
        font-size: 2.4rem;
        line-height: 3rem;
    }
}

@media only screen and (min-width: 1200px) {

    .mockups-title span {
        font-size: 2.4rem;
        line-height: 3rem;
    }
}

@media only screen and (min-width: 1400px) {

    .mockups-title span {
        font-size: 2.4rem;
        line-height: 3rem;
    }
}

.solutions-index {
    z-index: 2 !important;
}

.solution-card {
    max-width: 270px;
    height: 310px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.24);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    padding: 38px 22px 26px 37px;
    transition: transform 0.2s ease;
}

.solution-card:hover {
    transform: scale(1.02);
  }

.solution-card-alternative {
    max-width: 270px;
    height: 288px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.24);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    padding: 22px 20px 22px 20px;
    transition: transform 0.2s ease;
}

.solution-card-alternative:hover {
    transform: scale(1.05);
}

.solution-card-img>img {
    width: 70px;
    height: 72px;
}

.solution-card-title {
    font-weight: bold;
    font-size: 1.45rem;
    color: #333333;
}

.solution-card-subtitle {
    color: var(--main-text);
    font-size: 1rem;
}

.solution-card-description {
    color: #8A8A8A;
    font-size: 1.12rem;
}

.solution-card-link a {
    color: var(--primary);
    font-size: 1.25rem;
    text-decoration: underline;
    margin-top: 0.875rem;
}

.saiba-mais a {
    color: var(--primary);
    text-decoration: underline;
    margin-top: 0.5rem;
}

.bg-header {
    background-color: var(--primary);
}

.bg-header-dark {
    background-color: transparent;
}

.bg-header-primary {
    background-color: transparent;
}

.section-contact {
    min-height: 34vh;
}

.clients {
    background-color: #FFFF;
    min-height: 14vh !important;
}


/* Flow section */

.flow-container {
    background-color: #FFFF;
}

.flow-title {
    font-weight: bold;
    color: var(--main-text);
}

.flow-text {
    font-weight: bolder;
    color: #333333;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    font-size: 1.8rem;
    line-height: normal;
}

.flow-desc {
    color: var(--main-text);
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    font-size: 1.2rem !important;
    line-height: 1.6rem;
}

.flow-mobile {
    background-repeat: no-repeat;
    background-image: url('../images/arts/timelinemobile8.svg');
    background-size: contain;
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
    background-position: 6px;
}

.mobile-timeline-container {
    display: none;
}

@media (max-width: 991px) {
    .mobile-timeline-container {
        display: flex;
        margin-bottom: 3rem;
    }
}




/* Plans section */

.plan-main {
    font-weight: bold;
    font-size: 2.625rem;
    color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 4% 42% 4% 4.3%;
    border-radius: 20px;
}

.plan-desc {
    color: var(--main-text);
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
}

.btn-home {
    color: var(--primary);
    font-size: 16px;
    background: #fff;
    font-weight: 500;
    border-radius: 30px;
    border-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.28));
    padding: 12px 20px 6px 15px;
}

.plan-btn {
    background: var(--primary);
    border-radius: 30px;
    border: none;
    min-height: 30px;
    height: 39px;
    padding: 5px 16px 0px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3 ease-out;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    color: #FFFFFF;
    transition: all 0.2s ease-in-out;
}

.btn-home:hover {
    color: var(--primary);
    background-color: var(--primary);
    transition: all 0.2s ease-in-out;
}

.plan-btn:hover {
    background-color: #fff;
    color: var(--primary);
}

.margin-timeline {
    margin-top: 10rem;
}

.margin-timeline-alternative {
    margin-top: 6rem;
}

/* User call */

.user-call-title {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: start;
    margin-top: 1rem;
}
.btn-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-self: center;
}

.user-call-btn {
    color: #ffff;
    background: var(--gradient);
    border-radius: 30px;
    min-height: 30px;
    padding: 14px 15px 8px 12px;
    display: inline-block;
    text-align: center;
    transition: all 0.2s ease-in-out;
    font-size: 12px;
    font-weight: 500;
    margin-top: 1.5rem;
    border: none;
    font-size: 16px;
    width: 14rem;
}

.user-call-btn-secondary{
    color: var(--main-text);
    background-color: #ffff;
    border: 1px solid var(--primary);
    border-radius: 30px;
    min-height: 30px;
    padding: 14px 15px 8px 12px;
    display: inline-block;
    text-align: center;
    transition: all 0.2s ease-in-out;
    font-size: 12px;
    font-weight: 500;
    margin-top: 0.5rem;
    font-size: 16px;
    width: 14rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 94px;
    right: 10px;
    background-color: #25D366;
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
  }
  
  .whatsapp-float i {
    margin-top: 0px;
    color: #ffff;
  }
  
  .whatsapp-float:hover {
    background-color: #128C7E;
  }
  
  .cotaniner-contact {
    margin-top: 5rem;
    margin-bottom: 2rem;
  }

/* .user-call-btn:hover {
    background-color: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
} */

.margin-img-timeline {
    width: 475px;
    height: auto;
    margin-top: 14rem;
}

.margin.text-timeline {
    margin-top: 8rem;
}

.margin-img-timeline-alternative {
    width: 496px;
    height: auto;
    margin-top: 14rem;
}

#cookie-banner {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background-color: #fff;
    padding: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: transform 0.3s ease;
    height: 84px;
    align-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #cookie-banner.closed {
    transform: translateY(500%);
  }
  
  #cookie-content {
    display: flex;
    margin: auto;
    justify-content: center;
  }
  
  #cookie-content p {
    font-size: 18px;
    font-style: normal;
    font-stretch: normal;
    color: #232323;
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
    text-align: center;
    align-self: self-end;
    padding-right: 10px;
  }
  
  #cookie-accept,
  #cookie-close {
    /* color: #fff; */
    padding: 2px 8px 0px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 10px;
    width: 70px;
    height: 26px;
  }
  
  #cookie-accept {
    background-color: var(--primary);
    border: 0px solid var(--primary);
    color: #fff;
    height: 41px;
    width: 162px;
    font-size: 18px;
    line-height: 16px;
    font-weight: 500;
    padding-top: 6px;
  }
  
  #cookie-accept:hover {
    background-color: var(--secondary-green);
  }

/* Bootstrap Carousel */

@media (max-width: 1300px) {
    .btn-container {
        flex-direction: column;
    }

    .home-icon>img {
        width: 136px;
    }

    .home-text-container {
        margin-top: 3rem;
    }

    /* .margin-timeline {
        margin-top: 4rem;
    } */

    /* .margin-img-timeline {
        margin-top: 15rem;
    } */

    /* .margin.text-timeline {
        margin-top: 0rem;
    } */

    #footer {
        background: var(--gradient-smaller);
    }

}


@media (max-width: 1200px) {
    .img-mockups {
        width: 70%
    }
}

@media (max-width: 780px) {
    .img-mockups {
        width: 84%
    }
}

@media (max-width: 767px) {
    .carousel-inner .carousel-item>div {
        display: none;
    }
    .carousel-inner .carousel-item>div:first-child {
        display: block;
    }

    .carousel-inner .carousel-item-clients>div {
        display: none;
    }
    .carousel-inner .carousel-item-clients>div:first-child {
        display: block;
    }

    .flow-text {
        font-size: 1.5rem;
        margin-top: 0rem;
    }

    .flow-desc {
        font-size: 1rem !important;
    }

    .footer-small {
        gap: 0rem !important;
    }

    .container-clients {
        transform: scale(0.7);
      }
}

@media (max-width: 991px) and (min-width: 769px) {
    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }
    .carousel-inner .carousel-item-start.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(50%);
    }

    .carousel-inner .carousel-item-clients-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }
    .carousel-inner .carousel-item-clients-start.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(50%);
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

.carousel-inner .carousel-item-clients.active,
.carousel-inner .carousel-item-clients-next,
.carousel-inner .carousel-item-clients-prev {
    display: flex;
}


.carousel-indicators [data-bs-target] {
    background-color: #03ff80;
    width: 14px;
    height: 14px;
    border-radius: 15px;
    border-top: 0;
    border-bottom: 0;
}

.clients-row {
    display: flex;
    align-items: center;
    animation: scroll 140s linear infinite;
    width: 35000px;
    gap: 4rem;
    height: 14rem;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
  
    100% {
      transform: translateX(-10000px);
    }
  }
  

.carousel-control-next-icon {
    background-image: url('../icons/next.svg');
    position: absolute;
    width: 75px;
    height: 75px;
    margin-left: 15vw;
}


/* medium and up screens */

@media (min-width: 992px) {
    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(33.333%);
    }
    .carousel-inner .carousel-item-start.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-33.333%);
    }

    .carousel-inner .carousel-item-clients-end.active,
    .carousel-inner .carousel-item-clients-next {
        transform: translateX(33.333%);
    }
    .carousel-inner .carousel-item-clients-start.active,
    .carousel-inner .carousel-item-clients-prev {
        transform: translateX(-33.333%);
    }
    
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
    transform: translateX(0);
}

.carousel-inner .carousel-item-clients-end,
.carousel-inner .carousel-item-clients-start {
    transform: translateX(0);
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.big-numbers-section-mobile {
    display: none;
}

@media (max-width: 1100px) {
    .big-numbers-section {
        flex-direction: column;
        min-height: 86vh;
    }
    .bn-line {
        margin-bottom: 3rem;
        margin-right: 0px;
    }
    .bn-component-first {
        margin-right: 5rem;
    }
    .solution-description {
        font-size: 24px;
    }

    .bn-line img {
        transform:scale(0.8);
    }

    .bn-title {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .timiline-img-2 {
        width: 482px !important;
        height: 373px !important;
    }
}

@media (max-width: 570px) {

    .call-demo-img {
        text-align: center;
        margin-bottom: 2rem !important;
    }

    .user-call-title {
        font-size: 1.6rem;
    }

    .gradient {
        /* height: 46vh; */
        background: linear-gradient(90deg, rgba(50,50,250,1) -44%, rgba(37,107,216,1) 64%, rgba(3,255,128,1) 135%);
        margin-top: -270px !important;
        display: flex;
        flex-direction: column;
        z-index: 1;
    }
    
    .img-mockups {
        width: 90%;
    }

    .grey-bg {
        height: 102px !important;
    }

    .mockups-title {
        margin-top: 12rem;
        margin-bottom: 4rem;
        line-height: 36px;
    }
    
    .mockups-title span {
        font-size: 20px;
        margin-bottom: 4rem;
        max-width: 86% !important;
    }

    .big-numbers-section {
        display: none;
    }
    .big-numbers-section-mobile {
        background-repeat: no-repeat;
        background-image: url('../images/arts/big-numbers-bg-min.png');
        background-position: center;
        min-height: 54vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
    
        &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5) 34%; /* Adjust the darkness */
        z-index: -1;
        }
    
    }

    .bn-container-mobile {
        margin-top: 2rem;
        margin-bottom: 2rem;
        margin-right: 1rem;
    }

    .bn-component-mobile img {
        transform: scale(0.8);
    }

    .bn-component-mobile {
        display: flex;
        flex-direction: row;
        margin-bottom: 1rem;
    }

    .bn-line-mobile {
        display: flex;
        flex-direction: column;
    }

    .bn-text-mobile {
        display: flex;
        flex-direction: column;
        margin-left: 10px;
        justify-content: space-evenly;
    }

    .bn-title-mobile {
        font-weight: 600;
        font-size: 24px;
        color: #ffff;
    }

    .bn-desc-mobile {
        font-size: 18px;
        color: #ffff;
        line-height: normal;
    }
}

@media (min-width: 500px) and (max-width: 570px) and (max-height: 800px) {
    .grey-bg{
        height: 116px !important;
    }

}

@media (min-width: 390px) and (max-width: 440px) and (min-height: 500px ) and (max-height: 700px) {
    .gradient {
        /* height: 60vh; */
    }
}

@media only screen and (max-width: 400px) and (min-height: 800px) {

    .btn-header-margin {
        margin-bottom: 50rem !important;
    }
}

@media only screen and (max-width: 420px) and (min-height: 800px) {

    .mockups-img {
        width: 34vh;
    }
}


@media only screen and (max-width: 435px) and (min-height: 800px) {

    .mockups-img {
        width: 34vh;
    }
}

.img-mackbook-mobile {
    display: none;
}

@media only screen and (max-width: 600px) {

    .btn-header-margin {
        margin-bottom: 50rem;
    }

    .img-mackbook {
        display: none !important;
    }
    .img-mackbook-mobile {
        display: flex;
    }

}

@media only screen and (max-width: 991.98px) and (min-height: 975px) {
    .mockups-img {
        width: 52vh;
    }
}

@media only screen and (max-width: 400px) {
    .home-icon-mobile {
        padding-bottom: 0px;
    }

    .home-icon-mobile>img {
        width: 24%;
    }

    .grey-bg {
        height: 100px !important;
    }

    .solution-card-alternative {
        max-width: 246px;
    }

    .imediatum-logo {
        width: 100%;
    }

    .btn-header-margin {
        margin-bottom: 34rem;
    }

    .mockups-img {
        width: 40vh;
    }
    
}



@media only screen and (max-width: 798px) {
    .solution-card-title {
        font-size: 1.35rem;
    }
}

@media only screen and (max-width: 950px) {
    .carousel-smaller {
        gap: 2rem;
    }
}

@media only screen and (max-width: 824px) {
    .solution-card-description {
        font-size: 1rem;
    }
}

@media only screen and (min-width: 601px) and (max-width: 991px) and (max-height: 1200px){
    .btn-header-margin {
        margin-bottom: 59rem;
    }


    /* #home-monitoramento {
        height: 64vh;
    } */

    .solution-card-fretamento {
        /* margin-top: 0rem !important; */
    }
}

@media only screen and (min-width: 770px) and (max-width: 900px) and (min-height: 1000px) {
    .gradient {
        margin-top: -340px !important;
    }
}

@media only screen and (max-width: 900px) and (min-height: 1000px) {
    .gradient {
        margin-top: -340px !important;
    }
}

@media only screen and (min-width: 769px) and (max-width: 850px) and (min-height: 1000px) {
    .gradient {
        margin-top: -340px !important;
    }
}

@media only screen and (max-width: 970px) and (min-height: 1200px) {
    .gradient {
        margin-top: -392px !important;
    }
}

@media (min-width: 530px ) and (max-width: 991px) {

    .timeline-title {
        margin-left: 0rem;
    }

    .saiba-mais {
        text-align: center !important;
    }

    .timeline-mobile-div {
        width: 55% !important;
        align-self: center;
    }

    .big-numbers-section {
        min-height: 86vh;
    }
}


@media (min-width: 992px) and (max-width: 1199px ) {

    .margin-img-timeline {
        margin-top: 12rem;
    }

    .margin-timeline {
        margin-top: 4rem;
    }

    .margin.text-timeline {
        margin-top: 6rem;
    }

    .margin-img-timeline-alternative {
        margin-top: 19rem;
    }
}

@media (max-width: 614px) {
    #cookie-content {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    #cookie-banner {
      height: 184px;
    }
  
    .whatsapp-float {
      bottom: 82px;
    }
  }

@media (max-width: 600px) {
    #home {
        height: 120vh !important;
        background: 
        linear-gradient(100deg, rgba(50,50,250,1) 7%, rgba(3,255,128,0.23) 97%), 
        url('../images/pics/1section-img-min.png');
          position: relative;
          z-index: 1;
      
          &::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(0, 0, 0, 0.5) 34%; /* Adjust the darkness */
          z-index: -1;
          }
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
}

@media (min-width: 770px) and (max-width: 905px ) {
    .flow-title {
        font-size: 2rem;
    }
}

@media (min-width: 510px) and (max-width: 660px ) {
    .flow-title {
        font-size: 1.4rem !important;
    }

    .flow-text {
        font-size: 1.2rem !important;
    }
}

.home-img {
    margin-right: 6%
}

.home-texts-img {
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 380px) and (max-height: 700px) {
    #home {
        height: 145vh !important;
        background: linear-gradient(100deg, rgba(50, 50, 250, 1) 7%, rgba(3, 255, 128, 0.23) 97%), url(../images/pics/1section-img-min.png);
        position: relative;
        z-index: 1;
        background-position: center;
        background-size: cover;
    }
    .home-texts-img {
        flex-wrap: nowrap;
        margin-top:10vh;
    }
    .home-img>img {
        width: 48vh;
    }
    .home-icon>img {
        width: 98px
    }
    .home-icon-mobile>img {
        width: 98px;
    }
}

@media only screen and (max-width: 370px) and (min-height: 701px) {
    .home-texts-img {
        flex-wrap: nowrap;
        margin-top:9vh;
    }
    .home-img>img {
        width: 38vh;
    }
    .home-icon>img {
        width: 98px
    }
    .home-icon-mobile>img {
        width: 98px;
    }
}

@media only screen and (min-width: 371px) and (max-width: 478px) {
    .home-texts-img {
        flex-wrap: nowrap;
        margin-top:9vh;
    }
    .home-img>img {
        width: 40vh;
    }
    .home-icon>img {
        width: 98px
    }
    .home-icon-mobile>img {
        width: 98px;
    }
}

@media only screen and (min-width: 479px) and (max-width: 991px) {
    .home-texts-img {
        flex-wrap: nowrap;
        margin-top:9vh;
    }
    .home-img>img {
        width: 52vh;
    }
    .home-icon>img {
        width: 98px
    }
    .home-icon-mobile>img {
        width: 98px;
    }
}

@media only screen and (min-width: 1399px) {
    .home-img {
        margin-right: 52%
    }
}

@media only screen and (max-width: 996px) {
    #home {
        background: 
        linear-gradient(100deg, rgba(50,50,250,1) 7%, rgba(3,255,128,0.23) 97%), 
        url('../images/pics/1section-img-min.png');
        background-position: 58% center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media only screen and (max-width: 991px) {
    .home-texts-img {
        display: flex;
        flex-wrap: wrap;
    }

    .home-img>img {
        margin-top: 0px !important;
    }
}

@media only screen and (min-height: 900px) and (min-width: 991px) {
    .home-img>img {
        margin-top: 35vh !important;
    }
}