@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: 'Impact';
  src: url("../fonts/impact.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.h3 {
  font-size: 36px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 16px;
  color: rgba(39, 39, 39, 1);

}

section {
  overflow: hidden;
}

/* body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background: #fff;
}

body::-webkit-scrollbar-thumb {
  background-color: #29b5ab;
} */

.fa-angle-down {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: -10px;
  width: 172px;
  z-index: 10;
  transition: 0.5s ease-in-out;

}

.submenu {
  transform: scaleY(0);
  transform-origin: 0 0;
  background: transparent;
}

ul li:hover .submenu {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

.submenu li {
  list-style: none;
  padding-left: 10px;
}

.sectionTitle {
  padding-top: 85px;
  padding-bottom: 85px;
}

.sectionTitle-wrapper h2 {
  font-size: 36px;
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

ul {
  padding: 0;
  margin: 0;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
}

input::-moz-placeholder {
  font-size: 14px;
}

input:-ms-input-placeholder {
  font-size: 14px;
}

input::placeholder {
  font-size: 14px;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button {
  border: none;
  background: none;
  outline: none;
  position: relative;
}

button a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.modalMenu {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: -100vh;
  z-index: 100;
  background-color: #fff;
  transition: .5s;
}

.modalMenu.active {
  top: 0;
  transition: .5s;
}

.modalMenu-wrapper {
  padding-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modalMenu-logo {
  max-width: 200px;
}

.modalMenu-menu {
  margin-top: 50px;
  list-style: none;
}

.modalMenu-menu li {
  margin-bottom: 30px;
  text-align: center;
}

.modalMenu-menu li a {
  transition: .5s;
  text-align: center;
  color: #000;
}

.modalMenu-menu li a:hover {
  transition: .5s;
  color: #29b5ab;
}

.modalMenu-numders {
  display: flex;
  flex-direction: column;
}

.modalMenu-numders a {
  margin-bottom: 20px;
  color: #29b5ab;
  font-weight: 700;
}

body.active {
  overflow: hidden;
}

.btn-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: #29b5ab;
  color: #fff;
  border: 0px solid #29b5ab;
  border: none;
  border-radius: 10px;
  height: 70px;
  transition: .5s;
}

.btn-blue:hover {
  transition: .5s;
  border: 1px solid #29b5ab;
  background-color: transparent;
  color: #29b5ab;
}

.btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: #fff;
  color: #29b5ab;
  border: 1px solid #29b5ab;
  border-radius: 10px;
  height: 70px;
  transition: .5s;
}

.btn-white:hover {
  transition: .5s;
  border: 1px solid #29b5ab !important;
  background-color: #29b5ab !important;
  color: #fff !important;
}

.btn-white:hover span {
  transition: .5s;
  color: #fff;
}

.modalBack {
  transition: .1s;
  position: fixed;
  top: -100vh;
  left: 0;
  z-index: 80;
  width: 100vw;
  height: 100vh;
  opacity: 1;
  background-color: #00000050;
  cursor: pointer;
}

.modalBack.active {
  width: 130vw;
  height: 130vh;
  transition: .1s;
  top: 0;
}

.modalBack-close {
  position: absolute;
  right: 17px;
  top: 17px;
  height: 24px;
  width: 24px;
  cursor: pointer;
}

.modalBack-close::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("../img/home/close.png");
  top: 0px;
  right: 0px;
}

select {
  width: 48%;
  margin-bottom: 14px;
  border: 1px solid #EEEEEE;
  background-color: transparent;
  color: #757575;
  padding: 17px;
}

option {
  border: 1px solid #EEEEEE;
}

.hero-wrapper-description button {
  z-index: 50;
}

.modalProd {
  width: 976px;
  height: 588px;
  background-color: #fff;
  position: fixed;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .1s;
  z-index: 211;
  display: flex;
  opacity: 0;
}

.modalProd.active {
  transition: .1s;
  top: 50%;
  opacity: 1;
}

.modalProd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 674px;
  background-color: #29b5ab;
}

.footer-wrapper {
  position: relative;
}

.name-company {
  position: absolute;
  bottom: -27px;
  right: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  transition: .5s;
}

.name-company:hover {
  color: #29b5ab;
  transition: .5s;
}

.modalConnection {
  width: 976px;
  height: 590px;
  background-color: #fff;
  position: fixed;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .2s;
  z-index: 211;
  display: flex;
  opacity: 0;
}

.modalConnection.active {
  transition: .2s;
  top: 50%;
  opacity: 1;
}

.modalConnection::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 674px;
  background-color: #29b5ab;
}

.modalConnection-footer {
  margin-top: 27px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.modalConnection-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.modalConnection-form input {
  border: 1px solid #EEEEEE;
  background-color: transparent;
  padding: 17px;
  width: 48%;
  margin-bottom: 14px;
}

.modalConnection-form textarea {
  width: 100%;
  display: block;
  padding: 17px;
  border: 1px solid #EEEEEE;
  height: 95px;
  max-height: 95px;
}

.modalConnection-tel {
  position: relative;
}

.modalConnection-tel::before {
  content: '';
  position: absolute;
  background-image: url("../img/modal/phone.png");
  background-size: 100%;
  height: 32px;
  width: 32px;
  top: 5px;
  left: -50px;
}

.modalConnection-send {
  background-color: #29b5ab !important;
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
  border: 2px solid #29b5ab;
  transition: .5s;
}

.modalConnection-send:hover {
  transition: .5s;
  background-color: #fff !important;
  color: #29b5ab;
  border: 1px solid #29b5ab;
}

.modalConnection-mail {
  margin-top: 30px;
  position: relative;
}

.modalConnection-mail::before {
  content: '';
  position: absolute;
  background-image: url("../img/modal/mail.png");
  background-size: 100%;
  height: 28px;
  width: 28px;
  top: 1px;
  left: -50px;
}

.modalConnection-right {
  padding-top: 25px;
  padding-left: 29px;
  padding-right: 30px;
  width: 660px;
}

.modalConnection-right h2 {
  font-family: 'Impact';
  font-size: 48px;
  max-width: 490px;
}

.modalConnection-right p {
  color: #bfbfbf;
  margin-top: 20px;
  margin-bottom: 40px;
  max-width: 510px;
}

.contactHero-description-adres a {
  position: relative;
}

.contactHero-description-adres a::before {
  content: '';
  position: absolute;
  height: 32px;
  width: 32px;
  background-image: url(../img/contact/home.png);
  background-size: 100%;
  left: -60px;
  top: 7px;

}

.modalConnection-left {
  padding-top: 40px;
  padding-left: 30px;
  padding-bottom: 90px;
  width: 315px;
  height: 100%;
  background-image: url("../img/modal/bg.jpg");
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modalConnection-left-logo {
  width: 101px;
}

.modalConnection-left-description-item {
  margin-bottom: 5px;
  margin-left: 50px;
}

.modalConnection-left-description-item p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

.modalConnection-left-description-item a {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.policy {
  display: flex;
}

.policy label {
  font-size: 12px;
  color: #818181;
  max-width: 235px;
  margin-left: 40px;
}

.policy label a {
  color: #B4B4B4;
  font-size: 12px;
}

.policy-cheack {
  margin: 0;
  max-width: 100%;
  height: auto;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: #1b1b1b;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: .08em solid #4F4F4F;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  padding: 0 !important;
  transition: .5s;
  margin: 0;
  margin-top: 10px;
  margin-left: 10px;
}

.shadowBG {
  position: relative !important;
}

.shadowBG::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* z-index: 10000000; */
}

.policy input[type="checkbox"]:checked {
  box-shadow: 0px 0px 0px 10px rgba(39, 39, 39, 0.1);
  background-color: #29b5ab;
  border-color: #29b5ab;
  transition: .5s;
}

.modalActiveСonnection {
  cursor: pointer;
}


@media screen and (max-width: 1441px) {
  .btn-blue {
    height: 45px;
    font-size: 16px;
  }

  .btn-white {
    height: 45px;
    font-size: 16px;
  }

  .ankSuperTab-item-img {
    display: unset !important;
    margin-left: 0 !important;
  }

}

@media screen and (max-width: 1200px) {
  .modalConnection-form input {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .modalConnection-form textarea {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .policy-cheack {
    height: 7px !important;
  }

  .policy input[type="checkbox"]:checked {
    box-shadow: 0px 0px 0px 5px rgba(39, 39, 39, 0.1);
    background-color: #29b5ab;
    border-color: #29b5ab;
    transition: .5s;
  }

  .policy label {
    margin-left: 25px;
  }

  .modalBack-close {
    height: 17px;
    width: 17px;
  }

  .modalBack-close::before {
    height: 17px;
    width: 17px;
    background-position: center center;
  }

  .modalProd {
    width: 704px;
    height: auto;
  }

  .modalProd::before {
    width: 486px;
  }

  .modalConnection {
    width: 704px;
    height: 424px;
  }

  .modalConnection::before {
    width: 486px;
  }

  .modalConnection-left {
    padding-top: 30px;
    padding-left: 22px;
    padding-bottom: 45px;
    height: auto;
  }

  .modalConnection-left-logo {
    width: 73px;
  }

  .modalConnection-right {
    width: 476px;
    padding-top: 30px;
  }

  .modalConnection-right h2 {
    font-size: 36px;
  }

  .modalConnection-right p {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .modalConnection-form input {
    font-size: 12px;
    padding-left: 7px;
    padding-right: 7px;
  }

  .modalConnection-form textarea {
    max-height: 64px;
  }

  select {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 7px;
  }
}

@media screen and (max-width: 992px) {
  .sectionTitle {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}

@media screen and (max-width: 768px) {
  select {
    width: 100%;
  }

  .modalProd {
    width: 704px;
    height: 424px;
    flex-direction: column;
    width: 290px;
    height: auto;
    overflow-y: scroll;
  }

  .modalProd::-webkit-scrollbar {
    width: 0;
  }

  .modalProd::before {
    content: none;
  }

  .modalConnection {
    flex-direction: column;
    width: 290px;
    height: auto;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 535px;
  }

  .modalConnection::-webkit-scrollbar {
    width: 0;
  }

  .modalConnection-form {
    margin-top: 30px;
  }

  .modalConnection-form input {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .modalConnection-send {
    margin-top: 20px;
  }

  .modalConnection-left {
    height: 100px;
    padding: 0;
    background-size: 100%;
  }

  .modalConnection-left-logo {
    display: none;
  }

  .modalConnection-left-description {
    display: none;
  }

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

  .modalConnection-right {
    width: 290px;
    overflow-y: scroll;
    height: 434px;
    padding: 20px;
  }

  .modalConnection-right::-webkit-scrollbar {
    width: 0;
  }

  .modalConnection-right h2 {
    font-size: 18px;
  }

  .modalConnection-right p {
    font-size: 10px;
  }
}

.header {
  position: absolute;
  width: 100%;
  color: #fff;
  z-index: 3;
}

.header-triger {
  display: none;
}

.header-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-wrapper-call {
  display: flex;
}

.header-wrapper-call-item {
  margin-left: 20px;
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}

.header-wrapper-call-item1 {
  margin-left: 20px;
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}


.header-wrapper-call-description {
  margin-left: 17px;
}

.header-wrapper-call-description h3 {
  font-size: 16px;
  color: #fff;
}

.header-wrapper-call-description p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.header-wrapper-call-description a {
  color: #fff;
}

.header-wrapper-call-img {
  width: 37px;
  height: 37px;
}

.header-wrapper-call-img img {
  width: 100%;
}

.header-wrapper-logo {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.header-wrapper-item {
  list-style: none;
  display: flex;
}

.header-wrapper-item li a {
  margin-right: 15px;
  color: #fff;
  text-transform: uppercase;
  transition: .5s;
  font-size: 15px;
}

.advantagesCompany {
  background-color: #f2f2f2;
}

.advantagesCompany-card h3 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.advantagesCompany-wrapper h2 {
  text-align: center;
  max-width: 1067px;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: 'Impact', sans-serif;
  font-weight: 400;
  margin: auto;
  margin-top: 70px;
  margin-bottom: 60px;
}

/* .tileSection-img {
  height: 100%;
} */
.tileSection-imgS {
  height: 100%;
}

.tileSection-imgS img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.advantagesCompany-card-item {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

.advantagesCompany-card-item img {
  width: 24px;
  height: 24px;
  margin-right: 24px;
}

.header-wrapper-item li a:hover {
  transition: .5s;
  color: #008c81;
}

.hero {
  min-height: 100vh;
  height: auto;
  background-color: #242424;
  position: relative;
  background-size: 100%;
  background-size: cover;
  z-index: 1;
}

.hero-img {
  /* position: absolute;
  right: 400px;
  z-index: 5;
  bottom: 57px; */
  position: relative;
  width: 30%;
  height: 700px;

}

.hero-img img {
  width: 100%;

}

.mask {
  position: absolute;
}

.mask-one {
  width: 415px;
  height: 415px;
  left: -23px;
  top: 0px;
}

.mask-two {
  width: 201px;
  height: 201px;
  left: -150px;
  bottom: 0px;
}

.mask-three {
  left: 67px;
  width: 144px;
  height: 144px;
  right: 0;
  bottom: 115px;
}

.mask-foure {
  width: 272px;
  height: 272px;
  bottom: 53px;
  left: 276px;
}

.hero-wrapper {
  /* position: relative; */
  height: 100%;
  display: flex;
  z-index: 10;
  justify-content: space-around;
  /* align-items: center; */
  margin-top: 150px;
}

.hero-wrapper button {
  margin-top: 17px;
  padding-left: 50px;
  padding-right: 50px;
  width: 310px;
  margin-left: 340px;
}

.hero-wrapper-description {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 90px;
}

.hero-news {
  z-index: 1;
  color: #fff;
  margin-top: 350px;
}

.hero-news h3 {
  font-family: "Impact";
  color: #fff;
  font-size: 36px;
  margin-bottom: 40px;
  width: 420px;
}

.hero-news-card {
  margin-bottom: 24px;
}

.hero-news-card h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-news-card p {
  font-size: 16px;
  color: #fff;
}

.hero-news-card a {
  margin-left: auto;
  color: #1fa59b;
  font-weight: 600;
  font-size: 12px;
  width: 100%;
  display: block;
  text-align: right;
  margin-top: 10px;
}

.hero-wrapper-description h1 {
  /* margin-top: 200px; */
  /* margin-left: 220px; */
  font-size: 64px;
  color: #fff;
  font-weight: 900;
  text-align: right;
  font-family: 'Impact', sans-serif;
  font-weight: 400;
  /* line-height: 138px; */
  max-width: 840px;
}

.hero-video {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hater p svg {
  margin-right: 20px;
}

.hero-video video {
  width: 120%;
  height: 120%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.hero-video::after {
  content: '';
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000050;
}

.hero-wrapper {
  z-index: 21;
}

.hero-wrapper-description p {
  margin-top: 60px;
  margin-left: 150px;
  max-width: 500px;
  color: #fff;
  font-size: 25px;
  text-align: right;
  position: relative;
}

.hero-wrapper-description p span {
  color: #fff;
  font-weight: 700;
  font-size: 25px;
}

.hero-wrapper-description p::after {
  content: '';
  position: absolute;
  background-image: url("../img/home/bron.png");
  width: 60px;
  height: 60px;
  top: 11px;
  right: -75px;
}

.manufacturingCompany {
  background-color: #f2f2f2;
}

.manufacturingCompany-wrapper {
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 50px;
}

.manufacturingCompany-wrapper h2 {
  /* text-align: center; */
  /* max-width: 1067px; */
  text-align: left;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: 'Impact', sans-serif;
  font-weight: 400;
}

.manufacturingCompany-wrapper p {
  /* max-width: 1063px; */
  font-size: 16px;
  margin-bottom: 15px;
  text-align: left;
  /* text-align: center; */
}

.manufacturingCompany-wrapper p a {
  color: #29b5ab;
  font-weight: 600;
}

.manufacturingCompany-description {
  margin-top: 80px;
  max-width: 365px;
}

.manufacturingCompany-description p {
  font-size: 22px;
  margin-bottom: 34px;
}

.manufacturingCompany-description p span {
  font-weight: 700;
  font-size: 22px;
}

.manufacturingCompany-buttons {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.manufacturingCompany-buttons button:first-child {
  color: #29b5ab;
  margin-right: 22px;
  font-size: 22px;
  background-color: transparent;
  padding-left: 45px;
  padding-right: 45px;
  border-radius: 10px;
  border: 1px solid #29b5ab;
}

.manufacturingCompany-buttons button:nth-child(2) {
  padding-left: 70px;
  padding-right: 70px;
}

.homeDignity {
  background-color: #f2f2f2;
  padding-bottom: 85px;
}

.homeDignity-card {
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 35px;
}

.homeDignity-card h3 {
  font-family: 'Impact', sans-serif;
  font-weight: 400;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 25px;
  cursor: pointer;
  color: #616161;
}

.homeDignity-card-description {
  max-width: 880px;
  margin-top: 29px;
  margin-left: 50px;
}

.homeDignity-card-description h4 {
  font-family: 'Impact', sans-serif;
  font-weight: 400;
  color: #29b5ab;
  margin-bottom: 10px;
  font-size: 18px;
}

.homeDignity-card-description h2 {
  font-family: 'Impact', sans-serif;
  font-weight: 400;
  margin-bottom: 40px;
  font-size: 36px;
  color: #616161;
}

.homeDignity-card-description p {
  max-width: 610px;
  color: #626262;
  margin-bottom: 42px;
}

.homeDignity-card-description button {
  padding-left: 90px;
  padding-right: 90px;
}

.homeDignity-card-big {
  margin-right: 10px;
  display: flex;
  flex-wrap: wrap;
  /* display: none; */
  margin: 0;
  transition: .5s;
  opacity: 0;
  height: 0;
}

.homeDignity-card-big.active {
  display: flex;
  height: 418px;
  transition: .5s;
  opacity: 1;
  margin-right: 10px;
}

/* .homeDignity-card-big.activeSecond {
  transition: .5s;
  opacity: 1;
  left: -100%;
} */

.homeDignity-card-img {
  width: 388px;
}

.homeDignity-card-img img {
  width: 100%;
  margin-bottom: 35px;
}

.homeProduct {
  padding-top: 50px;
}

.homeProduct-item {
  background-color: #1fa59b;
  border-radius: 10px;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  margin-bottom: 43px;
}

.homeProduct-item::before {
  content: 'Delfin';
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 500px;
  color: rgba(255, 255, 255, 0.07);
  top: 50%;
  left: 90px;
  transform: translate(0, -50%);
}

.homeProduct-item-description {
  padding-left: 131px;
  padding-bottom: 81px;
  padding-top: 90px;
}

.homeProduct-item-description button {
  margin-top: 70px;
  padding-left: 69px;
  padding-right: 69px;
}

.homeProduct-item-description button span {
  margin-left: 5px;
  transition: .5s;
  color: #29b5ab;
}

.homeProduct-item-description p {
  /* font-family: 'Montserrat', sans-serif; */
  color: #fff;
  font-size: 16px;
  max-width: 650px;
  margin-top: 30px;
}

.homeProduct-item-description h3 {
  font-size: 36px;
  color: #fff;
  /* font-family: 'Montserrat', sans-serif !important; */
  font-family: 'Impact', sans-serif;
  /* font-weight: 400; */
}

.homeProduct-logo {
  position: absolute;
  width: 137px;
  height: 45px;
  top: 40px;
  right: 58px;
}

.homeProduct-logo img {
  width: 100%;
}

.homeProduct-img {
  position: absolute;
  right: 222px;
  top: 20px;
  z-index: 1;
  max-width: 400px;
}

.homeProduct-img-second {
  right: 219px;
  top: 50px;
  width: 470px;
}

/* .homeProduct-cards {
  margin-top: 80px;
} */

.homeProduct-card {
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  padding-top: 60px;
  padding-left: 80px;
  padding-bottom: 40px;
  padding-right: 30px;
  position: relative;
  height: 100%;
}

.homeProduct-card-icon {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 30px;
}

.homeProduct-card h3 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 18px;
}

.homeProduct-card p {
  color: #898989;
  font-size: 14px;
}

.homeNews-wrapper {
  margin-top: 185px;
  margin-bottom: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.homeNews-wrapper h2 {
  font-family: 'Impact', sans-serif;
  font-weight: 400;
  font-size: 95px;
  margin-bottom: 30px;
}

.homeNews-wrapper p {
  font-size: 16px;
  margin-top: 27px;
  color: #626262;
  max-width: 745px;
  text-align: center;
}

.homeNews-wrapper button {
  padding-left: 50px;
  padding-right: 50px;
  margin-top: 20px;
}

.homeNews-date {
  color: #29b5ab !important;
}

.homeProduct-item-description button span {
  font-size: 22px;
}

.footer {
  padding-top: 35px;
  padding-bottom: 40px;
  background-color: #1C1C1C;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  padding: 25px;
  transition: .5s;
  z-index: 100;
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #242424;
}

.menu.active {
  transition: .5s;
  right: 0;
}

.menu-wrapper {
  min-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-y: scroll;
  margin-top: 20px;
  background-color: #fff;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 50px;
  padding-bottom: 30px;
}

.menu-wrapper::-webkit-scrollbar {
  width: 0;
}

.anal-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.anal-wrapper p {
  margin-bottom: 0;
  margin-left: 10px;
}

.anal-img {
  width: 110px;
  height: 110px;

}

.anal-img img {
  object-fit: contain;
  /* width: 100%; */
  height: 100%;
}

.menu-wrapper a {
  margin-bottom: 15px;
  color: #29b5ab;
}

.menu-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

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

.menu-item li {
  margin-bottom: 15px;
}

.menu-item li a {
  color: #1C1C1C;
}

.contactHero-title {
  margin-left: 20px;
  max-width: 700px;
}

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

  /* .contactHero-wrapper {
    margin-top: 130px;
  } */
  .hero {
    /* min-height: unset; */
    height: auto;
  }

  .mask-one {
    width: 300px;
    height: 300px;
    top: 25px;
    left: 175px;
  }

  .mask-two {
    width: 200px;
    height: 200px;
    left: 20px;
    bottom: 87px;
  }

  .mask-three {
    width: 150px;
    height: 150px;
    /* right: 153px; */
    bottom: 195px;
    left: 220px;
  }

  .mask-foure {
    width: 230px;
    height: 230px;
    bottom: 195px;
    left: 403px;
  }

  .homeProduct-item::before {
    font-size: 400px;
  }

  .contactHero-title {
    margin-left: 87px !important;
  }

  .hero-img {
    right: 9%;
  }

  .homeDignity-card h3 {
    padding-left: 10px;
    padding-top: 21px;
    padding-bottom: 21px;
  }

  .homeDignity-card-img {
    width: 300px;
  }

  .homeDignity-card-description {
    margin-bottom: 38px;
    margin-left: 10px;
  }

  .homeDignity-card-description h2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 1441px) {
  .hero-news {
    margin-top: 200px;
  }
  .homeProduct-img {
    width: 270px !important;
  }
  .manufacturingCompany-buttons button:first-child {
    font-size: 18px;
  }

  .homeProduct-item-description button span {
    font-size: 16px;
  }

  .homeDignity-card-big {
    flex-wrap: unset;
  }

  .hero {
    height: 718px;
  }

  /* .hero-wrapper-description h1 {
    font-size: 150px;
    line-height: 140px;
    margin-left: 110px;
  } */

  .hero-wrapper-description p {
    font-size: 22px;
  }

  .hero-wrapper-description p span {
    font-size: 22px;
  }

  .header-wrapper-call-description h3 {
    font-size: 12px;
  }

  .header-wrapper-item li a {
    font-size: 12px;
  }

  .homeProduct-item::before {
    font-size: 200px;
  }

  .homeDignity-card h3 {
    padding-left: 15px;
    font-size: 25px;
  }

  .homeDignity-card-img {
    width: 240px;
  }

  .homeDignity-card-description h2 {
    font-size: 25px;
  }

  .homeDignity-card-description p {
    font-size: 16px;
  }

  .homeDignity-card h3 {
    font-size: 24px;
  }

  .homeProduct-logo {
    top: 30px;
    right: 40px;
    width: 90px;
  }

  .homeProduct-img {
    width: 330px;
  }

  .homeProduct-img-second {
    width: 220px;
  }

  .homeProduct-card {
    padding-top: 30px;
    padding-left: 60px;
    padding-bottom: 30px;
    padding-right: 10px;
  }

  .homeProduct-card-icon {
    left: 12px;
  }

  .homeProduct-item-description {
    padding-left: 100px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .homeProduct-item-description h3 {
    font-size: 18px;
  }

  .homeProduct-item-description p {
    font-size: 16px;
    margin-top: 18px;
  }

  .homeProduct-item-description button {
    margin-top: 40px;
  }

  .homeNews-wrapper h2 {
    font-size: 64px;
  }

  .homeNews-wrapper p {
    font-size: 16px;
  }

  .manufacturingCompany-wrapper h2 {
    font-size: 36px;
  }



  .manufacturingCompany-description {
    margin-top: 35px;
  }
}

@media screen and (max-width: 1200px) {
  .menu-wrapper {
    min-width: 500px;
  }

  .footer-wrapper {
    display: flex;
    justify-content: flex-end;
  }

  .footer-wrapper .header-wrapper-item {
    display: none;
  }

  .footer-wrapper .header-wrapper-call-item {
    display: flex;
  }

  .footer-wrapper .header-wrapper-call-item1 {
    display: flex;
  }


  .header-wrapper {
    justify-content: flex-end;
  }

  .header-wrapper-item li a {
    margin-right: 15px;
  }

  .header-wrapper-logo {
    left: 20px;
    transform: none;
  }

  .header-wrapper-call-item {
    display: none;
  }

  .homeDignity-card h3 {
    font-size: 20px;
  }

  .hero-wrapper {
    display: flex;
  }

  /* .hero-wrapper-description h1 {
    margin-left: 20px;
    margin-top: 150px;
    font-size: 140px;
  } */

  .hero-wrapper-description p {
    font-size: 22px;
    margin-left: 25px;
  }

  .hero-wrapper-description p::after {
    width: 40px;
    height: 40px;
    background-size: cover;
  }

  .hero-wrapper-description button {
    margin-left: 215px;
  }

  .hero-img {
    margin-left: 20px;
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 130px;
  }
}

@media screen and (max-width: 992px) {
  .header-wrapper-item {
    display: none;
  }

  .header-triger {
    display: block;
    cursor: pointer;
  }

  .homeDignity-card-description {
    margin-top: 22px;
  }

  .hero {
    height: 612px;
  }

  /* .hero-wrapper-description h1 {
    font-size: 90px;
    margin-left: 5px;
    line-height: 100px;
  } */

  .hero-wrapper-description p {
    margin-top: 30px;
    font-size: 18px;
    max-width: 327px;
    margin-left: 5px;
  }

  .hero-wrapper-description p span {
    font-size: 18px;
  }

  .hero-wrapper-description p::after {
    right: -56px;
  }

  .hero-wrapper-description button {
    margin-left: 130px;
    padding-left: 38px;
    padding-right: 38px;
    width: auto;
  }

  .hero-img {
    width: 340px;
  }

  .homeProduct-car {
    margin-bottom: 35px;
  }

  .homeProduct-cards {
    margin-top: 80px;
  }

  .homeProduct-logo {
    width: 50px;
  }

  .homeProduct-item::before {
    content: none;
  }

  .homeProduct-item-description {
    padding-top: 30px;
    padding-left: 60px;
    padding-bottom: 19px;
  }

  .homeProduct-item-description button {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .homeProduct-item-description h3 {
    font-size: 18px;
  }

  .homeProduct-item-description p {
    max-width: 280px;
    font-size: 12px;
    margin-top: 15px;
  }

  .homeProduct-img {
    width: 227px;
    right: 130px;
  }

  .homeProduct-img-second {
    width: 166px;
    right: 97px;
    top: 25px;
  }

  .homeNews-wrapper {
    margin-top: 60px;
    margin-bottom: 130px;
  }

  .homeNews-wrapper h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .homeNews-wrapper p {
    font-size: 16px;
    max-width: 587px;
  }
}

@media screen and (max-width: 768px) {
  .homeProduct-img {
    top: -17px;
    width: 195px;
    right: 90px;
  }

  .homeProduct-img-second {
    width: 280px;
    right: 40px;
  }

  .footer-wrapper .header-wrapper-call-item:last-child {
    display: none;
  }

  .footer-wrapper .header-wrapper-call-img {
    width: 25px;
    height: 30px;
    margin-top: 9px;
  }

  .footer-wrapper .header-wrapper-call-description a {
    font-size: 8px;
  }
}

@media screen and (max-width: 576px) {
  .hero-news {
    margin-top: 0;
    order: 1;
  }

  .hero-wrapper-description {
    margin-top: 0;
    order: 0;
  }

  .hero-news h3 {
    margin-top: 20px;
    font-size: 22px;
  }

  .advantagesCompany-wrapper h2 {
    font-size: 35px;
  }

  .advantagesCompany-card h3 {
    font-size: 20px;
  }

  .ankSuperHero-img {
    width: 260px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .advantagesCompany-card-item p {
    font-size: 14px;
  }

  .menu-item li {
    text-align: center;
  }

  .menu-wrapper {
    min-width: 320px;
  }

  .homeDignity-card h3 {
    font-size: 12px;

  }

  .homeDignity-card {
    margin-bottom: 11px;
  }

  .homeDignity-card-big {
    margin-right: 0;
  }

  .homeDignity-card-description {
    max-width: 200px;
    margin-bottom: 15px;
  }

  .homeDignity-card-description h4 {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .homeDignity-card-description h2 {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .homeDignity-card-description p {
    font-size: 8px;
    margin-bottom: 17px;
  }

  .homeDignity-card-description button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-wrapper {
    margin-top: 13px;
  }

  .header-wrapper-logo {
    width: 65px;
  }

  section {
    overflow: hidden;
  }

  .hero {
    height: auto;
  }

  .hero-img {
    width: 200px;
    position: absolute;
    margin: 0;
    top: 220px;
  }

  .hero-wrapper {
    justify-content: center;
  }

  .hero-wrapper-description {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .hero-wrapper-description h1 {
    margin-top: 60px;
    margin-left: 0;
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 260px;
  }

  .hero-wrapper-description p {
    margin-top: 0;
    margin-left: 0;
    font-size: 12px;
    max-width: 216px;
  }

  .hero-wrapper-description p span {
    font-size: 12px;
  }

  .hero-wrapper-description p::after {
    right: -30px;
    top: 4px;
    width: 18px;
    height: 20px;
    background-size: cover;
  }

  .hero-wrapper-description button {
    margin: 0;
    margin-top: 25px;
    margin-bottom: 37px;
  }

  .homeProduct-item-description {
    padding: 20px;
  }

  .homeProduct-item-description p {
    margin-top: 9px;
    max-width: 121px;
    font-size: 8px;
  }

  .homeProduct-item-description button span {
    display: none;
  }

  .homeProduct-img {
    width: 140px;
    right: 8px;
    top: 50px;
  }

  .homeProduct-img-second {
    width: 128px;
    right: 21px;
  }

  .homeProduct-cards {
    margin-top: 0;
  }

  .homeProduct-car {
    margin-bottom: 20px;
  }

  .homeProduct-card h3 {
    font-size: 12px;
    margin-bottom: 7px;
  }

  .homeProduct-card p {
    font-size: 12px;
  }

  .homeProduct-card-icon {
    width: 23px;
    height: 23px;
    left: 20px;
  }

  .homeNews-wrapper {
    margin-top: 30px;
    margin-bottom: 115px;
  }

  .homeNews-wrapper h2 {
    font-size: 18px;
    margin-bottom: 0;
  }

  .homeNews-wrapper p {
    font-size: 12px;
    margin-top: 10px;
  }

  .manufacturingCompany-description p {
    margin-bottom: 25px;
  }

  .manufacturingCompany-wrapper h2 {
    font-size: 18px;
  }

  .manufacturingCompany-wrapper p {
    font-size: 12px;
  }

  .manufacturingCompany-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .manufacturingCompany-buttons button:first-child {
    margin: 0;
    margin-bottom: 15px;
  }

  .manufacturingCompany-buttons button:nth-child(2) {
    padding-left: 40px;
    padding-right: 40px;
  }

  .manufacturingCompany-wrapper {
    padding-top: 60px;
    padding-bottom: 50px;
  }

  .manufacturingCompany-wrapper p {
    font-size: 16px;
  }

  .manufacturingCompany-wrapper p span {
    font-size: 16px;
  }

  .manufacturingCompany-buttons button:first-child {
    font-size: 16px;
  }

  .manufacturingCompany-wrapper p {
    font-size: 12px;
  }

  .manufacturingCompany-wrapper p a {
    font-size: 12px;
  }
}

.aboutCompany-wrapper h2 {
  font-family: 'Roboto';
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 0;
}

.aboutCompany-wrapper p {
  /* max-width: 833px; */
}

.aboutCompany-wrapper p a {
  color: #29b5ab;
}

.aboutHero {
  /* background-image: url(../img/about/bg.jpg) !important; */
  /* background-position: center; */
  background-color: #29b5ac;
  ;
}

.aboutHero-wrapper {
  margin-left: 190px;
}

.aboutHero::after {
  content: none;
}

.aboutHero h2 {
  padding-top: 215px;
  color: #fff;
  font-family: 'Impact';
  font-weight: 400;
  font-size: 64px;
  line-height: 95px;
  max-width: 1123px;
}

.aboutHero h2 span {
  display: block;
  color: #fff;
  font-size: 64px;
  font-family: 'Impact';
}

.aboutHero-text {
  margin-top: 50px;
  margin-right: 60px;
  display: flex;
  justify-content: space-between;
}

.aboutHero-text p {
  font-size: 16px;
  color: #fff;
}

.aboutHero-text p:first-child {
  max-width: 633px;
}

.aboutHero-text p:last-child {
  max-width: 602px;
  font-size: 16px;
  /* font-weight: 600; */
  /* margin-top: 100px; */
}

.abutProd {
  background-color: #F5F5F5;
}

.abutProd-wrapper {
  padding-top: 54px;
  padding-bottom: 38px;
}

.abutProd-item {

  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  min-height: 310px;
  margin-bottom: 18px;
  justify-content: space-between;
}

.abutProd-item-img {
  width: 450px;
}

.abutProd-item-description {
  
  max-width: 943px;
  margin-right: 120px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;

}

.abutProd-item-description h3 {
  order: 1;
  font-family: 'Impact';
  color: #29b5ab;
  font-size: 48px;
  margin-bottom: 30px;
  text-align: right;
}

.abutProd-item-description p {
  order: 2;
  font-size: 18px;
  text-align: right;
  font-weight: 500;
}

.abutCompany {
  background-color: #fff;
}

@media screen and (max-width: 1441px) {
  .aboutHero-wrapper {
    margin-left: 15px;
  }

  .aboutHero h2 {
    padding-top: 200px;
    font-size: 45px;
    line-height: 55px;
  }

  .aboutHero h2 span {
    color: #fff;
    font-size: 45px;
    line-height: 55px;
  }

  .aboutHero-text p:first-child {
    font-size: 16px;
    max-width: 595px;
  }

  .aboutHero-text p:last-child {
    font-size: 16px;
    max-width: 490px;
  }

  .abutProd-item {
    min-height: 203px;
  }

  .abutProd-item-img {
    width: 320px;
  }

  .abutProd-item-description {
    margin-right: 30px;
    max-width: 700px;
    display: flex;
  }

  .abutProd-item-description h3 {
    order: 2;
    margin-left: 40px;
  }

  .abutProd-item-description p {
    font-size: 14px;
    order: 1;
  }
}

@media screen and (max-width: 992px) {
  .aboutCompany-wrapper h2 {
    font-size: 36px;
  }

  .abutProd-item {
    min-height: 203px;
  }

  .abutProd-item-img {
    width: 320px;
  }

  .abutProd-item-description {
    margin-right: 30px;
    max-width: 480px;
    display: flex;
  }

  .abutProd-item-description h3 {
    order: 2;
    margin-left: 40px;
  }

  .abutProd-item-description p {
    font-size: 14px;
    order: 1;
  }

  .aboutHero {
    height: auto;
  }

  .aboutHero h2 {
    padding-top: 120px;
    font-size: 36px;
  }

  .aboutHero h2 span {
    font-size: 36px;
  }

  .aboutHero-text p:first-child {
    margin-bottom: 120px;
  }

  .aboutHero-text p:last-child {
    margin-top: 250px;
    font-size: 16px;
    max-width: 249px;
  }
}

@media screen and (max-width: 768px) {
  .abutProd-item-description {
    max-width: 60%;
    margin-top: 4px;
    margin-right: 10px;
    flex-direction: column;
  }

  .abutProd-item-description h3 {
    order: 1;
    margin-bottom: 10px;
    font-size: 48px;
  }

  .abutProd-item-description p {
    order: 2;
    font-size: 12px;
  }
}

.title {
  font-family: "Impact";
}

.ankSuperHero {
  background-image: none;
  /* background-color: #5e5e5e; */
  background-image: url("../img/new/shutterstock_1571126896.jpg");
}

.ankSuperHero-wrapper {
  z-index: 21;
  display: flex;
  justify-content: center;
}

.ankSuperHero-img {
  margin-top: 180px;
  z-index: 2;
  margin-left: 100px;
}

.ankSuperHero-description {
  margin-top: 220px;
  max-width: 813px;
  z-index: 2;
}

.ankSuperHero-description h6 {
  color: #fff;
  margin-bottom: 30px;
}

.ankSuperHero-description h2 {
  color: #fff;
  font-size: 64px;
  font-family: 'Impact';
  position: relative;
  /* font-size: 64px;
  line-height: 72px; */
  margin-bottom: 32px;

}

.ankSuperHero-description p {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  margin-left: 110px;
  color: #fff;
}

.ankSuperHero-description p::before {
  content: '';
  position: absolute;
  background-image: url("../img/ankSuper/info.png");
  height: 55px;
  width: 55px;
  background-size: 100%;
  top: 10px;
  left: -100px;
}

.ankSuperTab {
  background-color: #f2f2f2;
  padding-top: 42px;
  padding-bottom: 40px;
}


.ankSuperTab-item {
  overflow: hidden;
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  transition: .5s;
  height: 0;
  opacity: 0;
}

.ankSuperTab-item-description {
  max-width: 864px;
  margin-left: 80px;
  margin-top: 60px;
  margin-bottom: 40px;
  margin-right: 20px;
}

.ankSuperTab-item-description h4 {
  color: #29b5ab;
  font-family: 'Impact';
  font-size: 18px;
  margin-bottom: 15px;
}

.min-height50 {
  min-height: 70px;
}

.ankSuperTab-item-description h3 {
  font-family: 'Impact';
  font-size: 36px;
  margin-bottom: 10px;
  padding-left: 0 !important;
  padding-top: 10px;
  padding-bottom: 1px;
}

.ankSuperTab-item-description p {
  font-size: 16px;
}

.ankSuperTab-item-description p a {
  color: #29b5ab;
  padding-top: 10px;
}

.ankSuperTab-item.active {
  height: auto;
  transition: .5s;
  opacity: 1;
}

.ankSuperTab-triger {
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.ankSuperTab-triger h3 {
  font-family: 'Impact';
  font-size: 36px;
  padding-top: 33px;
  padding-left: 50px;
  padding-bottom: 33px;
}

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

.ankSuperUse {
  background-color: #f2f2f2;
  padding-bottom: 100px;
}

.ankSuperUse-title {
  font-family: 'Impact';
  margin: auto;
  font-size: 36px;
  margin-bottom: 50px;
  max-width: 1230px;
  padding-top: 80px;
  text-align: center;
}

.tileSection-img {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-height: 800px;
}

.tileSection-description {
  height: 100%;
  margin-left: 30px;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tileSection-description h3 {
  font-family: 'Impact';
  font-weight: 400;
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 20px;
}

.tileSection-description p {
  margin-bottom: 15px;
  color: #626262;
  font-size: 16px;
}

.ankSuperTab-item-img {
  /* position: absolute; */
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  margin-right: 20px;
}


.tileSection-description a {
  color: #29b5ab;
  /* margin-left: 100px; */
  margin-bottom: 30px;
}

/* .tileSection-description-right h3 {
  text-align: right;
}

.tileSection-description-right p {
  text-align: right;
} */
.fig-left {
  padding-left: 90px;
}

.fig-right {
  padding-right: 90px;
}

.tileSection-description-right .manufacturingCompany-buttons {
  justify-content: flex-end;
  margin-top: 20px;
}

.tileSection-wrapper .row {
  --bs-gutter-x: 0rem;
}

.ankSuperTab-item-description h3 {
  padding-left: 0 !important;
}

.title-card-ank {
  padding-left: 0;
}

@media screen and (max-width: 1441px) {
  .tileSection-description h3 {
    font-size: 36px;
    line-height: 46px;
  }

  .tileSection-description p {
    font-size: 14px;
  }

  .tileSection-description a {
    font-size: 14px;
  }

  .ankSuperHero-img {
    margin-top: 100px;
  }

  .ankSuperHero-description {
    margin-top: 160px;
    max-width: 600px;
    margin-left: 30px;
  }

  /* .ankSuperHero-description h2 {
    font-size: 150px;
  } */

  .ankSuperHero-description p {
    margin-left: 160px;
  }

  .ankSuperTab-item-description {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 1200px) {
  .ankSuperUse-title {
    font-size: 36px;
    padding-top: 80px;
  }

  .ankSuperTab-item-img svg {
    width: 300px;
    height: 300px;
  }
}

@media screen and (max-width: 992px) {
  .tileSection-img img {
    width: 100%;
    max-height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .tileSection-description {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .ankSuperHero-description {
    margin-top: 140px;
    margin-left: unset;
  }

  /* .ankSuperHero-description h2 {
    font-size: 100px;
    line-height: 105px;
  } */

  .ankSuperHero-description p {
    font-size: 16px;
    margin-left: 80px;
  }

  .ankSuperHero-description p::before {
    left: -75px;
  }

  .ankSuperTab-triger h3 {
    font-size: 16px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
  }

  .ankSuperTab-triger h3 {
    height: 109px;
    transition: .5s;
  }

  .ankSuperTab-triger h3.hide {
    /* display: none; */
    height: 0px;
    transition: .5s;
    padding: 0;
  }

  .ankSuperTab-item-description {
    margin-top: 18px;
    margin-bottom: 50px;
    margin-left: 50px;
    max-width: 500px;
  }

  .ankSuperTab-item-description h4 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .ankSuperTab-item-description h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .ankSuperHero-img {
    margin-top: 150px;
  }

  .ankSuperHero-description {
    max-width: 394px;
    margin-top: 100px;
  }

  .ankSuperHero-description p::before {
    top: 60px;
  }
}

@media screen and (max-width: 576px) {
  .name-company {
    font-size: 10px;
  }

  .ankSuperTab-item-img svg {
    width: 100px;
    height: 100px;
    padding-bottom: 20px;
  }

  .ankSuperHero {
    height: 680px;
    padding-bottom: 50px;
  }

  .ankSuperHero-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .ankSuperHero-img {
    position: absolute;
    margin-right: 50px;
    margin-left: 50px;
  }

  .ankSuperHero-description {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 295px;
    margin-top: 50px;
  }

  .ankSuperHero-description h2 {
    /* font-size: 60px;
    line-height: 65px; */
    margin-bottom: 310px;
  }

  .ankSuperHero-description p {
    margin-left: 0;
    font-size: 10px;
  }

  .ankSuperHero-description p::before {
    height: 25px;
    width: 25px;
    left: -35px;
    top: 30px;
  }

  .ankSuperUse-title {
    font-size: 18px;
    padding-top: 50px;
    margin-bottom: 18px;
  }

  .ankSuperTab-item-img {
    width: 140px;
    position: absolute;
  }

  .ankSuperTab-item-description {
    margin-left: 10px;
    margin-bottom: 20px;
    margin-right: 10px;
  }

  .ankSuperTab-item-description h4 {
    text-align: right;
    margin-top: 35px;
  }



  .ankSuperTab-item-description p {
    font-size: 9px;
  }

  .ankSuperTab-triger {
    margin-top: 10px;
  }

  .ankSuperUse {
    padding-bottom: 50px;
  }

  .tileSection-img {
    max-height: 300px;
  }

  .tileSection-description {
    margin-left: 15px;
    margin-right: 15px;
  }

  .tileSection-description h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .tileSection-description p {
    font-size: 10px;
  }

  .tileSection-description a {
    font-size: 10px;
    margin-left: 0;
    margin-bottom: 18px;
  }

  .tileSection-description-right h3 {
    text-align: left;
  }

  .tileSection-description-right p {
    text-align: left;
  }

  .tileSection-description-right a {
    text-align: left;
  }
}

.anolitSuperHero {
  background-color: #29b5ab;
  background-image: url("../img/new/shutterstock_1918737101.jpg");
}

.anolitSuperHero::after {
  content: none;
}

.anolitSuperHero-wapper .ankSuperHero-description h2 {
  font-size: 64px;
}

.anolitSuperHero-wapper .ankSuperHero-description p::before {
  top: -12px;
}

.anolitSuperUse {
  background-color: #fff;
}

.anolitSuperCpmpany {
  margin-top: 30px;
}

.anolitSuperCpmpany .container-fluid .manufacturingCompany-wrapper {
  padding-bottom: 50px;
}

.anolitSuperCpmpany .container-fluid .manufacturingCompany-wrapper h2 {
  max-width: 1360px;
}

.anolitSuperCpmpany .container-fluid .manufacturingCompany-wrapper p {
  margin-bottom: 5px;
}

.anolitSuperCpmpany .container-fluid .manufacturingCompany-wrapper .manufacturingCompany-buttons {
  margin-top: 50px;
  margin-bottom: 50px;
}

.anolitSuperCpmpany .container-fluid .homeProduct-item {
  position: relative;
}

.anolitSuperCpmpany .container-fluid .homeProduct-item .homeProduct-item-description h4 {
  margin-top: 30px;
  color: #fff;
  font-weight: 600;
}

.anolitSuperCpmpany .container-fluid .homeProduct-item .homeProduct-item-description p {
  margin-top: 0;
}

.anolitSuperCpmpany .container-fluid .homeProduct-item .homeProduct-item .homeProduct-img-second {
  right: -20px;
  top: auto;
  bottom: 0;
}

@media screen and (max-width: 1800px) {
  /* .anolitSuperHero-wapper .ankSuperHero-description h2 {
    font-size: 64px;
    line-height: 74px;
  } */

  .anolitSuperHero-wapper .ankSuperHero-description p {
    margin-left: 100px;
  }

  .hero-wrapper-description h1 {
    margin-left: 0;
  }
}

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

  /* .hero-wrapper-description h1 {
    max-width: 850px;
    font-size: 95px;
    line-height: 100px;
  } */
  .hero-img {
    right: 13%;
  }

  .hero-wrapper {
    margin-top: 70px;
  }
}

@media screen and (max-width: 1441px) {
  .hero-img {
    right: 17%;
  }

  .hero-wrapper-description h1 {
    max-width: 735px;
  }

  .anolitSuperHero-wapper .ankSuperHero-img {
    width: 600px;
  }

  .hero-wrapper-description p {
    margin-left: 40px;
  }

  .hero-wrapper button {
    margin-left: 225px;
  }

  /* .anolitSuperHero-wapper .ankSuperHero-description h2 {
    font-size: 64px;
    line-height: 74px;
  } */

  .anolitSuperHero-wapper .ankSuperHero-description p {
    margin-left: 100px;
  }
}

@media screen and (max-width: 1200px) {
  .anolitSuperHero-wapper .ankSuperHero-img {
    width: 400px;
  }

  /* .anolitSuperHero-wapper .ankSuperHero-description h2 {
    font-size: 64px;
    line-height: 74px;
  } */

  .anolitSuperHero-wapper .ankSuperHero-description p {
    margin-left: 100px;
  }

  .hero-wrapper-description h1 {
    margin-top: 0;
  }

  .hero-img {
    margin-top: 0;
    height: 500px;
    right: 20%;
  }

  .mask-one {
    width: 150px;
    height: 150px;
    left: 280px;
  }

  .mask-two {
    width: 100px;
    height: 100px;
    left: 187px;
    bottom: 169px;
  }

  .mask-three {
    width: 70px;
    height: 70px;
    bottom: 228px;
    left: 306px;
  }

  .mask-foure {
    width: 120px;
    height: 120px;
    bottom: 219px;
  }
}

@media screen and (max-width: 992px) {
  .hero-wrapper-description h1 {
    max-width: 459px;
    font-size: 57px;
    line-height: 63px;
  }

  .anolitSuperHero-wapper {
    position: relative;
  }

  .anolitSuperHero-wapper .ankSuperHero-img {
    position: absolute;
    width: 400px;
    left: -50px;
  }

  .anolitSuperHero-wapper .ankSuperHero-description {
    margin-left: 300px;
  }

  /* .anolitSuperHero-wapper .ankSuperHero-description h2 {
    font-size: 100px;
    line-height: 100px;
  } */

  .anolitSuperHero-wapper .ankSuperHero-description p {
    margin-left: 0;
  }

  .anolitSuperHero-wapper .ankSuperHero-description p::before {
    height: 35px;
    width: 35px;
    top: -6px;
    left: -50px;
  }
}

.ankSuperHero-img {
  width: 500px;
}

@media screen and (max-width: 850px) {
  .hero-wrapper {
    flex-direction: column;
  }

  .hero-img {
    right: 33%;
  }
}

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

  .hero-wrapper-description h1 {
    margin-bottom: 28px;
    max-width: 300px;
    font-size: 27px;
    line-height: 35px;
  }

  .hero-wrapper button {
    margin-left: 66px;
  }

  .hero-img {
    right: 91%;
    margin-top: 50px;
  }

  .anolitSuperHero-wapper {
    position: relative;
  }

  .anolitSuperHero-wapper .ankSuperHero-img {
    position: absolute;
    width: 300px;
    left: 50%;
    /* top: 210px; */
    transform: translate(-50%);
  }

  .anolitSuperHero-wapper .ankSuperHero-description {
    max-width: 300px;
    margin-left: 0px;
  }

  /* 
  .anolitSuperHero-wapper .ankSuperHero-description h2 {
    font-size: 60px;
    line-height: 60px;
  } */

  .anolitSuperHero-wapper .ankSuperHero-description p {
    margin-left: 0;
    margin: auto;
    margin-bottom: 30px;
  }

  .anolitSuperHero-wapper .ankSuperHero-description p::before {
    height: 20px;
    width: 20px;
    top: -3px;
    left: -30px;
  }

  .anolitSuperCpmpany-img {
    position: absolute;
    top: 120px;
    right: -10px;
  }

  .anolitSuperCpmpany .container-fluid .homeProduct-item .homeProduct-item-description h4 {
    font-size: 8px;
  }

  .anolitSuperHero-wapper .ankSuperHero-img {
    width: 225px;
  }
}

.ankSuperHero-img {
  margin-right: 60px;
}

.chickenProdHero {
  background-image: url("../img/chickenProd/bg.jpg");
}

.chickenProdHero::after {
  content: none;
}

.chickenProdHero-wrapper {
  display: flex;
}

.chickenProdHero-wrapper .ankSuperHero-description h2 {
  font-size: 130px;
  line-height: 130px;
  margin-bottom: 100px;
}

.chickenProdHero-wrapper .chickenProdHero-left p {
  color: #29b5ab;
  position: relative;
  margin-left: 100px;
  font-weight: 600;
  font-size: 16px;
  max-width: 494px;
}

.chickenProdHero-wrapper .chickenProdHero-left p::before {
  content: '';
  position: absolute;
  height: 55px;
  width: 55px;
  background-image: url("../img/ankSuper/info.png");
  background-size: 100%;
  left: -100px;
}

.chickenProdHero-wrapper .chickenProdHero-right {
  max-width: 900px;
  margin-left: 160px;
}

.chickenProdHero-wrapper .chickenProdHero-right h4 {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

.chickenProdHero-wrapper .chickenProdHero-right p {
  font-size: 16px;
  color: #fff;
  font-weight: 100;
}

.chickenProdHero-description {
  display: flex;
}

/* .chickenProdHero-title {
  font-size: 120px !important;
  line-height: 125px !important;
} */

.chickenProdHero-left p {
  position: relative;
  margin-left: 100px;
  color: #43e2d7;
  font-weight: 600;
  font-size: 16px;
  max-width: 564px;
  margin-top: 240px;
}

.chickenProdHero-left p::before {
  content: '';
  position: absolute;
  height: 55px;
  width: 55px;
  background-image: url("../img/ankSuper/info.png");
  background-size: 100%;
  left: -100px;
  top: 5px;
}

.chickenProdHero-right h4 {
  color: #fff;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 16px;
}

.chickenProdHero-right p {
  font-size: 16px;
  font-weight: 100;
  color: #fff;
}

.chickenProdP {
  padding-bottom: 90px;
  padding-top: 50px;
}

.chickenProdP .container-fluid .homeProduct-cards {
  margin-top: 60px;
}

.chickenProdP-img {
  margin: auto;
  max-width: 506px;
  position: relative;
}

.chickenProdP-img-plus {
  position: absolute;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  background-color: #29b5ab;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.chickenProdP-img-plus::before {
  content: '';
  position: absolute;
  width: 12.5px;
  height: 2px;
  background-color: #fff;
}

.chickenProdP-img-plus::after {
  content: '';
  position: absolute;
  width: 12.5px;
  height: 2px;
  background-color: #fff;
  transform: rotate(90deg);
}

.chickenProdP-img-plus-one {
  left: 0;
  bottom: 85px;
}

.chickenProdP-img-plus-one-text {
  font-size: 10px;
  padding: 5px;
  border-radius: 5px;
  position: absolute;
  background-color: #29b5ab;
  color: #fff;
  left: -24px;
  bottom: 132px;
  opacity: 0;
  transition: .3s;
}

.chickenProdP-img-plus-one-text.active {
  transition: .3s;
  opacity: 1;
}

.chickenProdP-img-plus-two {
  right: 57px;
  bottom: 415px;
}

.chickenProdP-img-plus-two-text {
  font-size: 10px;
  padding: 5px;
  border-radius: 5px;
  position: absolute;
  background-color: #29b5ab;
  color: #fff;
  right: 30px;
  bottom: 461px;
  opacity: 0;
  transition: .3s;
}

.chickenProdP-img-plus-two-text.active {
  transition: .3s;
  opacity: 1;
}

.gov-title {
  margin-bottom: 35px !important;
}

.border {
  border: none !important;
  border-right: 2px solid #000 !important;
}

.chickenProdP-description {
  height: 100%;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  margin: auto;
  /* margin-left: 15px; */
  max-width: 403px;
}

.chickenProdP-description svg {
  margin-right: 10px;
}

.chickenProdP-description h3 {
  font-family: 'Impact';
  font-family: 'Impact';
  /* max-width: 480px; */
  margin-bottom: 40px;
}

.chickenProdP-description p {
  font-size: 16px;
  max-width: 591px;
  line-height: 24px;
  font-weight: 400;
  color: #616161;
}

p {
  color: #616161;
  ;
}

.addP {
  color: #29b5ab;
  text-decoration: none;
  display: block;
}

.title-block-h2 {
  font-size: 36px;
  font-family: 'Impact';
}

@media screen and (max-width: 1441px) {
  /* .chickenProdHero-title {
    font-size: 90px !important;
    line-height: 90px !important;
  } */

  .chickenProdHero-left p {
    font-size: 16px;
    max-width: 475px;
  }
}

@media screen and (max-width: 1200px) {
  .ankSuperHero-description {
    margin-top: 100px;
  }

  .ankSuperHero-description h2 {
    font-size: 80px !important;
    line-height: 85px !important;
  }
}

@media screen and (max-width: 992px) {
  .chickenProdHero {
    height: auto;
  }

  .chickenProdHero-left {
    order: 2;
    margin-top: 30px;
    margin-bottom: 100px;
  }

  .chickenProdHero-left p {
    margin-left: 60px;
  }

  .chickenProdHero-left p::before {
    height: 40px;
    width: 40px;
    left: -60px;
  }

  .chickenProdHero-description {
    max-width: 100%;
  }

  /* .chickenProdHero-title {
    font-size: 64px !important;
  } */

  .chickenProdP-description h3 {
    font-size: 18px;
  }

  .chickenProdP-description p {
    font-size: 12px;
  }

  .chickenProdP-img {
    max-width: 300px;
  }

  .chickenProdP-img-plus-one {
    left: -6px;
    bottom: 40px;
  }

  .chickenProdP-img-plus-one-text {
    left: -34px;
    bottom: 81px;
  }

  .chickenProdP-img-plus-two {
    right: 23px;
    bottom: 235px;
  }

  .chickenProdP-img-plus-two-text {
    right: -5px;
    bottom: 276px;
  }
}



.solutionsHero {
  /* background-image: url("../img/solutions/bg.jpg"); */
  background-position: center center;
}

.solutionsHero-wrapper {
  margin-left: 188px;
  padding-top: 300px;
}

.solutionsHero-wrapper h2 {
  color: #fff;
  font-family: 'Impact';
  font-size: 64px;
  line-height: 68px;
  margin-bottom: 32px;
  max-width: 1333px;
  margin-bottom: 40px;
}

.solutionsHero-wrapper p {
  position: relative;
  margin-left: 100px;
  color: #29b5ab;
  font-weight: 600;
  font-size: 16px;
  max-width: 794px;
}

.solutionsHero-wrapper p::before {
  content: '';
  position: absolute;
  height: 55px;
  width: 55px;
  background-image: url(../img/ankSuper/info.png);
  background-size: 100%;
  left: -100px;
  top: 5px;
}

.solutionsBody-wrapper {
  padding-bottom: 50px;
  padding-top: 70px;
  margin: auto;
}

.solutionsBody-wrapper .homeProduct-car {
  margin-bottom: 20px;
}

.solutionsBody-wrapper .homeProduct-car .homeProduct-card {
  padding-top: 50px;
  padding-bottom: 30px;
}

@media screen and (max-width: 1441px) {
  .solutionsHero-wrapper {
    padding-top: 200px;
    margin-left: 15px;
  }

  .solutionsHero-wrapper h2 {
    font-size: 64px;
    line-height: 75px;
  }
}

@media screen and (max-width: 992px) {
  .solutionsHero-wrapper {
    padding-top: 200px;
    margin-left: 15px;
  }

  .solutionsHero-wrapper h2 {
    font-size: 48px;
    line-height: 56px;
  }

  .solutionsHero-wrapper p {
    font-size: 16px;
    line-height: 24px;
    margin-left: 60px;
    margin-bottom: 100px;
  }

  .solutionsHero-wrapper p::before {
    height: 35px;
    width: 35px;
    left: -60px;
  }
}

@media screen and (max-width: 576px) {
  .title-block-h2 {
    font-size: 18px;
  }

  p {
    font-size: 12px;
  }

  .solutionsHero-wrapper {
    padding-top: 200px;
    margin-left: 15px;
  }

  .solutionsHero-wrapper h2 {
    font-size: 22px;
    line-height: 35px;
    margin-bottom: 63px;
  }

  .solutionsHero-wrapper p {
    font-size: 12px;
    line-height: 18px;
    margin-left: 0;
    margin-bottom: 100px;
  }

  .solutionsHero-wrapper p::before {
    height: 23px;
    width: 23px;
    left: 0px;
    top: -30px;
  }

  .solutionsBody-wrapper .homeProduct-car {
    padding: 0;
  }
}

.faqHero {
  background-image: url("../img/faq/bg.jpg");
  background-position: center center;
  background-size: cover;
  height: 702px !important;
  min-height: 702px;
}

.faqHero-description {
  max-width: 1333px;
  display: flex;
  margin-top: 300px;
}

/* .faqHero-description h2 {
  font-size: 140px !important;
  font-family: 'Impact';
} */

.faqHero-description p {
  margin-top: 130px;
  margin-left: 200px !important;
}

.text-left p {
  text-align: left !important;
}

.text-left h3 {
  text-align: left !important;
}

.faqCompany-wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}

.faqCompany-description {
  max-width: 400px;
  margin-top: 0;
}

.faqBody {
  background-color: #f2f2f2;
}

.faqBody-wrapper {
  padding-top: 34px;
}

.faqBody-wrapper h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 36px;
  font-family: 'Impact';
  margin-top: 30px;
  margin-bottom: 60px;
}

.faqBody-card {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
  padding-top: 53px;
  padding-left: 62px;
  padding-bottom: 53px;
  padding-right: 53px;
  cursor: pointer;
}

.faqBody-card h3 {
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  /* margin-bottom: 20px; */
}

.faqBody-card p {
  color: #000000;
  /* font-family: 'Montserrat'; */
  font-size: 16px;
  margin-top: 0;
  height: 0;
  opacity: 0;
  transition: .5s;
  display: flex;
  /* justify-content: center; */
  flex-direction: column;
  align-items: center;
}

.faqBody-card p img {
  max-width: 50%;
  margin: auto;
  object-fit: cover;
  margin-top: 20px;
  margin-bottom: 20px;
}

.faqBody-card p.active {
  opacity: 1;
  margin-top: 60px;
  transition: .5s;
  height: auto;
}

@media screen and (max-width: 1200px) {
  .faqBody-card {
    padding-top: 39px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 39px;
  }

  .faqBody-card h3 {
    font-size: 24px;
  }

  .faqBody-card p {
    font-size: 16px;
  }
}

@media screen and (max-width: 576px) {
  .faqBody-card {
    padding-top: 20px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
  }

  .faqBody-card h3 {
    font-size: 16px;
  }

  .faqBody-card p {
    font-size: 12px;
  }

  .faqCompany-wrapper {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .faqHero {
    min-height: 480px;
  }
}

@media screen and (max-width: 1441px) {
  .faqHero-description {
    margin-top: 250px;
  }

  .faqHero-description p {
    margin-left: 150px !important;
  }
}

@media screen and (max-width: 992px) {
  .faqHero .container-fluid .ankSuperHero-wrapper {
    justify-content: flex-start;
  }

  .faqHero-description {
    margin-left: 50px !important;
    margin-top: 200px !important;
    flex-direction: column;
    max-width: 100%;
  }

  .faqHero-description p {
    margin-left: 60px !important;
    max-width: 500px;
  }
}

@media screen and (max-width: 576px) {
  .faqBody-card p img {
    max-width: 100%;
    margin: auto;
    object-fit: cover;
    margin-top: 20px;
  }

  .homeDignity-card-big.active {
    height: 220px;
  }

  .faqHero-description {
    margin-left: 0 !important;
    margin-top: 130px !important;
  }

  /* .faqHero-description h2 {
    font-size: 180px !important;
    margin-bottom: 0;
  } */

  .faqHero-description p {
    font-size: 12px;
    line-height: 18px;
    margin-top: 60px;
  }

  .faqHero .container-fluid .ankSuperHero-wrapper {
    justify-content: center;
  }
}

.heroHome {
  background-image: url("../img/new/shutterstock_1711779910.jpg");
  background-position: center center;
}

.documentationHero {
  background-image: url("../img/new/shutterstock_315752021.jpg");
  background-position: center center;
  height: 702px;
  min-height: 0px;
}

.documentationHero-description {
  margin: 0;
  padding-top: 250px;
  padding-left: 200px;
  max-width: 100%;
}

/* .documentationHero-description h2 {
  font-size: 144px;
  line-height: 108px;
} */

.documentationHero-description p {
  margin-left: 104px;
  max-width: 800px;
  margin-top: 50px;
}

.documentationHero-description .manufacturingCompany-buttons {
  margin-top: 60px;
  margin-left: 462px;
  justify-content: flex-start;
}

.documentationBody-item {
  /* display: flex; */
  margin-bottom: 20px;
  /* align-items: center; */
}

.documentationBody-item p {
  font-size: 24px;
  margin-bottom: 0;
}

.documentationBody-wrapper a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.documentationBody-item a {
  margin: 0;
  background-color: #1fa59b;
  border-radius: 10px;
  color: #fff !important;
  margin-right: 30px;
  padding-left: 8px;
  padding-top: 4px;
  margin-top: 5px;
  padding-bottom: 4px;
  padding-right: 8px;
  font-size: 18px !important;
}

.documentationBody-wrapper {
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.documentationBody-wrapper a {
  /* text-align: center; */
  color: #1b1b1b;
  margin-top: 10px;
  margin-bottom: 10px;
  /* font-weight: bold; */
  font-size: 22px;
  transition: .5s;
}

.documentationBody-wrapper a:hover {
  transition: .5s;
  color: #1fa59b;
}

.box-img {
  height: 100%;
}

.box-img img {
  object-fit: cover;
  height: 100%;
}

.fslightbox-source {
  object-fit: cover;
  width: 500px !important;
  height: 700px !important;
}

.documentationBody-card {
  max-height: 580px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  cursor: pointer;
}

.documentationBody-card::after {
  content: '';
  position: absolute;
  background-color: #00000051;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.goxer {
  margin-left: 20px;
}

.ankSuperTab-item-description h3 {
  padding-left: 0;
  padding-top: 5px;
  padding-bottom: 10px;
}

.documentationBody-card-plus {
  transition: .5s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../img/faq/plus.png");
  height: 50px;
  width: 50px;
}

/* .documentationBody-card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} */
.documentationBody-card-description {
  position: absolute;
  width: 100%;
  /* height: 50px; */
  bottom: 0;
  left: 0;
  z-index: 10;
}

.gray {
  color: #bfbfbf !important;
}

.chi-gov {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.chi-gov p {
  max-width: 250px;
  display: flex;
  align-items: center;
}

.gov-img {
  display: flex;
  justify-content: center;
}

.gov-img img {
  width: 70%;
  object-fit: cover;
}

.chi-gov-img {
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

.chi-gov-img-two {
  width: 80px;
  margin-left: 10px;
  margin-right: 30px;
}

.chi-gov-img img {
  object-fit: cover;
}

.chi-gov svg {
  margin-right: 30px;
}

.h4 {
  font-size: 24px;
}

.sol-ph {
  position: relative;
  height: 100%;
}

.sol-ph img {
  height: 100%;
  object-fit: cover;
}

.sol-images {
  height: 100%;
}

span {
  cursor: pointer;
}

.sol-lorem {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  color: #fff;
  font-size: 36px;
  font-family: "Impact";
}

.sol-lorem:hover {
  color: #fff;
}

.sol-images img {
  object-fit: cover;
  height: 100%;
}

.documentationBody-card-description h4 {
  color: #fff;
  margin-bottom: 10px;
  margin-left: 10px;
}

.documentationBody-card-description a {
  margin-right: 10px;
  background-color: #29b5ab;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  margin-left: 10px;
  margin-bottom: 5px;
}

.medHero {
  background-image: url('../img/med/bg.png');
}


.pishHero {
  background-image: url('../img/beverage-factory-interior-conveyor-flowing-with-bottles-for-juice-or-water.jpg');
}


.documentationBody-card-description a {
  font-size: 10px;
}

/* .medHero-title {
  font-size: 99px !important;
  line-height: 99px !important;
} */

.ankTriger {
  transition: .5s;
}

.ankTriger.hide {
  height: 0;
  transform: 0.5s;
  padding: 0;
  opacity: 0;
}

.ankTrigerSecond {
  transition: .5s;
}

.ankTrigerSecond.hide {
  height: 0;
  transform: 0.5s;
  padding: 0;
  opacity: 0;
}

.documentationBody-card-description a {
  margin-top: 5px;
  display: inline-block;
}

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

  /* .documentationHero-description h2 {
    font-size: 144px;
  } */
  .homeProduct-card h3 {
    font-size: 14px;
  }

  .documentationHero-description .manufacturingCompany-buttons {
    margin-left: 200px;
  }

  .documentationBody-card {
    max-height: 360px;
  }

  .contactHero-title {
    margin-bottom: 0 !important;
  }
}

@media screen and (max-width: 1200px) {
  .documentationHero-description {
    padding-left: 50px;
  }

  .documentationBody-card {
    max-height: 360px;
  }
}

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

  .fig-left,
  .fig-right {
    padding-left: 0;
    padding-right: 0;
  }

  .documentationHero-description {
    padding-left: 0;
  }

  /* .documentationHero-description h2 {
    font-size: 144px;
    text-align: center;
  } */

  .documentationHero-description p {
    margin-left: 0;
  }

  .documentationHero-description p::before {
    display: none;
  }

  .documentationHero-description .manufacturingCompany-buttons {
    margin-left: 000px;
    justify-content: center;
  }

  .documentationHero-description .manufacturingCompany-buttons button:nth-child(2) {
    padding-left: 20px;
    padding-right: 20px;
  }

  .documentationHero-description .manufacturingCompany-buttons button:first-child {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 576px) {
  .medHero .medHero-title {
    margin-bottom: 10px;
  }

  .chickenProdHero .chickenProdHero-title {
    margin-bottom: 10px;
  }

  .documentationHero-description {
    padding-top: 150px;
    padding-bottom: 180px;
  }

  .ankSuperTab-triger h3 {
    height: 50px;
  }

  /* .documentationHero-description h2 {
    font-size: 50px !important;
    text-align: center;
    margin-bottom: 20px;
    margin-bottom: -20px;
  } */

  .documentationHero-description .manufacturingCompany-buttons {
    margin-left: 000px;
    justify-content: center;
  }

  .documentationHero-description .manufacturingCompany-buttons button:nth-child(2) {
    padding-left: 20px;
    padding-right: 20px;
  }

  .documentationHero-description .manufacturingCompany-buttons button:first-child {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.contactHero {
  background-image: url("../img/contact/bg.jpg");
  background-position: center center;
  height: 702px;
}

.contactHero-wrapper {
  /* margin-top: 290px; */
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
}

.contactHero-title {
  font-family: 'Impact';
  color: #fff;
  font-size: 64px;
  margin-left: 30px;
  width: 442px;
  margin-bottom: 130px;
}

.chi-gov-two {
  margin-bottom: 0;
}

.contactHero-description {
  display: flex;
  flex-wrap: wrap;
  max-width: 700px;
  margin: auto;
  margin-left: 260px;
}

.contactHero-description-tel {
  margin-left: 30px;
  margin-top: 10px;
}

.contactHero-description-tel p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 18px;
  text-align: right;
}

.contactHero-description-tel a {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  position: relative;
}

.contactHero-description-tel a::before {
  content: '';
  position: absolute;
  height: 40px;
  width: 40px;
  background-image: url("../img/contact/phone.png");
  background-size: 84%;
  background-repeat: no-repeat;

  left: -60px;
  top: -4px;
}

.contactHero-description-teltwo {
  margin-left: 30px;
  margin-top: 10px;
  max-width: 478px;
}

.contactHero-description-teltwo p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 18px;
  text-align: right;
}

.contactHero-description-teltwo a {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.contactHero-description-email {
  margin-left: 30px;
  margin-top: 15px;
  //width: 300px;
  
  
}

.contactHero-description-email a {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  position: relative;
}

.contactHero-description-email a::before {
  content: '';
  position: absolute;
  height: 32px;
  width: 32px;
  background-image: url("../img/contact/email.png");
  background-size: 100%;
  left: -60px;
  top: -2px;
}

.contactMap-wrapper {
  padding-top: 43px;
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contactMap-left p {
  font-size: 12px;
}

.contactMap-left a {
  color: #29b5ab;
  font-size: 12px;
}

.contactMap-right {
  color: #272727;
  font-size: 12px;
  transition: .2s;
}

.contactMap-right:hover {
  color: #29b5ab;
  transition: .2s;
}

@media screen and (max-width: 1241px) {
  .contactHero-wrapper {
    /* margin-top: 164px; */
    padding-top: 180px;
    padding-left: 60px;
    margin-top: 0;
    flex-direction: column;
  }
}

@media screen and (max-width: 992px) {
  .ankSuperHero-description h2 {
    font-size: 63px !important;
    line-height: 65px !important;
  }

  .contactHero {
    height: auto;
  }

  .contactHero-wrapper {
    padding-top: 100px;
    padding-bottom: 90px;
  }

  .contactHero-description {
    max-width: 350px;
    flex-direction: column;
    margin-left: auto;
    margin: auto;
  }

  .contactHero-title {
    font-size: 105px;
    margin-bottom: 40px;
    margin-left: 0;
  }
}

@media screen and (max-width: 576px) {
  .hero-video video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    
  }
  .documentationHero .documentationHero-description h2 {
    margin-bottom: 32px;
  }

  .documentationBody-item p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .abutProd-item-description {
    margin-top: 100px;
  }

  .aboutCompany-wrapper h2 {
    font-size: 18px;
    line-height: 28px;
  }

  .aboutHero h2 {
    font-size: 22px;
    padding-bottom: 30px;
    padding-top: 84px;
    line-height: 30px;
  }

  .aboutHero h2 span {
    font-size: 22px;
    line-height: 30px;
    display: inline-block;
  }

  .aboutHero-text {
    margin-top: 0;
    flex-direction: column;
  }

  .aboutHero-text p:first-child {
    font-size: 12px;
    margin-bottom: 60px;
  }

  .aboutHero-text p:last-child {
    margin-top: 0;
    margin-bottom: 30px;
    max-width: 249px;
    font-size: 12px;
  }

  .abutProd-item {
    position: relative;
  }

  .abutProd-item-img {
    width: 140px;
    position: absolute;
  }

  .abutProd-item-description {
    max-width: 100%;
  }

  .abutProd-item-description h3 {
    font-size: 22px;
    margin-bottom: 50px;
    margin-top: 20px;
  }

  .abutProd-item-description p {
    font-size: 10px;
    margin-bottom: 16px;
    line-height: 18px;
    margin-right: 6px;
  }
}

@media screen and (max-width: 576px) {
  .chi-gov p {
    max-width: 180px;
  }

  .faqHero .faqHero-description h2 {
    margin-bottom: 20px !important;
  }

  /* .hero-img {
    height: 300px;
  } */
  /* .ankSuperHero-description h2 {
    font-size: 40px !important;
    line-height: 44px !important;
    margin-bottom: 50px !important;
  } */

  .ankSuperTab-item-description h3 {
    max-width: 200px;
    margin-left: auto;
    text-align: right;
    font-size: 16px;
    margin-bottom: 30px;
  }

  .ankSuperTab-item-description h4 {
    margin-top: 20px;
  }

  .ankSuperTab-item.active {
    height: auto;
  }

  .ankSuperHero-img {
    margin-top: 255px;
    margin-left: 0;
  }

  .contactHero-title {
    font-size: 64px;
    text-align: center;
    width: auto;
  }

  .contactHero-wrapper {
    padding-left: 0;
    display: flex;
    justify-content: center;
  }

  .contactHero-description {
    max-width: 251px;
    margin: auto;
  }

  .contactHero-description-tel p {
    font-size: 14px;
  }

  .contactHero-description-tel a {
    font-size: 16px;
  }

  .contactHero-description-tel a::before {
    top: 0px;
  }

  .contactHero-description-teltwo p {
    font-size: 14px;
  }

  .contactHero-description-teltwo a {
    font-size: 16px;
    margin-top: 10px;
    padding-top: 10px;
  }

  .contactHero-description-teltwo a::before {
    top: 0px;
  }

  .contactHero-description-email p {
    font-size: 14px;
  }

  .contactHero-description-email a {
    font-size: 16px;
  }

  .contactHero-description-email a::before {
    top: 0px;
  }

  .contactHero-description-adres a {
    font-size: 17px;
    position: relative;
  }

}

@media screen and (max-width: 576px) {
  .chickenProdP-img {
    margin-bottom: 50px;
  }

  /* .chickenProdHero-title {
    margin-bottom: 30px !important;
  } */

  .chickenProdHero-description h2 {
    font-size: 30px !important;
    line-height: 30px !important;
  }

  .chickenProdHero-right h4 {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .chickenProdHero-right p {
    font-size: 12px;
  }

  .chickenProdHero-left p {
    font-size: 12px;
    margin-left: 0;
    margin-top: 20px;
  }

  .chickenProdHero-left p::before {
    width: 20px;
    height: 20px;
    left: 0;
    top: -30px;
  }

  .anolitSuperCpmpany .container-fluid .manufacturingCompany-wrapper .manufacturingCompany-buttons {
    margin-top: 50px;
  }
}




.ozon__link {

max-width: 269px;

width: 100%;

Float:center;
margin-left:170px;
margin-top:5px;
}

.ozon__link a {

font-size: 16px;

width: 100%;

letter-spacing: 0px;

background-color: #005bff;

}

.btn {

width: 327px;

height: 44px;

border-radius: 22px;

display: flex;

align-items: center;

justify-content: center;

font-size: 18px;

overflow: hidden;

position: relative;

outline: none;

font-weight: 400;

color: #212529;

text-align: center;

vertical-align: middle;

cursor: pointer;

user-select: none;

border: 1px solid transparent;

padding: .375rem .75rem;

line-height: 1.5;

transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;

white-space: nowrap;

}

.btn:before {

content: '';

position: absolute;

top: 0;

left: 0;

width: 5.5em;

height: 100%;

background-color: rgba(255, 255, 255, 0.6);

transform: translateX(-6.8em) skewX(-45deg);

}

.btn:hover:before {

animation: move-light 0.5s;

}

.ozon__link a span {

font-size: 16px;

color: #ffffff;

font-weight: 700;

letter-spacing: 0px;

background-color: #005bff;

}

@keyframes move-light {

from {

transform: translateX(-6.8em) skewX(-45deg);

}

to {

transform: translateX(19em) skewX(-45deg);

}

}


.prodtable

{
border:2px #fff;
}

.prodtable th

{
background:#009999;
padding:20px;
color:#fff;
}

.prodtable td

{
background:#d9d9d9;
padding:20px;
color:#000;
border: 2px solid #fff;
}





.prodtable td.two

{
background:#fff;
padding:20px;
color:#000;
border: 2px solid #fff;
}




.hotelHero {
  background-image: url(../img/hotel.jpg);
}
ul.a-list {
  padding-left: 40px;
}
ul.a-list li {
  margin-bottom: 20px;
}
.order-5 {
  -webkit-box-ordinal-group: 6!important;
      -ms-flex-order: 5!important;
          order: 5!important;
}
.order-6 {
  -webkit-box-ordinal-group: 7!important;
      -ms-flex-order: 6!important;
          order: 6!important;
}
.order-7 {
  -webkit-box-ordinal-group: 8!important;
      -ms-flex-order: 7!important;
          order: 7!important;
}
.order-8 {
  -webkit-box-ordinal-group: 9!important;
      -ms-flex-order: 8!important;
          order: 8!important;
}
@media screen and (min-width: 992px) {
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8 !important;
        -ms-flex-order: 7 !important;
            order: 7 !important;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9 !important;
        -ms-flex-order: 8 !important;
            order: 8 !important;
  }
}


















