:root {
    --pace-blue: #3498db;        /* var(--pace-blue) */
    --pace-orange: #DB7734;      /* var(--pace-orange) */
    --pace-white: #ffffff;       /* var(--pace-white) */
    --pace-off-white: #F2F2F2;   /* var(--pace-off-white) */
    --pace-light-blue: #86c2f3;  /* var(--pace-light-blue) */
    --pace-dark-blue: #246a99;   /* var(--pace-dark-blue) */
    --primary-color: #3498db;
    --secondary-color: #DB7734;
    --background-color: #246a99;
    --text-color: #86c2f3;
    --white: #F2F2F2;
}

@font-face {
    font-family: 'PoiretOne-Regular';
    src: url('fonts/PoiretOne-Regular.ttf') format('truetype');
         
}

.content {
    max-width: 100%;
    margin-bottom: 50px;
    flex: 1;
    flex-direction: column;
}

html {
    height: 100%; /* Set the html height to 100% of the viewport */
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--pace-light-blue);
    margin: 0; /* Removes default margin */
    padding: 0; /* Removes default padding */
    width: 100%; /* Set the body width to 100% of the viewport */
    height: 100%; /* Set the body height to 100% of the viewport */
    font-size: 20px;    

}

.orange-text {
    color: var(--pace-orange);
}

.blue-text {
    color: var(--pace-blue);
}

.punchy-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adds a shadow effect */
    font-weight: bold; /* Makes the text bold */
    font-size: 1.2em; /* Increases the font size */
}

.img-center {
    text-align: center;
    /* display: inline; */
    /* margin-left: auto; */
    /* margin-right: auto; */
    max-width: 200px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: end;
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(50px);
    visibility: hidden;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, visibility 0.6s ease-out;
    will-change: opacity, visibility, transform;
}

.animate-fade-in.animated {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.card {
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Drop shadow */
    transition: box-shadow 0.3s ease; /* Transition for hover effect */
}

.card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Darker shadow on hover */
}

/* Custom card headers for each section */
.card-header-about {
    background-color: #3498db; /* Blue */
    color: white;
}

.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    color: black;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    color: white;
}

.card-header-services {
    background-color: #2ecc71; /* Green */
    color: white;
}

.card-header-version {
    background-color: #DB6E40; 
    color: white;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(100px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.blue-text-white {
    color:var(--pace-blue) !important;
}

.blue-text-white:hover {
    color:  #f0f0f0f1 !important;
}

.blue-text {
    color:var(--pace-blue) !important;
}

.blue-text:hover {
    color:var(--pace-orange) !important;
}

.grey-background {
    background-color: #f0f0f0f1;
}

.narrow-input {
    max-width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.center-button{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.responsive-logo {
    width: 100%;
    max-width: 400px;  
    height: auto; 
    margin: 0 auto;
}



.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.column {
    flex: 1 1 50%;
    box-sizing: border-box;
    padding: 10px;
    
}

.custom-navbar {
    background-color: #f0f0f0f1;
    font-family: 'PoiretOne-Regular', sans-serif;
    font-size: 14px;
    height: 50px;
}

.custom-toggler-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--pace-blue); /* Adjust the color as needed */
    position: relative;
    margin: auto;
}

.custom-toggler-icon::before,
.custom-toggler-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--pace-blue); /* Same color as the main bar */
    left: 0;
}

.custom-toggler-icon::before {
    top: -10px;
}

.custom-toggler-icon::after {
    bottom: -10px;
}

.navbar-toggler {
    padding: 20px; /* Adjust as needed */
}

.hidden-navbar {
    position: fixed;
    top: -500px; /* Adjust this value based on your navbar height */
    transition: top 0.3s;
    width: 100%;
}

.visible-navbar {
    position: fixed;
    top: 0;
    transition: top 0.3s;
    width: 100%;
}

.headline {
    font-size: 65px;
    font-weight: bold;
    font-family: 'PoiretOne-Regular', sans-serif;
    color: var(--pace-light-blue);
}

.headline0 {
    font-size: 65px;
    font-weight: bold;
    font-family: 'PoiretOne-Regular', sans-serif;
    line-height: 1.2;
}

.white-text {
    color: white;
}

.subheadline {
    font-size: 38px;
    color: var(--pace-orange);
    font-family: 'PoiretOne-Regular', sans-serif;
    font-weight: bold;
}

.action-button {
    background-color: var(--pace-orange);
    border: none;
    color: #ffffff;
    padding: 15px 32px;
    text-align: center;
    font-size: 25px;
    font-family: 'PoiretOne-Regular', sans-serif;
    cursor: pointer;
    /* margin: 40px 0; */
    font-weight: bold;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    text-decoration: none; /* Remove underline from link */
    display: inline-block; /* Optional: if you want the link to behave more like a block-level element */
}

.action-button:hover {
    color: var(--pace-blue); /* Replace with the desired color */
    text-decoration: none; /* Removes underline */
    box-shadow:0px 6px 6px rgba(0, 0, 0, 0.3);
}

.results-list {
    list-style: none;
    padding-left: 0;
    font-weight: normal;
}

.narrow-input {
    max-width: 300px;
}

.parallax-background {
    /* Set the position */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  
    /* Use z-index to place it behind content */
    z-index: -1;
  
    /* Set the image properties */
    /* background-image: url('../images/lines.png'); */
    background-position: right top; /* Position to the right side */
    background-repeat: repeat-y; /* Repeat vertically */

}

.image-container {
    background-color: #ffffff1e; /* Slightly different background color */
    padding: 10px; /* Add padding around the image */
    border-radius: 5px; /* Optional: Add rounded corners */
}
.image-container img {
    display: block;
    max-width: 100%; /* Ensure the image is responsive */
    height: auto;
}

.red-background {
    background-color: #ff0000 !important; /* Replace with your chosen color */
    font-weight: bold;  
}



.parallax-background img {
    width: 100%;
    height: auto;
    transform: translateY(-50%); /* Center the image vertically */ 
}

.content {
    position: relative;
    z-index: 1; /* Place it above the background */
    /* Other styling for your content */
}

.video-section {
    width: 100%;
    background-color: rgba(240, 240, 240, 0.3); /* Grey background */
    display: flex; /* Using Flexbox to align items horizontally */
    justify-content: space-between; /* Distribute space between video and text */
    padding: 20px; /* Padding for the section */
    flex-wrap: nowrap;
    align-items: center;
}

.video-container {
    flex: 1; /* Takes up 50% of the container's width */
    padding: 20px; /* Adds some space around the video */
    display: flex; /* Enables flexbox for centering the iframe */
    align-items: center; /* Centers the iframe vertically */
    justify-content: center; /* Centers the iframe horizontally */
}

.video-container video {
    width: 100%; /* Full width of the container */
    height: auto; /* Maintain aspect ratio */
}

.rounded-iframe {
    border-radius: 15px; /* Adjust the radius as desired */
    overflow: hidden; /* To make sure the video inside the iframe also gets the rounded corners */
}

.text-container {
    flex: 1; /* Takes up 50% of the container's width */
    padding: 20px; /* Adds some space around the text */
    /* font-size: large; */
}

.text-shadow {
    text-shadow: 1px 1px 1px #000000;
}

.text-container-title {
    padding: 20px; /* Adds some space around the text */
    width: 100%;
    text-align: center;
}

.text-container2 {
    flex: 1; /* Takes up 50% of the container's width */
    padding: 20px 20px 20px 60px; /* Adds some space around the text */
    background-image: url('../../static/images/cfg-blank.png');
    background-size: cover;
    max-width: 600px;
    height: min-content;
}

/* text with cfg-banner-08.png as background */
.text-container4 {
    /* padding: 40px; */
    font-size: medium;
    color: var(--pace-light-blue) !important;
    /* background-image: url('../../static/images/cfg-banner-08.png'); */
    /* background-size: cover; */
    height: auto;
}

.text-container3 {
    flex: 1; /* Takes up 50% of the container's width */
    padding: 20px; /* Adds some space around the text */
    /* background-image: url('../../static/images/cfg-banner-07.png'); */
    /* background-size: cover; */
    max-width: 100%;
    height: auto;
}

.text-container img {
    position: relative;
    width:100%;
    min-width: 600px;
    max-width: 1000px;
}

.h1 {
    font-size: 40px;
    font-weight: bold;
    font-family: 'PoiretOne-Regular', sans-serif;
    color: white !important;
}

.text-container h2 {
    color: var(--pace-orange);
    font-weight: bold;
    font-size: 28px;
    font-family: "PoiretOne-Regular", sans-serif;
}

.text-container h2b {
    color: white;
    font-weight: bold;
    font-size: 32px;
    /* font-family: "PoiretOne-Regular", sans-serif; */
}

.text-container h3 {
    color: var(--pace-light-blue-blue); /* Dark text color */
    font-size: larger;
}

.text-container p {
    color: #666; /* Lighter text color */
    font-weight: normal;
}

.topblock-section {
    display: flex; /* Aligns the benefit divs horizontally */
    vertical-align: center; /* Aligns the divs to the center */
    align-items: center; /* Centers the items vertically */
    flex-direction: row; /* Stack the items horizontally */
}
.topblock {
    display: flex; /* Aligns the benefit divs horizontally */
    vertical-align: center;
    width: 45%; /* Takes up 30% of the container's width */
    align-items: center; 
    flex-direction: column; 
    padding: 2px; 
    text-align: center;
}
.topblock-text {
    text-align: center;
}
.topblock-subheadline {
    font-size: x-large;
    font-weight: bold;
    line-height: 98%;
    width: 60%; /* Make the element 70% of the container's width */
    margin: 0 auto; /* Center the element horizontally */
    justify-content: center;
    line-height: normal;
}
.topblock-bullet {   /* Have not succeeded in lining up the list item vertically unfortunately */
    font-size: 18px;
    color: var(--pace-light-blue);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 5px; /* Adjust spacing between items */
}

.topblock cemi {
    /* vertical-align: center; Aligns the divs to the center */
    width: 100%; /* Takes up 100% of the container's width */
    list-style-image: none;
    text-align: center;
    padding: 0px; 
    margin: 0px;
    /* color: var(--pace-orange) !important; */
}


.benefits-section {
    text-align: center; /* Centers the text */
    padding: 0px; /* Space around the entire section */
    font-weight: normal;
    display: flex; /* Use flexbox for alignment */
    flex-direction: row; /* Stack elements horizontally */
    align-items: start; /* Align items to the top */
    
}

.row.benefits-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row; /* This ensures the children divs are in a row */
}

.benefits-section h1 {
    /* margin-bottom: 10px; Space below the main header */
    padding-top: 10px; /* Space above the main header */
    color: white;
    font-size:50px;
    font-weight: bold;
    font-family: 'PoiretOne-Regular', sans-serif;
}

.benefit {
    display: flex; /* Aligns the benefit divs horizontally */
    vertical-align: top; /* Aligns the divs to the top */
    width: 45%; /* Takes up 30% of the container's width */
    align-items: center; /* Centers the items vertically */
    flex-direction: column; /* Stack the items vertically */
    /* margin: 0 1%; Space between the divs */
    /* background image */
    /* background-image: url('../../static/images/cfg-banner-09.png'); */
    /* background-size: cover; */
}

.benefit img {
    max-width: 300px; /* Adjust the icon size as needed */
    margin-bottom: 0px; /* Space below the icon */
}

.benefit h2 {
    margin-bottom: 0px; /* Space below the header */
    font-weight: bold;
}

.smallfont {
    font-size: 18px !important;
}
.boxed {
    border: 3px solid black;
}

.benefit-icon {
    font-size: 50px; /* Adjust the icon size as needed */   
    margin-bottom: 0px;
}

.benefit li {
    max-width: 400px; /* Takes up 70% of the container's width */
    /* padding-left: 20%; */
    margin-bottom: 5px; /* Space below the item */
    font-weight: normal;
    list-style-type: none;
    color: var(--pace-light-blue);
    font-size: medium;
    /* text-align: center; */
    /* width: 300px; */
    text-wrap: wrap;
    text-overflow: ellipsis !important;
    text-align: center;

    /* text-align: left; */
}

.bold-text {
    font-weight: bold !important;
}

.unselectable {
    user-select: none; /* Standard syntax */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

.offwhite-text {
    color: var(--pace-off-white);
}

.benefit i {
    color: var(--pace-light-blue);
    margin-bottom: 5px;
}

.final-cta-section {
    width: 100%;
    /* background-size: cover; */
    padding: 0px; /* Padding for the section */
    /* padding-left: 20%; */
    display: flex; /* Use flexbox for alignment */
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    text-align: center; /* Center the text */
}

.pace-orange {
    color: var(--pace-orange);
}

.dropdown-menu {
    background-color: #f0f0f0f1;
    border: none;
}
.dropdown-item {
    /* background-color: #f0f0f0f1; */
    color: var(--pace-blue);
}

.dropdown-item:hover{
    /* background-color: #f0f0f0f1; */
    color: var(--pace-orange);
}

.topblock-section {
    display: flex;
    justify-content: center; /* Center the topblock-container */
    align-items: center;
    width: 100%;
    padding: 0;
}

/* Container for the list items */
.topblock-container {
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    align-items: flex-start; /* Align items to the start of the container */
    color: #86c2f3;
    text-align: left;
    width: 45%; /* Adjust width as needed */
}

/* Style for each bullet item */
.topblock-container .topblock-bullet {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}


/* Space between icon and text */
.topblock-container .topblock-bullet i {
    margin-right: 10px;
    
}

/* Container for the right section text and button */
.topblock-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #86c2f3;
    width: 45%; /* Ensure it takes up the right part of the screen */
}

/* Style for the action button */
.action-button {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px; /* Adjust margin as needed */
}

.spacer {
    height: 50px; /* Adds space between the content and the footer */
}

footer {
    background-color: var(--pace-off-white);
    color: var(--pace-blue);
    text-align: center;
    padding: 10px 0;
    width: 100%; /* Ensures footer does not exceed the width of the viewport */
    position: relative;
    bottom: 0;
}
/* /*------------------------------------------------------------------------------------------------ */





.hero {
    text-align: center;
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

.showcase {
    margin: 60px 0;
}

.showcase__image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 60px 0;
}

.feature {
    text-align: center;
    margin: 20px;
    flex-basis: calc(25% - 40px);
}

.feature i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: darken(var(--secondary-color), 10%);
}

.problem-solution {
    display: flex;
    align-items: center;
    margin: 60px 0;
}

.problem-solution__image {
    flex: 1;
    margin-right: 20px;
    margin-left: 15px;
}

.problem-solution__image img {
    width: 100%;
    border-radius: 8px;
}

.problem-solution__text {
    flex: 1;
}

.benefits {
    background-color: var(--white);
    padding: 60px 0;
}

.benefits__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit {
    text-align: center;
}

.benefit__icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.benefit__title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit__list {
    list-style-type: none;
    padding: 0;
}

.benefit__list li {
    margin-bottom: 10px;
}

.final-cta {
    text-align: center;
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.final-cta__title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .problem-solution {
        flex-direction: column;
    }

    .problem-solution__image {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .feature {
        flex-basis: calc(50% - 40px);
    }
}


/* -------------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .responsive-logo {
        display: none;
    }
    .video-section {
      flex-direction: column; /* Stack elements vertically on small screens */
    }
    .video-container, .text-container {
      flex: none; /* Reset flex to default for small screens */
      width: 100%; /* Make the containers take the full width */
      padding: 10px; /* Reduce padding for small screens */
    }

    .text-container2 {
        flex: none; /* Reset flex to default for small screens */
        width: 100%; /* Make the containers take the full width */
        padding: 10px; /* Reduce padding for small screens */   
    }

    .text-container h2 {
        font-size: 30px
    }

    .text-container h3 {
        font-size: 25px;
    }

    .rounded-iframe {
      width: 100%; /* Set the iframe width to 100% for small screens */
      max-width: 560px; /* Set a maximum width if needed */
      height: auto; /* Maintain aspect ratio */
    }

    .column {
        /* flex: none; /* Reset flex to default on small screens */
        width: 100%; /* Full width on small screens */
    }
    .headline {
        font-size: 40px; /* Reduce font-size on small screens */
    }
    .headline0 {
        font-size: 40px; /* Reduce font-size on small screens */
    }
    .subheadline {
        font-size: 26px; /* Reduce font-size on small screens */
        color: var(--pace-orange);
    }
    .action-button {
        font-size: 20px; /* Reduce font-size on small screens */
        /* padding: 10px 16px; /* Reduce padding on small screens */
    }
    .benefit {
        /* center the benefit divs vertically */
        align-items: center;
        width: 100%; /* Takes up 100% of the container's width */
        margin-bottom: 20px; /* Space between the divs */
    }

    .benefits-section {
        font-size: 40px; /* Reduce the main header's font size */
        display: flex;
        flex-direction: column;
        width: 100%;
        vertical-align: center;
    }

    .benefit-icon {
        font-size:40px; /* Reduce the icon size */
    }

    .topblock-section {
        display: flex; /* Aligns the benefit divs horizontally */
        vertical-align: center;
        width: 100%; /* Takes up 30% of the container's width */
        align-items: center; 
        flex-direction: column; 
        padding: 1px; 
    }
    .topblock {
        display: flex; /* Aligns the benefit divs horizontally */
        vertical-align: center;
        width: 100%; /* Takes up 30% of the container's width */
        align-items: center; 
        flex-direction: column; 
        padding: 10px; 
        margin: 10px;

    }

}

/* settings for 4k large screens */
@media screen and (min-width: 2000px) { /* --- 4k large screens --- */
    
    .headline {
        font-size: 80px; /* Enlarge font-size on big screens */
    }

    .headline0 {
        font-size: 80px; /* Enlarge font-size on big screens */
    }

    .subheadline {
        font-size: 40px; /* Enlarge font-size on big screens */
    }

    .topblock-bullet {
        font-size: 24px;
        color: var(--pace-light-blue);
    }


}