@import url(https://fonts.googleapis.com/css2?family=Bellota+Text:ital,wght@0,300&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Bellota+Text:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap);
body {
  box-sizing: border-box;
}
body * {
  box-sizing: border-box;
}

#scroller {
  display: none;
}

:root {
  --font-size-h1: clamp(2rem, 3.4vw, 5.5rem);
  --font-size-h2: clamp(2rem,4.058vw,4.5rem);
  --font-size-h3: clamp(20px, 1.588vw, 42px);
  --font-size-p: clamp(1rem, 1.3235vw, 26px);
  --font-size-menu: 2vw;
  --font-size-button: clamp(1rem, 1.76vw, 1.6rem);
  --font-family:"Roboto Flex", sans-serif;
  --font-family2:"Bellota Text", sans-serif;
  --margin-bottom-heading: 1em;
  --color-p-white: #fdfdfd;
  --color-p-dark: #3B484D;
  --color-blue-light: #b6daf0;
  --color-blue: #5CC6F7;
  --color-dark:#3B484D;
  --color-gray:#687378;
  --container-padding: 1vw;
  --container-margin: 1vw;
  --border-radius-main:32px;
  --transition-main: all .3s ease-in-out;
}

@media (min-width: 1680px) {
  :root {
    --font-size-h1: clamp(2rem, 3.4vw, 5.5rem);
    --font-size-h2: clamp(2rem,4.058vw,3.5rem);
    --font-size-h3: clamp(20px, 1.588vw, 36px);
    --font-size-p: clamp(1rem, 1.3235vw, 20px);
    --font-size-menu: 2vw;
    --font-size-button: clamp(1rem, 1.76vw, 1.6rem);
  }
}
.container.title {
  justify-content: center;
  align-items: center;
  text-align: center;
  align-self: center;
  position: relative;
}
.container.title h2 {
  margin-bottom: 1.2em;
}

h1, h2 {
  font-family: var(--font-family2);
  font-weight: 900;
  margin: 0;
}

h3, h4, p, ul, li, a, button {
  font-family: var(--font-family);
  margin: 0;
  font-optical-sizing: auto;
  font-weight: 300;
}

h1 {
  font-size: var(--font-size-h1);
  margin-bottom: var(--margin-bottom-heading);
  font-weight: 400;
}

h2 {
  font-size: var(--font-size-h2);
  margin-bottom: var(--margin-bottom-heading);
  font-weight: 400;
}

h3 {
  font-size: var(--font-size-h3);
  margin-bottom: var(--margin-bottom-heading);
  font-weight: 400;
}

h4 {
  font-size: var(--font-size-h3);
  margin-bottom: var(--margin-bottom-heading);
  font-weight: 400;
  text-transform: uppercase;
  color: #566270;
}

p, a {
  font-size: var(--font-size-p);
  margin-bottom: var(--margin-bottom-heading);
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  flex-direction: column;
  min-height: 100vh;
}
section.partial-height {
  min-height: 80vh;
}
@media (max-width: 1068px) {
  section {
    padding: 45px 0;
    min-height: 0;
  }
  section.partial-height {
    min-height: 0;
  }
}
@media (max-width: 734px) {
  section {
    min-height: 0;
    padding: 35px 0;
  }
  section.partial-height {
    min-height: 0;
  }
}
@media (max-width: 374px) {
  section {
    padding: 25px 0;
  }
}

.container {
  max-width: 100%;
  margin-left: var(--container-margin);
  margin-right: var(--container-margin);
  display: flex;
  flex-direction: column;
  width: 1390px;
}
.container.row {
  width: 1390px;
  max-width: 100%;
  flex-direction: row;
  position: relative;
}
@media (max-width: 1680px) {
  .container, .container.row {
    width: 1200px;
    margin-left: unset;
    margin-right: unset;
  }
}
@media (max-width: 1199px) {
  .container {
    padding-left: var(--container-margin);
    padding-right: var(--container-margin);
    max-width: 100%;
  }
}
@media (max-width: 1068px) {
  .container {
    margin-left: var(--container-margin);
    margin-right: var(--container-margin);
    max-width: 100%;
  }
}
@media (max-width: 734px) {
  .container {
    max-width: 100%;
    margin-left: var(--container-margin);
    margin-right: var(--container-margin);
  }
}
@media (max-width: 374px) {
  .container {
    max-width: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    margin-left: unset;
    margin-right: unset;
  }
}
@media (max-width: 1068px) {
  .container {
    margin-left: var(--container-margin);
    margin-right: var(--container-margin);
    max-width: 100%;
  }
}
@media (max-width: 734px) {
  .container {
    max-width: 100%;
    margin-left: var(--container-margin);
    margin-right: var(--container-margin);
  }
}
@media (max-width: 374px) {
  .container {
    max-width: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    margin-left: unset;
    margin-right: unset;
  }
}

.hero-section {
  min-height: 120vh;
  height: fit-content;
  padding: 5vh 0;
  overflow-x: hidden;
}
@media (min-width: 1600px) {
  .hero-section {
    height: fit-content;
    min-height: unset;
  }
}
@media (max-width: 1068px) {
  .hero-section {
    height: fit-content;
  }
}

.row {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}
.row.wrap {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1068px) {
  .row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .row.wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .row.wrap .item.col-30 {
    flex: 0 0 48%;
    max-width: 48%;
  }
}
@media (max-width: 734px) {
  .row {
    flex-direction: column;
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }
  .row.wrap .item.col-30 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.col {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 1068px) {
  .col {
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 2em;
    padding: unset;
  }
}
@media (max-width: 734px) {
  .col {
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 2em;
  }
}

.col-25 {
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1068px) {
  .col-25 {
    flex: 0 0 32%;
    max-width: 32%;
    padding-left: unset;
    padding-right: unset;
  }
}
@media (max-width: 734px) {
  .col-25 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.col-30 {
  flex: 0 0 30%;
  max-width: 30%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1068px) {
  .col-30 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: unset;
    padding-right: unset;
  }
}
@media (max-width: 734px) {
  .col-30 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.col-40 {
  flex: 0 0 40%;
  max-width: 40%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1068px) {
  .col-40 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: unset;
    padding-right: unset;
  }
}
@media (max-width: 734px) {
  .col-40 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.col-50 {
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 1068px) {
  .col-50 {
    padding-left: unset;
    padding-right: unset;
  }
}
@media (max-width: 734px) {
  .col-50 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.col-60 {
  flex: 0 0 60%;
  max-width: 60%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1068px) {
  .col-60 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: unset;
    padding-right: unset;
  }
}
@media (max-width: 734px) {
  .col-60 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.col-70 {
  flex: 0 0 70%;
  max-width: 70%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1068px) {
  .col-70 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: unset;
    padding-right: unset;
  }
}
@media (max-width: 734px) {
  .col-70 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.col-center-start {
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 734px) {
  .col-center-start {
    justify-content: center;
    align-items: flex-start;
    text-align: start;
  }
}

.col-center-center {
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 734px) {
  .col-center-center {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

.col-center-end {
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 734px) {
  .col-center-end {
    justify-content: center;
    align-items: flex-end;
  }
}

.col-start-start {
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 1068px) {
  .col-start-start {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: start;
  }
}

@media (max-width: 1068px) {
  .mob-none {
    display: none;
  }
}

@media (max-width: 1068px) {
  .mob-order-first {
    order: -1;
  }
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

p.hashtag {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1068px) {
  p.hashtag {
    display: none;
  }
}

button {
  border: none;
  outline: none;
  background: unset;
}

* {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: unset;
}
a:hover {
  color: unset;
}

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

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html[lang=he-IL] .btn a {
  display: flex;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-style: solid;
  border-radius: 50%;
  border-width: 1px;
  border-color: var(--color-blue);
  color: var(--color-blue);
  --diametr:46px;
  cursor: pointer;
  min-width: calc(var(--diametr) * 2.86);
  position: relative;
  overflow: hidden;
  transition: all 0.6s;
}
@media (max-width: 1068px) {
  html[lang=he-IL] .btn a {
    --diametr:34px;
  }
}
html[lang=he-IL] .btn a:after {
  content: "";
  width: 0;
  height: 100%;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 60%;
  position: absolute;
  background: var(--color-blue);
  right: -1%;
  transition: all 0.6s;
  left: 0;
  z-index: 1;
}
html[lang=he-IL] .btn a:hover:after {
  border-top-left-radius: 75%;
  border-bottom-left-radius: 85%;
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
  width: 120%;
}
html[lang=he-IL] .btn a p {
  padding: 0 5%;
  margin: unset;
  z-index: 4;
  transition: all 0.6s;
  color: var(--color-blue);
  width: 100%;
}
html[lang=he-IL] .btn a:hover p {
  color: var(--color-p-white);
}

.btn {
  width: fit-content;
}
.btn a {
  display: flex;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-style: solid;
  border-radius: 50%;
  border-width: 1px;
  border-color: var(--color-blue);
  color: var(--color-blue);
  --diametr:46px;
  cursor: pointer;
  min-width: calc(var(--diametr) * 2.86);
  position: relative;
  overflow: hidden;
  transition: all 0.6s;
}
@media (max-width: 1068px) {
  .btn a {
    --diametr:34px;
  }
}
.btn a:after {
  content: "";
  width: 0;
  height: 100%;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 60%;
  position: absolute;
  background: var(--color-blue);
  left: -1%;
  transition: all 0.6s;
  right: 0;
  z-index: 1;
}
.btn a:hover:after {
  border-top-right-radius: 75%;
  border-bottom-right-radius: 85%;
  width: 120%;
}
.btn a p {
  padding: 0 5%;
  margin: unset;
  z-index: 4;
  transition: all 0.6s;
  color: var(--color-blue);
  width: 100%;
}
.btn a:hover p {
  color: var(--color-p-white);
}

button:not(.btn, .slider-arrow, .header__burger) {
  display: flex;
  background-color: transparent;
  border: 1px solid var(--color-blue);
  color: var(--color-p-dark);
  cursor: pointer;
  border-radius: var(--border-radius-main);
  transition: all ease-in-out 0.3s;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
}
button:not(.btn, .slider-arrow, .header__burger) a {
  margin: unset;
  width: 100%;
  height: 100%;
  padding: 0.5em 2.8em 0.5em 2.8em;
  line-height: 1em;
  display: flex;
  text-align: center;
}
button:not(.btn, .slider-arrow, .header__burger):hover {
  background-color: var(--color-blue);
  color: var(--color-p-white);
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-dark);
  border-top-right-radius: var(--border-radius-main);
  border-top-left-radius: var(--border-radius-main);
}
footer .container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 3em;
}

.header {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.3s;
  z-index: 97;
  padding: 12px 0;
}
.header .logo {
  display: none;
}
@media (max-width: 1068px) {
  .header .logo {
    display: flex;
    align-items: center;
    height: 60px;
    margin: unset;
  }
  .header .logo img {
    height: 100%;
  }
  .header #menu-header-menu {
    padding: 120px 0 0 0;
    width: 100%;
  }
}
.header .container {
  border-bottom: 1px solid var(--color-blue-light);
}
.header .header__logo {
  transition: all ease-in-out 0.3s;
  margin: unset;
}
@media (max-width: 1068px) {
  .header .header__logo {
    display: none;
  }
}
.header.active {
  box-shadow: 0px 15px 10px -14px var(--color-p-dark);
  background-color: rgba(255, 255, 255, 0.9);
}
.header.active .header__logo {
  display: block;
}
.header.active .header__menu .menu__links > li a {
  color: var(--color-p-dark);
}
.header.active .header__menu .menu__links > li:not(.menu-item-has-children) > a::before {
  background: var(--color-p-dark);
}
.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header .header__logo img {
  width: clamp(120px, 8.3vw, 160px);
}
.header .header__menu {
  width: 100%;
}
.header .header__menu .menu__wrapper {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.header .header__menu .menu__links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.header .header__menu .menu__links .current-menu-item > a {
  color: var(--color-blue-light);
}
.header .header__menu .menu__links > li {
  position: relative;
}
.header .header__menu .menu__links > li:hover > ul.sub-menu {
  transform: scaleY(1);
}
.header .header__menu .menu__links > li.menu-item-has-children > a {
  position: relative;
}
.header .header__menu .menu__links > li a {
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: clamp(18px, 1.04vw, 20px);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-p-dark);
  position: relative;
  white-space: nowrap;
}
.header .header__menu .menu__links > li a:hover {
  color: var(--color-blue-light);
}
.header .header__menu .menu__links > li ul.sub-menu {
  display: grid;
  grid-gap: 8px 0;
  z-index: 2;
}
.header .header__menu .menu__links > li > ul.sub-menu {
  position: absolute;
  top: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.2s ease-in-out;
}
.header .header__menu .menu__links > li > ul.sub-menu li:first-child {
  padding-top: 10px;
}
.header .header__menu .menu__links > li > ul.sub-menu > li > a {
  transition: all ease-in-out 0.3s;
}
.header .header__menu .menu__links > li > ul.sub-menu > li > a:hover {
  color: var(--color-blue-light);
}
.header .header__closer {
  display: none;
}
.header .header__burger {
  cursor: pointer;
  height: 30px;
  display: none;
}
@media (max-width: 1068px) {
  .header .header__burger {
    display: block;
  }
}
.header .header__burger span {
  position: relative;
  display: block;
  width: 40px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  height: 3px;
  background: var(--color-p-dark);
}
.header .header__burger span::before, .header .header__burger span::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  height: 3px;
  background: var(--color-p-dark);
}
.header .header__burger span::before {
  top: -12px;
}
.header .header__burger span::after {
  top: 12px;
}
.header .language {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 50px 0 20px;
}
.header .language > ul.menu_lang {
  display: contents;
  color: var(--color-p-dark);
  transition: all ease-in-out 0.3s;
}
.header .language > ul.menu_lang li.menu-item-has-children > a {
  position: relative;
}
.header .language > ul.menu_lang .menu-item {
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 500;
  line-height: 21px;
  color: var(--color-p-dark);
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .language > ul.menu_lang .menu-item:hover > ul.sub-menu {
  transform: scaleY(1);
}
.header .language > ul.menu_lang .menu-item > ul.sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  padding: 0;
  margin: 0;
  transform: scaleY(0);
  transition: all ease-in-out 0.3s;
  transform-origin: top;
}

@media (max-width: 1068px) {
  .header .header__menu {
    margin: 0;
    position: fixed;
    top: 0;
    right: -70vw;
    z-index: 99;
    width: 40vw;
    height: 100vh;
    background-color: #222326;
    transition: all ease-in-out 0.5s;
  }
  .header .header__menu.active {
    height: 70px;
    right: 0;
  }
  .header .header__menu .menu__wrapper {
    width: 100%;
    margin: 80px 0 0;
  }
  .header .header__menu .menu__links {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .header .header__menu .menu__links > li a {
    color: var(--color-blue-light);
  }
  .header .header__menu .menu__links > li:not(:last-child) {
    margin: 0 0 14px;
  }
  .header .header__menu .menu__links > li:hover > ul.sub-menu {
    transform: unset;
    max-height: 350px;
    padding: 10px 14px;
  }
  .header .header__menu .menu__links > li ul.sub-menu {
    display: grid;
    grid-gap: 8px 0;
  }
  .header .header__menu .menu__links > li > ul.sub-menu {
    position: static;
    top: unset;
    padding: 0;
    overflow: hidden;
    background-color: #181b1f;
    transform: unset;
    transform-origin: unset;
    max-height: 0;
  }
  .header .header__menu .header__closer {
    display: inline-block;
    font-size: 50px;
    line-height: 0;
    color: var(--color-blue-light);
    position: absolute;
    top: 80px;
    right: 15px;
    cursor: pointer;
  }
  .header.active .header__menu .menu__links > li a {
    color: #fff;
    transition: all ease-in-out 0.3s;
  }
  .header .header__inner {
    justify-content: space-between;
  }
  .header.active .header__inner {
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .header {
    height: unset;
  }
  .header .header__inner {
    padding: 10px 0;
  }
  .header .header__logo {
    width: fit-content;
  }
  .header .btn-common {
    display: none;
  }
  .header .header__btns-mob {
    display: grid;
    grid-template-columns: 40px;
    grid-gap: 0 30px;
    margin: 0 50px 0 auto;
  }
  .header .header__btns-mob img {
    height: 40px;
  }
  .header .language {
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .header {
    padding: unset;
  }
  .header .header__logo img {
    min-width: unset;
  }
  .header .header__btns-mob {
    grid-template-columns: 30px;
    padding: 0 10px;
    margin: 0 auto;
  }
  .header .header__btns-mob img {
    width: 30px;
    height: 30px;
  }
  .header .header__menu {
    width: 40vw;
    right: -100vw;
  }
  .header .header__menu .header__closer {
    top: 50px;
    font-size: 30px;
  }
}
html[lang=he-IL] p.hashtag {
  right: 0;
  left: unset;
}
html[lang=he-IL] body:not(.single-post) #firstBlock .container.row .text-col h1.second-title {
  padding-right: unset;
  padding-left: 11%;
}
@media (max-width: 1068px) {
  html[lang=he-IL] body:not(.single-post) #firstBlock .container.row .text-col h1.second-title {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
}
html[lang=he-IL] #firstBlock .col.text-col .description {
  padding: 0 0 0 21%;
}
@media (max-width: 1068px) {
  html[lang=he-IL] #firstBlock .col.text-col .description {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
}
html[lang=he-IL] #contact .col.text-col .description {
  padding: 0 0 0 21%;
}
@media (max-width: 1068px) {
  html[lang=he-IL] #contact .col.text-col .description {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
}
html[lang=he-IL] #reviews .slider .slider-arrow-left {
  right: 10px;
  left: unset;
}
html[lang=he-IL] #reviews .slider .slider-arrow-right {
  left: 10px;
  right: unset;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-p-white);
  overflow-x: hidden;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1068px) {
  body {
    padding: 0 15px;
  }
}
body h2, body h1, body h3, body p {
  color: var(--color-p-dark);
}

* {
  box-sizing: border-box;
}

#firstBlock .col.text-col h2 {
  margin: 1em 0;
}
#firstBlock .col.text-col .description {
  padding: 0 21% 0 0;
}
@media (max-width: 1068px) {
  #firstBlock .col.text-col {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
    order: 2;
  }
  #firstBlock .col.text-col h2 {
    margin: 15px 0;
  }
  #firstBlock .col.text-col .btn {
    margin: 15px 0 0 0;
    padding: unset;
  }
  #firstBlock .col.text-col .description {
    padding: unset;
  }
}
#firstBlock .btn {
  margin-top: 3.1em;
  padding: 20% 0 0 0;
}
#firstBlock img.feel {
  border-radius: var(--border-radius-main);
  object-fit: cover;
  aspect-ratio: 1/1;
}
@media (max-width: 1068px) {
  #firstBlock img.feel {
    aspect-ratio: 1/1;
  }
  #firstBlock .btn {
    margin-top: 2em;
  }
}
#directions {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: unset;
}
#directions .container {
  min-height: fit-content;
}
#directions .container h2 {
  margin-bottom: 0.5em;
}
#directions .container .grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  height: 100%;
}
@media (max-width: 1068px) {
  #directions .container .grid-container {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
  #directions .container .grid-container .grid-item:not(.text, .img1, .img2) {
    display: none;
  }
}
#directions .container .grid-container .grid-item {
  text-align: center;
  padding: 1.5em;
  height: 100%;
  border: 1px solid transparent;
  position: relative;
  aspect-ratio: 1/1;
}
@media (max-width: 1068px) {
  #directions .container .grid-container .grid-item {
    margin-bottom: 15px;
    width: 100%;
  }
  #directions .container .grid-container .grid-item:not(.img2) {
    aspect-ratio: 2/1;
  }
  #directions .container .grid-container .grid-item.img1 {
    order: -1;
  }
  #directions .container .grid-container .grid-item.img2 {
    display: none;
  }
}
#directions .container .grid-container .grid-item.img1 {
  background: url(../img/emotional.webp);
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-main);
  height: 100%;
  width: 100%;
}
#directions .container .grid-container .grid-item.img2 {
  background: url(../img/destruction.webp);
  background-size: cover;
  background-position: center center;
  border-radius: 50%;
  height: 100%;
  width: 100%;
}
#directions .container .grid-container .grid-item.text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--color-p-dark);
  border-radius: var(--border-radius-main);
}
#directions .container .grid-container .grid-item.text .number {
  position: relative;
}
#directions .container .grid-container .grid-item.text .number {
  text-align: end;
}
#directions .container .grid-container .grid-item.text .text-wrap {
  text-align: start;
}
#directions .container .grid-container .grid-item.text .text-wrap h3 {
  margin-bottom: 0.8em;
}

#about {
  height: fit-content;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 6em 0 0 0;
}
@media (max-width: 1068px) {
  #about {
    padding: unset;
  }
}
#about .container h2 {
  margin-bottom: 1em;
}
#about .container .col-30:nth-child(1) {
  padding-left: unset;
  padding-right: unset;
  padding-top: 6em;
}
@media (max-width: 1068px) {
  #about .container .col-30:nth-child(1) {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
}
#about .container .col-30:nth-child(1) img.acquaintance {
  border-radius: var(--border-radius-main);
}
@media (max-width: 1068px) {
  #about .container .col-30:nth-child(1) img.acquaintance {
    padding: unset;
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}
#about .container .col-40 {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding: 0 2em;
}
#about .container .col-40 p {
  margin-bottom: 0.5em;
}
@media (max-width: 1068px) {
  #about .container .col-40 {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
}
#about .container .col-30:nth-child(3) {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1068px) {
  #about .container .col-30:nth-child(3) {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
}
#about .container .col-30:nth-child(3) img.deal {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}

#fourthBlock .article {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 3em 0;
  border-top: 1px solid var(--color-p-dark);
}
@media (max-width: 1068px) {
  #fourthBlock .article {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
    padding-top: 15px;
  }
}
#fourthBlock .article .col-30:nth-child(1) {
  padding-left: unset;
  padding-right: unset;
}
@media (max-width: 1068px) {
  #fourthBlock .article .col-30:nth-child(1) {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
    padding-top: 15px;
  }
}
#fourthBlock .article .col-40 {
  display: flex;
  flex-direction: column;
  height: fit-content;
}
@media (max-width: 1068px) {
  #fourthBlock .article .col-40 {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
    padding-top: 15px;
  }
}
#fourthBlock .article .col-40 h3 {
  margin-bottom: 0.5em;
}
#fourthBlock .article .col-30:nth-child(3) {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 1068px) {
  #fourthBlock .article .col-30:nth-child(3) {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
}

#fifthBlock .grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}
@media (max-width: 1068px) {
  #fifthBlock .grid-container {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
}
#fifthBlock .grid-container .grid-item {
  text-align: center;
  padding: 1.5em;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--border-radius-main);
}
@media (max-width: 1068px) {
  #fifthBlock .grid-container .grid-item {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
    padding: 10px;
    width: 100%;
  }
  #fifthBlock .grid-container .grid-item * {
    text-align: center;
  }
}
#fifthBlock .grid-container .grid-item .number {
  position: relative;
  height: 5em;
}
@media (max-width: 1068px) {
  #fifthBlock .grid-container .grid-item .number {
    height: unset;
  }
}
#fifthBlock .grid-container .grid-item.item1 .text-wrap, #fifthBlock .grid-container .grid-item.item4 .text-wrap, #fifthBlock .grid-container .grid-item.item5 .text-wrap {
  width: 60%;
}
@media (max-width: 1068px) {
  #fifthBlock .grid-container .grid-item.item1 .text-wrap, #fifthBlock .grid-container .grid-item.item4 .text-wrap, #fifthBlock .grid-container .grid-item.item5 .text-wrap {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
    padding: 10px;
  }
  #fifthBlock .grid-container .grid-item.item1 .text-wrap *, #fifthBlock .grid-container .grid-item.item4 .text-wrap *, #fifthBlock .grid-container .grid-item.item5 .text-wrap * {
    text-align: center;
  }
}
#fifthBlock .grid-container .grid-item .number {
  text-align: end;
}
#fifthBlock .grid-container .grid-item .text-wrap {
  text-align: start;
}
#fifthBlock .grid-container .grid-item .text-wrap h3 {
  margin-bottom: 0.8em;
}
#fifthBlock .grid-container .item1 {
  grid-column: 1/3;
  grid-row: 1/2;
  background: #87c1dc;
}
#fifthBlock .grid-container .item2 {
  grid-column: 3/4;
  grid-row: 1/2;
  background: #AEDDF2;
}
#fifthBlock .grid-container .item3 {
  grid-column: 4/5;
  grid-row: 1/2;
  background: #7db0c6;
}
#fifthBlock .grid-container .item4 {
  grid-column: 1/3;
  grid-row: 2/3;
  background: #AEDDF2;
}
#fifthBlock .grid-container .item5 {
  grid-column: 3/5;
  grid-row: 2/3;
  background: #7eb4cd;
}

#reviews .container.title .second-title {
  margin-bottom: 0.5em;
}
#reviews .container.title p {
  margin-bottom: 1.2em;
}
#reviews .slider {
  position: relative;
  overflow: hidden;
}
#reviews .slider .slider-items {
  display: flex;
  transition: transform 0.5s ease;
}
#reviews .slider .slider-items .slider-item {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#reviews .slider .slider-items .slider-item .slide__content {
  width: 50%;
}
@media (max-width: 1068px) {
  #reviews .slider .slider-items .slider-item .slide__content {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
}
#reviews .slider .slider-items .slider-item .slide__content h3 {
  margin: 1em 0;
}
#reviews .slider .slider-items .slider-item .slide__content img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  width: 33%;
}
#reviews .slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-blue-light);
  border: none;
  cursor: pointer;
  color: var(--color-p-white);
  width: 2.4em;
  object-fit: contain;
  aspect-ratio: 1/1;
  border-radius: 50%;
  line-height: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
#reviews .slider .slider-arrow:hover {
  background-color: var(--color-blue);
}
@media (max-width: 1068px) {
  #reviews .slider .slider-arrow {
    top: 30%;
  }
}
#reviews .slider .slider-arrow-left {
  left: 10px;
}
#reviews .slider .slider-arrow-right {
  right: 10px;
}

#seventhBlock .grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 20px;
  height: 100%;
}
@media (max-width: 1068px) {
  #seventhBlock .grid-container {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
}
#seventhBlock .grid-container .step {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  padding: 1.5em;
  border: 1px solid var(--color-p-dark);
  border-radius: var(--border-radius-main);
}
#seventhBlock .grid-container .step .step__number {
  display: flex;
  grid-column: 1/2;
  grid-row: 1/2;
}
#seventhBlock .grid-container .step .step__description {
  grid-column: 2/4;
  grid-row: 2/4;
}
#seventhBlock .grid-container .step .step__description h3 {
  margin-bottom: 0.8em;
}
#seventhBlock .grid-container .step1 {
  grid-column: 1/3;
  grid-row: 1/2;
}
#seventhBlock .grid-container .step2 {
  grid-column: 2/4;
  grid-row: 2/3;
}
#seventhBlock .grid-container .step3 {
  grid-column: 2/5;
  grid-row: 3/4;
}
#seventhBlock .grid-container .img1 {
  background: url(../img/free.webp);
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-main);
  height: 100%;
  width: 100%;
  grid-column: 1/2;
  grid-row: 2/3;
  aspect-ratio: 1/1;
  object-fit: cover;
}
#seventhBlock .grid-container .img2 {
  grid-column: 3/5;
  grid-row: 1/2;
  background: url(../img/success.webp);
  background-size: cover;
  background-position: center top;
  border-radius: var(--border-radius-main);
  object-fit: cover;
}
#seventhBlock .grid-container .img3 {
  background: url(../img/way.webp);
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-main);
  height: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  grid-column: 4/5;
  grid-row: 2/3;
}
#seventhBlock .grid-container .img4 {
  background: url(../img/harmony.webp);
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-main);
  height: 100%;
  width: 100%;
  grid-column: 1/2;
  grid-row: 3/4;
  aspect-ratio: 1/1;
  object-fit: cover;
}
#seventhBlock .grid-container .btn_wrap {
  grid-column: 2/3;
  grid-row: 3/4;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 1068px) {
  #seventhBlock .grid-container {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
  #seventhBlock .grid-container div {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  #seventhBlock .grid-container .img1 {
    aspect-ratio: 2/1;
    order: -1;
    margin-bottom: 15px;
  }
  #seventhBlock .grid-container .img2, #seventhBlock .grid-container .img3, #seventhBlock .grid-container .img4 {
    display: none;
  }
  #seventhBlock .grid-container .step {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
  #seventhBlock .grid-container .step .step__number {
    display: none;
  }
  #seventhBlock .grid-container .step .step__description {
    padding: 15px;
  }
  #seventhBlock .grid-container .btn_wrap {
    justify-content: center;
    align-items: center;
  }
}

#contact {
  height: fit-content;
  min-height: unset;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1068px) {
  #contact .container.row {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
}
#contact .col.text-col {
  width: 70%;
  flex: 0 0 70%;
  max-width: 70%;
}
#contact .col.text-col h2 {
  margin: 0 0 1em 0;
}
#contact .col.text-col .description {
  padding: 0 21% 0 0;
}
@media (max-width: 1068px) {
  #contact .col.text-col {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
    order: 2;
  }
  #contact .col.text-col h2 {
    margin: 15px 0;
  }
  #contact .col.text-col .btn {
    margin: 15px 0 0 0;
    padding: unset;
  }
  #contact .col.text-col .description {
    padding: unset;
  }
  #contact .col.text-col .col {
    width: 100%;
    max-width: 100%;
  }
}
#contact .col:nth-child(2) {
  width: 30%;
  flex: 0 0 30%;
  max-width: 30%;
  justify-content: center;
  align-items: center;
  order: 2;
}
#contact .col:nth-child(2) .btn {
  width: 80%;
  --diametr: 30%;
}
@media (max-width: 1068px) {
  #contact .col:nth-child(2) {
    width: 100%;
    max-width: 100%;
  }
  #contact .col:nth-child(2) .btn {
    width: 30%;
  }
  #contact .col:nth-child(2) .btn a {
    --diametr: 34px;
  }
}

body:not(.single-post) h1 {
  margin: 1em 0;
}
body:not(.single-post) article {
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  border-top: 1px solid var(--color-blue-light);
  width: 100%;
}
@media (max-width: 1068px) {
  body:not(.single-post) article {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
}
body:not(.single-post) article img {
  grid-column: 1/2;
  grid-row: 1/3;
  aspect-ratio: 1.6/1;
  object-fit: cover;
  border-radius: var(--border-radius-main);
}
body:not(.single-post) article .entry-header {
  grid-column: 2/4;
  grid-row: 1/2;
  padding: 15px;
}
body:not(.single-post) article .entry-content {
  grid-column: 2/4;
  grid-row: 2/4;
  padding: 15px;
}
body:not(.single-post) article .button-wrap {
  grid-column: 3/4;
  grid-row: 3/4;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

body.single-post article {
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  width: 100%;
}
@media (max-width: 1068px) {
  body.single-post article {
    grid-gap: unset;
    gap: unset;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: unset;
    margin: 0 0 15px 0;
    gap: unset;
  }
  body.single-post article h1 {
    margin: 0.8em 0;
  }
}
body.single-post article img {
  grid-column: 1/2;
  grid-row: 1/2;
  border-radius: var(--border-radius-main);
}
body.single-post article .entry-header {
  grid-column: 2/4;
  grid-row: 1/2;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}
body.single-post article .entry-content {
  grid-column: 1/4;
  grid-row: 2/3;
  padding: 15px 0;
}
