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

:root {
  --clr-main: 195 94% 26%;
  --clr-accent: 185 47% 41%;
  --clr-secondary: 45 100% 50%;
  --clr-light: 45 80% 88%;
  --clr-white: 0 0% 100%;
  --clr-dark: 345 6% 13%;
  --clr-black: 0 0% 0%;

  --ff-main: "Fira sans", 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-white) / 1);
  background-color: #d7e9eb;
  font-family: var(--ff-main);
  color: hsl(var(--clr-black));
  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;
}
.single h1 {
  font-size: 2rem;
}
h2 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin: 0.5rem 0;
  letter-spacing: -1px;
  font-weight: 700;

  color: hsl(var(--clr-dark) / 0.8);
}
h3 {
  font-size: 1.5rem;
}
p {
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 0.5rem 0;
}
main {
  flex-grow: 1;
}

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

.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-white) / 1);
  padding: 0 0.125rem;
  margin: 0 2rem;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.footer {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  background-color: hsl(var(--clr-accent) / 1);
}

.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) / 0.81);
  width: 100%;
  margin: 5px auto;
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  justify-content: center;
}
.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);
}

.logo-and-phones {
  display: flex;
  justify-content: space-between;
  align-items: center;
  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-weight: 500;
  display: flex;
  align-items: center;
  border: 0;
  outline: 0;
  border: 1px solid hsl(var(--clr-accent) / 1);
  padding: 0.25rem 0.5rem 0.25rem 1rem;
  background-color: hsl(var(--clr-white) / 1);
  color: hsl(var(--clr-accent) / 1);
  border-radius: 20px;
  font-size: 0.875rem;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.header-btn:hover {
  background-color: hsl(var(--clr-accent) / 0.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;
  left: 0;
  z-index: 9999;
}
@media only screen and (max-width: 768px) {
  header.primary-header {
    margin: 0;
    left: 0;
  }
  .navbar-1 {
    position: absolute;
    z-index: 1011;
    right: 8px;
    top: 12px;
    width: auto;
    height: 40px;
    z-index: 99999999999;
  }
}

.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: 60px;
  width: auto;
}
@media all and (max-width: 680px) {
  .logo-and-phones .header-phones--phone {
    flex-direction: row;
    width: 100%;
  }

  .logo-and-phones img {
    height: 60px;
    width: auto;
  }
  .header-logo-img {
    margin-left: 10px;
    align-self: flex-start;
  }
  .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;

  margin: 0;
  padding: 15px 20px;
}
.main-nav .nav li {
  font-weight: 500;
  font-size: 1rem;
  padding: 0 5px;
  display: flex;
  align-items: center;
}
.main-nav .nav a {
  color: hsl(var(--clr-dark) / 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-accent) / 1);
}
.main-nav .nav a::after {
  content: "";
  background-color: hsl(var(--clr-accent) / 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-accent) / 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-accent) / 1);
}
.main-nav .nav .current_page_item a::after {
  content: "";
  content: none;
  background-color: hsl(var(--clr-accent) / 1);
  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: 32px;
  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) {
  .hamburger {
    position: absolute;
    z-index: 101;
    right: 10px;
    top: 23px;
    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));
  }

  .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));
    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: hsl(var(--clr-white) / 1);
    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;
}

.services {
  padding: 1rem;
  background-color: hsl(var(--clr-white) / 1);
  border-radius: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.services h3 {
  font-weight: 700;
  font-size: 1.375rem;
  margin: 1rem 0 0.5rem;
  color: hsl(var(--clr-black) / 0.8);
  text-align: center;
}
.services p {
  color: hsl(var(--clr-black) / 0.8);
  font-size: 1rem;
  text-align: center;
}
.services img {
  border-radius: 1.125rem;
}
.services-price {
  font-size: 0.875rem;
}
.services a {
  display: block;
  background-color: hsl(var(--clr-secondary));
  background-image: url(images/btn-arrow-right.png);
  background-position: right 10px center;
  background-size: 20px;
  background-repeat: no-repeat;
  border-radius: 10px;
  width: fit-content;
  padding: 0.75rem 2.5rem 0.75rem 1.25rem;
  color: hsl(var(--clr-accent) / 1);
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  margin: 1rem auto 0;

  transition: background-color 0.3s ease-in-out;
}
.services a:hover {
  background-color: hsl(var(--clr-secondary) / 0.6);
}
.services:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.services .kt-adv-heading-has-icon {
  justify-content: space-between;
}

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

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

.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) / 0.4) !important;
  border: 1px solid hsl(var(--clr-accent) / 1) !important;
  font-size: 0.875rem !important;
  border-radius: 10px !important;
  padding: 0.75rem 1.5rem !important;
  line-height: 1 !important;
}
.forminator-button-submit,
.forminator-ui.forminator-custom-form[data-design="material"]
  .forminator-button:hover {
  color: hsl(var(--clr-white) / 1) !important;
  background-color: hsl(var(--clr-accent) / 0.8) !important;
  border: 1px solid hsl(var(--clr-accent) / 1) !important;
  font-size: 0.875rem !important;
  border-radius: 10px !important;
  padding: 0.75rem 1.5rem !important;
  line-height: 1 !important;
}

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

.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 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 - 140px);
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin: 1rem 0 1.5rem;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.6);
  letter-spacing: -1px;
}
.hero p {
  font-weight: 500;
}
.benefit {
  padding: 1.5rem 1rem;
  border: 1px solid hsl(var(--clr-black) / 0.1);
  background-color: hsl(var(--clr-black) / 0.1);
  border-radius: 4px;
}
.benefit .kt-inside-inner-col p {
  color: hsl(var(--clr-white) / 0.9);
  font-size: 1rem;
  text-align: center;
}
.benefit .kt-inside-inner-col p:first-of-type {
  color: hsl(var(--clr-white) / 1);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0;
}
.benefit img {
  height: 64px;
  object-fit: contain;
  opacity: 0.8;
  margin: 0rem auto 1rem;
}
.benefit.product .kt-inside-inner-col p:first-of-type {
  color: hsl(var(--clr-white) / 1);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0;
  margin: 1rem;
}
.benefit.product img {
  height: 100px;
  width: 200px;
  object-fit: cover;
  opacity: 0.8;
  margin: 0rem auto 1rem;
  border-radius: 4px;
}
/* NEW */

.hero-subtitle {
}
.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-subtitle {
  font-weight: 600;
  text-transform: uppercase;
  color: hsl(var(--clr-white) / 0.7);
  font-size: 0.75rem;
  position: relative;
  padding: 5px 5px 5px 5px;
  color: hsl(var(--clr-secondary) / 1);
  color: #73b2b9;
  color: #afd3d7;
  margin: 1rem auto;
  font-size: 1rem;
}
.hero-subtitle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-20px);
  top: -25px;
  height: 40px;
  width: 40px;
  background-image: url(images/lines-light-green.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.subtitle-text {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  position: relative;
  padding: 5px 5px 5px 5px;
  color: hsl(var(--clr-accent) / 1);
  margin: 1rem auto;
  font-size: 1rem;
}
.subtitle-text::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-20px);
  top: -25px;
  height: 40px;
  width: 40px;
  background-image: url(images/lines-dark-green.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.hero h2 {
  font-size: 1.5rem;
}
.fw-600 {
  font-weight: 600;
}
.benefit2 figure {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.benefit2 img {
  width: 64px;
  background-color: hsl(var(--clr-accent) / 0.1);
  padding: 0.875rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.benefit2 h3 {
  font-weight: 600;
  color: hsl(var(--clr-black) / 0.8);
  font-size: 1.125rem;
  line-height: 1.2;
  margin: 0.5rem 0;
  letter-spacing: -1px;
}
.benefit2 p {
  color: hsl(var(--clr-black) / 0.9);
  font-size: 1.125rem;
  margin: 0.5rem 0;
}
.white-text .benefit2 {
  background-color: hsl(var(--clr-accent) / 0.9);
  padding: 1rem 1rem 0rem;
  border-radius: 10px;
}
.white-text .benefit2 p {
  color: hsl(var(--clr-white) / 1);
  font-weight: 400;
}
.white-text .benefit2 img {
  background-color: hsl(var(--clr-white) / 1);
}
/* NEW */
.hero .kt-row-layout-overlay::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(images/star-2.png), url(images/star-3.png);
  background-position: 30px 30px, calc(100% - 30px) calc(100% - 30px);
  background-repeat: no-repeat;
  background-size: 86px;

  animation: starsTwinkle 3s ease-in-out infinite alternate;
}
@keyframes starsTwinkle {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

@keyframes starsPulse {
  0% {
    background-size: 86px, 86px;
  }
  50% {
    background-size: 92px, 92px;
  }
  100% {
    background-size: 86px, 86px;
  }
}
@media only screen and (max-width: 1203px) {
  .main-nav .nav li {
    padding: 0 5px;
  }
}
@media only screen and (max-width: 768px) {
  .hero .kt-row-layout-overlay::before {
    background-position: 10px 10px, calc(100% - 10px) 10px;
    background-repeat: no-repeat;
    background-size: 40px;

    animation: starsTwinkle 3s ease-in-out infinite alternate;
  }
  .steps {
    padding: 0.25rem 0.25rem 0.25rem;
  }
  .steps p {
    line-height: 1.2;
  }
  .single h1 {
    font-size: 1.5rem;
  }
  .logo-and-phones {
    width: 100%;
    position: relative;
  }

  .header-contact {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
  .header-btn {
    font-size: 0.75rem;
    padding: 0.125rem 0.25rem 0.125rem 1rem;
  }
  .header-btn span {
    height: 24px;
    width: 24px;
  }
  .header-btn-wrapper {
    justify-content: center;
  }
  .header-social {
    justify-content: center;
  }
  .header-social img {
    height: 24px;
  }
  .footer-copyright {
    flex-direction: column;
    gap: 15px;
  }
  .hero h1 {
    font-size: 2rem;
    text-align: center;
    margin: 0.5rem;
  }
  .hero {
    height: auto;
  }
  .hero p {
    line-height: 1.2;
    font-size: 1rem;
    font-weight: 400;
    margin: 0.75rem 0;
  }
}

/* -------------------------------------POPUP */
/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.8) translateY(-20px);
  transition: all 0.3s ease;
  position: relative;
}

.popup-overlay.show .popup-container {
  transform: scale(1) translateY(0);
}

.popup-header {
  padding: 20px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.popup-title {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
  color: hsl(var(--clr-accent) / 1);
  margin: 0 0 0.5rem 0;
  text-align: center;
}

.close-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close-btn:hover {
  background-color: #f5f5f5;
  color: #333;
}

.popup-content {
  padding: 0 20px 20px;
}

.popup-content form {
  margin: 0;
}

.popup-content .forminator-ui {
  margin: 0 !important;
}

@media (max-width: 768px) {
  .popup-container {
    width: 95%;
    margin: 20px;
  }

  .popup-title {
    font-size: 20px;
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

body.popup-open {
  overflow: hidden;
}
/* -------------------------------------POPUP */

/* ANIMATE WAVES */
use {
  animation: move-forever 10s linear infinite;
  &:nth-child(2) {
    animation-duration: 3.5s;
    animation-delay: -1.5s;
  }
  &:nth-child(1) {
    animation-duration: 5s;
  }
}

@keyframes move-forever {
  0% {
    transform: translate(-2px, 0);
  }
  100% {
    transform: translate(0px, 0);
  }
}

.waves svg {
  width: 100vw;
  height: 150px;
}
/* ANIMATE WAVES */
.block2 {
  background-image: linear-gradient(
    to left top,
    #8de2eb,
    #b1e7fb,
    #d4edff,
    #eff4ff,
    #ffffff
  );
  padding: 1rem;
  border-radius: 1rem;
}
.block2 p {
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
  color: hsl(var(--clr-black) / 0.8);
}
.block2 img {
  border-radius: 0.75rem;
}
.block1 {
  position: relative;
  background-image: linear-gradient(
    to left top,
    #8de2eb,
    #b1e7fb,
    #d4edff,
    #eff4ff,
    #ffffff
  );

  padding: 1rem;
  border-radius: 1rem;
}
.block1:nth-of-type(1)::after,
.block1:nth-of-type(3)::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 10px;
  height: 42px;
  width: 42px;
  background-image: url(images/stars-3-green.png);
  position: center;
  background-size: 42px;
  background-repeat: no-repeat;
}

.block1 p {
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
  color: hsl(var(--clr-black) / 0.8);
}
.block1 img {
  border-radius: 0.75rem;
}
.baloon-bg {
  position: relative;
  overflow: hidden;
}

.baloon-bg::before,
.baloon-bg::after {
  content: "";
  position: absolute;
  width: 128px;
  height: 128px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.baloon-bg::before {
  top: 20%;
  left: 10px;
  background-image: url(images/balloon.png);

  animation-delay: 0s;
}

.baloon-bg::after {
  top: 60%;
  right: 15px;
  width: 82px;
  height: 82px;
  background-image: url(images/balloon.png);
  animation-delay: -2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .block1:nth-of-type(1)::after,
  .block1:nth-of-type(3)::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 10px;
    height: 22px;
    width: 22px;
    background-image: url(images/stars-3-green.png);
    position: center;
    background-size: 22px;
    background-repeat: no-repeat;
  }
  .block1:nth-of-type(2)::after,
  .block1:nth-of-type(4)::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    height: 22px;
    width: 22px;
    background-image: url(images/stars-3-green.png);
    position: center;
    background-size: 22px;
    background-repeat: no-repeat;
  }
}
.whyus img {
  height: 128px;
  width: auto;
  margin: 0 auto;
}
.whyus p {
  text-align: center;
  font-weight: 600;
  color: hsl(var(--clr-black) / 0.8);
  max-width: 300px;
  margin: 0.5rem auto;
}
.main-nav1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .main-nav1 {
    position: absolute;
    right: 10px;
    top: 15px;
  }
}
#whyus,
#kids-events,
#music,
#lections,
#sport,
#benefits,
#contacts,
#vidguky {
  scroll-margin-top: 80px;
}

.designed-by {
  width: 100%;
  max-width: 1200px;
  margin: 0.5rem auto;
  text-align: right;
  padding: 0 1rem;
}
.designed-by,
.designed-by a {
  font-size: 0.75rem;
  font-weight: 400;
  color: hsl(var(--clr-white) / 0.4);
}
.designed-by a {
  transition: color 0.3s ease-in-out;
}
.designed-by a:hover {
  color: hsl(var(--clr-white) / 0.7);
}
