@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500&family=Montserrat:wght@100;300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

html {
    height: 100%;
}

body {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100%;
}

html,
body {
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

button,
input[type='button'] {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: rgba(255, 255, 255, 0);
    background-clip: padding-box;
    border: unset;
    border-bottom: 1px solid #504de2 !important;
    border-radius: unset;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    color: #495057;
    background-color: rgba(255, 255, 255, 0);
    /* border-color: #80bdff; */
    outline: 0;
    -moz-box-shadow: 0 4px 4px rgba(80, 77, 226, 0.4);
    -webkit-box-shadow: 0 4px 4px rgba(80, 77, 226, 0.4);
    box-shadow: 0 4px 4px rgba(80, 77, 226, 0.4);
    /* box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%); */
}

.form-group label {
    font-weight: 600;
}

/* ----- Typography ----- */
body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.625;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-blue {
    color: #504de2 !important;
}

/* ------ Color ------ */
.bg-blue {
    background-color: #7776FE;
}

.bg-offwhite {
    background-color: #F0F0F0;
}

.bg-gray {
    background-color: #EFEFEF;
}

/* ----- Links ----- */
a {
    display: inline-block;
    color: #504de2;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

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

a:hover,
a {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page-container {
    width: 100%;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
}

.content-viewer {
    min-height: calc(100% - 80px);
}

/* Navbar Section */
.navbar {
    position: absolute;
    background: rgba(0, 0, 0, 0);
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: 'Montserrat';
    top: 0;
    z-index: 999;
    padding: 0;
}

.navbar__container {
    display: flex;
    justify-content: start;
    height: 70px;
    z-index: 1;
    width: 100%;
    margin: 0 50px;
}

#navbar__logo {
    display: flex;
    width: 200px;
    height: auto;
}

#navbar__logo img {
    width: 100%;
    object-fit: contain;
}

#mobile-menu {
    display: none;
}

.navbar__menu {
    display: flex;
    justify-content: right;
    width: 100%;
    align-items: center;
    list-style: none;
    margin: 0 auto;
    font-size: 16px;
    padding-left: 50px;
}

.navbar__item {
    margin-top: 8px;
    font-weight: 500;
}

.navbar__signup {
    margin-top: 8px;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.navbar__links i {
    display: none;
}

.navbar__links .active {
    border-bottom: 3px solid #fff;
}

.navbar__social {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    list-style: none;
    cursor: pointer;
}

.navbar__social-item {
    align-items: center;
    width: 32px;
    height: 32px;
    margin-left: 15px;
}

.navbar__social-links img {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #fafafa;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
}

#home {
    background-image: url('/images/background-auth-screen.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;

    /* background: #5fc8ff;
    background-image: -webkit-linear-gradient(to top, #947cf8, #9b7ef9, #a27ffa, #a981fb, #b083fc, #b081fc, #af80fb, #af7efb, #a778fa, #9f72f8, #966cf7, #8d66f6);
    background-image: linear-gradient(to top, #947cf8, #9b7ef9, #a27ffa, #a981fb, #b083fc, #b081fc, #af80fb, #af7efb, #a778fa, #9f72f8, #966cf7, #8d66f6); */
}

#home-banner {
    background-image: url('/images/header-hero.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero__container {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    max-width: 40%;
    /* height: calc(100% - 70px); */
    height: 100%;
    left: 10%;
    text-align: left;
}

.hero__container--description {
    display: flex;
    flex-direction: column;
}

.hero__container--description .hero__button-cta {
    display: flex;
    flex-direction: row;
}

.hero__container.pricing {
    max-width: 30%;
    height: calc(100% - 70px);
    left: 10%;
    bottom: 0;
}

/* .hero__container {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    max-width: 100%;
    margin: 0 auto;
    left: 0;
    top: 35%;
    text-align: left;
    margin: 0 50px;
} */

.hero__heading {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    color: #fff;
}

.hero__heading span {
    background: #ee0979;
    background: -webkit-linear-gradient(to right, #ff6a00, #ee0979);
    background: linear-gradient(to right, #ff6a00, #ee0979);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.hero__heading.heading-2 {
    font-weight: 500;
    font-size: 30px;
}

.hero__tagline {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    text-align: left;
    text-decoration-line: none;
    color: #FFFFFF;
    /* margin: 30px 0; */
    width: 100%;
}

/* Main Section */
.main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: top;
    background-color: #ffffff;
    height: auto;
}

.main__header {
    text-align: center;
    width: 100%;
}

.main__header h1 {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 32px;
}

/* About Section */
.main__container {
    margin: 30px 0;
}

.main__content {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 60px;
}

.main__content--about {
    width: 70%;
}

.about-howTo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.about-howTo::before {
    background-image: url(/images/image-about-decoration-yellow.png);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    width: 50%;
    height: 200px;
    transform: translate(50%, -150px);
    content: "";
}

.about-howTo--description {
    width: 30%;
}

.about-marker {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.about-marker::before {
    background-image: url(/images/image-about-decoration-blue.png);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    width: 50%;
    height: 200px;
    transform: translate(-55%, -150px);
    content: "";
}

.about-marker--description {
    width: 30%;
}

.main__content--try-out {
    width: 100%;
    padding: 0 15px;
}

.main__content--pricing, .main__content--compare-feature {
    width: 75%;
}

.pricing-table .card {
    border-radius: 20px;
}

.main__content--contact-us,
.main__content--faq,
.main__content--privacy-policy,
.main__content--term-of-service,
.main__content--license {
    width: 50%;
}

.main__content--contact-us .form__contact-us {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 50px;
}

/* Footer Section */
#footer .main__container {
    padding: 0 80px;
}

.main__content--footer {
    width: 100%;
    border-top: 1px solid #E2E2ED;
}

.main__content--footer-link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.content__footer--logo {
    width: 200px;
}

.content__footer--subscribe-form {
    margin: 50px 0;
}

.content__footer--contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.content__footer--social-media {
    font-size: 1.2rem;
}

.copyright {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    font-size: 12px;
}

.copyright .legal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
}

/* Login Page Style*/
.login__panel {
    width: 100%;
    height: 100vh;
    /* padding-top: 50px; */
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    overflow-y: scroll;
    overflow-x: hidden;

    background-image: url('../images/background-auth-screen.png');
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left 50%;
}

.logo__section {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    position: fixed;
    width: 30%;
    z-index: 9;
}

.logo__section .logo {
    width: 200px;
}

.logo__section .tagline {
    /* margin-top: 100px;
    margin-left: 50px; */
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    color: #EFEFEF;
}

.header-logo {
    width: 150px;
    height: 100%;
}

.form__section {
    align-items: center;
    /* padding: 50px 0; */
    margin: 0 auto;
    display: flex;
    /* height: 100%; */
    justify-content: center;
    position: absolute;
    width: 100%;
}

.form__section .form__link {
    text-align: right;
    margin-bottom: 50px;
}

.login__form--card {
    /* width: 40%; */
    position: relative;
    padding: 40px;
    border-radius: 1rem !important;
}

.form__section .form__login {
    width: 50%;
    margin: auto;
    /* text-align: center; */
    /* background: rgba(255, 255, 255, 0.5); */
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10.4px);
    -webkit-backdrop-filter: blur(10.4px);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.form__section .form__login .form-control {
    color: #504de2;
    font-weight: 500;
}

.btn-social-auth {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-outline-blue {
    color: #504de2;
    background-color: transparent;
    background-image: none;
    border-color: #504de2;
}

.btn-outline-blue:hover {
    color: #fff;
    background-color: #504de2;
    border-color: #504de2;
}

.login-title {
    font-size: 24px;
    /* padding-bottom: 15px;
    font-weight: 500;
    text-align: center; */
}

.account-header {
    position: relative;
    z-index: 0;
}

/* .account-banner {
    display: flex;
    min-height: 120px;
    height: 225px;
    overflow: hidden;
    position: relative;
    background-image: url('../images/Banner-Project-List.jpg');
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
} */

.account-description {
    position: relative;
    -webkit-box-align: start;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    min-height: 150px;
    margin: 0px auto;
    padding: 0 120px;
    /* background-color: #495057; */
}

.account-banner-container {
    position: relative;
}

.account-banner-container .account-banner-divContainer {
    background-color: rgb(255, 255, 255);
    width: 100%;
    min-width: 100%;
    height: 250px;
    min-height: 250px;
}

.account-banner-container .account-banner-divContainer .account-banner--editable {
    width: 100%;
    height: 100%;
    position: relative;
}

.account-banner-divContainer .account-banner--editable .account-banner--button {
    z-index: 2;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4px;
    cursor: pointer;
    position: absolute;
    inset: 0px;
    border: none;
    margin: 0;
}

.account-banner-divContainer .account-banner--editable .account-banner--button:hover {
    border-color: rgb(179, 179, 179);
}

.account-banner-divContainer .account-banner--editable .account-banner--overlay {
    position: absolute;
    inset: 0px;
    z-index: 80;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.account-banner-divContainer .account-banner--editable .account-banner--overlay:hover {
    z-index: unset;
    opacity: 100;
}

.account-banner--overlay .account-banner--overlay-button {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.account-banner-container .account-banner-divContainer .account-banner {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    max-height: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.account-banner .Banner--image {
    height: 100%;
    object-fit: cover;
    transition: opacity 400ms ease 0s;
    width: 100%;
}

.account-description .account-image-container {
    position: relative;
    z-index: 60;
}

.account-description .account-image-container .account-image-divContainer {
    border: 2px solid rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
    margin-top: -64px;
    border-radius: 50%;
    width: 110px;
    min-width: 110px;
    height: 110px;
    min-height: 110px;
}

.account-description .account-image-container .account-image-divContainer .account-image--editable {
    width: 100%;
    height: 100%;
    position: relative;
}

.account-image-divContainer .account-image--editable .account-image--button {
    z-index: 2;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4px;
    cursor: pointer;
    position: absolute;
    inset: 0px;
    border: none;
    border-radius: 50%;
    margin: 0;
}

.account-image--button:hover {
    border-color: rgb(179, 179, 179);
}

.account-image-divContainer .account-image--editable .account-image--overlay {
    position: absolute;
    inset: 0px;
    z-index: 80;
    opacity: 0;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
}

.account-image-divContainer .account-image--editable .account-image--overlay:hover {
    z-index: unset;
    opacity: 100;
}

.account-image--overlay .account-image--overlay-button {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.account-image--overlay .account-image--overlay-button:hover {
    /* visibility: visible; */
}

.account-description .account-image-container .account-image-divContainer .account-image {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    max-height: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
}

.account-image .Avatar--image {
    height: 100%;
    object-fit: contain;
    transition: opacity 400ms ease 0s;
    width: 100%;
}

.account-description .account-name-container {
    margin-top: 12px;
    max-width: 80vw;
    -webkit-box-align: center;
    align-items: center;
}

.account-description .account-name-container .account-title {
    font-size: 1.3rem;
    font-weight: bold;
}

.account-description .account-name-container .account-badge {
    font-size: 0.6rem;
    transform: translateY(-10px);
    background: rgb(117, 95, 255);
    background: linear-gradient(90deg, rgba(117, 95, 255, 1) 0%, rgba(222, 130, 255, 1) 100%);
}

.account-description .account-detail-container {
    display: flex;
    max-width: 80vw;
    font-size: 0.8rem;
    font-weight: 500;
}

.account-description .account-bio-container {
    display: flex;
    max-width: 100vw;
}

.account-description .account-bio-container .account-bio {
    min-width: 300px;
    max-width: 300px;
    font-size: 0.7rem;
    font-weight: 500;
}

.account-insight-container {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
    line-height: 1.5rem;
    border: 1px solid #cbcbcb;
    border-radius: 15px;
    margin: 30px auto;
    padding: 15px;
    white-space: nowrap;
}

.content-wrapper {
    margin: 30px 120px;
}

#project-list {
    /* gap: 20px; */
    display: flex;
    flex-wrap: wrap;
    perspective: 1000px;
}

.project-item {
    flex-grow: 0;
    /* flex: 1 1 300px;
    flex-grow: 0;
    flex-shrink: 1;*/
    border-radius: 15px; 
}

.project-item .card-body .card-text {
    font-size: 0.75rem;
    line-height: 1.2rem;
    margin-top: 10px;
}

.markerbase-badge {
    transform: translate(-40px, 20px);
    position: absolute;
    width: 20px;
}

.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #504de2;
    text-align: center;
    white-space: nowrap;
    background-color: #ffffff;
    border: 0;
    border-bottom: 1px solid;
    border-radius: 0;
}

/* Button Styles */
.btn:focus {
    box-shadow: unset;
}

.btn:disabled {
    cursor: not-allowed;
}

.btn-blue {
    color: #fff;
    background-color: #504de2;
    border-color: #504de2;
}

.btn-blue:hover, .btn-blue:focus {
    color: #fff;
}

.btn-blue-gradient {
    color: #fff;
    background: linear-gradient(90deg, #7000FF 17.79%, #E753FF 106.6%);
    /* border-color: #fff; */
}

.btn-yellow {
    color: #212529;
    background-color: #F6E333;
    border-color: #F6E333;
}

.btn-default {
    color: #212529;
    background-color: #EFEFEF;
    border-color: #EFEFEF;
}

.btn-icon-purple {
    color: #504de2;
}

.btn-preview {
    border: 0;
    border-bottom: 1px solid #504de2;
    border-radius: 0;
    background-color: unset;
}

.btn-preview:focus {
    box-shadow: unset;
}

.btn-float {
    position: fixed;
    z-index: 99;
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 15px;
    background-color: #504de2;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
}

.btn-float i {
    margin-top: 15px;
}

.button-add-float {
    display: none;
}

.nav-link {
    padding: 0.1rem 1rem;
    color: #212529;
}

.nav-link:focus,
.nav-link:hover {
    color: #000;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: #000;
}

.content-qr-code {
    display: grid;
    grid-auto-flow: column;
}

.qr-code-col {
    border-right: 1px solid #504de2;
}

.progress-bar {
    background-color: #EFEFEF;
}

.card-image {
    position: relative;
    cursor: pointer;
}

.card-image a {
    width: 100%;
}

.card-img-top {
    object-fit: cover;
    border-radius: 20px;
}

.image-overlay {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 46px;
    text-align: center;
}

.card-image:hover .card-img-top {
    filter: brightness(80%);
}

.card-image:hover .image-overlay {
    opacity: 1;
}

.card-title {
    font-size: 14px;
    margin-bottom: 0;
    color: #212529;
}

.card-text {
    max-height: 100px;
    overflow-y: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
}

.card-text::-webkit-scrollbar {
  display: none;
}

.btn:hover img {
    filter: brightness(0) invert(1);
}

.filterSearchSection form {
    width: 50%;
}

/* File Upload Area CSS */
.file-drop-area {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 25px;
    border: 1px dashed #504de2;
    border-radius: 3px;
    transition: 0.2s;
    color: #504de2;
}

.file-drop-area.is-active {
    background-color: rgba(255, 255, 255, 0.05);
}

.fake-btn {
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #504de2;
    border-radius: 3px;
    padding: 8px 15px;
    margin-right: 10px;
    font-size: 12px;
    text-transform: uppercase;
}

.file-msg {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}

.file-input:focus {
    outline: none;
}

#marker-container {
    display: flex;
    flex-direction: column;
}

.marker-preview-container {
    width: 25%;
    position: relative;
    text-align: center;
    color: white;
}

.marker-preview-container img {
    filter: brightness(80%);
}

.marker-preview-container .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsiveness */
@media screen and (max-width: 960px) {
    .page-container {
        height: 100%;
        /* position: fixed;
        top: 0;
        bottom: 0;
        overflow: scroll; */
    }

    .hero__container {
        max-width: 70%;
    }

    .login__panel {
        flex-direction: column;
        padding-top: 0px;
    }

    .logo__section {
        position: relative;
        height: auto;
        width: 100%;
        padding: 30px;
        align-items: flex-start;
        z-index: 0;
    }

    .logo__section .logo {
        width: 30%;
    }

    .header-logo {
        width: 150px;
        height: 100%;
    }

    .form__section {
        padding: 20px;
        padding-top: 0px;
        position: relative;
        width: 100%;
        height: auto;
    }

    .form__section .form__link {
        text-align: center;
        margin-bottom: 0;
        margin-top: 30px;
    }

    .form__section .form__login {
        width: 100%;
        background: rgba(255, 255, 255, 0.8);
    }

    .logo__section .tagline {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
    }

    .form__section .form__link {
        /* display: none; */
    }

    .login__form--card {
        width: 70%;
        padding: 30px;
    }

    .btn-oauth-google {
        margin-right: 15px;
    }

    #home {
        background-position: top right;
    }

    .account-description {
        padding: 0 30px;
    }

    .content-wrapper {
        margin: 30px;
    }

    /* .project-item {
        margin-right: 15px;
        margin-bottom: 15px;
    } */

    .file-drop-area {
        flex-direction: column;
        text-align: center;
    }

    .file-msg {
        display: none;
    }

    .marker-preview-container {
        width: 100%;
    }

    .main__content--about {
        width: 100%;
    }

    .about-howTo {
        justify-content: space-around;
    }

    .main__content--about img {
        width: 50%;
    }
    
    .about-howTo::before {
        width: 150px;
        top: 5%;
        right: 5%;
        transform: none;
    }

    .about-marker::before {
        width: 100px;
        left: 5%;
        bottom: 50%;
        transform: none;
    }

    .hero__container.pricing {
        max-width: 50%;
        height: calc(100% - 70px);
        left: 10%;
        bottom: 0;
    }

    .main__content--contact-us,
    .main__content--pricing,
    .main__content--compare-feature,
    .main__content--faq,
    .main__content--privacy-policy,
    .main__content--term-of-service,
    .main__content--license {
        width: 100%;
        padding: 0 30px;
    }

    #footer .main__content {
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    .navbar.mobile-active {
        background: #6F6DF8;
    }

    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 70px;
        z-index: 1;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .navbar__menu {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: -1;
        padding: 0 20px;
    }

    .navbar__menu li {
        line-height: 3rem;
    }

    .navbar__menu.active {
        background: #6F6DF8;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 100vh;
        font-size: 1rem;
        overflow: hidden;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__social.toggle {
        display: block;
    }

    .navbar__toggle {
        display: block;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 2px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .navbar__signup {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
        width: 100%;
    }

    .navbar__links {
        text-align: left;
        display: table;
        margin-left: 0;
        text-transform: uppercase;
    }

    .navbar__links i {
        display: inline;
        margin-right: 5px;
    }
    
    #mobile-menu {
        display: flex;
        flex-direction: row;
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
        margin-left: 20px;
    }

    .navbar__social {
        display: none;
    }

    #mobile-menu .is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu .is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu .is-active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    .login__panel {
        flex-direction: column;
        padding-top: 0px;
        padding-bottom: 70px;
    }

    .logo__section {
        position: relative;
        height: auto;
        width: 100%;
        padding: 30px;
        align-items: flex-start;
        z-index: 0;
    }

    .logo__section .logo {
        width: 50%;
    }

    .logo__section .tagline {
        display: none;
    }

    .form__section {
        padding: 20px;
        padding-top: 0px;
        position: relative;
        width: 100%;
        height: auto;
    }

    .form__section .form__link {
        text-align: center;
        margin-top: 30px;
        margin-bottom: 0px;
    }

    .form__section .form__link a {
        color: #504de2 !important;
    }

    .form__section .form__login {
        width: 100%;
        margin: auto;
        padding: 0;
        border-radius: 0;
        background: unset;
        border-radius: unset;
        box-shadow: unset;
        backdrop-filter: unset;
        -webkit-backdrop-filter: unset;
        border: unset;
    }

    .form__section .login-title {
        font-size: 22px !important;
        /* padding-bottom: 15px; */
    }

    .login__form--card {
        width: 100%;
    }

    .btn-social-auth {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    /* .btn-social-auth button {
        margin-bottom: 10px;
    } */

    .btn-social-auth a span {
        display: none;
    }

    #home {
        background-position: 85%;
        box-shadow: inset 0 0 0 2000px rgba(80, 77, 226, 0.2);
    }

    .hero__container {
        max-width: 100%;
        left: 0;
    }

    .hero__container.pricing {
        max-width: 80%;
        height: calc(100% - 70px);
        left: 0;
        bottom: 0;
    }

    .hero__container h1.hero__heading {
        font-size: 32px;
    }

    .hero__container h2.hero__heading {
        font-size: 22px;
    }

    .hero__tagline {
        font-size: 14px;
        line-height: 20px;
    }

    .hero__container .hero__container--description {
        padding: 0 30px;
    }

    .main__header {
        padding: 0 50px;
        text-align: center;
    }

    .main__container .main__header h1 {
        font-size: 26px;
    }

    .main__container .main__content {
        padding: 0;
    }

    .about-howTo {
        flex-direction: column;
    }

    .about-howTo::before {
        width: 20%;
        right: 10%;
        top: 25%;
        transform: rotateZ(314deg);
    }

    .about-marker::before {
        width: 15%;
        bottom: 25%;
        left: 10%;
        transform: unset;
    }

    .about-howTo .about-howTo--description {
        width: 80%;
        margin-top: 30px;
    }

    .about-marker {
        flex-direction: column;
    }

    .about-marker--description {
        width: 80%;
        text-align: right;
        margin-top: 30px;
    }

    .main__content--try-out {
        width: 100%;
        padding: 0 15px;
    }

    .main__content--contact-us, .main__content--faq, .main__content--privacy-policy, .main__content--term-of-service, .main__content--license {
        width: 100%;
        padding: 0 30px;
    }

    .main__content--contact-us .form__contact-us {
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        padding: 30px;
    }

    #footer .main__container {
        padding: 0 30px;
    }

    .main__content--footer-link {
        flex-direction: column;
    }

    .content__footer--logo {
        width: 50%;
    }

    .content__footer--subscribe-form {
        margin: 30px 0;
    }

    .content__footer--contact {
        margin-bottom: 30px;
    }

    .copyright {
        flex-direction: column-reverse;
        gap: 5px;
    }

    .copyright .legal {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .account-banner {
        background-image: url('../images/Banner-Project-List-Mobile.jpg');
    }

    .account-description {
        padding: 0 20px;
        flex-direction: column;
    }

    .account-insight-description {
        width: 100%;
    }

    .account-insight-container {
        margin: auto;
    }

    .content-wrapper {
        margin: 20px;
    }

    #project-list .col-md-3 {
        padding-left: 0;
        padding-right: 0;
    }

    .project-item {
        width: 100%;
        flex: 1 1 100%;
    }

    .button-add {
        display: none;
    }

    .button-add-float {
        display: block;
    }

    .content-qr-code {
        display: flex;
        flex-direction: column;
        row-gap: 30px;
        /* grid-auto-flow: column; */
    }

    .qr-code-col {
        border-right: unset;
    }

    .share-button-col {
        row-gap: 30px;
    }

    .preview-title {
        font-size: 1.2rem;
    }

    .filterSearchSection form {
        width: 100%;
    }
    
}