/*
Theme Name: tarkobudtheme
Author: Me
Text Domain: tarkobudtheme
*/

@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-Regular.woff2") format("woff2"),
    url("fonts/Raleway-Regular.ttf") format("ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-Italic.woff2") format("woff2"),
    url("fonts/Raleway-Italic.ttf") format("ttf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-Bold.ttf") format("woff2"),
    url("fonts/Raleway-Bold.ttf") format("ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-BoldItalic.woff2") format("woff2"),
    url("fonts/Raleway-BoldItalic.ttf") format("ttf");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-Black.woff2") format("woff2"),
    url("fonts/Raleway-Black.ttf") format("ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-BlackItalic.woff2") format("woff2"),
    url("fonts/Raleway-BlackItalic.ttf") format("ttf");
  font-weight: 700;
  font-style: italic;
}

:root {
  --clr-main: 195 94% 26%;
  --clr-accent: 227 89% 63%;
  --clr-secondary: 32 100% 45%;
  --clr-light: 45 80% 88%;
  --clr-white: 0 0% 100%;
  --clr-dark: 216 18% 16%;
  --clr-black: 0 0% 0%;

  --ff-main: "Raleway", sans-serif;
}

/* ------------------- */
/* Reset               */
/* ------------------- */

html {
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
figure,
picture {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: 400;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background-color: hsl(var(--clr-dark) / 1);
  font-family: var(--ff-main);
  color: hsl(var(--clr-white));
  line-height: 1.5;
  font-size: 1rem;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
	margin:.5rem .5rem .5rem;
}
.single h1 {
  font-size: 2rem;
}
h2 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin: 0.5rem 0;
}
.privacy-policy h2 {
	font-size: 2rem;
}
h3 {
  font-size: 1.063rem;
}
main {
  flex-grow: 1;
}

a {
  color: hsl(var(--clr-white) / .8);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: hsl(var(--clr-white) / 1);
}

.container {
  margin-inline: auto;
  width: 100%;
}

.grid-container {
  display: grid;
  text-align: center;
  place-items: center;
  padding-inline: 1rem;
}

.primary-navigation a {
  text-decoration: none;
}

.primary-navigation a > span {
  font-weight: 700;
  margin-right: 0.5em;
}

header.primary-header {
  background-color: hsl(var(--clr-accent) / 1);
  background-color: #242d45;
  padding: 0 0.125rem;
  border-bottom: 1px solid hsl(var(--clr-black) / 0.1);
}

.footer {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  background-color: #1c2026;
}

.footer-inner {
  margin-inline: auto;
  display: flex;
  padding: 1.5rem 2rem;
  justify-content: center;
  gap: 0.5rem;

  flex-direction: column;
}
.footer-inner > * {
  width: 100%;
}
.footer-inner h5 {
  background-color: hsl(var(--clr-white) / 1);
  color: hsl(var(--clr-dark));
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--br-small);
  text-align: center;
}
.footer-inner p {
  margin: 0.25rem 0.625rem;
  font-size: 0.875rem;
}
.footer-copyright {
  max-width: 1200px;
  color: hsl(var(--clr-white) / 1);
  width: 100%;
  margin: 5px auto;
  display: flex;
  flex-direction: row;
  padding: 1rem 2rem;
  justify-content: space-between;
}
.footer-copyright p {
  font-size: 0.875rem;
  margin: 0rem 0.5rem;
}
.footer a {
  color: hsl(var(--clr-light) / 1);
}
.footer a:hover {
  color: hsl(var(--clr-light) / 0.8);
}
.primary-header > * {
  width: 100%;
}

.logo-and-phones {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.header-logo-img,
.header-phones {
  display: flex;
  align-items: center;
}
.header-logo-img figure {
  display: flex;
  align-items: center;
}
.header-phones {
  flex-direction: column;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.header-contact {
  display: flex;
  gap: 15px;
}
.header-btn-wrapper {
  display: flex;
  align-items: center;
}
.header-btn {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  display: flex;
  align-items: center;
  border: 1px solid hsl(var(--clr-accent) / 1);
  padding: 0.375rem 1rem 0.375rem 0.375rem;
  background-color: hsl(var(--clr-white) / 1);
	color: hsl(var(--clr-black) / 1);
  border-radius: 30px;
  font-size: 0.875rem;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.header-btn:hover {
  background-color: hsl(var(--clr-accent) / 1);
	border: 1px solid hsl(var(--clr-white) / 1);
	color: hsl(var(--clr-white) / 1);
}
.header-btn span {
  background-color: hsl(var(--clr-accent) / 1);
  border-radius: 50%;
  height: 28px;
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: hsl(var(--clr-white) / 1);
}

@media (min-width: 768px) {
  .header-phones {
    justify-content: flex-end;
    align-items: flex-end;
  }

  .logo-and-phones .footer-inner {
    flex-direction: row;
  }
}

.phone-header-text,
.header-phones a {
  text-decoration: none;
  color: hsl(var(--clr-dark));
}

.header-phones--phone {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header-phones--location {
  display: flex;
  font-size: 0.875rem;
}

/* navbar-1 */
.mobile-nav-toggle {
  display: none;
}

header.primary-header {
  position: sticky;
  top: 0;
  z-index: 999;
}
@media only screen and (max-width: 768px) {
  header.primary-header {
    position: relative;
  }
  .navbar-1 {
    position: absolute;
    z-index: 1011;
    right: 8px;
    top: 12px;
    width: auto;
    height: 40px;
    z-index: 99999999999;
  }
}
p {
  margin: 0.25rem 0 0.5rem;
}

.btn1 a {
  background-color: hsl(var(--clr-accent) / 1);
  color: hsl(var(--clr-white) / 1);
  padding: 0.5rem 1.5rem;
  border-radius: 12px;
  display: inline-block;
  text-decoration: none;
  font-size: 0.875rem;
  display: block;
  width: fit-content;
  margin: 0.5rem auto;

  transition: background-color 0.3s ease-in-out;
}
.btn1 a:hover {
  background-color: hsl(var(--clr-accent) / 0.8);
}
.btn2 {
  background-color: hsl(var(--clr-accent) / 0.1);
  color: hsl(var(--clr-dark) / 0.9);
  padding: 0.5rem 1rem;
  border-radius: var(--br-small);
  display: inline-block;
  text-decoration: none;
}
.btn2:hover {
  background-color: hsl(var(--clr-accent) / 0.3);
}

.card {
  border: 1px solid hsl(var(--clr-accent) / 0.1);
  padding: 1rem;
  border-radius: var(--br-medium);
}
.card a {
  text-decoration: none;
  color: hsl(var(--clr-accent) / 1);
}
.card h4 {
  font-size: 1.5rem;
}

.product-img img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.forminator-row.forminator-row-last .forminator-field {
  display: flex;
  justify-content: center;
}

.postheader {
  text-align: center;
  margin-top: 1rem;
}

@media (min-width: 20rem) and (max-width: 42rem) {
  .container {
    padding-inline: 0rem;
  }
  .products-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(160px, 2fr));

    grid-template-rows: auto;
    gap: 0.5rem;
  }
  .product-img img {
    width: 100%;
  }
}
.fw-900 {
  font-weight: 900;
}
.text-underline {
  color: #fff;
  border-radius: 3px;
  padding: 0.375rem 0.25rem;
  background-color: #333;
}
.btn-header {
  cursor: pointer;
  border-radius: 3px;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid hsl(var(--clr-accent));
  background-color: hsl(var(--clr-accent));
  color: #fff;
  width: 100%;
  transition: background-color 0.3s ease-in-out;
}

.btn-header:hover {
  color: #222;
}
.btn-header:hover,
.header-phone-link:hover {
  background-color: hsl(var(--clr-accent) / 0.15);
}

.phone-icon-header {
  border-radius: 6px;
  border: 1px solid hsl(var(--clr-accent));
  background-color: #fff;
  padding: 5px;
  border-radius: 3px;
}
a.phone-header-text {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.logo-and-phones {
  width: 100%;
  max-width: 1280px;
  margin: 5px auto;
  padding: 0px;
  display: flex;
  justify-content: space-between;
}
.logo-and-phones .navbar-1 {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}
.logo-and-phones .header-phones--phone {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-content: flex-end;
  align-items: end;
}
.logo-and-phones img {
  height: 50px;
  width: auto;
}
@media all and (max-width: 680px) {
  .logo-and-phones .header-phones--phone {
    flex-direction: row;
    width: 100%;
  }
  .logo-and-phones img {
    height: 40px;
    width: auto;
  }
  .logo-and-phones {
    justify-content: start;
  }
}
.max-width-1200 {
  width: 100%;
  max-width: 1200px;
}

.lang-item img {
  border-radius: 8px;
  width: 28px;
  height: auto;
}
@media all and (max-width: 680px) {
  .lang-item {
    margin-top: 8px;
  }
}

/*--------------main navigation  */
.main-nav {
  display: flex;
  justify-content: end;
  align-items: center;
}
.main-nav ul {
  list-style-type: none;
  display: flex;
}
.main-nav .nav li {
  font-weight: 400;
  font-size: 1rem;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.main-nav .nav a {
  color: hsl(var(--clr-white) / 1);
  margin: 0px;
  display: block;
  text-decoration: none;
  padding: 0;
  transition: color 0.3s ease-in-out;
  position: relative;
}
.main-nav .nav li:first-of-type {
  border-left: 0;
  box-shadow: none;
}

.main-nav .nav a:hover {
  color: hsl(var(--clr-white) / 0.8);
}
.main-nav .nav a::after {
  content: "";
  background-color: hsl(var(--clr-white) / 0.8);
  position: absolute;
  height: 1px;
  width: 100%;
  display: block;
  margin: 0 auto;
  /* width: 0; */
  scale: 0;
  transition: width 0.2s ease-in-out;
  transition: scale 0.3s ease-in-out;
}
.main-nav .nav a:hover::after {
  content: "";
  background-color: hsl(var(--clr-white) / 0.8);
  height: 1px;
  width: 100%;
  scale: 1;
}
.main-nav .nav .menu-cta a {
  background-color: hsl(var(--clr-dark) / 1);
  border: 1px solid hsl(var(--clr-light) / 1);
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.main-nav .nav .menu-cta a::after {
  content: none;
}
.main-nav .nav .menu-cta a:hover {
  background-color: hsl(var(--clr-light) / 1);
  color: hsl(var(--clr-black));
}
.main-nav .nav .current_page_item a {
  color: hsl(var(--clr-white) / 0.8);
}
.main-nav .nav .current_page_item a::after {
  content: "";
  background-color: hsl(var(--clr-white) / 0.8);
  height: 1px;
  width: 100%;
  scale: 1;
}
.header-social {
  display: flex;
  flex-direction: row;
  gap: 7px;
  justify-content: space-between;
  align-items: center;
}
.header-social img {
  height: 24px;
  width: auto;
  transition: all 0.3s ease-in-out;
}
.header-social img:hover {
  opacity: 0.8;
}
.header-social-languages {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: space-between;
  align-items: center;
}
.header-languages {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 3px;
  justify-content: space-between;
  align-items: center;
}
.header-languages a {
  text-transform: uppercase;
  display: flex;
  gap: 3px;
  text-decoration: none;
  color: hsl(var(--clr-white) / 0.8);
  font-size: 14px;
  padding: 3px;
}

.header-languages a:hover {
  color: hsl(var(--clr-accent) / 1);
}
.header-social a {
  color: hsl(var(--clr-dark) / 0.4);
  transition: color 0.3s ease-in-out;
}
.header-social a:hover {
  color: hsl(var(--clr-accent) / 1);
}

.header-social span a {
  display: flex;
  align-items: center;
}
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
}
/* @media only screen and (max-width: 768px) */
@media only screen and (max-width: 934px) {
  .hamburger {
    position: absolute;
    z-index: 101;
    right: 10px;
    top: 18px;
    padding: 0px;
    display: flex;
    cursor: pointer;
    transition-property: opacity, filter, top;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
  }
  .sticky .hamburger {
    /* top: 22px; */
  }
  .hamburger:hover {
    /* opacity: 0.7; */
  }
  .hamburger.is-active:hover {
    /* opacity: 0.7; */
  }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    /*     background-color: hsl(var(--clr-accent)); */
    background-color: hsl(var(--clr-white));
  }

  .hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
  }

  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }

  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 30px;
    height: 3px;
    /*     background-color: hsl(var(--clr-accent)); */
    background-color: hsl(var(--clr-white));
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }

  .page-template-menu-overlay-dark-bg .hamburger-inner,
  .page-template-menu-overlay-dark-bg .hamburger-inner::before,
  .page-template-menu-overlay-dark-bg .hamburger-inner::after {
    background-color: hsl(var(--clr-white));
    transition: background-color 0.3s ease-in-out;
  }

  .hamburger-inner::before,
  .hamburger-inner::after {
    content: "";
    display: block;
  }
  .hamburger-inner::before {
    top: -8px;
  }
  .hamburger-inner::after {
    bottom: -8px;
  }

  .hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease,
      transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  }

  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease,
      transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    position: absolute;
    z-index: 99;
    text-align: left;
    top: 0;
    left: 0;
    /*     background: hsl(var(--clr-white) / 1); 
    background: hsl(var(--clr-accent) / 1);*/
    background: #242d45;
    width: 100%;
    height: 100vh;
    padding: 20px 10px 10px 30px;
    /* transform:scale(1, 0);*/
    transform: translateX(-100%);
    transition: transform 400ms ease-in-out;
  }
  .main-nav.show-nav {
    transform: translateX(0);
  }
  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 10px 0px;
    gap: 15px;
  }

  .main-nav .nav li {
    border: 0;
    box-shadow: none;
    margin: 5px 0;
  }
  .main-nav .nav li {
    font-size: 1.25rem;
  }
}

.gallery-white-bg .kb-splide .splide__slide {
  background-color: hsl(var(--clr-white));
}
.forminator-ui.forminator-custom-form:not(
    .forminator-size--small
  )[data-grid="open"]
  .forminator-row:not(:last-child) {
  margin-bottom: 15px !important;
}

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

.forminator-button-submit {
  font-weight: 400 !important;
  border-radius: 5px !important;
}
.services h3 {
  font-weight: 900;
  font-size: 2rem;
}
.services img {
  background-color: hsl(var(--clr-accent) / 1);
  padding: 0.5rem;
}
.services .kt-adv-heading-has-icon {
  justify-content: space-between;
}

.subtitle-text {
  position: relative;
  display: inline-block;
  color: hsl(var(--clr-accent));
}
.subtitle-text::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -23px;
  background-color: hsl(var(--clr-dark) / 0.8);
  height: 18px;
  width: 15px;
}
.subtitle-text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -23px;
  background-color: hsl(var(--clr-dark) / 0.8);
  height: 18px;
  width: 15px;
}

.footer-row {
  margin-bottom: 0;
}

.products h2 {
  font-weight: 700;
  font-size: 2rem;
}

.hero-subtitle {
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  width: fit-content;
  color: hsl(var(--clr-white) / 0.7);
  font-size: 0.875rem;
  letter-spacing: 1px;
}
.hero-subtitle-white {
  display: block;
  width: fit-content;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  border: 1px solid hsl(var(--clr-secondary) / 0.5);
  font-size: 0.875rem;
}
.hero-list {
  background-color: hsl(var(--clr-white) / 0.6);
  padding: 0.875rem 0.75rem 0.5rem 0.75rem;
  border-radius: 8px;
  width: fit-content;
}
.hero-h1 {
  max-width: 950px;
  margin: 1rem 0 1.25rem;
  font-size: 3rem;
}
.services2 .kt-inside-inner-col {
  padding: 2rem;
}

.services2 .kt-inside-inner-col::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1px dashed hsl(var(--clr-accent));
  box-sizing: border-box;
  pointer-events: none;
  border-radius: 10px;
}

.forminator-ui.forminator-custom-form[data-design="default"] .forminator-input,
.forminator-ui.forminator-custom-form[data-design="default"]
  .forminator-textarea {
  border-radius: 5px !important;
}
@media all and (max-width: 680px) {
  .hero-h1 {
    font-size: 2rem;
    text-align: center;
  }
  h2 {
    font-size: 2rem;
  }
  .hero-subtitle {
    text-align: center;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    background-color: hsl(var(--clr-accent) / 0);
    color: hsl(var(--clr-white) / 0.7);
    font-size: 0.875rem;
  }
  .hero-list li {
    font-size: 1rem;
  }
}
.link-arial {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.forminator-button-submit,
.forminator-ui.forminator-custom-form[data-design="material"]
  .forminator-button {
  color: hsl(var(--clr-accent) / 1) !important;
  background-color: hsl(var(--clr-white) / 1) !important;
  border: 1px solid hsl(var(--clr-accent) / 1) !important;
  font-size: 0.875rem !important;
  border-radius: 12px !important;
  padding: 0.5rem 1.5rem !important;
}

.perevaga {
  /* background-color: hsl(var(--clr-white) / 1); */

  background-image: linear-gradient(
    to right top,
    #051937,
    #0a2e63,
    #194491,
    #305ac2,
    #4d71f5
  );
  border-radius: 6px;
  padding: 0.25rem 1rem 1rem;
  transition: background-color 0.3s ease-in-out;
}
.perevaga h3 {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: hsl(var(--clr-white) / 1);
}
.perevaga p {
  text-align: center;
  font-size: 0.938rem;
  line-height: 1.3;
  color: hsl(var(--clr-white) / 0.9);
}
.perevaga figure {
  margin: 1rem;
}
.perevaga img {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  opacity: 0.7;
}
.perevaga:hover {
  background-color: hsl(var(--clr-white) / 0.8);
}

.steps {
  border-radius: 6px;
  padding: 0.25rem 1rem 1rem;
  transition: background-color 0.3s ease-in-out;
}
.steps img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.steps p {
  text-align: center;
  font-size: 1rem;
  color: hsl(var(--clr-black) / 0.6);
  font-weight: 700;
}
.product {
  padding: 0.25rem 1rem;
}
.product h3 {
  margin: 0.5rem 0.25rem 0.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: hsl(var(--clr-black) / 0.9);
}
.product p {
  text-align: center;
  font-size: 0.938rem;
  text-wrap: balance;
  margin-bottom: 0.75rem;
}
.product img {
  max-width: 250px;
  height: auto;
  margin: 0 auto;
}

.hero-img img {
  height: auto;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  position: relative;

  -webkit-border-top-left-radius: 20px;
  -webkit-border-top-right-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-topright: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.hero-img::after {
  content: "";
  top: 100px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  position: absolute;
  max-width: 600px;
  margin: 0 auto;

  background-image: linear-gradient(
    to bottom,
    #dceaed,
    #d5e4e8,
    #cddfe3,
    #c6d9de,
    #bfd4d9
  );

  border-radius: 20px;
}
.under-hero .kt-blocks-info-box-title {
  font-weight: bold;
  font-size: 1.25rem;
}
.text-2 {
  color: hsl(var(--clr-white) / 0.3);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  margin-top: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}
.wp-block-table table td {
  border: 1px solid #999;
}
.price-table {
	border-radius:20px;
	background-color: hsl(var(--clr-white) / 1);
	color: hsl(var(--clr-dark) / 1);
	border:0;
}
.price-table thead{
	background-color: hsl(var(--clr-dark) / .1);
	border:0;
}
.price-table tbody tr:hover{
	background-color: hsl(var(--clr-dark) / .05);
	border:0;
}
.price-table table td {
	text-align: center;
}
.price-table tr:last-of-type td{
	border-bottom:0;
}
.price-table table td:first-child {
  text-align: left;
border-left: 0;
}
.price-table table tr td:last-child {
border-right: 0;
}
.price-table table tr th {
	border: 0;
}
.price-table table tr th:first-child {
 	border-right: 1px solid #999;
}
.grafik-likariv table td {
  text-align: center;
}
.grafik-likariv table {
  overflow-x: visible;
}
.grafik-likariv table td:first-child {
  text-align: left;
}
.doctor-block h3 {
  font-size: 1.125rem;
  margin: 0.5rem 0;
  letter-spacing: -1px;
}

.doctor-block p {
  font-size: 0.875rem;
  margin: 0.5rem 0;
}

.price-table table td[colspan] {
  background-color: #fff;
  text-align: center;
}
.free-services h3 {
  text-align: center;
  font-weight: 700;
}
.breadcrumbs {
  font-size: 0.75rem;
  margin-bottom: 1rem;
}
.breadcrumbs p,
.breadcrumbs a {
  font-size: 0.75rem;
}
.news-block .entry-title {
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}
p.btn a {
	display:inline-block;
	border-radius:10px;
	background-color: hsl(var(--clr-white) / 0.9);
	color: hsl(var(--clr-black) / 1);
	font-size:.875rem;
	padding:.25rem .75rem;
	margin:.125rem 0;
	transition:all .3s ease-in-out;
}
p.btn a:hover{
	background-color: hsl(var(--clr-white) / 0.7);
}
@media only screen and (max-width: 934px) {
	.header-contact {
		margin-right:100px;
	}
}
@media only screen and (max-width: 768px) {
	.hero {
  height: auto;
  display: flex;
  align-items: center;
}
  .steps {
    padding: 0.25rem 0.25rem 0.25rem;
  }
  .steps p {
    line-height: 1.2;
  }
  .single h1 {
    font-size: 1.5rem;
  }
  .logo-and-phones {
    flex-direction: column;
  }
  .header-contact {
    justify-content: center;
	  margin-right:0px;
  }
  .header-btn {
    font-size: 0.75rem;
    padding: 0.25rem 1rem 0.25rem 0.25rem;
	 margin-top:5px;
	  margin-bottom:5px;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 15px;
  }
}

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

.wp-admin .wp-block-kadence-rowlayout .block-editor-block-list__layout .block-editor-block-list__block a {
	color: hsl(var(--clr-black) / 1);
}
