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

:root {
  --clr-main: 195 94% 26%;
  --clr-accent: 91, 186, 111;
  --clr-accent-darker: 72, 148, 88;
  --clr-secondary: 60 5% 20%;
  --clr-light: 45 80% 88%;
  --clr-white: 255, 255, 255;
  --clr-dark: 170 46% 16%;
  --clr-black: 0, 0, 0;

  --ff-main: "Fira Sans", serif;
}

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

/* https://piccalil.li/blog/a-modern-css-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: rgb(var(--clr-white));
  font-family: var(--ff-main);
  color: hsl(var(--clr-black));
  line-height: 1.5;
  font-size: 1.125rem;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

h1 {
  font-size: 2.25rem;
}
main {
  flex-grow: 1;
}

a {
  color: rgba(var(--clr-accent), 1);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: rgba(var(--clr-accent), 0.5);
}

.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;
}

.primary-header {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  overflow: hidden;
  z-index: 10;

  background-color: rgba(var(--clr-white), 0.4);
  background-color: rgba(var(--clr-black), 0.4);
  /* background-color: #FDB833; */
  /* backdrop-filter: blur(10px); */
}

/* STICKY NAVIGATION (JS CLASS ADDED) */
.primary-header.sticky {
  position: fixed;
  top: 0;
  /* left: 50%;
  transform: translateX(-50%); */

  width: 100%;
  z-index: 1000;
}

.logo-and-phones {
  /* background-color: hsl(var(--clr-white) / 0.4);
  background-color: hsl(var(--clr-white) / 0.4);
  backdrop-filter: blur(10px); */
  display: flex;
  justify-content: end;
  flex-direction: row;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0px;

  /* -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -moz-border-radius-topleft: 8px;
  -moz-border-radius-topright: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px; */

  transition: opacity 0.3s ease-in-out 0.3s;
}
.primary-header.sticky .logo-and-phones {
  opacity: 0;
  display: none;

  transition: opacity 0.3s ease-in-out 0.3s;
}
.navigation {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  overflow: hidden;
  transition: max-width 0.2s ease-in-out;
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer {
  background-color: rgba(var(--clr-black), 0.8);
}

.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: rgba(var(--clr-white), 1);
  font-size: 1.125rem;
  padding: 0.25rem 0.5rem;
  text-align: center;
}
.footer-inner p {
  margin: 0.25rem 0.625rem;
  font-size: 1rem;
}
.footer-copyright {
  max-width: 1200px;
  color: rgba(var(--clr-white), 0.8);
  width: 100%;
  margin: 5px auto;
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  justify-content: center;
}
.footer-copyright p {
  font-size: 1rem;
  margin: 0.125rem 0.5rem;
  text-align: center;
}
.footer a {
  color: hsl(var(--clr-light) / 1);
}
.footer a:hover {
  color: hsl(var(--clr-light) / 0.8);
}

.header-logo-img,
.header-phones {
  width: 100%;
  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;
}

@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;
}

@media (max-width: 35rem) {
  .header-logo-img {
    width: 80%;
  }
}

.mobile-nav-toggle {
  display: none;
}

@media only screen and (max-width: 768px) {
  .navbar-1 {
    position: absolute;
    z-index: 1011;
    right: 8px;
    top: 12px;
    width: auto;
    height: 40px;
    z-index: 99999999999;
  }
}

h2 {
  font-size: 2.5rem;
}

.btn2 {
  background-color: rgba(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: rgba(var(--clr-accent), 0.3);
}

.card {
  border: 1px solid rgba(var(--clr-accent), 0.3);
  padding: 1rem;
  border-radius: var(--br-medium);
}
.card a {
  text-decoration: none;
  color: rgba(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 rgba(var(--clr-accent), 1);
  background-color: rgba(var(--clr-accent), 1);
  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: rgba(var(--clr-accent), 0.1);
}

.phone-icon-header {
  border-radius: 6px;
  border: 1px solid rgba(var(--clr-accent), 1);
  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 .navbar-1 {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}
.logo-and-phones .header-logo-img,
.logo-and-phones .header-phones {
  width: auto;
}
.logo-and-phones .header-logo-img {
  margin: 1rem;
  margin-right: auto;
  width: 300px;
  height: auto;
}
.logo-and-phones .header-phones {
  margin: 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 {
  width: 160px;
  height: auto;
}

@media all and (max-width: 768px) {
  .logo-and-phones .header-phones--phone {
    flex-direction: row;
    width: 100%;
  }
  .logo-and-phones img {
    width: 120px;
    height: auto;
    margin: 4px 0 10px 10px;
  }
}
.max-width-1200 {
  width: 100%;
  max-width: 1200px;
}

/*--------------main navigation  */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: rgba(var(--clr-accent), 1); */
}
.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: rgb(var(--clr-white));
  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: rgba(var(--clr-accent), 1);
}
.main-nav .nav a::after {
  content: "";
  background-color: rgba(var(--clr-accent), 1);
  position: absolute;
  height: 1px;
  width: 100%;
  display: block;
  margin: 0 auto;
  scale: 0;
  transition: width 0.2s ease-in-out;
  transition: scale 0.3s ease-in-out;
}

/* .main-nav .nav .current_page_item a::after {
  scale: 1;
} */
.main-nav .nav .current-menu-item a::after {
  /*   scale: 1; */
}
.main-nav .nav .current_page_item a {
  color: rgba(var(--clr-accent), 1);
}
.main-nav .nav a:hover,
.main-nav .nav .current_page_item a::after {
  scale: 1;
}
/* .main-nav .nav a:hover::after {
  content: "";
  background-color: rgba(var(--clr-white), 1);
  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));
}

.header-social-languages {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: end;
  margin-right: 10px;
}

.header-social {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 3px;
  justify-content: space-between;
  align-items: center;
}
.header-languages ul {
  display: flex;
  flex-direction: row;
  gap: 3px;
  justify-content: space-between;
  align-items: center;

  margin: 0;
  padding: 0;
  list-style: none;
}
.header-languages a {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: hsl(var(--clr-dark) / 0.8);
  font-size: 14px;
  padding: 3px;
}
.lang-item img {
  border-radius: 3px;
  width: 28px;
  height: auto;
}
.header-languages a:hover {
  color: rgba(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: rgba(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) {
  .hamburger {
    position: absolute;
    z-index: 101;
    right: 10px;
    top: 5px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    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: rgb(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: rgb(var(--clr-white));
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }

  .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: rgba(var(--clr-accent), 1);
    width: 100%;
    height: 100vh;
    padding: 20px 10px 10px 30px;
    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;
  }
  .main-nav .nav a {
    color: hsl(var(--clr-black));
  }
  .footer-copyright {
    flex-direction: column;
    gap: 5px;
  }
}

.gallery-white-bg .kb-splide .splide__slide {
  background-color: rgb(var(--clr-white));
}
.forminator-row .no-label label {
  display: none !important;
}
.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;
}

.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;
}
.white-text h1,
.white-text h2,
.white-text p {
  color: rgba(var(--clr-white), 1);
}
.hero h1 {
  font-size: 3rem;
}
p.hero-subtitle {
  position: relative;

  width: fit-content;

  padding: 0.5rem 1.5rem;

  font-size: 1rem;

  border-radius: 6px;
  padding: 0.75rem 1.5rem 0.625rem;
  border: 0px solid rgba(var(--clr-white), 1);
  color: rgba(var(--clr-black), 0.8);
  font-size: 1rem;

  background-color: rgba(var(--clr-white), 0.6);
}

.section-subtitle {
  display: block;
  margin: 0 auto;
  width: fit-content;
  border-radius: 8px;
  padding: 0.375rem 1.25rem;
  border: 1px solid hsl(var(--clr-dark) / 0.2);
  background-color: hsl(var(--clr-dark) / 0.1);
  font-size: 0.875rem;
}
.white-text .section-subtitle {
  display: block;
  margin: 0 auto;
  width: fit-content;
  border-radius: 8px;
  padding: 0.375rem 1.25rem;
  border: 1px solid hsl(var(--clr-white) / 0.3);
  color: hsl(var(--clr-white) / 0.8);
  font-size: 0.875rem;
}

.benefits {
  background-image: linear-gradient(
    to right top,
    #163b35,
    #17443d,
    #184d44,
    #19564c,
    #196054,
    #18685a,
    #176f61,
    #167767,
    #137f6d,
    #0f8673,
    #098e78,
    #02967e
  );
  background-size: 100% 100%;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.benefits:hover {
  background-size: 130% 130%;
}
.benefits .kt-blocks-info-box-text {
  color: rgba(var(--clr-black), 0.9);
  font-size: 1rem;
}

.benefits2 .kt-blocks-info-box-link-wrap {
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  border: 1px solid rgba(var(--clr-accent), 0.4);
}
.benefits2:hover .kt-blocks-info-box-link-wrap {
  border: 1px solid rgba(var(--clr-accent), 1);
}
.benefits2 .kt-blocks-info-box-text {
  color: rgba(var(--clr-black), 0.7);
  font-size: 1rem;
}
.benefits2 h3 {
  font-size: 1.25rem;
  padding-top: 0.5rem;
  margin: 0 0 0.25rem;
  font-weight: 700;
  color: rgba(var(--clr-black), 0.8);
}
.benefits2 .kadence-info-box-image-inner-intrisic-container {
  border-radius: 6px;
  padding: 8px;
  background-color: rgba(var(--clr-accent), 1);
}

.service .kt-inside-inner-col {
  padding: 4rem 2rem 1rem 0rem;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 0;
  gap: 0.5rem;
}

.service .kt-inside-inner-col::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(164, 164, 164, 0)
  );
  pointer-events: none;
  z-index: -1;
  transition: height 0.3s ease, background 0.3s ease;
}

.service h3 {
  display: inline-block;
  width: fit-content;
  margin: 1rem 0rem 0.5rem 0rem;
  padding: 0 2rem 0 2rem;
  color: #fff;
  color: rgba(var(--clr-accent), 1);
  background-color: #fff;

  font-size: 1.75rem;
  font-weight: 700;
}
.service p {
  margin: 0 2rem;
  font-size: 1rem;
  color: rgba(var(--clr-white), 0.9);
}
.service a {
  background-image: url(images/double-arrow-right-green.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 18px;
  margin-top: 0.25rem;
  display: inline-block;
  padding: 0.25rem 1.5rem 0.25rem 0rem;
  font-size: 0.875rem;
  transition: all 0.3s ease-in-out;
}
.service a:hover {
  background-image: url(images/double-arrow-right-white.png);
  color: rgba(var(--clr-white), 0.9);
}
.service-inner h3 {
  margin: 0;
  color: #fff;
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
}

.service-inner p {
  margin: 0;
  font-size: 0.938rem;
  color: rgba(var(--clr-white), 0.9);
  color: rgba(var(--clr-black), 0.9);
}
.btn1 a {
  display: inline-block;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 1px solid rgba(var(--clr-accent), 1);
  background-color: hsl(var(--clr-accent));
  background-image: url(images/arrow-right.svg);
  background-position: right 12px center;
  background-size: 18px;
  background-repeat: no-repeat;
  color: rgba(var(--clr-white), 1);
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background-color 0.3s ease-in-out;
}
.btn1 a:hover {
  background-color: rgba(var(--clr-accent), 0.21);
}
.btn2 {
  margin: 20px 0 0 0;
  padding: 0;
}
.btn2 a {
  display: inline-block;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 1px solid rgba(var(--clr-white), 1);
  background-color: rgb(var(--clr-white));
  background-image: url(images/right-arrow-orange.svg);
  background-position: right 12px center;
  background-size: 20px;
  background-repeat: no-repeat;
  color: hsl(var(--clr-accent));
  border-radius: 7px;
  font-size: 0.875rem;
  transition: background-color 0.3s ease-in-out;
}
.btn2 a:hover {
  background-color: hsl(var(--clr-white) / 0.9);
}
.header-btn-wrapper {
  width: 100%;
  display: flex;
  gap: 7px;
  justify-content: center;
}
.header-btn {
  outline: none;
  display: block;
  padding: 0.25rem 2.75rem 0.25rem 1.25rem;
  border: 1px solid rgba(var(--clr-white), 0.5);
  background-color: rgba(var(--clr-accent), 1);
  background-color: #489458;
  background-image: url(images/btn-header-hover.svg);
  background-position: right 12px center;
  background-size: 20px;
  background-repeat: no-repeat;
  color: rgba(var(--clr-white), 1);
  border-radius: 5px;
  font-size: 0.875rem;
  transition: background-color 0.3s ease-in-out,
    background-image 0.3s ease-in-out;

  cursor: pointer;
}
.header-btn:hover {
  background-image: url(images/btn-header-hover.svg);
  background-color: rgba(var(--clr-accent), 1);
}
.header-contact-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.header-phone span {
  padding: 0.375rem 1.25rem 0.375rem 2rem;
  background-color: transparent;
  background-image: url(images/phone-white.svg);
  background-position: left center;
  background-size: 24px;
  background-repeat: no-repeat;
  font-size: 1rem;
  color: rgba(var(--clr-white), 0.8);
}
.header-mail span {
  padding: 0.375rem 1.25rem 0.375rem 2rem;
  background-color: transparent;
  background-image: url(images/mail.svg);
  background-position: left 4px center;
  background-size: 16px;
  background-repeat: no-repeat;
  font-size: 0.875rem;
}
.blok-1 .kt-inside-inner-col {
  padding: 20rem 1rem 1rem 1rem;
  border-radius: 10px;
}
.blok-1 .kt-inside-inner-col p {
  background-color: hsl(var(--clr-white) / 0.4);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 2rem 1rem;
  text-align: center;
}

.checkbox-grid > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.checkbox-grid > div span {
  grid-column: span 4;
}
.checkbox-grid .forminator-checkbox {
  margin: 5px !important;
}

.forminator-ui.forminator-custom-form:not(
    .forminator-size--small
  )[data-grid="open"]
  .forminator-col {
  padding: 0 5px !important;
}
.forminator-ui#forminator-module-1181.forminator-design--default
  .forminator-input {
  outline: none;
  border-color: hsl(var(--clr-dark) / 1);
  border: 1px solid;
}
@media (min-width: 783px) {
  .forminator-ui.forminator-custom-form[data-design="default"]:not(
      .forminator-size--small
    ) {
    margin: 0px 0 !important;
  }
}
.form-title {
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
}
.form-subtitle {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .header-social-languages {
    flex-direction: row;
  }
  .header-mail {
    display: none;
  }
  .primary-header {
    top: 0;
    position: fixed;
    overflow: visible;
    left: 0;
    right: 0;
    transform: translateX(0);
  }
  .primary-header.sticky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: visible;
    height: 100px;
  }
  .primary-header.sticky .logo-and-phones {
    opacity: 1;
    display: flex;
    border-radius: 0;
  }
  .main-nav {
    height: 100vh;
    bottom: 0;
    /* z-index: 99; */
    overflow: visible;
    position: fixed;
    min-height: 100vh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .main-nav .nav li {
    font-size: 1rem;
  }

  .hero-subtitle {
    padding: 0.5rem;
    font-size: 0.75rem;
    margin: 0 auto 20px;
  }
  .hero h1 {
    font-size: 1.75rem;
  }
  .logo-and-phones {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 5px 5px 8px 5px;
  }
  .logo-and-phones .header-logo-img {
    flex-shrink: 0;
    justify-self: stretch;
    margin: 0 auto 0 0;
  }
  .header-phone span {
    font-size: 1rem;
    background-size: 20px;
    padding: 0.375rem 0.25rem 0.375rem 1.5rem;
    font-weight: normal;
  }
  .header-contact-info {
    margin: 0;
    padding: 0;
  }
  .header-social-languages {
    flex-direction: row-reverse;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }
  .logo-and-phones {
    width: calc(100% - 90px);
  }
  .header-btn {
    background-image: none;
    padding: 4px 8px;
  }
  h2 {
    font-size: 1.5rem;
  }
  .counties-block {
    display: block;
    width: fit-content;
    border-radius: 10px;
    padding: 0.375rem 0.5rem 0.375rem 2rem;
    border: 1px solid hsl(var(--clr-accent) / 0.3);
    background-color: hsl(var(--clr-white) / 0.1);
    font-size: 0.875rem;
    color: #fff;
    background-position: left 6px center;
    background-size: 24px;
    background-repeat: no-repeat;
  }

  .checkbox-grid > div {
    grid-template-columns: repeat(2, 1fr);
  }
  .checkbox-grid > div span {
    grid-column: span 2;
  }
  .form-title {
    font-size: 1.125rem;
    line-height: 1.2;
  }
  .form-subtitle {
    font-size: 1rem;
    line-height: 1.3;
  }
  .main-nav .nav .current_page_item a {
    color: hsl(var(--clr-accent));
  }
  .main-nav .nav .current_page_item a::after {
    background-color: hsl(var(--clr-accent));
  }
  .main-nav .nav a::after {
  }
}
@media only screen and (max-width: 768px) {
  .logo-and-phones {
    width: 100%;
    flex-direction: column;
  }
}

/* -------------MODALS----------- */
.modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: hsl(var(--clr-dark) / 0.8);
}

.hide {
  display: none;
}
.modal-content h2 {
  font-size: 2.5rem;
  color: hsl(var(--clr-accent));
  text-align: center;
}
body.modal-open {
  overflow: hidden;
}
.modal-content {
  background-color: rgb(var(--clr-white));
  margin: 20px auto;
  padding: 20px 30px 40px 30px;
  border-radius: 15px;
  border: 2px solid hsl(var(--clr-accent));
  max-height: 90vh;
  overflow-y: auto;
  width: 90%;
  max-width: 1000px;
  scrollbar-color: white orange;
  scrollbar-width: thin;
}
.close-wrapper {
  position: relative;
}
.close {
  position: absolute;
  top: -10px;
  right: 0;
  color: rgba(var(--clr-black), 0.7);
  float: right;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: rgba(var(--clr-white), 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  line-height: 1;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}
.close span {
  color: rgba(var(--clr-black), 0.7);
}
.close:hover,
.close:focus {
  color: rgb(var(--clr-accent));
  text-decoration: none;
  cursor: pointer;
}
.modal .customlist-1 li {
  background-image: url(images/list-arrow.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 36px;
  margin: 3px 0;
  font-size: 1.125rem;
  padding: 0.25rem 0.75rem 0.25rem 3rem;
}
.popup-price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.popup-price {
  font-size: 2.5rem;
  line-height: 1;
  color: hsl(var(--clr-accent));
  text-align: center;
}
.btn-popup {
  cursor: pointer;
  display: block;
  border-radius: 15px;
  border: 0;
  background-color: hsl(var(--clr-accent));
  color: hsl(var(--clr-dark));
  padding: 15px 20px 10px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;

  transition: background-color 0.3s ease-in-out;
}
.popup-response {
  margin: 1rem 0.25rem 1rem 0;
}
@media (max-width: 768px) {
  .modal-content h2 {
    font-size: 1.5rem;
    text-align: left;
  }
  .close {
    height: 32px;
    width: 32px;
    top: 10px;
    right: 0px;
  }
  .modal .customlist-1 li {
    font-size: 0.875rem;
    background-size: 24px;
    padding: 0.125rem 0.5rem 0.125rem 2rem;
  }
  .popup-price-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  .popup-price {
    font-size: 2rem;
  }
  .phone-icon-container {
    right: 5px;
    top: 50%;
  }
  .phone-icon {
    width: 60px;
    height: 60px;
    padding: 10px;
  }
  .form-style input {
    box-sizing: border-box;
  }
}
/* -------------MODALS----------- */
/* POPUP END */

.btn3 a {
  position: relative;
  background-color: rgba(var(--clr-accent-darker), 1);
  background-image: url(images/arrow-right.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: right 15px center;
  color: hsl(var(--clr-accent));
  display: block;
  max-width: fit-content;
  padding: 0.5rem 3rem 0.5rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  border: 1px solid rgba(var(--clr-accent), 1);
  transition: background-color 0.3s ease-in-out;
}
.btn3 a:hover {
  background-color: rgba(var(--clr-accent), 1);
}

.polylang_langswitcher a {
  color: hsl(var(--clr-black) / 1);
}
.polylang_langswitcher .current-lang a {
  color: rgba(var(--clr-accent), 1);
}

.header-contact-info a {
  color: rgba(var(--clr-white), 0.8);
}
.header-contact-info a:hover {
  color: rgba(var(--clr-accent), 1);
}

.header-messengers img {
  width: 100%;
  height: auto;
}
.header-messengers a {
  display: block;
  height: 24px;
  width: 24px;
}
.header-messengers {
  display: flex;
  align-items: center;
  gap: 5px;
}
.designed-by {
  width: 90%;
  max-width: 1260px;
  text-align: right;
  padding: 0rem 0.25rem 1rem;
  margin: 0 auto;
}
.designed-by,
.designed-by a {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(var(--clr-white), 0.4);
}
.designed-by a {
  transition: color 0.3s ease-in-out;
}
.designed-by a:hover {
  color: rgba(var(--clr-white), 1);
}
@media only screen and (max-width: 768px) {
  .header-messengers {
    margin-right: 60px;
  }
  .header-messengers a {
    display: block;
    height: 32px;
    width: 32px;
  }
  .header-btn-wrapper {
    width: auto;
  }
  .header-contact-info {
    align-items: center;
  }
  .header-languages ul {
    align-items: center;
  }
  .header-social-languages,
  .header-contact-info {
    gap: 6px;
  }
  .header-social-languages {
    gap: 6px;
    margin: 0;
  }
  .header-languages a {
    padding: 0 3px;
  }
  p.hero-subtitle {
    text-align: center;
    padding: 0.25rem 0.5rem 0.25rem;
  }
}
