:root {
  --index: calc(1vw + 1vh);
  --mainFont: "Poppins", sans-serif;
  --mainColor: #143A60;
  --green: #56D26A;
}

html {
  position: relative;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
html.open-cart {
  overflow: hidden;
}
html.open-cart::after {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
html::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body {
  position: relative;
  font-family: var(--mainFont);
  font-optical-sizing: auto;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 160%;
  color: var(--mainColor);
  background: #fff;
  min-width: 375px;
  overflow-x: hidden;
}
@media screen and (max-width: 1023px) {
  body {
    font-size: 16px;
  }
}
body.error404, body.search, body.woocommerce-page {
  padding-top: 230px;
}
@media screen and (max-width: 1080px) {
  body.error404, body.search, body.woocommerce-page {
    padding-top: 100px;
  }
}

.hidden {
  display: none;
}

.main-wrapper {
  overflow: hidden;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

[class*=__container] {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
a.link-more {
  color: var(--darkGrey);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--pink);
  text-decoration-color: transparent;
  transition: all 0.3s ease;
}

b,
strong {
  font-weight: 900;
}

h1 {
  font-size: 64px;
  line-height: normal;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 38px;
  }
}
@media screen and (max-width: 520px) {
  h1 {
    font-size: 34px;
  }
}
@supports (font-size: clamp(1px, 2vw, 3px)) {
  h1 {
    font-size: clamp(34px, 5vw, 64px);
  }
}

h2 {
  font-weight: 600;
  line-height: 120%;
  font-size: 56px;
}
h2.section-title {
  margin-bottom: 48px;
}
@media screen and (max-width: 1023px) {
  h2.section-title {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1023px) {
  h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 520px) {
  h2 {
    font-size: 28px;
  }
}
@supports (font-size: clamp(1px, 2vw, 3px)) {
  h2 {
    font-size: clamp(28px, 4vw, 56px);
  }
}

h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (max-width: 1023px) {
  h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 19px;
  }
}
@media screen and (max-width: 520px) {
  h3 {
    font-size: 18px;
  }
}
@supports (font-size: clamp(1px, 2vw, 3px)) {
  h3 {
    font-size: clamp(18px, 3vw, 28px);
  }
}

h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 39px;
}

h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}

h6 {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
}

p {
  font-size: 18px;
  line-height: 160%;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  p {
    font-size: 16px;
  }
}

h1.wp-block-heading {
  margin-bottom: 30px;
}

h2.wp-block-heading {
  margin-bottom: 20px;
}

h3.wp-block-heading {
  margin-bottom: 10px;
}

h4.wp-block-heading {
  margin-bottom: 10px;
}

h5.wp-block-heading {
  margin-bottom: 10px;
}

h6.wp-block-heading {
  margin-bottom: 10px;
}

hr {
  height: 1px;
  border: none;
  background: #000;
  margin: 40px 0;
}

ul,
ol {
  font-size: initial;
}

ul {
  padding-left: 20px;
}

blockquote,
blockquote.wp-block-quote {
  overflow-wrap: break-word;
  margin: 0;
  padding: 20px 20px 20px 40px;
  border-left: 5px solid var(--mainColor);
  background: #f6f6f6;
  width: auto;
}
blockquote p,
blockquote.wp-block-quote p {
  font-weight: 500;
  margin-bottom: 10px;
}
blockquote cite,
blockquote.wp-block-quote cite {
  font-size: 14px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=number],
input[type=date],
input[type=datetime-local],
input[type=month],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
textarea {
  border: 2px solid #194B82;
  border-radius: 32px;
  padding: 16px 14px;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  color: var(--mainColor);
  background-position: center right 16px;
  background-origin: border-box;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=url]::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--mainColor);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=password]::placeholder,
input[type=number]::placeholder,
input[type=date]::placeholder,
input[type=datetime-local]::placeholder,
input[type=month]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=time]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
  color: var(--mainColor);
}
input[type=text]:focus-visible,
input[type=email]:focus-visible,
input[type=tel]:focus-visible,
input[type=password]:focus-visible,
input[type=number]:focus-visible,
input[type=date]:focus-visible,
input[type=datetime-local]:focus-visible,
input[type=month]:focus-visible,
input[type=search]:focus-visible,
input[type=tel]:focus-visible,
input[type=time]:focus-visible,
input[type=url]:focus-visible,
textarea:focus-visible {
  outline-color: rgba(20, 58, 96, 0.27) !important;
  outline-offset: 2px !important;
}
input[type=text]:-webkit-autofill,
input[type=email]:-webkit-autofill,
input[type=tel]:-webkit-autofill,
input[type=password]:-webkit-autofill,
input[type=number]:-webkit-autofill,
input[type=date]:-webkit-autofill,
input[type=datetime-local]:-webkit-autofill,
input[type=month]:-webkit-autofill,
input[type=search]:-webkit-autofill,
input[type=tel]:-webkit-autofill,
input[type=time]:-webkit-autofill,
input[type=url]:-webkit-autofill,
textarea:-webkit-autofill {
  background-color: #EEF1F5 !important;
  -webkit-box-shadow: 0 0 0px 1000px #EEF1F5 inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
input[type=text]:-moz-autofill,
input[type=email]:-moz-autofill,
input[type=tel]:-moz-autofill,
input[type=password]:-moz-autofill,
input[type=number]:-moz-autofill,
input[type=date]:-moz-autofill,
input[type=datetime-local]:-moz-autofill,
input[type=month]:-moz-autofill,
input[type=search]:-moz-autofill,
input[type=tel]:-moz-autofill,
input[type=time]:-moz-autofill,
input[type=url]:-moz-autofill,
textarea:-moz-autofill {
  box-shadow: 0 0 0px 1000px #EEF1F5 inset !important;
  -moz-box-shadow: 0 0 0px 1000px #EEF1F5 inset !important;
  background-color: #EEF1F5 !important;
}

textarea {
  resize: none;
}

section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

label[for] {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: var(--darkGrey);
  margin-bottom: 6px;
}

.entry-content p {
  margin-bottom: 20px;
}

ul.wp-block-page-list {
  list-style: none;
  padding: 0;
  font-size: 18px;
  line-height: 32px;
  color: var(--darkGrey);
}

.btn-primary {
  display: inline-flex;
  cursor: pointer;
  background-color: var(--green);
  color: var(--mainColor);
  padding: 16px 24px;
  border-radius: 290px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-primary.btn--small {
  padding: 12px 22px;
  font-size: 16px;
  line-height: 1;
}
@media (any-hover: hover) {
  .btn-primary:hover {
    background-color: var(--mainColor);
    color: var(--green);
    transition: background-color 0.3s ease, color 0.3s ease;
  }
}

.button-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: var(--green);
  transition: background-color 0.12s ease, transform 0.12s ease;
}
@media (any-hover: hover) {
  .button-circle:hover {
    transform: scale(1.15);
    background-color: var(--mainColor);
    transition: background-color 0.12s ease, transform 0.12s ease;
  }
}

.btn-gray {
  display: inline-flex;
  cursor: pointer;
  background-color: #e5e5e5;
  color: var(--mainColor);
  padding: 16px 24px;
  border-radius: 290px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-gray.btn--small {
  padding: 12px 22px;
  font-size: 16px;
  line-height: 1;
}
@media (any-hover: hover) {
  .btn-gray:hover {
    background-color: var(--mainColor);
    color: var(--green);
    transition: background-color 0.3s ease, color 0.3s ease;
  }
}

.site-main__container {
  margin-bottom: 124px;
}

button#open-search {
  flex-shrink: 0;
  font-size: 25px;
  color: #fff;
  position: absolute;
  right: 0;
}

.search-box {
  display: flex;
  align-items: center;
  transition: transform 0.12s ease;
}
.search-box.search-closed form.search-form input[type=search].search-field {
  width: 0;
  padding: 0;
  transition: width 0.3s ease, padding 0.3s ease;
}
@media (any-hover: hover) {
  .search-box.search-closed:hover {
    transform: scale(1.15);
    transition: transform 0.12s ease;
  }
  .search-box.search-closed:hover form.search-form {
    background-color: var(--mainColor);
    transition: background-color 0.12s ease;
  }
}
.search-box form.search-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 32px;
  overflow: hidden;
  transition: background-color 0.12s ease;
  min-width: 62px;
  min-height: 62px;
  position: relative;
}
.search-box form.search-form input[type=search].search-field {
  border: none;
  background-color: var(--green);
  color: #fff;
  max-width: 276px;
  min-height: 62px;
  width: 276px;
  padding: 18px 72px 18px 14px;
  transition: width 0.3s ease, padding 0.3s ease;
}

.search-box-static {
  padding: 32px 0;
}
.search-box-static form#search-form {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.search-box-static form#search-form button#open-search {
  position: static;
}
.search-box-static form#search-form input[type=search] {
  flex: 1 320px;
}

input.wpcf7-submit {
  display: inline-flex;
  border: none;
  cursor: pointer;
  background-color: var(--green);
  color: var(--mainColor);
  padding: 16px 24px;
  border-radius: 290px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (any-hover: hover) {
  input.wpcf7-submit:hover {
    background-color: var(--mainColor);
    color: var(--green);
    transition: background-color 0.3s ease, color 0.3s ease;
  }
}

input.wpcf7-form-control.wpcf7-not-valid {
  background-position: center right 14px;
  background-origin: border-box;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  transition: border-color 0.25s ease-in;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzE3NjM4XzYwNzApIj4KPHBhdGggZD0iTTguMDAwNjUgNS4zMzMzN1Y4LjAwMDA0TTguMDAwNjUgMTAuNjY2N0g4LjAwNzMyTTE0LjY2NzMgOC4wMDAwNEMxNC42NjczIDExLjY4MTkgMTEuNjgyNiAxNC42NjY3IDguMDAwNjUgMTQuNjY2N0M0LjMxODc1IDE0LjY2NjcgMS4zMzM5OCAxMS42ODE5IDEuMzMzOTggOC4wMDAwNEMxLjMzMzk4IDQuMzE4MTQgNC4zMTg3NSAxLjMzMzM3IDguMDAwNjUgMS4zMzMzN0MxMS42ODI2IDEuMzMzMzcgMTQuNjY3MyA0LjMxODE0IDE0LjY2NzMgOC4wMDAwNFoiIHN0cm9rZT0iI0YwNDQzOCIgc3Ryb2tlLXdpZHRoPSIxLjMzMzMzIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8xNzYzOF82MDcwIj4KPHJlY3Qgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2IiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=");
  border-color: #F04438;
  animation: shake 0.4s ease;
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-8px);
  }
  40% {
    transform: translateX(8px);
  }
  60% {
    transform: translateX(-6px);
  }
  80% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}
.hero-block {
  position: relative;
  margin-bottom: 10px;
  padding-top: 230px;
}
.hero-block.with-thumb {
  padding-top: 0;
  margin-bottom: 124px;
}
.hero-block.with-thumb .hero-block__container {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 15.5%;
  z-index: 1;
}
.hero-block.with-thumb h1 {
  color: #FFF;
}
.hero-block h1 {
  line-height: 110%;
  max-width: 748px;
  width: 100%;
}
.hero-block .btn-primary {
  margin-top: 24px;
}

.hero-image {
  position: relative;
  max-height: 796px;
  border-radius: 0 0 80px 80px;
  overflow: hidden;
  height: 100vh;
}
@media screen and (max-width: 1536px) {
  .hero-image {
    max-height: 637px;
    border-radius: 0 0 76px 76px;
  }
}
@media screen and (max-width: 1279px) {
  .hero-image {
    max-height: 530px;
    border-radius: 0 0 64px 64px;
  }
}
@media screen and (max-width: 1023px) {
  .hero-image {
    max-height: 424px;
    border-radius: 0 0 50px 50px;
  }
}
@media screen and (max-width: 767px) {
  .hero-image {
    max-height: 320px;
    border-radius: 0 0 38px 38px;
  }
}
@media screen and (max-width: 520px) {
  .hero-image {
    max-height: 320px;
    border-radius: 0 0 20px 20px;
  }
}
@supports (font-size: clamp(1px, 2vw, 3px)) {
  .hero-image {
    max-height: clamp(320px, 41.5vw, 796px);
    border-radius: 0 0 clamp(20px, 5vw, 80px) clamp(20px, 5vw, 80px);
  }
}
.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(20deg, rgb(0, 0, 0) -70%, rgba(255, 255, 255, 0) 100%);
}
.hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wpcf7.form-sended {
  opacity: 0;
  visibility: hidden;
  transition: all 0.12s ease;
}

.formular-success-message {
  position: absolute;
  background: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.12s ease;
}
.formular-success-message.success-send {
  opacity: 1;
  visibility: visible;
  transition: all 0.12s ease;
}

.widget-title {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 24px;
}

body.search-results header.entry-header h3.entry-title > a {
  font-size: inherit;
}
body.search-results article.product {
  margin-bottom: 20px;
}
body.search-results article.product:last-child {
  margin-bottom: 0;
}
body.search-results article.product > a {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
body.search-results article.product > a .search-product-thumbnail {
  max-width: 120px;
  width: 100%;
  aspect-ratio: 1/1;
}

.error-404 {
  text-align: center;
}
.error-404 .page-content p {
  font-size: 26px;
}

@media screen and (max-width: 1536px) {
  .hero-block {
    padding-top: 150px;
  }
}
@media screen and (max-width: 1080px) {
  .btn-primary {
    font-size: 14px;
    padding: 12px 18px;
  }
  .button-circle {
    width: 48px;
    height: 48px;
  }
  button#open-search {
    font-size: 18px;
  }
  .search-box form.search-form {
    min-width: 48px;
    min-height: 48px;
  }
  .search-box form.search-form input[type=search].search-field {
    min-height: 48px;
    padding: 10px 20px 10px 20px;
    max-width: 335px;
  }
}
@media screen and (max-width: 1023px) {
  .site-main__container {
    margin-bottom: 60px;
  }
  input[type=text], input[type=email], input[type=tel], input[type=password], input[type=number], input[type=date], input[type=datetime-local], input[type=month], input[type=search], input[type=tel], input[type=time], input[type=url], textarea {
    padding: 12px 14px;
  }
  .hero-block {
    padding-top: 100px;
  }
  .hero-block.with-thumb {
    padding-top: 0;
    margin-bottom: 60px;
  }
  .formular-success-message {
    padding: 20px;
  }
  input.wpcf7-submit {
    padding: 10px 18px;
  }
  .error-404 .page-content p {
    font-size: 16px;
  }
  .search-box-static form#search-form {
    gap: 10px;
  }
  .search-box-static form#search-form input[type=search] {
    flex: 1;
    padding: 9px 14px;
  }
  .widget-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .search-box form.search-form input[type=search].search-field {
    z-index: 20;
    position: fixed;
    top: 78px;
    width: calc(100% - 40px);
    max-width: initial;
    right: 20px;
  }
}