/**
* Template Name: Nova
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/nova-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

.mainbackground {
    background-color: black;
}

#header {
    background-color: black;
}

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Raleway", sans-serif;
}

/* Colors */
:root {
  --color-default: #2b180d;
  --color-primary: #56b8e6;
  --color-secondary: #1b2f45;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: var(--color-default);
    background-color:black;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #82cbed;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 100px 0 60px 0;
  min-height: 15vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(27, 47, 69, 0.7);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(86, 184, 230, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 24px 0;
}

@media (max-width: 1200px) {
  .header {
    padding: 12px 0;
  }
}

.header.sticked {
    background: rgba(27, 47, 69, 0.9);
    padding: 12px 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 36px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
}

.about .content p {
  margin: 30px 0;
  color: #29486a;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 15px 26px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
/*  background: linear-gradient(rgba(27, 47, 69, 0.8), rgba(27, 47, 69, 0.8)), url("../img/cta-bg.jpg") center center;*/
  background-size: cover;
  padding: 50px 0;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 25px;
}

.call-to-action .cta-btn {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #2aa5df;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    font-size: 14px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer .footer-content {
/*    background-color: #f7f9fc;*/
    background-color:black;
    color: white;
    background-size: contain;
    padding: 60px 0 30px 0;
    display: grid;
}

@media (min-width:768px) {
    .footer .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }

        .footer .footer-content .footer-info {
            margin-bottom: 30px;
        }

            .footer .footer-content .footer-info .logo {
                line-height: 0;
                margin-bottom: 25px;
            }

                .footer .footer-content .footer-info .logo img {
                    max-height: 40px;
                    margin-right: 6px;
                }

                .footer .footer-content .footer-info .logo span {
                    font-size: 30px;
                    font-weight: 700;
                    letter-spacing: 1px;
                    color: var(--color-secondary);
                    font-family: var(--font-secondary);
                    margin-top: 3px;
                }

            .footer .footer-content .footer-info p {
                font-size: 15px;
                margin-bottom: 0;
                font-family: var(--font-primary);
                color: var(--color-secondary);
            }

        .footer .footer-content .social-links a {
            font-size: 14px;
            line-height: 0;
            display: inline-block;
            width: 32px;
            height: 32px;
            color: rgba(27, 47, 69, 0.5);
            margin-right: 10px;
            transition: 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--color-primary);
            color: #fff;
            border-radius: 50px;
        }

            .footer .footer-content .social-links a:hover {
                background-color: #38618e;
            }

        .footer .footer-content h4 {
            font-size: 16px;
            font-weight: bold;
            color: #29486a;
            position: relative;
            padding-bottom: 12px;
        }

        .footer .footer-content .footer-links {
            margin-bottom: 30px;
        }

            .footer .footer-content .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                .footer .footer-content .footer-links ul i {
                    margin-right: 2px;
                    color: var(--color-primary);
                    font-size: 16px;
                    line-height: 0;
                }

                .footer .footer-content .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    .footer .footer-content .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                .footer .footer-content .footer-links ul a {
                    color: #31547c;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    .footer .footer-content .footer-links ul a:hover {
                        color: var(--color-primary);
                    }

        .footer .footer-content .footer-contact p {
            line-height: 26px;
            color: var(--color-secondary);
        }

    .footer .footer-legal {
        background: #fff;
        padding: 30px 0;
    }

        .footer .footer-legal .copyright {
            text-align: center;
            color: var(--color-secondary);
        }

        .footer .footer-legal .credits {
            padding-top: 4px;
            text-align: center;
            font-size: 13px;
            color: var(--color-secondary);
        }

    .container {
        border-radius: 5px;
    }

    .page-content {
        background-color: white;
    }

    @media (min-width: 1180px) {
        .page-content {
            min-height: 600px;
            background-color: white;
        }

        .round-edge-padding {
            border-radius: 5px;
            margin-top: 5px;
            margin-bottom: 5px;
            padding: 10px;
        }

        .twocolumn {
            display: grid;
        }

        @media (min-width: 1180px) {
            .twocolumn {
                grid-template-columns: 1fr 1fr;
            }
        }
        /*.main-section {
    background-color: rgba(0,0,0,.6)
}*/

        /*.main-section {
    background-color: white;
}*/
    }
}



.whitebox {
    background-color: white;
    /*    border-radius: 5px;*/
    padding: 10px;
}

.page-content {
    background-color: white;
}

.map-container {
    overflow: hidden;
    padding-bottom: 56.25%; /* Aspect ratio for a 16:9 video or map */
    position: relative;
    height: 0;
}

    .map-container iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }

.card.highlight {
    transition: background-color 0.3s ease;
}

    .card.highlight:hover {
        background-color: pink;
    }

.img-display-container {
    position: relative;
    cursor: pointer;
}

.img-container {
    position: relative;
}

.upload-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    width: 300px;
}

.img-display-container:hover .upload-overlay {
    opacity: 1;
}

.upload-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    pointer-events: none; /* Allow clicks to go through the overlay to the input */
}

#navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f1f1f1;
    padding: 15px;
    text-align: center;
}

    .cookie-consent button {
        padding: 10px 20px;
        background-color: #4CAF50;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

#blazor-error-ui {
    display: none;
}