@import url("https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap");
@font-face {
  font-family: "Myriad Pro";
  src: url("../font/myriad-pro/MYRIADPRO-REGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../font/myriad-pro/MYRIADPRO-BOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../font/myriad-pro/MYRIADPRO-SEMIBOLD.OTF") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../font/myriad-pro/MyriadPro-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../font/myriad-pro/MYRIADPRO-ITALIC.OTF") format("opentype");
  font-style: italic;
  font-weight: 400;
}
html {
  scroll-behavior: smooth;
}

.wrapper {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.header {
  z-index: 3000;
}

.main {
  z-index: 1000;
}

.footer {
  z-index: 1500;
}

.container {
  padding: 0px 0px;
  width: 1200px;
  margin: auto;
}
@media (max-width: 1230px) {
  .container {
    padding: 0px 20px;
    width: 100%;
  }
}
@media (max-width: 770px) {
  .container {
    padding: 0px 10px;
  }
}

.body.no-scroll {
  overflow: hidden;
}

.main {
  flex: 1 1 auto;
}

.padding-header {
  padding: 110px 0px 0px;
}
@media (max-width: 850px) {
  .padding-header {
    padding: 82px 0px 0px;
  }
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

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

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.header.scroll .main-header__logo.logo .logo__img {
  max-width: 90px;
}
@media (max-width: 850px) {
  .header.scroll .main-header__logo.logo .logo__img {
    max-width: 70px;
  }
}
.header.scroll .main-header__body {
  padding: 10px 0px;
}

.main-header {
  background: #ffffff;
  border-bottom: 1px solid #989898;
}

.main-header__body {
  padding: 15px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s all;
}

.main-header__menu {
  display: flex;
  align-items: center;
}

.main-header__menu-item {
  margin: 0px 50px 0px 0px;
}
.main-header__menu-item:last-child {
  margin: 0;
}
.main-header__menu-item.submenu {
  position: relative;
}
.main-header__menu-item.submenu .main-header__menu-link {
  cursor: pointer;
}
.main-header__menu-item.submenu:hover .main-header__submenu {
  top: 100%;
  opacity: 1;
}

.main-header__menu-link {
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #000000;
}

.main-header__submenu {
  position: absolute;
  top: -1000px;
  left: 0;
  padding: 15px 0px 0px;
  width: 200px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.main-header__submenu-list {
  padding: 20px;
  border: 1px solid #989898;
  border-radius: 10px;
  background: #ffffff;
}

.main-header__submenu-item {
  margin: 0px 0px 10px;
}
.main-header__submenu-item:last-child {
  margin: 0;
}

.main-header__submenu-link {
  transition: 0.5s all;
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.main-header__submenu-link:hover {
  opacity: 0.5;
}

.main-header__search {
  max-width: 160px;
  width: 100%;
  position: relative;
}

.main-header__search-input {
  padding: 12px 40px 12px 12px;
  width: 100%;
  border-radius: 10px;
  background: #EDEDED;
  font-family: "Myriad Pro", sans-serif;
  font-size: 15px;
  color: #000000;
}
.main-header__search-input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  font-size: 15px;
  color: #B1B1B1;
}
.main-header__search-input::placeholder {
  transition: 0.5s all;
  font-size: 15px;
  color: #B1B1B1;
}
.main-header__search-input:focus::-moz-placeholder {
  opacity: 0.5;
}
.main-header__search-input:focus::placeholder {
  opacity: 0.5;
}

.main-header__search-submit {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  min-width: 20px;
  height: 20px;
  background: url("../img/icon/search-header.svg") 0 0/100% 100% no-repeat;
  cursor: pointer;
  transition: 0.5s all;
  font-size: 0;
}
.main-header__search-submit:hover {
  opacity: 0.5;
}

.main-header__search-icon {
  margin: 0px 20px 0px 0px;
  min-width: 40px;
  height: 40px;
  border: 2px solid #000000;
  border-radius: 10px;
  display: none;
  justify-content: center;
  align-items: center;
}

.main-header__search-icon-img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-header__search-icon-img svg {
  max-width: 100%;
}
.main-header__search-icon-img svg path {
  fill: #000000;
}

.main-header__burger {
  display: none;
}

@media (max-width: 1150px) {
  .main-header__menu-item {
    margin: 0px 30px 0px 0px;
  }
  .main-header__menu-link {
    font-size: 16px;
    text-transform: none;
  }
}
@media (max-width: 900px) {
  .main-header__menu-item {
    margin: 0px 20px 0px 0px;
  }
}
@media (max-width: 850px) {
  .main-header__body {
    justify-content: start;
  }
  .main-header__logo {
    flex: auto;
  }
  .main-header__menu {
    display: none;
  }
  .main-header__search {
    display: none;
  }
  .main-header__search-icon {
    display: block;
  }
  .main-header__burger {
    display: block;
  }
}
.smart-header {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  display: inline;
  overflow-y: auto;
  z-index: 10000;
  transition: 1s all;
}
.smart-header.active {
  right: 0;
}
.smart-header.active .container::before {
  right: 0;
  opacity: 0.5;
}
.smart-header.active .smart-header__content {
  right: 0;
}
.smart-header .container {
  padding: 20px;
  width: 100%;
  height: 100%;
  position: relative;
}
.smart-header .container::before {
  content: "";
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #000000;
  opacity: 0;
  z-index: -1;
  transition: opacity 1s ease;
}

.smart-hedaer__body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: end;
}

.smart-header__content {
  padding: 20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: auto;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.smart-header__exit {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: end;
}

.smart-header__exit-img {
  width: 30px;
  height: 30px;
  border: 2px solid #000000;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}
.smart-header__exit-img span {
  width: 20px;
  height: 2px;
  background: #000000;
  display: inline-block;
  position: relative;
  transform: rotate(45deg);
}
.smart-header__exit-img span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: rotate(90deg);
}

.smart-header__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smart-header__menu-item {
  margin: 0px 0px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.smart-header__menu-item.submenu {
  position: relative;
}

.smart-header__menu-link {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  font-family: "Myriad Pro", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  color: #000000;
}

.smart-header__submenu {
  padding: 10px 0px 5px;
  display: none;
}

.smart-header__submenu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smart-header__submenu-item {
  margin: 0px 0px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.smart-header__submenu-item:last-child {
  margin: 0;
}

.smart-header__submenu-link {
  text-align: center;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: #000000;
}

.logo .logo__body {
  display: inline-block;
}
.logo .logo__img {
  max-width: 110px;
  width: 100%;
  transition: 0.5s all;
}
.logo .logo__img img {
  width: 100%;
}
@media (max-width: 850px) {
  .logo .logo__img {
    max-width: 70px;
  }
}

.burger .burger__img {
  min-width: 40px;
  height: 40px;
  border: 2px solid black;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: 0.5s all;
}
.burger .burger__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  opacity: 0;
}
.burger .burger__img:hover {
  opacity: 0.5;
}
.burger .burger__img span {
  width: 20px;
  height: 4px;
  display: inline-block;
  background: #000000;
  position: relative;
  transition: 0.5s all;
}
.burger .burger__img span::before,
.burger .burger__img span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transition: 0.5s all;
}
.burger .burger__img span::before {
  top: -7px;
}
.burger .burger__img span::after {
  bottom: -7px;
}

.slick-track {
  display: flex;
}

.slick-slider.news .slick-dots {
  padding: 20px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slick-slider.news .slick-dots li {
  margin: 0px 5px 0px 0px;
}
.slick-slider.news .slick-dots li:last-child {
  margin: 0;
}
.slick-slider.news .slick-dots li.slick-active button {
  width: 20px;
  background: #FFB20C;
}
.slick-slider.news .slick-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #989898;
  transition: 0.5s all;
  font-size: 0;
}

.title {
  position: relative;
  font-family: "Myriad Pro", sans-serif;
  font-size: 45px;
  line-height: 50px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
}
@media (max-width: 770px) {
  .title {
    padding: 0;
    font-size: 25px;
    line-height: 30px;
  }
}

.text-hover {
  position: relative;
}
.text-hover::before {
  content: "";
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 0%;
  height: 2px;
  background: #000000;
  transition: 1s all;
}
.text-hover:hover::before {
  width: 100%;
}

.fancybox__container {
  z-index: 4000;
}

.modal {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 10000;
}
.modal .container {
  height: 100%;
}
.modal.active {
  left: 0;
}
.modal.active .modal__fullscreen-exit {
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal__body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__fullscreen-exit {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease;
  z-index: 2;
}

.modal__content {
  padding: 50px;
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  background: #ffffff;
  position: relative;
  z-index: 3;
}

.modal__exit {
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal__exit-img {
  width: 30px;
  height: 30px;
  border: 2px solid #000000;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}
.modal__exit-img span {
  width: 20px;
  height: 3px;
  background: #000000;
  display: inline-block;
  position: relative;
  rotate: 45deg;
}
.modal__exit-img span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  rotate: 90deg;
}
.modal__exit-img:hover {
  opacity: 0.5;
}

.modal__title {
  margin: 0px 0px 30px;
  text-align: center;
  font-family: "Myriad Pro", sans-serif;
  font-size: 35px;
  line-height: 40px;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 770px) {
  .modal__title {
    font-size: 25px;
  }
}

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

.modal__input {
  margin: 0px 0px 15px;
  padding: 20px 30px;
  position: relative;
  border-radius: 15px;
  background: rgba(154, 154, 154, 0.3019607843);
  transition: 0.5s all;
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
}
.modal__input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #333333;
}
.modal__input::placeholder {
  transition: 0.5s all;
  color: #333333;
}
.modal__input:focus::-moz-placeholder {
  opacity: 0.5;
}
.modal__input:focus::placeholder {
  opacity: 0.5;
}

.modal__submit {
  padding: 20px 30px;
  border: 2px solid #FFB20C;
  border-radius: 15px;
  background: #FFB20C;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.modal__submit:hover {
  background: transparent;
  color: #FFB20C;
}

@media (max-width: 770px) {
  .modal__title {
    margin: 0px 0px 20px;
  }
  .modal__input {
    margin: 0px 0px 15px;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .modal__content {
    padding: 70px 20px 50px;
  }
}
.swiper-wrapper {
  transition-timing-function: linear;
}

.pagination {
  display: flex;
  align-items: center;
}
.pagination a {
  margin: 0px 3px;
  padding: 5px;
  min-width: 30px;
  height: 30px;
  border: 2px solid #0D5FB3;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  color: #0D5FB3;
}
.pagination a:hover {
  background: #0D5FB3;
  color: #ffffff;
}

.pagination-prev,
.pagination-next {
  margin: 0px 3px;
  padding: 5px;
  min-width: 30px;
  height: 30px;
  border: 2px solid #0D5FB3;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  color: #0D5FB3;
}
.pagination-prev:hover,
.pagination-next:hover {
  background: #0D5FB3;
  color: #ffffff;
}

.pagination-active {
  margin: 0px 3px;
  padding: 5px;
  min-width: 30px;
  height: 30px;
  border: 2px solid #0D5FB3;
  border-radius: 5px;
  background: #0D5FB3;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  color: #ffffff;
}

.pagination-dots {
  margin: 0px 5px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  color: #0D5FB3;
}

.message {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 10000;
}
.message.active {
  animation: messageSlide 5s ease-in-out forwards;
}
@keyframes messageSlide {
  0% {
    bottom: -200px;
    opacity: 0;
  }
  15% {
    bottom: 20px;
    opacity: 1;
  }
  70% {
    bottom: 20px;
    opacity: 1;
  }
  100% {
    bottom: -200px;
    opacity: 0;
  }
}

.message__body {
  background: #4caf50;
  padding: 16px 24px;
  border-radius: 8px;
}

.message__text {
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: white;
}

.content-search {
  margin: 50px 0px;
}
.content-search .container {
  max-width: 600px;
}

.content-search__body {
  display: flex;
  flex-direction: column;
}

.content-search__title {
  margin: 0px 0px 40px;
}

.content-search__form {
  margin: 0px 0px 50px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.content-search__form-input {
  margin: 0px 0px 15px;
  padding: 15px 20px;
  width: 100%;
  border: 2px solid #0D5FB3;
  border-radius: 10px;
  background: #ECE7E2;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  color: #000000;
}
.content-search__form-input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #000000;
}
.content-search__form-input::placeholder {
  transition: 0.5s all;
  color: #000000;
}
.content-search__form-input:focus::-moz-placeholder {
  opacity: 0.5;
}
.content-search__form-input:focus::placeholder {
  opacity: 0.5;
}

.content-search__form-submit {
  margin: 0px 0px 15px;
  padding: 15px 40px;
  border: 2px solid #0D5FB3;
  border-radius: 10px;
  background: #0D5FB3;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}
.content-search__form-submit:hover {
  background: transparent;
  color: #0D5FB3;
}

.content-search__form-result {
  font-family: #0D5FB3;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.content-search__result {
  display: flex;
  flex-direction: column;
}

.content-search__result-column {
  margin: 0px 0px 30px;
  display: flex;
  flex-direction: column;
}

.content-search__result-title {
  margin: 0px 0px 10px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  color: #000000;
}

.content-search__result-text {
  margin: 0px 0px 15px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.content-search__result-link {
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.content-search__result-link:hover {
  color: #0D5FB3;
}

.content-search__result-no {
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

@media (max-width: 770px) {
  .content-search__title {
    margin: 0px 0px 20px;
  }
}
.fullscreen-home {
  margin: 0px 0px 100px;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.fullscreen-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -3;
}
.fullscreen-home .container {
  height: 100%;
}

.fullscreen-home__body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fullscreen-home__fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
}
.fullscreen-home__fullscreen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fullscreen-home__background {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  z-index: -2;
}
.fullscreen-home__background img {
  width: 100%;
}

.fullscreen-home__product {
  position: absolute;
  bottom: -20px;
  right: 5%;
  width: 40%;
  z-index: -1;
}
.fullscreen-home__product img {
  width: 100%;
}

.fullscreen-home__content {
  max-width: 710px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.fullscreen-home__content-title {
  margin: 0px 0px 20px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 55px;
  line-height: 60px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.fullscreen-home__content-text {
  margin: 0px 0px 40px;
  max-width: 500px;
  width: 100%;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: #ffffff;
}

.fullscreen-home__content-submit {
  padding: 12px 35px;
  border: 2px solid #FFB20C;
  border-radius: 50px;
  background: #FFB20C;
  display: block;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}
.fullscreen-home__content-submit:hover {
  background: transparent;
  color: #FFB20C;
}

@media (max-width: 1200px) {
  .fullscreen-home__product {
    bottom: 0;
  }
}
@media (max-width: 770px) {
  .fullscreen-home {
    margin: 0px 0px 50px;
  }
  .fullscreen-home__background {
    width: 100%;
  }
  .fullscreen-home__product {
    width: 70%;
  }
  .fullscreen-home__content-title {
    margin: 0px 0px 10px;
    font-size: 25px;
    line-height: 30px;
  }
  .fullscreen-home__content-text {
    margin: 0px 0px 20px;
    max-width: 400px;
    font-size: 16px;
    line-height: 20px;
  }
  .fullscreen-home__content-submit {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.advantages-home {
  margin: 0px 0px 100px;
}

.advantages-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantages-home__title {
  margin: 0px 0px 30px;
  width: 100%;
}

.advantages-home__row {
  width: calc(100% + 40px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

.advantages-home__column {
  padding: 0px 20px;
  width: 100%;
}

.advnatages-home__column-body {
  padding: 40px 20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #F9F9F9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.advnatages-home__column-image {
  margin: 0px 15px 0px 0px;
  max-width: 100%;
}

.advantages-home__column-image-img {
  max-width: 100%;
  min-width: 46px;
}
.advantages-home__column-image-img img {
  max-width: 100%;
}

.advantages-home__column-content {
  display: flex;
  flex-direction: column;
}

.advantages-home__column-content-title {
  font-family: "Myriad Pro", sans-serif;
  font-size: 25px;
  line-height: 30px;
  color: #000000;
}

@media (max-width: 1200px) {
  .advantages-home__column-content-title {
    font-size: 20px;
    line-height: 25px;
  }
  .advantages-home__row {
    width: calc(100% + 10px);
  }
  .advantages-home__column {
    padding: 0px 5px;
  }
  .advnatages-home__column-body {
    padding: 30px 10px;
  }
  .advnatages-home__column-image {
    margin: 0px 10px 0px 0px;
  }
  .advantages-home__column-content-title {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 770px) {
  .advantages-home {
    margin: 0px 0px 50px;
  }
  .advantages-home__title {
    text-align: center;
  }
  .advantages-home__row {
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .advantages-home__column {
    padding: 0px 0px 15px;
  }
  .advantages-home__column:last-child {
    padding: 0;
  }
  .advnatages-home__column-body {
    justify-content: start;
  }
  .advnatages-home__column-image {
    margin: 0px 15px 0px 0px;
  }
  .advantages-home__column-content-title {
    font-size: 20px;
    line-height: 25px;
  }
}
.about-home {
  margin: 0px 0px 100px;
}
.about-home.top {
  margin: 50px 0px 100px;
}
@media (max-width: 770px) {
  .about-home.top {
    margin: 50px 0px;
  }
}

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

.about-home__image {
  flex: 0 0 calc(45% - 35px);
  width: 100%;
}

.about-home__image-img {
  padding-bottom: 100%;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.about-home__image-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-home__content {
  flex: 0 0 calc(55% - 35px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-home__content-title {
  margin: 0px 0px 15px;
}

.about-home__content-text {
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}
.about-home__content-text p {
  margin: 0px 0px 10px;
}
.about-home__content-text p:last-child {
  margin: 0;
}
.about-home__content-text ul {
  margin: 0px 0px 10px;
}
.about-home__content-text ul li {
  margin: 0px 0px 8px;
  padding: 0px 0px 0px 20px;
  position: relative;
}
.about-home__content-text ul li:last-child {
  margin: 0;
}
.about-home__content-text ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0D5FB3;
}
.about-home__content-text ul:last-child {
  margin: 0;
}

@media (max-width: 1000px) {
  .about-home__image {
    flex: 0 0 calc(45% - 15px);
  }
  .about-home__content {
    flex: 0 0 calc(55% - 15px);
  }
}
@media (max-width: 770px) {
  .about-home {
    margin: 0px 0px 50px;
  }
  .about-home__content-title {
    margin: 0px 0px 10px;
  }
  .about-home__content-text {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 660px) {
  .about-home__body {
    flex-direction: column;
  }
  .about-home__image {
    margin: 0px 0px 20px;
  }
  .about-home__image-img {
    padding-bottom: 70%;
  }
}
.offers-home {
  margin: 0px 0px 100px;
}

.offers-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offers-home__title {
  margin: 0px 0px 50px;
  width: 100%;
}

.offers-home__row {
  width: calc(100% + 30px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(4, 1fr);
}

.offers-home__column {
  padding: 0px 15px 30px;
  width: 100%;
}

.offers-home__column-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.offers-home__column-body:hover .offers-home__column-img img {
  transform: translate(-50%, -50%) scale(0.8);
}

.offers-home__column-img {
  margin: 0px 0px 20px;
  padding-bottom: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #F5F5F5;
  position: relative;
}
.offers-home__column-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
  transition: 0.5s all;
}

.offers-home__column-content {
  display: flex;
  flex-direction: column;
}

.offers-home__column-contnet-title {
  font-family: "Myriad Pro", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #000000;
}

@media (max-width: 1000px) {
  .offers-home__row {
    width: calc(100% + 20px);
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
  .offers-home__column {
    padding: 0px 10px 30px;
  }
}
@media (max-width: 770px) {
  .offers-home {
    margin: 0px 0px 50px;
  }
  .offers-home__title {
    margin: 0px 0px 30px;
    text-align: center;
  }
  .offers-home__row {
    width: calc(100% + 10px);
  }
  .offers-home__column {
    padding: 0px 5px 30px;
  }
  .offers-home__column-img {
    margin: 0px 0px 10px;
  }
  .offers-home__column-contnet-title {
    text-align: center;
    font-size: 16px;
    line-height: 22px;
  }
}
.book-home {
  margin: 0px 0px 100px;
  background: #FFB20C;
  border-bottom-right-radius: 400px;
}

.book-home__body {
  padding: 50px 0px 70px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.book-home__product {
  position: absolute;
  bottom: 50px;
  right: 0;
  z-index: -1;
}

.book-home__content {
  max-width: 790px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.book-home__content-title {
  margin: 0px 0px 20px;
}

.book-home__content-text {
  margin: 0px 0px 40px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 25px;
  line-height: 30px;
  color: #000000;
}

.book-home__content-form {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.book-home__content-form-row {
  margin: 0px 0px 20px;
  display: flex;
  align-items: center;
}
.book-home__content-form-row .book-home__content-form-input:last-child {
  margin: 0px 0px 0px 20px;
}

.book-home__content-form-input {
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  background: #ffffff;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  color: #747474;
}
.book-home__content-form-input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #747474;
}
.book-home__content-form-input::placeholder {
  transition: 0.5s all;
  color: #747474;
}
.book-home__content-form-input:focus::-moz-placeholder {
  opacity: 0.5;
}
.book-home__content-form-input:focus::placeholder {
  opacity: 0.5;
}

.book-home__content-textarea {
  margin: 0px 0px 20px;
  padding: 20px;
  width: 100%;
  height: 100px;
  border-radius: 10px;
  background: #ffffff;
  resize: none;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  color: #747474;
}
.book-home__content-textarea::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #747474;
}
.book-home__content-textarea::placeholder {
  transition: 0.5s all;
  color: #747474;
}
.book-home__content-textarea:focus::-moz-placeholder {
  opacity: 0.5;
}
.book-home__content-textarea:focus::placeholder {
  opacity: 0.5;
}

.book-home__content-submit {
  padding: 20px;
  width: 100%;
  border: 2px solid #0D5FB3;
  border-radius: 10px;
  background: #0D5FB3;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  color: #ffffff;
}
.book-home__content-submit:hover {
  background: transparent;
  color: #0D5FB3;
}

@media (max-width: 770px) {
  .book-home {
    margin: 0px 0px 50px;
    border-bottom-right-radius: 100px;
  }
  .book-home__body {
    padding: 50px 0px;
  }
  .book-home__product {
    max-width: 300px;
    bottom: 25px;
    width: 100%;
  }
  .book-home__product img {
    width: 100%;
  }
  .book-home__content-title {
    margin: 0px 0px 10px;
    text-align: center;
  }
  .book-home__content-text {
    margin: 0px 0px 30px;
    text-align: center;
    font-size: 16px;
    line-height: 22px;
  }
  .book-home__content-form-row {
    margin: 0px 0px 10px;
  }
  .book-home__content-form-row .book-home__content-form-input:last-child {
    margin: 0px 0px 0px 10px;
  }
  .book-home__content-form-input {
    padding: 15px;
    font-size: 16px;
  }
  .book-home__content-textarea {
    margin: 0px 0px 10px;
    padding: 15px;
    font-size: 16px;
    line-height: 22px;
  }
  .book-home__content-submit {
    padding: 15px;
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .book-home__content-form-row {
    flex-direction: column;
  }
  .book-home__content-form-row .book-home__content-form-input:last-child {
    margin: 10px 0px 0px;
  }
}
.news-home {
  margin: 0px 0px 100px;
}

.news-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-home__title {
  margin: 0px 0px 50px;
  width: 100%;
}

.news-home__row {
  width: calc(100% + 30px);
}
.news-home__row .slick-list.draggable {
  overflow: hidden;
}

.news-home__column {
  padding: 0px 15px;
  width: 100%;
}

.news-home__column-body {
  padding: 20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
}

.news-home__column-img {
  margin: 0px 0px 10px;
  padding-bottom: 100%;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.news-home__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-home__column-content {
  display: flex;
  flex-direction: column;
}

.news-home__column-content-title {
  margin: 0px 0px 5px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #000000;
}

.news-home__column-content-text {
  margin: 0px 0px 20px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #000000;
}

.news-home__column-content-link {
  padding: 10px 20px;
  width: 100%;
  border: 2px solid #FFB20C;
  border-radius: 5px;
  background: #FFB20C;
  display: inline-block;
  cursor: pointer;
  transition: 0.5s all;
  text-align: center;
  font-family: "Myriad Pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}
.news-home__column-content-link:hover {
  background: transparent;
  color: #FFB20C;
}

@media (max-width: 1000px) {
  .news-home__row {
    width: calc(100% + 20px);
  }
  .news-home__column {
    padding: 0px 10px;
  }
}
@media (max-width: 770px) {
  .news-home {
    margin: 0px 0px 50px;
  }
  .news-home__title {
    margin: 0px 0px 30px;
    text-align: center;
  }
  .news-home__row {
    width: calc(100% + 10px);
  }
  .news-home__column {
    padding: 0px 5px;
  }
}
.content-catalog {
  margin: 50px 0px 100px;
}

.content-catalog__body {
  display: flex;
  flex-direction: column;
}

.content-catalog__title {
  margin: 0px 0px 30px;
  width: 100%;
}

.content-catalog__row {
  display: flex;
}

.content-catalog__info {
  margin: 0px 20px 0px 0px;
  max-width: 350px;
  width: 100%;
  min-width: 350px;
}

.content-catalog__info-body {
  padding: 30px;
  border: 2px solid #E7E7E7;
  border-radius: 10px;
}

.content-catalog__info-title {
  margin: 0px 0px 20px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 30px;
  line-height: 35px;
  color: #000000;
}

.content-catalog__info-list {
  margin: 0px 0px 30px;
  display: flex;
  flex-direction: column;
}
.content-catalog__info-list:last-child {
  margin: 0px;
}
.content-catalog__info-list:hover .content-catalog__info-list-item.active .content-catalog__info-list-icon {
  background: transparent;
}
.content-catalog__info-list:hover .content-catalog__info-list-item.active .content-catalog__info-list-icon svg {
  opacity: 0;
}
.content-catalog__info-list:hover .content-catalog__info-list-item.active:hover .content-catalog__info-list-icon {
  background: #FFB20C;
}
.content-catalog__info-list:hover .content-catalog__info-list-item.active:hover .content-catalog__info-list-icon svg {
  opacity: 1;
}

.content-catalog__info-list-item {
  margin: 0px 0px 15px;
}
.content-catalog__info-list-item:last-child {
  margin: 0;
}
.content-catalog__info-list-item.active .content-catalog__info-list-icon {
  background: #FFB20C;
}
.content-catalog__info-list-item.active .content-catalog__info-list-icon svg {
  opacity: 1;
}
.content-catalog__info-list-item:hover .content-catalog__info-list-icon {
  background: #FFB20C;
}

.content-catalog__info-list-link {
  display: flex;
  align-items: center;
}

.content-catalog__info-list-icon {
  margin: 0px 10px 0px 0px;
  min-width: 30px;
  height: 30px;
  border: 2px solid #FFB20C;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
.content-catalog__info-list-icon svg {
  opacity: 0;
  transition: 0.5s all;
}

.content-catalog__info-list-text {
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #000000;
}

.content-catalog__info-row {
  margin: 0px 0px 30px;
  display: flex;
}
.content-catalog__info-row:last-child {
  margin: 0;
}
.content-catalog__info-row .content-catalog-input:last-child {
  margin: 0px 0px 0px 10px;
}

.content-catalog-input {
  padding: 15px;
  width: 100%;
  border: 2px solid #FFB20C;
  border-radius: 10px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 18px;
  color: #000000;
}
.content-catalog-input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #989898;
}
.content-catalog-input::placeholder {
  transition: 0.5s all;
  color: #989898;
}
.content-catalog-input:focus::-moz-placeholder {
  opacity: 0.5;
}
.content-catalog-input:focus::placeholder {
  opacity: 0.5;
}

.content-catalog__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-catalog__content-product {
  width: calc(100% + 20px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(2, 1fr);
}

.content-catalog__content-product-column {
  padding: 0px 10px 20px;
  width: 100%;
}

.content-catalog__content-product-column-body {
  padding: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid #E7E7E7;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.content-catalog__content-product-column-body:hover .content-catalog__content-product-column-img img {
  transform: translate(-50%, -50%) scale(0.8);
}

.content-catalog__content-product-column-img {
  margin: 0px 0px 20px;
  padding-bottom: 100%;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  background: #F5F5F5;
  display: inline-block;
  position: relative;
}
.content-catalog__content-product-column-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  transition: 0.5s all;
}

.content-catalog__content-product-column-title {
  flex: auto;
  margin: 0px 0px 15px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #000000;
}

.content-catalog__content-product-column-price {
  margin: 0px 0px 15px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

.content-catalog__content-product-column-link {
  padding: 12px 20px;
  width: 100%;
  border: 2px solid #FFB20C;
  border-radius: 5px;
  background: #FFB20C;
  display: inline-block;
  cursor: pointer;
  transition: 0.5s all;
  text-align: center;
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}
.content-catalog__content-product-column-link:hover {
  background: transparent;
  color: #FFB20C;
}

@media (max-width: 1000px) {
  .content-catalog__info {
    margin: 0px 10px 0px 0px;
    max-width: 300px;
    min-width: 300px;
  }
  .content-catalog__info-body {
    padding: 15px;
  }
  .content-catalog__content-product-column-body {
    padding: 15px;
  }
  .content-catalog__content-product-column-title {
    margin: 0px 0px 10px;
    font-size: 18px;
    line-height: 24px;
  }
  .content-catalog__content-product-column-price {
    margin: 0px 0px 10px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 770px) {
  .content-catalog {
    margin: 50px 0px;
  }
  .content-catalog__title {
    margin: 0px 0px 20px;
    width: 100%;
    text-align: center;
  }
  .content-catalog__info {
    max-width: 250px;
    min-width: 250px;
  }
  .content-catalog__info-title {
    margin: 0px 0px 10px;
    font-size: 18px;
    line-height: 24px;
  }
  .content-catalog__info-list {
    margin: 0px 0px 20px;
  }
  .content-catalog__info-list-item {
    margin: 0px 0px 10px;
  }
  .content-catalog__info-list-icon {
    min-width: 20px;
    height: 20px;
  }
  .content-catalog__info-list-icon svg {
    max-width: 10px;
    width: 100%;
  }
  .content-catalog__info-list-text {
    font-size: 16px;
    line-height: 22px;
  }
  .content-catalog__info-row {
    margin: 0px 0px 20px;
  }
  .content-catalog-input {
    padding: 10px;
    font-size: 16px;
  }
  .content-catalog__content-product {
    width: calc(100% + 10px);
  }
  .content-catalog__content-product-column {
    padding: 0px 5px 10px;
  }
  .content-catalog__content-product-column-title {
    margin: 0px 0px 5px;
    font-size: 16px;
    line-height: 22px;
  }
  .content-catalog__content-product-column-price {
    font-size: 14px;
    line-height: 20px;
  }
  .content-catalog__content-product-column-link {
    padding: 10px;
    font-size: 14px;
  }
}
@media (max-width: 660px) {
  .content-catalog__row {
    flex-direction: column;
  }
  .content-catalog__info {
    margin: 0px 0px 20px;
    max-width: 100%;
    min-width: auto;
  }
}
@media (max-width: 400px) {
  .content-catalog__content-product {
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
}
.content-product {
  margin: 50px 0px 100px;
}

.content-product__body {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.content-product__content {
  padding: 40px 30px;
  border: 2px solid #E7E7E7;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-product__content-title {
  margin: 0px 0px 30px;
  width: 100%;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: #000000;
}

.content-product__content-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.content-product__content-image {
  flex: 0 0 calc(60% - 10px);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.content-product__content-imgs {
  margin: 0px 10px 0px 0px;
  padding: 0px 0px 0px 5px;
  max-width: 80px;
  width: 100%;
  min-width: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  direction: rtl;
}
.content-product__content-imgs::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.content-product__content-imgs::-webkit-scrollbar-thumb {
  background-color: #FFB20C;
  border-radius: 4px;
}
.content-product__content-imgs::-webkit-scrollbar-track {
  background: #E7E7E7;
}

.content-product__content-imgs-column {
  padding: 0px 0px 10px;
  width: 100%;
}
.content-product__content-imgs-column:last-child {
  padding: 0;
}
.content-product__content-imgs-column.active .content-product__content-imgs-column-body {
  border: 2px solid #FFB20C;
}

.content-product__content-imgs-column-body {
  width: 100%;
  height: 100%;
  border: 2px solid #E7E7E7;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}
.content-product__content-imgs-column-body:hover .content-product__content-imgs-column-img img {
  scale: 0.8;
}

.content-product__content-imgs-column-img {
  padding-bottom: 100%;
  width: 100%;
  position: relative;
}
.content-product__content-imgs-column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s all;
}

.content-product__content-main {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.content-product__content-main-column {
  width: 100%;
  display: none;
}
.content-product__content-main-column.active {
  display: block;
}

.content-product__content-main-column-body {
  width: 100%;
  height: 100%;
  border: 2px solid #E7E7E7;
  border-radius: 5px;
  display: inline-block;
}

.content-product__content-main-column-img {
  padding-bottom: 100%;
  width: 100%;
  position: relative;
}
.content-product__content-main-column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-product__content-info {
  flex: 0 0 calc(40% - 10px);
  width: 100%;
}

.content-product__content-info-title {
  margin: 0px 0px 10px;
  width: 100%;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: #000000;
}

.content-product__content-info-characteristic {
  margin: 0px 0px 20px;
  display: flex;
  flex-direction: column;
}

.content-product__content-info-characteristic-item {
  margin: 0px 0px 10px;
  padding: 10px;
  border: 2px solid #E7E7E7;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
}
.content-product__content-info-characteristic-item:last-child {
  margin: 0;
}

.contnet-product__content-info-characteristic-text {
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #ABABAB;
}
.contnet-product__content-info-characteristic-text:last-child {
  font-weight: 400;
  color: #FFB20C;
}

.content-product__content-info-text {
  margin: 0px 0px 20px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #6E6E6E;
}
.content-product__content-info-text:last-child {
  margin: 0;
}

.content-product__info {
  margin: 0px 0px 0px 20px;
  max-width: 330px;
  width: 100%;
  min-width: 330px;
}

.content-product__info-body {
  padding: 30px;
  border: 2px solid #E7E7E7;
  border-radius: 10px;
}

.content-product__info-list {
  margin: 0px 0px 30px;
  display: flex;
  flex-direction: column;
}

.content-product__info-list-item {
  margin: 0px 0px 10px;
  padding: 0px 0px 10px;
  border-bottom: 2px solid #C8C8C8;
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #000000;
}
.content-product__info-list-item:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

.content-product__info-price {
  margin: 0px 0px 15px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: #FFB20C;
}

.content-product__info-submit {
  padding: 12px 20px;
  width: 100%;
  border: 2px solid #0D5FB3;
  border-radius: 5px;
  background: #0D5FB3;
  cursor: pointer;
  transition: 0.5s all;
  text-align: center;
  font-family: "Myriad Pro", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}
.content-product__info-submit:hover {
  background: transparent;
  color: #0D5FB3;
}

@media (max-width: 1100px) {
  .content-product__content {
    padding: 20px;
  }
  .content-product__content-title {
    margin: 0px 0px 10px;
  }
  .content-product__content-image {
    flex: 0 0 calc(60% - 5px);
  }
  .content-product__content-info-title {
    font-size: 18px;
    line-height: 24px;
  }
  .contnet-product__content-info-characteristic-text {
    font-size: 14px;
    line-height: 20px;
  }
  .content-product__content-info-text {
    font-size: 14px;
    line-height: 20px;
  }
  .content-product__info {
    margin: 0px 0px 0px 10px;
    max-width: 250px;
    min-width: 250px;
  }
  .content-product__info-body {
    padding: 20px;
  }
  .content-product__info-list {
    margin: 0px 0px 15px;
  }
  .content-product__info-list-item {
    margin: 0px 0px 5px;
    padding: 0px 0px 5px;
    font-size: 14px;
    line-height: 20px;
  }
  .content-product__info-price {
    font-size: 16px;
    line-height: 22px;
  }
  .content-product__info-submit {
    padding: 10px;
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .content-product__body {
    flex-direction: column;
  }
  .content-product__content {
    margin: 0px 0px 10px;
    width: 100%;
  }
  .content-product__info {
    margin: 0;
    max-width: 100%;
    min-width: auto;
  }
}
@media (max-width: 770px) {
  .content-product {
    margin: 50px 0px;
  }
}
@media (max-width: 660px) {
  .content-product__content-row {
    width: 100%;
    flex-direction: column;
  }
  .content-product__content-image {
    margin: 0px 0px 20px;
    width: 100%;
    flex-direction: column;
  }
  .content-product__content-imgs {
    margin: 0;
    padding: 0px 0px 5px;
    max-width: 100%;
    min-width: auto;
    height: auto;
    overflow-y: auto;
    overflow-x: scroll;
    flex-direction: row;
    direction: ltr;
    order: 2;
  }
  .content-product__content-imgs-column {
    padding: 0px 10px 0px 0px;
  }
  .content-product__content-imgs-column-body {
    min-width: 80px;
  }
  .content-product__content-main {
    margin: 0px 0px 10px;
    width: 100%;
  }
}
.content-news {
  margin: 50px 0px 100px;
}

.content-news__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-news__title {
  margin: 0px 0px 30px;
  width: 100%;
}

.content-news__row {
  width: calc(100% + 30px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(4, 1fr);
}

.content-news__column {
  padding: 0px 15px 30px;
  width: 100%;
}

.content-news__column-body {
  padding: 20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #F5F5F5;
  display: inline-block;
}
.content-news__column-body:hover .content-news__column-img img {
  scale: 1.2;
}

.content-news__column-img {
  margin: 0px 0px 15px;
  padding-bottom: 100%;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.content-news__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s all;
}

.content-news__column-content {
  display: flex;
  flex-direction: column;
}

.content-news__column-content-title {
  margin: 0px 0px 5px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #000000;
}

.content-news__column-content-text {
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #000000;
}

@media (max-width: 1000px) {
  .content-news__row {
    width: calc(100% + 20px);
    grid-template: repeat(1, 1fr)/repeat(3, 1fr);
  }
  .content-news__column {
    padding: 0px 10px 20px;
  }
}
@media (max-width: 770px) {
  .content-news {
    margin: 50px 0px;
  }
  .content-news__title {
    margin: 0px 0px 20px;
    text-align: center;
  }
  .content-news__row {
    width: calc(100% + 10px);
  }
  .content-news__column {
    padding: 0px 5px 10px;
  }
  .content-news__column-body {
    padding: 15px;
  }
  .content-news__column-content-title {
    font-style: 16px;
    line-height: 22px;
  }
  .content-news__column-content-text {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 660px) {
  .content-news__row {
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .content-news__row {
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
}
.content-newsBlog .container {
  width: 800px;
}
@media (max-width: 850px) {
  .content-newsBlog .container {
    width: 100%;
  }
}

.content-newsBlog__body {
  padding: 50px 0px 80px;
  width: 100%;
}

.content-newsBlog__imgs {
  margin: 0px 0px 30px;
  padding: 30px;
  width: 100%;
  border-radius: 20px;
  background: #F5F5F5;
}

.content-newsBlog__img {
  padding-bottom: 60%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  position: relative;
}
.content-newsBlog__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-newsBlog__title {
  margin: 0px 0px 20px;
  text-align: center;
}
.content-newsBlog__title::before {
  left: 50%;
  transform: translateX(-50%);
}

.content-newsBlog__content {
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

@media (max-width: 770px) {
  .content-newsBlog__body {
    padding: 50px 0px;
  }
  .content-newsBlog__title {
    margin: 0px 0px 30px;
  }
  .content-newsBlog__content {
    font-size: 14px;
    left: 20px;
  }
}
.content-contact {
  margin: 50px 0px 100px;
}

.content-contact__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-contact__title {
  margin: 0px 0px 30px;
  width: 100%;
}

.content-contact__row {
  width: 100%;
  display: flex;
}

.content-contact__info {
  margin: 0px 20px 0px 0px;
  max-width: 350px;
  width: 100%;
  min-width: 350px;
}

.content-contact__info-body {
  padding: 60px 30px;
  width: 100%;
  border-radius: 10px;
  background: #F5F5F5;
}

.content-contact__info-list {
  display: flex;
  flex-direction: column;
}

.content-contact__info-list-item {
  margin: 0px 0px 40px;
  display: flex;
  flex-direction: column;
}
.content-contact__info-list-item:last-child {
  margin: 0;
}

.content-contact__info-list-title {
  margin: 0px 0px 10px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #747474;
}

.content-contact__info-list-link {
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  color: #FFB20C;
}

.content-contact__map {
  width: 100%;
}

.content-contact__map-iframe {
  width: 100%;
  height: 100%;
}
.content-contact__map-iframe iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 770px) {
  .content-contact {
    margin: 50px 0px;
  }
  .content-contact__title {
    margin: 0px 0px 20px;
    text-align: center;
  }
  .content-contact__row {
    flex-direction: column;
  }
  .content-contact__info {
    margin: 0px 0px 20px;
    max-width: 100%;
    min-width: auto;
  }
  .content-contact__info-body {
    padding: 30px;
  }
  .content-contact__info-list-item {
    margin: 0px 0px 20px;
  }
  .content-contact__info-list-title {
    margin: 0px 0px 5px;
  }
  .content-contact__info-list-link {
    font-size: 16px;
    line-height: 22px;
  }
  .content-contact__map-iframe iframe {
    height: 500px;
  }
}
.footer {
  background: #F5F5F5;
}

.main-footer__body {
  padding: 60px 0px;
  display: flex;
}

.main-footer__content {
  margin: 0px 60px 0px 0px;
  display: flex;
  flex-direction: column;
}
.main-footer__content:nth-child(4) {
  flex: auto;
  margin: 0;
}

.main-footer__content-title {
  margin: 0px 0px 30px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFB20C;
}

.main-footer__content-list {
  display: flex;
  flex-direction: column;
}

.main-footer__content-item {
  margin: 0px 0px 10px;
}
.main-footer__content-item:last-child {
  margin: 0;
}

.main-footer__content-link {
  transition: 0.5s all;
  font-family: "Myriad Pro", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 300;
  color: #000000;
}
.main-footer__content-link:hover {
  opacity: 0.5;
}

.main-footer__social {
  display: flex;
}

.main-footer__social-item {
  margin: 0px 10px 0px 0px;
}
.main-footer__social-item:last-child {
  margin: 0;
}

.main-footer__social-link {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFB20C;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
.main-footer__social-link:hover {
  opacity: 0.5;
}

@media (max-width: 1050px) {
  .main-footer__content-title {
    margin: 0px 0px 20px;
    font-size: 20px;
    line-height: 25px;
    text-transform: none;
  }
  .main-footer__content-link {
    font-size: 16px;
    stroke-linejoin: 22px;
  }
}
@media (max-width: 770px) {
  .main-footer__body {
    padding: 50px 0px;
    flex-direction: column;
    align-items: end;
  }
  .main-footer__content {
    margin: 0px 0px 20px;
    width: 100%;
  }
  .main-footer__content:nth-child(4) {
    margin: 0px 0px 30px;
  }
  .main-footer__content-title {
    margin: 0px 0px 10px;
    font-size: 25px;
    line-height: 30px;
  }
  .main-footer__content-item {
    margin: 0px 0px 5px;
  }
  .main-footer__content-link {
    font-size: 18px;
    line-height: 24px;
  }
}
.policy-footer__body {
  padding: 25px 0px;
  border-top: 1px solid #FFB20C;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.policy-footer__logo {
  margin: 0px 0px 0px 0px;
  text-align: center;
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #000000;
}
.policy-footer__logo a {
  display: inline-block;
  transition: 0.5s all;
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #000000;
}
.policy-footer__logo a:hover {
  opacity: 0.5;
}

@media (max-width: 770px) {
  .policy-footer__body {
    padding: 15px 0px;
  }
}