@charset "UTF-8";
/*
Theme Name: R&D Ready System
*/
/**
 * SETTINGS
 * File-header..........The file header for the themes style.css file.
 * Fonts................Any font files, if the project needs specific fonts.
 * Global...............Project-specific, globally available variables.
 *
 * TOOLS
 * Functions............Global functions.
 * Mixins...............Global mixins.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults.
 * Breakpoints..........Mixins and variables for responsive styles
 * Vertical-margins.....Vertical spacing for the main components.
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Clearings............Clearings for the main components.
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Forms................Element-level form styling.
 * Headings.............H1–H6
 * Links................Default links.
 * Lists................Default lists.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 *
 * BLOCKS
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block.
 * Image................Specific styles for the image block.
 * Latest comments......Specific styles for the latest comments block.
 * Latest posts.........Specific styles for the latest posts block.
 * Legacy...............Specific styles for the legacy gallery.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Navigation...........Specific styles for the navigation block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Spacer...............Specific styles for the spacer block.
 * Table................Specific styles for the table block.
 * Verse................Specific styles for the verse block.
 * Video................Specific styles for the video block.
 * Utilities............Block alignments.
 *
 * COMPONENTS
 * Header...............Header styles.
 * Footer...............Footer styles.
 * Comments.............Comment styles.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Navigation...........Navigation styles.
 * Footer Navigation....Footer Navigation styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors.
 * Editor Font Sizes....Editor Font Sizes.
 * Measure..............The width of a line of text, in characters.
 */
/* Categories 01 to 03 are the basics. */
/* Variables */
:root {
  --font-headings: 'Nunito Sans';
  --font-base: 'Nunito Sans';
  /* Font Family */
  --global--font-primary: var(
    --font-headings,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    'Helvetica Neue',
    sans-serif
  );
  --global--font-secondary: var(
    --font-base,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    'Helvetica Neue',
    sans-serif
  );
  /* Font Size */
  --global--font-size-base: 0.875rem;
  --global--font-size-xs: 0.75rem;
  --global--font-size-sm: 1.125rem;
  --global--font-size-md: 1rem;
  --global--font-size-lg: 1.5rem;
  --global--font-size-xl: 2.25rem;
  --global--font-size-xxl: 4rem;
  --global--font-size-xxxl: 5rem;
  --global--font-size-page-title: var(--global--font-size-xxl);
  --global--letter-spacing: normal;
  /* Line Height */
  --global--line-height-body: 1.5;
  --global--line-height-heading: 1.3;
  --global--line-height-page-title: 1.1;
  /* Headings */
  --heading--font-family: var(--global--font-primary);
  --heading--font-size-h6: var(--global--font-size-xs);
  --heading--font-size-h5: var(--global--font-size-sm);
  --heading--font-size-h4: var(--global--font-size-lg);
  --heading--font-size-h3: calc(1.25 * var(--global--font-size-lg));
  --heading--font-size-h2: var(--global--font-size-xl);
  --heading--font-size-h1: var(--global--font-size-page-title);
  --heading--letter-spacing-h6: 0.05em;
  --heading--letter-spacing-h5: 0.05em;
  --heading--letter-spacing-h4: var(--global--letter-spacing);
  --heading--letter-spacing-h3: var(--global--letter-spacing);
  --heading--letter-spacing-h2: var(--global--letter-spacing);
  --heading--letter-spacing-h1: var(--global--letter-spacing);
  --heading--line-height-h6: var(--global--line-height-heading);
  --heading--line-height-h5: var(--global--line-height-heading);
  --heading--line-height-h4: var(--global--line-height-heading);
  --heading--line-height-h3: var(--global--line-height-heading);
  --heading--line-height-h2: var(--global--line-height-heading);
  --heading--line-height-h1: var(--global--line-height-page-title);
  --heading--font-weight: normal;
  --heading--font-weight-page-title: 300;
  --heading--font-weight-strong: 600;
  /* Block: Latest posts */
  --latest-posts--title-font-family: var(--heading--font-family);
  --latest-posts--title-font-size: var(--heading--font-size-h3);
  --latest-posts--description-font-family: var(--global--font-secondary);
  --latest-posts--description-font-size: var(--global--font-size-sm);
  --list--font-family: var(--global--font-secondary);
  --definition-term--font-family: var(--global--font-primary);
  /* Colors */
  --global--color-black: #000;
  --global--color-dark-gray: #595959;
  --global--color-gray: #e6e6e6;
  --global--color-light-gray: #f0f0f0;
  --global--color-blue: #d1dfe4;
  --global--color-green: #36b147;
  --global--color-red: rgb(217, 48, 37);
  --global--color-orange: #ec961b;
  --global--color-yellow: #eeeadd;
  --global--color-white: #fff;
  --global--color-turquoise: #247088;
  --global--color-white-50: rgba(255, 255, 255, 0.5);
  --global--color-white-90: rgba(255, 255, 255, 0.9);
  --global--color-primary: var(--global--color-turquoise); /* Body text color, site title, footer text color. */
  --global--color-secondary: var(--global--color-turquoise); /* Headings */
  --global--color-primary-hover: var(--global--color-turquoise);
  --global--color-background: var(--global--color-turquoise); /* Mint, default body background */
  --global--color-border: var(--global--color-primary); /* Used for borders (separators) */
  /* Spacing */
  --global--spacing-unit: 20px;
  --global--spacing-measure: unset;
  --global--spacing-horizontal: 25px;
  --global--spacing-vertical: 10px;
  /* Forms */
  --form--font-family: var(--global--font-secondary);
  --form--font-size: var(--global--font-size-sm);
  --form--line-height: var(--global--line-height-body);
  --form--color-text: var(--global--color-dark-gray);
  --form--color-ranged: var(--global--color-secondary);
  --form--label-weight: 500;
  --form--border-color: var(--global--color-secondary);
  --form--border-width: 3px;
  --form--border-radius: 0;
  --form--spacing-unit: calc(0.5 * var(--global--spacing-unit));
  /* Cover block */
  --cover--height: calc(15 * var(--global--spacing-vertical));
  --cover--color-foreground: var(--global--color-white);
  --cover--color-background: var(--global--color-black);
  /* Buttons */
  --button--color-text: var(--global--color-background);
  --button--color-text-hover: var(--global--color-secondary);
  --button--color-text-active: var(--global--color-secondary);
  --button--color-background: var(--global--color-secondary);
  --button--color-background-active: var(--global--color-background);
  --button--font-family: var(--global--font-primary);
  --button--font-size: var(--global--font-size-base);
  --button--font-weight: 500;
  --button--line-height: 1.5;
  --button--border-width: 3px;
  --button--border-radius: 0;
  --button--padding-vertical: 15px;
  --button--padding-horizontal: calc(2 * var(--button--padding-vertical));
  /* entry */
  --entry-header--color: var(--global--color-primary);
  --entry-header--color-link: currentColor;
  --entry-header--color-hover: var(--global--color-primary-hover);
  --entry-header--color-focus: var(--global--color-secondary);
  --entry-header--font-size: var(--heading--font-size-h2);
  --entry-content--font-family: var(--global--font-secondary);
  --entry-author-bio--font-family: var(--heading--font-family);
  --entry-author-bio--font-size: var(--heading--font-size-h4);
  /* Header */
  --branding--color-text: var(--global--color-primary);
  --branding--color-link: var(--global--color-primary);
  --branding--color-link-hover: var(--global--color-secondary);
  --branding--title--font-family: var(--global--font-primary);
  --branding--title--font-size: var(--global--font-size-lg);
  --branding--title--font-size-mobile: var(--heading--font-size-h4);
  --branding--title--font-weight: normal;
  --branding--title--text-transform: uppercase;
  --branding--description--font-family: var(--global--font-secondary);
  --branding--description--font-size: var(--global--font-size-sm);
  --branding--description--font-family: var(--global--font-secondary);
  --branding--logo--max-width: 300px;
  --branding--logo--max-height: 100px;
  --branding--logo--max-width-mobile: 96px;
  --branding--logo--max-height-mobile: 96px;
  /* Main navigation */
  --primary-nav--font-family: var(--global--font-secondary);
  --primary-nav--font-family-mobile: var(--global--font-primary);
  --primary-nav--font-size: var(--global--font-size-md);
  --primary-nav--font-size-sub-menu: var(--global--font-size-xs);
  --primary-nav--font-size-mobile: var(--global--font-size-lg);
  --primary-nav--font-size-sub-menu-mobile: var(--global--font-size-sm);
  --primary-nav--font-size-button: var(--global--font-size-xs);
  --primary-nav--font-style: normal;
  --primary-nav--font-style-sub-menu-mobile: normal;
  --primary-nav--font-weight: 500;
  --primary-nav--font-weight-button: 500;
  --primary-nav--color-link: var(--global--color-turquoise);
  --primary-nav--color-link-hover: var(--global--color-primary-hover);
  --primary-nav--color-text: var(--global--color-white);
  --primary-nav--padding: calc(0.8 * var(--global--spacing-unit));
  --primary-nav--border-color: var(--global--color-primary);
  --primary-nav--background: var(--global--color-turquoise);
  /* Pagination */
  --pagination--color-text: var(--global--color-primary);
  --pagination--color-link-hover: var(--global--color-primary-hover);
  --pagination--font-family: var(--global--font-secondary);
  --pagination--font-size: var(--global--font-size-lg);
  --pagination--font-weight: normal;
  --pagination--font-weight-strong: 600;
  /* Footer */
  --footer--color-text: var(--global--color-white);
  --footer--color-link: var(--global--color-white);
  --footer--color-link-hover: var(--global--color-white);
  --footer--font-family: var(--global--font-primary);
  --footer--font-size: var(--global--font-size-xs);
  --footer--color-background: var(--global--color-turquoise);
  /* Block: Pull quote */
  --pullquote--font-family: var(--global--font-primary);
  --pullquote--font-size: var(--heading--font-size-h3);
  --pullquote--font-style: normal;
  --pullquote--letter-spacing: var(--heading--letter-spacing-h4);
  --pullquote--line-height: var(--global--line-height-heading);
  --pullquote--border-width: 3px;
  --pullquote--border-color: var(--global--color-primary);
  --pullquote--color-foreground: var(--global--color-primary);
  --pullquote--color-background: var(--global--color-background);
  --quote--font-family: var(--global--font-secondary);
  --quote--font-size: var(--global--font-size-md);
  --quote--font-size-large: var(--global--font-size-xl);
  --quote--font-style: normal;
  --quote--font-weight: 700;
  --quote--font-weight-strong: bolder;
  --quote--font-style-large: normal;
  --quote--font-style-cite: normal;
  --quote--line-height: var(--global--line-height-body);
  --quote--line-height-large: 1.35;
  --separator--border-color: var(--global--color-border);
  --separator--height: 1px;
  /* Block: Table */
  --table--stripes-border-color: var(--global--color-light-gray);
  --table--stripes-background-color: var(--global--color-light-gray);
  --table--has-background-text-color: var(--global--color-dark-gray);
  /* Widgets */
  --widget--line-height-list: 1.9;
  --widget--line-height-title: 1.4;
  --widget--font-weight-title: 700;
  --widget--spacing-menu: calc(0.66 * var(--global--spacing-unit));
  /* Admin-bar height */
  --global--admin-bar--height: 0px;
}

.admin-bar {
  --global--admin-bar--height: 32px;
}
@media only screen and (max-width: 782px) {
  .admin-bar {
    --global--admin-bar--height: 46px;
  }
}

@media only screen and (min-width: 652px) {
  :root {
    --global--font-size-xl: 2.5rem;
    --global--font-size-xxl: 6rem;
    --global--font-size-xxxl: 9rem;
    --heading--font-size-h3: 2rem;
    --heading--font-size-h2: 3rem;
    --global--font-size-base: 1rem;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration-thickness: 1px;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration-style: dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type='checkbox'],
[type='radio'] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/**
 * Responsive Styles
 */
/**
 * Required Variables
 */
/**
 * Root Media Query Variables
 */
:root {
  --responsive--spacing-horizontal: calc(2 * var(--global--spacing-horizontal) * 0.6);
  --responsive--aligndefault-width: calc(100vw - var(--responsive--spacing-horizontal));
  --responsive--alignwide-width: calc(100vw - var(--responsive--spacing-horizontal));
  --responsive--alignfull-width: 100%;
  --responsive--alignright-margin: var(--global--spacing-horizontal);
  --responsive--alignleft-margin: var(--global--spacing-horizontal);
}

@media only screen and (max-width: 600px) {
  :root {
    --responsive--aligndefault-width: min(calc(100vw - 4 * var(--global--spacing-horizontal)), 610px);
    --responsive--alignwide-width: calc(100vw - 4 * var(--global--spacing-horizontal));
    --responsive--alignright-margin: calc(0.5 * (100vw - var(--responsive--aligndefault-width)));
    --responsive--alignleft-margin: calc(0.5 * (100vw - var(--responsive--aligndefault-width)));
  }
}
@media only screen and (min-width: 1280px) {
  :root {
    --responsive--aligndefault-width: min(calc(100vw - 8 * var(--global--spacing-horizontal)), 610px);
    --responsive--alignwide-width: min(calc(100vw - 8 * var(--global--spacing-horizontal)), 1240px);
  }
}
/**
 * Extends
 */
.default-max-width {
  max-width: var(--responsive--aligndefault-width);
  margin-left: auto;
  margin-right: auto;
}

.wide-max-width {
  max-width: var(--responsive--alignwide-width);
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 600px) {
  .full-max-width {
    max-width: var(--responsive--alignfull-width);
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
/**
 * Reset specific elements to make them easier to style in other contexts.
 */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
form,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/**
 * Apply generic border-box to all elements.
 * See:
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
html {
  /* Apply border-box across the entire page. */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: var(--global--font-secondary);
  line-height: var(--global--line-height-body);
}

/**
 * Relax the definition a bit, to allow components to override it manually.
 */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  font-size: var(--global--font-size-base);
  font-weight: normal;
  color: var(--global--color-primary);
  text-align: left;
  background-color: var(--global--color-background);
}

p {
  margin: 0 0 10px 0;
}

img {
  height: auto !important;
}

button {
  cursor: pointer;
}

/* For Chrome, Edge, and Safari */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px var(--global--color-gray) inset !important;
}

/* For Firefox */
input:-moz-autofill,
textarea:-moz-autofill {
  box-shadow: 0 0 0px 1000px var(--global--color-gray) inset !important;
}

/* Remove default focus outline for all input fields */
input:focus {
  outline: none;
  border-color: #989898; /* Change the border color when focused */
}

/* Apply the same rule for other types of input elements like textarea and select */
textarea:focus,
select:focus {
  outline: none;
  border-color: #989898;
}

/* Category 04 can contain any default HTML element. Do not add classes here, just give the elements some basic styles. */
ul.points {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 1rem 0;
}
ul.points li {
  margin-left: 50px;
  margin-bottom: 1em;
  position: relative;
}
ul.points li::before {
  content: '';
  background: #f39322;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-box-shadow: -2px 2px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: -2px 2px 5px 0px rgba(0, 0, 0, 0.3);
  position: absolute;
  left: -25px;
  top: 0.25rem;
}
ul.points li ul {
  padding: 1rem;
}
ul.points li ul li {
  margin-bottom: 1em;
  position: relative;
}
ul.points li ul li::before {
  content: '';
  background: #f39322;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-box-shadow: -2px 2px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: -2px 2px 5px 0px rgba(0, 0, 0, 0.3);
  position: absolute;
  left: -25px;
  top: 0.25rem;
}

.search {
  background-color: aquamarine;
}

table {
  border-spacing: 3px !important;
  border-bottom: none !important;
}
table th,
table td {
  padding: 6px;
  border-radius: 3px;
}
table th {
  background-color: var(--global--color-turquoise);
  font-weight: 900;
  color: #ffffff;
}
table td {
  color: var(--global--color-turquoise);
  background-color: rgb(240, 243, 244);
}

/* FILE: main/headings/_headings.scss */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  clear: both;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  text-rendering: optimizeLegibility;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.h1:first-child,
.h2:first-child,
.h3:first-child,
.h4:first-child,
.h5:first-child,
.h6:first-child {
  margin-top: 0;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
  letter-spacing: 0.1em;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* FILE: main/headings/__entry-header.scss */
.single-post .entry-header {
  margin-bottom: 1.62em;
}

.single-post .main-heading.entry-header {
  margin-bottom: 0;
}

.entry-title,
.page-title {
  padding: 0;
  margin: 0 0 6%;
  font-size: 1.5rem;
  text-transform: uppercase;
  word-wrap: break-word;
}

.page-title {
  padding: 3.62rem 0;
  margin: 0;
  text-align: center;
  border-top-width: 2px;
  border-top-style: solid;
}
.archive .page-title,
.search .page-title,
.error404 .page-title {
  padding-top: 0;
  border-width: 0;
}

/* Category 05 is all about adjusting the default block styles to the given layout. I only added three blocks as examples. */
/* Category 06 contains all "bigger" components which contain elements of the previous two categories like header, footer, page template, single template, comments section, archives, ... */
/* Background styles for .page-template-login */
.page-template-login {
  width: 100%;
  background: url('../images/bg-rndready.jpg') no-repeat center center;
  background-size: cover;
  margin: 0;
  padding: 0;
}
.page-template-login .site {
  background: none;
}
.page-template-login .site .site-header {
  background: none;
}

/* Styles for .site and .site-header */
.site {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #f1f3f4;
}
.site .navbar {
  display: none;
  position: sticky;
  top: 0;
  height: 60px;
  padding: 10px;
  z-index: 8888;
  background-color: #ffffff;
}
@media only screen and (max-width: 1200px) {
  .site .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.site .navbar .site-logo {
  z-index: 110;
}
.site .navbar .site-logo img {
  width: 30%;
}
.site .site-header {
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffffff;
  padding: 0;
  z-index: 99995;
  height: 75px;
  -webkit-box-shadow: 0 12px 10px -10px #888888;
  box-shadow: 0 12px 10px -10px #888888;
}
@media only screen and (max-width: 1200px) {
  .site .site-header {
    display: none;
    padding: 5px 0;
  }
}
.site .site-header .profile {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  padding: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.site .site-header .profile .profile_div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.site .site-header .profile .profile_div .profile_company_name {
  color: #808080;
}
.site .site-header .profile .profile_div .profile_company_name select {
  padding: 3px;
}
.site .site-header .profile .profile_div .profile_avatar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.site .site-header .profile .profile_div .profile_name {
  color: #247088;
  font-weight: 900;
}
.site .nav-toggle {
  width: 30px;
  height: 30px;
  line-height: 40px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 110;
  cursor: pointer;
}
@media only screen and (min-width: 1280px) {
  .site .nav-toggle {
    display: none;
  }
}
.site .nav-toggle.is-clicked span {
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.site .nav-toggle.is-clicked span::before,
.site .nav-toggle.is-clicked span::after {
  background-color: #247088;
}
.site .nav-toggle.is-clicked span::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.site .nav-toggle.is-clicked span::after {
  bottom: 0;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
.site .nav-toggle:hover,
.site .nav-toggle:focus {
  color: rebeccapurple;
}
.site .nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin-top: -1px;
  position: relative;
  top: 50%;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  background-color: #247088;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
}
.site .nav-toggle span::before,
.site .nav-toggle span::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.site .nav-toggle span::before {
  top: -7px;
}
.site .nav-toggle span::after {
  bottom: -7px;
}

.site-footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  margin: 0;
  padding: 10px 20px 10px 0;
  font-size: 0.8rem;
  color: var(--global--color-white);
  background-color: var(--footer--color-background);
  z-index: 888;
  /* Media query for screens smaller than 1680px */
}
@media (max-width: 1680px) {
  .site-footer {
    position: relative;
  }
}
.site-footer .site-footer:has(.rf-buttons) {
  height: 60px;
}

.site-info {
  position: relative;
  font-family: var(--footer--font-family);
  font-size: var(--footer--font-size);
  color: var(--footer--color-text);
  line-height: var(--global--line-height-body);
}
.site-info a {
  color: var(--footer--color-link);
}
.site-info a:link,
.site-info a:visited,
.site-info a:active {
  color: var(--footer--color-link);
  text-decoration: none;
}
.site-info a:hover {
  color: var(--footer--color-link-hover);
}
.site-info a:focus {
  color: var(--footer--color-link-hover);
}

.no-results.not-found > *:first-child {
  margin-bottom: calc(3 * var(--global--spacing-vertical));
}

.page-links {
  clear: both;
}
.page-links .post-page-numbers {
  display: inline-block;
  margin-left: calc(0.66 * var(--global--spacing-unit));
  margin-right: calc(0.66 * var(--global--spacing-unit));
  min-width: 44px;
  min-height: 44px;
}
.page-links .post-page-numbers:first-child {
  margin-left: 0;
}

.is-menu-open .nav-wrapper {
  visibility: visible !important;
}

.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px;
  width: 250px;
  height: 100%;
  z-index: 100;
  visibility: visible;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 10px;
}
.nav-wrapper .item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media only screen and (max-width: 1200px) {
  .nav-wrapper {
    visibility: hidden !important;
    top: auto;
    width: 100%;
    height: calc(100% - 60px);
  }
  .nav-wrapper .site-logo {
    display: none;
  }
}
.nav-wrapper .site-logo {
  height: 75px !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto; /* Prevent item-a from growing/shrinking */
}
.nav-wrapper .site-logo img {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50%;
}
.nav-wrapper .sidebar {
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.nav-wrapper .footer {
  height: 150px !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto; /* Prevent item-a from growing/shrinking */
  font-size: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.nav-wrapper .nav-profile {
  -webkit-box-shadow: none;
  box-shadow: none;
  display: none;
}
.nav-wrapper .nav-profile .profile {
  display: block !important;
}

.site-content {
  position: relative;
  margin-left: 250px;
  height: 100%;
}
@media only screen and (max-width: 1200px) {
  .site-content {
    margin-left: 0;
  }
}
.site-content .sidebar {
  position: fixed;
  width: 250px;
  height: 100%;
  padding: 0;
}
@media only screen and (max-width: 1200px) {
  .site-content .sidebar {
    position: absolute;
    width: 100%;
    z-index: 999;
  }
}
.site-content .sidebar .wrapper {
  width: 90%;
  margin: 0 auto;
}
.site-content .container {
  width: 100%;
  padding: 20px;
  height: 100%;
}
@media only screen and (max-width: 1200px) {
  .site-content .container {
    width: 100%;
  }
}
.site-content .content-wrapper {
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: rgba(82, 63, 105, 0.05) 0px 0px 15px 0px;
  box-shadow: rgba(82, 63, 105, 0.05) 0px 0px 15px 0px;
  padding: 30px;
  margin-bottom: 60px;
  min-height: calc(100vh - 200px);
}
.site-content a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  color: var(--global--color-primary);
}
.site-content a:hover {
  color: #1f5f74;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.content-container {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
@media only screen and (min-width: 1600px) {
  .content-container {
    width: 60%;
  }
}

@media only screen and (max-width: 599px) {
  .wp-block-column {
    background-color: pink;
  }
}
#ajax-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99997;
  background-color: #000000;
  opacity: 0.5;
  display: none;
}
#ajax-loader .loader {
  width: 48px;
  height: 48px;
  border: 5px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

label {
  font-weight: 900;
  letter-spacing: 0.03rem;
  cursor: pointer;
}

input[type='checkbox'] {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

input[type='submit'] {
  background-color: #247088;
  color: #ffffff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
input[type='submit']:hover {
  background: #1f5f74;
}
input[type='submit']:disabled {
  background-color: #bfd7e0;
}

.error404 main p {
  font-size: var(--global--font-size-lg);
  margin-bottom: calc(var(--global--spacing-vertical) * 1.6666666667);
}

ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.sidebar-nav {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  ul.sidebar-nav {
    position: relative;
    width: 100%;
  }
}
ul.sidebar-nav .menu-item {
  position: relative;
  margin-bottom: 25px;
  padding-left: 15px;
  line-height: 1;
}
ul.sidebar-nav .menu-item.menu-1 {
  margin-bottom: 0;
}
ul.sidebar-nav .menu-item.menu-2 {
  margin-bottom: 0;
}
ul.sidebar-nav .menu-item a {
  color: #247088;
  font-weight: normal;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  text-decoration: none;
}
ul.sidebar-nav .menu-item a:hover {
  opacity: 0.6;
}
ul.sidebar-nav .menu-item a:visited {
  color: #247088;
}
ul.sidebar-nav .menu-item .menu-header {
  font-weight: 900;
  position: relative;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 99;
}
ul.sidebar-nav .menu-item .menu-header::after {
  content: '';
  position: absolute;
  height: 12px;
  width: 12px;
  top: 0;
  right: 2px;
  border-right: 2px solid #247088;
  border-bottom: 2px solid #247088;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
ul.sidebar-nav .menu-item.transition .menu-header::after {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
ul.sidebar-nav .menu-item .sub-menu {
  max-height: 0;
  overflow: hidden;
}
ul.sidebar-nav .menu-item .sub-menu > .menu-item {
  padding-left: 15px;
}
ul.sidebar-nav .menu-item.transition .sub-menu {
  -webkit-transition: max-height 0.5s ease-out;
  transition: max-height 0.5s ease-out;
}
ul.sidebar-nav .menu-item.showMenuA {
  background-color: coral;
}
ul.sidebar-nav .menu-item.showMenuA .sub-menu {
  -webkit-transition: none !important;
  transition: none !important;
  max-height: 500px;
}
ul.sidebar-nav .menu-item .sub-menu-header {
  font-weight: 700;
  margin-bottom: 10px;
  padding-left: 15px;
}
ul.sidebar-nav .menu-item .sub-menu-header a {
  font-size: 1.1rem;
}
ul.sidebar-nav .menu-item.menu-0.current-menu-item {
  position: relative;
}
ul.sidebar-nav .menu-item.menu-0.current-menu-item::before {
  content: '•';
  position: absolute;
  left: 0;
}
ul.sidebar-nav .menu-item.menu-0 a {
  font-weight: bold;
}
ul.sidebar-nav .menu-item.menu-0 .sub-menu .sub-menu-header {
  margin-top: 10px;
}
ul.sidebar-nav .menu-item.menu-0.showMenu .sub-menu {
  display: block !important;
  max-height: 500px;
}
ul.sidebar-nav .menu-item.menu-0.showMenu .menu-header::after {
  top: 3px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
ul.sidebar-nav .menu-item.menu-0.has-children {
  font-size: 1rem;
}
ul.sidebar-nav .menu-item.menu-0.has-children a {
  font-weight: 500;
  font-style: normal;
}
ul.sidebar-nav .menu-item.menu-1 {
  margin: 10px 0;
}
ul.sidebar-nav .menu-item.menu-1.current-menu-item {
  position: relative;
}
ul.sidebar-nav .menu-item.menu-1.current-menu-item::before {
  content: '•';
  position: absolute;
  left: 0;
}
ul.sidebar-nav .menu-item.menu-1.has-children {
  font-size: 1rem;
  font-style: italic;
  display: block;
  margin: 0;
  padding: 0;
}
ul.sidebar-nav .menu-item.menu-1.has-children a {
  font-weight: 500;
  font-style: normal;
  line-height: 1;
}
ul.sidebar-nav .menu-item.menu-1.has-children .sub-menu {
  margin: 0;
}
ul.sidebar-nav .menu-item.menu-1.has-children .sub-menu li {
  margin-bottom: 10px;
}
ul.sidebar-nav .menu-item.menu-2 {
  padding: 0;
  font-size: 0.9rem;
}
ul.sidebar-nav .menu-item.menu-2 li {
  margin-bottom: 0 !important;
}
ul.sidebar-nav .menu-item.menu-2 a {
  font-size: 0.9rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
}
ul.sidebar-nav .menu-item.menu-2.has-children {
  font-size: 1rem;
  font-style: italic;
  display: block;
}
ul.sidebar-nav .menu-item.menu-2.current-menu-item {
  position: relative;
}
ul.sidebar-nav .menu-item.menu-2.current-menu-item::before {
  content: '•';
  position: absolute;
  left: 0;
}

.vertical-navbar {
  display: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  right: 0;
  min-width: 200px;
  margin: 0;
  padding: 10px;
  background-color: #247088;
}
.vertical-navbar ul {
  font-weight: normal;
}
.vertical-navbar ul li {
  color: #ffffff;
  display: block;
  height: auto;
  line-height: normal;
  padding: 0 0 10px 0;
}
.vertical-navbar ul li:last-child {
  padding: 0;
}
.vertical-navbar ul li a {
  color: #ffffff;
  text-decoration: none;
}
.vertical-navbar ul li a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.vertical-navbar ul li a:visited {
  color: #ffffff;
}

.footer-navigation {
  margin-top: calc(2 * var(--global--spacing-vertical));
  margin-bottom: var(--global--spacing-vertical);
  color: var(--footer--color-text);
  font-size: var(--global--font-size-xs);
  font-family: var(--footer--font-family);
}

.footer-navigation-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  width: 100%;
  color: var(--global--color-white);
}
.footer-navigation-wrapper li {
  display: inline;
  line-height: 3;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
.footer-navigation-wrapper li a {
  padding: calc(1.25 * var(--primary-nav--padding)) var(--primary-nav--padding);
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition:
    transform 0.1s ease,
    -webkit-transform 0.1s ease;
  color: var(--footer--color-link);
}
.footer-navigation-wrapper li a:link,
.footer-navigation-wrapper li a:visited,
.footer-navigation-wrapper li a:active {
  color: var(--footer--color-link);
}
.footer-navigation-wrapper li a:hover {
  text-decoration: underline;
  text-decoration-style: dotted;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: var(--footer--color-link-hover);
}
.is-dark-theme .footer-navigation-wrapper li a:focus .svg-icon {
  fill: var(--wp--style--color--link, var(--global--color-background));
}
.has-background-white .footer-navigation-wrapper li a:focus .svg-icon {
  fill: var(--wp--style--color--link, var(--global--color-white));
}
.footer-navigation-wrapper li .svg-icon {
  vertical-align: middle;
  fill: var(--footer--color-link);
}
.footer-navigation-wrapper li .svg-icon:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.footer-navigation-wrapper .sub-menu-toggle,
.footer-navigation-wrapper .menu-item-description {
  display: none;
}

.login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 40px);
}
.login .login-container {
  width: 450px;
  padding: 50px 10px;
  border-radius: 10px;
  background-color: #ffffff;
  -webkit-box-shadow: 2px 2px 10px #000000;
  box-shadow: 2px 2px 10px #000000;
  text-align: center;
  /* Media query for screens smaller than 1680px */
}
@media (max-width: 600px) {
  .login .login-container {
    width: 90%;
  }
}
.login .login-container .login-branding {
  margin: 0 auto;
  width: 60%;
}
.login .login-container .login-branding img {
  width: 50%;
}

.register .login-container {
  width: 600px;
  /* Media query for screens smaller than 1680px */
}
@media (max-width: 600px) {
  .register .login-container {
    width: 90%;
  }
}

/* Modal styles */
.modal-notification {
  display: none;
  position: fixed;
  z-index: 99998;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-notification .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 400px;
  padding: 50px 10px;
  border-radius: 10px;
  background-color: #ffffff;
  -webkit-box-shadow: 2px 2px 10px #000000;
  box-shadow: 2px 2px 10px #000000;
  text-align: center;
  /* Media query for screens smaller than 1680px */
}
@media (max-width: 600px) {
  .modal-notification .modal-content {
    width: 90%;
  }
}
.modal-notification .modal-content a {
  color: #26718a;
}
.modal-notification .modal-content a:visited {
  color: #26718a;
}
.modal-notification .close {
  position: absolute;
  top: 0;
  right: 10px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
}
.modal-notification .btn-close {
  margin-top: 20px;
}
