@charset "UTF-8";

:root {
  --primary-color: #0099cc;
  --secondary-color: #2ecc71;
  --accent-color: #e74c3c;
  --background-color-light: #ecf0f1;
  --background-color-dark: #1a242f;
  --background-color-secondary: #e2f5ea;
  --background-hero: #d0dfe5;
  --text-color: #2c3e50;
  --text-color-dark: #1a242f;

  --max-width: 900px;
  --default-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  color: var(--text-color);
  font-size: 1em;
  line-height: 1.4;
  background-color: var(--background-color-light);
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  margin: 0px;
  padding: 0px;
}

body {
  font-family: "calibri", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: var(--text-color);
  background-color: var(--background-color-light);
}

h1 {
  font-size: 3.0em;
  font-weight: normal;
  margin-bottom: 20px;
}

h2 {
  font-size: 2.2em;
  font-weight: normal;
  margin-bottom: 15px;
}

h3 {
  font-size: 1.8em;
  font-weight: normal;
  margin-bottom: 10px;
}

.line-separator {
  background-color: var(--secondary-color);
  display: block;
  width: 120px;
  height: 2px;
  margin: 15px 0px;
}

p {
  font-size: 1.3em;
  font-weight: normal;
  margin-bottom: 5px;
}

.fineprint {
  font-size: 1.0em;
  text-align: justify;
}

ul {
  list-style-position: inside;
}


.primary-color-text {
  color: var(--primary-color);
}

.secondary-color-text {
  color: var(--secondary-color);
}

.centerContainer {
  display: block;
  position: relative;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hcenter {
  position: relative;
  left: 50%;
  transform: translate(-50%);
}

.fill {
  width: 100%;
  height: 100%;
}

.hfill {
  width: 100%;
}

.vfill {
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  object-fit: contain;
}

.navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: white;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.navbar-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.firstBlock {
  margin-top: 100px;
}

.hero {
  background-color: var(--background-hero);
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%),
    url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
}

.hero-neurorad-bg {
  background:
          linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%),
          url("../img/neurorad.jpg");
  background-size: cover;
  background-position: center;
}

.hero-thoraxrad-bg {
  background:
          linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%),
          url("../img/thoraxrad.jpg");
  background-size: cover;
  background-position: center;
}

.hero-abdomenrad-bg {
  background:
          linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%),
          url("../img/abdomenrad.jpg");
  background-size: cover;
  background-position: center;
}

.hero-mskrad-bg {
  background:
          linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%),
          url("../img/mskrad.jpg");
  background-size: cover;
  background-position: center;
}

.hero-herzrad-bg {
  background:
          linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%),
          url("../img/herzrad.jpg");
  background-size: cover;
  background-position: center;
}

.hero-prostatarad-bg {
  background:
          linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%),
          url("../img/prostatarad.jpg");
  background-size: cover;
  background-position: center;
}

.hero-howto-bg {
  background:
          linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%),
          url("../img/howtohero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-mammarad-bg {
  background:
          linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%),
          url("../img/mammahero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-travelrad-bg {
  background:
          linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%),
          url("../img/travelhero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: left;
  color: white;
}

.hero h1 {
  color: white;
  font-weight: bold;
  font-size: 3.7em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero h2 {
  margin-top: 0;
  color: white;
  font-weight: normal;
  font-size: 2.6em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-weight: normal;
  font-size: 2.0em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.button-container {
  display: flex;
  justify-content: center; /* Center the button group */
  gap: 10px; /* Optional: space between buttons */
}

.button {
  background-color: white;
  color: var(--text-color);
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  border-radius: 50px;
  margin-top: 20px;
  display: inline-block;
  box-shadow: var(--default-shadow);
  transition: background-color 0.3s ease;
}

.button-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  border-radius: 50px;
  margin-top: 20px;
  display: inline-block;
  box-shadow: var(--default-shadow);
  transition: background-color 0.3s ease;
}

.button-secondary {
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  border-radius: 50px;
  margin-top: 20px;
  display: inline-block;
  box-shadow: var(--default-shadow);
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: var(--text-color);
  color: white;
}

.content {
  padding: 50px 20px;
}

.content-area {
  max-width: var(--max-width);
  margin: 0 auto;
}

.content-light {
  background-color: white;
}

.content-dark {
  background-color: var(--background-color-dark);
  color: white;
}

.content-bg2 {
  background-color: transparent;
}

.content-bgsecondary {
  background-color: var(--background-color-secondary);
}

ul.check-list {
  list-style-type: none; /* Remove default numbering */
  margin: 0 auto; /* Center the ul element */
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
}

ul.check-list li {
  list-style-type: none;
  font-size: 1.3em;
  text-align: left;
  padding: 10px 10px 10px 50px;
  position: relative;
  min-width: 200px;
}

ul.check-list li::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  border-radius: 50%;
}

ul.check-list li::after {
  content: "";
  width: 15px;
  height: 8px;
  position: absolute;
  left: 7.5px;
  top: 50%;
  transform: translateY(calc(-50% - 1px)) rotate(-45deg);
  border-left: 3px solid white;
  border-bottom: 3px solid white;
}

ol {
  counter-reset: list-counter;
  list-style-type: none;
  margin: 20px auto;
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
  gap: 20px;
}

ol li {
  counter-increment: list-counter;
  list-style-type: none;
  font-size: 1.3em;
  text-align: justify;
  /*margin: 20px;*/
  position: relative;
  padding: 30px 30px 30px 70px; /* Space for the numbers */
  color: var(--text-color);
  background-color: white;
  box-shadow: var(--default-shadow);
  border-radius: 10px; /* Optional: rounded corners */
}

ol li::before {
  content: counter(list-counter) ".";
  font-size: 2.5em; /* Big number size */
  font-weight: bold; /* Bold number */
  color: var(--primary-color); /* Pastel color */
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%); /* Center vertically */
  opacity: 50%;
}

ol.flow {
  max-width: 1000px;
  justify-content: center;
  align-items: stretch;
}

ol.flow li{
  flex: 1 1 350px;
  text-align: left;
}

.mini-card {
  flex: 1;
  min-width: 270px;
  background-color: white;
  color: var(--text-color);
  border-radius: 10px;
  box-shadow: var(--default-shadow);
  padding: 10px;
  margin: 0;
  gap: 10px;
  text-align: center;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}

.mini-card h3 {
  color: var(--primary-color);
  font-weight: bold;
}

.mini-card img {
  max-width: 200px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* Adjusted min size to 250px */
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.card {
  background-color: white;
  color: var(--text-color);
  border-radius: 10px;
  box-shadow: var(--default-shadow);
  padding: 20px;
  text-align: justify;
  min-width: 330px;
  transition: background-color 0.3s ease;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 15px;
}

.icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.icon-head {
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  mask: url('../img/head.png') no-repeat center;
  -webkit-mask: url('../img/head.png') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.icon-heart {
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  mask: url('../img/heart.png') no-repeat center;
  -webkit-mask: url('../img/heart.png') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.icon-liver {
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  mask: url('../img/liver.png') no-repeat center;
  -webkit-mask: url('../img/liver.png') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.icon-spine {
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  mask: url('../img/spine.png') no-repeat center;
  -webkit-mask: url('../img/spine.png') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.icon-lungs {
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  mask: url('../img/lungs.png') no-repeat center;
  -webkit-mask: url('../img/lungs.png') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.icon-prostate {
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  mask: url('../img/prostate.png') no-repeat center;
  -webkit-mask: url('../img/prostate.png') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.icon-breastcancer {
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  mask: url('../img/breastcancer.png') no-repeat center;
  -webkit-mask: url('../img/breastcancer.png') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.icon-travel {
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  mask: url('../img/travel.png') no-repeat center;
  -webkit-mask: url('../img/travel.png') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.align-start {
  align-items: start !important;
}

.align-stretch {
  align-items: stretch !important;
}

.align-end {
  align-items: end !important;
}

.child-stretch {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.grow {
  flex: 1;
}

.column-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.column-content {
  flex: 1 1 300px;
  min-width: 300px;
  /*padding: 10px;*/
}

.column-content-fixed {
  flex: 0 0 350px;
  min-width: 330px;
  /*padding: 10px;*/
}

.column-content-fixed-small {
  flex: 0 0 250px;
  min-width: 250px;
  /*padding: 10px;*/
}

.image-text-container {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping the content when there isn't enough space */
  align-items: center; /* Align items vertically in the center */
  justify-content: center;
  padding: 20px 0;
}

.image-text-container img {
  flex: 0 0 200px; /* Fixed width of 200px for the image */
  max-width: 100%; /* Ensures the image doesn't overflow its container */
}

.text-content {
  flex: 1; /* The text content takes up the remaining space */
  min-width: 300px; /* Prevents the text from shrinking too much */
  padding: 10px 30px;
}

.circle-image {
  border-radius: 50%; /* Creates the circular shape */
  overflow: hidden; /* Ensures the image fits within the circle */
  object-fit: cover; /* Ensures the image covers the entire area of the circle */
  display: block; /* Ensures the image behaves like a block element */
}

.rounded-image {
  border-radius: 10px; /* Creates the circular shape */
  overflow: hidden; /* Ensures the image fits within the circle */
  object-fit: cover; /* Ensures the image covers the entire area of the circle */
  display: block; /* Ensures the image behaves like a block element */
}

.square-img-wrapper {
  width: 100%; /* This makes the wrapper responsive */
  padding-top: 100%; /* 1:1 Aspect Ratio (100% of the width) */
  position: relative; /* For positioning the image absolutely */
  overflow: hidden; /* To ensure the image doesn’t overflow the wrapper */
}

.square-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire area, cropping if necessary */
}

.footer {
  background-color: var(--background-color-dark);
  padding: 20px;
  color: white;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  padding: 0;
}


[tooltip] {
  position: relative;
  cursor: help; /* Optional: change cursor to indicate interactivity */
  color: var(--primary-color);
  text-decoration: underline;
}

[tooltip]::after {
  content: attr(tooltip);
  position: absolute;
  top: 125%;
  left: 50%;
  min-width: 300px;
  max-width: 350px;
  transform: translateX(-50%);
  background-color: white;
  color: var(--text-color);
  box-shadow: var(--default-shadow);
  outline: 1px solid var(--primary-color);
  padding: 10px;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

[tooltip]:hover::after,
[tooltip]:hover::before {
  visibility: visible;
  opacity: 1;
}


/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

@media only screen and (max-width: 560px) {
  body {
    font-size: 12px;
  }

  .hero h1 {
    color: white;
    font-weight: bold;
    font-size: 3.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }

  .hero h2 {
    margin-top: 0;
    color: white;
    font-weight: normal;
    font-size: 2.4em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }

  .hero p {
    font-weight: normal;
    font-size: 2.0em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }
}
