@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Roboto+Condensed&display=swap");

:root {
  --accent: #FF4C00;
  --secondary: #dadada;
}

.carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel .carousel-inner {
  height: 514px;
  display: flex;
}

.carousel .carousel-inner .carousel-item {
  min-width: 100%;
  transition: transform 0.5s ease;
  height: 100%;
  background-position: center center;
}

.carousel .carousel-inner .carousel-item .carousel-item-content {
  height: 100%;
  margin: 0 auto;
  display: flex;
  padding: 0 25px;
  flex-direction: column;
  gap: 47px;
  justify-content: center;
  align-items: center;
}

.carousel .carousel-inner .carousel-item .carousel-item-content h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 54px;
  color: #fff;
  text-align: center;
}

@media (min-width: 800px) {
  .carousel .carousel-inner .carousel-item .carousel-item-content {
    width: 800px;
    align-items: flex-start;
    padding: 45px;
  }

  .carousel .carousel-inner .carousel-item .carousel-item-content h2 {
    text-align: left;
    font-size: 52px;
    line-height: 62px;
  }
}

@media (min-width: 1200px) {
  .carousel .carousel-inner .carousel-item .carousel-item-content {
    width: 1200px;
    padding-right: 30%;
  }
}

@media (min-width: 1600px) {
  .carousel .carousel-inner .carousel-item .carousel-item-content {
    padding-right: 25%;
  }
}

.carousel .carousel-controls {
  padding: 18px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel .carousel-controls .carousel-controls-dots {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.carousel .carousel-controls .carousel-controls-dots > li {
  border-radius: 50%;
  background-color: var(--secondary);
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
  width: 9px;
  height: 9px;
  display: block;
}

.carousel .carousel-controls .carousel-controls-dots > li:not(.active):hover {
  transform: scale(1.4);
  cursor: pointer;
}

.carousel .carousel-controls .carousel-controls-dots > li.active {
  background-color: var(--accent);
  width: 14px;
  height: 14px;
}

.accordion-container .accordion-section .accordion-section-title {
  border-top: 1px solid #D9D9D9;
  padding: 28px 24px 28px 0;
  display: flex;
  align-items: center;
}

.accordion-container .accordion-section .accordion-section-title .wp-block-heading {
  margin-right: auto;
}

@media (max-width: 800px) {
  .accordion-container .accordion-section .accordion-section-title .wp-block-heading {
    font-size: 14px;
  }
}

.accordion-container .accordion-section .accordion-section-title:after {
  min-width: 17px;
  width: 17px;
  height: 10px;
  content: "";
  display: block;
  transition: transform 0.3s ease;
  margin-left: 30px;
  transform: rotate(180deg);
  background: url("/wp-content/themes/felmoks/assets/images/accordion-chevron.svg") no-repeat center center;
}

.accordion-container .accordion-section .accordion-section-content {
  padding: 22px;
  display: none;
}

.accordion-container .accordion-section.open .accordion-section-title:after {
  transform: rotate(0);
}

.accordion-container .accordion-section.open .accordion-section-content {
  display: block;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-25%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(25%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(-25%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInDown {
  from {
    transform: translateY(25%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 800px) {
  [data-animate] {
    opacity: 0;
  }

  [data-animate].fade-in {
    animation: fadeIn 1s ease-out forwards;
  }

  [data-animate].slide-left {
    animation: slideInLeft 1s ease-out forwards;
  }

  [data-animate].slide-right {
    animation: slideInRight 1s ease-out forwards;
  }

  [data-animate].slide-up {
    animation: slideInUp 1s ease-out forwards;
  }

  [data-animate].slide-down {
    animation: slideInDown 1s ease-out forwards;
  }
}

body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}

.action-button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.action-button.btn-white {
  width: 188px;
  height: 55px;
  border: 2px solid #fff;
}

.action-button.btn-white:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.action-button.btn-black {
  width: 232px;
  height: 55px;
  background: #000;
}

.action-button.btn-black:hover {
  color: #fff;
  background: var(--accent);
}

.has-link-color {
  text-decoration: underline;
}

.has-link-color:hover {
  text-decoration: none;
}

.has-hover-link-color:hover {
  color: var(--accent);
}

.custom-logo-link {
  width: 171px;
  height: 33px;
}

@media (min-width: 600px) {
  .custom-logo-link {
    width: 207.754px;
    height: 40px;
  }
}

.has-link-color {
  color: var(--accent);
}

.has-underline {
  text-decoration: underline;
}

.wp-block-template-part {
  margin: 0 !important;
}

.wp-block-paragraph {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}

/*
! tailwindcss v3.3.5 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: Montserrat, sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

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

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", 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;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-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.
*/

::-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 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

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

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 45px;
  padding-left: 45px;
}

@media (min-width: 1200px){
  .container{
    max-width: 1200px;
  }
}

.fixed{
  position: fixed;
}

.relative{
  position: relative;
}

.m-0{
  margin: 0px;
}

.-mt-8{
  margin-top: -2rem;
}

.mb-31{
  margin-bottom: 31px;
}

.mb-7{
  margin-bottom: 1.75rem;
}

.mb-8{
  margin-bottom: 2rem;
}

.mb-9{
  margin-bottom: 2.25rem;
}

.mb-\[145px\]{
  margin-bottom: 145px;
}

.mb-\[22px\]{
  margin-bottom: 22px;
}

.mb-\[30px\]{
  margin-bottom: 30px;
}

.mb-\[50px\]{
  margin-bottom: 50px;
}

.ml-6{
  margin-left: 1.5rem;
}

.mt-10{
  margin-top: 2.5rem;
}

.mt-34{
  margin-top: 34px;
}

.mt-\[21px\]{
  margin-top: 21px;
}

.mt-\[61px\]{
  margin-top: 61px;
}

.block{
  display: block;
}

.inline-block{
  display: inline-block;
}

.flex{
  display: flex;
}

.table{
  display: table;
}

.h-55{
  height: 55px;
}

.w-196{
  width: 196px;
}

.w-232{
  width: 232px;
}

.basis-auto{
  flex-basis: auto;
}

.items-end{
  align-items: flex-end;
}

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

.justify-between{
  justify-content: space-between;
}

.gap-2{
  gap: 0.5rem;
}

.gap-4{
  gap: 1rem;
}

.gap-\[25px\]{
  gap: 25px;
}

.gap-\[30px\]{
  gap: 30px;
}

.border{
  border-width: 1px;
}

.bg-accent{
  --tw-bg-opacity: 1;
  background-color: rgb(255 76 0 / var(--tw-bg-opacity));
}

.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.bg-section-dark{
  --tw-bg-opacity: 1;
  background-color: rgb(32 32 32 / var(--tw-bg-opacity));
}

.bg-section-light{
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity));
}

.p-4{
  padding: 1rem;
}

.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-\[25px\]{
  padding-left: 25px;
  padding-right: 25px;
}

.py-\[19px\]{
  padding-top: 19px;
  padding-bottom: 19px;
}

.pb-7{
  padding-bottom: 1.75rem;
}

.pt-15{
  padding-top: 60px;
}

.pt-38{
  padding-top: 38px;
}

.pt-\[26px\]{
  padding-top: 26px;
}

.text-center{
  text-align: center;
}

.text-3xl{
  font-size: 36px;
}

.text-sm{
  font-size: 14px;
}

.font-bold{
  font-weight: 700;
}

.font-medium{
  font-weight: 500;
}

.font-semibold{
  font-weight: 600;
}

.uppercase{
  text-transform: uppercase;
}

.leading-tighter{
  line-height: 20px;
}

.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 25px;
}

@media (min-width: 600px) {
  .container {
    padding: 20px 45px;
  }
}

@media (min-width: 940px) {
  .container {
    width: 900px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}

.wp-block-group {
  padding: 0;
  background-color: transparent;
}

.page-title {
  overflow: hidden;
  position: relative;
}

.page-title.bg-blog-image {
  background-size: cover;
}

.page-title .page-title-background {
  top: -10px;
  left: -10px;
  z-index: 0;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  filter: blur(10px);
  min-height: 400px;
  background: center center/cover no-repeat;
  position: absolute;
}

.page-title .page-title-background:after {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  min-height: 110%;
  content: "";
  display: block;
  position: relative;
}

.page-title .container {
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  margin-top: -65px;
  min-height: 340px;
  padding: 65px 25px 25px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1000px) {
  .page-title .container h2.wp-block-heading {
    font-weight: 600;
    font-size: 21px;
  }
}

@media screen and (min-width: 800px) {
  .page-title .container {
    margin-top: 0;
    min-height: 396px;
    padding: 96px 100px;
  }
}

h1.wp-block-heading {
  font-size: 38px;
  font-weight: 700;
}

@media screen and (min-width: 800px) {
  h1.wp-block-heading {
    font-size: 76px;
    font-weight: 700;
  }
}

h2.wp-block-heading {
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
}

h3.wp-block-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
}

@media screen and (min-width: 600px) {
  h3.wp-block-heading {
    font-size: 28px;
    line-height: 32px;
  }
}

h4.wp-block-heading {
  font-size: 21px;
  font-weight: 600;
  line-height: 24px;
}

@media screen and (min-width: 600px) {
  h4.wp-block-heading {
    font-size: 24px;
    line-height: 32px;
  }
}

h6.wp-block-heading {
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
}

.wp-block-columns {
  display: flex;
  flex-direction: column;
  gap: 35px 0;
}

@media (max-width: 799px) {
  .wp-block-columns > .wp-block-column {
    flex-basis: initial !important;
  }
}

@media (min-width: 800px) {
  .wp-block-columns {
    flex-direction: row;
    gap: 0;
  }

  .wp-block-columns.reverse {
    flex-direction: row-reverse;
  }
}

.wp-block-table.is-no-padding > table > tbody > tr > td {
  padding: 0;
}

.contacts-cities {
  margin: 25px 0;
}

@media (min-width: 800px) {
  .contacts-cities {
    width: 768px;
    margin: 52px auto;
  }
}

@media (min-width: 1200px) {
  .contacts-cities {
    width: 1110px;
    margin: 52px auto;
  }
}

.contacts-cities table {
  width: 100%;
}

.contacts-cities table .contacts-title .wp-block-heading {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
}

@media (max-width: 768px) {
  .contacts-cities table .contacts-title {
    display: block;
    padding: 8px 25px;
  }
}

.contacts-cities table .contacts-city {
  border-bottom-color: #eaeaea;
  border-bottom-width: 2px;
}

@media (max-width: 768px) {
  .contacts-cities table .contacts-city {
    display: block;
  }
}

.contacts-cities table .contacts-city > td {
  padding: 8px 10px;
  font-size: 14px;
  font-style: normal;
  line-height: 17px;
  vertical-align: top;
}

@media (max-width: 768px) {
  .contacts-cities table .contacts-city > td {
    display: block;
    padding: 8px 25px;
  }
}

.contacts-cities table .contacts-city > td.type {
  width: 15%;
}

@media (max-width: 768px) {
  .contacts-cities table .contacts-city > td.type {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
  }
}

.contacts-cities table .contacts-city > td.type > div {
  font-weight: 500;
  gap: 0 7px;
  line-height: 17px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contacts-cities table .contacts-city > td.type > div > figure {
  width: 24px;
  height: 24px;
}

.contacts-cities table .contacts-city > td.address {
  width: 25%;
  word-break: break-word;
}

@media (max-width: 768px) {
  .contacts-cities table .contacts-city > td.address {
    width: 50%;
  }
}

.contacts-cities table .contacts-city > td.schedule {
  width: 15%;
}

@media (max-width: 768px) {
  .contacts-cities table .contacts-city > td.schedule {
    width: 50%;
  }
}

.contacts-cities table .contacts-city > td.schedule > .wp-block-table td {
  padding: 0 5px;
  border: none;
  white-space: nowrap;
}

.contacts-cities table .contacts-city > td.contacts {
  width: 15%;
}

@media (max-width: 768px) {
  .contacts-cities table .contacts-city > td.contacts {
    width: 100%;
  }
}

.contacts-cities table .contacts-city > td.contacts p {
  margin-bottom: 10px;
}

.map-container {
  padding-top: 0;
}

.map-container #map {
  width: 100%;
  height: 400px;
}

@media (min-width: 800px) {
  .map-container #map {
    height: 500px;
  }
}

.page-about-us {
  margin: 30px 0 0;
  position: relative;
  z-index: 10;
}

@media (min-width: 800px) {
  .page-about-us {
    margin-top: -70px;
  }

  .page-about-us .high-quality {
    padding-bottom: 50px;
  }
}

.page-about-us .high-quality .wp-block-heading {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.page-about-us .high-quality .wp-block-paragraph {
  margin-top: 30px;
}

@media (min-width: 800px) {
  .page-about-us .high-quality .wp-block-paragraph {
    margin-top: 60px;
  }
}

.page-about-us .high-quality .high-quality-photo {
  margin-top: 30px;
}

@media (min-width: 800px) {
  .page-about-us .high-quality .high-quality-photo {
    margin-top: -96px;
  }
}

.page-about-us .indicators {
  padding: 80px 0 50px;
}

.page-about-us .indicators .wp-block-heading {
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 45px;
}

.page-about-us .indicators .wp-block-columns {
  gap: 30px;
  align-items: center !important;
  justify-content: center;
}

@media (min-width: 800px) {
  .page-about-us .indicators .wp-block-columns {
    align-items: flex-start !important;
  }
}

@media (min-width: 600px) {
  .page-about-us .indicators .wp-block-columns .wp-block-column {
    width: 350px;
  }
}

.page-about-us .indicators .wp-block-columns .wp-block-column figure {
  width: 100%;
}

.page-about-us .indicators .wp-block-columns .wp-block-column figure img {
  width: 100%;
}

.page-about-us .indicators .wp-block-columns .wp-block-column strong {
  padding: 28px 0 10px;
  display: block;
  text-align: center;
  font-size: 52px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.page-about-us .indicators .wp-block-columns .wp-block-column strong span {
  font-size: 29px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.page-about-us .indicators .wp-block-columns .wp-block-column .wp-block-paragraph {
  text-align: center;
  padding: 0 10px;
}

.page-about-us .company-advantages .wp-block-group {
  padding: 35px 0;
}

.page-about-us .company-advantages .wp-block-group .wp-block-columns {
  justify-content: space-between;
  gap: 50px;
}

.page-about-us .company-advantages .wp-block-group .wp-block-columns .wp-block-column {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.page-about-us .company-advantages .wp-block-group .wp-block-columns .wp-block-column .wp-block-heading {
  margin-bottom: 30px;
}

.page-about-us .company-products {
  margin: 100px 0 0;
}

.catalog-products {
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.catalog-products .product-item {
  width: 350px;
}

@media (min-width: 800px) and (max-width: 1200px) {
  .catalog-products .product-item {
    width: 250px;
  }
}

.catalog-products .product-item figure {
  width: 100%;
  aspect-ratio: 1;
}

.catalog-products .product-item figure img {
  width: 100%;
}

.catalog-products .product-item .wp-block-paragraph {
  margin-top: 11px;
}

@media (min-width: 800px) {
  .catalog-products {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  .catalog-products {
    justify-content: flex-start;
  }
}

.delivery-and-payment {
  margin: 45px 0;
}

@media (min-width: 800px) {
  .delivery-and-payment {
    margin: 64px 0 145px;
  }
}

.delivery-and-payment h2.wp-block-heading {
  margin-bottom: 40px;
}

.delivery-and-payment .wp-block-image {
  display: block;
  margin: 45px 0;
}

.delivery-and-payment .wp-block-columns {
  margin: 0;
}

@media (min-width: 800px) {
  .delivery-and-payment .wp-block-columns {
    gap: 0 80px;
  }
}

@media (min-width: 1200px) {
  .delivery-and-payment .wp-block-columns {
    gap: 0 120px;
  }
}

.delivery-and-payment .wp-block-columns .wp-block-column h3.wp-block-heading {
  margin-bottom: 25px;
}

@media (min-width: 800px) {
  .delivery-and-payment .wp-block-columns .wp-block-column h3.wp-block-heading {
    margin-bottom: 35px;
  }
}

@media (min-width: 1200px) {
  .delivery-and-payment .wp-block-columns .wp-block-column h3.wp-block-heading {
    margin-bottom: 45px;
  }
}

.delivery-and-payment .wp-block-columns .wp-block-column p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}

.more-info {
  border-top-color: #d9d9d9;
  border-top-width: 1px;
}

.more-info .container {
  padding-top: 50px;
  padding-bottom: 75px;
}

.more-info h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.more-info .wp-block-columns {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

@media (min-width: 600px) {
  .more-info .wp-block-columns {
    margin-top: 20px;
    gap: 0;
  }
}

.more-info .wp-block-columns .wp-block-column {
  text-align: center;
}

.more-info .wp-block-columns .wp-block-column a {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  text-decoration-line: underline;
}

.more-info .wp-block-columns .wp-block-column a:hover {
  text-decoration: none;
  color: var(--accent);
}

@media (min-width: 600px) {
  .more-info .wp-block-columns .wp-block-column {
    text-align: left;
  }

  .more-info .wp-block-columns .wp-block-column:nth-of-type(2) {
    text-align: center;
  }

  .more-info .wp-block-columns .wp-block-column:last-child {
    text-align: right;
  }
}

.breadcrumbs {
  margin: 0;
  height: 65px;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (min-width: 800px) {
  .breadcrumbs .container {
    padding: 12px 45px;
    gap: 30px;
  }
}

.breadcrumbs .container .wp-block-paragraph {
  color: #a3a3a3;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
}

.breadcrumbs .container a:hover .wp-block-paragraph {
  cursor: pointer;
  color: var(--accent);
}

@media screen and (min-width: 800px) {
  .breadcrumbs {
    height: 45px;
  }
}

.product-page {
  flex-direction: column;
}

.product-page .container {
  padding-top: 0;
}

@media screen and (min-width: 1200px) {
  .product-page .container {
    padding-bottom: 40px;
  }
}

.product-page .container .product-block {
  flex-direction: column;
}

@media (min-width: 990px) {
  .product-page .container .product-block {
    flex-direction: row;
  }
}

.product-page .container .product-block .photos {
  margin-bottom: 45px;
}

@media screen and (min-width: 1200px) {
  .product-page .container .product-block .photos {
    flex-basis: 460px;
  }
}

.product-page .container .product-block .product-props .product-pricelist-link {
  color: #FF4C00;
  font-size: 21px;
  font-weight: 600;
  line-height: 32px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  text-decoration: underline;
}

.product-page .container .product-block .product-props .product-pricelist-link:hover {
  text-decoration: none;
}

.product-page .container .product-block .product-props .product-pricelist-link svg {
  margin-right: 10px;
}

.product-page .container .product-block .product-props .wp-block-heading {
  margin-bottom: 21px;
}

.product-page .container .product-block .product-props .wp-block-columns {
  margin-top: 30px;
}

.product-page .container .product-block .product-props .product-colors-title {
  margin: 33px 0 17px;
}

.product-page .container .product-block .product-props .product-colors {
  margin-bottom: 37px;
}

@media screen and (min-width: 1200px) {
  .product-page .container .product-block .product-props {
    flex-basis: 660px;
  }

  .product-page .container .product-block .product-props .wp-block-heading {
    margin-bottom: 31px;
  }

  .product-page .container .product-block .product-props .wp-block-columns {
    margin-top: 25px;
  }

  .product-page .container .product-block .product-props .product-colors-title {
    margin-top: 21px;
  }
}

.product-page .container .product-props-footer {
  margin-top: 38px;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column-reverse;
}

.product-page .container .product-props-footer .back-button {
  color: #8E9494;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  gap: 0 10px;
  align-items: center;
  justify-content: flex-start;
}

@media (min-width: 600px) {
  .product-page .container .product-props-footer .back-button {
    justify-content: space-between;
  }
}

.product-page .container .product-props-footer .share {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-right: 45px;
  margin-bottom: 40px;
}

.product-page .container .product-props-footer .share .block svg {
  color: #9AA0A0;
  transition: all 0.2s ease-in-out;
}

.product-page .container .product-props-footer .share .block:hover svg {
  color: #000;
}

@media (min-width: 600px) {
  .product-page .container .product-props-footer {
    margin-top: 54px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .product-page .container .product-props-footer .share {
    margin-bottom: 0;
  }
}

.product-page .container .strength-parameters {
  padding-right: 30px;
}

.product-page .container .strength-parameters .wp-block-paragraph {
  margin-bottom: 14px;
}

.product-page .container .strength-parameters .wp-block-table {
  border: 0;
}

.product-page .container .strength-parameters .wp-block-table tr td {
  padding: 5px 0;
  font-size: 14px;
  border: none;
  line-height: 21px;
}

.product-page .container .strength-parameters .wp-block-table tr td:first-child {
  width: 175px;
  padding-right: 25px;
}

.product-page .order-by-phone {
  background: #FF4C00;
  color: #fff;
  text-align: center;
  padding: 15px 0 9px;
  width: 100%;
}

.product-page .order-by-phone p {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px;
  margin-bottom: 2px;
}

.product-page .order-by-phone a {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 54px;
}

.product-carousel {
  position: relative;
  width: 100%;
  max-width: 460px;
}

@media (min-width: 800px) {
  .product-carousel {
    width: 340px;
  }
}

@media (min-width: 1200px) {
  .product-carousel {
    width: 460px;
  }
}

.product-carousel .brand-new {
  background: #FF4C00;
  color: #FFF;
  display: block;
  position: absolute;
  z-index: 2;
  right: 15px;
  top: 15px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  padding: 12px 19px;
}

.product-carousel .product-carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 1200px) {
  .product-carousel .product-carousel-inner {
    width: 460px;
    height: 460px;
  }
}

.product-carousel .product-carousel-inner .product-carousel-items {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.product-carousel .product-carousel-inner .product-carousel-items .product-carousel-item {
  min-width: 100%;
}

.product-carousel .product-carousel-inner .product-carousel-items .product-carousel-item figure {
  min-width: inherit;
  display: flex;
  justify-content: center;
}

.product-carousel .product-carousel-inner .product-carousel-controls {
  position: absolute;
  gap: 30px;
  left: 0;
  right: 0;
  bottom: 22px;
  display: flex;
  z-index: 11;
  justify-content: center;
}

.product-carousel .product-carousel-inner .product-carousel-controls .carousel-control-arrow {
  color: white;
}

.product-carousel .product-carousel-inner .product-carousel-controls .carousel-control-arrow:disabled {
  opacity: 0.5;
}

.product-carousel .product-carousel-slides {
  width: 100%;
  display: flex;
  gap: 0 9px;
  margin-top: 10px;
  list-style: none;
}

.product-carousel .product-carousel-slides li {
  width: 108px;
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
}

.product-carousel .product-carousel-slides li:hover {
  opacity: 0.75;
  cursor: pointer;
}

.product-carousel .product-carousel-slides li.active {
  opacity: 1;
}

.product-carousel .product-carousel-slides li img {
  width: 100%;
  height: 100%;
}

.product-carousel .product-carousel-full-screen {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 11;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.175);
  background: #fff url(/wp-content/themes/felmoks/assets/images/open-fullscreen.svg) no-repeat center center;
}

.product-carousel.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  max-width: 100%;
  background-color: white;
}

.product-carousel.fullscreen .product-carousel-full-screen {
  background-image: url(/wp-content/themes/felmoks/assets/images/exit-full-screen.svg);
  background-size: 25px;
  z-index: 99;
  top: 30px;
}

.product-carousel.fullscreen .product-carousel-inner {
  width: 100vw;
  height: calc(100% - 118px);
}

.product-carousel.fullscreen .product-carousel-inner .product-carousel-items {
  height: 100%;
}

.product-carousel.fullscreen .product-carousel-inner .product-carousel-items .product-carousel-item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

@media (min-width: 800px) {
  .product-carousel.fullscreen .product-carousel-inner .product-carousel-items .product-carousel-item {
    padding: 25px;
  }
}

.product-carousel.fullscreen .product-carousel-inner .product-carousel-items .product-carousel-item figure {
  width: 100%;
  max-height: 600px;
}

.product-carousel.fullscreen .product-carousel-inner .product-carousel-items .product-carousel-item figure img {
  height: 100%;
  max-height: inherit;
}

.product-carousel.fullscreen .product-carousel-slides {
  display: flex;
  justify-content: center;
}

.product-colors {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 300px;
  gap: 10px 4px;
  margin-left: -10px;
}

@media (min-width: 1200px) {
  .product-colors {
    width: 350px;
  }
}

.product-colors li {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  width: 66px;
  transition: transform 0.2s ease-in-out;
  padding: 0 2px;
  cursor: pointer;
}

.product-colors li figure {
  width: 49px;
  height: 49px;
}

.product-colors li figure img {
  width: inherit;
  height: inherit;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}

.product-colors li span {
  font-size: 11px;
  font-family: Roboto Condensed, sans-serif;
  display: block;
  text-align: center;
  font-weight: 600;
  line-height: normal;
}

.product-colors li:hover {
  transform: scale(1.1);
}

.load-classes .wp-block-paragraph {
  margin-bottom: 17px;
}

.load-classes .load-class-attributes .load-class-attribute {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.load-classes .load-class-attributes .load-class-attribute span {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  width: 101px;
}

.load-classes .load-class-attributes .load-class-attribute b {
  display: block;
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.load-classes .load-class-attributes .load-class-attribute .load-class-attribute-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  padding: 16px;
  margin-right: 12px;
}

.load-classes .load-class-attributes .load-class-attribute .load-class-attribute-icon img {
  width: 32px;
  height: 32px;
}

.wp-block-specifications-table {
  margin-top: 14px;
}

.wp-block-specifications-table thead {
  border: none;
}

.wp-block-specifications-table tr td {
  border: none;
  width: 33.3333%;
  text-align: center;
}

.wp-block-specifications-table thead tr td {
  font-size: 13px;
  line-height: 16px;
  font-style: normal;
  font-weight: 500;
  color: #686868;
  background: #F6F6F6;
  padding: 11px 15px 13px;
  vertical-align: top;
}

.wp-block-specifications-table thead tr td:nth-of-type(2n) {
  background-color: #EDEDED;
}

.wp-block-specifications-table tbody tr td {
  font-size: 14px;
  padding: 8px 15px 9px;
}

.home-page-video {
  background: #F6F6F6;
}

.home-page-video .container {
  padding-top: 40px;
  padding-bottom: 30px;
}

.home-page-video .container .wp-block-columns {
  gap: 30px;
}

@media (min-width: 600px) {
  .home-page-video .container .wp-block-columns {
    gap: 49px;
  }
}

.home-page-video .container .wp-block-columns iframe {
  width: 100%;
  height: 330px;
}

@media screen and (min-width: 800px) {
  .home-page-video .container .wp-block-column.video {
    width: 60%;
  }
}

@media screen and (min-width: 1200px) {
  .home-page-video .container .wp-block-column.video {
    width: 635px;
  }
}

.home-page-video .container .wp-block-column.text {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}

.home-page-video .container .wp-block-column.text .wp-block-heading {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
}

@media (min-width: 1200px) {
  .home-page-video .container .wp-block-column.text {
    width: 430px;
    gap: 35px;
  }

  .home-page-video .container .wp-block-column.text .wp-block-heading {
    font-size: 42px;
  }
}

@media (min-width: 600px) {
  .home-page-video .container {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

#call-to-action {
  display: none;
}

@media screen and (min-width: 1024px) {
  #call-to-action {
    width: 328px;
    height: 111px;
    color: #fff;
    padding: 17px 25px 20px 25px;
    display: block;
    position: absolute;
    right: 0;
    z-index: 9;
    top: 450px;
    background: #FF4C00;
  }

  #call-to-action .content {
    display: block;
  }
}

header {
  background: #fff;
  z-index: 99;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

header #call {
  color: #000;
}

header #call:hover {
  color: var(--accent);
}

@media (min-width: 1024px) {
  header #call {
    display: none;
  }
}

header .container {
  padding: 38px 25px 37px;
  display: flex;
  justify-content: space-between !important;
  align-items: center;
  gap: 0;
}

@media screen and (min-width: 1024px) {
  header .container {
    width: 1024px;
    flex-direction: row;
    padding: 34px 51px 34px 40px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1200px) {
  header .container {
    width: 1200px;
  }
}

header .wp-block-site-logo {
  width: 171px;
  height: 33px;
}

@media screen and (min-width: 600px) {
  header .wp-block-site-logo {
    width: 208px;
    height: 40px;
  }
}

#home-bricks .container {
  padding-top: 40px;
  padding-bottom: 12px;
}

@media (min-width: 600px) {
  #home-bricks .container {
    padding-top: 40px;
    padding-bottom: 42px;
  }
}

#home-bricks .wp-block-columns {
  gap: 31px;
  margin-bottom: 28px;
}

#home-bricks .wp-block-columns .wp-block-column {
  display: flex;
  text-align: center;
  flex-direction: column;
  padding: 31px 22px 30px;
  background-position: center;
  background-size: auto 100%;
}

@media screen and (min-width: 800px) {
  #home-bricks .wp-block-columns .wp-block-column {
    text-align: left;
    padding: 31px 25px 35px;
    justify-content: space-between;
  }

  #home-bricks .wp-block-columns .wp-block-column:first-child {
    width: calc(60% - 16px);
  }

  #home-bricks .wp-block-columns .wp-block-column:last-child {
    width: calc(40% - 15px);
  }
}

@media screen and (min-width: 1200px) {
  #home-bricks .wp-block-columns .wp-block-column {
    text-align: left;
    padding: 31px 35px 35px;
    justify-content: space-between;
    height: 300px;
  }

  #home-bricks .wp-block-columns .wp-block-column:first-child {
    flex-basis: 729px;
  }

  #home-bricks .wp-block-columns .wp-block-column:last-child {
    flex-basis: 350px;
  }
}

#home-bricks .wp-block-columns .wp-block-column h2.wp-block-heading {
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 22px;
}

#home-bricks .wp-block-columns .wp-block-column .wp-block-paragraph {
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  #home-bricks .wp-block-columns .wp-block-column .wp-block-buttons {
    display: flex;
    justify-content: center;
  }
}

.home-article .container .carousel-container {
  padding-top: 31px;
  padding-bottom: 17px;
}

@media screen and (min-width: 600px) {
  .home-article .container .carousel-container {
    padding-top: 54px;
    padding-bottom: 13px;
  }
}

.recent-articles .container {
  padding-top: 23px;
}

.recent-articles .container h2.wp-block-heading {
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 28px;
}

@media (min-width: 600px) {
  .recent-articles .container h2.wp-block-heading {
    margin-bottom: 53px;
    font-size: 28px;
    line-height: 34px;
  }
}

.recent-articles .container .action-link:hover {
  color: var(--accent);
}

.recent-articles .container .wp-block-columns {
  gap: 27px;
  justify-content: center;
}

.recent-articles .container .wp-block-columns .wp-block-column {
  flex-grow: initial;
  display: flex;
  justify-content: center;
}

@media (min-width: 800px) {
  .recent-articles .container .wp-block-columns .wp-block-column {
    flex-basis: 352px;
  }
}

.social-networks {
  display: flex;
  gap: 0 15px;
  flex-direction: row;
  margin: 25px 0 20px;
}

.social-networks .block svg {
  color: #9AA0A0;
  transition: all 0.2s ease-in-out;
}

.social-networks .block:hover svg {
  color: #000;
}

footer {
  background-color: #F4F4F4;
}

footer .container {
  padding-top: 47px;
}

footer .container .navigation {
  display: flex;
  flex-direction: column-reverse;
}

footer .container .navigation .footer-contacts {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 56px;
  margin-bottom: 44px;
}

footer .container .navigation .footer-contacts .custom-logo-link {
  width: 159px;
}

footer .container .navigation .footer-contacts .custom-logo-link img {
  width: 100%;
}

footer .container .navigation .wp-block-columns .wp-block-column {
  margin-bottom: 16px;
}

footer .container .navigation .wp-block-columns .wp-block-column .menu .menu-item {
  font-size: 14px;
  font-weight: 500;
}

footer .container .navigation .wp-block-columns .wp-block-column .menu .menu-item > a:hover {
  color: var(--accent);
}

footer .container .navigation .wp-block-columns .wp-block-column .menu .menu-item:not(:first-of-type) {
  margin-top: 10px;
}

footer .container .navigation .wp-block-navigation li {
  margin-bottom: 9px;
  font-size: 14px !important;
}

@media (min-width: 1200px) {
  footer .container .navigation .wp-block-navigation li {
    margin-bottom: 0;
  }

  footer .container .navigation {
    flex-direction: row;
  }

  footer .container .navigation .footer-contacts {
    width: 25%;
    margin: 4px 0 0;
  }

  footer .container .navigation .wp-block-columns {
    width: 75%;
  }
}

footer .copyright {
  border-top-color: #d9d9d9;
  border-top-width: 1px;
  padding: 14px 0 34px;
  color: #a3a3a3;
  text-align: center;
}

footer .copyright p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (min-width: 1200px) {
  footer .copyright {
    margin-top: 41px;
  }

  footer .copyright p {
    display: inline;
  }
}

.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
  display: none;
}

@media (min-width: 1024px) {
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: block;
  }
}

.wp-block-navigation__responsive-container-open:not(.always-shown) {
  display: block;
}

@media (min-width: 1024px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: none;
  }
}

.footer-magazines .container .wp-block-columns {
  border-top: 1px solid #D9D9D9;
  padding: 48px 0;
  margin: 0;
  justify-content: space-around;
}

.footer-magazines .container .wp-block-columns .wp-block-column .wp-block-group {
  display: flex;
  justify-content: center;
}

.footer-magazines .container .wp-block-columns .wp-block-column .wp-block-group a {
  display: flex;
  align-items: center;
  gap: 0 18px;
}

.footer-magazines .container .wp-block-columns .wp-block-column .wp-block-group a figure {
  max-width: 130px;
}

.footer-magazines .container .wp-block-columns .wp-block-column .wp-block-group a figure img {
  max-width: 100%;
}

.footer-magazines .container .wp-block-columns .wp-block-column .wp-block-group a p {
  width: 110px;
}

.footer-magazines .container .wp-block-columns .wp-block-column .wp-block-group a:hover {
  color: var(--accent);
}

.mobile-menu-toggle {
  width: 20px;
  height: 12px;
  background: url(/wp-content/themes/felmoks/assets/images/menu.svg) no-repeat center center;
  border: none;
  outline: none;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

body.has-modal-open {
  overflow: hidden;
}

#backdrop {
  width: 100%;
  height: 100vh;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  position: fixed;
  z-index: 9;
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease-out;
  background: rgba(0, 0, 0, 0.7);
}

#backdrop.open {
  display: block;
  opacity: 1;
}

@media (max-width: 1024px) {
  html {
    margin-top: 0 !important;
  }

  html #wpadminbar {
    display: none;
  }
}

#mobile-menu {
  position: fixed;
  overflow: auto;
  left: 0;
  top: 0;
  background: #fff;
  padding: 41px 40px 30px 25px;
  height: 100vh;
  width: 300px;
  z-index: 10;
  transform: translateX(-100%);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

@media (min-width: 1024px) {
  #mobile-menu {
    display: none;
  }
}

#mobile-menu.open {
  opacity: 1;
  transform: translateX(0);
}

#mobile-menu .mobile-menu-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

#mobile-menu .mobile-menu-header .wp-block-site-logo {
  width: 140px;
  height: 27px;
  margin-left: 35px;
}

#mobile-menu .mobile-menu-header .wp-block-site-logo a {
  width: inherit;
  height: inherit;
  display: block;
}

#mobile-menu .mobile-menu-header .wp-block-site-logo a img {
  width: inherit;
  height: inherit;
}

#mobile-menu .submenu {
  margin-top: 20px;
}

#mobile-menu .submenu .wp-block-heading {
  font-size: 19px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 22px;
  margin-bottom: 15px;
}

#mobile-menu .submenu .sidebar-menu-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#mobile-menu .submenu .sidebar-menu-container .menu-item {
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
}

#mobile-menu .submenu .sidebar-menu-container .menu-item:hover > a {
  color: var(--accent);
}

#mobile-menu .submenu .sidebar-menu-container#menu-footer-services {
  margin-top: 15px;
}

#mobile-menu .mobile-menu-contacts {
  margin-top: 15px;
}

#mobile-menu .mobile-menu-contacts p {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
}

#mobile-menu .mobile-menu-contacts p:first-child {
  margin-bottom: 11px;
}

#mobile-menu .social-networks {
  margin-top: 21px;
  display: flex;
  gap: 9px;
}

#gallery {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 25px;
}

#gallery .column {
  display: flex;
  gap: 30px;
  flex-direction: column;
  margin-bottom: 30px;
  margin-top: 0;
}

#gallery .column .wp-block-image {
  width: 100%;
}

#gallery .column .wp-block-image img {
  width: inherit;
}

@media (min-width: 800px) {
  #gallery {
    align-items: flex-start;
    margin-top: -65px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* Three columns with equal width */
    grid-gap: 30px;
  }
}

#certificates {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  padding: 50px 25px 100px;
}

@media (max-width: 800px) {
  #certificates {
    padding-left: 50px;
    padding-right: 50px;
  }
}

#certificates h2 {
  text-align: center;
}

#certificates ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
}

@media (min-width: 800px) {
  #certificates ul li img {
    width: 294px;
  }

  #certificates ul {
    flex-direction: row;
  }
}

#price-list {
  position: relative;
  padding-bottom: 75px;
}

@media (max-width: 800px) {
  #price-list {
    margin-top: -50px;
  }
}

#price-list .wp-block-columns {
  gap: 35px;
}

@media (max-width: 800px) {
  #price-list .wp-block-columns {
    flex-direction: column-reverse;
    gap: 0;
  }
}

#price-list .wp-block-columns .wp-block-column .wp-block-heading {
  margin-top: 35px;
  text-decoration: underline;
}

#price-list .wp-block-columns .wp-block-column .wp-block-heading:hover {
  text-decoration: none;
}

@media (max-width: 800px) {
  #price-list .wp-block-columns .wp-block-column .wp-block-heading {
    text-align: center;
  }
}

#price-list .wp-block-columns .wp-block-column:first-child {
  padding-right: 30px;
}

@media (min-width: 1200px) {
  #price-list .wp-block-columns .wp-block-column:first-child {
    flex-basis: 450px;
  }

  #price-list .wp-block-columns .wp-block-column:last-child {
    flex-basis: 638px;
  }
}

@media (min-width: 800px) {
  #price-list .wp-block-columns .wp-block-column:last-child .wp-block-image {
    margin-top: -90px;
  }
}

#menu-main {
  display: none;
}

@media screen and (min-width: 1024px) {
  #menu-main {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 20px;
  }
}

#menu-main .menu-item {
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  padding: 10px;
  transition: color 0.2s ease-in-out;
}

#menu-main .menu-item:hover > a {
  color: var(--accent);
}

#menu-main .menu-item-has-children {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 8px;
  cursor: pointer;
}

#menu-main .menu-item-has-children:after {
  content: "";
  display: block;
  border-width: 7px 6px 0;
  border-color: transparent;
  border-top-color: #000;
  width: 0;
  height: 0;
}

#menu-main .menu-item-has-children .sub-menu {
  z-index: 99;
  display: none;
  background: #fff;
  position: absolute;
  left: 0;
  top: 100%;
  padding: 5px 0;
  filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.25));
}

#menu-main .menu-item-has-children .sub-menu .menu-item {
  white-space: nowrap;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 600;
}

#menu-main .menu-item-has-children:hover .sub-menu {
  display: block;
}

.page-catalog {
  position: relative;
}

.page-blog .container {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-blog .wp-block-columns {
  gap: 30px;
}

.wp-block-hyperlink {
  color: #FF4C00;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  /* 142.857% */
  text-decoration-line: underline;
}

.service-preview {
  padding: 30px 0;
}

@media (min-width: 1200px) {
  .service-preview {
    padding: 69px 0;
  }
}

@media (max-width: 800px) {
  .service-preview .wp-block-columns {
    flex-direction: column-reverse;
  }
}

@media (min-width: 800px) {
  .service-preview .wp-block-columns {
    align-items: center !important;
    gap: 0 30px;
  }

  .service-preview .wp-block-columns .wp-block-column {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .service-preview .wp-block-columns {
    gap: 0 50px;
  }
}

.service-preview .wp-block-columns .wp-block-paragraph {
  margin: 34px 0 28px;
}

.post-content {
  padding-top: 30px;
}

@media (min-width: 800px) {
  .post-content {
    padding-top: 60px;
  }
}

.post-content .heading-title {
  text-transform: uppercase;
  margin-bottom: 22px;
}

.post-content p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  margin-top: 22px;
  margin-bottom: 22px;
}

.post-content h3.wp-block-heading {
  margin: 42px 0 20px;
}

.post-content ul:not([class]) {
  margin-bottom: 14px;
}

.post-content ul:not([class]) li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  min-height: 28px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

@media (min-width: 600px) {
  .post-content ul:not([class]) li {
    padding-left: 30px;
  }
}

.post-content ul:not([class]) li:before {
  width: 10px;
  height: 10px;
  background: #FF4C00;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}

@media (min-width: 320px) and (max-width: 799px) {
  .home-attributes.wp-block-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap !important;
  }

  .home-attributes.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: calc(50% - 15px) !important;
  }
}

.page-not-found {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 0 30px;
  min-height: 400px;
}

@media (min-width: 992px) {
  .page-not-found {
    height: calc(100vh - 108px - 373px);
  }
}

.page-not-found .main-text {
  font-size: 30px;
  margin-top: 52px;
  font-weight: 700;
}

@media (min-width: 992px) {
  .page-not-found .main-text .main-text {
    font-size: 52px;
    margin-top: 66px;
    margin-bottom: 20px;
  }
}

.page-not-found .secondary-text {
  font-size: 18px;
  margin-top: 14px;
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .page-not-found .secondary-text {
    margin-top: 0;
    margin-bottom: 32px;
  }
}

@media (min-width: 1024px){
  .lg\:ml-7{
    margin-left: 1.75rem;
  }
}

.accordion-section.active .accordion-section-title:after {
  transform: rotate(0);
}

.accordion-section.open .accordion-section-content {
  display: none;
}

.accordion-container > .accordion-section:first-child .accordion-section-content {
  display: block
}

.accordion-section-title {
  cursor: pointer;
}

.post-content ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 15px;
}

/*# sourceMappingURL=style.css.map */