/* Apply some basic styling to the body and the main element */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    margin-right: 20px;
}

main {
    margin-top: 80px; /* This ensures that the main content doesn't overlap with the header */
    margin-bottom: 80px; /* This ensures that the main content doesn't overlap with the footer */
}

.button {
    display: inline-block;
    padding: 0.5em 1em;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0.25em;
    color: #fff;
    background-color: #0077ff;
}

.button-login {
    background-color: #2ecc71;
}

.button-forgot {
    background-color: #f39c12;
}

.button-register {
    background-color: #007bff;
}


.notification-bell {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.notification-bell .icon {
    display: inline-block;
}

.notification-bell .badge {
    position: absolute;
    top: 0;
    right: -10px;
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    display: none;
}

.notification-bell .notification-menu {
    position: absolute;
    top: 40px;
    right: 0;
    width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: none;
    padding: 10px;
    z-index: 999;
}

.notification-bell .notification-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notification-bell .notification-menu ul li a {
    color: #333;
    text-decoration: none;
}

.notification-bell .notification-menu ul li a:hover {
    text-decoration: underline;
}

.sub-menu ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    z-index: 1;
    background-color: #fff;
    border: 1px solid #ccc;
}

.sub-menu:hover ul {
    display: block;
}

.sub-menu li {
    display: block;
}

.sub-menu a {
    display: block;
    padding: 10px;
    color: #000;
    text-decoration: none;
}

.sub-menu a:hover {
    background-color: #f7f7f7;
}


/* Style the header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
}

.header img {
    width: 220px; /* Set the width to make the logo smaller */
    height: 220px; /* Set the height to make the logo smaller */
    margin-right: 20px; /* Move the logo to the right side */
}


.header .login-form form {
    margin: 0;
    display: flex;
    align-items: center;
}

.header .login-form form label {
    margin-right: 5px;
    font-size: 14px;
}

.header .login-form form input[type="email"],
.header .login-form form input[type="password"] {
    margin-right: 5px;
    padding: 3px;
    border-radius: 3px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.header .login-form form input[type="submit"] {
    padding: 5px 10px;
    background-color: #4CAF50;
    color: #fff;
    border-radius: 3px;
    border: none;
    font-size: 14px;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    /*font-size: 18px;*/
    color: #808080; /* Grey color */
}

nav ul li a:hover {
    color: #007bff;
}


.cta-button a {
    text-decoration: none;
}

a {
    text-decoration: none;
}

.speech-button {
    margin-left: 20px;
}

.cta-section {
    background-color: #f5f5f5;
    padding: 50px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    color: #333;
}

.cta-section p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: "Open Sans", sans-serif;
    color: #333;
}

.cta-section button.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    color: #fff;
    background-color: #0077ff;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.cta-section button.cta-button:hover {
    background-color: #004499;
}

.col-md-6 {
    display: flex;
    align-items: center;
}

.col-md-6 img {
    margin-right: 30px;
}


main {
    padding-left: 10px;
    margin-right: 20px;
}


/* Style the footer */
.footer {
    background-color: #212121 !important;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 0;
    width: 100%;
}

.footer a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin: 10px;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

.footer a:hover {
    color: #ccc;
}


/* Style the marketplace page */
.marketplace-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.marketplace-item {
    width: 30%;
    margin-bottom: 40px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.marketplace-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.marketplace-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 20px;
    color: #333;
}

.marketplace-item p {
    font-size: 16px;
    font-weight: 400;
    margin: 20px;
    color: #555;
}

.marketplace-item button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-color: #0077ff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.marketplace-item button:hover {
    background-color: #0055cc;
}

.marketplace-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .marketplace-item {
        width: 45%;
    }
}

@media screen and (max-width: 768px) {
    .marketplace-item {
        width: 100%;
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Styles for desktop devices */
.button {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
}

/* Styles for mobile devices */
@media (max-width: 767px) {
    .button {
        font-size: 14px;
        padding: 8px 16px;
        border-radius: 2px;
    }
}


/* Style the footer */
.footer {
    background-color: rgb(51, 125, 159);
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer img {
    width: 150px;
    /* Set the width to make the logo smaller /
   height: 150px; / Set the height to make the logo smaller */
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin: 10px;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer ul li a:hover {
    text-decoration: underline;
}

.footer p {
    font-size: 14px;
}

.footer {
    padding-top: 50px;
}

.footer {
    margin-top: 100px;
}

.text-container {
    text-align: justify;
    max-width: 400px;
    font-size: 18px;
    line-height: 1.5;
}

.btn {
    margin-bottom: 40px;
}


.asset-preview-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.asset-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.asset-preview img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.asset-preview h3 {
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.asset-preview .location {
    margin-top: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #aaa;
}


a.button {
    text-decoration: none;
}

a.button:hover {
    text-decoration: none;
}


/* Style the product */
.product {
    margin-bottom: 20px;
}

.product h3 {
    margin-top: 0;
}

/* Style the popup container */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Style the popup box */
.popup-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    max-height: 90%;
    overflow-y: auto;
    text-align: center;
}

.popup-box h2 {
    margin-top: 0;
}

.popup-box p {
    margin-bottom: 20px;
}

.popup-box form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.popup-box label {
    margin-bottom: 10px;
}

.popup-box input[type="text"],
.popup-box textarea {
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-bottom: 20px;
    width: 100%;
}

.popup-box button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup-box button:hover {
    background-color: #0069d9;
}

.popup-box .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
}


/*Added 11.03.23 */

/* Apply some basic styling to the footer */
footer {
    background-color: rgb(35, 60, 173);
    color: #fff;
    padding: 50px;
}

/* Style the footer links */
footer a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* Style the footer headings */
footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Style the footer logo */
footer img {
    width: 100px;
    height: 100px;
    margin-right: 20px;
}

/* Style the footer social icons */
.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social-icons a {
    display: inline-block;
    min-width: 30px;
    height: 30px;
    margin-left: 10px;
    background-color: #fafafa;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #212121;
}

.footer-social-icons a i{
    color: #212121;
}

.footer-social-icons a:hover {
    background-color: #555555;
    color: #fff;
}

/* Style the footer newsletter form */
.footer-newsletter {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-newsletter input[type="email"] {
    padding: 10px;
    border-radius: 3px;
    border: none;
    font-size: 14px;
    margin-right: 10px;
}

.footer-newsletter button {
    padding: 10px;
    background-color: #0077ff;
    color: #fff;
    border-radius: 3px;
    border: none;
    font-size: 14px;
}


/* Media query for smartphones */
@media screen and (max-width: 767px) {
    .footer {
        color: #fff; /* Color for smartphones */
        font-size: 14px; /* Font size for smartphones */
    }
}

.navbar-nav .nav-item .nav-link {
    color: #333;
    /*font-weight: bold;*/
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
    /*background-color: #007bff;*/
    color: black;
}

.navbar-nav .nav-item .nav-link:active {
    transform: scale(0.95);
}

.navbar-nav .nav-item .nav-link.loading:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #007bff;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


@media screen and (max-width: 767px) {
    .footer {
        background-color: #333;
        color: #fff;
        padding: 20px;
    }
}

.initials-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    background-color: #007bff;
    text-transform: uppercase;
    cursor: pointer;
}

.initials-circle:hover {
    opacity: 0.8;
}

.navbar-nav li.dropdown:hover .dropdown-menu {
    display: none;
}

.navbar-nav li.dropdown:hover > .dropdown-toggle {
    background-color: #f8f9fa;
}

.navbar-nav li.dropdown:hover > .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 1000;
}

.navbar-nav li.dropdown:hover > .dropdown-menu > a:hover {
    background-color: #f8f9fa;
}

