@charset "UTF-8";
/**
 * Modern CSS Reset Tweaks
 * ==================================================
 * A collection of modern CSS reset and normalization styles
 * to ensure consistent behavior across browsers, OS and devices.
 */
/* Ensure consistent font resizing on mobile devices */
html {
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-behavior: smooth;
}

/* Basic body setup for layout and text rendering optimization */
body {
  text-size-adjust: 100%;
  position: relative;
  width: 100%;
  min-height: 100vh;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

/* Apply box-sizing globally for consistent element sizing */
*,
::after,
::before {
  box-sizing: border-box;
}

/* Style unclassed links for better accessibility */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/**
 * CSS Reset Tweaks
 * Based on Eric Meyer's CSS Reset v2.0-modified (public domain)
 * URL: http://meyerweb.com/eric/tools/css/reset/
 */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
br,
button,
canvas,
caption,
center,
cite,
code,
col,
colgroup,
data,
datalist,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
head,
header,
hgroup,
hr,
html,
i,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
link,
main,
map,
mark,
menu,
meta,
meter,
nav,
noscript,
object,
ol,
optgroup,
option,
output,
p,
param,
picture,
pre,
progress,
q,
rb,
rp,
rt,
rtc,
ruby,
s,
samp,
script,
section,
select,
small,
source,
span,
strong,
style,
svg,
sub,
summary,
sup,
table,
tbody,
td,
template,
textarea,
tfoot,
th,
thead,
time,
title,
tr,
track,
tt,
u,
ul,
var,
video,
wbr {
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* Add focus styles to improve accessibility */
:focus {
  outline: 0;
}

/* Normalize HTML5 elements for older browsers */
article,
aside,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
object,
section {
  display: block;
}

canvas,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove default list styling */
ol,
ul {
  list-style: none;
}

/* Normalize quote styling */
blockquote,
q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* Reset and normalize form inputs */
input:required,
input {
  box-shadow: none;
}

/* Autofill styling for better compatibility */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

/* Improve appearance of search inputs */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

video {
  background: #000;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 */
[hidden] {
  display: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: none;
}

/**
 * Make media easier to work with
 */
audio,
img,
picture,
svg,
video {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* Additional attribute handling for accessibility */
[disabled],
[disabled=true],
[aria-disabled=true] {
  pointer-events: none;
}

/**
 * Address box sizing set to content-box in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
 * Based on normalize.css v8.0.1
 * github.com/necolas/normalize.css
 */
hr {
  box-sizing: content-box;
  overflow: visible;
  background: #000;
  border: 0;
  height: 1px;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
  width: 100%;
}

/**
 * Correct the inheritance and scaling of font size in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 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;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

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

/**
 * 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: -5px;
}

sup {
  top: -5px;
}

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

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

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
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;
  outline: 0;
}

legend {
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
  max-width: 100%;
  width: 100%;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

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

/**
 * 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 all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
template {
  display: none;
}

body {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  max-width: 1380px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}

strong {
  font-weight: 900;
}

.underline {
  text-decoration: underline;
}

.header {
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 19px -4px rgba(50, 50, 50, 0.1);
  z-index: 210;
  transition: all 0.3s ease-in-out;
}
.header li a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
}
.header .btn {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 1.875vw;
  line-height: 34px;
  height: 38px;
  font-weight: 500;
  border: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .btn-primary {
  color: #fff;
  background-color: #39a5eb;
  text-decoration: none;
  font-weight: 700;
  transition: 0.5s ease-in-out;
  border: 2px solid #39a5eb;
}
.header .btn-primary:hover {
  color: #39a5eb;
  background-color: #fff;
}
.header .logo {
  order: 1;
  width: 8.3333vw;
  min-width: 120px;
}
.header .logo img {
  width: 100%;
  height: auto;
  position: relative;
  top: -0.15625vw;
}
.header nav {
  order: 2;
}
.header .inner {
  display: flex;
  justify-content: space-between;
  margin: 17px;
  line-height: 48px;
}
@media (min-width: 1300px) {
  .header .inner {
    margin: 17px 105px;
  }
}
.header .buttons {
  order: 3;
}
@media (min-width: 1030px) {
  .header .buttons {
    text-align: right;
    flex-grow: 0.8;
  }
}
.header .buttons a {
  font-size: 14px;
}
@media (max-width: 1439px) {
  .header {
    font-size: 13px;
  }
  .header .inner {
    align-items: center;
  }
  .header ul {
    margin: 0;
  }
  .header .buttons span {
    display: none;
  }
  .header .buttons a {
    font-size: 13px;
    margin-right: 7px;
  }
}
@media (max-width: 1199px) {
  .header .buttons .btn {
    padding-left: 7px;
    padding-right: 7px;
  }
  .header .buttons {
    white-space: nowrap;
  }
  .header .buttons .btn {
    margin-right: 0;
  }
}
@media (max-width: 1030px) {
  .header .inner {
    flex-wrap: wrap;
  }
  .header .logo {
    flex-grow: 2;
    padding-left: 30px;
    min-width: 0;
  }
  .header .logo img {
    width: 160px;
  }
  .header nav {
    order: 5;
  }
  .header .burger-menu-wrap {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .header .logo {
    padding-left: 20px;
    min-width: 0;
    width: 30%;
  }
  .header .logo img {
    width: 150px;
  }
  .header .burger-menu-wrap {
    margin: 0 10px;
    padding: 0 10px;
    margin: 0 5px 0 0;
    width: 55px;
  }
}

@media (min-width: 1921px) {
  .header .logo {
    width: 160px;
  }
}
.footer {
  position: relative;
  z-index: 10;
  padding: 30px 0;
}

.bg-blue, .bg-gray--video, .bg-grey {
  background: #0099CE;
}

.bg-blue, .bg-blue a, .bg-gray--video, .bg-gray--video a, .bg-grey, .bg-grey a {
  color: #fff;
}

.footer .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  max-width: 1640px;
  margin: auto;
  padding: 0 30px;
}
@media (min-width: 1400px) {
  .footer .inner {
    padding: 0 105px;
  }
}

.footer .bot {
  margin-top: 3.125vw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
}
@media (min-width: 1400px) {
  .footer .bot {
    font-size: 1.15vw;
  }
}

.logos {
  text-align: right;
  padding-left: 20px;
}

.footer-info {
  margin-top: 40px;
  width: 100%;
  font-size: 12px;
}
.footer-info p {
  margin-bottom: 10px;
  font-size: 12px;
  text-align: justify;
}

.cookies-page .cookies-page__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
.cookies-page .cookies-page__inner h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #0099CE;
}
@media (max-width: 768px) {
  .cookies-page .cookies-page__inner h1 {
    font-size: 2rem;
  }
}
.cookies-page .cookies-page__inner h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #34495e;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid #0099CE;
}
@media (max-width: 768px) {
  .cookies-page .cookies-page__inner h2 {
    font-size: 1.5rem;
  }
}
.cookies-page .cookies-page__inner h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .cookies-page .cookies-page__inner h4 {
    font-size: 1.1rem;
  }
}
.cookies-page .cookies-page__inner h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .cookies-page .cookies-page__inner h3 {
    font-size: 1.2rem;
  }
}
.cookies-page .cookies-page__inner h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .cookies-page .cookies-page__inner h4 {
    font-size: 1.1rem;
  }
}
.cookies-page .cookies-page__inner strong {
  font-weight: 700;
}
.cookies-page .cookies-page__inner a {
  color: #0099CE;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
.cookies-page .cookies-page__inner a:hover {
  color: #007BA3;
  border-bottom-color: #007BA3;
  text-decoration: none;
}
.cookies-page .cookies-page__inner a:focus {
  outline: 2px solid #0099CE;
  outline-offset: 2px;
  border-radius: 2px;
}
.cookies-page .cookies-page__inner a:visited {
  color: #006B8A;
}
.cookies-page .cookies-page__inner a:active {
  color: #005A75;
}
.cookies-page .cookies-page__inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.cookies-page .cookies-page__inner table thead {
  background-color: #0099CE;
  color: white;
}
.cookies-page .cookies-page__inner table thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.cookies-page .cookies-page__inner table thead th:first-child {
  border-top-left-radius: 8px;
}
.cookies-page .cookies-page__inner table thead th:last-child {
  border-top-right-radius: 8px;
}
.cookies-page .cookies-page__inner table tbody tr {
  transition: background-color 0.2s ease;
}
.cookies-page .cookies-page__inner table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}
.cookies-page .cookies-page__inner table tbody tr:hover {
  background-color: #e8f4f8;
}
.cookies-page .cookies-page__inner table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}
.cookies-page .cookies-page__inner table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}
.cookies-page .cookies-page__inner table tbody td {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  vertical-align: top;
}
.cookies-page .cookies-page__inner table tbody td:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .cookies-page .cookies-page__inner table {
    font-size: 0.9rem;
  }
  .cookies-page .cookies-page__inner table thead {
    display: none;
  }
  .cookies-page .cookies-page__inner table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .cookies-page .cookies-page__inner table tbody tr:nth-child(even) {
    background-color: white;
  }
  .cookies-page .cookies-page__inner table tbody tr:hover {
    background-color: #f8f9fa;
  }
  .cookies-page .cookies-page__inner table tbody td {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f3f4;
    position: relative;
  }
  .cookies-page .cookies-page__inner table tbody td:before {
    content: attr(data-label);
    font-weight: 600;
    color: #0099CE;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
  }
  .cookies-page .cookies-page__inner table tbody td:last-child {
    border-bottom: none;
  }
}
.cookies-page .cookies-page__inner p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  text-align: justify;
}
.cookies-page .cookies-page__inner p:last-child {
  margin-bottom: 0;
}
.cookies-page .cookies-page__inner ul {
  margin: 1.5rem 0;
  padding-left: 0;
}
.cookies-page .cookies-page__inner ul li {
  list-style: none;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}
.cookies-page .cookies-page__inner ul li::before {
  content: "•";
  color: #0099CE;
  font-weight: bold;
  position: absolute;
  left: 0.5rem;
  top: 0;
}
.cookies-page .cookies-page__inner ul li:last-child {
  margin-bottom: 0;
}
.cookies-page .cookies-page__inner > h2:not(:first-of-type) {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .cookies-page .cookies-page__inner {
    padding: 1rem;
  }
  .cookies-page .cookies-page__inner h2 {
    margin-top: 2rem;
  }
}
@media (max-width: 480px) {
  .cookies-page .cookies-page__inner {
    padding: 0.75rem;
  }
  .cookies-page .cookies-page__inner h1 {
    font-size: 1.75rem;
  }
  .cookies-page .cookies-page__inner h2 {
    font-size: 1.25rem;
  }
  .cookies-page .cookies-page__inner h3 {
    font-size: 1.1rem;
  }
  .cookies-page .cookies-page__inner h4 {
    font-size: 1rem;
  }
  .cookies-page .cookies-page__inner ul li {
    padding-left: 1.5rem;
  }
}
.cookies-page ._CookieScriptReportPageCheckboxes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  margin: 16px 0;
  align-items: flex-start;
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background-color: #ffffff;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  transition: all 0.2s ease;
  flex: 1;
  min-width: 180px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-right: 0;
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox:hover {
  border-color: #4a90e2;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.15);
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox ._CookieScriptReportPageCheckboxLabel {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox ._CookieScriptReportPageCheckboxLabel ._CookieScriptReportPageCheckboxInput {
  margin: 0;
  margin-right: 12px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  border: 2px solid #4a90e2;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
  transition: all 0.2s ease;
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox ._CookieScriptReportPageCheckboxLabel ._CookieScriptReportPageCheckboxInput:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox ._CookieScriptReportPageCheckboxLabel ._CookieScriptReportPageCheckboxInput:checked {
  background-color: #4a90e2;
  border-color: #4a90e2;
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox ._CookieScriptReportPageCheckboxLabel ._CookieScriptReportPageCheckboxInput:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox ._CookieScriptReportPageCheckboxLabel ._CookieScriptReportPageCheckboxInput:disabled {
  border-color: #adb5bd;
  background-color: #f8f9fa;
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox ._CookieScriptReportPageCheckboxLabel ._CookieScriptReportPageCheckboxInput:disabled:checked {
  background-color: #6c757d;
  border-color: #6c757d;
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox ._CookieScriptReportPageCheckboxLabel ._CookieScriptReportPageCheckboxInput:hover:not(:disabled) {
  border-color: #357abd;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox ._CookieScriptReportPageCheckboxLabel ._CookieScriptReportPageCheckboxInput:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.25);
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox ._CookieScriptReportPageCheckboxLabel ._CookieScriptReportPageCheckboxText {
  font-size: 14px;
  color: #495057;
  font-weight: 500;
  user-select: none;
  flex: 1;
  line-height: 1.4;
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox:has(._CookieScriptReportPageCheckboxInput:disabled) {
  background-color: #f8f9fa;
  border-color: #e9ecef;
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox:has(._CookieScriptReportPageCheckboxInput:disabled):hover {
  border-color: #e9ecef;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox:has(._CookieScriptReportPageCheckboxInput:disabled) ._CookieScriptReportPageCheckboxLabel ._CookieScriptReportPageCheckboxText {
  color: #6c757d;
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageSaveSettingButton {
  flex: 1 1 100%;
  margin-top: 8px;
  padding: 12px 24px;
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(74, 144, 226, 0.2);
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageSaveSettingButton:hover {
  background-color: #357abd;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageSaveSettingButton:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(74, 144, 226, 0.2);
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageSaveSettingButton:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.25);
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageSaveSettingButton:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageSaveSettingButton:disabled:hover {
  background-color: #6c757d;
  transform: none;
  box-shadow: none;
}
@media (max-width: 1024px) {
  .cookies-page ._CookieScriptReportPageCheckboxes {
    gap: 16px;
  }
  .cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox {
    flex: 1 1 calc(50% - 8px);
    min-width: 160px;
  }
}
@media (max-width: 768px) {
  .cookies-page ._CookieScriptReportPageCheckboxes {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  .cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox {
    flex: 1;
    min-width: auto;
    padding: 12px 14px;
    width: 100%;
  }
  .cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox ._CookieScriptReportPageCheckboxLabel ._CookieScriptReportPageCheckboxInput {
    width: 20px;
    height: 20px;
    margin-right: 14px;
  }
  .cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox ._CookieScriptReportPageCheckboxLabel ._CookieScriptReportPageCheckboxInput:checked::after {
    left: 6px;
    top: 3px;
    width: 7px;
    height: 11px;
  }
  .cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox ._CookieScriptReportPageCheckboxLabel ._CookieScriptReportPageCheckboxText {
    font-size: 15px;
  }
  .cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageSaveSettingButton {
    padding: 14px 24px;
    font-size: 15px;
    margin-top: 12px;
  }
}
@media (max-width: 480px) {
  .cookies-page ._CookieScriptReportPageCheckboxes {
    margin: 8px 0;
    padding: 12px;
  }
  .cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageCheckbox {
    padding: 10px 12px;
  }
  .cookies-page ._CookieScriptReportPageCheckboxes ._CookieScriptReportPageSaveSettingButton {
    padding: 12px 20px;
    font-size: 14px;
  }
}

.pSabscan__anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}
.pSabscan__main-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/sabscan/intro_bg-834.jpg) no-repeat top center;
  background-size: cover;
}
@media (min-width: 700px) {
  .pSabscan__main-background {
    background-image: url(../images/sabscan/intro_bg-834.jpg);
  }
}
@media (min-width: 1100px) {
  .pSabscan__main-background {
    background-image: url(../images/sabscan/intro_bg-1920.jpg);
  }
}
.pSabscan__intro {
  position: relative;
}
.pSabscan__intro .pSabscan__inner {
  position: relative;
  padding-top: 450px;
  padding-bottom: 0;
  align-items: flex-start;
}
@media (min-width: 576px) {
  .pSabscan__intro .pSabscan__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 768px) {
  .pSabscan__intro .pSabscan__inner {
    padding-left: 105px;
    padding-right: 105px;
  }
}
@media (min-width: 1100px) {
  .pSabscan__intro .pSabscan__inner {
    padding-top: 150px;
    padding-bottom: 50px;
  }
}
@media (min-width: 1400px) {
  .pSabscan__intro .pSabscan__inner {
    padding-top: 150px;
  }
}
@media (min-width: 1600px) {
  .pSabscan__intro .pSabscan__inner {
    padding-top: 200px;
    padding-bottom: 150px;
  }
}
@media (min-width: 2560px) {
  .pSabscan__intro .pSabscan__inner {
    padding-bottom: 393px;
  }
}
.pSabscan__intro h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 50px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .pSabscan__intro h1 {
    font-size: 64px;
    line-height: 80px;
  }
}
.pSabscan__intro i {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  font-style: italic;
}
@media (min-width: 768px) {
  .pSabscan__intro i {
    font-size: 20px;
    line-height: 30px;
  }
}
.pSabscan__intro .content {
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}
@media (min-width: 768px) {
  .pSabscan__intro .content {
    font-size: 20px;
    line-height: 30px;
  }
}
.pSabscan__intro__buttons {
  margin-top: -30px;
  margin-bottom: 30px;
}
.pSabscan__inner {
  max-width: 1650px;
  padding: 40px 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .pSabscan__inner {
    padding: 40px;
  }
}
@media (min-width: 768px) {
  .pSabscan__inner {
    padding: 40px 105px;
  }
}
.pSabscan__inner--intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
  padding: 60px 20px;
}
.pSabscan__inner.pb-0 {
  padding-bottom: 0;
}
.pSabscan__inner h2 {
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
  letter-spacing: -0.96px;
  color: #212B36;
}
@media (min-width: 576px) {
  .pSabscan__inner h2 {
    font-size: 32px;
  }
}
@media (min-width: 1030px) {
  .pSabscan__inner h2 {
    font-size: 48px;
    margin-bottom: 40px;
  }
}
.pSabscan__inner h2.text-left {
  text-align: left;
}
.pSabscan__inner p {
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .pSabscan__inner p {
    line-height: 1.75;
  }
}
.pSabscan__inner p strong {
  font-weight: 700;
}
.pSabscan__inner p.pSabscan__big-paragraph {
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .pSabscan__inner p.pSabscan__big-paragraph {
    font-size: 24px;
  }
}
.pSabscan__inner ul {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1152px;
  justify-content: center;
}
@media (min-width: 1030px) {
  .pSabscan__inner ul {
    gap: 60px;
  }
}
.pSabscan__intro_text p {
  padding-top: 15px;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;
  max-width: 700px;
}
.pSabscan__intro_logo {
  position: absolute;
  width: 248.031px;
  height: 35.094px;
  right: 15px;
  top: 26px;
  background: url(../images/sabscan/logo_gnt.svg) no-repeat center center;
  background-size: 100% 100%;
}
@media (min-width: 576px) {
  .pSabscan__intro_logo {
    right: 30px;
  }
}
@media (min-width: 1030px) {
  .pSabscan__intro_logo {
    right: 60px;
  }
}
@media (min-width: 1400px) {
  .pSabscan__intro_logo {
    right: 105px;
  }
}
.pSabscan__button {
  display: inline-flex;
  position: relative;
  padding: 11px 22px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 2px solid;
  border-radius: 38px;
  transition: 0.5s ease-in-out;
  color: #ffffff;
  overflow: hidden;
  z-index: 100;
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
  text-decoration: none;
}
.pSabscan__button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  content: "";
  border-radius: 100px;
  transform-origin: center center;
  transition: 0.75s ease-in-out;
  z-index: -1;
}
.pSabscan__button:hover:before {
  border-width: 1px;
}
.pSabscan__button--primary {
  background: #0099CE;
  border-color: #0099CE;
  margin-right: 17px;
}
.pSabscan__button--primary:before {
  border: 100px solid #0099CE;
}
.pSabscan__button--primary:hover {
  background: transparent;
  color: #0099CE;
}
.pSabscan__button--secondary {
  background: #E2F4F7;
  border-color: #E2F4F7;
}
.pSabscan__button--secondary:before {
  border: 100px solid #E2F4F7;
}
.pSabscan__button--secondary:hover {
  background: transparent;
  color: #E2F4F7;
}
.pSabscan__button--tertiary {
  background: #c08c96;
  border-color: #c08c96;
  margin-right: 17px;
}
.pSabscan__button--tertiary:before {
  border: 125px solid #c08c96;
  width: 250px;
  min-width: 100%;
  height: 250px;
  margin-top: -125px;
  margin-left: -50%;
  border-radius: 125px;
}
.pSabscan__button--tertiary:hover {
  background: transparent;
  color: #c08c96;
}
.pSabscan__button--small {
  padding: 6px 16px;
  font-size: 14px;
  line-height: 24px;
}
.pSabscan__process__steps {
  margin-top: -30px;
  margin-left: auto;
  margin-right: auto;
}
.pSabscan__process__steps li {
  max-width: 220px;
  margin-top: 20px;
  color: #212B36;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
@media (min-width: 1030px) {
  .pSabscan__process__steps li {
    margin-top: 60px;
  }
}
@media (min-width: 1400px) {
  .pSabscan__process__steps li {
    max-width: 330px;
  }
}
.pSabscan__process__steps li:before {
  transform: scale(1, 1);
  content: " ";
  display: block;
  height: 111px;
  margin-bottom: 40px;
  background-repeat: no-repeat;
  background-position: top center;
  transition: 0.7s ease-out;
}
.pSabscan__process__steps li:hover:before {
  transform: scale(1.2, 1.2);
}
.pSabscan__process__step--1:before {
  background-image: url(../images/sabscan/ico_09.svg);
}
.pSabscan__process__step--2:before {
  background-image: url(../images/sabscan/ico_10.svg);
}
.pSabscan__process__step--3:before {
  background-image: url(../images/sabscan/ico_11.svg);
}
.pSabscan__process .process-circle {
  position: absolute;
  top: -150px;
  right: -115px;
  width: 770px;
  height: 770px;
  border-radius: 770px;
  opacity: 0;
  background: #FBE3D6;
  z-index: -100;
}
@media (min-width: 1500px) {
  .pSabscan__process .process-circle {
    opacity: 0.2;
  }
}
.pSabscan__smallInfoBoxesWrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (min-width: 1200px) {
  .pSabscan__smallInfoBoxesWrap {
    flex-direction: row;
  }
}
@media (min-width: 1600px) {
  .pSabscan__smallInfoBoxesWrap {
    gap: 30px;
  }
}
.pSabscan__smallInfoBox {
  display: flex;
  flex-direction: column;
  border-radius: 48px;
  padding: 30px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
@media (min-width: 768px) {
  .pSabscan__smallInfoBox {
    font-size: 16px;
    line-height: 28px;
    padding: 35px 50px;
  }
}
@media (min-width: 1200px) {
  .pSabscan__smallInfoBox {
    width: 50%;
  }
}
.pSabscan__smallInfoBox--rose {
  background-color: #FBE3D6;
}
.pSabscan__smallInfoBox--blue {
  background-color: #E2F4F7;
}
.pSabscan__smallInfoBox--img {
  padding: 0;
  margin-top: -60px;
  overflow: hidden;
  position: relative;
}
.pSabscan__smallInfoBox--img .bg-image {
  height: 350px;
  max-height: auto;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .pSabscan__smallInfoBox--img .bg-image {
    height: 100%;
  }
}
@media (min-width: 1800px) {
  .pSabscan__smallInfoBox--img .bg-image {
    max-height: 450px;
  }
}
@media (min-width: 1030px) {
  .pSabscan__smallInfoBox--img {
    margin-top: 0;
  }
}
.pSabscan__smallInfoBox--img .logo {
  position: absolute;
  left: 30px;
  bottom: 30px;
  max-width: 150px;
}
.pSabscan__smallInfoBox h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  padding-bottom: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 1030px) {
  .pSabscan__smallInfoBox h3 {
    font-size: 36px;
    line-height: 54px;
    min-height: 124px;
  }
}
.pSabscan__smallInfoBox ul {
  margin-left: 22px;
  display: block;
  list-style-type: disc;
}
.pSabscan__smallInfoBox .buttons-wrapper {
  width: 100%;
  display: flex;
  justify-content: end;
  margin-top: 1rem;
}
.pSabscan__table {
  width: 100%;
  margin-bottom: 20px;
  min-width: 500px;
}
@media (min-width: 768px) {
  .pSabscan__table {
    min-width: 0;
  }
}
.pSabscan__table tr th, .pSabscan__table tr td {
  padding: 5px 10px;
  font-size: 16px;
  vertical-align: middle;
}
.pSabscan__table tr th {
  border-right-width: 2px;
  border-right-style: solid;
  font-weight: 700;
}
.pSabscan__table tr th.no-bg, .pSabscan__table tr th:last-child {
  border-right: none;
}
.pSabscan__table tr:first-child th {
  border-bottom-width: 2px;
  border-bottom-style: solid;
}
.pSabscan__table tr:first-child th.no-bg {
  border-bottom: none;
}
.pSabscan__table--text-center tr th, .pSabscan__table--text-center tr td {
  text-align: center;
}
.pSabscan__table--blue tr th, .pSabscan__table--blue tr td {
  border-color: #0099CE;
}
.pSabscan__table--blue tr th:not(.no-bg) {
  background-color: rgba(0, 153, 206, 0.2);
}
.pSabscan__table--blue tr td:not(.no-bg) {
  background-color: rgba(0, 153, 206, 0.05);
}
.pSabscan__table--pink tr th, .pSabscan__table--pink tr td {
  border-color: #BE5A7C;
}
.pSabscan__table--pink tr th:not(.no-bg) {
  background-color: rgba(190, 90, 124, 0.2);
}
.pSabscan__table--pink tr td:not(.no-bg) {
  background-color: rgba(190, 90, 124, 0.05);
}
.pSabscan__table--transparent-blue-border tr th, .pSabscan__table--transparent-blue-border tr td {
  border: 1px solid #BBE4EB;
  padding-top: 10px;
  padding-bottom: 10px;
}
.pSabscan__table--transparent-blue-border tr th:first-child, .pSabscan__table--transparent-blue-border tr td:first-child {
  border-left: none;
}
.pSabscan__table--transparent-blue-border tr th:last-child, .pSabscan__table--transparent-blue-border tr td:last-child {
  border-right: none;
}
.pSabscan__table--transparent-blue-border tr:first-child th, .pSabscan__table--transparent-blue-border tr:first-child td {
  border-top: none;
}
.pSabscan__table--transparent-blue-border tr:last-child th, .pSabscan__table--transparent-blue-border tr:last-child td {
  border-bottom: none;
}
.pSabscan__table__wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.pSabscan__table-caption {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.pSabscan__table-caption.mb-0 {
  margin-bottom: 0;
}
.pSabscan__circle-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.pSabscan__principles-circle, .pSabscan__scope-of-examination-circle, .pSabscan__sex-of-fetus-circle, .pSabscan__genetic-difference-between-placenta-and-fetus-circle, .pSabscan__genetic-difference-between-placenta-and-fetus-circle-2 {
  display: none;
  pointer-events: none;
  position: absolute;
  z-index: -100;
}
@media (min-width: 1200px) {
  .pSabscan__principles-circle, .pSabscan__scope-of-examination-circle, .pSabscan__sex-of-fetus-circle, .pSabscan__genetic-difference-between-placenta-and-fetus-circle, .pSabscan__genetic-difference-between-placenta-and-fetus-circle-2 {
    display: block;
  }
}
.pSabscan__principles-circle {
  background: url(../images/sabscan/circle-1.svg) no-repeat left top;
  width: 984px;
  height: 1432px;
  top: 0;
  left: 0;
  max-height: 100%;
}
.pSabscan__scope-of-examination-circle {
  background: url(../images/sabscan/circle-5.svg) no-repeat left top;
  width: 849px;
  height: 1388px;
  margin-top: -70px;
}
.pSabscan__sex-of-fetus-circle {
  background: url(../images/sabscan/circle-1.svg) no-repeat left top;
  width: 984px;
  height: 1432px;
  margin-top: -230px;
}
.pSabscan__genetic-difference-between-placenta-and-fetus-circle {
  background: url(../images/sabscan/circle-6.svg) no-repeat left top;
  width: 454px;
  height: 689px;
  bottom: 300px;
  right: 0;
}
.pSabscan__genetic-difference-between-placenta-and-fetus-circle-2 {
  background: url(../images/sabscan/circle-7.svg) no-repeat left top;
  width: 717px;
  height: 770px;
  bottom: -385px;
}
@media (min-width: 1200px) {
  .pSabscan__principles__cols {
    display: flex;
    justify-content: space-between;
  }
}
.pSabscan__principles__text-col {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1200px) {
  .pSabscan__principles__text-col {
    width: calc(100% - 450px);
    padding-right: 100px;
  }
}
@media (min-width: 1400px) {
  .pSabscan__principles__text-col {
    width: 50%;
  }
}
@media (min-width: 1800px) {
  .pSabscan__principles__text-col {
    width: calc(100% - 600px);
    padding-right: 145px;
  }
}
.pSabscan__principles__text-col p {
  margin-bottom: 15px;
}
.pSabscan__principles__text-col p:last-child {
  margin-bottom: 0;
}
.pSabscan__principles__img-col {
  margin-top: 30px;
  text-align: center;
}
@media (min-width: 1200px) {
  .pSabscan__principles__img-col {
    width: 450px;
    text-align: right;
    margin-top: 0;
  }
}
@media (min-width: 1400px) {
  .pSabscan__principles__img-col {
    width: 50%;
  }
}
@media (min-width: 1800px) {
  .pSabscan__principles__img-col {
    width: 600px;
  }
}
.pSabscan__blue-section {
  position: relative;
  background-color: #0099CE;
  color: #ffffff;
  padding-top: 40px;
  padding-bottom: 40px;
}
.pSabscan__blue-section .pSabscan__inner {
  padding-top: 0;
  padding-bottom: 0;
}
.pSabscan__blue-section__bg-1, .pSabscan__blue-section__bg-2 {
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}
@media (min-width: 1800px) {
  .pSabscan__blue-section__bg-1, .pSabscan__blue-section__bg-2 {
    visibility: visible;
  }
}
.pSabscan__blue-section__bg-1 {
  left: 0;
  top: 0;
}
.pSabscan__blue-section__bg-2 {
  right: 0;
  bottom: 0;
}
.pSabscan__blue-section h2 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 20px;
}
.pSabscan__test-methodology__cols {
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .pSabscan__test-methodology__cols {
    display: flex;
    justify-content: space-between;
  }
}
.pSabscan__test-methodology__left-col {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1200px) {
  .pSabscan__test-methodology__left-col {
    text-align: left;
  }
}
@media (min-width: 1800px) {
  .pSabscan__test-methodology__left-col {
    padding-left: 130px;
  }
}
.pSabscan__test-methodology__right-col {
  background: rgba(79, 166, 238, 0.1);
  padding: 30px;
  margin-top: 20px;
  border-radius: 48px;
}
@media (min-width: 1200px) {
  .pSabscan__test-methodology__right-col {
    position: relative;
    border-radius: 500px 0 0 500px;
    padding: 15px 0 15px 120px;
  }
}
@media (min-width: 1800px) {
  .pSabscan__test-methodology__right-col {
    padding-left: 120px;
    padding-right: 100px;
  }
}
.pSabscan__test-methodology__right-col:after {
  width: 2000px;
  left: 100%;
  background: rgba(79, 166, 238, 0.1);
  top: 0;
  bottom: 0;
  content: "";
  position: absolute;
  display: none;
}
@media (min-width: 1200px) {
  .pSabscan__test-methodology__right-col:after {
    display: block;
  }
}
@media (min-width: 1200px) {
  .pSabscan__test-methodology__right-col__inner {
    width: 620px;
  }
}
@media (min-width: 576px) {
  .pSabscan__test-methodology__right-col__inner-cols {
    display: flex;
    padding-top: 10px;
    justify-content: space-between;
  }
}
.pSabscan__test-methodology__right-col__inner-col-img {
  min-width: 82px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .pSabscan__test-methodology__right-col__inner-col-img {
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 576px) {
  .pSabscan__test-methodology__right-col__inner-col-text {
    padding-left: 20px;
  }
}
.pSabscan__test-methodology h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.56px;
  line-height: 1.42;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .pSabscan__test-methodology h3 {
    font-size: 28px;
  }
}
.pSabscan__test-methodology p {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  margin-bottom: 40px;
}
.pSabscan__test-methodology__img--full {
  display: none;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1200px) {
  .pSabscan__test-methodology__img--full {
    display: block;
  }
}
.pSabscan__test-methodology__img--sm {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 290px;
}
@media (min-width: 1200px) {
  .pSabscan__test-methodology__img--sm {
    display: none;
  }
}
.pSabscan__scope-of-examination h2 {
  margin-bottom: 15px;
}
.pSabscan__scope-of-examination p {
  margin-bottom: 15px;
}
.pSabscan__scope-of-examination p.mb-30 {
  margin-bottom: 30px;
}
.pSabscan__scope-of-examination a {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
}
.pSabscan__scope-of-examination a:hover {
  text-decoration: none;
}
.pSabscan__scope-of-examination ul {
  margin-bottom: 15px;
  display: block;
  gap: 0;
}
.pSabscan__scope-of-examination ul li {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.75;
  position: relative;
  padding-left: 20px;
}
.pSabscan__scope-of-examination ul li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 5px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: black;
  border-radius: 50%;
}
.pSabscan__scope-of-examination ul > li ul {
  margin-bottom: 0;
}
.pSabscan__scope-of-examination ul > li > ul {
  padding-left: 10px;
}
.pSabscan__scope-of-examination ul > li > ul > li > ul {
  padding-left: 10px;
}
@media (min-width: 1200px) {
  .pSabscan__scope-of-examination__cols {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .pSabscan__scope-of-examination__left-col {
    width: 45%;
  }
}
@media (min-width: 1800px) {
  .pSabscan__scope-of-examination__left-col {
    max-width: 660px;
  }
}
.pSabscan__scope-of-examination__right-col {
  margin-top: 30px;
}
@media (min-width: 1200px) {
  .pSabscan__scope-of-examination__right-col {
    width: 55%;
    padding-left: 50px;
  }
}
@media (min-width: 1800px) {
  .pSabscan__scope-of-examination__right-col {
    padding-left: 100px;
    margin-top: 0;
  }
}
.pSabscan__scope-of-examination__table-blue-wrapper {
  background-color: rgba(187, 228, 235, 0.42);
  border-radius: 48px;
  padding: 20px;
}
.pSabscan__scope-of-examination__table-blue-wrapper h3 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.pSabscan__scope-of-examination__table-blue-wrapper .pSabscan__table-caption {
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 1200px) {
  .pSabscan__sex-of-fetus__cols {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .pSabscan__sex-of-fetus__left-col {
    width: 50%;
    padding-right: 100px;
  }
}
@media (min-width: 1800px) {
  .pSabscan__sex-of-fetus__left-col {
    width: calc(100% - 752px);
    padding-right: 157px;
  }
}
.pSabscan__sex-of-fetus__left-col .pSabscan__big-paragraph {
  margin-bottom: 10px;
}
.pSabscan__sex-of-fetus__left-col table {
  margin-top: 35px;
}
.pSabscan__sex-of-fetus__right-col {
  margin-top: 30px;
  text-align: center;
}
@media (min-width: 1200px) {
  .pSabscan__sex-of-fetus__right-col {
    width: 50%;
    text-align: right;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1800px) {
  .pSabscan__sex-of-fetus__right-col {
    width: 752px;
  }
}
.pSabscan__sex-in-twins__cols {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .pSabscan__sex-in-twins__cols {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.pSabscan__sex-in-twins__left-col {
  margin-top: 30px;
  text-align: center;
  order: 2;
  width: 100%;
}
@media (min-width: 1200px) {
  .pSabscan__sex-in-twins__left-col {
    order: 1;
    width: 50%;
    text-align: right;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .pSabscan__sex-in-twins__left-col {
    width: 752px;
  }
}
.pSabscan__sex-in-twins__right-col {
  order: 1;
  width: 100%;
}
@media (min-width: 1200px) {
  .pSabscan__sex-in-twins__right-col {
    order: 2;
    width: 50%;
    padding-left: 50px;
  }
}
@media (min-width: 1800px) {
  .pSabscan__sex-in-twins__right-col {
    width: calc(100% - 752px);
  }
}
.pSabscan__sex-in-twins__right-col ul {
  display: block;
  gap: 0;
}
.pSabscan__sex-in-twins__right-col ul li {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.75;
  position: relative;
  padding-left: 20px;
}
.pSabscan__sex-in-twins__right-col ul li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 5px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: black;
  border-radius: 50%;
}
.pSabscan__sex-in-twins__right-col .pSabscan__big-paragraph {
  margin-bottom: 10px;
}
.pSabscan__sex-in-twins__right-col table {
  margin-top: 35px;
}
.pSabscan__genetic-difference-between-placenta-and-fetus__cols {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .pSabscan__genetic-difference-between-placenta-and-fetus__cols {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.pSabscan__genetic-difference-between-placenta-and-fetus__cols h2 {
  text-align: left;
}
.pSabscan__genetic-difference-between-placenta-and-fetus__left-col {
  margin-top: 30px;
  text-align: center;
  order: 2;
  width: 100%;
}
@media (min-width: 1200px) {
  .pSabscan__genetic-difference-between-placenta-and-fetus__left-col {
    order: 1;
    width: 450px;
    text-align: right;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1400px) {
  .pSabscan__genetic-difference-between-placenta-and-fetus__left-col {
    width: 45%;
  }
}
.pSabscan__genetic-difference-between-placenta-and-fetus__right-col {
  order: 1;
  width: 100%;
}
@media (min-width: 1200px) {
  .pSabscan__genetic-difference-between-placenta-and-fetus__right-col {
    order: 2;
    padding-left: 100px;
  }
}
@media (min-width: 1400px) {
  .pSabscan__genetic-difference-between-placenta-and-fetus__right-col {
    width: 55%;
  }
}
.pSabscan__genetic-difference-between-placenta-and-fetus__right-col h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pSabscan__genetic-difference-between-placenta-and-fetus__right-col p {
  margin-bottom: 15px;
}
.pSabscan__genetic-difference-between-placenta-and-fetus__right-col ul {
  display: block;
  gap: 0;
}
.pSabscan__genetic-difference-between-placenta-and-fetus__right-col ul li {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.75;
  position: relative;
  padding-left: 20px;
}
.pSabscan__genetic-difference-between-placenta-and-fetus__right-col ul li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 5px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: black;
  border-radius: 50%;
}
.pSabscan__importance {
  position: relative;
  background-color: #BBE4EB;
}
.pSabscan__importance__bg-1, .pSabscan__importance__bg-2 {
  position: absolute;
  pointer-events: none;
  visibility: hidden;
}
@media (min-width: 1800px) {
  .pSabscan__importance__bg-1, .pSabscan__importance__bg-2 {
    visibility: visible;
  }
}
.pSabscan__importance__bg-1 {
  left: 0;
  top: 0;
}
.pSabscan__importance__bg-2 {
  right: 0;
  bottom: 0;
}
.pSabscan__importance h2 {
  margin-bottom: 20px;
}
.pSabscan__importance p:not(:last-child) {
  margin-bottom: 15px;
}
.pSabscan__importance__list {
  margin-bottom: 10px;
}
.pSabscan__importance__list__item {
  padding-bottom: 10px;
  position: relative;
  padding-left: 40px;
}
.pSabscan__importance__list__item:before {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0099CE;
  content: "";
  top: calc(50% - 5px);
  left: 10px;
  transform: translateY(-50%);
}
.pSabscan__importance__list__item:after {
  width: 2px;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 14px;
  background-color: #0099CE;
}
.pSabscan__importance__list__item:first-child:after {
  top: calc(50% - 10px);
}
.pSabscan__importance__list__item:last-child:after {
  bottom: calc(50% + 10px);
}
.pSabscan__importance__list__item h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 1200px) {
  .pSabscan__importance__list__item h3 {
    font-size: 24px;
  }
}
.pSabscan__importance p a {
  color: black;
  font-weight: 700;
  text-decoration: underline;
}
.pSabscan__importance p a:hover {
  text-decoration: none;
}
@media (min-width: 1800px) {
  .pSabscan__importance .pSabscan__inner {
    padding-left: 160px;
    padding-right: 160px;
  }
}
.pSabscan__pink-box, .pSabscan__blue-box {
  max-width: 1200px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border-radius: 48px;
}
@media (min-width: 1200px) {
  .pSabscan__pink-box, .pSabscan__blue-box {
    padding: 40px 100px;
  }
}
.pSabscan__pink-box h2, .pSabscan__blue-box h2 {
  margin-bottom: 20px;
  font-size: 25px;
}
.pSabscan__pink-box a, .pSabscan__blue-box a {
  text-decoration: underline;
  font-weight: 700;
}
.pSabscan__pink-box a:hover, .pSabscan__blue-box a:hover {
  text-decoration: none;
}
.pSabscan__pink-box p:last-child, .pSabscan__blue-box p:last-child {
  margin-bottom: 0;
}
.pSabscan__pink-box {
  background-color: #FBE3D6;
}
.pSabscan__pink-box a {
  color: black;
}
.pSabscan__blue-box {
  color: #ffffff;
  background-color: #0099CE;
}
.pSabscan__blue-box h2 {
  color: #ffffff;
}
.pSabscan__blue-box a {
  text-decoration: underline;
  font-weight: 700;
  color: #ffffff;
}
.pSabscan__colorfulBox {
  position: relative;
}
.pSabscan__colorfulBox h2 {
  margin-bottom: 20px;
  color: #000;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 133.333% */
}
.pSabscan__colorfulBox h3 {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 150% */
  margin-bottom: 20px;
}
.pSabscan__colorfulBox h3.h3-big {
  font-size: 33px !important;
}
.pSabscan__colorfulBox h3.mt-50 {
  margin-top: 50px;
}
.pSabscan__colorfulBox h3.mb-15 {
  margin-bottom: 15px;
}
.pSabscan__colorfulBox p.mb-15 {
  margin-bottom: 15px;
}
.pSabscan__colorfulBox p.p-big {
  font-size: 24px !important;
}
.pSabscan__colorfulBox .pSabscan__inner {
  gap: 40px;
}
.pSabscan__colorfulBox--1 {
  background: #0099CE;
}
.pSabscan__colorfulBox--1 h2 {
  color: #ffffff;
}
.pSabscan__colorfulBox--1 p {
  color: #ffffff;
  align-self: flex-start;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
}
.pSabscan__colorfulBox--2 {
  background: #FBE3D6;
  z-index: 200;
}
.pSabscan__colorfulBox--2 p {
  align-self: flex-start;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
}
@media (min-width: 768px) {
  .pSabscan__colorfulBox--2 p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 1400px) {
  .pSabscan__colorfulBox--2 p {
    font-size: 24px;
    line-height: 36px;
  }
}
.pSabscan__colorfulBox--3 {
  background: #E2F4F7;
  z-index: 100;
  text-align: center;
}
.pSabscan__colorfulBox--3 p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.pSabscan__colorfulBox--3 p a {
  color: #000000;
  text-decoration: underline;
  font-weight: 700;
}
.pSabscan__colorfulBox--3 p a:hover {
  text-decoration: none;
}
@media (min-width: 1200px) {
  .pSabscan__chart-section__cols {
    display: flex;
    gap: 145px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.pSabscan__chart-section__cols h2 {
  text-align: left;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.96px;
}
.pSabscan__chart-section__cols ul {
  margin-bottom: 15px;
  display: block;
  gap: 0;
}
.pSabscan__chart-section__cols ul li {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.75;
  position: relative;
  padding-left: 20px;
}
.pSabscan__chart-section__cols ul li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 5px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: black;
  border-radius: 50%;
}
.pSabscan__chart-section__cols ul > li ul {
  margin-bottom: 0;
}
.pSabscan__chart-section__cols ul > li > ul {
  padding-left: 10px;
}
.pSabscan__chart-section__cols ul > li > ul > li > ul {
  padding-left: 10px;
}
.pSabscan__chart-section__left-col {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .pSabscan__chart-section__left-col {
    width: 50%;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .pSabscan__chart-section__right-col {
    width: 50%;
  }
}
.pSabscan__chart__container {
  text-align: center;
  margin-bottom: 15px;
}
.pSabscan__chart__caption {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.pSabscan__inner .pSabscan__smallInfoBox.mom a {
  color: #0099CE;
  text-decoration: underline;
}

.main-nav {
  display: flex;
  padding: 0 1.0417vw 0 0;
}
.main-nav li {
  position: relative;
  list-style: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 2.6042vw;
  margin-bottom: 0;
  cursor: pointer;
}
.main-nav li a {
  display: block;
  white-space: nowrap;
  padding: 0 0.5729vw;
  transition: all 0.3s ease-in-out;
}
.main-nav li a:hover {
  color: #00a4e8;
}
.main-nav li:hover a + .submenu {
  display: block;
  animation-name: fadeInDownMenu;
  opacity: 1;
  visibility: visible;
  animation-duration: 1s;
}
.main-nav li:hover a + .submenu:before {
  transform: scale(1, 1);
}
.main-nav .submenu {
  display: none;
  padding: 0;
  position: absolute;
  opacity: 0;
  left: 0;
  top: 2.34375vw;
  visibility: hidden;
  transition: all 1s ease-in;
  animation-name: fadeOutUpMenu;
  animation-duration: 0.1s;
  z-index: 20;
}
.main-nav .submenu:before {
  content: "";
  display: block;
  height: 3.125vw;
  width: 10px;
  margin-bottom: 0.3646vw;
  transform: scale(1, 0.8);
  transition: transform 0.5s ease-in;
  background: url(../images/belly-nav.svg) no-repeat;
  background-size: auto 100%;
  z-index: 10;
}
.main-nav .submenu a {
  background: #00a4e8;
  color: #ffffff;
  padding: 15px 27px;
  line-height: 1;
}
.main-nav .submenu a:hover, .main-nav .submenu a:active, .main-nav .submenu a:focus {
  background: rgb(79, 203.4137931034, 255);
  color: #ffffff;
}
.main-nav .submenu li:first-child {
  border-top: 0.5208vw solid #00a4e8;
}
.main-nav .submenu li:last-child {
  border-bottom: 0.5208vw solid #00a4e8;
}
.main-nav .patient-portal-link {
  display: none;
}

@keyframes fadeInDownMenu {
  from {
    opacity: 0;
    transform: translate3d(0, -5%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOutUpMenu {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -5%, 0);
  }
}
.burger-menu-wrap {
  margin-left: 15px;
  margin-right: 15px;
  position: relative;
  z-index: 51;
}
.burger-menu-wrap:focus, .burger-menu-wrap:active, .burger-menu-wrap:hover {
  outline: none;
}
.burger-menu-wrap.open {
  background: #ffffff;
  color: #00a4e8;
}
.burger-menu-wrap.open + .main-nav {
  max-height: 9999em;
  transition: all 0.3s ease-out;
  padding: 80px 0 40px;
}

.burger-menu {
  top: 3px;
  display: inline-block;
}

@media (max-width: 1200px) {
  .main-nav {
    padding: 0 10px;
  }
}
@media (max-width: 1030px) {
  .main-nav {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    background: #00a4e8;
    z-index: 50;
    overflow-y: scroll;
    width: 100vw;
    max-height: 0;
    height: 100%;
    transition: all 0.3s ease-out;
  }
  .main-nav li {
    line-height: 1;
  }
  .main-nav li a {
    color: #ffffff;
    text-align: center;
    font-size: 30px;
    font-weight: 100;
    width: 100%;
    height: 100%;
    padding: 10px;
    white-space: nowrap;
  }
  .main-nav li.active a + .submenu {
    display: block;
  }
  .main-nav li:focus a, .main-nav li:active a, .main-nav li:hover a, .main-nav li.active a {
    color: #ffffff;
  }
  .main-nav li .submenu {
    position: static;
    animation: none !important;
    transition: none;
    display: none;
    padding-bottom: 30px;
  }
  .main-nav li .submenu a {
    font-size: 20px;
    padding: 7px 10px;
  }
  .main-nav li .submenu:before {
    display: none;
  }
}
.lang-menu {
  order: 4;
  margin-left: 10px;
  gap: 10px;
  display: flex;
}
.lang-menu img {
  height: 30px;
  width: 30px;
  box-shadow: 0px 0px 2px black;
  border-radius: 50%;
  object-fit: cover;
}

.contact-form {
  background: rgba(151, 153, 157, 0.1);
}
.contact-form .pSabscan__inner {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 1400px) {
  .contact-form .pSabscan__inner {
    justify-content: space-between;
  }
}
.contact-form h2 {
  font-family: "Barlow", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 64px;
  text-align: left;
}
@media (min-width: 576px) {
  .contact-form h2 {
    font-size: 32px;
  }
}
@media (min-width: 1030px) {
  .contact-form h2 {
    font-size: 48px;
  }
}
.contact-form__left {
  align-self: flex-start;
  order: 2;
  width: 100%;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1261px) {
  .contact-form__left {
    order: 1;
    width: auto;
  }
}
.contact-form__left a:hover {
  font-weight: 600;
}
.contact-form__left h2 {
  display: none;
}
@media (min-width: 1261px) {
  .contact-form__left h2 {
    display: block;
  }
}
.contact-form__left .contact-phones__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 830px) {
  .contact-form__left .contact-phones__inner {
    flex-direction: row;
    justify-content: space-around;
  }
}
@media (min-width: 1261px) {
  .contact-form__left .contact-phones__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
.contact-form__left .item {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 26px;
  color: #212B36;
  margin: 24px 0;
}
.contact-form__left .item span {
  display: block;
  font-weight: 600;
}
.contact-form__left .item a {
  color: unset;
  text-decoration: none;
}
.contact-form__left .item svg {
  margin: 3px 10px 0 0;
}
.contact-form__left .item p {
  margin-top: 24px;
  text-decoration: underline;
}
.contact-form__left .item.clinic {
  padding: 40px;
  border-radius: 40px;
  width: fit-content;
}
.contact-form__left .item.clinic .address {
  display: flex;
  margin-bottom: 20px;
}
.contact-form__left .item.clinic a {
  transition: 0.6s ease-out;
}
.contact-form__left .item.clinic a:hover {
  filter: contrast(0.5) blur(0.5px);
}
.contact-form__left .item.clinic picture img {
  aspect-ratio: 1;
  object-fit: cover;
  height: 200px;
  border-radius: 40px;
}
.contact-form__left .item.clinic--1 {
  background: #FBE3D6;
}
.contact-form__left .item.clinic--2 {
  background: #E2F4F7;
}
.contact-form__form {
  width: 668px;
  order: 1;
}
@media (min-width: 1261px) {
  .contact-form__form {
    order: 2;
  }
}
@media (min-width: 1261px) {
  .contact-form__form h2 {
    display: none;
  }
}
.contact-form__form .form-group {
  display: flex;
  flex-direction: column;
  margin: 12px 0;
}
.contact-form__form .form-group label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 26px;
  position: absolute;
  margin-left: 12px;
  margin-top: -10px;
  color: #637381;
  cursor: text;
  display: none;
}
.contact-form__form .form-group input, .contact-form__form .form-group select {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 26px;
  height: 56px;
  padding: 12px;
  border-radius: 8px;
  border: none;
  transition: 1.2, ease-out;
}
.contact-form__form .form-group input::placeholder, .contact-form__form .form-group select::placeholder {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 26px;
  color: black;
}
.contact-form__form .form-group input:placeholder-shown + label, .contact-form__form .form-group select:placeholder-shown + label {
  display: none;
}
.contact-form__form .form-group input:hover, .contact-form__form .form-group select:hover {
  border: 2px solid #0099CE;
}
.contact-form__form .form-group select {
  appearance: none;
  width: 100%;
  cursor: pointer;
}
.contact-form__form .form-group .dropdown {
  position: relative;
}
.contact-form__form .form-group .dropdown .small-arrow {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 200;
  background-image: url(../images/small-arrow-down.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  display: block;
  height: 10px;
  width: 20px;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.contact-form__form .form-group .input--large {
  height: 116px;
}
.contact-form__form .form-group .input--large::placeholder {
  justify-self: flex-start;
}
.contact-form__form p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 28px;
  margin: 60px 0 40px 0;
}
.contact-form__form .checkbox {
  color: #637381;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 26px;
  margin: 6px 0;
  /* Rounded sliders */
}
.contact-form__form .checkbox a {
  color: unset;
}
.contact-form__form .checkbox .switch {
  position: relative;
  display: inline-block;
  height: 20px;
}
.contact-form__form .checkbox .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.contact-form__form .checkbox .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 33px;
}
.contact-form__form .checkbox .slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.contact-form__form .checkbox input:checked + .slider {
  background-color: #0099CE;
}
.contact-form__form .checkbox input:focus + .slider {
  box-shadow: 0 0 1px #0099CE;
}
.contact-form__form .checkbox input:checked + .slider:before {
  -webkit-transform: translateX(14px);
  -ms-transform: translateX(14px);
  transform: translateX(14px);
}
.contact-form__form .checkbox .slider.round {
  border-radius: 20px;
}
.contact-form__form .checkbox .slider.round:before {
  border-radius: 50%;
}
.contact-form__form .checkbox .description {
  margin-left: 51px;
}
.contact-form__form .pSabscan__button {
  background: #0099CE;
  border: 2px solid #0099CE;
  margin-top: 40px;
}
.contact-form__form .pSabscan__button input {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-right: -7px;
}
.contact-form__form .pSabscan__button:hover {
  background: transparent;
  color: #0099CE;
}
.contact-form__form .pSabscan__button:hover input {
  color: #0099CE;
}
.contact-form__right {
  align-self: flex-start;
  display: none;
}
@media (min-width: 1481px) {
  .contact-form__right {
    order: 2;
    display: block;
    width: 260px;
    content: "";
  }
}

.modal {
  position: fixed; /* Position the modal overlay on top of the content */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  max-width: 400px;
  margin: 100px auto; /* Center the modal vertically and horizontally */
  position: relative;
}

.close {
  position: absolute;
  top: 3px;
  right: 20px;
  cursor: pointer;
  font-size: 40px;
  color: #637381;
}