@charset "utf-8";
/* ==========================================================================
   FONT FACE DECLARATIONS
   ========================================================================== */
@font-face {
    font-family: "Roboto";
    src: url("../fonts/google-fonts/roboto/Roboto-VariableFont_wdth,wght.ttf")
        format("truetype");
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Quatro";
    src: url("../fonts/quatro/Quatro-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Quatro";
    src: url("../fonts/quatro/Quatro-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Quatro";
    src: url("../fonts/quatro/Quatro_Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Quatro";
    src: url("../fonts/quatro/Quatro_UltraBlack.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}
/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    --primary-color: #5100d1;
    --text-muted: #959595;
    --border-color: #ccc;
    --background-light: rgba(199, 208, 217, 0.25);
    --white: #fff;
    --black: #000;
    --gradient-primary: linear-gradient(
        90deg,
        var(--primary-color) 0%,
        #e0009b 100%
    );
}
/* ==========================================================================
   BASE STYLES
   ========================================================================== */
*,
::after,
::before {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    overflow-x: hidden;
}
body {
    background-color: var(--background-light);
    font-size: 18px;
    font-family: "Roboto";
    color: var(--text-color);
    margin: 0;
    padding: 0;
}
body,
div,
a {
    transition: all 0.2s;
}
button,
a {
    cursor: pointer;
}
button:focus {
    outline: none;
    box-shadow: none;
}
/* ==========================================================================
   HOMEPAGE SPECIFIC STYLES
   ========================================================================== */
body.homepage main {
    margin-top: 7rem;
}
body.homepage.modal-open,
body.homepage.modal-open .navbar {
    padding-right: 0 !important;
}
/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3 {
    font-family: "Quatro";
    font-weight: 900;
    color: var(--black);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1rem;
}
.text-xl,
.text-xxl {
    font-family: "Quatro", Helvetica, Arial, serif;
    font-weight: 500;
    line-height: 1.25;
}
.text-xxl {
    font-weight: 900;
}
.text-md {
    font-size: 1rem;
}
.text-lg {
    font-size: 1.25rem;
}
.text-xl {
    font-size: 1.375rem;
}
.text-xxl {
    font-size: 1.75rem;
}
.primary {
    color: var(--primary-color);
}
.white {
    color: var(--white);
}
.black {
    color: var(--black);
}
.light {
    color: #494949;
}
.extra-light {
    color: var(--text-muted);
}
.text-light-xl {
    color: var(--text-muted);
    font-weight: 400;
}
/* ==========================================================================
   LINKS
   ========================================================================== */
a {
    color: var(--primary-color);
    text-decoration: none;
}
a:hover {
    color: var(--secondary-color);
}
/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn,
.btn-primary,
.btn-secondary {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: max-content;
    overflow: hidden;
    border: none;
    border-radius: 10rem;
    min-height: 2.5rem;
    padding: 0.4rem 1.75rem;
    background: var(--white);
    color: var(--primary-color);
    font-family: "Roboto";
    font-size: 1rem;
    font-weight: 700;
    z-index: 1;
    transition: background-color 0.3s;
    span span {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.btn svg {
    margin-right: 0.5rem;
}
.btn:not(.btn-outline-secondary):hover {
    background-color: var(--primary-color);
    color: var(--white);
}
.btn-primary,
.btn-secondary {
    overflow: hidden;
    padding: 0 2rem;
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
}
.btn-primary:before,
.btn-secondary:before {
    position: absolute;
    display: block;
    content: " ";
    inset: 0;
    background: var(--gradient-primary);
    transition: left 0.3s;
    z-index: -1;
}
.btn-secondary:before {
    background: linear-gradient(-90deg, #270066 0%, var(--primary-color) 100%);
}
.btn-primary:hover,
.btn-secondary:hover {
    background: transparent;
}
.btn-primary:hover:before,
.btn-secondary:hover:before {
    left: -100%;
}
.btn-downgrade {
    background: #f9c1c1;
    color: #f9c1c1;
}
.btn-downgrade:hover {
    background: var(--primary-color);
}
/* ==========================================================================
   FORMS
   ========================================================================== */
.input input {
    height: auto;
    border: 1px solid var(--border-color);
    background-color: #f3f3f3;
    color: var(--text-muted);
    font-family: "Roboto";
    font-size: 1rem;
    border-radius: 0.5rem !important;
    transition: border 0.2s;
    min-height: 2.5rem;
    width: 100%;
    padding: 0 0.5rem;
    outline: none;
    transition: border-color 0.2s;
}
.input input:hover,
.input input:focus {
    border-color: #a46bff;
}
/* ==========================================================================
   CARDS
   ========================================================================== */
.navbar,
.tier-card {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.card-header {
    display: flex;
    justify-content: space-between;
}
.card-header-title {
    margin-right: 1rem;
}
.card-header-price {
    text-align: right;
}
.card-header-price h3,
.selectedproduct h3 .highlight {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: -webkit-linear-gradient(
        0deg,
        var(--primary-color),
        var(--secondary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.selectedproduct h3 .highlight {
    display: inline-block;
    margin-top: 1rem;
    font-size: 2.5rem;
}
.card-header-price p {
    font-size: 1rem;
    line-height: 1rem;
}
.card-header-price .totalYearlyPrice {
    font-family: "Quatro";
    font-size: 1rem;
    line-height: 1rem;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
    font-weight: 700;
    margin-right: 0.5rem;
    text-decoration: line-through;
}
/* ==========================================================================
   SECTIONS
   ========================================================================== */
#section-login {
    position: relative;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
    background: linear-gradient(-90deg, #270066 0%, #e2d6f5 100%);
    z-index: 10;
    overflow: hidden;
}
#section-login::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-image: url(../images/landing/login-square-left.svg);
    background-repeat: no-repeat;
    width: 900px;
    height: 900px;
}
#section-login::after {
    position: absolute;
    content: "";
    top: 100px;
    right: 0px;
    background-image: url(../images/landing/login-square-right.svg);
    background-repeat: no-repeat;
    width: 462px;
    height: 820px;
}
#section-pricing {
    padding-top: 4.5rem;
    padding-bottom: 1.75rem;
    background: #f3f3f3;
}
#section-signup {
    padding-top: 4.6rem;
    padding-bottom: 4.6rem;
    background: #fff;
}
#info-col {
    position: relative;
    z-index: 2;
    margin-top: 4.15rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
#info-col ul {
    margin-top: 5rem;
}
#info-col ul + .btn {
    margin-top: 5.25rem;
}
#info-col ul li:before {
    filter: brightness(0) invert(1);
}
#login-col .tier-card {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    background-color: var(--white);
    padding: 2rem 3.65rem;
    padding: 4.5% 8.25%;
    min-height: 597px;
}
#login-col legend {
    margin-top: 1.25rem;
    font-weight: 700;
}
#login-col .input,
dialog .input {
    margin-top: 1.25rem;
    margin-bottom: 1rem;
}
#login-col a,
#login-col button {
    min-width: 100%;
}
body section #signup-col li {
    margin-bottom: 2rem;
}
#signup-col li strong {
    display: inline-block;
    margin-bottom: 0.25rem;
}
/* ==========================================================================
   MODAL
   ========================================================================== */
dialog {
    position: fixed;
    top: -100000px;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999;
    display: block;
    background-color: transparent;
    opacity: 0;
    transition: opacity 0.5s;
}
dialog.active {
    top: 0;
    opacity: 1;
}
dialog.close {
    opacity: 0;
    transition: opacity 0.3s;
}
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1040;
    background: rgba(0, 0, 0, 0.3);
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    pointer-events: auto;
    border-radius: 30px;
    outline: 0;
    overflow: hidden;
    margin: auto;
    padding: 1.25rem 2rem 2rem;
    top: 50%;
    opacity: 0;
    z-index: 10041;
    transform: translateY(-40%);
    transition: transform 0.7s, opacity 0.7s;
}
.modal-content > div {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
}
.modal-content button,
.modal-content a {
    min-width: 100%;
}
dialog.active .modal-content {
    opacity: 1;
    transform: translateY(-50%);
}
dialog.close .modal-content {
    opacity: 0;
    transform: translateY(-60%);
    transition: transform 0.3s, opacity 0.3s;
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin-top: 3rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    transition: margin-left 0.3s;
}
footer.footer {
    background-color: #f1f3f6;
}
footer.footer p {
    margin: 0px 3px 0px 7px;
}
footer.footer a {
    position: relative;
    display: inline-block;
    margin-left: 1.5rem;
    color: var(--text-muted);
    transition: color 0.2s;
}
footer.footer a.btn-copy-link {
    color: var(--primary-color);
}
footer.footer a.btn-copy-link:hover {
    color: rgb(224, 0, 155);
}
footer.footer a:first-child::before {
    display: none;
}
.footer__right a:hover {
    color: var(--primary-color);
}
.footer .footer__container {
    padding: 2rem 0;
}
/* ==========================================================================
   UTILITIES
   ========================================================================== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * 0);
    margin-right: calc(-0.5 * 1.5rem);
    margin-left: calc(-0.5 * 1.5rem);
}
.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(1.5rem * 0.5);
    padding-left: calc(1.5rem * 0.5);
    margin-top: 0;
}
.container-xl {
    max-width: 1686px;
    padding: 0 3rem;
    margin: 0 auto;
}
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    font-family: "Quatro";
    margin: 1rem 0;
    color: var(--border-color);
}
.separator::before,
.separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}
.separator:not(:empty)::before {
    margin-right: 2rem;
}
.separator:not(:empty)::after {
    margin-left: 2rem;
}
/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
section {
    opacity: 0;
    transition: opacity 1.5s;
}
body.init section {
    opacity: 1;
}
.scroll-target {
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s ease;
    transition-delay: 0s;
    z-index: 1;
}
.scroll-target.scroll-active {
    transition: opacity 0.9s, transform 0.9s ease;
}
.scroll-target.tier-card,
.scroll-target.scroll-target-image {
    transform: translateY(2rem);
}
.scroll-target.scroll-active {
    opacity: 1;
    transform: translateY(0);
}
/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (min-width: 1400px) {
    .text-lg {
        font-size: 1.25rem;
    }
    .text-xl {
        font-size: 1.75rem;
    }
    .text-xxl {
        font-size: 2rem;
    }
}
@media (min-width: 1600px) {
    .text-md {
        font-size: 1.25rem;
    }
    .text-lg {
        font-size: 1.5rem;
    }
    .text-xl {
        font-size: 2rem;
    }
    .text-xxl {
        font-size: 2.5rem;
    }
    body.homepage .row > * {
        padding-left: 0;
        padding-right: 0;
    }
    #register-col {
        padding-left: 4rem;
    }
    .card-list {
        margin-top: 4.25rem;
    }
}
@media (min-width: 992px) {
    body.homepage main {
        margin-top: 6.5rem;
    }
    .mt-5-lg {
        margin-top: 3rem !important;
    }
    .mb-3-lg {
        margin-bottom: 1rem !important;
    }
    .separator {
        margin: 2rem 0;
    }
    main section {
        position: relative;
        animation: fade-in 1.5s;
        overflow: hidden;
    }
    #login-col legend {
        padding-bottom: 0.5rem;
    }
    h1 {
        margin-bottom: 1.25rem;
    }
    body section ul li {
        margin-bottom: 1.6rem;
        line-height: 1.1;
    }
    footer.footer .footer__container {
        display: flex;
        justify-content: space-between;
        width: calc(50% + 148px);
    }
    .scroll-target.scroll-active:nth-child(1) {
        transition-delay: 0.25s;
    }
    .scroll-target.scroll-active:nth-child(2) {
        transition-delay: 0.5s;
    }
    .scroll-target.scroll-active:nth-child(3) {
        transition-delay: 0.75s;
    }
}
@media (max-width: 1400px) {
    section {
        padding: 2.5rem 0 !important;
    }
}
@media (max-width: 991px) {
    #section-pricing {
        padding-bottom: 1.25rem !important;
    }
    .container-xl {
        padding: 0 1rem;
    }
    body.homepage main {
        margin-top: 3.5rem;
    }
    #info-col ul {
        margin-top: 1rem;
    }
    #info-col ul + .btn {
        margin-top: 2rem;
    }
    #info-col {
        margin-top: 0;
        margin-bottom: 3rem;
    }
    .card-header {
        display: block;
        margin-right: 0;
    }
    .row {
        display: block;
    }
    [class*="col-"] {
        width: 100% !important;
    }
    .tier-card {
        min-width: 100%;
        min-height: auto !important;
        padding: 0.25rem 1rem !important;
    }
    .card-list .tier-card {
        padding: 1rem 1.25rem !important;
    }
    .card-list > div:first-child {
        display: block;
    }
    .card-list > div .tier-card:nth-child(2) {
        margin: 2rem 0;
    }
    #section-signup ul li {
        font-size: 1.125rem;
    }
    #section-signup img {
        width: 100%;
        max-width: 600px;
        margin: 2rem auto;
    }
    footer {
        margin: 1rem 0 1rem 0;
        justify-content: center;
    }
    footer.footer p {
        margin: 0;
        text-align: center;
    }
    footer.footer a {
        margin-left: 1.5rem;
    }
}
/* ==========================================================================
   BOOTSTRAP REPLACEMENT CLASSES
   ========================================================================== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * 0);
    margin-right: calc(-0.5 * 1.5rem);
    margin-left: calc(-0.5 * 1.5rem);
}
.col-md-5,
.col-md-7,
.col-md-10,
.col-md-12,
.col-lg-5 {
    position: relative;
    width: 100%;
    padding-right: calc(0.5 * 1.5rem);
    padding-left: calc(0.5 * 1.5rem);
}
@media (min-width: 768px) {
    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}
@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    #info-col {
        flex: 0 0 auto;
        width: 44.333333%;
    }
}
/* Utility Classes */
.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}
.mt-5 {
    margin-top: 3rem !important;
}
.mt-4 {
    margin-top: 1.5rem !important;
}
.mt-3 {
    margin-top: 1rem !important;
}
.mt-2 {
    margin-top: 0.5rem !important;
}
.mt-1 {
    margin-top: 0.25rem !important;
}
.mb-5 {
    margin-bottom: 3rem !important;
}
.mb-4 {
    margin-bottom: 1.5rem !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
.mb-2 {
    margin-bottom: 0.5rem !important;
}
.mb-1 {
    margin-bottom: 0.25rem !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.w-100 {
    width: 100% !important;
}
.d-block {
    display: block !important;
}
.d-inline-flex {
    display: inline-flex !important;
}
.d-flex {
    display: flex !important;
}
.align-items-center {
    align-items: center !important;
}
.text-center {
    text-align: center !important;
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
/* Dropdown Classes */
.dropdown {
    position: relative;
}
.dropdown-toggle {
    white-space: nowrap;
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: var(--text-color);
    text-align: left;
    list-style: none;
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.375rem;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: var(--text-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--primary-color);
    background-color: var(--background-light);
}
/* Alert Classes */
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
}
.alert-warning {
    font-size: 16px;
    background-color: #fff3cd;
    border-color: #f6a71b;
    color: #ff7300;
    padding-left: 2.25rem;
    background-image: url("../images/landing/circle-info.svg");
    background-repeat: no-repeat;
    background-position: left calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
/* Form Classes */
.needs-validation {
    position: relative;
}
.invalid-feedback {
    position: absolute;
    top: -10000px;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
    opacity: 0;
    transition: all 0s;
}
.was-validated input {
    border-color: var(--border-color);
}
.was-validated input:invalid {
    border: 1px solid #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("../images/landing/circle-info-error.svg");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated input:invalid + .invalid-feedback {
    position: relative;
    top: 0;
    opacity: 1;
    transition: opacity 0.6s;
}
/* Image Classes */
.img-fluid {
    max-width: 100%;
    height: auto;
}
/* Responsive Utilities */
@media (max-width: 991px) {
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
    }
    h1,
    h2,
    h3 {
        margin-bottom: 0.5rem;
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
    .mt-5-lg {
        margin-top: 3rem !important;
    }
    .mb-3-lg {
        margin-bottom: 1rem !important;
    }
    .mb-5-lg {
        margin-bottom: 3rem !important;
    }
    .mb-3-lg {
        margin-bottom: 1rem !important;
    }
    .mb-0-lg {
        margin-bottom: 0 !important;
    }
}
/* Navbar Classes */
.navbar {
    display: flex;
    align-items: center;
    background-color: var(--white);
    margin-bottom: 20px;
}
.navbar .container-xl {
    width: 100%;
}
.navbar > .container-xl,
.navbar > .container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}
.navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
}
.navbar-expand-lg .navbar-nav {
    flex-direction: row;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}
.navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
}
.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
    margin-left: -1rem;
}
.navbar-nav {
    display: flex;
    padding-left: 0;
    margin: 0;
    list-style: none;
}
.nav-item {
    display: list-item;
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color);
}
.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    transition: box-shadow 0.15s ease-in-out;
}
.navbar-toggler:hover {
    text-decoration: none;
}
.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}
.navbar-toggler-icon span {
    display: block;
    height: 2px;
    background-color: #000;
    border-radius: 1px;
    transition: all 0.3s ease;
}
.navbar.active .navbar-toggler-icon span {
    height: 3px;
    background-color: var(--primary-color);
}
.navbar.active:not(.close)
    .navbar-toggler
    .navbar-toggler-icon
    span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.navbar.active:not(.close)
    .navbar-toggler
    .navbar-toggler-icon
    span:nth-child(2) {
    opacity: 0;
}
.navbar.active:not(.close)
    .navbar-toggler
    .navbar-toggler-icon
    span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}
.navbar.active:not(.close):after {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -10;
}
.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}
.flex-row-reverse {
    flex-direction: row-reverse !important;
}
.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}
.bi {
    vertical-align: -0.125em;
    fill: currentColor;
}
.environment-bar {
    background-color: #217346;
    height: 40px;
    line-height: 40px;
    flex-grow: 1;
    color: white;
    border-radius: 5px;
    margin: 10px;
}
.environment-bar.environment-local {
    background-color: #217346;
}
.environment-bar.environment-development {
    background-color: #2b579a;
}
.environment-bar.environment-staging {
    background-color: #da720d;
}
.environment-bar.environment-test {
    background-color: #ffdd33;
    color: #290dca;
}
.selected-language {
    font-size: 16px;
    color: var(--black);
    padding-right: 1.25rem;
}
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 3rem;
    list-style: none;
    column-gap: 3rem;
    align-items: center;
    margin: auto 3rem;
}
.menu a:not(.btn-primary) {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}
.menu a:not(.btn-primary):hover {
    color: var(--primary-color);
}
/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.dropdown-language .dropdown-toggle {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
}
.dropdown-language .dropdown-toggle:after {
    position: absolute;
    display: block;
    content: " ";
    top: 50%;
    right: 0.25rem;
    background-image: url("../images/landing/chevron-down.svg");
    transform: translateY(-50%);
    transition: transform 0.3s;
    width: 1rem;
    height: 0.5rem;
    background-repeat: no-repeat;
    border: none;
}
.dropdown-language .dropdown-menu {
    display: block;
    left: auto;
    right: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.dropdown-language {
    margin-right: -0.5rem;
}
.dropdown-language .dropdown-toggle[aria-expanded="true"]:after {
    transform: translateY(-50%) rotate(180deg);
}

#tier-no-access-modal {
    z-index: 1000000001;
    overflow: auto;
    .modal-content {
        max-width: 640px;
        h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #494949;
            margin-bottom: 2rem;
        }
        p {
            font-size: 1rem;
            line-height: 1.5rem;
            color: #000;
        }
        h5 {
            display: block;
            margin-top: 1.5rem;
            font-size: 1rem;
            font-weight: 900;
            color: #000;
        }
        ul {
            margin-bottom: 3rem;
        }
        li {
            position: relative;
            font-size: 1rem;
            margin-top: 1.25rem;
            color: #000;
            list-style-type: none;
            padding-left: 1.5rem;
            &:before {
                position: absolute;
                display: block;
                content: "";
                background-image: url(../images/landing/check.svg);
                background-repeat: no-repeat;
                width: 2rem;
                height: 0.75rem;
                top: 50%;
                left: 0;
                background-size: 1rem;
                transform: translateY(-50%);
                transition: filter 0.3s;
            }
        }
    }
    .modal-content > div {
        max-width: 100%;
    }
    .modal-footer {
        display: flex;
        justify-content: flex-end;
        .btn-primary {
            min-width: 0;
        }
    }
}

@media (min-width: 992px) {
    .navbar {
        min-height: 106px;
    }
    .dropdown-language .dropdown-menu:not(.active) {
        top: -10000px;
    }
    .dropdown-language .dropdown-menu.active {
        top: 115%;
        opacity: 1;
    }
    .dropdown-language .dropdown-menu.active.close {
        opacity: 0;
        transition: opacity 0.3s;
    }
    .dropdown-language .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        animation: fade-slide-up 0.6s;
    }
}
@media (max-width: 991px) {
    .menu {
        background-color: #f5f5f5;
        flex-direction: column;
        row-gap: 1rem;
        margin-right: 0;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
    }
    .menu li,
    .menu li a {
        min-width: 100%;
        text-align: center;
    }
    .navbar > .container-xl {
        flex-wrap: wrap !important;
        align-items: center;
        justify-content: space-between;
    }
    .navbar-brand {
        margin-left: 0;
    }
    .navbar-toggler {
        padding: 0.25rem 0rem;
    }
    #section-login::before {
        width: 50vw;
        height: 50vh;
        background-size: contain;
    }
    #section-login::after {
        top: auto;
        bottom: 0;
        right: -20vw;
        width: 60vw;
        height: 60vh;
    }
    #section-pricing .card-list {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .dropdown-language .dropdown-menu.active:not(.close) {
        top: 100%;
        opacity: 1;
        position: relative;
        top: 5px;
        margin-bottom: 1rem;
    }
    .dropdown-toggle:not(.active) + .dropdown-menu {
        transition: none;
    }
    .dropdown-language .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        position: relative;
        top: 0px;
        margin-top: 0.5rem;
    }
    body .navbar-collapse {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        flex-basis: 100% !important;
        flex-grow: 1;
        align-items: center;
    }
    body .navbar .navbar-collapse {
        position: absolute;
        top: -300%;
        display: flex !important;
        opacity: 0;
        transition: all 0s;
    }
    body .navbar.active:not(.close) .navbar-collapse {
        position: relative;
        top: 0;
        opacity: 1;
        transition: opacity 0.7s;
    }
    .menu a:not(.btn-primary) {
        display: flex;
        background: #fff;
        min-height: 2.5rem;
        border-radius: 3rem;
        justify-content: center;
        align-items: center;
        color: var(--primary-color);
        border: 1px solid var(--border-color);
    }
    .dropdown-language {
        background-color: #f5f5f5;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        margin-right: 0;
    }
    .navbar-nav,
    .navbar-nav .dropdown,
    .navbar .menu,
    .environment-bar {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}
@media (max-width: 600px) {
    #modal-signup .modal-content {
        max-width: calc(100vw - 1.5rem);
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
