html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
textarea,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-size: 17.5px;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
}

:root {
  --line-height: 1.8;
  --white: #ffffff;
  --primary: #1a5eab;
  --seconday: #7fbdeb;
  --gray: #efefef;
  --darkprimary: #15365c;
}

html,
body {
  min-height: 100vh;
  color: #212529;
}

b {
  font-weight: 700;
}

p {
  line-height: var(--line-height);
}

.section-content p {

  margin-bottom: 1em;
}

strong,
b {
  font-weight: 700;
}

a {
  color: #212529;
  text-decoration: none;
}

.container {
  z-index: 1;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.topnav {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  z-index: 10;
  background-color: #fff;
  position: sticky;
  top: 0;
}

.topnav__cont {
  display: flex;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  width: 160px;
}

.nav__logo__text {
  font-weight: 500;
  display: flex;
  margin-left: 0.5em;
  padding-left: 0.5em;
  flex-direction: column;
  border-left: 2px solid var(--primary);
}

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

.nav__logo__email {
  margin-top: 0.5em;
  color: var(--seconday);
  font-size: 0.8em;
}

.topnav__menu {
  font-weight: 400;
  display: flex;
  font-size: 1.1em;
}

.topnav__menu__item__link {
  padding: 1.5em 1em;
  display: block;
  color: black;
  text-decoration: none;
}

.topnav__menu__item__link--selected {
  color: var(--primary);
}

.topnav__menu__item:last-child .topnav__menu__item__link {
  padding-right: 0;
}

.header {
  position: relative;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #fff;
  min-height: 500px;

  display: flex;
  padding-bottom: 50px;
}

/* .header::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255, 0.5);
} */

.header__cont {
  display: flex;
  flex-direction: column;
  max-width: 40%;
  justify-content: center;
  height: 100%;
  align-items: start;
}

.header__title {
  display: inline-block;
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: 2em;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 0.25em 0.5em;
  border-radius: 0.5em;
}

.header__text {
  display: inline-block;
  border-radius: 0.5em;
  font-weight: 300;
  font-size: 1em;
  line-height: 1.5em;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 0.5em;
}

.header__btn {
  margin-top: 2em;
}

.btn {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  padding: 1em 3em;
  background-color: #fff;
  border: 1px solid #999;
  color: #000;
  font-weight: 500;
  border-radius: 2em;
  transition: 0.2s all;
}

.btn:hover {
  background-color: var(--gray);
}

.btn--primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background-color: var(--darkprimary);
  border-color: var(--darkprimary);
}

.btn--small {
  padding: 0.75em 2em;
  font-size: 0.8em;
}

.header__cards {
  padding-bottom: 100px;
}

.fs-sm {
  line-height: 1.3em;
  font-size: 0.8em;
}

.header__cards__cont {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.header__cards__cont .card {
  max-width: 600px;
  margin: 0 1em;
}

.header__cards__cont .card__content p {

  line-height: 1.3em;

}

.header__cards__cont .card__content {
  font-size: 0.8em;
  font-weight: 300;
}

.card--promotion {
  max-width: 300px;
  display: block !important;
  margin: 2em auto;
}

.header__cards .card {
  margin-top: -80px;
}

.header__cards .card:hover {
  transform: scale(1.05);
}

.card {
  transition: 0.25s all;
  border-radius: 1em;
  overflow: hidden;
  position: relative;
  background: #fff;
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  /* justify-content: end; */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.card__body {
  padding: 1em 1em 1em 1em;
}

.card__header:not(:empty) {
  padding: 0.5em 1em;
}

.card__header {
  font-weight: 500;
  line-height: 1.5em;
  text-align: center;
  background-color: var(--primary);
  color: #fff;
}

.card__header--black {
  background-color: #000;
}

.card__badge {
  font-weight: 500;
  transform: translate(50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0em;
  width: 3.5em;
  height: 3.5em;
  font-size: 1.5em;
  background-color: rgb(49, 140, 205);
  color: #fff;
  position: absolute;
}

.card__badge--small {
  width: 3.2em;
  height: 3.2em;
  font-size: 1.2em;
  background-color: var(--primary);
}

.card__badge--black {
  background-color: #000;
  width: 4.2em;
  height: 4.2em;
  padding: 1em;
  font-weight: 700;
  font-size: 1em;
}

.card__title {
  margin-bottom: auto;
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.4em;
  text-align: center;
  padding-bottom: 1.5em;
}

.card__list {}

.card__list__item {
  padding: 0.5em 0;
  font-size: 0.9em;
  margin-left: 2em;
  text-align: left;
  font-weight: 300;
  list-style-type: disc;
}

.card__button {
  text-align: center;
  margin-top: 1em;
}

.section {
  padding: 3em 0;
}

.section--gray {
  background-color: var(--gray);
}

.section--blue {
  background-image: url("/imgs/background_bluelines.png");
  background-size: cover;
  background-color: rgb(26, 57, 124);
  color: #fff;
}

.section__content h1,
.section__title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.8em;
  margin: 0 0 2em 0;
}

.section__subtitle,
.section__content h2 {
  line-height: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.2em;
  margin-bottom: 0.5em;
}

.section__text {
  color: #555;
  max-width: 600px;
  line-height: 1.5em;
}

.section .btn {
  margin-top: 2em;
}

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

.section--center .section__text {
  text-align: center;
  margin: 0 auto;
}

.treatments__cont {
  margin: 0 auto;
  /* max-width: 800px; */
}

.treatments__item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.treatments__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 0.5em;
  transition: 0.25s all;
  padding: 1em 2em;
  margin-bottom: 1em;
}

.treatments__item>img {
  margin-bottom: 1em;
}

.treatments__btn .btn {
  margin-top: 0;
  margin-bottom: 2em;
}

.treatments__img img {
  width: 4em;
  height: 4em;
  margin: 0 auto 1em auto;
}

.treatments__title {
  font-weight: 700;
  font-size: 1.3em;
}

.treatments__text {
  line-height: 1.5em;
  margin-top: 1em;
  text-align: center;
  font-size: 0.9em;
  color: #444;
  flex-grow: 2;
}

treatments__text p {
  margin-bottom: 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-md-3,
.col-md-4,
.col-md-6,
.col-md-5,
.col-md-7,
.col-md-8 {
  width: 100%;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.pr-0 {
  padding-right: 0em;
}

.pr-2 {
  padding-right: 2em;
}

.pt-0 {
  padding-top: 0;
}

.mt-1 {
  margin-top: 1em;
}

.mt-3 {
  margin-top: 3em;
}

.mt-2 {
  margin-top: 2em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-05 {
  margin-bottom: 0.5em;
}

.mt-0 {
  margin-top: 0em;
}

.mb-0 {
  margin-bottom: 0em;
}

.munkatars--img img {
  /* display: block; */
  width: 80%;
}

a.munkatars__item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.munkatars__item {
  display: flex;
  flex-direction: column;
  border-radius: 0.5em;
  transition: 0.25s all;
  padding: 1em 2em;
  margin-bottom: 1em;
}

.munkatars__item .btn {
  align-self: center;
}

.munkatars__text {
  /* flex-grow: 2; */
}

.munkatars__icon__img {
  width: 4em;
  margin: 0 1em;
}

.munkatars__treatment {
  margin: 1em 0;
  display: flex;
  align-items: center;
  align-self: flex-start;
}

.munkatars__treatment__link {
  display: inline-block;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.m-4 {
  margin: 4em;
}

.footer {
  background-color: var(--primary);
  background-image: url("/imgs/footer_bg.png");
  background-size: cover;
  color: #fff;
  padding: 2em 0;
}

.footer__cont {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__logo {
  font-size: 2em;
}

.footer__menu {
  display: flex;
  flex-direction: row;
}

.footer__menu__item {
  padding: 0em 1em;
  font-size: 0.9em;
}

.footer__menu__item img {
  height: 1em;
}

.footer__menu__item a {
  color: #fff;
  text-decoration: none;
}

.infobox {
  padding: 0 1em;
  text-align: center;
}

.infobox p {
  line-height: 1.5em;
}

.infobox__number {
  margin: 1em auto;
  line-height: 5em;
  font-size: 2em;
  font-weight: 700;
  height: 5em;
  width: 5em;
  text-align: center;
  border: 3px solid #fff;
  border-radius: 50%;
}

.article-side .article-card {
  margin-bottom: 2em;
}

.article-card {
  display: inline-block;
  transition: 0.25s all;
  margin-bottom: 2em;
  background-color: #f1f1f1;
  overflow: hidden;
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
}

.article-card:hover {
  transform: scale(1.05);
}

.article-card__img {
  height: 200px;
  width: 100%;
}

.article-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__body {
  padding: 1em;
}

.article-card__title {
  font-size: 1em;
  font-weight: 800;
  line-height: 1.2em;
}

.article-card__subtitle {
  font-size: 0.8em;
  font-weight: 500;
  margin-top: 0.5em;
}

.article-card__text {
  margin: 0.5em 0;
  font-size: 0.9em;
  line-height: 1.2em;
}

.article-card__footer {
  font-weight: 800;
  font-size: 0.8em;
}

.partner-images {
  margin: 0 auto;
  text-align: center;
  max-width: 800px;
}

.partner-images div img {



  max-height: 50px;
}

.partner-images div {
  margin-bottom: 2em;
}

.support-images {
  margin: 2em auto;
  text-align: center;
  max-width: 800px;
}

.support-images img {
  height: 150px;
}

.support-text {
  line-height: 1.5em;
  text-align: center;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  background-color: #fff;
}

.topnav__menu .dropdown-content {
  position: absolute;
  border-top: 5px solid var(--primary);

  min-width: 230px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  font-size: 0.95em;
}

.dropdown-content .topnav__menu__item__link {
  padding: 1.1em;
  border-bottom: 1px solid #f1f1f1;
}

.dropdown-content .topnav__menu__item__link:hover {
  background-color: #f1f1f1;
}

.topnav__cont .dropdown:hover>.dropdown-content {
  display: block;
}

.dropdown-content .dropdown-content {
  right: 100%;
  top: 0;
}

.no-link {
  color: inherit;
  text-decoration: none;
}

.wrapper {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.form-group {
  margin-top: 1em;
}

.form-group label {
  margin-bottom: 0.5em;
  display: inline-block;
}

button {
  appearance: none;
  border: 0;
  font-family: "Ubuntu", sans-serif;
}

input[type="text"].form-control,
input[type="password"].form-control,
textarea.form-control {
  appearance: none;
  border: 0;
  font-family: "Ubuntu", sans-serif;
  background: #fff;
  border: 1px solid #999;
  border-radius: 0.5em;
  display: block;
  width: 100%;
  line-height: 1.5em;
  padding: 0.75em;
  border-radius: 0.3em;
}

input[type="text"].form-control:focus,
input[type="password"].form-control:focus,
textarea.form-control:focus {
  border-color: var(--primary);
}

.slick-initialized .slick-slide {
  display: flex;
}

.w-100 {
  width: 100%;
}

.table {
  width: 100%;
}

.pricelist {
  margin: 2em 0 4em;
}

.pricelist__item {
  border-bottom: 1px solid #999;
}

.pricelist__item:nth-child(even) {
  background-color: #f9f9f9;
}

.pricelist__item__col {
  padding: 1em;
}

.footer .nav__logo__text {
  border-left-color: #fff;
}

.footer .nav__logo__tel,
.footer .nav__logo__email {
  color: #fff;
}

.text-danger {
  color: red;
}

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

.section__content {
  font-size: 1.1em;
}

.section__content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 2em;
}

.section__content ul {
  margin-left: 1em;
  list-style-type: disc;
  margin-bottom: 1em;
}

.section__content li {
  line-height: var(--line-height);
}

.whyus-cont {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.whyus-item {
  max-width: 200px;
  width: 100%;
}

.whyus-item__img img {
  width: 4em;
  height: 4em;

  margin: 0 auto 1em auto;
}

.whyus-item__title {
  font-weight: 400;
  font-size: 1.1em;
}

.aboutus--img {
  text-align: center;
}

.aboutus--img img {
  width: 150px;
  display: block;
  margin: 0 auto;

}

.articleitem {
  margin-bottom: 2em;
  display: flex;
}

.articleitem__img {
  margin-right: 1em;
  width: 100%;
}

.articleitem__img img {
  width: 100%;
  max-height: 100%;
}

.articleitem__body {}

.articleitem__title {
  font-weight: 700;
  font-size: 1.2em;
}

.articleitem__date {
  font-size: 0.8em;
  margin-top: 0.5em;
  font-weight: 400;
}

.articleitem__text {
  font-size: 0.85em;
  margin-top: 1.5em;
}

.articleitem__share {
  margin-top: 1em;
}

.articletag {
  transition: 0.25s all;
  border-radius: 0.25em;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 400;
  cursor: pointer;
  padding: 0.4em;
  font-size: 0.9em;
  display: inline-block;
  margin: 0.25em;
}

.articletag:hover {
  background-color: var(--primary);
  color: #fff;
}

.section__breadcrumb {
  color: var(--primary);
  margin: 2em 0;
}

.section__breadcrumb a {
  padding: 0.5em;
  background-color: #81bce8;
  color: #fff;
}

.crossed__title:before {
  z-index: -1;
  position: absolute;
  content: " ";
  width: 100%;
  left: 0;
  background-color: #000;
  height: 1px;
  top: 50%;
}

.crossed__title {
  width: 80%;
  margin: 0 auto;
  font-size: 1.5em;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.crossed__title span {
  background-color: #fff;
  padding: 0 2em;
}

.article__types__cont {
  display: flex;

  justify-content: center;
  text-align: center;
}

.article__type {
  font-weight: 500;
  font-size: 1.1em;
  padding: 2em;
}

@media screen and (min-width: 768px) {
  .topnav__menu__item .topnav__menu__item {
    font-size: 0.9em;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .d-md-none {
    display: none;
  }

  .d-md-block {
    display: block;
  }

  .pr-md-3 {
    padding-right: 3em;
  }

  .mt-md-0 {
    margin-top: 0em;
  }

  .mb-md-2 {
    margin-top: 2em;
  }

  .mb-md-0 {
    margin-top: 0em;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}

@media screen and (max-width: 768px) {

  .slick-arrow {
    display: none !important;
  }

  .section--blue,
  .footer {
    background-image: none;
  }

  .nav__logo img {
    width: 150px;
  }

  .section__subtitle,
  .section__content h2 {
    margin-bottom: 2em;
  }

  .munkatars--img img {
    display: inline-block;
  }

  .munkatars--img {
    text-align: center;

    margin: 0 auto;
    margin-bottom: 2em;
  }

  .whyus-item {
    width: 50%;
    margin-bottom: 2em;
  }

  .footer__cont {
    flex-direction: column;
    align-items: center;
  }

  .footer__cont .nav__logo {
    margin: 0em 0 2em 0;
  }

  .footer__menu {
    flex-direction: column;
    text-align: center;
  }

  .footer__menu__item {
    padding: 1em;
  }

  .dropdown-content {
    padding-left: 2em;
  }

  .mobile-nav-holder {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #bbb;
  }

  .mobile-nav-dropdown-open {
    background-image: url(/imgs/chevron-left.svg);
    background-repeat: no-repeat;
    background-position: center center;

    padding: 1.5em 2em;
    border-left: 1px solid #bbb;
  }

  .mobile-nav-dropdown-open.open {
    background-image: url(/imgs/chevron-down.svg);
  }

  .topnav__menu__item__link {
    border: 0;
    flex-grow: 2;
  }

  .topnav__menu--mobile {
    display: none;
  }

  .topnav--mobile__head {
    padding: 1em;
    display: flex;
    justify-content: space-between;
  }

  .dropdown-content .dropdown-content {
    right: auto;
    top: auto;
  }

  .dropdown-content {
    border-top: 4px solid var(--primary);
  }

  .dropdown-content {
    position: relative;
  }

  .header {
    text-align: center;
    margin-bottom: 0em;
  }

  .topnav__menu {
    display: none;
  }

  .header__cont {
    max-width: 100%;
  }

  .header__cards__cont {
    flex-direction: column;
    align-items: center;
  }

  .header__cards__cont .card {
    margin-top: 0;
    /* width: 60%; */
    max-width: 100%;
    margin: 0;
    margin-bottom: 2em;

  }

  .header__cards {
    padding-bottom: 2em !important;
  }

  .header__cards .card:first-child {
    margin-top: -100px;
  }
}

.nav-icon span:first-child {
  top: 0;
}

.nav-icon span:first-child,
.nav-icon span:nth-child(2) {
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon span:nth-child(2) {
  top: 8px;
}

.nav-icon span:nth-child(3) {
  top: 16px;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon.open span:first-child {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 3px;
}

.nav-icon.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 18px;
  left: 3px;
}

.nav-icon {
  width: 26px;
  height: 15px;
  margin-top: 14px;
  margin-right: 8px;
  position: relative;
  z-index: 2001;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.nav-icon,
.nav-icon span {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  margin-top: 0;
  width: 100%;
  background: #000;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.slick-arrow {
  position: absolute;
  z-index: 1;
  background-color: transparent;
  cursor: pointer;
}

.slick-prev,
.slick-next {
  top: 50%;
}

.slick-prev {
  left: -5%;
}

.slick-next {
  right: -5%;
}

.slider--header .slick-prev {
  left: 5%;
}

.slider--header .slick-next {
  right: 5%;
}

.slick-prev:before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -16px;
  width: 26px;
  height: 26px;
  border: 3px solid transparent;
  border-top: 3px solid rgba(0, 0, 0, 0.3);

  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-left: 3px solid rgba(0, 0, 0, 0.3);
}

.slick-next:before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -16px;
  width: 26px;
  height: 26px;
  border: 3px solid transparent;
  border-top: 3px solid rgba(0, 0, 0, 0.3);

  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 3px solid rgba(0, 0, 0, 0.3);
}

.form-group-checkbox input {
  margin-right: 0.5em;
}

.form-group-checkbox {
  display: flex;
}

.form-group .text-danger {
  margin-top: 0.5em;
}

.fw-medium {
  font-weight: 400;
}

.d-inline {
  display: inline !important;
}

.alert-success {
  border: 1px solid transparent;
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
  padding: 2em;
  margin: 3em 0;

  border-radius: 4px;
}

.alert-danger {
  border: 1px solid transparent;
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  padding: 2em;
  margin: 1em 0;
  border-radius: 4px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.header-message {
  padding: 1em;
  background-color: var(--primary);
  color: #fff;
  font-weight: normal;
  font-size: 0.8em;
}

.section__content img {
  border-radius: 7px;
}

.article-kartya {
  padding: 1em;
  border-radius: 1em;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  
  margin-top:1em;
  margin-bottom:2em;
}

.article-kartya-text p{
  line-height: 1.4;
}

.article-kartya-img  svg{
  margin-bottom: 1em;
  width: 2em;
}