@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css");

:root {
    --main-color: #F55A54;
    --secondary-color: #1C72B8;
}

/* General */
html{
    scroll-behavior: smooth;
}
body, html {
    max-width: 100%;
    overflow-x: hidden;
}
body {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    background: #FAFCFD;
}

section{
    padding-top: 80px;
    padding-bottom: 80px;
}

.text-main{
    color: var(--main-color);
}

.text-main.thin-text{
    font-weight: 200;
}

.text-purple{
    color: var(--secondary-color);
}

.bg-main{
    background-color: var(--main-color);
}
.bg-purple{
    background-color: var(--secondary-color);
}
h1 {
    font-size: 60px;
    font-weight: 600;
    color: var(--main-color);
}
#hero-3 h1,#hero-2 h1{
    font-size: 48px;
}
h1 span {
    color: var(--secondary-color);
}

h1 small{
    font-size: 18px;
    font-weight: normal;
}

h2 {
    font-size: 32px;
    font-weight: 600;
}

.secondary {
    color: #000;
    font-size: 24px;
}
.rounded-btn{
    border-radius: 36px;
}
.btn-outline-purple {
    border-color: var(--secondary-color);
    color: var(--secondary-color) !important;
    background: #fff;
}

.btn-outline-purple:hover {
    color: #fff !important;
    background-color: var(--secondary-color) !important;
}

.btn-red {
    border-color: var(--main-color);
    background: var(--main-color);
    color: #fff !important;
}

.btn-red:hover {
    border-color: #cc3630;
    background: #cc3630;
    color: #fff !important;
}

.btn-purple {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: #fff !important;
}

.btn-purple:hover {
    border-color: #522573;
    background: #522573;
    color: #fff !important;
}

.btn-white {
    border-color: var(--secondary-color);
    background: #fff;
    color: var(--secondary-color) !important;
}

.btn-white:hover {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: #fff !important;
}

ul li{
    font-size: 15px;
    margin-bottom: 8px;
}

/*Navbar*/
#main-nav .navbar-brand img {
    height: 60px;
}

#main-nav .nav-item {
    margin-right: 15px;
}

#main-nav .nav-link {
    outline:0 !important;
    box-shadow: none !important;
    color: #000;
}
#main-nav .nav-link:hover,#main-nav .nav-link:active{
    color: var(--main-color);
}

#main-nav .dropdown .dropdown-menu {
    padding: 0;
}

#main-nav .dropdown .dropdown-item:hover {
    background-color: transparent;
    color: var(--main-color);
}

/* Bootstrap Customization */
.dropdown-toggle::after {
    display: inline-block;
    font-size: 10px;
    content: "\f22c";
    border: 0;
    font-family: bootstrap-icons !important;
    position: absolute;
    bottom: 10px;
    right: -5px;
}

/* Hero section */
#hero {
    background-image: url("../images/pattern.png");
    background-size: 270px;
    background-repeat: no-repeat;
    background-position: left bottom;
    height: 100vh;
}
#hero .hero-img{
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    z-index: -1;
}

#hero .main-heading h1 {
    font-size: 90px;
}

#hero .main-heading .sub-main {
    margin-top: 100px;
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    #hero .main-heading h1 {
        margin-top: 80px;
        font-size: 36px; /* Adjust this value as needed */
    }

    #hero .main-heading .sub-main {
        margin-top: 20px;
    }
}

/*Info sections*/
.shape::before{
    content:'';
    width: 300px;
    height: 300px;
    background-image: url('../images/purple.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -100px;
    left: -80px;
    z-index: -1;
    opacity: .7;
}
.shape::after{
    content:'';
    width: 300px;
    height: 300px;
    background-image: url('../images/red.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -20px;
    right: 20px;
    z-index: -1;
    opacity: .7;
}
.auto-shape::before{
    content:'';
    width: 300px;
    height: 300px;
    background-image: url('../images/red.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -100px;
    left: -100px;
    z-index: 1;
    opacity: .5;
}
.auto-shape::after{
    content:'';
    width: 300px;
    height: 300px;
    background-image: url('../images/purple.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -100px;
    right: -100px;
    z-index: 1;
    opacity: .4;
}
/*.shape-2{*/
/*    text-align: center;*/
/*    background-image: url("../images/shape-2.png");*/
/*    background-size: 110% 120%;*/
/*    background-position: center center;*/
/*    background-repeat: no-repeat;*/
/*}*/
.shape-2::before{
    content:'';
    width: 300px;
    height: 300px;
    background-image: url('../images/purple.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -100px;
    left: -100px;
    z-index: 1;
    opacity: .5;
}
.shape-2::after{
    content:'';
    width: 300px;
    height: 300px;
    background-image: url('../images/purple.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -100px;
    right: -100px;
    z-index: 1;
    opacity: .5;
}
/*.shape-3{*/
/*    text-align: center;*/
/*    background-image: url("../images/shape-3.png");*/
/*    background-size: 110% 125%;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*}*/
.shape-3::before{
    content:'';
    width: 300px;
    height: 300px;
    background-image: url('../images/red.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -100px;
    left: -100px;
    opacity: .5;
}
.shape-3::after{
    content:'';
    opacity: .5;
    width: 300px;
    height: 300px;
    background-image: url('../images/red.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -100px;
    right: -100px;
    z-index: 1;
}
.shape-4::before{
    content:'';
    width: 300px;
    height: 300px;
    background-image: url('../images/red.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -100px;
    left: -100px;
    z-index: 1;
    opacity: .5;
}
.shape-4::after{
    content:'';
    opacity: .5;
    width: 300px;
    height: 300px;
    background-image: url('../images/purple.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -100px;
    right: -100px;
    z-index: 1;
}
/*.shape-4{*/
/*    text-align: center;*/
/*    background-image: url("../images/shape-4.png");*/
/*    background-size: 110% 110%;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*}*/
.auto-shape, .shape, .shape-2, .shape-3,.shape-4 {
    position: relative;
}
.auto-shape img, .shape img, .shape-2 img,.shape img, .shape-3 img,.shape-4 img,img.sh-card,video.sh-card{
    position: relative;
    z-index: 2;
    /*background: #fff;*/
    border-radius: 16px;
    /*box-shadow: 0 0 20px 15px rgba(156, 153, 153, 0.12);*/
    /*padding: 20px;*/
}
/* Video Section */
#video{
    position: relative;
    margin-top: -250px;
}
#video img.main-img{
    height: 400px;
}
#video img.play{
    position: absolute;
    top: 50%;
    left: 50%;
    height: 200px;
    width: 200px;
    animation: scale-up-down 1.8s linear infinite;
    cursor: pointer;
}
@keyframes scale-up-down {
    0%{
        transform: translate(-50%,-50%) scale(1);
    }
    50%{
        transform: translate(-50%,-50%) scale(1.2);
    }
    100%{
        transform: translate(-50%,-50%) scale(1);
    }
}
.bottom-red img,.bottom-purple img{
    position: relative;
    z-index: 2;
}
.bottom-red::before{
    content: '';
    width: 400px;
    height: 400px;
    background-image: url('/images/red.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -150px;
    left: -150px;
    z-index: 1;
    opacity: .4;
}
.n-top{
    margin-top: -150px;
}
.bottom-purple::before{
    content: '';
    width: 400px;
    height: 400px;
    background-image: url('/images/purple.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -150px;
    left: -150px;
    z-index: 1;
    opacity: .4;
}
/* Customization */
#customization{
    padding-top: 400px;
    background-image: url("../images/left-wings.png");
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
}
#customization.home{
    padding-top: 160px;
}
#records{
    background: #fff;
    /*padding-bottom: 240px;*/
}
#manual{
    background: #fff;
    background-image: url("../images/lines.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
}

.opacity-line-vertical {
    width: 1px;
    height: 158px;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.5) 25%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0.5) 75%,
            rgba(0, 0, 0, 0) 100%
    );
    position: relative;
}

.opacity-line-vertical::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    opacity: 0.5;
}

#automation{
    background: #fff;
}
.lines{
    background-image: url("../images/lines.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.top-lines::before{
    content:'';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/lines.png");
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
}
#performance .inner{
    background-image: url("../images/left-wings.png");
    background-repeat: no-repeat;
    background-position: left;
    background-size: 150px;
}
/* Payment Section */
#payment{
    position: absolute;
    width: 100%;
    height: 600px;
    padding-top: 12vh !important;
    background: linear-gradient(125.97deg, #F55A54 0%, #1C72B8 119.24%);
}

#payment.try-for-free{
    height: 900px;
    position: relative !important;
}

@media (max-width: 768px) {
    #payment{
        height: 1100px;
    }

    #payment.try-for-free{
        height: 1950px;
    }
}

#payment .pricing-title{
    /* PRICING */
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 49px;
    /* identical to box height */
    color: #FFFFFF;
    text-align: center;
}

#payment .pricing-description{
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    /* identical to box height */
    text-align: center;
    color: #FFFFFF;
    opacity: 0.6;
}

#payment .pricing-subscription{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    /* identical to box height */

    text-align: center;

    color: #FFFFFF;
}

#payment .pricing-subscription-black{
    text-align: left;
    color: black !important;
    font-weight: 700;
}

#payment .pricing-features{
    display: block;
    margin: 0px auto;
    background: #FFFFFF;
    box-shadow: 0px 4px 14px rgba(28, 114, 184, 0.12);
    border-radius: 15px;
    z-index: 10;
}

.feature-right{
    border-left: 1px solid grey;
    border-right-width: 0 !important;
    border-image: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(147,147,147,0.4) 50%,rgba(0,0,0,0) 100%) 1 100%;
    padding-right: 0px !important;
}

.feature-left .get-started-btn{
    cursor: pointer;
    display: block;
}

.feature-left .price{
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    /* or 100% */
    color: #F55A54;
}

.feature-left .duration{
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 12px;
    /* identical to box height, or 86% */
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.6);
}

.feature-left .feature-name{
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000000;
}

.feature-left .feature-description{
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 19px;
    color: #000000;
}

#premium-features{
    width: 100%;
    background: #E8F1F8;
}

#premium-features:not(.modules){
    padding-top: 650px;
}

@media only screen and (min-width: 360px) and (max-width: 992px) {
    #premium-features:not(.modules){
        padding-top: 1150px;
    }

    .feature-box.highlighted-red{
        padding-top: 90px !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 992px) {
    #premium-features:not(.modules){
        padding-top: 1150px;
    }

    .feature-box.highlighted-red{
        padding-top: 90px !important;
    }
}

#premium-features.modules{
    background: #FEEFEE;
}

.premium-title{
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    /* identical to box height */
    text-align: center;
    color: #165B93;
}

#premium-features.modules .premium-title{
    color: #F55A54;
}

#premium-features.modules .feature-left .price{
    color: #1C72B8;
}

.feature-box{
    min-height: 450px;
    background: #FFFFFF;
    border-radius: 12px;
}

.feature-box.highlighted-red{
    position: relative;
}

.feature-box.highlighted-red .year-plan{
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px;
    background-color:red;
    color:white;
    font-weight: bold;
    font-size: 30px;
    border-bottom-left-radius: 10px;
}

.feature-box.highlighted-red{
    border: 7px solid red;
}

.feature-box.highlighted-red .price.discounted{
    margin-left: 50px;
}

.cross {
    position: relative;
    display: inline-block;
}
.cross::before, .cross::after {
    content: '';
    width: 100%;
    position: absolute;
    right: 0;
    top: 50%;
}
.cross::before {
    border-bottom: 2px solid red;
    -webkit-transform: skewY(-10deg);
    transform: skewY(-10deg);
}
.cross::after {
    border-bottom: 2px solid red;
    -webkit-transform: skewY(10deg);
    transform: skewY(10deg);
}

#premium-features.modules .feature-box{
    min-height: 246px;
}

.feature-box .sub-description{
    color: #1C72B8;
}

/* Reviews section */
#reviews{
    /*background-image: url("../images/lines.png");*/
    /*background-repeat: no-repeat;*/
    /*background-position: top;*/
    /*background-size: 100%;*/
}
#reviews .inner{
    background-image: url("../images/right-wings.png");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 180px;
}
#reviews .quote-img{
    opacity: .25;
    width: 40px;
}
#reviews p.quote{
    font-size: 20px;
}
#reviews .person{
    height: 270px;
}
#reviews .controls{
    position: relative;
    z-index: 3;
    margin-right: 20px;
    margin-top: -80px;
}
.prev,.next{
    margin-right: 10px;
    height: 35px;
    width: 35px;
    padding: 0;
    text-align: center;
}
/*Footer*/
.social-links a{
    display: inline-block;
    height: 35px;
    width: 35px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    line-height: 1.7;
}
.social-links a:hover{
    background-image: linear-gradient(131.91deg, #FF5C5C 10.13%, #6C3A92 100%);
    color: #fff;
}
/*footer{*/
/*    position: fixed;*/
/*    bottom: 0 !important;*/
/*    width: 100%;*/
/*}*/
footer a{
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 5px;
}
footer a:hover{
    color: var(--main-color);
}
#reviews,footer,#red-banner{
    /*background: #EAF0FE;*/
}
/* Form */
.form-control:focus,.form-control:active{
    border-color: var(--secondary-color);
    outline: 0 !important;
    box-shadow: none !important;
}
/* Automation Page */

#customize-hero{
    padding-top: 14vh;
    max-height: 110vh;
}

.lb-outerContainer {
    background-color: transparent;
}

.lb-container {
    background-color: #fff;
}

.lb-dataContainer {
    padding-top: 0;
    padding-bottom: 5px;
    transition: 1s;
}

#contact-page{
    min-height: 86vh !important;
    padding-top: 14vh;
    background-image: url("../images/wings-left-2.png");
    background-position: left center;
    background-size: 310px;
    background-repeat: no-repeat;
    position: relative;
}

#contact-page.bg-red-purple::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(131.91deg, #FF5C5C 10.13%, #6C3A92 100%);
    z-index: -1;
}

#hero-2{
    padding-top: 14vh;
    max-height: 90vh;
    background-image: url("../images/wings-left-2.png");
    background-position: left bottom;
    background-size: 310px;
    background-repeat: no-repeat;
    position: relative;
}
#hero-3{
    padding-top: 14vh;
    background-image: url("../images/left-wings.png");
    background-position: left bottom;
    background-size: 310px;
    background-repeat: no-repeat;
    position: relative;
}
#hero-3::after{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background-image: url("../images/right-wings.png");
    background-position: right bottom;
    background-size: 310px;
    background-repeat: no-repeat;
}
#hero-2.bg-red-purple::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(131.91deg, #FF5C5C 10.13%, #6C3A92 100%);
    z-index: -1;
}

.mobile-page-background::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(131.91deg, #6C3A92 10.13%, #FFA500 100%);
    z-index: -1;
}

.project-page-background::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(131.91deg, #32ccff 10.13%, #5cf50f 100%);
    z-index: -1;
}


.crm-page-background::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(131.91deg, #3490dc 10.13%, #ee5da3 100%);
    z-index: -1;
}

.inventory-page-background::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(131.91deg, #6665ff 10.13%, #cccccc 100%);
    z-index: -1;
}

.image-container{
    position: relative;
    justify-content: center;
    align-items: center;
}

.image-container img{
    border-radius: 16px;
}

/* Default styles (for larger screens) */
.intro-image-right {
    width: 800px;
}

.intro-image-left {
    width: 800px;
    margin-left: -100px;
}

/* Medium screens (desktops, tablets in landscape mode) */
@media (max-width: 1200px) {
    .intro-image-right {
        width: 900px; /* Adjust width for medium screens */
    }

    .intro-image-left {
        width: 900px; /* Adjust width for medium screens */
        margin-left: -350px; /* Adjust margin for medium screens */
    }
}

/* Small screens (tablets in portrait mode) */
@media (max-width: 992px) {
    .intro-image-right {
        width: 500px; /* Adjust width for small screens */
    }

    .intro-image-left {
        width: 500px; /* Adjust width for small screens */
        margin-left: -100px; /* Adjust margin for small screens */
    }
}

/* Extra small screens (mobile devices) */
@media (max-width: 768px) {
    .intro-image-right {
        width: 100%; /* Adjust width for extra small screens */
    }

    .intro-image-left {
        width: 100%; /* Adjust width for extra small screens */
        margin-left: 0; /* Adjust margin for extra small screens */
    }
}

/* Extra-extra small screens (small mobile devices) */
@media (max-width: 576px) {
    .intro-image-right {
        width: 100%; /* Make image full width on very small screens */
    }

    .intro-image-left {
        width: 100%; /* Make image full width on very small screens */
        margin-left: 0; /* Remove negative margin for small screens */
    }
}

.image-container .expand-icon{
    position: absolute;
    z-index: 100;
    font-size: 24px;
    display: none;
    pointer-events: none;
    color:grey;
}

.image-container:hover .expand-icon{
    display: inline-block;
}

#hero-2.bg-purple-red::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(131.91deg, #6C3A92 10.13%, #FF5C5C 100%);
    z-index: -1;
}
#hero-2::after{
    /*position: absolute;*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background-image: url("../images/wings-right-2.png");
    background-position: right bottom;
    background-size: 310px;
    background-repeat: no-repeat;
}
#reminders{
    background-image: url("../images/left-wings.png");
    background-position: left bottom;
    background-size: 300px;
    background-repeat: no-repeat;
    padding-top: 25vh;
}
#features{
    background-image: url("../images/lines.png");
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
}
#features .inner{
    background-image: url("../images/lines.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
}
/*.auto-shape{*/
/*    text-align: center;*/
/*    background-image: url("../images/auto-shape-0.png");*/
/*    background-size: 110% 110%;*/
/*    background-position: center center;*/
/*    background-repeat: no-repeat;*/
/*}*/
/*.auto-shape-1{*/
/*    text-align: center;*/
/*    background-image: url("../images/auto-shape-1.png");*/
/*    background-size: 100% 100%;*/
/*    background-position: center center;*/
/*    background-repeat: no-repeat;*/
/*}*/
/*.auto-shape-2{*/
/*    text-align: center;*/
/*    background-image: url("../images/auto-shape-2.png");*/
/*    background-size:95% 95%;*/
/*    background-position: center center;*/
/*    background-repeat: no-repeat;*/
/*}*/
/*.auto-shape-3{*/
/*    text-align: center;*/
/*    background-image: url("../images/auto-shape-3.png");*/
/*    background-size: 90% 90%;*/
/*    background-position: center center;*/
/*    background-repeat: no-repeat;*/
/*}*/
/*.auto-shape img, .auto-shape-2 img,.auto-shape img, .auto-shape-3 img,.auto-shape-4 img{*/
/*    max-width: 75% !important;*/
/*    margin: 60px;*/
/*}*/
/* Media Queries */
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px;
    }
}
@media screen and (max-width: 768px){
    #hero-2{
        max-height:inherit;
    }
    body,ul li,p.lead{
        font-size:18px;
    }
    #customization.home{
        padding-top: 50px;
    }
    h2{
        padding-top: 20px;
    }
    .n-top{
        margin-top: 0;
    }
    #main-nav .dropdown-toggle::after {
        top: 12px;
        right: 0;
    }
    #customization{
        padding-top: 50px;
    }
    #customization.deals{
        padding-top: 50px;
    }
    #customization.n-top{
        padding-top: 25px;
    }
    #hero-2{
        padding-top: 100px;
    }
    #hero-3,#hero-3::after{
        background-size: 240px;
    }
    #hero .hero-img{
        width: 80%;
        top: 60px;
    }
    #hero{
        height: 80vh;
        background-size: 130px;
        background-position: bottom left;
    }
    #hero .col-md-5{
        margin-top: 200px;
    }
    h1{
        font-size: 36px;
    }
    h2{
        font-size: 28px;
    }
    .secondary{
        font-size: 18px;
    }
    section{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #customization {
        background-position: left 120px;
        background-size: 80px;
    }
    #reviews .person{
        height: 60px;
        width: 60px;
        border-radius: 50%;
        object-fit: cover;
    }
    #reviews .bg-white{
        position: relative;
    }
    #reviews .quote-img{
        height: 40px;
        position: absolute;
        right: -30px;
        top: -20px;
    }
    #reviews{
        background-position: top;
    }
    #reviews p.quote{
        font-size: 18px;
    }
    /*  Automation Page  */
    #hero-2 h1,#hero-3 h1{
        font-size: 32px;
    }
    .lead{
        font-size: 1rem;
    }
    #reminders{
        padding-top: 25px;
    }
}

/* Add your CSS here */
.sidebar-wrapper {
    position: relative;
}

.freelife-sidebar {
    position: sticky;
    top: 0;
    overflow-y: auto;
}

.freelife-sidebar.fixed-bottom {
    position: absolute;
    bottom: 0;
    top: auto;
}

.freelife-sidebar .nav-link.active {
    font-weight: bold;
    color: #0d6efd;
}

.freelife-sidebar .nav-link {
    color: black;
    transition: color 0.3s ease;
}

.freelife-sidebar .nav-link.active {
    font-weight: bold;
}

.freelife-sidebar .nav-link.text-main {
    color: var(--main-color) !important;
}

.freelife-sidebar.sidebar-fixed {
    position: fixed;
    top: 100px;
    width: 25%; /* Adjust based on your layout */
}

@media (max-width: 768px) {
    .freelife-sidebar {
        display: none;
    }
}

.login-button{
    font-size: 10px;
    padding: 12px 55px;
    border-radius: 10px;
    font-weight: bold;
    background-color: #1C72B8FF;
}

.login-button:hover,
.login-button:focus,
.login-button:active{
    background-color: #1C72B8FF;
}