/* ---------------------------------------------------------
    * Name: Homzen
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Reset css styles

    * Components
        * header

    * 

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
:root {
  --font-main: "SFU Futura", sans-serif;
  --white:#fff;
  --white-almost:#f8f8f8;
  --main:#343434;
  --black:#2d2d2d;
  --back-2:#000;
  --line: #b0b1b1;
  --grey: #7c858c;
  --grey-2: #909090;
  --mid-grey: #4a4a4a;
  --moon-grey:#d8d8d8;
  --stada-red: #D71062;
  --primary: #005CB9;
}

/*---------- Reset css styles ----------- */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}

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

/* Elements
-------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 400;
  color: var(--main);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.row {
  margin-right: -16px;
  margin-left: -16px;
}
.row > * {
  padding-left: 16px;
  padding-right: 16px;
}

ul,
li {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

textarea,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color] {
  font-family: var(--font-main);
  border: 1px solid var(--line);
  color: var(--main);
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-size: 1rem;
  line-height: 1.15;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
  min-height: 50px;
  outline: none;
  background-color: var(--white);
  width: 100%;
  font-weight: 400;
  overflow: visible;
}
textarea::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=week]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=color]::placeholder {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

textarea {
  height: 112px;
  resize: none;
}

.btn,
.form-section input[type=submit] {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.btn {
  padding: 0;
  border-style: none;
  border-width: 0;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/* Placeholder color */
::-moz-placeholder {
  opacity: 1;
}

/* Since FF19 lowers the opacity of the placeholder by default */
/* Typography
-------------------------------------------------------------- */
h2 {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

h3 {
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  text-rendering: optimizeLegibility;
  color: var(--main);
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin-top: 0;
}

b,
strong {
  font-weight: bolder;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}

a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  color: var(--main);
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:focus, a:hover {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  outline: 0;
}

p {
  margin-top: 0;
}

.container,
.container-large,
.container-medium,
.container-small {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.container,
.container-large {
  max-width: 1500px;
}

.container-small {
  max-width: 750px;
}

.container-medium {
  max-width: 1222px;
}

.container-no-padding {
  padding-left: 0;
  padding-right: 0;
}

.banner-small .banner_background-image .container,
.banner-overlay > .container {
  padding-left: 0;
  padding-right: 0;
}

.f-headline {
  font-size: 6rem;
}

.f-subheadline {
  font-size: 5rem;
}

.f1 {
  font-size: 3.125rem;
}

.f2 {
  font-size: 2.25rem;
}

.f3 {
  font-size: 1.5rem;
}

.f4 {
  font-size: 1.25rem;
}

.f5 {
  font-size: 1.125rem;
}

.btn-primary,
.btn-secondary,
.f6,
.form-section input[type=submit] {
  font-size: 1rem;
}

.f7 {
  font-size: 0.875rem;
}

.f8 {
  font-size: 0.75rem;
}

.fs-normal {
  font-style: normal;
}

.fs-italic {
  font-style: italic;
}

.fw3 {
  font-weight: 300;
}

.fw4 {
  font-weight: 400;
}

.fw5 {
  font-weight: 500;
}

.fw6,
.grid-section-title .grid-section-subheading,
.t-title {
  font-weight: 600;
}

.bold-hover:hover,
.fw7,
.grid-section-text ol,
.link--hover-bold:hover {
  font-weight: 700;
}

.fw8 {
  font-weight: 800;
}

.fw9 {
  font-weight: 900;
}

.lh-title {
  line-height: 1.25;
}

.lh-text {
  line-height: 1.5;
}

.lh-solid {
  line-height: 1;
}

.footer .contact-text,
.lh-copy {
  line-height: 1.5;
}

.link {
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.ls-none {
  list-style: none;
}

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

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

.text-black-2 {
  color: var(--back-2);
}

.text-black-3 {
  color: #121212;
}

.text-black-4 {
  color: #000000;
}

.text_white {
  color: var(--white);
}

.text-almost-black {
  color: var(--black);
}

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

.text-grey-2 {
  color: var(--grey-2);
}

.text-mid-grey {
  color: var(--mid-grey);
}

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

.bg-almost-white {
  background-color: var(--white-almost);
}

.bg-dark-main {
  background-color: var(--main);
}

.bg_primary {
  background-color: var(--primary);
}

.wrapper {
  height: 100%;
  display: block;
}

[data-src] {
  min-width: 1px;
  min-height: 1px;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}

[class*=" col"],
[class^=col] {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  max-width: 100%;
}

.col-1 {
  -ms-flex: 0 0 4.16667%;
  flex: 0 0 4.16667%;
  max-width: 4.16667%;
}

.col-1,
.col-2 {
  -webkit-box-flex: 0;
}

.col-2 {
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-3 {
  -ms-flex: 0 0 12.5%;
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.col-3,
.col-4 {
  -webkit-box-flex: 0;
}

.col-4 {
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-5 {
  -ms-flex: 0 0 20.83333%;
  flex: 0 0 20.83333%;
  max-width: 20.83333%;
}

.col-5,
.col-6 {
  -webkit-box-flex: 0;
}

.col-6 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-7 {
  -ms-flex: 0 0 29.16667%;
  flex: 0 0 29.16667%;
  max-width: 29.16667%;
}

.col-7,
.col-8 {
  -webkit-box-flex: 0;
}

.col-8 {
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-9 {
  -ms-flex: 0 0 37.5%;
  flex: 0 0 37.5%;
  max-width: 37.5%;
}

.col-9,
.col-10 {
  -webkit-box-flex: 0;
}

.col-10 {
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-11 {
  -ms-flex: 0 0 45.83333%;
  flex: 0 0 45.83333%;
  max-width: 45.83333%;
}

.col-11,
.col-12 {
  -webkit-box-flex: 0;
}

.col-12 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-13 {
  -ms-flex: 0 0 54.16667%;
  flex: 0 0 54.16667%;
  max-width: 54.16667%;
}

.col-13,
.col-14 {
  -webkit-box-flex: 0;
}

.col-14 {
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-15 {
  -ms-flex: 0 0 62.5%;
  flex: 0 0 62.5%;
  max-width: 62.5%;
}

.col-15,
.col-16 {
  -webkit-box-flex: 0;
}

.col-16 {
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-17 {
  -ms-flex: 0 0 70.83333%;
  flex: 0 0 70.83333%;
  max-width: 70.83333%;
}

.col-17,
.col-18 {
  -webkit-box-flex: 0;
}

.col-18 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-19 {
  -ms-flex: 0 0 79.16667%;
  flex: 0 0 79.16667%;
  max-width: 79.16667%;
}

.col-19,
.col-20 {
  -webkit-box-flex: 0;
}

.col-20 {
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-21 {
  -ms-flex: 0 0 87.5%;
  flex: 0 0 87.5%;
  max-width: 87.5%;
}

.col-21,
.col-22 {
  -webkit-box-flex: 0;
}

.col-22 {
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-23 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 95.83333%;
  flex: 0 0 95.83333%;
  max-width: 95.83333%;
}

.col-24,
.timeline-item .item-node {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.bb,
.timeline-nav {
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.tac {
  text-align: center;
}

.dn {
  display: none;
}

.br-pill {
  border-radius: 999rem;
}

.list-none {
  list-style: none;
}

.nh3 {
  margin-left: -1rem;
}

.nh3,
.nr3 {
  margin-right: -1rem;
}

.mra {
  margin-right: auto;
}

.mla {
  margin-left: auto;
}

.ph2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.ph3 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.btn-primary,
.btn-secondary,
.form-section input[type=submit],
.pv1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.pl2 {
  padding-left: 0.5rem;
}

.pt1 {
  padding-top: 0.25rem;
}

.pt3 {
  padding-top: 1rem;
}

.pt4 {
  padding-top: 2rem;
}

.pv2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.pv3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pv4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pr5 {
  padding-right: 4rem;
}

.pb1 {
  padding-bottom: 0.25rem;
}

.hero-btn_item,
.pb2 {
  padding-bottom: 0.5rem;
}

.pb3 {
  padding-bottom: 1rem;
}

.pb4 {
  padding-bottom: 2rem;
}

.pb5 {
  padding-bottom: 3rem;
}

.pt4 {
  padding-top: 2rem;
}

.mt2 {
  margin-top: 0.5rem;
}

.mr2 {
  margin-right: 0.5rem;
}

.mr3 {
  margin-right: 1rem;
}

.mb2 {
  margin-bottom: 0.5rem;
}

.mb3 {
  margin-bottom: 1rem;
}

.mb4 {
  margin-bottom: 2rem;
}

.mb5 {
  margin-bottom: 4rem;
}

.mv3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.pt-60 {
  padding-top: 60px;
}

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

.mb_133 {
  margin-block-end: 1.33em;
}

sup {
  display: inline-block;
  text-decoration: none;
}

sup {
  top: -0.5em;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

.measure-wide {
  max-width: 34em;
}

.grid-section-text {
  margin-bottom: 0;
  overflow-x: auto;
}

.richtext {
  overflow: hidden;
}
.richtext p:last-child {
  margin-bottom: 0;
}
.richtext a {
  text-decoration: underline;
}
.richtext li a {
  text-decoration: underline;
}

.grey {
  color: #7c858c;
}

.bc-light-grey {
  border-color: #efefef;
}

.h2 {
  height: 2rem;
}

.w-90 {
  width: 90%;
}

.mb-16 {
  margin-bottom: 16px;
}

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

.mb-32 {
  margin-bottom: 32px;
}

.title-1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 38.4px;
  color: var(--primary);
}

.text-p-1 {
  font-size: 18px;
  line-height: 27px;
}

.text-p-2 {
  font-size: 24px;
  line-height: 36px;
}

.flat-spacing-2 {
  padding-top: 80px;
  padding-bottom: 100px;
}

.tf-blue-bg {
  background-color: #ebfaff !important;
}

.link-underline {
  color: #005db9;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.link-underline:hover {
  color: #0b437a;
}

.title-lg {
  font-size: 28px;
  line-height: 32.2px;
}

.list-style {
  padding-left: 30px;
}
.list-style li {
  list-style: disc;
}

.table-kamis {
  border: 1px solid #d7d7d7;
  border-radius: 5px;
  overflow: hidden;
}
.table-kamis table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  line-height: 1.4;
}
.table-kamis table th, .table-kamis table td {
  border-collapse: collapse;
  padding: 10px 15px 12px;
  text-wrap: nowrap;
  font-size: 14.4px;
  line-height: 24px;
}
.table-kamis table tr th {
  width: 25%;
}
.table-kamis table tbody a {
  text-decoration: underline;
}
.table-kamis table tbody td {
  font-weight: 400;
  border-bottom: 1px solid #d7d7d7;
}
.table-kamis table tbody td:not(:first-child) {
  border-left: 1px solid #d7d7d7;
}
.table-kamis table tbody tr:last-child td {
  border-bottom: 0;
}
.table-kamis thead {
  background-color: #f6f6f4;
  font-weight: bold;
}
.table-kamis thead tr th {
  border-bottom: 1px solid #d7d7d7;
}
.table-kamis thead tr th:not(:first-child) {
  border-left: 1px solid #d7d7d7;
}

/*------------ Components ---------------- */
/*------------ button ---------------- */
.tf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 18px;
  line-height: 18.4px;
  font-weight: 700;
  background-color: var(--stada-red);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--white);
  padding: 15px 63px 20px;
  border: 1px solid var(--stada-red);
}
.tf-btn:hover {
  background-color: var(--white);
  color: var(--stada-red);
}
.tf-btn.btn-line {
  background-color: transparent;
  border-color: var(--stada-red);
  color: var(--stada-red);
}
.tf-btn.btn-line:hover {
  background-color: var(--stada-red);
  color: var(--white);
}
.tf-btn.btn-md {
  padding: 10px 30px 15px;
}

.btn-primary, .btn-secondary, .form-section input[type=submit] {
  min-width: 160px;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-primary {
  min-width: 170px;
  background-color: var(--primary);
  color: var(--white);
  border: 0.125rem solid var(--primary);
}
.btn-primary:hover {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary {
  background-color: var(--stada-red);
  color: var(--white);
  border: 0.125rem solid var(--stada-red);
}
.btn-secondary:hover {
  background-color: transparent;
  border-color: var(--stada-red);
  color: var(--stada-red);
}

.btn-loadmore {
  background-color: #08585c;
  border-color: #08585c;
}
.btn-loadmore:hover {
  border-color: #08585c;
  color: #08585c;
}

/*------------ header ---------------- */
.header-wrapper {
  position: sticky;
  top: 0;
  background-color: var(--white);
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background-color: var(--white);
  width: 100%;
}
.header .logo-intro {
  position: absolute;
  top: 0;
  width: 75px;
}

.logo-main-ui {
  flex-shrink: 0;
  width: 120px;
  margin-left: 90px;
}

.stada-badge {
  top: 0;
  right: 20px;
  width: 75px;
  height: 50px;
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.stada-badge_logo {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  -webkit-box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.srt {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.btn-offcanvas-toggle {
  position: absolute;
  left: 10px;
  width: 50px;
  height: 44px;
  padding: 10px;
}

.btn-offcanvas-toggle, .btn-professionals:before {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.nav-wrapper .nav-primary, .nav-wrapper .nav-secondary {
  height: 60px;
}
.nav-wrapper .nav-primary {
  position: relative;
}
.nav-wrapper .nav-primary .nav_item:hover .mega-menu {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}
.nav-wrapper .nav_item {
  display: flex;
  align-items: center;
}
.nav-wrapper .nav_item .mega-menu {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  top: 60px;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 1050;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.nav-wrapper .nav_link {
  padding: 10px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
}

.mega-menu {
  max-height: calc(100vh - 180px);
  background-color: var(--white-almost);
  visibility: hidden;
  opacity: 0;
  overflow-y: scroll;
  -webkit-transition: visibility 0.3s ease-in 0.1s, opacity 0.3s ease-in 0.1s;
  transition: visibility 0.3s ease-in 0.1s, opacity 0.3s ease-in 0.1s;
}
.mega-menu .mega-menu_list_item {
  margin-bottom: 8px;
}
.mega-menu .mega-menu_featured_link {
  position: relative;
  display: flex;
  align-items: center;
}
.mega-menu .mega-menu_featured_link .mega-menu_featured_link_icon {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.crumbs_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.crumbs_item:not(:last-child) .crumbs_label::after {
  content: ">";
  padding-left: 8px;
  margin-right: 8px;
}

.crumbs {
  min-height: 30px;
}

/*------------ footer ---------------- */
.footer_contact-icon {
  min-width: 20px;
}

.footer_download-icon {
  width: 20px;
  height: 20px;
}
.footer_download-icon svg {
  min-width: 20px;
  min-height: 20px;
}

.footer_column .footer-title {
  position: relative;
}

.footer-col-block.open .accordion-indicator {
  -webkit-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}

.accordion-indicator {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*------------ form ---------------- */
.search {
  width: 100%;
  max-width: 376px;
  padding: 0;
  display: flex;
  align-items: center;
}
.search .search_input {
  margin-right: 1rem;
}

.search_input {
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
  min-height: 50px;
  outline: none;
  border-radius: 999rem;
}

.btn-search {
  width: 34px;
}

/*------------ canvas ---------------- */
.nav-offcanvas.offcanvas {
  width: 100%;
  border: none;
}
.nav-offcanvas .logo-main-ui {
  margin-left: 80px;
}
.nav-offcanvas .btn-search {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  width: 20px;
}
.nav-offcanvas .nav_item {
  border-bottom: 2px solid var(--white);
}
.nav-offcanvas .nav-link {
  display: flex;
  align-items: center;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  min-height: 60px;
  position: relative;
  background-color: var(--white-almost);
}
.nav-offcanvas .nav_indicator {
  width: 8px;
}
.nav-offcanvas .list-nav-menu {
  overflow: auto;
}

.nav-offcanvas_header {
  padding: 24px 20px;
  position: relative;
}
.nav-offcanvas_header .btn-offcanvas-toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: auto;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-offcanvas_header .logo-intro {
  width: 60px;
  position: absolute;
  top: 0;
}

/*------------ sections ---------------- */
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-image {
  padding-bottom: 375px;
  background-position: 50%;
  background-size: cover;
}

.banner-overlay {
  padding-left: 20px;
  padding-right: 20px;
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.card {
  border: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.card .card-content a:not(.btn),
.card .card-title a:not(.btn) {
  text-decoration: underline;
}

.card-title {
  color: var(--main);
}

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

.poll-section-wrap .poll-option-result {
  display: none;
}
.poll-section-wrap.open .poll-option-result {
  display: flex;
}
.poll-section-wrap.open .poll-control .label {
  color: var(--grey);
}

.poll-section .poll-section-wrap {
  padding-left: 13px;
  margin-bottom: 20px;
}
.poll-section .poll-section-wrap.open {
  margin-bottom: 0;
}

.poll-option-item {
  cursor: pointer;
}
.poll-option-item .poll-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.poll-option-item .poll-control .label {
  color: var(--back-2);
}
.poll-option-item .poll_control-indicator {
  height: 30px;
  width: 30px;
  margin-top: 3px;
  background-size: 50%;
  border-radius: 50%;
  background-color: var(--moon-grey);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-repeat: no-repeat;
  background-position: 50%;
}
.poll-option-item.active .poll_control-indicator {
  background-color: var(--stada-red);
  color: var(--white);
  background-image: url("../images/items/check.svg");
}
.poll-option-item.active .poll-control .label {
  color: var(--main);
}
.poll-option-item.active .poll-option-result .progress {
  --bs-progress-bar-bg: var(--stada-red);
}
.poll-option-item:not(:last-child) {
  margin-bottom: 0.5rem;
}

.poll-option-result {
  display: flex;
  flex-wrap: wrap;
}
.poll-option-result .progress {
  max-width: 546px;
}

.progress {
  --bs-progress-height: 10px;
  --bs-progress-bg: #efefef;
  --bs-progress-bar-bg: #005db9;
  border-radius: 0;
}

.swiper-btn-arrow {
  width: 80px;
  height: 80px;
  background-color: rgba(124, 133, 140, 0.75);
}
.swiper-btn-arrow::after {
  display: none;
}
.swiper-btn-arrow svg {
  width: 40px;
  fill: #fff;
}
.swiper-btn-arrow.swiper-button-next {
  right: 0 !important;
}
.swiper-btn-arrow.swiper-button-prev {
  left: 0 !important;
}

.swiper-pagination {
  position: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 32px 0;
}
.swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  margin-right: 4px;
  border: 2px solid var(--main);
  background-color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--main);
}

.product-details-banner {
  padding-top: 32px;
}
.product-details-banner .product-details__title {
  line-height: 41px;
}
.product-details-banner .wrap-rating {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 28px;
  margin-bottom: 1rem;
}
.product-details-banner .wrap-rating .star-rating {
  margin-left: 3px;
  margin-right: 3px;
  gap: 3px;
  display: flex;
}
.product-details-banner .wrap-rating > a {
  color: #eb208d;
  text-decoration: underline;
}
.product-details-banner .product-details__body {
  margin-bottom: 32px;
}
.product-details-banner .checklist {
  gap: 15px;
}
.product-details-banner ul {
  margin-bottom: 16px;
}
.product-details-banner ul figure {
  flex-shrink: 0;
}
.product-details-banner ul li img {
  width: 38px;
  height: 38px;
}

.product-information p.t-body {
  margin-bottom: 0;
}

.product__tab-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  max-width: 360px;
  min-height: 60px;
  color: #7c858c;
  background-color: #fff;
  border-color: #f8f8f8;
  text-transform: uppercase;
  -webkit-transition: color 0.2s ease-in, background-color 0.2s ease-in;
  transition: color 0.2s ease-in, background-color 0.2s ease-in;
}
.product__tab-header.is-active {
  background-color: #f8f8f8;
}

.kamistad-accordion .accordion-header {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.kamistad-accordion .accordion-header:not(.collapsed) .accordion-icon {
  transform: rotate(180deg);
}
.kamistad-accordion .accordion-item {
  border-bottom: 1px solid #d8d8d8;
}

.richtext ul {
  padding: 0 0 0 1.5rem;
}
.richtext ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.loadmore-item .fl-item {
  display: none;
}

.table-functions-of-the-oral-cavity tr:first-child {
  background-color: #d50058;
  border: 1px solid #d50058;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.table-functions-of-the-oral-cavity tr:first-child td {
  color: #fff;
}
.table-functions-of-the-oral-cavity td {
  padding: 1rem;
  color: #d50058;
  border: 1px solid #d50058;
  font-size: 16px;
  line-height: 24px;
}
.table-functions-of-the-oral-cavity td a {
  color: #d50058;
}
.table-functions-of-the-oral-cavity.style-1 {
  max-width: 726px;
}

.swiper-padding {
  padding-bottom: 80px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #999999;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background-color: var(--primary);
  opacity: 1;
}

.flat-slider {
  position: relative;
}
.flat-slider .slider-item {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 123;
  height: 600px;
  padding-top: 57px;
  padding-bottom: 90px;
}
.flat-slider .slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flat-slider .slider-item .content-slider {
  max-width: 560px;
}
.flat-slider .slider-item .content-slider .title {
  font-size: 48px;
  line-height: 57.6px;
  font-weight: 700;
  color: var(--stada-red);
  margin-bottom: 30px;
  text-transform: uppercase;
}
.flat-slider .slider-item .content-slider .title span {
  color: var(--primary);
}
.flat-slider .slider-item .content-slider .title-slider-2 {
  font-size: 36px;
  line-height: 43.2px;
}
.flat-slider .slider-item .content-slider .title-slider-2 .title-logo {
  font-size: 48px;
  line-height: 57.6px;
}
.flat-slider .slider-item .img-pos {
  display: none;
}
.flat-slider .slider-item-2, .flat-slider .slider-item-3 {
  padding-top: 47px;
}
.flat-slider .slider-item-1 {
  background-image: url("../images/banner/banner-slider-1.png");
}
.flat-slider .slider-item-2 {
  background-image: url("../images/banner/banner-slider-2.png");
}
.flat-slider .slider-item-3 {
  background-image: url("../images/banner/banner-slider-3.png");
}
.flat-slider .slider-item-4 {
  background-image: url("../images/banner/banner-slider-4.png");
}
.flat-slider .wrap-nav-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 12;
}
.flat-slider .swiper-slide .fade-item {
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.flat-slider .swiper-slide .fade-item.fade-item-1 {
  transition-delay: 0.3s;
}
.flat-slider .swiper-slide .fade-item.fade-item-2 {
  transition-delay: 0.4s;
}
.flat-slider .swiper-slide.swiper-slide-active .fade-item {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.box-nav-pagination {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
}
.box-nav-pagination .nav-sw {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.box-nav-pagination .nav-sw svg {
  pointer-events: none;
}
.box-nav-pagination .sw-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.box-nav-pagination .sw-dots .swiper-pagination-bullet {
  margin: 0;
}

.kamistab-section-1 {
  padding-bottom: 60px;
}
.kamistab-section-1 .wrapper-kamistab-sec {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kamistab-section-1 .banner-right,
.kamistab-section-1 .banner-left {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.kamistab-section-1 .content-middle p {
  font-size: 20px;
  line-height: 28px;
  color: var(--primary);
  margin-bottom: 0;
}
.kamistab-section-1 .content-middle .text-1 {
  margin-bottom: 10px;
}
.kamistab-section-1 .content-middle .text-2 {
  margin-top: -10px;
  text-transform: uppercase;
  line-height: 26px;
}
.kamistab-section-1 .content-middle .bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-clip: padding-box;
  border: 6px solid transparent;
  background-color: var(--white);
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding: 19px 20px 23px;
}
.kamistab-section-1 .content-middle .bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  margin: -6px;
  background-image: linear-gradient(91.43deg, #9AD1EA 1.22%, rgba(183, 229, 243, 0.3) 99.77%);
  border-radius: inherit;
}
.kamistab-section-1 .box .text-p-1 {
  letter-spacing: -0.2px;
}

.kamistab-section-2 {
  padding: 50px 0px;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.kamistab-section-3 {
  padding-top: 40px;
  padding-bottom: 34px;
}

.wd-card-1 .banner {
  display: block;
}
.wd-card-1 .banner img {
  width: 100%;
  height: 100%;
}
.wd-card-1 .content {
  margin-top: 32px;
}
.wd-card-1 .content .title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #343434;
}
.wd-card-1 .content .desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #343434;
}

.section-kit-product {
  padding-top: 132px;
  padding-bottom: 77px;
  background-image: url(../images/kamistad/bg-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-kit-product .heading-section {
  font-size: 48px;
  font-weight: 700;
  line-height: 57px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 55px;
}
.section-kit-product .heading-section span {
  color: var(--stada-red);
}

.kit-product-item {
  text-align: center;
}
.kit-product-item .image {
  height: 250px;
  margin-bottom: 14px;
}
.kit-product-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kit-product-item .name {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
}
.kit-product-item .name a {
  color: var(--stada-red);
}
.kit-product-item .name a:hover {
  color: var(--primary);
}
.kit-product-item .sub1 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--primary);
  margin-bottom: 16px;
}
.kit-product-item .type {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 25.2px;
  margin-bottom: 24px;
}
.kit-product-item .desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  margin-bottom: 12px;
}
.kit-product-item .tf-btn {
  padding-left: 73.5px;
  padding-right: 73.5px;
}

.slider-card .sw-dots {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.slider-card .card-image {
  height: 244px;
  display: flex;
}
.slider-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*-------------- Responsive ----------------- */
@media screen and (min-width: 375px) {
  .logo-main-ui {
    width: 125px;
  }
}
@media screen and (min-width: 650px) {
  .product__tab-header {
    min-width: 200px;
    width: 200px;
  }

  .product-details-banner button.tf-btn {
    min-width: 280px;
    min-height: 60px;
  }

  .ph3-sm {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .col-14-sm {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-12-sm {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-10-sm {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .f2-sm {
    font-size: 2.25rem;
  }

  .f3-sm {
    font-size: 1.5rem;
  }

  .f4-sm {
    font-size: 1.25rem;
  }

  .f6-sm {
    font-size: 1rem;
  }

  .ph3-sm {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .ph4-sm {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .nh4-sm {
    margin-left: -2rem;
  }

  .nh4-sm, .nr4-sm {
    margin-right: -2rem;
  }

  .banner-short .banner-image {
    padding-bottom: 350px;
  }

  .banner-image {
    padding-bottom: 500px;
  }

  .hero-btn .hero-btn_item,
.mr3-sm {
    margin-right: 1rem;
  }

  .btn-primary,
.form-section input[type=submit] {
    min-width: 280px;
    min-height: 60px;
  }

  .poll-section .poll-section-wrap {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 950px) {
  .nh4-md {
    margin-left: -2rem;
  }

  .nr4-md {
    margin-right: -2rem;
  }

  .pt5-md {
    padding-top: 4rem;
  }

  .f2-md {
    font-size: 2.25rem;
  }

  .ph4-md {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .col-10-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-14-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-11-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45.83333%;
    flex: 0 0 45.83333%;
    max-width: 45.83333%;
  }

  .col-1-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 4.16667%;
    flex: 0 0 4.16667%;
    max-width: 4.16667%;
  }

  .col-12-md,
.timeline-item .item-node {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .pb2-md {
    padding-bottom: 0.5rem;
  }

  .pb3-md, .timeline-item {
    padding-bottom: 1rem;
  }

  .f5-md {
    font-size: 1.125rem;
  }

  .f6-md {
    font-size: 1rem;
  }

  .container,
.container-large,
.container-medium,
.container-small {
    padding-left: 30px;
    padding-right: 30px;
  }

  .stada-badge {
    right: 30px;
  }

  .btn-offcanvas-toggle {
    left: 30px;
  }

  .f7-md,
.footer_contact-link {
    font-size: 0.875rem;
  }

  .banner-overlay {
    padding-left: 80px;
    padding-right: 80px;
  }
  .banner-overlay .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .grid-section-text {
    overflow-x: hidden;
  }

  .grid-section .richtext {
    font-size: 1.125rem;
  }

  .ph0-md {
    padding-left: 0;
    padding-right: 0;
  }

  .pb0-md {
    padding-bottom: 0;
  }

  .pt2-md {
    padding-top: 0.5rem;
  }

  .pt3-md {
    padding-top: 1rem;
  }

  .pt4-md {
    padding-top: 2rem;
  }

  .pt5-md {
    padding-top: 4rem;
  }

  .f3-md {
    font-size: 1.5rem;
  }

  .pb4-md {
    padding-bottom: 2rem;
  }

  .option-results_wrapper {
    margin-left: 10px;
  }
}
@media screen and (min-width: 991px) {
  .kit-product-item {
    height: 100%;
    display: flex;
    text-align: center;
    flex-direction: column;
  }
  .kit-product-item .content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .kit-product-item .desc {
    flex-grow: 1;
  }
}
@media screen and (min-width: 1024px) {
  .title-lg {
    font-size: 38px;
    line-height: 43.7px;
  }
}
@media screen and (min-width: 1250px) {
  .nav-wrapper .nav-primary .nav-list {
    padding-left: 68px;
    padding-right: 68px;
  }
  .nav-wrapper .mega-menu .mega-menu_item {
    padding-left: 68px;
    padding-right: 68px;
  }

  .product-details__body {
    font-size: 1.125rem;
  }

  .pt4-lg {
    padding-top: 2rem;
  }

  .f1-lg {
    font-size: 3.125rem;
  }

  .f2-lg {
    font-size: 2.25rem;
  }

  .f3-lg {
    font-size: 1.5rem;
  }

  .f4-lg {
    font-size: 1.25rem;
  }

  .f5-lg {
    font-size: 1.125rem;
  }

  .f6-lg {
    font-size: 1rem;
  }

  .f7-lg {
    font-size: 0.875rem;
  }

  .f8-lg {
    font-size: 0.75rem;
  }

  .col-6-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-8-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-9-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }

  .header {
    height: 120px;
  }
  .header .logo-intro {
    width: 100px;
    display: block;
  }
  .header .inner-header {
    padding-left: 30px;
  }

  .logo-main-ui {
    width: 298px;
    margin-left: 120px;
  }

  .df-lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .db-lg {
    display: block;
  }

  .dn-lg {
    display: none;
  }

  .stada-badge {
    width: 148px;
    height: 99px;
  }

  .stada-badge_logo {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .crumbs {
    min-height: 40px;
  }

  .mb3-lg {
    margin-bottom: 1rem;
  }

  .pt0-lg {
    padding-top: 0;
  }

  .pt2-lg {
    padding-top: 0.5rem;
  }

  .pt4-lg {
    padding-top: 2rem;
  }

  .pr4-lg {
    padding-right: 2rem;
  }

  .ph4-lg {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .ph5-lg {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .footer_anchor {
    height: 78px;
  }

  .align-center-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .flex-lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .pr5-lg {
    padding-right: 4rem;
  }

  .mb0-lg {
    margin-bottom: 0;
  }

  .pv0-lg {
    padding-top: 0;
    padding-bottom: 0;
  }

  .pr0-lg {
    padding-right: 0;
  }

  .pl5-lg {
    padding-left: 4rem;
  }

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

  .tal-lg {
    text-align: left;
  }

  .banner-overlay {
    padding-left: 160px;
    padding-right: 160px;
  }

  .product-details-content {
    max-width: 80%;
  }

  .kamistab-section-1 .wrapper-kamistab-sec {
    margin-top: -50px;
  }
  .kamistab-section-1 .content-middle {
    margin-left: -20px;
    margin-top: 80px;
  }
  .kamistab-section-1 .banner-right {
    margin-right: -63px;
    margin-top: 90px;
  }
  .kamistab-section-1 .content-middle .text-1 {
    margin-left: 20px;
  }
  .kamistab-section-1 .content-middle .text-2 {
    margin-left: 0px;
    margin-right: -20px;
  }
  .kamistab-section-1 .content-middle .bottom {
    margin-left: -8rem;
    padding-left: 8rem;
    margin-right: -8rem;
    padding-right: 8rem;
  }

  .kamistab-section-2 {
    padding-top: 168px;
    padding-bottom: 119px;
  }
}
@media screen and (max-width: 1249px) {
  .kamistab-section-1 .banner-right, .kamistab-section-1 .banner-left {
    flex-shrink: unset;
  }

  .header {
    height: 92px;
  }
  .header .inner-header {
    padding-left: 62px;
  }

  .footer-col-block {
    margin-bottom: 0;
  }
  .footer-col-block .list-nav-menu {
    display: none;
  }
  .footer-col-block .footer-heading-mb .footer-title {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .footer-col-block .list-nav-menu {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .kamistab-section-1 .content-middle .text-1 {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  .mobile-mb-40 {
    margin-bottom: 40px;
  }

  br {
    display: none;
  }

  .section-kit-product {
    background: #C6E8F3 !important;
    padding: 80px 0px;
  }

  .kit-product-item .image {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    height: unset;
  }

  .flat-slider br {
    display: block;
  }
  .flat-slider .slider-item {
    padding-top: 3rem;
    padding-bottom: 26rem;
    height: auto;
  }
  .flat-slider .slider-item .img-pos {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 456px;
    max-height: 457px;
  }
  .flat-slider .slider-item-1 {
    background-image: url("../images/banner/banner-slider-mb-1.png");
  }
  .flat-slider .slider-item-2 {
    background-image: url("../images/banner/banner-slider-mb-2.png");
  }
  .flat-slider .slider-item-3 {
    background-image: url("../images/banner/banner-slider-mb-3.png");
  }
  .flat-slider .slider-item-4 {
    background-image: url("../images/banner/banner-slider-mb-4.png");
  }
  .flat-slider .slider-item-4 .img-pos {
    max-width: 590px;
    max-height: 437px;
    bottom: 8%;
  }
  .flat-slider .wrap-nav-pagination {
    bottom: 0;
  }

  .sec-mb {
    padding-top: 60px;
  }
}
@media screen and (max-width: 950px) {
  .flat-spacing-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .table-functions-of-the-oral-cavity td {
    font-size: 12px;
    line-height: 18px;
    padding: 8px;
  }

  .tf-btn {
    font-size: 16px;
    line-height: 16.4px;
    padding: 15px 30px;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    opacity: 1;
  }

  .section-kit-product .heading-section {
    font-size: 38px;
    line-height: 47.6px;
  }
}
@media screen and (max-width: 767px) {
  .mb5 {
    margin-bottom: 2rem;
  }

  .kamistab-section-3 p {
    margin-top: 30px;
  }

  .kamistab-section-1 {
    overflow: hidden;
  }
  .kamistab-section-1 .wrapper-kamistab-sec {
    padding-top: 245px;
    padding-bottom: 50px;
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }
  .kamistab-section-1 .wrapper-kamistab-sec::before {
    position: absolute;
    content: url(./../images/items/flower.png);
    top: 61px;
    left: -20px;
  }
  .kamistab-section-1 .wrapper-kamistab-sec .text-1 {
    text-align: start;
    width: 50%;
    padding-left: 0px;
    font-size: 28px;
    line-height: 39px;
  }
  .kamistab-section-1 .wrapper-kamistab-sec .bottom {
    margin-left: -49px;
    margin-right: -100px;
    padding-left: 40px;
    align-items: flex-start;
    position: relative;
  }
  .kamistab-section-1 .wrapper-kamistab-sec .bottom img, .kamistab-section-1 .wrapper-kamistab-sec .bottom .text-2 {
    position: relative;
    z-index: 10;
  }
  .kamistab-section-1 .wrapper-kamistab-sec .bottom .text-2 {
    width: 50%;
    font-size: 24px;
    line-height: 34px;
  }
  .kamistab-section-1 .wrapper-kamistab-sec .bottom img {
    width: 250px;
  }
  .kamistab-section-1 .wrapper-kamistab-sec .banner-right {
    position: absolute;
    right: -50px;
    bottom: 0;
    width: 380px;
  }
  .kamistab-section-1 .wrapper-kamistab-sec .banner-left {
    position: absolute;
    right: -20px;
    top: 40px;
    z-index: -1;
    width: 421px;
  }

  .col-md-4:not(:last-child) .wd-card-1 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 650px) {
  .header {
    height: 77px;
  }
  .header .inner-header {
    padding-left: 25px;
  }
  .header .logo-intro {
    width: 60px;
  }
  .header .logo-main-ui {
    margin-left: 65px;
  }
  .header .btn-offcanvas-toggle {
    width: 40px;
  }
  .header .btn-offcanvas-toggle svg {
    width: 20px;
  }

  .mobile-flex-wrap {
    flex-wrap: wrap;
  }

  .section-kit-product .heading-section {
    font-size: 28px;
    line-height: 37.6px;
  }
}
@media screen and (max-width: 575px) {
  .flat-slider .slider-item .content-slider .title {
    font-size: 24px;
    line-height: 34.6px;
    margin-bottom: 15px;
  }
  .flat-slider .slider-item .content-slider .title .title-logo {
    font-size: 30px;
    line-height: 40.6px;
  }
  .flat-slider .slider-item .content-slider .tf-btn {
    padding-top: 10px;
    padding-bottom: 15px;
  }

  .kamistab-section-1 .wrapper-kamistab-sec {
    padding-top: 180px;
  }
  .kamistab-section-1 .wrapper-kamistab-sec::before {
    top: 0;
  }
  .kamistab-section-1 .wrapper-kamistab-sec .bottom .text-2 {
    font-size: 16px;
    line-height: 28px;
    width: 57%;
  }
  .kamistab-section-1 .wrapper-kamistab-sec .text-1 {
    font-size: 18px;
    line-height: 28px;
    width: 65%;
  }
  .kamistab-section-1 .wrapper-kamistab-sec .bottom img {
    width: 120px;
    margin-bottom: 10px;
  }
  .kamistab-section-1 .wrapper-kamistab-sec .banner-left {
    width: 206px;
    top: 115px;
  }
  .kamistab-section-1 .wrapper-kamistab-sec .banner-right {
    width: 268px;
  }
}
@media screen and (max-width: 450px) {
  .flat-slider .slider-item-2 .img-pos, .flat-slider .slider-item-3 .img-pos {
    bottom: 10%;
  }

  .kamistab-section-1 .wrapper-kamistab-sec .text-1 {
    width: 50%;
  }
  .kamistab-section-1 .wrapper-kamistab-sec .bottom .text-2 {
    width: 44%;
  }
  .kamistab-section-1 .wrapper-kamistab-sec .banner-right {
    width: 210px;
    bottom: 34px;
  }
}

/*# sourceMappingURL=styles.css.map */
