:root {
  --theme_color: #f94949;
  --subtheme_color: #8eb90c;
  --title_color: #0e1c3d;
  --content_color: #5b5b5b;
  --bg_color: linear-gradient(to right, #000, #000);
}
ul {
  list-style: none;
}
a {
  color: #1c232f;
  text-decoration: none;
  font-size: 1rem;
}
i {
  font-style: normal;
}
.swiper_content {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
body {
  font-family: 'Nunito', sans-serif;
}
.only_mobile {
  display: none;
}
.head > span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: var(--subtheme_color);
  border-radius: 5px;
  line-height: 1;
  padding: 8px 24px;
  display: inline-block;
}
.head h1 {
  color: #202021;
  font-size: 60px;
  font-weight: 800;
  line-height: 81px;
}
.head h1 span {
  color: var(--theme_color);
}
.head h2 {
  max-width: 100%;
  font-size: 44px;
  font-weight: 800;
  line-height: 60px;
  color: var(--title_color);
  position: relative;
  width: max-content;
  z-index: 2;
}
.head h2::after {
  content: '';
  display: block;
  width: 102%;
  height: 25px;
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  background-color: #ffdfe0;
  z-index: -1;
}
.button {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  background-color: var(--theme_color);
  border-radius: 29px;
  transition: all 0.3s;
  padding: 17px 33px;
  border: 2px solid var(--theme_color);
}
.button:hover {
  color: var(--theme_color);
  background-color: transparent;
}
.button_more {
  display: inline-block;
  line-height: 1;
  color: #0e1c3d;
  font-size: 20px;
  font-weight: 700;
  border-radius: 28px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  padding: 16px 44.5px;
  transition: all 0.3s;
  background-color: transparent;
}
.button_more:hover {
  background-color: var(--theme_color);
  border-color: var(--theme_color);
  color: #fff;
}
.swiper_btns {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  width: 98%;
  max-width: 1482px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.swiper_btns div {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: url(../img/left-w.svg) no-repeat center / 15%;
  background-color: var(--theme_color);
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.swiper_btns div.swiper-button-disabled {
  cursor: default;
  background-color: #c3c4c8;
  box-shadow: none;
}
.swiper_btns .btn_next {
  background-image: url(../img/right-w.svg);
}
header {
  padding: 22px 0;
  position: sticky;
  z-index: 99;
  left: 0;
  top: -108px;
  transition: all 0.3s;
}
header.sticky {
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header.sticky .header .left .logo {
  top: 5px;
}
header .header .left .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 212px;
  height: 64px;
  position: relative;
  top: 10px;
  left: 15px;
}
header .header .left .logo img {
  width: 210%;
  height: 210%;
  object-fit: contain;
}
header .header .right nav div > ul {
  display: flex;
  gap: 20px;
}
header .header .right nav div > ul > li {
  position: relative;
}
header .header .right nav div > ul > li > a {
  font-size: 17px;
  color: #202021;
  font-weight: 600;
  display: block;
  line-height: 1;
  border-radius: 3px;
  transition: all 0.3s;
  padding: 6.5px 15px;
}
header .header .right nav div > ul > li > a:hover,
header .header .right nav div > ul > li.current-menu-item > a {
  background-color: #fdc564;
}
header .header .right nav div > ul > li:hover ul {
  visibility: visible;
  max-height: 100rem;
}
header .header .right nav div > ul > li ul {
  position: absolute;
  min-width: 10rem;
  background: white;
  border-radius: 0.625rem;
  padding: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  display: block;
  visibility: hidden;
  overflow: hidden;
  max-height: 0;
  top: 35px;
}
header .header .right nav div > ul > li ul li {
  margin-bottom: 0.2rem;
}
header .header .right nav div > ul > li ul li a {
  white-space: nowrap;
  display: block;
  padding: 0.8rem 0;
  transition: all 0.2s ease;
  border-radius: 0.625rem;
  font-size: 0.9rem;
}
header .header .right nav div > ul > li ul li a:hover {
  color: var(--theme_color);
}
header .header .right .icon_search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 22px 0 40px;
  border: 2px dashed var(--subtheme_color);
  transition: all 0.3s;
}
header .header .right .icon_search:hover {
  border-color: var(--theme_color);
}
header .header .right .icon_search:hover::after {
  background-color: var(--theme_color);
}
header .header .right .icon_search::after {
  content: '';
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: url(../img/search.svg) no-repeat center / 50%;
  background-color: var(--subtheme_color);
  transition: all 0.3s;
}
header .header .right .button {
  font-size: 17px;
  padding: 14.5px 31.5px;
  border-radius: 25px;
}
footer {
  overflow: hidden;
  background: url(../img/footer-bg.png) no-repeat center / cover;
}
footer .cta .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 433px;
  padding-top: 30px;
}
footer .cta h2 {
  color: #fff;
}
footer .cta h2::after {
  display: none;
}
footer .cta p {
  color: #fff;
  margin: 0 auto;
  max-width: 540px;
  margin: 12px 0 30px;
}
footer .cta a {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  background-color: #ffc85b;
  border-radius: 29px;
  transition: all 0.3s;
  padding: 16px 44px;
  border: 2px solid #ffc85b;
}
footer .cta a:hover {
  color: #ffc85b;
  background-color: transparent;
}
footer .footer {
  padding: 120px 0 115px;
}
footer .footer .slide_obj strong {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: block;
  margin-bottom: 24px;
}
footer .footer .slide_obj a {
  color: #fff;
  font-size: 17px;
  line-height: 36px;
  opacity: 0.8;
  font-weight: 300;
  transition: all 0.3s;
}
footer .footer .slide_obj a:hover {
  opacity: 1;
  color: var(--theme_color);
}
footer .footer .about_us {
  width: 300px;
}
footer .footer .about_us p {
  color: #fff;
  font-size: 17px;
  line-height: 34px;
  opacity: 0.8;
  margin-bottom: 28px;
  font-weight: 300;
}
footer .footer .contact_us {
  width: 285px;
}
footer .footer .contact_us p {
  color: #fff;
  font-size: 17px;
  line-height: 30px;
  opacity: 0.8;
  font-weight: 300;
}
footer .footer .contact_us li {
  padding-left: 45px;
  position: relative;
  margin-bottom: 1rem;
}
footer .footer .contact_us li::before {
  content: '';
  display: block;
  width: 26px;
  height: 23px;
  background: url(../img/phone.svg) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 8px;
}
footer .footer .contact_us li:nth-child(2)::before {
  background-image: url(../img/email.svg);
}
footer .footer .contact_us li:nth-child(3)::before {
  top: 3px;
  background-image: url(../img/pos.svg);
}
footer .footer .social {
  display: flex;
  gap: 18px;
}
footer .footer .social li a {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: url(../img/facebook.svg) no-repeat center / 20%;
  background-color: #425381;
  transition: all 0.3s;
  text-indent: -9999px;
}
footer .footer .social li a:hover {
  background-color: var(--theme_color);
}
footer .footer .social .twitter a {
  background-size: 45%;
  background-image: url(../img/twitter.svg);
}
footer .footer .social .facebook a {
  background-image: url(../img/facebook.svg);
  background-size: 20%;
}
footer .footer .social .youtube a {
  background-size: 52%;
  background-image: url(../img/youtube.svg);
}
footer .footer .social .instagram a {
  background-size: 42%;
  background-image: url(../img/instagram.svg);
}
footer .footer .social .tiktok a {
  background-size: 35%;
  background-image: url(../img/tiktok.svg);
}footer .footer .social .pinterest a {
  background-size: 35%;
  background-image: url(../img/pinterest.svg);
}
footer .footer_bottom .logo {
  width: 262px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer_bottom .logo img {
  object-fit: contain;
  width: 210%;
  height: 210%;
}
footer .footer_bottom .flex > img {
  width: 350px;
  height: auto;
}
footer .copyright {
  margin-top: 30px;
  padding: 30px 0;
}
footer .copyright p {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  opacity: 0.8;
}
footer .copyright a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  transition: all 0.3s;
  opacity: 0.8;
}
footer .copyright a:hover {
  color: var(--theme_color);
  opacity: 1;
}
footer .copyright ul {
  display: flex;
  gap: 35px;
}
p.center{
  position: relative;
  z-index: 9;
}
.page-id-11 footer {
  padding-top: 270px;
  margin-top: -230px;
  position: relative;
  overflow: visible;
  z-index: 2;
  background: url(../img/footer-bg.svg) no-repeat bottom/100%;
}
.page-id-11 .cta{
  display: none;
}

div.search-block {
  position: fixed;
  z-index: 400;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 55, 96, 0.12);
  width: 100%;
  bottom: -100vh;
  height: 100vh;
  transition: 0.3s ease;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(150px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../img/cloes.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.wd-action-btn:hover {
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}
.search_empty{
  width: 500px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/**************************/
.contact_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 999;
  padding: 0 2rem;
}
.contact_pop.active {
  opacity: 1;
  pointer-events: all;
}
.contact_pop.active .pop_content {
  transform: translate(-50%, -50%);
  position: relative;
}
.contact_pop .mask {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.contact_pop .mask .close {
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../img/close.svg) no-repeat center / contain;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}
.contact_pop .pop_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -50%);
  max-width: 800px;
  height: 725px;
  transition: all 0.3s;
  background-color: #fff;
  border-radius: 10px;
  padding: 75px 3rem 3rem;
  overflow: auto;
}
.contact_pop .pop_content::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

.contact_pop .pop_content::-webkit-scrollbar-track,
.contact_pop .pop_content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 5px solid transparent;
}

.contact_pop .pop_content::-webkit-scrollbar-track {
  box-shadow: 1px 1px 5px transparent inset;
}

.contact_pop .pop_content::-webkit-scrollbar-thumb {
  min-height: 20px;
  background-clip: content-box;
  box-shadow: 0 0 0 5px #999 inset;
}

.contact_pop .pop_content::-webkit-scrollbar-corner {
  background: transparent;
}
.contact_pop .pop_content strong {
  display: block;
  text-align: center;
  font-size: 24px;
  color: #333;
  margin-bottom: 18px;
}
.contact_pop .pop_content p {
  font-size: 14px;
  color: #333;
  text-align: center;
  margin-bottom: 55px;
}
.contact_pop .pop_content form {
  display: grid;
  gap: 20px 5.4%;
  grid-template-columns: repeat(2, 1fr);
}
.contact_pop .pop_content form textarea {
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  width: 100%;
  height: 100%;
  font-family: inherit;
}
.contact_pop .pop_content form span[data-name="message"]{
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 5;
}
.contact_pop .pop_content form input {
  height: 42px;
  padding: 0 1rem;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
}
/* .contact_pop .pop_content form span.wpcf7-form-control-wrap{
  grid-column-start: 2;
  grid-column-end: 3;
} */
.contact_pop .pop_content form input[type="submit"] {
  grid-column-end: 3;
  width: max-content;
  padding: 10px 40px;
  font-size: 15px;
  font-weight: 400;
  border: none;
  border-radius: 5px;
  background-color: var(--theme_color);
  color: white;
  margin: 20px 0 0 auto;
  transition: all 0.3s;
  line-height: 1.5;
  height: auto;
}
.contact_pop .pop_content form input[type="submit"]:hover {
  background-color: var(--subtheme_color);
  border: none;
}
.contact_pop .pop_content ul {
  padding-top: 15px;
  display: flex;
  gap: 5.4%;
}
.contact_pop .pop_content ul li {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 20px;
}
.contact_pop .pop_content ul li i {
  display: block;
  width: 60px;
  height: 60px;
  margin-right: 25px;
}
body .contact_pop .wpcf7-not-valid-tip{
  margin-top: 0.5rem;
  font-size: 14px;
}
body .wpcf7 form.invalid .wpcf7-response-output, body .wpcf7 form.unaccepted .wpcf7-response-output, body .wpcf7 form.payment-required .wpcf7-response-output{
  padding: 0;
  border: none;
  margin-top: 1rem;
  font-size: 14px;
}
.contact_pop .pop_content ul li i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact_pop .pop_content ul li strong {
  text-align: left;
  font-size: 20px;
  font-weight: normal;
  color: #242424;
  margin-bottom: 5px;
}
.contact_pop .pop_content ul li a {
  font-size: 1rem;
  color: #777;
}
.contact_pop .pop_content ul li:last-child i {
  width: 46px;
  height: 46px;
}

.product_banner .icon-content{
  background: url('../img/products-icons.svg') no-repeat top/100%;
}
/**************************/
footer{
  position: relative;
}
.footer-icon{
  display: inline-block;
  position: absolute;
  width: 110px;
  height: 106px;
  background: url('../img/footer-rocket.svg') no-repeat center/contain;
  left: 60px;
  bottom: 110px;
  z-index: 9;
  transition: all 2s;
}

.about_advantage {
  z-index: 2 !important;
}

.side_contact_btn {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: url(../img/question.svg) no-repeat left+1rem center/18px;
  background-color: var(--theme_color);
  color: #fff;
  z-index: 99;
  font-size: 1rem;
  border-radius: 20px;
  line-height: 40px;
  padding: 0 1rem 0 2.6rem;
  transition: all .3s;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.side_contact_btn:hover {
  background-color: var(--subtheme_color);
}

.product_smooth, .product_bright_rich, .product_safe, .product_ways, .product_free, .product_spec {
  display: none;
}
.product_faq {
  margin-top: -80px;
}