@charset "utf-8";

@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_Book.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Quatro";
    src: url("../fonts/quatro/Quatro_Light.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}
@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-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Quatro";
    src: url("../fonts/quatro/Quatro_UltraBlack.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

/* CSS Document */
html,
body {
    overflow-x: hidden;
}

body {
    color: #000;
}

/* Typography*/
h1,
h2,
h3,
h4 {
    font-family: "Quatro";
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1rem;
}

h5 {
    font-weight: 900;
}

h1,
h2 {
    font-size: 2rem;
}

.text-xl,
.text-xxl,
.text-light-xl {
    font-family: "Quatro", Helvetica, Arial, serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #000;
    line-height: 1.25;
}

.text-xxl {
    font-size: 1.75rem;
}

.text-light-xl {
    color: #959595;
    font-weight: 400;
}

body {
    background-color: rgba(199, 208, 217, 0.25);
    min-height: 100vh;
}

body,
div,
a {
    transition: all 0.2s;
}

body,
p {
    font-family: "Roboto";
    color: #484e54;
}

body.homepage.modal-open,
body.homepage.modal-open .navbar {
    padding-right: 0 !important;
}

.modal.show {
    z-index: 100000;
}

.modal-backdrop.fade.show {
    z-index: 10000;
}

body.homepage main {
    margin-top: 7rem;
}

p {
    font-size: 1.1rem;
}

span.highlight {
    color: #5100d1;
}

h1 .highlight,
h2 .highlight,
h3 .highlight {
    color: #000;
}

.text-muted {
    color: #a4b2bf !important;
}

a {
    color: #5100d1;
    text-decoration: none;
}

a:hover {
    color: #e0009b;
}

.container-xxl.registration {
    margin-bottom: 3rem;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: #a4b2bf;
    font-family: "Quatro";
}

.separator::before,
.separator::after {
    content: "";
    flex: 1;
    border-bottom: 2px solid #959595;
}

.separator:not(:empty)::before {
    margin-right: 2rem;
}

.separator:not(:empty)::after {
    margin-left: 2rem;
}

input[type="checkbox"] {
    transform: scale(1.5);
    margin-right: 10px;
    cursor: pointer;
    accent-color: #f24103;
}

.main-content {
    margin-top: 20px;
}

.navbar {
    background-color: #fff;
}

footer {
    position: relative;
    display: flex;
    justify-content: flex-end;
    background: transparent;
    padding-top: 1rem;
    transition: margin-left 0.3s;
}

footer.footer p {
    margin: 0px 3px 0px 7px;
}

footer.footer a {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    font-family: "Roboto";
    margin-left: 1.5rem;
    transition: color 0.2s;
}

.footer__left {
    font-size: 1rem;
    font-family: "Roboto";
    color: #959595;
}

.footer__right a {
    color: #494949;
}

footer.footer a::before {
    position: absolute;
    display: block;
    content: "|";
    top: -1px;
    left: -1rem;
    color: rgb(204, 204, 204);
}

footer.footer a:first-child::before {
    display: none;
}

.footer__right a:hover {
    color: #5100d1;
}

.btn {
    transition: background-color 0.3s;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 10rem;
    min-height: 3.5rem;
    background: transparent;
    font-family: "Roboto";
    font-size: 1.25rem;
    z-index: 1;
}

.btn-primary:before {
    position: absolute;
    display: block;
    content: " ";
    inset: 0;
    background: linear-gradient(90deg, #5100d1 0%, #e0009b 100%);
    transition: left 0.3s;
    z-index: -1;
}

.btn-primary:hover {
    background: transparent;
}

.btn-primary:hover:before {
    left: -100%;
}

.btn-outline-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 10rem;
    font-family: "Roboto";
    font-size: 1.25rem;
    overflow: hidden;
    width: auto;
    color: #5100d1;
    transition: color 0.3s;
    border: none;
}

.btn-outline-secondary > span {
    position: relative;
    display: flex;
    background-color: #f1f3f5;
    padding: 0.5rem;
    margin: 3px 4px;
    padding: 0 2rem;
    min-height: 3.75rem;
    justify-content: center;
    align-items: center;
    z-index: 1;
    width: 100%;
    border-radius: 10rem;
    transition: background-color 0.3s;
}

.card .btn-outline-secondary > span {
    background-color: #fff;
}

.btn-outline-secondary:before {
    position: absolute;
    display: block;
    content: " ";
    inset: 0;
    background: linear-gradient(90deg, #5100d1, #e0009b 100%);
    transition: left 0.3s;
}

.btn-outline-secondary:hover > span {
    background-color: transparent;
}

.btn-outline-secondary > span span,
#initiateSignupModal .btn-outline-secondary > span span {
    background: -webkit-linear-gradient(0deg, #5100d1, #e0009b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-color 0.3s;
}

.btn-outline-secondary:hover > span span,
#initiateSignupModal .btn-outline-secondary:hover > span span {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card,
.card-header,
.card-header:first-child {
    border: 0;
    background: none;
    background-image: none;
    background-color: transparent;
}

.card {
    margin: 1rem;
    padding: 2rem 1.5rem 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position-x: 8rem;
    background-position-y: -8rem;
}

.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, #5100d1, #e0009b);
    -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: #959595;
    -webkit-text-fill-color: #959595;
    font-weight: 700;
    margin-right: 0.5rem;
    text-decoration: line-through;
}

#subscriptionQuantity {
    align-items: center;
}

#subscriptionQuantity * {
    margin: 0;
    white-space: nowrap;
}

#subscriptionQuantity input {
    max-width: 7rem;
    height: 2rem;
}

#subscriptionQuantity p {
    font-family: "Roboto";
    font-size: 1rem;
    color: #959595;
    margin: 1rem 0;
}

#subscriptionQuantity p:last-child {
    margin-left: 0.25rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cart-item-price {
    text-align: right;
    display: flex;
    align-self: flex-end;
}

.cart-item p {
    margin-bottom: 0 !important;
}

.cart-item-price p {
    font-weight: 700;
    font-size: 1.5rem;
    color: #5100d1;
}

.cart-total h5 {
    font-size: 1.7rem;
}

.cart-total .cart-item-price p {
    font-size: 2.2rem;
}

.usp ul li {
    position: relative;
    list-style: none;
    padding-left: 2rem;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.usp ul {
    padding-left: 0;
}

.usp ul li:before {
    position: absolute;
    display: block;
    content: "";
    background-image: url("../images/landing/check.svg");
    background-repeat: no-repeat;
    width: 2rem;
    height: 3rem;
    top: 0.5rem;
    left: 0;
    background-size: 1.5rem;
}

.usp p.lead {
    font-size: 1.85rem;
}

.selected-language {
    color: #000;
    padding-right: 1.25rem;
}

.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 {
    right: -1rem;
    padding: 0;
    overflow: hidden;
}

.dropdown-language .dropdown-toggle[aria-expanded="true"]:after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-language .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    animation: fade-slide-up 0.6s;
}

section.registration .card-header {
    padding-top: 1rem !important;
}

section.registration .card ul {
    padding-left: 0;
}

section.registration .row {
    justify-content: space-between;
}

section.registration .row:last-child {
    justify-content: flex-end;
}

/* Modal */
.modal-header,
.modal-body,
.modal-footer {
    border: 0;
}

/* Popup container */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
    visibility: hidden;
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

input[name="email"] {
    height: 3.5rem;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

#register-col > * {
    max-width: 43rem;
}

#register-col h2,
#col-free-account h2,
#col-license h2 {
    max-width: 32rem;
}

.selectedproduct h2,
.signup-btns {
    max-width: 30rem;
}

#initiateSignupModal {
    padding-right: 0 !important;
}

#initiateSignupModal .btn-outline-secondary > span {
    font-size: 1.4rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

#initiateSignupModal .btn-outline-secondary:not(:hover) > span {
    background-color: #fff;
}

.your-choice {
    font-size: 1.5rem;
    color: #959595;
    margin-bottom: 0.75rem;
}

label.form-label {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

input.form-control:not(.subscriptionQuantity),
select.form-select,
select.select2 {
    height: 3rem !important;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    transition: border 0.2s;
}
input.form-control.subscriptionQuantity {
    background-color: #f3f3f3;
}
.form-check-input:focus,
input.form-control:focus,
textarea.form-control:focus,
body .form-select:focus,
.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection,
.select2-container--bootstrap-5
    .select2-dropdown
    .select2-search
    .select2-search__field:focus {
    box-shadow: none;
    border: 1px solid #a46bff;
}
.was-validated .form-control:valid:focus,
.was-validated .form-control:valid:focus-visible,
.was-validated .form-check-input:valid:focus {
    box-shadow: none;
}
.select2-container--bootstrap-5 .select2-dropdown {
    border-color: #a46bff;
}
#login-col .form-control {
    background-color: #f3f3f3;
}
.select2-container--bootstrap-5 .select2-selection {
    border-radius: 0.5rem;
}
.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--above {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}
.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
.select2-container--bootstrap-5
    .select2-dropdown
    .select2-results__options
    .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5
    .select2-dropdown
    .select2-results__options
    .select2-results__option[aria-selected="true"]:not(.select2-results__option--highlighted) {
    background-color: #a46bff;
}

.form-check-input:checked {
    background-color: #5100d1;
    border-color: #5100d1;
}

.select2-container--bootstrap-5 .select2-selection {
    display: flex;
    align-items: center;
    min-height: 3rem;
}

@media (min-width: 1400px) {
    body.homepage .row > * {
        padding-left: 0;
        padding-right: 0;
    }
    #login-col form {
        max-width: 30rem;
    }
    #login-col form {
        margin-left: 3.5rem;
    }

    #register-col {
        padding-left: 4rem;
    }
}

@media (max-width: 767px) {
    .product-column {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        transform: translateY(80%) !important;
        z-index: 1999 !important;
        overflow: hidden;
        background: white;
        box-shadow: 0 0 3rem rgba(0, 0, 0, 0.75) !important;
        border-radius: 2rem 2rem 0 0 !important;
        padding-bottom: 1rem !important;
        padding-top: 0rem !important;
        max-height: 99%;
        overflow-y: auto;
    }

    .translateY0 {
        transform: translateY(0) !important;
    }

    .selectedproduct {
        margin-bottom: 1rem !important;
        cursor: pointer;
    }

    .product-column-toggle {
        max-width: 30%;
        height: 6px;
        background-color: #a4b2bf;
        display: block;
        cursor: pointer;
        border-radius: var(--bs-border-radius-xl) !important;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
        margin-top: 1rem;
    }

    .cart-item h5 {
        margin-bottom: 0;
    }

    .cart-item p {
        font-size: 0.9rem;
    }

    #signupSection {
        margin-bottom: 15rem;
    }
}

@media (min-width: 992px) {
    body.homepage:before {
        position: fixed;
        content: "";
        top: 5px;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../images/landing/square-top-left.svg);
        background-repeat: no-repeat;
        background-size: 520px;
        background-position: top left;
        animation: rect-left 1s;
        z-index: -1;
    }

    footer.footer .footer__container {
        display: flex;
        justify-content: space-between;
        width: calc(50% + 148px);
        margin-bottom: 2rem;
    }

    body.homepage:after {
        position: fixed;
        content: "";
        top: 535px;
        right: 0;
        width: 100%;
        height: 100%;
        background-image: url(../images/landing/square-bottom-right.svg);
        background-repeat: no-repeat;
        background-size: 520px;
        background-position: top right;
        animation: rect-right 0.7s;
        z-index: -1;
    }

    body.homepage main {
        margin-top: 12.5rem;
    }

    .container-xxl {
        max-width: 1860px;
        padding: 0 3rem;
    }

    .navbar {
        min-height: 106px;
    }

    main section {
        animation: fade-in 1.5s;
    }

    .h-md-100 {
        height: 100% !important;
    }

    .position-absolute-md {
        position: absolute !important;
    }

    .product-column-toggle {
        display: none;
    }

    h1,
    h2 {
        font-size: 2.25rem;
    }

    .usp ul li {
        padding-left: 2.5rem;
        font-size: 1.25rem;
        margin-bottom: 2rem;
        line-height: 1.1;
    }

    .usp ul li:before {
        top: 0.25rem;
        width: 2rem;
        background-size: 1.75rem;
    }

    #signupSection {
        margin-top: -1rem !important;
    }

    #signupSection .row > .col-md-8 {
        width: 63.5%;
    }

    #signupSection .row > .col-md-4 {
        width: 36%;
    }
    .form-complete-signup .col-lg-left,
    .form-complete-signup .col-lg-right {
        width: 48%;
        max-width: 510px;
    }

    #col-buy {
        margin-top: 5.25rem;
    }
}

/* End min-width: 992px */

@media (max-width: 991px) {
    .card-body {
        margin-top: -1.5rem;
    }
    .btn-primary,
    .btn-outline-secondary > span {
        min-height: 3.5rem;
        font-size: 1.25rem;
    }
    .btn-outline-secondary > span {
        margin: 2px;
    }
    .card {
        margin-left: 0;
        margin-right: 0;
    }
    .text-xl,
    .text-xxl,
    .text-light-xl {
        font-size: 1.25rem;
    }
    .text-xxl {
        font-size: 1.5rem;
    }
    #subscriptionQuantity {
        margin-top: 1rem;
    }
    footer {
        margin: -3rem 0 1rem 0;
        padding-top: 0;
        justify-content: center;
    }
    footer.footer p {
        margin: 0;
        text-align: center;
    }
    footer.footer a {
        margin-left: 1.5rem;
    }
}

@media (max-width: 500px) {
    .card-header {
        display: block;
        margin-right: 0;
    }
}

@media (min-width: 1200px) {
    body.homepage {
        background-repeat: no-repeat;
        background-position: center right;
        background-position-x: 70rem;
        background-attachment: fixed;
    }

    main {
        background-repeat: no-repeat;
        background-position: center right;
        background-position-x: 125%;
        background-attachment: fixed;
    }
}
@media (max-width: 767px) {
    .buy-license-bar {
        flex-direction: column-reverse;
    }
    .buy-license-bar #subscriptionQuantity {
        margin-bottom: 1rem;
    }
}

/* End min-width: 992px */

@keyframes fade-in {
    0%,
    5% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes language-fade-out {
    0% {
        opacity: 1;
        marign-top: 0;
    }
    99% {
        opacity: 0;
        margin-top: 0;
    }
    100% {
        opacity: 0;
        margin-top: -1000000px;
    }
}

@keyframes fade-slide-up {
    0% {
        opacity: 0;
        transform: translateY(0.5rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rect-left {
    0% {
        transform: translateX(-16px);
        opacity: 0.1;
    }
    50% {
        transform: translateX(0);
    }
    100% {
        opacity: 1;
    }
}

@keyframes rect-right {
    0% {
        transform: translateX(16px);
        opacity: 0;
    }
    50% {
        transform: translateX(0);
    }
    100% {
        opacity: 1;
    }
}
