/* color palette */
:root {
    --green: #0DE0C5;
    --green-2: #08D2C8;
    --green-transparent: #0de0c48b;
    --dark-green: #10bba4;
    --light-green: #83E8E3;
    --light-green-2: #CDF6F4;
    --dark-blue: #2B4B7A;
    --blue: #0E15DC;
    --blue-transparent: #0e15dc72;
    --light-blue: #1B7FF5;
    --dark-grey: #393838;
    --grey: #D9D7D7;
    --light-grey: #EFEFEF;
    --light-grey-2: #E4E4E4;
    --appear-speed: 100px;
    --circled-badge-header-radius: 120px;
    --circled-badge-header-font-size: 15px;
    --employee-card-padding: 10px;
    --employee-card-margin: -10px;
    --flip-card-back: #B3D8EF;
}

/* GLOBAL SETTINGS */
body
{
   font-family: "LatoWeb";
}
body .bold {
    font-family: "LatoWebBold";
}
.green {
    color: var(--green);
}
.blue {
    color: var(--blue);
}
.white {
    color: white;
}

a.pricing {
    font-family: "LatoWeb";
    font-size: 1.1rem !important;
    color: white !important;
}

@media only screen and (min-width: 720px) {
}
@media only screen and (min-width: 1300px) {
    .container {
        max-width: 85vw !important;
    }
}
h1 {
    font-family: "LatoWebBold";
    font-size: 2.6rem !important;
    line-height: 2.85rem;
}
h2 {
    font-family: "LatoWebBold";
    font-size: 2.2rem !important;
    line-height: 2.45rem !important;
}
p {
    font-family: "LatoWebBold";
    font-size: 1.5rem;
    line-height: 2rem;
}
@media only screen and (min-width: 720px) {
    h1 {
        font-size: 3.6rem !important;
        line-height: 3.85rem;
    }
    h2 {
        font-size: 3rem !important;
        line-height: 3.45rem !important;
    }
    p {
        font-size: 1.5rem !important;
        line-height: 2rem;
    }
}
@media only screen and (min-width: 1300px) {
    h1 {
        font-size: 4.0rem !important;
        line-height: 4.35rem;
    }
    h2 {
        font-size: 3.2rem !important;
        line-height: 3.85rem !important;
    }
    p {
        font-size: 1.5rem !important;
        line-height: 2rem;
    }
}

p.thin {
    font-family: "LatoWeb";
}

/* CONSENT MODAL */
#consentModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#consentModal .modal-content {
    background: var(--dark-green);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#consentModal p {
    color: var(--blue);
    margin-bottom: 20px;
}

#consentModal .btn {
    margin: 5px;
    width: 100px;
}

.btn-accept {
    background-color: var(--green);
    border-color: var(--green);
    color: white;
}

.btn-accept:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

.btn-decline {
    background-color: var(--grey);
    border-color: var(--grey);
    color: white;
}

.btn-decline:hover {
    background-color: var(--dark-grey);
    border-color: var(--dark-grey);
}

/* NAVBAR */

.navbar {
    padding: 0;
}

.nav-logo {
    width: 120px;
}
@media only screen and (min-width: 480px) {
    .nav-logo {
        width: 130px;
    }
}
@media only screen and (min-width: 576px) {
    .nav-logo {
        width: 130px;
    }
}
header .navbar-nav li a {
    font-family: "LatoWeb" !important;
    padding-top: 30px;
    padding-left: 40px !important;
    padding-right: 0px !important;
}
header .navbar-nav li button {
    font-family: "LatoWeb" !important;
    padding-top: 30px;
    padding-left: 40px !important;
    padding-right: 0px !important;
    background: "";
}

header .dropdown-menu {
    width: 30px !important;
    text-align: right !important;
    margin-left: auto;
}
header .dropdown-item {
    padding-top: 0px !important;
    width: 30px;
    text-align: right !important;
    margin-right: 0px;
}

header li.active a.nav-link {
    font-family: "LatoWebBold" !important;
}

header li.nav-item {
    text-align: right;
}

/* PAGES HEADERS */

header#background-image-1 {
    min-height: 70vh;
}

header .content {
    padding-bottom: 5vh;
    padding-top: 10vh;
}
@media only screen and (max-width: 992px) {
    header .content {
        padding-top: 5vh;
    }
}

header p.subtitle {
    font-family: "LatoWeb";
    color: var(--green);
    font-size: 16px;
    padding-top: 5vh;
}

@media only screen and (min-width: 720px) {
    header p.subtitle {
        font-size: 22px;
    }
}

.underline-banner {
    border-bottom: 3px solid var(--green);
    padding-bottom: 0px;
}

.emph-banner {
    font-family: "Caveat-Bold";
    font-size: 3.5rem !important;
    line-height: 2.85rem;
}
@media only screen and (min-width: 720px) {
    .emph-banner {
        font-size: 4.5rem !important;
        line-height: 3.85rem;
    }
}
@media only screen and (min-width: 1300px) {
    .emph-banner {
        font-size: 5.0rem !important;
        line-height: 4.35rem;
    }
}


/* NAVBAR ONLY */

section.nav-only {
    padding: 0 0 5vh 0;
}

section.nav-only .navbar-nav li a {
    font-family: "LatoWebBold";
    padding-left: 40px !important;
    padding-right: 0px !important;
}

section.nav-only li.nav-item {
    text-align: right;
}

header#about-us-header .navbar-nav li a {
    font-family: "LatoWeb";
    color: var(--blue);
    padding-left: 40px !important;
    padding-right: 0px !important;
}
header#about-us-header {
    background-color: var(--light-green-2);
    padding: 0 0 5vh 0;
}

header#about-us-header a.nav-link {
    color: var(--light-blue);
}
header#about-us-header li.active a.nav-link {
    font-family: "LatoWebBold";
    color: var(--blue);
}

/* HOMEPAGE SECTIONS */

#key-features-section img {
    height: 120px;
}
@media only screen and (min-width: 576px) {
    #key-features-section img {
        height: 140px;
    }
}

#key-features-section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    background-color: var(--green-2);
}

#key-features-section p {
    padding-top: 5vh;
    color: var(--blue);
    font-weight: 450;
    margin-bottom: 0px !important;
    padding-bottom: 0vh;
}

#references-section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    background-color: var(--light-grey);
}

#references-section h2 {
    color: #404040;
    font-size: 1.7rem !important;
    padding-bottom: 5vh;
}

#references-section img {
    width: 15vw;
}
@media only screen and(min-width: 992px) {
    #references-section img {
        width: 20vw;
    }
}

.rounded-circle {
    margin-top: 5vh;
    border-radius:50%;
    width:95px;
    height:95px;
    background-color: white;
}
@media only screen and (min-width: 992px) {
    .rounded-circle {
        border-radius:50%;
        width:150px;
        height:150px;
        background-color: white;
    }
}

.problems-section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    background-color: var(--light-green-2);
}
.problems-section.first {
    padding-top: 10vh;
    padding-bottom: 0vh;
    background-color: var(--light-green-2);
}

.problems-section h1 {
    font-family: "Caveat-Bold";
    font-size: 4rem !important;
    line-height: 4rem !important;
    padding-bottom: 5vh;
}
@media only screen and (min-width: 720px) {
    .problems-section h1 {
        font-size: 4.8rem !important;
        line-height: 4.8rem !important;
    }
}
@media only screen and (min-width: 1300px) {
    .problems-section h1 {
        font-size: 4.8rem !important;
        line-height: 4.8rem !important;
    }
}

#more-than-software-section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    background-color: var(--green-2);
}

#more-than-software-section h2 {
    padding-bottom: 2vh;
    font-size: 2.2rem !important;
    line-height: 2.45rem !important;
}
@media only screen and (min-width: 720px) {
    #more-than-software-section h2 {
        font-size: 3rem !important;
        line-height: 3.45rem !important;
    }
}
@media only screen and (min-width: 1300px) {
    #more-than-software-section h2 {
        font-size: 3.2rem !important;
        line-height: 3.85rem !important;
    }
}

#stages-section {
    padding-top: 10vh;
    padding-bottom: 0px;
    background-color: var(--light-grey-2);
}

#stages-section h2 {
    font-family: "Caveat-Bold";
    font-size: 4rem !important;
    line-height: 4rem !important;
    padding-bottom: 5vh;
}
@media only screen and (min-width: 720px) {
    #stages-section h2 {
        font-size: 4.8rem !important;
        line-height: 4.8rem !important;
    }
}
@media only screen and (min-width: 1300px) {
    #stages-section h2 {
        font-size: 4.8rem !important;
        line-height: 4.8rem !important;
    }
}

#stages-section .header .nav.nav-tabs {
    justify-content: space-evenly;
    border-bottom: 0px;
}

#stages-section .header .nav-tabs .nav-link {
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
    padding-top: 4vh;
    margin-bottom: 4vh;
    color: var(--blue) !important;
    border-width: 0px;
}
#stages-section .header a.nav-link p {
    margin: 0;
}


#stages-section .header li.stages {
    width: 15vw;
    text-align: center;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
@media only screen and (min-width: 575px) {
    #stages-section .header li.stages {
        width: 23vw;
        text-align: center;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}
@media only screen and (min-width: 740px) {
    #stages-section .header li.stages {
        width: 15vw;
        text-align: center;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}
@media only screen and (min-width: 1020px) {
    #stages-section .header li.stages {
        width: 20vw;
        text-align: center;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}
#stages-section .header a.nav-link.active {
    background-color: var(--grey);
    height: 100%;
    border-width: 0px;
}
#stages-section .header a.nav-link:hover {
    color: var(--blue);
    background-color: var(--grey);
    height: 100%;
    border-width: 0px;
}

#stages-section .stage-sections-content h2 {
    font-size: 3.1rem !important;
    line-height: 3.1rem !important;
}

#stages-section .stage-sections-content {
    background-color: var(--grey);
    padding-top: 10vh;
    padding-bottom: 10vh;
}

#stages-section .stage-sections-content ul.no_bullet p {
    font-family: "LatoWeb" !important;
}

#stages-section .tab-content {
    background-color: var(--grey);
}

#action-call {
    background-color: var(--blue);
    padding-top: 10vh;
    padding-bottom: 10vh;
}

#action-call h2 {
    padding-bottom: 5vh;
    font-size: 2.3rem !important;
}

#action-call .action-call-item {
    padding-bottom: 5vh;
}

#action-call .steps {
    border-radius: 100%;
    background-color: transparent;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    border: 2px solid #fff;
    font-size: 35px;
    margin-bottom: 2rem;
}

#img-front img {
    width: 300px;
}

#img-back {
    display: none;
}

#img-back img {
    width: 300px;
}

#img-front:hover {
    display: none;
}
#img-front:hover~#img-back#actual-img {
    width: 330px;
}

#img-front:hover~#img-back {
    display: block;
}

/* CONSULTING PAGE */

#key-features-section p.section-description {
    padding-top: 1vh;
    color: var(--blue);
    font-weight: 450;
    padding-bottom: 10vh;;
}

#stages-section img {
    height: 100px;
}
@media only screen and (min-width: 576px) {
    #stages-section img {
        height: 120px;
    }
}

#BOaaS {
    background-color: var(--light-green-2);
    padding-top: 10vh;
    padding-bottom: 10vh;
}

#training {
    background-color: var(white);
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.flipcard-board .card {
    overflow: hidden;
    background-color: var(--light-green);
    border-width: 0px;
    border-radius: 0;
    width: 100%;
    margin-bottom: 5vh;
}

@media only screen and (max-width: 576px) {
    .flipcard-board .card .card-body {
        padding: 0rem;
    }
    .flipcard-board .card {
        margin-bottom: 2vh;
    }
    .flipcard-board .card .card-back p {
        line-height: 1rem;
    }
}

@media only screen and (min-width: 576px) {
    .flipcard-board .card {
        aspect-ratio: 1;
    }
}

.flipcard-board .vertical-center {
    margin-top: auto;
    margin-bottom: auto;
}

.flipcard-board .vertical-center-back {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.flipcard-board .card p {
    font-family: "LatoWeb" !important;
    color: var(--blue);
    font-size: 1.3rem !important;
}


.flipcard-board .card img {
    width: 50%;
}

.flipcard-board .card h5 {
    color: var(--blue);
    font-size: 1.5rem !important;
}

.flipcard-board .card .card-back {
    position: absolute;
    top: auto;
    bottom: 0;
    opacity: 1.;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--flip-card-back);
    padding: 15px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transition: opacity 0.1s 0.3s, -webkit-transform 0.4s;
    transition: opacity 0.1s 0.3s, -webkit-transform 0.4s;
    transition: transform 0.4s, opacity 0.1s 0.3s;
    transition: transform 0.4s, opacity 0.1s 0.3s, -webkit-transform 0.4s;
}

.slide-left:hover .card-back {
    opacity: 1.;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transition: opacity 0.1s, -webkit-transform 0.4s;
    transition: opacity 0.1s, -webkit-transform 0.4s;
    transition: transform 0.4s, opacity 0.1s;
    transition: transform 0.4s, opacity 0.1s, -webkit-transform 0.4s;
  }

#BOaaS img {
    width: 25%;
}

/*
#BOaaS-section {
    padding-top: 10vh;
    background-color: white;
}

#BOaaS-section h2 {
    color: var(--blue);
}

#BOaaS-section p {
    padding-top: 2vh;
    color: var(--blue);
    margin-bottom: 0px !important;
}
#BOaaS-section p.description {
    padding-top: 2vh;
    padding-bottom: 5vh;
    color: var(--blue);
    margin-bottom: 0px !important;
}
#BOaaS-section .BOaaS-section-content p {
    padding-top: 2vh;
    color: white;
    margin-bottom: 0px !important;
}

#BOaaS-section .header .nav.nav-tabs {
    justify-content: space-evenly;
    border-bottom: 0px;
}

#BOaaS-section .header .nav-tabs .nav-link {
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
    height: 100%;
    padding-top: 2vh;
    margin-bottom: 2vh;
    color: var(--blue);
    border-width: 0px;
}
#BOaaS-section .header a.nav-link p {
    margin: 0;
}


#BOaaS-section .header li.stages {
    width: 25vw;
    text-align: center;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
@media only screen and (min-width: 575px) {
    #BOaaS-section .header li.stages {
        width: 25vw;
        text-align: center;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}
@media only screen and (min-width: 740px) {
    #BOaaS-section .header li.stages {
        width: 25vw;
        text-align: center;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}
@media only screen and (min-width: 1020px) {
    #BOaaS-section .header li.stages {
        width: 25vw;
        text-align: center;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}
*/

#consulting-pricing-header {
    padding-top: 10vh;
    padding-left: 2vh;
    padding-right: 2vh;
    background-color: var(--grey);
}

#consulting-pricing {
    background-color: var(--grey);
    padding-top: 5vh;
    padding-bottom: 10vh;
}

#consulting-pricing h2 {
    padding-bottom: 1vh;
    font-size: 2.3rem !important;
}

.pricing-table {
    color: var(--blue) !important;
}
.pricing-table img {
    width: 20px;
}
.pricing-table img.x {
    width: 12px;
}
.pricing-table img.ok {
    width: 15px;
}

.pricing-table .price-content {
    text-align: center;
}

.pricing-table .price-header {
    text-align: center;
}

.pricing-table td {
    border-top: 1px solid var(--blue) !important;
    border-bottom: 1px solid var(--blue) !important;
}
.pricing-table th {
    border-top: 0px solid var(--blue);
    border-bottom: 0px solid var(--blue) !important;
}
.pricing-table td.price-pricing {
    border-top: 0px solid var(--blue);
    border-bottom: 0px solid var(--blue) !important;
}
.pricing-table .price-pricing p {
    text-align: center;
    font-size: 1.2rem !important;
    padding-top: 2vh;
    margin-bottom: 0;
}
.pricing-table .price-pricing p.info {
    font-family: "LatoWeb" !important;
    text-align: center;
    font-size: 1.2rem !important;
    padding-top: 0vh;
}

/* About us page */
#contact-form {
    padding-top: 10vh;
    padding-bottom: 10vh;
    background-color: var(--light-green-2);
}

.employee-card {
    padding-bottom: 5vh;
}

/* TO SORT */

#product-features-section {
    background-color: var(--light-green-2);
    padding-top: 10vh;
    padding-bottom: 10vh;
}

#product-features-section img {
    width: 100px;
}

#product-features-section .feature-item {
    font-family: "LatoWeb";
    font-size: 0.8rem;
    margin-bottom: 0px;
}

#product-features-section div.img-center {
    display: flex;
    justify-content: center;
}

#product-features-section p {
    color: var(--blue);
}

#product-features-section p.feature-title {
    text-align: center;
}

.collapse.in { min-height: 50px;border: 1px solid blue; }

#product-install {
    background-color: var(--light-green-2);
    padding-top: 8vh;
    padding-bottom: 8vh;
}
#product-install h2 {
    padding-bottom: 5vh;
    font-size: 2.2rem !important;
    line-height: 2.45rem !important;
}
@media only screen and (min-width: 720px) {
    #product-install h2 {
        font-size: 3rem !important;
        line-height: 3.45rem !important;
    }
}
@media only screen and (min-width: 1300px) {
    #product-install h2 {
        font-size: 3rem !important;
        line-height: 3.65rem !important;
    }
}

#product-install img {
    width: 200px;
}

@media only screen and (min-width: 576px) {
    #product-install img {
        width: 250px;
    }
}

#product-install p {
    font-family: "LatoWebBold";
    padding-top: 4vh;
}

#team-section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    background-color: var(--light-green-2);
}
#team-section h2 {
    color: var(--blue);
    padding-bottom: 5vh;
}

#team-section .card {
    background-color: var(--ligh-green);
    border: 0px;
    min-width: 250px;
}
#team-section h5 {
    font-family: "LatoWebBold" !important;
    font-size: 1.5rem !important;
    color: var(--blue);
    margin-bottom: 0.3rem !important;
}
#team-section p.title {
    font-family: "LatoWeb" !important;
    font-size: 1.2rem !important;
    color: var(--blue);
}

hr {
    margin-top: 0rem;
    margin-bottom: 1rem;
    border: 0;
    width: 100%;
    border-top: 1px solid var(--blue);
}

/* PRIVACY POLICY */
.privacy-policy p {
    font-family: "LatoWeb";
    font-size: 1rem;
}

/* buttons */
.btn {
    background-color: var(--blue);
    border-color: var(--blue);
}
.btn:hover {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
}

.btn.green {
    background-color: var(--green);
    border-width: 0px;
    color: var(--blue);
}
.btn.green:hover {
    background-color: var(--dark-green);
    color: var(--blue);
}

.btn-circle.btn-xl {
    font-family: "LatoWebBold";
    width: var(--circled-badge-header-radius);
    height: var(--circled-badge-header-radius);
    padding: 13px 18px;
    border-radius: 60px;
    font-size: 15px;
    text-align: center;
}

footer {
    color: var(--dark-blue);
    background-color: var(--light-grey);
}

footer p {
    font-family: "LatoWeb";
    font-size: 15px !important;
    margin: 0px;
    line-height: 1.5em;
}
footer h5 {
    font-family: "LatoWebBold";
    font-size: 15px !important;
    margin: 0px;
    padding: 0;
    line-height: 1.5em;
}

footer .contact-footer {
    margin-bottom: 5vh;
}

footer .likin {
    border: 2px solid var(--blue);
    padding: 10px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    display: inline-flex;
    margin: 5px;
}

footer .likin .social-media-icons {
    width: 23px;
    height: auto;
    filter: invert(1);
    fill: var(--blue) !important;
    color: var(--blue);
}


/* images */

.square-img {
    aspect-ratio: 1; 
    object-fit: cover;
}

.square-img-card {
    aspect-ratio: 2; 
    object-fit: cover;
}

.tile-ratio {
    aspect-ratio: 1; 
    object-fit: cover;
}

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

.rounded-img-top {
    border-radius: 25px 25px 0px 0px !important;
}



/* background colors */

.bg-rent-blue {
    background-color: var(--blue);
}

.bg-rent-green {
    background-color: var(--green);
}

/* text colors */

.text-rent-blue {
    color: var(--blue);
}

.text-rent-green {
    color: var(--green);
}

/* UTILS */
.badge-secondary {
    background-color: var(--green) !important;
    color: white;
}
.badge-secondary.grey {
    background-color: var(--dark-grey) !important;
    color: white;
}