/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
html,
body {
  border: 0;
  font-family: "Helvetica-Neue", "Helvetica", Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}

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

table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}

a img {
  border: 0;
}

:focus {
  outline: 0;
}

font-face {
  font-family: "Lato", sans-serif;
  src: url("https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Roboto:wght@100&display=swap");
  font-style: normal;
  font-weight: normal;
}

* {
  box-sizing: border-box;
  transition: 0.2s;
}

html {
  font-size: 10px;
}

body {
  height: 100%;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  transition: 0.2s;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

sup {
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  line-height: 120%;
  vertical-align: revert;
}

input,
textarea {
  font-size: 1.4rem;
  color: #3b3b36;
}

html {
  font-family: "Lato", sans-serif;
}

body {
  margin: 0;
  overflow-x: hidden;
  height: 100vh;
  width: 100vw;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.msg {
  font-family: "Pacifico", cursive;
  font-size: 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  align-items: center;
  color: #fefefe;
  background-color: #1abc9c;
}

.features {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.features li {
  width: 100%;
  text-align: center;
  padding: 0.25em;
}
.drawer-list.open{
  transform: translate(0, 0);
  /*ie workaround */
  -ms-transform: translatex(0);
  border-bottom-left-radius: 0;
}
.drawer-list.open li {
  transform: translate(0, 0);
  /*ie workaround */
  -ms-transform: translatex(0);
}
.online-shops a img:hover{
  transition: 0.3s;
  transform: scale(1.1);
}
label.hamburger.checked{
  background: none;
  position: fixed;
}
label.hamburger.checked:hover{
  background: none;
}
.drawer-list {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100vw;

  /* ---- управляет отображением блока меню - start ---- */

   transform: translate(100vw, 0);
   /*ie workaround */
   -ms-transform: translatex(-100vw);
   transition: width 475ms ease-out, transform 450ms ease, border-radius 0.8s 0.1s ease;
   border-bottom-left-radius: 100vw;

  /* ---- управляет отображением блока меню - end ---- */

  box-sizing: border-box;
  pointer-events: none;
  padding-top: 125px;
  background-color: #43a692;
  background-color: rgba(20, 143, 119, 0.8);
  /* display: none; */
}

@media (min-width: 768px) {
  .drawer-list {
    width: 25vw;
  }
}

.drawer-list ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  overflow-x: hidden;
  pointer-events: auto;
}

.drawer-list li {
  list-style: none;
  text-transform: uppercase;
  pointer-events: auto;
  white-space: nowrap;
  box-sizing: border-box;

  /* ---- управляет появлением элементов меню - start ---- */

  /* transform: translatex(100vw); */
  /* ie workaround */
  /* -ms-transform: translatex(-100vw); */

  /* ---- управляет появлением элементов меню - end ---- */
}

.drawer-list li:last-child {
  margin-bottom: 2em;
}

.drawer-list li span {
  text-decoration: none;
  color: #fefefe;
  text-align: center;
  display: block;
  padding: 1rem;
  font-size: calc(24px - 0.5vw);
}

@media (min-width: 768px) {
  .drawer-list li span {
    text-align: right;
  }
}

.drawer-list li span:hover {
  cursor: pointer;
  background-color: #8ddece;
  background-color: rgba(26, 188, 156, 0.5);
}

input.hamburger {
  display: none;
}

label.hamburger.checked i{
  background-color: transparent;
  transform: rotate(90deg);
}
label.hamburger.checked i:before{
  transform: translate(-50%, -50%) rotate(315deg);
}
label.hamburger.checked i:after{
  transform: translate(-50%, -50%) rotate(-315deg);
}

input.hamburger ~ label close {
  color: #fefefe;
  width: 100%;
}

input.hamburger ~ label open {
  color: rgba(0, 0, 0, 0);
  width: 0;
}

label.hamburger {
  z-index: 9999;
  position: relative;
  display: block;
  height: 50px;
  width: 50px;
}

label.hamburger:hover {
  cursor: pointer;
}

label.hamburger text close,
label.hamburger text open {
  text-transform: uppercase;
  font-size: 0.8em;
  position: absolute;
  transform: translateY(50px);
  text-align: center;
  overflow: hidden;
  transition: width 0.25s 0.35s, color 0.45s 0.35s;
}

label.hamburger text close {
  color: rgba(0, 0, 0, 0);
  right: 0;
  width: 0;
}

label.hamburger text open {
  color: #fefefe;
  width: 100%;
}

label.hamburger > i {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  background-color: #fefefe;
  pointer-events: auto;
  transition-duration: 0.35s;
  transition-delay: 0.35s;
}

label.hamburger > i:before,
label.hamburger > i:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  left: 50%;
  background-color: #fefefe;
  content: "";
  transition: transform 0.35s;
  transform-origin: 50% 50%;
}

label.hamburger > i:before {
  transform: translate(-50%, -14px);
}

label.hamburger > i:after {
  transform: translate(-50%, 14px);
}

label.hamburger {
  position: fixed;
  top: 15px;
  right: 15px;
}

/**
    SCROLLBAR STYLE FOR IE
*/
body {
  scrollbar-base-color: #138a72;
  scrollbar-3dlight-color: #fff;
  scrollbar-highlight-color: #1abc9c;
  scrollbar-track-color: #fff;
  scrollbar-arrow-color: #1abc9c;
  scrollbar-shadow-color: #1abc9c;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.icon {
  display: inline-block;
  width: 5vw;
  height: 4vw;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

/* ----------- variables start ----------- */
/* -----------variables end ----------- */
/* -----------header start ----------- */
.header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
  height: 113px;
}

@media screen and (max-width: 1919px) {
  .header {
    justify-content: space-between;
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media screen and (max-width: 480px) {
  .header {
    height: 60px;
  }
}

.header__logo {
  width: 441px;
}

@media screen and (max-width: 1024px) {
  .header__logo {
    width: 301px;
  }
}

@media screen and (max-width: 480px) {
  .header__logo {
    width: 200px;
  }
}

.header-menu {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1919px) {
  .header-menu {
    display: none;
  }
}

.header-menu__elem {
  background-color: #008066;
  border-radius: 10px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 10px 20px;
  font-size: 2rem;
  text-transform: uppercase;
  color: #ffffff;
}

.header-menu__elem:hover {
  background-color: #0f4735;
  transition: 0.1s;
}

/* ----------- header end ----------- */
/* ----------- hamburger start ----------- */
label.hamburger > i:before,
label.hamburger > i:after {
  height: 7px;
  left: 50%;
}

label.hamburger > i {
  height: 7px;
  width: 70%;
  top: 45%;
  left: 15%;
}

label.hamburger {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(140.63deg, #367d72 11.39%, #3db890 92.26%);
}

label.hamburger:hover {
  background: linear-gradient(140.63deg, #1c4741 11.39%, #197959 92.26%);
}

@media screen and (min-width: 1920px) {
  label.hamburger {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  label.hamburger {
    top: 5px;
    width: 55px;
    height: 55px;
  }
}

/* input.hamburger ~ .drawer-list {
  background: linear-gradient(140.63deg, #367d72 11.39%, #3db890 92.26%);
}

input.hamburger + label.hamburger {
  background: none;
} */

.drawer-list li span:hover {
  background-color: rgba(136, 177, 130, 0.5);
}

.drawer-list {
  background: linear-gradient(140.63deg, #367d72 11.39%, #3db890 92.26%);
  z-index: 10;
}

/* ----------- hamburger end ----------- */
/* ----------- presentation start ----------- */
.presentation {
  display: flex;
  justify-content: space-evenly;
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 140px;
}

@media screen and (max-width: 1024px) {
  .presentation {
    flex-direction: column;
    align-items: center;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 479px) {
  .presentation {
    padding-bottom: 30px;
  }
}

.presentation__big-cat {
  max-width: 752px;
}

@media screen and (max-width: 1919px) {
  .presentation__big-cat {
    width: 503px;
  }
}

@media screen and (max-width: 1024px) {
  .presentation__big-cat {
    width: 380px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .presentation__big-cat {
    width: 240px;
  }
}

.presentation__block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

@media screen and (max-width: 1919px) {
  .presentation__block {
    width: 450px;
  }
}

@media screen and (max-width: 1024px) {
  .presentation__block {
    width: 100vw;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  .presentation__block {
    width: 100vw;
  }
}

.presentation__solution-for-external-use {
  max-width: 714px;
}

.btn-acquire {
  width: 487px;
}

@media screen and (max-width: 1919px) {
  .btn-acquire {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .btn-acquire {
    width: 50vw;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .btn-acquire {
    width: 90vw;
  }
}

.btn {
  border: none;
  background: linear-gradient(140.63deg, #367d72 11.39%, #3db890 92.26%);
  border-radius: 10px;
  font-size: 3.5rem;
  color: #ffffff;
  cursor: pointer;
  padding-top: 19px;
  padding-bottom: 19px;
  text-transform: uppercase;
}

.btn:hover {
  background: linear-gradient(140.63deg, #1c4741 11.39%, #197959 92.26%);
}

@media screen and (max-width: 480px) {
  .btn {
    font-size: 2.5rem;
  }
}

.presentation__text {
  font-size: 5rem;
  color: #3ab48d;
  text-align: right;
  line-height: 100%;
}

@media screen and (max-width: 1919px) {
  .presentation__text {
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 480px) {
  .presentation__text {
    font-size: 3rem;
  }
}

/* -----------presentation end ----------- */
/* -----------advantages start ----------- */
.advantages {
  background: radial-gradient(36.61% 75.36% at -1.17% 92.24%, rgba(84, 84, 84, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%),
    radial-gradient(30.42% 119.91% at 85.23% 63.55%, rgba(84, 84, 84, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(100.09deg, rgba(221, 214, 211, 0.5) 11.31%, rgba(221, 214, 211, 0) 79.65%);
  padding-bottom: 69px;
  border-top: 2px #008066 solid;
}

@media screen and (max-width: 479px) {
  .advantages {
    padding-bottom: 30px;
  }
}

.h2-caption {
  background-color: #008066;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  font-size: 3.5rem;
  text-transform: uppercase;
  color: #ffffff;
  padding-top: 25.5px;
  padding-bottom: 26.5px;
  width: 555px;
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .h2-caption {
    width: inherit;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }
}

@media screen and (max-width: 480px) {
  .h2-caption {
    font-size: 2.5rem;
  }
}

.advantages__container {
  max-width: 1360px;
  margin: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-column-gap: 4%;
  grid-row-gap: 20px;
  justify-content: space-around;
  padding-top: 71px;
  padding-bottom: 69px;
  font-weight: 600;
  color: #3b3b36;
}

.advantages__container:first-child {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
}

.advantages__container:nth-child(2) {
  -ms-grid-column: 4;
  -ms-grid-column-span: 2;
  grid-column: 4/6;
}

.advantages__container:nth-child(3) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
}

.advantages__container:nth-child(4) {
  -ms-grid-column: 4;
  -ms-grid-column-span: 2;
  grid-column: 4/6;
}

.advantages__container div:last-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .advantages__container div:last-child {
    justify-content: normal;
  }
}

@media screen and (max-width: 1024px) {
  .advantages__container {
    display: block;
    padding: 50px 30px;
  }
}

@media screen and (max-width: 480px) {
  .advantages__container {
    padding: 30px 20px;
  }
}

.box {
  display: flex;
}

.box picture {
  margin-right: 30px;
}

.box__icon {
  -webkit-filter: drop-shadow(45px 26px 2px rgba(78,78,78, 0.2));
  filter: drop-shadow(45px 26px 2px rgba(78,78,78, 0.2));
  min-width: 122px;
}

@media screen and (max-width: 600px) {
  .box__icon {
    min-width: 100px;
  }
}

.box__wrapper {
  /* -ms-grid-column: 2; */
  grid-column-start: 2;
  grid-column-end: 3;
}

.box__caption {
  font-size: 3.5rem;
  line-height: 100%;
  margin-top: 37px;
  margin-bottom: 20px;
}

@media screen and (max-width: 480px) {
  .box__caption {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 320px) {
  .box__caption {
    font-size: 2rem;
  }
}

.box__text {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 120%;
  word-wrap: break-word;
}

@media screen and (max-width: 480px) {
  .box__text {
    font-size: 2rem;
  }
}

/* ----------- advantages end ----------- */
/* ----------- range-of-actions start ----------- */
.range-of-actions {
  border-top: 2px #008066 solid;
}

.range-of-actions__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 5%;
  column-gap: 5%;
  margin-top: 75px;
}

@media screen and (max-width: 1024px) {
  .range-of-actions__container {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .range-of-actions__container {
    margin-top: 30px;
  }
}

.range-of-actions__box--left {
  padding-right: 0px;
}

@media screen and (max-width: 1024px) {
  .range-of-actions__box--left {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .range-of-actions__box--left {
    width: auto;
  }
}

@media screen and (max-width: 1024px) {
  .range-of-actions__box--right {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    padding-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .range-of-actions__box--right {
    width: auto;
  }
}

@media screen and (max-width: 480px) {
  .range-of-actions__box--right {
    padding-left: 0px;
  }
}

.range-of-actions__box-heading {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 4.7rem;
  text-transform: uppercase;
  border: solid;
}

@media screen and (max-width: 1919px) {
  .range-of-actions__box-heading {
    font-size: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .range-of-actions__box-heading {
    font-size: 2.5rem;
  }
}

.range-of-actions__box-heading--green {
  border-left-width: 0px;
  border-color: #008066;
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
  color: #008066;
  padding-right: 108px;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .range-of-actions__box-heading--green {
    text-align: right;
    padding-right: 28px;
    padding-left: 30px;
  }
}

@media screen and (max-width: 479px) {
  .range-of-actions__box-heading--green {
    padding: 10px 0px 10px 5px;
    text-align: center;
    padding-right: 0px;
  }
}

.range-of-actions__box-heading--red {
  border-right-width: 0px;
  border-color: #ca2112;
  border-top-left-radius: 70px;
  border-bottom-left-radius: 70px;
  color: #ca2112;
  padding-left: 108px;
}

@media screen and (max-width: 1024px) {
  .range-of-actions__box-heading--red {
    text-align: left;
    padding-left: 28px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 479px) {
  .range-of-actions__box-heading--red {
    padding: 10px 5px 10px 0px;
    text-align: center;
  }
}

.range-of-actions__wrapper {
  max-width: 760px;
}

@media screen and (max-width: 479px) {
  .range-of-actions__wrapper {
    text-align: center;
    margin: 25px 0px 25px 0px;
  }
}

@media screen and (min-width: 1326px) {
  .range-of-actions__wrapper-inner {
    min-height: 180px;
  }
}

@media screen and (max-width: 1325px) {
  .range-of-actions__wrapper-inner {
    min-height: 210px;
  }
}

@media screen and (max-width: 1103px) {
  .range-of-actions__wrapper-inner {
    min-height: 240px;
  }
}

@media screen and (max-width: 1032px) {
  .range-of-actions__wrapper-inner {
    min-height: 270px;
  }
}

@media screen and (max-width: 1024px) {
  .range-of-actions__wrapper-inner {
    min-height: auto;
  }
}

.range-of-actions__wrapper--left {
  padding: 75px 0px 53px 0px;
  margin: 0px 0px 0px auto;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .range-of-actions__wrapper--left {
    padding: 22px 30px 45px 30px;
  }
}

@media screen and (max-width: 479px) {
  .range-of-actions__wrapper--left {
    text-align: center;
    padding-bottom: 30px;
  }
}

.range-of-actions__wrapper--right {
  text-align: left;
  padding: 75px 0px 45px 0px;
  margin-right: auto;
}

.range-of-actions__wrapper--right sup {
  color: #ca2112;
}

@media screen and (max-width: 1024px) {
  .range-of-actions__wrapper--right {
    text-align: left;
    padding: 22px 30px 45px 30px;
  }
}

@media screen and (max-width: 479px) {
  .range-of-actions__wrapper--right {
    text-align: center;
    padding: 0px;
  }
}

.range-of-actions__text {
  font-size: 2.5rem;
  line-height: 120%;
  color: #3b3b36;
}

.range-of-actions__text span {
  font-size: 3.5rem;
  text-transform: uppercase;
  color: #3b3b36;
}

@media screen and (max-width: 479px) {
  .range-of-actions__text span {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 479px) {
  .range-of-actions__text {
    font-size: 2rem;
  }
}

.range-of-actions__text--right span {
  color: #ca2112;
}

.parasite-icons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 45px;
}

@media screen and (max-width: 1024px) {
  .parasite-icons {
    margin-top: 35px;
  }
}

.parasite-icons--left {
  justify-content: right;
}

@media screen and (max-width: 1919px) {
  .parasite-icons--left {
    width: 360px;
    margin-left: auto;
  }
}

@media screen and (max-width: 1024px) {
  .parasite-icons--left {
    justify-content: right;
  }
}

@media screen and (max-width: 479px) {
  .parasite-icons--left {
    justify-content: center;
    width: auto;
    margin-bottom: inherit;
  }
}

.parasite-icons--right {
  justify-content: left;
}

@media screen and (max-width: 1919px) {
  .parasite-icons--right {
    width: 360px;
    margin-right: auto;
  }
}

@media screen and (max-width: 479px) {
  .parasite-icons--right {
    margin-left: 0px;
    justify-content: center;
    width: inherit;
  }
}

.parasite-icons__elem {
  width: 100px;
  height: 172px;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
}

.parasite-icons__elem-img {
  width: 100px;
  height: 92px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.parasite-icons__elem-img--green {
  border: 1px #008066 solid;
}

.parasite-icons__elem-img--red {
  border: 1px #ca2112 solid;
}

.flea {
  background: url("../img/sprite-parasites.png") 10px -15px no-repeat;
}

.flea-eggs {
  background: url("../img/sprite-parasites.png") -80px -6px no-repeat;
}

.larvae {
  background: url("../img/sprite-parasites.png") -190px -6px no-repeat;
}

.pincers {
  background: url("../img/sprite-parasites.png") -300px -7px no-repeat;
}

.scabies-mites {
  background: url("../img/sprite-parasites.png") -415px -5px no-repeat;
}

.roundworms {
  background: url("../img/sprite-parasites.png") 12px -106px no-repeat;
}

.ankylos-volumes {
  background: url("../img/sprite-parasites.png") -80px -105px no-repeat;
}

.echinococci {
  background: url("../img/sprite-parasites.png") -160px -105px no-repeat;
}

.dipilidia {
  background: url("../img/sprite-parasites.png") -240px -105px no-repeat;
}

.pulmonary-helminths {
  background: url("../img/sprite-parasites.png") -323px -105px no-repeat;
}

.cardiac-helminths {
  background: url("../img/sprite-parasites.png") -410px -105px no-repeat;
}

.parasite-icons__elem-name {
  font-size: 20px;
  line-height: 120%;
}

.parasite-icons__elem-name--green {
  color: #008066;
}

.parasite-icons__elem-name--red {
  color: #ca2112;
}

.range-of-actions__note {
  font-size: 1.4rem;
}

/* ----------- range-of-actions end ----------- */
/* ----------- information start ----------- */
.information {
  background: radial-gradient(36.61% 75.36% at -1.17% 92.24%, rgba(84, 84, 84, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%),
    radial-gradient(30.42% 119.91% at 85.23% 63.55%, rgba(84, 84, 84, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(100.09deg, rgba(221, 214, 211, 0.5) 11.31%, rgba(221, 214, 211, 0) 79.65%);
  padding-top: 45px;
  padding-bottom: 45px;
}

.information__caption {
  font-size: 3.5rem;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #3b3b36;
}

.information__caption span {
  color: #008066;
}

@media screen and (max-width: 600px) {
  .information__caption {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .information__caption {
    font-size: 2.2rem;
  }
}

.caption-img {
  width: 218px;
}

.information-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  grid-column-gap: 40px;
  margin-top: 47px;
}

@media screen and (max-width: 1024px) {
  .information-box {
    flex-direction: column;
    align-items: center;
  }
}

.information-box__block {
  max-width: 398px;
  font-size: 2.5rem;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .information-box__block {
    margin-top: 30px;
  }
}

.information-box__img {
  height: 172px;
}

.information-box__text {
  margin-top: 40px;
  line-height: 120%;
}

@media screen and (max-width: 480px) {
  .information-box__text {
    font-size: 2rem;
  }
}

/* ----------- information end ----------- */
/* ----------- mode of application start ----------- */
.mode-application {
  padding-bottom: 110px;
  border-top: 2px #008066 solid;
}

@media screen and (max-width: 767px) {
  .mode-application {
    padding-bottom: 0px;
  }
}

.mode-application__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 85px auto 87px;
  max-width: 1275px;
}

@media screen and (max-width: 1919px) {
  .mode-application__wrapper {
    flex-direction: column;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 479px) {
  .mode-application__wrapper {
    margin-top: 30px;
  }
}

.mode-application__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 32px;
}

@media screen and (max-width: 1919px) {
  .mode-application__container {
    justify-content: space-evenly;
  }
}

@media screen and (max-width: 1024px) {
  .mode-application__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
}

.mode-application__container-item {
  max-width: 235px;
}

.mode-application__container-item p {
  font-size: 2.5rem;
  line-height: 120%;
}

@media screen and (max-width: 480px) {
  .mode-application__container-item p {
    font-size: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .mode-application__container-item {
    max-width: 398px;
    margin-bottom: 30px;
  }
  .mode-application__container-item img {
    margin-bottom: 30px;
  }
}

.mode-application__container-item-grow {
  flex-grow: 1;
}

.mode-application__video {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 440px;
}

@media screen and (max-width: 1919px) {
  .mode-application__video {
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .mode-application__video {
    flex-direction: column;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .mode-application__video {
    max-width: 100%;
  }
}

.video {
  height: 250px;
}

@media screen and (max-width: 1919px) {
  .video {
    height: 355px;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .video {
    height: 200px;
  }
}

.headline-buy-online .caption-img {
  max-width: 417px;
}

.online-shops {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1170px;
  margin: 80px auto 0px;
}

@media screen and (max-width: 1919px) {
  .online-shops {
    max-width: 80%;
  }
}

@media screen and (max-width: 1024px) {
  .online-shops {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 598px) {
  .online-shops {
    gap: 10px;
    margin-top: 40px;
    max-width: 100%;
  }
}

.instructions-button {
  text-align: center;
  margin-bottom: 120px;
}

@media screen and (max-width: 600px) {
  .instructions-button {
    margin-bottom: 40px;
  }
}

.instructions-button__bth {
  width: 555px;
  background: linear-gradient(140.63deg, #367d72 11.39%, #3db890 92.26%);
}

@media screen and (max-width: 600px) {
  .instructions-button__bth {
    width: 80vw;
  }
}

.headline-buy-online {
  font-size: 4.7rem;
  line-height: 100%;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .headline-buy-online {
    width: 280px;
    margin: 0px auto;
  }
}

/* ----------- mode of application end ----------- */
/* ----------- section-form start ----------- */
.section-form {
  padding: 105px 20px;
  display: flex;
  justify-content: space-evenly;
  background: radial-gradient(36.61% 75.36% at -1.17% 92.24%, rgba(84, 84, 84, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%),
    radial-gradient(30.42% 119.91% at 85.23% 63.55%, rgba(84, 84, 84, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(100.09deg, rgba(221, 214, 211, 0.5) 11.31%, rgba(221, 214, 211, 0) 79.65%);
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .section-form {
    padding: 45px 20px;
  }
}

.form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  -moz-column-gap: 108px;
  column-gap: 108px;
}

@media screen and (max-width: 1300px) {
  .form {
    -moz-column-gap: 88px;
    column-gap: 88px;
  }
}

@media screen and (max-width: 1023px) {
  .form {
    flex-direction: column;
    align-items: center;
  }
}

.form-block-left {
  max-width: 755px;
  width: 755px;
}

@media screen and (max-width: 1300px) {
  .form-block-left {
    width: 465px;
  }
}

@media screen and (max-width: 479px) {
  .form-block-left {
    width: inherit;
  }
}

.form-block-left__caption {
  display: none;
  font-size: 4.7rem;
  line-height: 100%;
  color: #3b3b36;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .form-block-left__caption {
    display: block;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 479px) {
  .form-block-left__caption {
    font-size: 3.5rem;
  }
}

.form-block-left__indent {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 479px) {
  .form-block-left__indent {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.form-block__input-name {
  width: 100%;
}

.textarea {
  width: 100%;
  height: 176px !important;
  padding: 20px 30px;
  resize: none;
}

@media screen and (max-width: 479px) {
  .textarea {
    height: 135px !important;
    border-radius: 20px !important;
  }
}

.form-block-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 380px;
}

@media screen and (max-width: 1023px) {
  .form-block-right {
    width: 100%;
    margin-top: 30px;
  }
}

.form-block-right__caption {
  font-size: 4.7rem;
  line-height: 100%;
  color: #3b3b36;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .form-block-right__caption {
    display: none;
  }
}

.form-block__input-name,
.form-block__input-telephone,
.form-block__input-mail,
.textarea {
  height: 50px;
  border: 2px solid #ddd6d3;
  border-radius: 50px;
  padding-left: 30px;
}

@media screen and (max-width: 479px) {
  .form-block__input-name,
  .form-block__input-telephone,
  .form-block__input-mail,
  .textarea {
    border-radius: 50px;
  }
}

.form-block__input-telephone,
.form-block__input-mail {
  width: 48%;
}

@media screen and (max-width: 479px) {
  .form-block__input-telephone,
  .form-block__input-mail {
    width: 100%;
  }
}

/* ----------- section-form end ----------- */
/* ----------- footer start ----------- */
@media screen and (min-width: 1590px) {
  .not-visible-on-large-screens {
    display: none !important;
  }
}

@media screen and (max-width: 1590px) {
  .not-visible-on-small-screens {
    display: none !important;
  }
}

.mobile-padding {
  padding: 20px;
}

.footer {
  display: flex;
  justify-content: space-around;
  background: #249578;
  color: #ffffff;
  padding-top: 64px;
  padding-bottom: 64px;
}

@media screen and (min-width: 1929px) {
  .footer {
    justify-content: center;
  }
}

@media screen and (max-width: 1590px) {
  .footer {
    flex-direction: column;
    justify-content: space-between;
  }
}

@media screen and (max-width: 479px) {
  .footer {
    text-align: center;
  }
}

.footer-box__logo-triplex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 479px) {
  .footer-box__logo-triplex {
    flex-direction: column;
    gap: 25px;
  }
}

.logo-triplex {
  width: 100%;
}

@media screen and (max-width: 1590px) {
  .logo-triplex {
    width: 260px;
  }
}

@media screen and (max-width: 600px) {
  .logo-triplex {
    width: 145px;
  }
}

@media screen and (max-width: 479px) {
  .logo-triplex {
    width: inherit;
  }
}

.logo-triplex__img {
  min-width: 360px;
}

@media screen and (max-width: 1590px) {
  .logo-triplex__img {
    min-width: 260px;
  }
}

@media screen and (max-width: 600px) {
  .logo-triplex__img {
    min-width: 180px;
  }
}

@media screen and (max-width: 600px) {
  .footer-box__logo-boehringer {
    width: 145px;
  }
}

@media screen and (max-width: 479px) {
  .footer-box__logo-boehringer {
    width: inherit;
  }
}

.social {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
}

@media screen and (max-width: 1590px) {
  .social {
    margin-top: 40px;
  }
}

@media screen and (max-width: 479px) {
  .social {
    flex-direction: column;
    margin-bottom: 30px;
  }
}

.social__icons {
  display: flex;
  margin-left: 15px;
}

@media screen and (max-width: 479px) {
  .social__icons {
    margin-left: 0px;
    margin-bottom: 30px;
  }
}

.social__box {
  max-width: 50%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .social__text {
    display: none;
  }
}

.instagram {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: url("../img/social-icons.png") 0px 0px no-repeat;
}

.facebook {
  width: 40px;
  height: 40px;
  background: url("../img/social-icons.png") -55px 0px no-repeat;
}

.footer-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 10px;
}

.footer-box:last-child {
  align-items: flex-end;
}

@media screen and (min-width: 1929px) {
  .footer-box {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.footer-box__information {
  font-weight: 400;
  font-size: 20px;
  line-height: 200%;
}

@media screen and (max-width: 1590px) {
  .footer-box__information {
    margin-top: 40px;
  }
}

@media screen and (max-width: 479px) {
  .footer-box__information {
    line-height: 140%;
  }
}

.code {
  font-size: 2rem;
  font-weight: 400;
  line-height: 120%;
}

/* ----------- footer end ----------- */

/* ----------- modal start ----------- */
#error-modal{
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: max-content;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 5px #c8c8c8;
  padding: 10px;
}
#error-modal .modal-header{
  position: relative;
}
#error-modal .modal-header{
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#error-modal .close_modal{
  position: absolute;
  right: 0;
  padding: 5px;
  color: #008066;
  font-size: 2em;
  cursor: pointer;
  font-weight: 900;
  transform: rotate(45deg);
  transition: 0.3s;
}
#error-modal span{
  font-size: 1.5em;
}
#error-modal .close_modal:hover{
  color: #3D9D83;
}
/* ----------- modal end ----------- */