/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #fff;
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

input {
    min-width: 300px;
}

a {
    color: #00ACD0;
    text-decoration: none;
    transition: 0.5s;
}



a:hover, a:active, a:focus {
    color: #F7960E;
    outline: none;
    text-decoration: none;
}

a.anchor {
    display: block;
    position: relative;
    top: -72px;
    visibility: hidden;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
    align-self: center;
}

.rounded {
    border-radius: 8px !important;
}

/* Variables */
* {
    box-sizing: border-box;
}

.result-message {
    line-height: 22px;
    font-size: 16px;
}

.result-message a {
    color: rgb(89, 111, 214);
    font-weight: 600;
    text-decoration: none;
}

.hidden {
    display: none;
}

#card-error {
    color: rgb(105, 115, 134);
    text-align: left;
    font-size: 13px;
    line-height: 17px;
    margin-top: 12px;
}

#card-element {
    border-radius: 4px 4px 0 0;
    padding: 12px;
    border: 1px solid rgba(50, 50, 93, 0.1);
    height: 44px;
    width: 100%;
    background: white;
}

#payment-request-button {
    margin-bottom: 32px;
}

/* Buttons and links */
button {
    background: #5469d4;
    color: #ffffff;
    border-radius: 0 0 4px 4px;
    border: 0;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
    width: 100%;
}

button:hover {
    filter: contrast(115%);
}

button:disabled {
    opacity: 0.5;
    cursor: default;
}

/* Back to top button for report */
#back_to_top_btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #00ACD0;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

#back_to_top_btn:hover {
    background-color: #555;
}

/* spinner/processing state, errors */
.spinner,
.spinner:before,
.spinner:after {
    border-radius: 50%;
}

.spinner {
    color: #ffffff;
    font-size: 22px;
    text-indent: -99999px;
    margin: 0px auto;
    position: relative;
    width: 20px;
    height: 20px;
    box-shadow: inset 0 0 0 2px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.spinner:before,
.spinner:after {
    position: absolute;
    content: "";
}

.spinner:before {
    width: 10.4px;
    height: 20.4px;
    background: #5469d4;
    border-radius: 20.4px 0 0 20.4px;
    top: -0.2px;
    left: -0.2px;
    -webkit-transform-origin: 10.4px 10.2px;
    transform-origin: 10.4px 10.2px;
    -webkit-animation: loading 2s infinite ease 1.5s;
    animation: loading 2s infinite ease 1.5s;
}

.spinner:after {
    width: 10.4px;
    height: 10.2px;
    background: #5469d4;
    border-radius: 0 10.2px 10.2px 0;
    top: -0.1px;
    left: 10.2px;
    -webkit-transform-origin: 0px 10.2px;
    transform-origin: 0px 10.2px;
    -webkit-animation: loading 2s infinite ease;
    animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 600px) {
    form {
        width: 80vw;
    }
}

.alert.alert-warning {
    width: 100%;
    padding: 0;
    margin: 0;
}

.dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    background: #F7960E;
    color: #fff;
    padding: 2px 20px 8px 20px;
    font-size: 16px;
    border-radius: 4px 4px 0 0;
    right: 15px;
    bottom: 0;
    transition: none;
}

.back-to-top:focus {
    background: #F7960E;
    color: #fff;
    outline: none;
}

.back-to-top:hover {
    background: #00ACD0;
    color: #fff;
}

#index_banner {
    background-image: linear-gradient(86.9deg, #00ACD0,#0088A3);
}

#index_banner a {
    color: white;
}

#index_banner a:hover {
    color: #F7960E;
}


/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
#login {
    padding: 40px;
}

#login .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
}

#login .row {
    margin: 5px;
}

#login p {
    margin-bottom: 5px;
    padding: 5px;
}

#login [type="submit"], button {
    background: #00ACD0;
    border: 0;
    border-radius: 10px;
    padding: 8px 30px;
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

#login [type="checkbox"] {
    min-width: 20px;
}

/*--------------------------------------------------------------
# Profile
--------------------------------------------------------------*/
#profile {
    padding: 40px;
}

#profile h2 {
    font-size: 16px;
    font-weight: bold;
    display: inline;
}

#profile h5 {
     text-align: center;
}

#profile p {
    
    margin-left: auto;
    margin-bottom: 15px;
}

#profile span {
    
    margin: auto;
}

#profile .flex-profile {
    flex: 1 0 auto;
    padding: 40px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
}

#profile .flex-reports-container {
    flex: 1 0 auto;
    padding: 20px;
    background: #fff;
}

#profile .flex-report-box {
    flex: 1 0 auto;
    padding: 20px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
    margin-bottom: 10px;
}

#profile .flex-report-box .row {
    margin-top: 5px;
    min-height: 2em;
    width: auto;
}

#profile .row {
    margin-top: 5px;
    min-height: 2em;
}

#profile p {
    
    margin-left: auto;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

#profile .profile-report-header{
    font-size: 20px;
    color: #111;
    text-align: center;
    align-content: center;
    font-weight: 400;
}

#profile .profile-report-header .section-divider {
    display: block;
    width: 75%;
    height: 3px;
    background: #00ACD0;
    margin: 4px auto;
}

#profile .delete-data-btn {
    background: #515e61;
    display: inline-block;
    padding: 6px 30px;
    border-radius: 20px;
    color: #fff;
    transition: none;
    font-size: 16px;
    font-weight: 400;
    
    text-align: center;
    margin-top: 20px;
    max-width: 80%;
}

#profile .delete-data-btn:hover {
    background: #842029;
}

#profile .delete-btn {
    background: #515e61;
    display: inline-block;
    padding: 6px 30px;
    border-radius: 20px;
    color: #fff;
    transition: none;
    font-size: 16px;
    font-weight: 400;
    
    text-align: center;
    max-width: 80%;
}

#profile .delete-btn:hover {
    background: #842029;
}

#profile .report-progress {
    background: #515e61;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 20px;
    color: #fff;
    transition: none;
    font-size: 16px;
    font-weight: 400;
    
    text-align: center;
    margin-left: 5%;
}

#profile .report-btn {
    background: #515e61;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 20px;
    color: #fff;
    transition: none;
    font-size: 16px;
    font-weight: 400;
    
    align-self: end;
}

#profile .report-btn-view {
    background: #515e61;
    display: inline-block;
    padding: 6px 20px;
    margin-left: 10%;
    border-radius: 20px;
    color: #fff;
    transition: none;
    font-size: 16px;
    font-weight: 400;
    
    text-align: center;
}

#profile .report-btn-view:hover {
    background: #00ACD0;
}

#profile .report-btn-print {
    background: #515e61;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 20px;
    color: #fff;
    transition: none;
    font-size: 16px;
    font-weight: 400;
    
    text-align: center;
}

#profile .report-btn-print:hover {
    background: #00ACD0;
}

#profile .report-btn:hover {
    background: #00ACD0;
}

#profile [type="submit"], button {
    background: #00ACD0;
    border: 0;
    border-radius: 10px;
    padding: 8px 30px;
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

#profile [type="checkbox"] {
    min-width: 20px;
}

/*--------------------------------------------------------------
# Register
--------------------------------------------------------------*/

#delete_account [type="checkbox"] {
    min-width: 20px;
}

#delete_account [type="submit"], button {
    background: #842029;
    border: 0;
    border-radius: 10px;
    padding: 8px 30px;
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

/*--------------------------------------------------------------
# Register
--------------------------------------------------------------*/
#register {
    padding: 40px;
}

#register .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
}

#register .row {
    margin: 5px;
}

#register p {
    margin-bottom: 5px;
    
    padding: 5px;
}

#register [type="submit"], button {
    background: #00ACD0;
    border: 0;
    border-radius: 10px;
    padding: 8px 30px;
    color: #fff;
    text-align: center;
    margin-top: 15px;
}
#register .btn {
    background: #00ACD0;
    border: 0;
    border-radius: 10px;
    padding: 8px 30px;
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

/*--------------------------------------------------------------
# Start page
--------------------------------------------------------------*/
#start {
    padding: 40px;
}

#start .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
}

#start .row {
    margin: 5px;
}

#start p {
    margin-bottom: 5px;
    
    padding: 5px;
}

#start a {
    background: #00ACD0;
    display: block;
    padding: 6px 30px;
    margin-top: 10px;
    border-radius: 20px;
    color: #fff;
    transition: 0.5s;
    font-size: 16px;
    font-weight: 400;
    
    text-align: center;
    min-width: 50%;
}

#start a:hover {
    background: #F7960E;
}

#start .btn-continue {
    
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
}

#start .btn-continue:hover {
    color: #00ACD0;
    border: 2px solid #00ACD0;
    background: #fff;
}

/*--------------------------------------------------------------
# Upload
--------------------------------------------------------------*/
#upload {
    padding: 40px;
}

#upload li {
    margin-top: 10px;
    margin-right: 15px;
}

#upload .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
}

#upload .row {
    margin: 5px;
}

#upload p {
    margin-bottom: 5px;
    
    padding: 5px;
}

#upload [type="submit"], button {
    background: #00ACD0;
    border: 0;
    border-radius: 10px;
    padding: 8px 30px;
    color: #fff;
    max-width: 50%;
    margin-top: 15px;
}

#upload [type="checkbox"] {
    min-width: 20px;
}

/*--------------------------------------------------------------
# Payment
--------------------------------------------------------------*/
#payment .box {
    padding: 40px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
}

/*--------------------------------------------------------------
# Post-payment
--------------------------------------------------------------*/
#postpay .box {
    padding: 40px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
}

#postpay p {
    font-size: 16px;
    text-align: center;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: white;
    height: 90px;
    padding: 10px 0 60px 0px;
    height: 32px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
    
}

#header #logo {
    float: left;
}

#header #logo h1 {
    font-size: 36px;
    margin: -4px 0 0 0;
    padding: 0;
    line-height: 1;
    display: inline-block;
    
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
    color: #fff;
}

#header #logo img {
    padding-left: 20px;

    max-height: 80px;
}

@media (max-width: 768px), (max-device-width: 768px) {
    #header #logo h1 {
        font-size: 28px;
        margin-top: 0;
    }
    #header #logo img {
        margin: 0;
        max-height: 40px;
    }
}

#header.header-white {
    background: white;
    padding-bottom: 75px;
}

#header.header-fixed {
    background: #fff;
    padding: 10px 0;
    transition: all 0.5s;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
    width: 100%;
    height: 50vh;
    background: linear-gradient(#fff 40%, #00ACD0);
    background-size: cover;
    position: relative;
}

#intro .intro-text {
    position: absolute;
    left: 0;
    top: 15vh;
    right: 0;
    height: calc(50% - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

#intro h2 {
    margin: 30px 0 10px 0;
    padding: 0 15px;
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
}

#intro img {
    margin-top: 30px;
    max-height: 200px;
    max-width: 100%;
}

@media (max-width: 768px), (max-device-width: 768px) {
    #intro {
        height: 25vh;
    }

    #intro .intro-text {
        position: absolute;
        left: 0;
        top: 1vh;
        height: auto;
        right: 0;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

}

#intro p {
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0 15px;
    font-size: 24px;
}

@media (max-width: 1080px) {
    #intro p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
        margin-top: 10px;
    }
}

#intro .btn-get-started {
    
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;

    color: #fff;
    border: 2px solid #F7960E;

    background: #F7960E;
}

#intro .btn-get-started:hover {
    border: 2px solid #00ACD0;
    background: #00ACD0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu > li {
    float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}


/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

.nav-menu .a 

/* Nav Meu Container */
#nav-menu-container {
    margin: 0px;
}

#nav-menu-container .a {
    font-size: 1.1rem;
}


@media (max-width: 768px), (max-device-width: 768px) {
    #nav-menu-container {
        display: none;
    }
}

.nav-menu-btn-login a {
    
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #F7960E;
    color: #F7960E;
}

.nav-menu-btn-login:hover {
    color: #00ACD0;
    border: 2px solid #00ACD0;
    background: #fff;
}

/* Nav Meu Styling */
.nav-menu a {
    text-decoration: none;
    display: inline-block;
    
    font-weight: 400;
    font-size: 1.1rem;
    outline: none;
}

@media (max-width: 1000px) {
    .nav-menu a {
        padding: 0 2px 2px 2px;
        text-decoration: none;
        
        font-weight: 400;
        font-size: 16px;
        outline: none;
    }
}

.nav-menu > li {
    margin-left: 25px;
}

.nav-menu > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .menu-active > a:before {
    visibility: visible;
    transform: scaleX(1);
}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
}

.nav-menu ul li {
    transition: 0.3s;
}

.nav-menu ul li a {
    padding: 10px;
    color: #333;
    transition: 0.3s;
    display: block;
    font-size: 13px;
    text-transform: none;
}

.nav-menu ul li:hover > a {
    color: #00ACD0;
}

.nav-menu ul ul {
    margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 20px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #00ACD0;
}

@media (max-width: 768px), (max-device-width: 768px) {
    #mobile-nav-toggle {
        display: inline;
    }
}

/* Mobile Nav Styling */
#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 16px;
    bottom: 0;
    z-index: 998;
    background: rgba(52, 59, 64, 0.9);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
    color: #fff;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #00ACD0;
}

#mobile-nav ul .menu-item-active {
    color: #00ACD0;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(52, 59, 64, 0.9);
    display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header .section-title {
    font-size: 32px;
    color: #111;
    text-align: center;
    align-content: center;
    font-weight: 400;
}

.section-header .section-description {
    text-align: center;
    padding-bottom: 20px;
    color: #777;
    font-style: italic;
}

.section-header .section-divider {
    display: block;
    width: 60px;
    height: 3px;
    background: #00ACD0;
    margin: 0 auto;
    margin-bottom: 10px;
}

/* Section with background
--------------------------------*/
.section-bg {
    background: #eff5f5;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    min-height: 40px;
    margin-top: 92px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px), (max-device-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/* Product pgxs Section
--------------------------------*/
#pgx {
    background: #fff;
    padding: 72px 0;
    overflow: hidden;
}

#pgx h4 {
    margin: 0;
    font-size: 20px;
    display: inline;
}

#pgx p {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
}

#pgx .pgx-img {
    text-align: center;
    padding-top: 20px;
}



#pgx .pgx-img img {
    max-width: 100%;
    margin: 20px 60px 0px 0px;
}

#pgx .box {
    margin-bottom: 15px;
    text-align: center;
}


#pgx .icon i:before {
    background: #00ACD0;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#pgx .title {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 22px;
}

#pgx .title a {
    color: #111;
}


#pgx .card h4 {
    font-size: 36px;
    color: #00ACD0;
    font-weight: 300;
    display: inline;
    white-space: nowrap;
}

#pgx .card h4 sup {
    font-size: 20px;
    top: -20px;
    color: #f7960e;
    display: inline;
}

#pgx .card h4 span {
    color: #f7960e;
    font-size: 20px;
    display: inline;
}

#pgx .card {
    flex: 1;
    font-size: 16px;
    line-height: 24px;
    margin-left: 50px;
    margin-right: 50px;
    padding: 10px;
    text-align: left;
    background-clip: border-box;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
}

#pgx .card p {
    flex: 1;
    font-size: 20px;
    line-height: 22px;
    display: inline;
}

#pgx .card i {
    color: #666666;
    font-size: 36px;
    transition: 0.5s;
    float: left;
    padding: 0 15px 0px 0;
    line-height: 1;
}

#pgx .card i:before {
    background: #00ACD0;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#pgx .card-body {
    padding: 0.5rem;
}

#pgx .section-description {
    padding-bottom: 10px;
}

@media (max-width: 769px) {
    #pgx .pgx-img {
        display: none;
    }
    #pgx .description {
        min-height: auto;
    }
    #pgx .description p {
        font-size: 15px;
        line-height: 24px;
        display: inline;
    }
}

/* About Us Section
--------------------------------*/
#about {
    padding: 64px 0px;
    overflow: hidden;
}

#about .about-img {
    height: auto;
    overflow: hidden;
}

#about .about-img img {
    margin-left: -15px;
    max-width: 100%;
    max-height: 600px;
}

@media (max-width: 768px), (max-device-width: 768px) {
    #about .about-img {
        height: auto;
    }

    #about .about-img img {
        margin-left: 0;
        padding-bottom: 50px;
    }
}

#about .content .h2 {
    color: #333;
    font-weight: 300;
    font-size: 24px;
}

#about .content h3 {
    color: #777;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    font-style: italic;
}

#about .content p {
    line-height: 26px;
}

#about .content p:last-child {
    margin-bottom: 0;
}

#about .content i {
    font-size: 20px;
    padding-right: 4px;
    color: #00ACD0;
}

#about .content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

#about .content ul li {
    padding-bottom: 10px;
}

#about .btn-interested {
    text-align: center;
    
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #00ACD0;
    border: 2px solid #00ACD0;

    background: #fff;
    max-width: 50%;
}

#about .btn-interested:hover {
    border: 2px solid #F7960E;
    color: #F7960E;
}

@media (max-width: 769px) {
    #about .btn-interested {
        margin: 2px;
        max-width: 100%;
    }
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
    overflow: hidden;
    background: linear-gradient(90deg, #00ACD0, #F7960E);
    background-size: cover;
    padding: 30px 0;
}

#call-to-action .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

#call-to-action .cta-text {
    color: #fff;
}

@media (min-width: 769px) {
    #call-to-action .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}


/* Clients Section
--------------------------------*/
#clients {
    padding: 30px 0;
    background: #fff;
    overflow: hidden;
}

#clients img {
    max-width: 100%;
    opacity: 0.5;
    transition: 0.3s;
    padding: 15px 0;
}

#clients img:hover {
    opacity: 1;
}

/* Pricing Section
--------------------------------*/
#pricing {
    padding: 60px 0;
    overflow: hidden;
}

#pricing s, strike {
    text-decoration: none;
    position: relative;
}

#pricing s::before, strike::before {
    top: 50%; /*tweak this to adjust the vertical position if it's off a bit due to your font family */
    background: red; /*this is the color of the line*/
    opacity: .9;
    content: '';
    width: 110%;
    position: absolute;
    height: .1em;
    border-radius: .1em;
    left: -5%;
    white-space: nowrap;
    display: block;
    transform: rotate(-20deg);
}


#pricing .flex-even {
    flex: 1;
    padding: 25px 20px;
    margin: 15px 20px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
    text-align: center;
}
@media screen and (max-width: 768px), screen and (max-device-width: 768px) { .justify-content-center { flex-wrap: wrap; }}

#pricing h4 {
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 28px;
}

#pricing h5 {
    font-size: 2rem;
    color: #00ACD0;
    font-weight: 300;
}

#pricing h5 sup {
    font-size: 1rem;
    top: -10px;
}

#pricing h5 span {
    color: #bababa;
    font-size: 20px;
}

#pricing ul {
    padding: 0;
    list-style: none;
    color: #495057;
    text-align: left;
    line-height: 20px;
    min-height: 120px;
}

#pricing ul li {
    padding-bottom: 12px;
}

#pricing ul i {
    color: #00ACD0;
    font-size: 18px;
    padding-right: 4px;
}

#pricing .buy-now-btn {
    text-align: center !important;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #00ACD0;
    max-width: 75%;
    text-decoration: none;
    line-height: 1.5em;
    vertical-align: middle;
}

/* Additional styles for btn-modern classes referenced in HTML */
.btn-modern {
    text-align: center !important;
    display: inline-block;
    text-decoration: none;
}

.btn-modern-primary {
    background: #00ACD0;
    color: #fff;
    border: none;
}

#pricing .buy-now-btn:hover {
    border: 2px solid #F7960E;
    color: #F7960E;
}

#pricing .featured {
    border: 2px solid #00ACD0;
    box-shadow: #F7960E;
}

#pricing .card-body {
    min-width: 180px; /* Adjust as needed */
}

#pricing .card-title {
    height: 60px; /* Adjust as needed */
}

#pricing .card h5 {
    height: 40px; /* Adjust as needed */
}

#pricing .fa-ul {
    height: 150px; /* Adjust based on the maximum expected content */
}

#pricing .card p {
    margin: 10px 0; /* Adjust as needed */
}

/* Examples Section
--------------------------------*/
#examples {
    padding: 60px 0;
    overflow: hidden;
}

#examples h5 {
    text-align: center;
    transition: all ease-in-out 0.3s;
    margin-top: 20px;
    padding: 0;
    position: relative;
}

#examples h5 a {
    display: block;
}

/* Frequently Asked Questions Section
--------------------------------*/
#faq {
    padding: 80px 0;
    overflow: hidden;
}

#faq #faq-list {
    padding: 0;
    list-style: none;
}

#faq #faq-list li {
    border-bottom: 1px solid #ddd;
}

#faq #faq-list a {
    padding: 18px 0;
    display: block;
    position: relative;
    font-size: 22px;
    line-height: 1;
    font-weight: 300;
    padding-right: 20px;
    cursor: pointer;
}

#faq #faq-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 16px;
}

#faq #faq-list p {
    margin-bottom: 20px;
}

#faq #faq-list p a {
    color: #00ACD0;
    display: inline;
    padding: 0;
    font-size: inherit;
}

@media (max-width: 768px), (max-device-width: 768px) {
    #faq #faq-list a {
        font-size: 18px;
    }

    #faq #faq-list i {
        top: 13px;
    }
}

#faq #faq-list a.collapse {
    padding-bottom: 5px;
    color: #000;
}

#faq #faq-list a.collapsed {
    color: #000;
    padding-bottom: 8px;
    font-weight: bolder;
}

#faq #faq-list a.collapsed i::before {
    content: "\f2c7" !important;
}

/* Removed the display: inline; rule */
/* #faq #faq-list .collapse {
    display: inline;
} */

/* Contact Section
--------------------------------*/
#contact {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 60px 0;
    overflow: hidden;
}

#contact .contact-about h3 {
    font-size: 36px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00ACD0;
}

#contact .contact-about h3 img {
    max-height: 100px;
}

#contact .contact-about p {
    font-size: 14px;
    line-height: 24px;
    
    color: #888;
}

#contact .social-links {
    padding-bottom: 20px;
}

#contact .social-links a {
    font-size: 24px;
    display: inline-block;
    background: #fff;
    color: #00ACD0;
    line-height: 1;
    padding: 5px 0;
    margin-right: 4px;
    border-radius: 90%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    border: 1px solid #00ACD0;
}

#contact .social-links a:hover {
    background: #00ACD0;
    color: #fff;
}

#contact .info {
    color: #333333;
}

#contact .info i {
    font-size: 32px;
    color: #00ACD0;
    float: left;
    line-height: 1;
}

#contact .info p {
    padding: 0 0 10px 42px;
    line-height: 28px;
    font-size: 14px;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    bottom: 0;
    position: absolute;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    color: #333;
    font-size: 14px;
}

#footer .credits {
    font-size: 13px;
    color: #888;
}

#footer .footer-links a {
    color: #666;
    padding-left: 15px;
}

#footer .footer-links a:first-child {
    padding-left: 0;
}

#footer .footer-links a:hover {
    color: #00ACD0;
}

/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #212327;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}


caption {
    text-align: left;
    caption-side: top;
}

/* Modern updates */
.btn-get-started {
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.section-bg {
    background-color: #f8f9fa;
}

.card {
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.animated {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* Update icon colors to match theme */
.text-primary {
    color: var(--primary) !important;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
