/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
/**
 * CONTENTS
 *
 * SETTINGS
 *
 *
 * GENERIC
 *
 * BASE

 *
 * OBJECTS

 *
 * COMPONENTS

 *
 * TRUMPS

 */
/**
 * #SETTINGS
 */
/*!
 * inuitcss, by @csswizardry
 *
 * github.com/inuitcss | inuitcss.com
 */
/**
 * #TOOLS
 */
input, textarea, form {
  color: #949497;
  font-family: inherit;
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: transparent;
  background: none;
}

textarea {
  resize: vertical;
}

button:focus {
  outline: none;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: rgba(148, 148, 151, 0.8);
  opacity: 1;
}

::placeholder { /* Most modern browsers support this now. */
  color: rgba(148, 148, 151, 0.8);
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

/*Change text in autofill textbox*/
input:-webkit-autofill {
  -webkit-text-fill-color: rgb(84.5308056872, 84.5308056872, 86.9691943128) !important;
}

.input--white:-webkit-autofill,
.input--white:-webkit-autofill:hover,
.input--white:-webkit-autofill:focus,
.input--white:-webkit-autofill:active {
  -webkit-transition-delay: 99999s;
}

select, button, form fieldset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0px;
  background: none;
}

/**
 * #GENERIC
 */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

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

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

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

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * 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 Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

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

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/*------------------------------------*\
    #RESET
\*------------------------------------*/
/**
 * As well as using normalize.css, it is often advantageous to remove all
 * margins from certain elements.
 */
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
figure,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
}

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */
abbr[title],
dfn[title] {
  cursor: help;
}

/**
 * Remove underlines from potentially troublesome elements.
 */
u,
ins {
  text-decoration: none;
}

/**
 * Apply faux underlines to inserted text via `border-bottom`.
 */
ins {
  border-bottom: 1px solid;
}

/*------------------------------------*\
    #BOX-SIZING
\*------------------------------------*/
/**
 * Set the global `box-sizing` state to `border-box`.
 *
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/**
 * #BASE
 */
html {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
  font-size: 15px;
  font-weight: 300;
  color: #949497;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 1900px;
  margin: 0px auto;
  scroll-behavior: smooth;
}

body {
  width: 100%;
}

.container--img {
  position: relative;
}
.container--img:after {
  display: block;
  content: "";
  width: 100%;
}
.container--img > img, .container--img > video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.item--wrap {
  position: relative;
}
.item--wrap > a {
  text-indent: -999999px;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

.body--frozen {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}
.body--frozen .header__bottom {
  transform: inherit !important;
  transition-delay: inherit !important;
  transition: inherit !important;
}

.page__content, header, footer {
  width: 100dvw;
  overflow: hidden;
}

h1, h2, h3, h4, h5 {
  position: relative;
  font-weight: 600;
  line-height: 1.2;
  color: #242424;
}

.title--header {
  font-size: 5.3333333333em;
  letter-spacing: -4px;
  max-width: 800px;
  line-height: 1.12;
  font-weight: 700;
}
.title--header strong {
  color: #00AAFF;
}

.title--section {
  font-size: 3.3333333333em;
  letter-spacing: -2.5px;
}
.title--section.title--contained {
  max-width: 450px;
}

.section--centered .title--contained {
  margin-left: auto;
  margin-right: auto;
}

.title--primary {
  color: #00AAFF;
}

.title--doctor {
  color: white;
}

.title--faq, .title--card, .title--doctor {
  font-size: 1.5333333333em;
  letter-spacing: -1px;
}
.title--faq a:hover, .title--card a:hover, .title--doctor a:hover {
  color: #00AAFF;
}

.title--faq a:hover .faq__arrow {
  transform: scale(1.15);
}

.title--footer {
  font-size: 1.2em;
  letter-spacing: -1px;
  margin-bottom: 0.8333333333em;
}

.title--modal {
  font-size: 2.6666666667em;
  letter-spacing: -2px;
}

@media (max-width: 1150px) {
  .title--header {
    font-size: 4.6666666667em;
    letter-spacing: -3.5px;
  }
  .title--section {
    font-size: 2.8666666667em;
    letter-spacing: -2px;
  }
  .title--modal {
    font-size: 2.2em;
  }
}
@media (max-width: 920px) {
  .title--header {
    font-size: 3.8666666667em;
    letter-spacing: -3px;
  }
  .title--section {
    font-size: 2.5333333333em;
    letter-spacing: -1.5px;
  }
  .title--modal {
    font-size: 1.8em;
    letter-spacing: -1.5px;
  }
}
@media (max-width: 650px) {
  .title--header {
    font-size: 3.4em;
    letter-spacing: -2.5px;
  }
  .title--section {
    font-size: 2.1333333333em;
    letter-spacing: -1px;
  }
  .title--faq, .title--card, .title--doctor {
    font-size: 1.4em;
    letter-spacing: -1px;
  }
  .title--faq {
    font-size: 1.3333333333em;
  }
}
@media (max-width: 540px) {
  .title--header {
    font-size: 3em;
    letter-spacing: -2px;
  }
  .title--section {
    font-size: 1.9333333333em;
    letter-spacing: -1px;
  }
}
@media (max-width: 510px) {
  .title--modal {
    font-size: 1.6666666667em;
  }
  .title--header {
    font-size: 2.6em;
  }
  .title--section {
    font-size: 1.8em;
  }
  .title--faq, .title--card, .title--doctor {
    font-size: 1.2666666667em;
  }
  .title--faq {
    font-size: 1.2em;
  }
}
@media (max-width: 405px) {
  .title--header {
    font-size: 2.4em;
  }
  .title--section {
    font-size: 1.6666666667em;
  }
  footer .title--section {
    font-size: 1.4666666667em;
  }
  .title--faq, .title--card, .title--doctor {
    font-size: 1.2em;
  }
  .title--faq {
    font-size: 1.0666666667em;
  }
}
@media (max-width: 360px) {
  .title--header {
    font-size: 2.0666666667em;
  }
  .title--modal {
    font-size: 1.4666666667em;
  }
}
a {
  text-decoration: none;
  color: #00AAFF;
  transition: all 0.25s ease 0s;
}
a:hover {
  color: rgb(0, 153, 229.5);
  border-color: rgb(0, 153, 229.5);
}

svg path, svg g, svg circle {
  transition: all 0.2s ease-in-out 0s;
}

/**
 * #OBJECTS
 */
/*------------------------------------*\
    #LIST-INLINE
\*------------------------------------*/
/**
 * The list-inline object simply displays a list of items in one line.
 */
.list-inline {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
}

.column--free {
  display: flex;
}

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

.column--column {
  flex-direction: column;
}

.column--top {
  align-items: flex-start;
}

.column--bottom {
  align-items: flex-end;
}

.column--spaced {
  justify-content: space-between;
}

.column--reversed {
  flex-direction: row-reverse;
}

.column--column-reversed {
  flex-direction: column-reverse;
}

.column--centered {
  align-items: center;
}

.column--equal {
  align-items: stretch;
}

.column--centered-w {
  justify-content: center;
}

.wrapper--centered {
  margin-left: auto;
  margin-right: auto;
}

.wrapper--middle {
  width: 1167px;
}

.wrapper--smallest {
  width: 900px;
}

.wrapper--large {
  width: 84.8958333333%;
}

.wrapper--small {
  width: 650px;
}

.wrapper--appointment {
  width: 750px;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 1300px) {
  .wrapper--middle {
    width: 90%;
  }
}
@media (max-width: 1100px) {
  .wrapper--smallest {
    width: 90%;
  }
}
@media (max-width: 1000px) {
  .wrapper--large {
    width: 90%;
  }
}
@media (max-width: 1000px) {
  .wrapper--appointment {
    width: 90%;
  }
}
@media (max-width: 800px) {
  .wrapper--small {
    width: 90%;
  }
}
@media (max-width: 510px) {
  .wrapper--appointment {
    width: 80%;
  }
}
@media (max-width: 405px) {
  .wrapper--appointment {
    width: 90%;
  }
}
.section {
  position: relative;
}

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

.section--bg {
  background-color: #F4F9FD;
  border-radius: 20px;
  margin: 0px 2em;
  padding: 5.3333333333em 0px;
  z-index: 3;
}

.section--large {
  margin-top: 6.6550925926%;
}

.section--bottom + footer {
  margin-top: 0px;
}

@media (max-width: 750px) {
  .section--bg {
    padding: 4.3333333333em 0px;
    margin: 0px 1.3333333333em;
  }
  .section--large {
    margin-top: 4.6666666667em;
  }
}
@media (max-width: 510px) {
  .section--bg {
    padding: 3em 0px;
    margin: 0px 1em;
  }
  .section--large {
    margin-top: 3em;
  }
}
@media (max-width: 405px) {
  .section--bg {
    padding: 2.3333333333em 0px;
  }
  .section--large {
    margin-top: 3.3333333333em;
  }
}
em {
  font-style: normal;
}

.text__break {
  display: block;
}

.section__text {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 2.2;
  margin-top: 1.6666666667em;
}
.section__text strong {
  font-weight: 600;
  color: #242424;
}
.section__text.section__text--close {
  margin-top: 0.8333333333em;
}
.section__text.section__text--big {
  font-size: 1.2666666667em;
}

.section__btn {
  margin-top: 3.6666666667em;
}
.section__btn.column .btn + .btn {
  margin-left: 1em;
}

@media (max-width: 920px) {
  .section__text {
    font-size: 1.1333333333em;
    margin-top: 1.4705882353em;
  }
  .section__text.section__text--big {
    font-size: 1.1333333333em;
  }
}
@media (max-width: 800px) {
  .section__text {
    margin-top: 0.8823529412em;
  }
  .section__btn {
    margin-top: 3.3333333333em;
  }
}
@media (max-width: 650px) {
  .section__btn {
    margin-top: 2em;
  }
  .section__text {
    font-size: 1.0666666667em;
  }
  .section__text.section__text--big {
    font-size: 1.0666666667em;
  }
}
@media (max-width: 510px) {
  .section__text {
    font-size: 0.9333333333em;
    line-height: 2;
  }
  .section__text.section__text--big {
    font-size: 0.9333333333em;
  }
}
@media (max-width: 405px) {
  footer .section__text {
    font-size: 0.8666666667em;
  }
  .section__text {
    margin-top: 0.5em;
  }
}
footer {
  margin-top: 10.4166666667%;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #F4F9FD 100%);
  padding-bottom: 1.6666666667em;
}

.footer__upper {
  margin-top: 8.6666666667em;
  margin-bottom: 2em;
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
  padding: 3.3333333333em 0px 3.3333333333em;
}

.footer__part + .footer__part {
  margin-left: 13.633265167%;
}

.footer__part--logo {
  min-width: 200px;
}

.map__container {
  width: 45.6714383095%;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0px 0px 40px rgba(0, 72, 108, 0.1);
  flex-shrink: 0;
  background-color: white;
  margin-right: 6.8166325835%;
}

.map__cta {
  font-size: 1.1333333333em;
  font-weight: 500;
  margin-top: 1.7647058824em;
  margin-bottom: 4.7058823529em;
}
.map__cta a {
  display: flex;
  align-items: center;
  text-decoration: underline;
}
.map__cta a:hover {
  color: #0088cc;
}
.map__cta a:hover:before {
  transform: scale(1.15) rotate(5deg);
}
.map__cta a:before {
  transition: all 0.25s ease 0s;
  content: "";
  width: 20px;
  height: 23px;
  display: inline-block;
  margin-right: 0.6666666667em;
  background: url(095e09ced2551cef55f8db276e9b6115.svg) no-repeat center center;
  background-size: contain;
  -webkit-background-size: contain;
}

.footer__logo, .footer__place {
  display: table;
}

.footer__logo {
  margin-bottom: 2em;
  flex-shrink: 0;
}
.footer__logo img {
  display: block;
  width: 140px;
}

.footer__place {
  font-weight: 500;
}
.footer__place span {
  display: table;
}

.emergency__numbers {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 65px;
       column-gap: 65px;
  font-weight: 500;
}
.emergency__numbers li {
  display: block;
}
.emergency__numbers li + li {
  margin-top: 0.6666666667em;
}
.emergency__numbers a {
  color: #949497;
}
.emergency__numbers a:hover {
  color: #00AAFF;
}

.numbers__list {
  display: inline-flex;
  flex-direction: column;
}
.numbers__list li + li {
  margin-top: 3px;
}

li.number__item--break .number__title {
  display: block;
}
li.number__item--break a, li.number__item--break span {
  max-width: 200px;
}

.number__title {
  color: #242424;
}

.footer__bottom {
  text-align: right;
}

.footer__cardi {
  color: #949497;
  font-size: 0.9333333333em;
  display: inline-block;
}
.footer__cardi span {
  display: inline-block;
  margin-right: 3px;
}
.footer__cardi img {
  width: 60px;
  transition: all 0.25s ease 0s;
}
.footer__cardi:hover img {
  transform: scale(1.1) rotate(-3deg);
}

@media (max-width: 1500px) {
  .map__texts .section__btn {
    flex-direction: column;
  }
  .map__texts .section__btn .btn + .btn {
    margin-left: 0px;
    margin-top: 0.6666666667em;
  }
}
@media (max-width: 900px) {
  footer {
    margin-top: 6em;
  }
  .footer__map {
    flex-direction: column;
  }
  .map__container {
    width: 100%;
    height: 350px;
    margin-right: 0px;
    margin-bottom: 2.6666666667em;
  }
  .footer__upper {
    flex-direction: column;
    margin-top: 5.3333333333em;
  }
  .footer__part + .footer__part {
    margin-left: 0px;
    margin-top: 2.6666666667em;
  }
}
@media (max-width: 650px) {
  .map__cta {
    margin-bottom: 0em;
  }
  .map__cta + .section__btn {
    margin-top: 1.6666666667em;
  }
}
@media (max-width: 650px) {
  .map__cta {
    font-size: 1.0666666667em;
    margin-top: 1.1764705882em;
  }
}
@media (max-width: 550px) {
  .emergency__numbers {
    -moz-column-count: 1;
         column-count: 1;
  }
  .emergency__numbers li {
    font-size: 0.9333333333em;
  }
  .footer__upper {
    padding-bottom: 2.6666666667em;
    padding-top: 2.6666666667em;
    margin-bottom: 1.3333333333em;
  }
  .footer__logo {
    margin-bottom: 1.3333333333em;
  }
  footer {
    padding-bottom: 1em;
  }
}
@media (max-width: 510px) {
  footer {
    margin-top: 3.3333333333em;
  }
  .footer__upper {
    margin-top: 4em;
  }
}
@media (max-width: 450px) {
  .map__container {
    height: 250px;
  }
}
@media (max-width: 405px) {
  .map__cta {
    font-size: 1em;
  }
}
.header--top {
  overflow: hidden;
}

.header__logo {
  line-height: 0;
  font-size: 1em;
}
.header__logo img {
  height: auto;
  width: 140px;
}

.header__content {
  padding-top: 8.1799591002%;
  padding-bottom: 8.8616223586%;
  margin-bottom: 3.3333333333em;
  position: relative;
}
.header__content:after {
  content: "";
  width: 400px;
  height: calc(100% + 60px);
  background: url(6696f2624a9dd823b4808e8894ea37f6.png) no-repeat center center;
  background-size: contain;
  -webkit-background-size: contain;
  position: absolute;
  right: 50px;
  top: 0px;
  transform: rotate(4deg);
  filter: drop-shadow(7px 10px 20px rgba(0, 0, 0, 0.3));
}

.header__subtitle {
  font-weight: 300;
  font-size: 1.625em;
  margin-top: 2.6923076923em;
  color: #242424;
}

.header--news .header__bottom {
  padding-top: 1.3333333333em;
}

@media (max-width: 1350px) {
  .header__content:after {
    content: "";
    width: 350px;
    right: -5%;
  }
}
@media (max-width: 1150px) {
  .header__subtitle {
    font-size: 1.5333333333em;
  }
}
@media (max-width: 1050px) {
  .header__content {
    z-index: 2;
  }
  .header__content:after {
    height: 70dvh;
    z-index: -1;
    opacity: 0.085;
    width: 70%;
    right: -10%;
  }
}
@media (max-width: 920px) {
  .header__subtitle {
    font-weight: 400;
    margin-top: 1.9047619048em;
  }
}
@media (max-width: 820px) {
  .header__content {
    text-align: center;
    padding-top: 5.3333333333em;
  }
  .header__content:after {
    display: none;
  }
  .header__subtitle {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 800px) {
  .header--news .header__bottom {
    padding-top: 3.3333333333em;
  }
}
@media (max-width: 650px) {
  .header__subtitle {
    font-size: 1.4666666667em;
  }
  .header__content {
    padding-top: 4.6666666667em;
    padding-bottom: 5em;
    margin-bottom: 0px;
  }
}
@media (max-width: 540px) {
  .header__subtitle {
    font-size: 1.3333333333em;
  }
  .header__logo img {
    width: 120px;
  }
}
@media (max-width: 510px) {
  .header__subtitle {
    font-size: 1.2em;
    max-width: 290px;
    margin-top: 1.6666666667em;
  }
}
@media (max-width: 360px) {
  .header__subtitle {
    font-size: 1.1333333333em;
  }
  .header__logo img {
    width: 100px;
  }
}
.menu__container {
  margin-top: 3em;
}

.menu a {
  font-weight: 400;
  color: #242424;
  font-size: 1.2em;
  display: block;
}
.menu li + li {
  margin-left: 4.6666666667em;
}
.menu .item--responsive {
  display: none;
}

.footer__menu li {
  display: block;
}
.footer__menu a {
  color: #949497;
}
.footer__menu a:hover {
  color: #00AAFF;
}

.menu__link--current {
  color: #00AAFF;
}

.menu__icon {
  height: 24px;
}

.menu__action {
  display: none;
}

.menu__action.action--hide {
  display: none;
}

.action--close {
  position: absolute;
  z-index: 15;
  top: 20px;
  right: 5%;
}

@media (max-width: 1150px) {
  .menu li + li {
    margin-left: 1.3333333333em;
  }
  .menu__container {
    margin-top: 2em;
  }
}
@media (max-width: 1020px) {
  .menu a {
    font-size: 1.1333333333em;
  }
  .menu li + li {
    margin-left: 1em;
  }
}
@media (max-width: 800px) {
  .menu__container {
    top: 0px;
    width: 100%;
    background: white;
    z-index: 55;
    left: 0px;
    margin-top: 1.3333333333em;
  }
  .btn--menu {
    margin-left: auto;
  }
  .menu__action {
    display: block;
    margin-left: 2em;
    line-height: 1;
  }
  .action--close {
    top: 60px;
  }
  .action--open {
    top: 2px;
  }
  .menu {
    transition: all 0.35s ease 0s;
  }
  .menu:before {
    content: "";
    background: url(8fc2bdf270393acb396ea5421e91c54d.svg) no-repeat center center;
    background-size: contain;
    -webkit-background-size: contain;
    width: 200dvw;
    height: 200dvh;
    position: absolute;
    left: 5%;
    top: 0px;
    opacity: 0.1;
  }
  .menu {
    display: flex;
    align-items: center;
    background: white;
    position: absolute;
    width: 100dvw;
    height: 100dvh;
    z-index: 5;
    left: 0px;
    top: 0px;
    box-shadow: 0px 2px 10px rgba(1, 1, 1, 0.1);
    background: #00AAFF;
    margin-top: 0px;
    padding: 2em 0px;
    height: 100dvh;
    overflow: hidden;
  }
  .menu .menu__list {
    width: 100%;
  }
  .menu li {
    display: block;
    width: 100%;
    padding-left: 10%;
    transition: all 0.45s ease-in-out 0.25s;
    transform: translateX(0%);
    opacity: 1;
  }
  .menu li a {
    color: white;
    font-size: 1.8666666667em;
    font-weight: 700;
    display: inline-block;
  }
  .menu .item--responsive {
    display: block;
  }
  .menu li:nth-child(2) {
    transition-delay: 0.39s;
  }
  .menu li:nth-child(3) {
    transition-delay: 0.51s;
  }
  .menu li:nth-child(4) {
    transition-delay: 0.63s;
  }
  .menu li:nth-child(5) {
    transition-delay: 0.75s;
  }
  .menu li:nth-child(6) {
    transition-delay: 0.87s;
  }
  .menu li:nth-child(7) {
    transition-delay: 0.99s;
  }
  .menu li:nth-child(8) {
    transition-delay: 1.11s;
  }
  .menu li:nth-child(9) {
    transition-delay: 1.23s;
  }
  .menu li + li {
    margin-top: 2em;
    margin-left: 0px;
  }
  nav.menu--hidden {
    height: 0px;
    overflow: hidden;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  nav.menu--hidden li {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@media (max-width: 540px) {
  .menu__action {
    margin-left: 1.3333333333em;
  }
}
@media (max-width: 350px) {
  .menu__action {
    margin-left: 0.6666666667em;
  }
}
ul.slick-dots {
  bottom: 20px;
}

ul.slick-dots li {
  background: white;
  border-radius: 100%;
  width: 12px;
  height: 12px;
}
ul.slick-dots li.slick-active {
  background: #00AAFF;
}
ul.slick-dots li button {
  opacity: 0;
}

.slick-slider .slick-arrow {
  background: blue;
  position: absolute;
  right: 0px;
  bottom: -30px;
  z-index: 40;
  top: inherit;
  left: inherit;
  background: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slick-slider .slick-arrow:focus {
  background: white;
}
.slick-slider .slick-arrow:hover {
  background: #00AAFF;
}
.slick-slider .slick-arrow:before {
  color: black;
  width: 6px;
  height: 11px;
  display: block;
}
.slick-slider .slick-prev {
  right: 60px;
  border-right: 1px solid #949497;
}
.slick-slider .slick-next:before {
  content: "";
  background: url(98de41c48072d5c3665d553ef441f045.svg) no-repeat center center;
  background-size: contain;
  -webkit-background-size: contain;
}
.slick-slider .slick-prev:before {
  content: "";
  background: url(98de41c48072d5c3665d553ef441f045.svg) no-repeat center center;
  background-size: contain;
  -webkit-background-size: contain;
}

.swiper-wrapper {
  box-sizing: border-box;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0px !important;
  padding: 0px;
  background-color: #D7D7D7;
  opacity: 1;
  transition: all 0.25s ease 0s;
}
.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 0.6666666667em !important;
}
.swiper-pagination-bullet:hover {
  background-color: #00AAFF;
  transform: scale(1.05);
}

.swiper-pagination-bullet-active {
  background-color: #00AAFF;
}

.swiper--appointment {
  padding-bottom: 2em;
}

.swiper__navigation.wrapper--appointment {
  position: absolute;
}
.swiper__navigation.wrapper--appointment .swiper__arrow > svg {
  display: none;
}
.swiper__navigation.wrapper--appointment .swiper__arrow:after {
  background: url(5e730d4b7a5decfa3bcff4e2ca8f820c.svg) no-repeat center center;
  background-size: contain;
  -webkit-background-size: contain;
  width: 35px;
  height: 35px;
  content: "";
  display: block;
  border-radius: 50%;
  transition: all 0.25s ease 0s;
}
.swiper__navigation.wrapper--appointment .swiper__arrow:hover:after {
  transform: scale(1.15);
  box-shadow: 0px 0px 40px rgba(0, 72, 108, 0.2);
}
.swiper__navigation.wrapper--appointment .swiper-button-prev {
  left: -50px;
}
.swiper__navigation.wrapper--appointment .swiper-button-prev:after {
  transform: rotate(180deg);
}
.swiper__navigation.wrapper--appointment .swiper-button-prev:hover:after {
  transform: rotate(180deg) scale(1.15);
}
.swiper__navigation.wrapper--appointment .swiper-button-next {
  right: -50px;
}

.pictures__pagination, .doctors__pagination {
  position: static;
  display: table;
  width: auto !important;
  margin-left: auto;
  margin-right: auto;
}

.pictures__pagination {
  background-color: #F7F7F7;
  border-radius: 22px;
  padding: 0.6em 1.3333333333em;
  margin: 1.3333333333em auto 0px;
}

.doctors__pagination {
  margin-top: 1.3333333333em;
}

@media (max-width: 1000px) {
  .swiper__navigation.wrapper--appointment .swiper__arrow:after {
    width: 30px;
    height: 30px;
  }
  .swiper__navigation.wrapper--appointment .swiper__arrow:hover:after {
    transform: scale(1.15);
    box-shadow: 0px 0px 40px rgba(0, 72, 108, 0.2);
  }
  .swiper__navigation.wrapper--appointment .swiper-button-prev {
    left: -20px;
  }
  .swiper__navigation.wrapper--appointment .swiper-button-next {
    right: -20px;
  }
}
@media (max-width: 550px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 8px;
  }
  .pictures__pagination {
    padding: 0.4666666667em 1em;
    margin-top: 1em;
  }
}
.btn {
  display: inline-block;
  text-align: center;
  border-radius: 24px;
  transition: all 0.2s ease-in-out;
  font-weight: 600;
  font-size: 1.2em;
  padding: 0.6111111111em 1.6666666667em;
  line-height: 1.2;
}

.btn--primary {
  color: white;
  background-color: #00AAFF;
  border: 1px solid #00AAFF;
}
.btn--primary:hover {
  background-color: #0088cc;
  color: white;
}

.btn--outline {
  background-color: inherit;
  color: #00AAFF;
}

.btn--full {
  display: block;
  width: 100%;
}

.btn--card {
  margin-top: 2.2222222222em;
}

.btn--header {
  font-size: 1.4em;
  margin-top: 4.347826087em;
  border-radius: 30px;
  min-width: 420px;
  text-align: left;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4761904762em 0.4761904762em 0.4761904762em 1.4285714286em;
}
.btn--header:after {
  transition: all 0.2s ease-in-out;
  content: "";
  width: 35px;
  height: 35px;
  background: url(9bf5c5897928a2206d82362b88e66d86.svg) no-repeat center center;
  background-size: contain;
  -webkit-background-size: contain;
  display: inline-block;
}
.btn--header:hover {
  min-width: 430px;
}
.btn--header:hover:after {
  transform: rotate(270deg);
}

.btn--menu {
  font-size: 1.2em;
  padding: 0.5em 1.1111111111em;
}

@media (max-width: 920px) {
  .btn--header {
    font-size: 1.2666666667em;
    margin-top: 3.6842105263em;
  }
  .btn--header:after {
    content: "";
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 870px) {
  .btn--menu {
    font-size: 1.1333333333em;
  }
  .btn--menu span {
    display: none;
  }
  .btn--menu::first-letter {
    text-transform: uppercase;
  }
}
@media (max-width: 650px) {
  .btn {
    font-size: 1.1333333333em;
  }
  .btn--header {
    min-width: 350px;
    font-size: 1.2em;
    margin-top: 3.0555555556em;
  }
}
@media (max-width: 530px) {
  .btn {
    font-size: 1.0666666667em;
  }
}
@media (max-width: 510px) {
  .btn--card {
    margin-top: 1.4666666667em;
  }
}
@media (max-width: 405px) {
  .btn {
    font-size: 0.9333333333em;
  }
  .btn--header {
    min-width: inherit;
    width: auto;
  }
  .btn--header:after {
    margin-left: 1.3333333333em;
  }
}
@media (max-width: 330px) {
  .btn--menu {
    font-size: 0.9333333333em;
  }
}
span.select2-container--default .select2-selection--single {
  border: 1px solid rgb(222.25, 222.25, 222.25) !important;
  border-radius: 0px !important;
}

textarea {
  min-height: 100px;
}

.woocommerce form .form-row label, .woocommerce-page form .form-row label {
  font-size: 0.9333333333em;
  color: rgb(122.2369668246, 122.2369668246, 125.7630331754);
  margin-bottom: 5px;
  display: block;
}

.woocommerce-variation-add-to-cart {
  margin-top: 1.3333333333em;
}

.form__part input, .form__part textarea {
  width: 100%;
}

.form__part--half {
  width: 47.5%;
}

.form__part--full {
  width: 100%;
}

.form__lign + .form__lign {
  margin-top: 1em;
}

.form__submit {
  margin-top: 2em;
}

.form__error {
  border: 1px solid red;
  color: red;
  background: rgba(255, 0, 0, 0.2);
}

.form__success {
  border: 1px solid green;
  color: green;
  background: rgba(0, 128, 0, 0.2);
}

select {
  position: relative;
  background: url(98de41c48072d5c3665d553ef441f045.svg) no-repeat 97.5% center rgba(255, 255, 255, 0.1);
}

@media (max-width: 450px) {
  .form__part--half {
    width: 100%;
  }
  .form__part--half + .form__part--half {
    margin-top: 1em;
  }
}
.card__text {
  font-weight: 400;
  font-size: 1.1333333333em;
  margin-top: 0.8823529412em;
}
.card__text strong {
  font-weight: 500;
  color: #242424;
}

@media (max-width: 650px) {
  .card__text {
    font-weight: 500;
    font-size: 1.0666666667em;
  }
}
@media (max-width: 510px) {
  .card__text {
    font-size: 0.9333333333em;
    margin-top: 0.5em;
  }
}
button.remodal-close {
  left: inherit;
  right: 0px;
}

.modal__content {
  margin: 1.3333333333em;
}

button.remodal-close {
  left: inherit;
  right: 30px;
  top: 30px;
}

.modal--news {
  width: 1328px;
  max-width: inherit;
  padding: 6.6666666667em 9.837962963% 6.6666666667em;
  max-height: 93dvh;
  overflow: scroll;
  border-radius: 30px;
  box-shadow: 0px 0px 40px 0px rgba(1, 1, 1, 0.2);
}

div.remodal-overlay {
  background: rgba(0, 89, 152, 0.35);
  backdrop-filter: blur(8px);
}

@media (max-width: 1420px) {
  .modal--news {
    width: 90%;
  }
}
@media (max-width: 850px) {
  .modal--news {
    padding: 4.6666666667em 10% 4.6666666667em;
  }
}
@media (max-width: 620px) {
  .remodal-overlay {
    width: 100dvw;
    height: 100dvh;
    overflow: hidden;
    top: 0px;
    left: 0px;
    pointer-events: none;
  }
  .remodal-wrapper {
    padding: 0px;
    width: 100%;
    height: 100dvh;
    max-height: inherit;
    overflow: hidden;
    pointer-events: none;
    top: 0px;
    left: 0px;
  }
  .modal--news {
    display: block;
    width: 100%;
    height: 90dvh;
    border-radius: 0px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin: 0px;
    max-height: inherit;
    bottom: 0px;
    position: absolute;
    pointer-events: all;
  }
}
@media (max-width: 550px) {
  .modal--news .news__date {
    font-size: 1.2em;
  }
}
@media (max-width: 450px) {
  .modal--news {
    padding: 3.3333333333em 5% 3.3333333333em;
  }
  .modal--news button.remodal-close {
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 350px) {
  .modal--news .news__date {
    font-size: 1.0666666667em;
  }
}
.cookie__banner {
  width: 550px;
  background-color: white;
  box-shadow: 0px 0px 30px 30px rgba(1, 1, 1, 0.06);
  position: fixed;
  left: 20px;
  bottom: 20px;
  border-radius: 17px;
  z-index: 15;
  transform: translateX(-200%);
  animation-name: cookiebox;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  padding: 2em 2.6666666667em;
}

.cookie__banner--hidden {
  animation-name: cookiebox-reverse;
  animation-delay: 0s;
}

.cookie__upper {
  margin-bottom: 2.6666666667em;
}
.cookie__upper ul {
  margin: 0.6666666667em 0px;
}
.cookie__upper li {
  display: block;
  padding-left: 0.6666666667em;
}
.cookie__upper li:before {
  content: "- ";
}
.cookie__upper li + li {
  margin-top: 0.3333333333em;
}
.cookie__upper a {
  text-decoration: underline;
}
.cookie__upper p + p {
  margin-top: 1.3333333333em;
}

.cookie__texts {
  margin-top: 0.6666666667em;
  font-size: 0.9333333333em;
}

@keyframes cookiebox {
  from {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes cookiebox-reverse {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-200%);
  }
}
@media (max-width: 700px) {
  .cookie__banner {
    width: 95%;
    left: 2.5%;
  }
}
@media (max-width: 450px) {
  .cookie__banner {
    font-size: 14px;
  }
}
.faq__item {
  transition: all 0.6s ease-in-out 0s;
}
.faq__item a {
  color: black;
}

.faq__list {
  margin-top: 4.6666666667em;
}
.faq__list > li {
  display: block;
}
.faq__list .faq__item + .faq__item {
  margin-top: 2.3333333333em;
}
.faq__list .faq__item--open + .faq__item {
  margin-top: 1.3333333333em;
}

.faq__item {
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 1.3333333333em;
}
.faq__item:last-child {
  border-bottom: inherit;
}

.faq__item--open .faq__details {
  margin-top: 1.3333333333em;
  margin-bottom: 0.6666666667em;
}
.faq__item--open .title--faq a {
  color: #00AAFF;
}
.faq__item--open .faq__arrow {
  transform: rotate(90deg);
}

.faq__details {
  transition: all 0.6s ease-in-out 0s;
  overflow: hidden;
  height: 0px;
  max-width: 750px;
  font-size: 1.1333333333em;
  font-weight: 400;
  line-height: 2.2;
}
.faq__details p + p {
  margin-top: 1.5em;
}
.faq__details strong, .faq__details em {
  font-weight: 600;
  color: #242424;
}
.faq__details ul, .faq__details ol {
  padding-left: 1.1764705882em;
  margin-left: 1.1764705882em;
}
.faq__details a {
  color: #00AAFF;
  font-weight: 500;
  text-decoration: underline;
}

.faq__content {
  width: 100%;
}

.faq__arrow {
  width: 25px;
  transition: all 0.25s ease 0s;
  margin-left: 0.6666666667em;
}

@media (max-width: 750px) {
  .faq__list {
    margin-top: 3.3333333333em;
  }
  .faq__list .faq__item + .faq__item {
    margin-top: 1.3333333333em;
  }
  .faq__list .faq__item--open + .faq__item {
    margin-top: 0.6666666667em;
  }
  .faq__item {
    padding-bottom: 1em;
  }
}
@media (max-width: 650px) {
  .faq__list {
    margin-top: 2.6666666667em;
  }
  .faq__details {
    font-size: 1em;
  }
}
@media (max-width: 450px) {
  .faq__details {
    font-size: 0.9333333333em;
  }
}
.vp--parent .vp--item {
  transition: all 0.6s ease 0s;
  opacity: 0;
  transform: translate3d(0px, 50px, 0px);
}
.vp--parent .vp--item-left {
  transition: all 0.6s ease 0s;
  opacity: 0;
  transform: translate3d(-50px, 0px, 0px);
}
.vp--parent .vp--item-right {
  transition: all 0.6s ease 0s;
  opacity: 0;
  transform: translate3d(50px, 0px, 0px);
}
.vp--parent .vp--img {
  transition: all 0.8s ease 0s;
  opacity: 0;
  transition-delay: 0s;
  transform: scale(0.98);
}
.vp--parent .vp--delay1 {
  transition-delay: 0s;
}
.vp--parent .vp--delay2 {
  transition-delay: 0.25s;
}
.vp--parent .vp--delay3 {
  transition-delay: 0.5s;
}
.vp--parent .vp--delay4 {
  transition-delay: 0.75s;
}
.vp--parent .vp--delay5 {
  transition-delay: 1s;
}
.vp--parent[data-in-viewport=true] .vp--item, .vp--parent[data-in-viewport=true] .vp--item-left, .vp--parent[data-in-viewport=true] .vp--item-right, .vp--parent[data-in-viewport=true] .vp--img {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}
.vp--parent[data-in-viewport=true] .vp--img {
  transform: scale(1);
}

/**
 * #COMPONENTS
 */
.appointment__tiles {
  margin-top: 3.3333333333em;
}
.appointment__tiles li {
  display: block;
}
.appointment__tiles a {
  font-size: 1.0666666667em;
}
.appointment__tiles li + li {
  margin-left: 0.6666666667em;
}

.appointment__cards {
  margin-top: 2.6666666667em;
}

.appointment__img {
  width: 165px;
  margin-right: 7.1428571429%;
  flex-shrink: 0;
}
.appointment__img .thumb--h {
  display: none;
}
.appointment__img:after {
  padding-bottom: 151.5151515152%;
}
.appointment__img img {
  border-radius: 20px;
}

.appointment__item {
  background-color: white;
  border-radius: 20px;
  padding: 1em;
  text-align: left;
  transition: all 0.25s ease 0s;
}
.appointment__item.swiper-slide-active {
  box-shadow: 0px 0px 40px rgba(0, 72, 108, 0.1);
}

.appointment__text .card__text {
  max-width: 350px;
}

.appointment__disclaimer {
  font-weight: 400;
  font-size: 1.0666666667em;
  margin-top: 0.625em;
  line-height: 2.2;
}
.appointment__disclaimer strong {
  font-weight: 500;
  color: #242424;
}

.appointment__container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .appointment__content .section__intro {
    max-width: 500px;
  }
  .appointment__disclaimer {
    max-width: 570px;
    margin-top: 0px;
  }
}
@media (max-width: 750px) {
  .appointment__tiles a {
    font-size: 1em;
    padding: 0.4666666667em 0.8666666667em;
  }
  .appointment__tiles li + li {
    margin-left: 0.4666666667em;
  }
}
@media (max-width: 650px) {
  .appointment__img {
    width: 135px;
    margin-right: 2em;
  }
}
@media (max-width: 600px) {
  .appointment__tiles {
    display: none;
    margin-top: 2em;
  }
}
@media (max-width: 550px) {
  .appointment__item > .column--free {
    flex-direction: column;
  }
  .appointment__img {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 1.6666666667em;
  }
  .appointment__img .thumb--v {
    display: none;
  }
  .appointment__img .thumb--h {
    display: block;
  }
  .appointment__img:after {
    padding-bottom: 66.6666666667%;
  }
  .appointment__text {
    width: 100%;
    padding: 0px 0.6666666667em 0.6666666667em;
  }
  .appointment__text .btn {
    width: 100%;
  }
  .appointment__text .card__text {
    max-width: inherit;
  }
}
@media (max-width: 510px) {
  .appointment__cards {
    margin-top: 2.6666666667em;
  }
  .appointment__tiles {
    margin-top: 1.3333333333em;
  }
  .appointment__tiles a {
    font-size: 0.9333333333em;
  }
  .appointment__disclaimer {
    font-size: 0.9333333333em;
  }
}
.pictures__list {
  margin-top: 1.3333333333em;
}

.picture__item {
  max-width: 975px;
  cursor: pointer;
}

.picture__img {
  background-color: #F7F7F7;
  border-radius: 20px;
}
.picture__img:after {
  padding-bottom: 66.6666666667%;
}
.picture__img img {
  border-radius: 20px;
}

@media (max-width: 1200px) {
  .picture__item {
    max-width: 675px;
  }
}
@media (max-width: 800px) {
  .picture__item {
    max-width: 75%;
  }
}
@media (max-width: 750px) {
  .pictures__list {
    margin-top: 1.3333333333em;
  }
}
@media (max-width: 510px) {
  .pictures__list {
    margin-top: 1em;
  }
}
.doctors__left {
  max-width: 650px;
}

.doctors__container {
  width: 350px;
  flex-shrink: 0;
  margin-right: 0px;
}

.doctor__item {
  position: relative;
}

.doctor__img:after {
  padding-bottom: 151.5151515152%;
}
.doctor__img img {
  border-radius: 20px;
  z-index: 1;
}
.doctor__img::before {
  width: 100%;
  position: absolute;
  content: "";
  display: block;
  bottom: 0px;
  left: 0px;
  height: 100%;
  z-index: 2;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.8) 100%);
  border-radius: 20px;
}

.doctor__texts {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 0px 1.6666666667em 2em;
  z-index: 3;
}

.doctors__contacts {
  margin-top: 0.4666666667em;
  font-weight: 600;
}
.doctors__contacts li {
  display: block;
}
.doctors__contacts a {
  font-size: 1.1333333333em;
  letter-spacing: -0.85px;
}

.doctor__holidays {
  background-color: rgba(255, 145, 0, 0.2);
  border: 1px solid #FF9100;
  color: #FF9100;
  border-radius: 20px;
  padding: 0.2em 1em;
  margin-bottom: 1.3333333333em;
  margin-top: 0.6666666667em;
  font-weight: 600;
  font-size: 0.9333333333em;
  display: inline-block;
}

@media (max-width: 1200px) {
  .doctors__left {
    max-width: 550px;
  }
}
@media (max-width: 1070px) {
  .doctors__left {
    padding-right: 60px;
  }
  .doctors__container {
    width: 310px;
  }
}
@media (max-width: 800px) {
  .section--doctors > .column--free {
    flex-direction: column-reverse;
  }
  .doctors__left, .doctors__container {
    text-align: center;
    padding: 0px;
  }
  .doctors__left .title--contained, .doctors__container .title--contained {
    margin-left: auto;
    margin-right: auto;
  }
  .doctors__container {
    text-align: left;
    margin: 0px auto 2em;
  }
}
@media (max-width: 510px) {
  .doctors__container {
    width: 270px;
  }
  .doctor__holidays {
    font-weight: 500;
    font-size: 0.8666666667em;
  }
  .doctors__contacts a {
    font-size: 1em;
    letter-spacing: -0.85px;
  }
}
@media (max-width: 410px) {
  .doctors__contacts a {
    font-size: 0.9333333333em;
  }
}
@media (max-width: 340px) {
  .doctors__container {
    width: 250px;
  }
  .doctors__contacts a {
    word-break: break-all;
  }
}
.news__container {
  background-color: #00AAFF;
  color: #949497;
  padding: 0.5882352941em 10px 0.7058823529em;
  text-align: center;
  line-height: 1.4;
  color: white;
  font-weight: 600;
  position: fixed;
  width: 100%;
  z-index: 5;
  transition: all 0.25s ease 0s;
}
.news__container a {
  text-decoration: underline;
  display: inline-block;
  color: white;
  margin-left: 0.2941176471em;
}
.news__container a:after {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-left: 0.6666666667em;
  position: relative;
  top: 3px;
}

.header--scrolled .news__container {
  font-size: 0.8666666667em;
  padding: 0.4705882353em 10px 0.7058823529em;
}

.news__upper {
  max-width: 750px;
  margin: 0px auto;
}

.news__date {
  font-size: 1.3333333333em;
  margin-top: 0.8333333333em;
  font-weight: 400;
  color: #949497;
}

.news__content {
  font-size: 1.0666666667em;
  margin-top: 3.75em;
  line-height: 2.2;
  text-align: left;
  color: #949497;
  font-weight: 500;
}
.news__content img {
  display: block;
  width: 100%;
  height: auto;
  margin: 2.5em 0px;
  border-radius: 35px;
  box-shadow: 0px 0px 40px 0px rgba(1, 1, 1, 0.25);
  max-width: 1050px;
}
.news__content h1, .news__content h2, .news__content h3, .news__content h4 {
  margin-top: 2.3333333333em;
  margin-bottom: 0.6666666667em;
}
.news__content p + p {
  margin-top: 2em;
}
.news__content ol, .news__content ul {
  padding-left: 0.6666666667em;
  margin: 1.5625em 0px;
}
.news__content ol li, .news__content ul li {
  display: block;
  position: relative;
}
.news__content ol li:before, .news__content ul li:before {
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  background: #00AAFF;
  margin-right: 0.6666666667em;
  position: relative;
  transform: translateY(-3px) rotate(45deg);
}
.news__content ol, .news__content ul, .news__content p, .news__content h1, .news__content h2, .news__content h3, .news__content h4, .news__content h5 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.news__buttons button, .news__button a {
  font-weight: 400;
}

.news__buttons {
  justify-content: center;
  margin-top: 5.3333333333em;
}
.news__buttons li + li {
  margin-left: 1.3333333333em;
}
.news__buttons li {
  display: block;
}

@media (max-width: 850px) {
  .news__container {
    font-size: 1.0666666667em;
    padding: 0.5em 1.25em 0.625em;
  }
  .news__buttons {
    margin-top: 4em;
  }
}
@media (max-width: 700px) {
  .news__container {
    font-size: 1em;
  }
}
@media (max-width: 510px) {
  .news__container {
    font-size: 0.9333333333em;
  }
  .news__buttons {
    margin-top: 2.6666666667em;
  }
  .news__content {
    font-size: 1em;
    margin-top: 2em;
  }
  .news__content img {
    border-radius: 20px;
  }
}
@media (max-width: 450px) {
  .news__content {
    font-size: 1em;
    margin-top: 2em;
    line-height: 2;
  }
  .news__content img {
    margin: 1.875em 0px;
    border-radius: 25px;
  }
  .news__content p + p {
    margin-top: 1.5em;
  }
  .news__content ol, .news__content ul {
    padding-left: 0.6666666667em;
    margin: 1.25em 0px;
  }
  .news__buttons {
    margin-top: 3.3333333333em;
  }
}
@media (max-width: 360px) {
  .news__container {
    font-size: 0.8666666667em;
  }
}
/**
 * #TRUMPS
 */
/*------------------------------------*\
    #CLEARFIX
\*------------------------------------*/
/**
 * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
 * Extend the clearfix class with Sass to avoid the `.clearfix` class appearing
 * over and over in your markup.
 */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*------------------------------------*\
    #WIDTHS
\*------------------------------------*/
/**
 * A series of width helper classes that you can use to size things like grid
 * systems. Classes can take a fraction-like format (e.g. `.2/3`) or a spoken-
 * word format (e.g. `two-thirds`). Toggle formats by overriding the
 * `$inuit-use-fractions` variable defined below.
 */
/**
 * Whole.
 */
.one-whole {
  width: 100% !important;
}

/**
 * Halves.
 */
.one-half,
.two-quarters,
.three-sixths,
.four-eighths,
.five-tenths,
.six-twelfths {
  width: 50% !important;
}

/**
 * Thirds.
 */
.one-third,
.two-sixths,
.three-ninths,
.four-twelfths {
  width: 33.3333333% !important;
}

.two-thirds,
.four-sixths,
.six-ninths,
.eight-twelfths {
  width: 66.6666666% !important;
}

/**
 * Quarters.
 */
.one-quarter,
.two-eighths,
.three-twelfths {
  width: 25% !important;
}

.three-quarters,
.six-eighths,
.nine-twelfths {
  width: 75% !important;
}

/**
 * Fifths.
 */
.one-fifth,
.two-tenths {
  width: 20% !important;
}

.two-fifths,
.four-tenths {
  width: 40% !important;
}

.three-fifths,
.six-tenths {
  width: 60% !important;
}

.four-fifths,
.eight-tenths {
  width: 80% !important;
}

/**
 * Sixths.
 */
.one-sixth,
.two-twelfths {
  width: 16.6666666% !important;
}

.five-sixths,
.ten-twelfths {
  width: 83.3333333% !important;
}

/**
 * Eighths.
 */
.one-eighth {
  width: 12.5% !important;
}

.three-eighths {
  width: 37.5% !important;
}

.five-eighths {
  width: 62.5% !important;
}

.seven-eighths {
  width: 87.5% !important;
}

/**
 * Ninths.
 */
.one-ninth {
  width: 11.1111111% !important;
}

.two-ninths {
  width: 22.2222222% !important;
}

.four-ninths {
  width: 44.4444444% !important;
}

.five-ninths {
  width: 55.5555555% !important;
}

.seven-ninths {
  width: 77.7777777% !important;
}

.eight-ninths {
  width: 88.8888888% !important;
}

/**
 * Tenths.
 */
.one-tenth {
  width: 10% !important;
}

.three-tenths {
  width: 30% !important;
}

.seven-tenths {
  width: 70% !important;
}

.nine-tenths {
  width: 90% !important;
}

/**
 * Twelfths.
 */
.one-twelfth {
  width: 8.3333333% !important;
}

.five-twelfths {
  width: 41.6666666% !important;
}

.seven-twelfths {
  width: 58.3333333% !important;
}

.eleven-twelfths {
  width: 91.6666666% !important;
}

/*------------------------------------*\
    #SPACING
\*------------------------------------*/
/**
 * Margin and padding helper classes. Use these to tweak layout on a micro
 * level.
 *
 * `.(m|p)(t|r|b|l|h|v)(-|+|0) {}` = margin/padding top/right/bottom/left/horizontal/vertical less/more/none
 */
/**
 * Margin helper classes.
 *
 * Add margins.
 */
.m {
  margin: 24px !important;
}

.mt {
  margin-top: 24px !important;
}

.mr {
  margin-right: 24px !important;
}

.mb {
  margin-bottom: 24px !important;
}

.ml {
  margin-left: 24px !important;
}

.mh {
  margin-right: 24px !important;
  margin-left: 24px !important;
}

.mv {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

/**
 * Add huge margins.
 */
.m\+\+ {
  margin: 96px !important;
}

.mt\+\+ {
  margin-top: 96px !important;
}

.mr\+\+ {
  margin-right: 96px !important;
}

.mb\+\+ {
  margin-bottom: 96px !important;
}

.ml\+\+ {
  margin-left: 96px !important;
}

.mh\+\+ {
  margin-right: 96px !important;
  margin-left: 96px !important;
}

.mv\+\+ {
  margin-top: 96px !important;
  margin-bottom: 96px !important;
}

/**
 * Remove margins.
 */
.m0 {
  margin: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.mh0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mv0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.hide {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip: rect(1px 1px 1px 1px);
  width: 1px;
  height: 1px;
}

.text-cut {
  white-space: nowrap;
  overflow: hidden; /* pour Opera 9 */
  text-overflow: ellipsis; /* pour le reste du monde */
}
