@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
/* Gradient of background */
/* Gradient for elements */
/* Styling of text*/
* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

html, body {
  height: 100%;
}

html {
  color: #f0f0f0;
}

/* Main header for the webpage titles*/
h1 {
  max-width: 100%;
  color: white;
  text-align: center;
  padding-bottom: 3em;
}

.h2-content {
  text-align: left;
  font-size: 3rem;
  color: white;
}
@media screen and (max-width: 700px) {
  .h2-content {
    font-size: 2em;
  }
}

.h2-article {
  text-align: left;
  font-size: 3rem;
  color: black;
}
@media screen and (max-width: 700px) {
  .h2-article {
    font-size: 2em;
  }
}

h3, h4 {
  padding: 5px;
  color: white;
}

body {
  min-height: 100vh;
  color: black;
  align-content: center;
}

p {
  color: black;
  text-align: center;
}

.medium-text-margin {
  margin: 6em;
}
@media screen and (max-width: 700px) {
  .medium-text-margin {
    margin: 0.5em 0.5em 0.5em 1em;
  }
}

.long-text {
  text-align: left;
  font-size: 1.5em !important;
  margin-top: 1em;
  margin-bottom: 1em; /* Larger gap between paragraphs */
  line-height: 1.5em;
}

/* Title of the web page*/
.banner-title {
  text-align: left;
  font-size: 5.5rem;
  padding-top: 1em;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 700px) {
  .banner-title {
    width: 30%;
    font-size: 3em;
  }
}

/* For the link on index page */
.link-style {
  align-self: flex-start;
  margin-bottom: 5em;
  text-align: left; /* Aligns text inside */
  font-size: 2rem; /* Adjust font size */
  color: white; /* Text color */
  display: inline-block; /* Make the link span its container */
  position: relative;
  text-decoration: none;
  position: relative;
}
.link-style::after {
  content: "";
  height: 4px;
  border-radius: 2px;
  width: 0;
  background: linear-gradient(90deg, #84c167, #007BFF);
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: width 0.2s ease-in-out;
}
.link-style:hover::after {
  width: 100%;
}
.link-style .i {
  vertical-align: middle; /* Align the icon with the text */
  margin-left: 0.5rem; /* Adjust spacing between text and icon */
}

/* Indentation for the group */
.group_indentation {
  margin-left: 7rem;
  margin-right: 7rem;
}
@media screen and (max-width: 700px) {
  .group_indentation {
    margin-left: 2em;
    margin-right: 0.5em;
  }
}

/* Box for the main text header */
.header_box {
  width: 10em;
}

input[type=number] {
  width: 25% !important;
  padding: 0.5em !important;
  border: 2px solid #007BFF !important;
  border-radius: 1em !important;
  justify-content: space-between;
}

.error-message {
  color: red !important;
  font-size: 1em;
  display: none; /* Hidden by default */
}

.card-calculator {
  background: #97be9c;
  border: 2px solid #5b93dd;
  border-radius: 1em;
  padding: 2em;
  position: relative;
  filter: drop-shadow(0 0 2em #5b93dd);
  margin-bottom: 2em;
  max-width: 100%;
}

.info-para {
  padding: 2em;
}

.horizontal_layout p {
  padding-left: 0;
}

.fa-solid {
  font-size: 2em;
}

.card-sizing {
  width: auto;
}

/*
.cost {
  border: 2px solid darkred !important;
  border-radius: 1em;
  margin-top: 1em !important;
}

 */
.revenue {
  border: 2px solid #04AA6D !important;
  border-radius: 1em;
  margin-top: 1em !important;
}

.text {
  flex: 1;
  margin-left: 1em;
  margin-right: 1em;
}
@media screen and (max-width: 700px) {
  .text {
    margin: 0;
  }
}

.video {
  flex: 1;
  border-radius: 1em;
  margin-right: 4em;
  margin-top: 4em;
  margin-bottom: 4em;
  margin-left: 4em;
  filter: drop-shadow(0 0 2em #5b93dd);
}
@media screen and (max-width: 700px) {
  .video {
    margin: 2em;
    height: auto;
    width: 9em;
  }
}

/* Vertical flex layout */
.vertical_layout {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--gap, 1rem); /* Use CSS variable with a default value */
}

/* Horizontal flex layout*/
.horizontal_layout {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 2;
}
@media screen and (max-width: 700px) {
  .horizontal_layout {
    align-items: center;
    justify-content: center;
  }
}

/* Indentation for the group */
.questionnaireCalc_indentation {
  margin-left: 1rem;
  margin-right: 1rem;
  align-items: center;
  justify-content: center;
}

.text-padding {
  padding: 1em;
}

/* All elements for the navbar*/
/* Elements to the navbar*/
.navbar {
  width: 100%;
  margin: auto;
  box-sizing: border-box;
  padding: 2.5em;
  align-items: center;
  overflow: hidden;
  justify-content: space-between;
  position: relative;
  display: flex;
}

/* Sets the elements vertical in navbar*/
.row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Consistent spacing between items */
}

/* Company logo*/
.logo {
  cursor: pointer;
  border-radius: 1em;
  position: relative;
  max-width: 5em;
  height: auto;
}

/* Making the elements "hover-able"*/
.item {
  position: relative;
  display: inline-block;
}

/* Styling of all the anchor items elements*/
.item a {
  text-decoration: none;
  color: #fff;
  position: relative;
  position: relative;
}
.item a::after {
  content: "";
  height: 4px;
  border-radius: 2px;
  width: 0;
  background: linear-gradient(90deg, #84c167, #007BFF);
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: width 0.2s ease-in-out;
}
.item a:hover::after {
  width: 100%;
}

/* Separator styling for navigation element */
.separator {
  color: white;
  font-size: 16px;
}

/* For the active link */
.active::before {
  content: "";
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  height: 5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #84c167, #007BFF);
}

/* off-screen-menu */
.off-screen-menu {
  background-color: rgb(34, 37, 49);
  height: 100vh;
  width: 100%;
  max-width: 450px;
  position: fixed;
  top: 0;
  right: -450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-size: 3rem;
  transition: 0.3s ease;
  z-index: 3;
}

.off-screen-menu.active {
  right: 0;
  gap: 5em !important;
}

/* ham menu */
.ham-menu {
  cursor: pointer;
  height: 50px;
  width: 40px;
  margin-left: auto;
  position: relative;
  display: none;
  z-index: 4;
}

.ham-menu span {
  height: 5px;
  width: 100%;
  background-color: white;
  border-radius: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}

.ham-menu span:nth-child(1) {
  top: 25%;
}

.ham-menu span:nth-child(3) {
  top: 75%;
}

.ham-menu.active span {
  background-color: white;
}

.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
  opacity: 0;
}

.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 700px) {
  .row {
    display: none;
  }
  .ham-menu {
    display: flex;
  }
}
.vertical-spacer {
  gap: 1.5em;
}

.card {
  margin: 0 auto;
  padding: 2em;
  width: 15em;
  background: #97be9c;
  text-align: center;
  border-radius: 0.5em;
  position: relative;
  height: auto; /* Set a fixed height for the card */
}

.card-dynamic {
  margin: 0 auto;
  padding: 1em;
  position: relative;
}

.card-blue {
  background: #6cb4ee;
}

/* Container for the cards */
.card-container {
  display: flex;
  justify-content: space-between; /* Distribute boxes evenly */
  gap: 2em; /* Add space between the boxes */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  padding: 5em; /* sets the padding around the boxes */
  margin: auto; /* Centers the container */
  position: relative; /* Change according to your layout needs */
  transform: translateY(0); /* Adjust if necessary */
  text-align: center; /* Keeps text centered */
}

/* Style for the images inside the cards */
.card-image {
  max-width: 50%;
  max-height: 50%;
  overflow: hidden;
  clip-path: circle();
  object-fit: fill;
}

.card p {
  padding: 0;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.card::before,
.card::after,
.card-calendar::before,
.card-calendar::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #5b93dd;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 10px;
  animation: 3s spin linear infinite;
}

.card::before,
.card-calendar::before {
  filter: blur(1.5rem);
  opacity: 0.5;
}

.bottom-region {
  font-size: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 2; /* Adjust this value as needed */
  text-align: center;
  color: white;
  background-color: #cecece;
}

.bottom-region h2 {
  color: white;
}

.bottom-region a {
  text-decoration: none;
  font-weight: bold;
}

.bottom-region a:hover {
  text-decoration: underline;
}

/*.button{
  padding: 1em 2em;
  border: none;
  border-radius: 40px;
  background-color: #6cb4ee;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
*/
.button {
  background-color: #04AA6D; /* Green */
  border: none;
  color: white;
  padding: 1em 2em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 2em 1em;
  transition-duration: 0.4s;
  cursor: pointer;
  filter: drop-shadow(0 0 4px currentcolor);
}

.button {
  border-radius: 2em;
  background-color: white;
  color: black;
  border: 2px solid #04AA6D;
}

.button:hover {
  background-color: #04AA6D;
  color: white;
  align-items: end;
}

.divider {
  position: relative;
  height: 1em;
  background: linear-gradient(90deg, #84c167, #007BFF);
  /* Apply gradient to the main element */
  z-index: 1;
}
.divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit; /* Use the same gradient */
  filter: blur(10px); /* Blur to simulate a shadow */
  z-index: -1; /* Place behind the element */
}

.spacer {
  flex: 1;
}

.banner {
  width: 100%;
  overflow: auto;
  background-image: linear-gradient(rgba(13, 35, 1, 0.44), rgba(12, 40, 88, 0.9)), url("../photos/background.jpg"); /* Path is correct, and must be this to compile properly */
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.main {
  background-color: #cecece;
}

.list-items {
  width: 85%;
  margin: auto;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.list-items ul li {
  list-style: none;
  display: block;
  margin: 20px;
  position: relative;
}

/* Basic styling for the layout */
.calculator-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  border-radius: 8px;
  background-color: #f4f4f4;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: Arial, sans-serif;
}

input[type=number] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.result {
  margin-top: 20px;
  font-size: 1.2em;
  color: #333;
}

.break {
  flex-basis: 100%; /* Forces a new row */
}

.container-vertical {
  padding-right: 3em;
  padding-left: 3em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #cecece;
}

/*# sourceMappingURL=style.css.map */
