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

:root {
  --clr-accent: 128, 181, 42;
  --clr-secondary: 37, 99, 235;
  --clr-white: 255, 255, 255;
  --clr-dark: 25, 36, 8;
  --clr-black: 0, 0, 0;

  --ff-main: "Raleway", 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: #fff;
  font-family: var(--ff-main);
  color: rgb(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;
}
h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0.5rem 0;
  color: rgba(var(--clr-dark), 1);
}
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: 0 auto;
  width: 100%;
}

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

.primary-navigation a > span {
  font-weight: 700;
  margin-right: 0.5em;
}
body {
  position: relative;
}
.primary-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  padding: 0 0.125rem;
  border-bottom: 1px solid rgba(var(--clr-white), 0.1);

  transform: translateY(0);
  transition: all 0.3s ease;
}

.primary-header.sticky {
  position: fixed;
  background-color: rgba(var(--clr-dark), 1);
  transform: translateY(-100%);
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.footer {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.footer {
  background-color: rgb(var(--clr-dark));
}

.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: 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: 0.875rem;
  margin: 0.125rem 0.5rem;
  text-align: center;
}
.footer a {
  color: hsl(var(--clr-white) / 1);
}
.footer a:hover {
  color: hsl(var(--clr-white) / 0.8);
}
.primary-header > * {
  width: 100%;
}

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

/* navbar-1 */
.mobile-nav-toggle {
  display: none;
}
.header-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-btn a {
  color: rgb(var(--clr-dark));
  display: block;
  border: 0px solid rgb(var(--clr-accent));
  background-color: rgba(var(--clr-accent), 1);
  background-image: url(images/arrow-up-right.png);
  background-position: center right 10px;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  padding: 8px 32px 8px 16px;
  transition: all 0.3s ease-in-out;
}
.header-btn a:hover {
  background-color: rgba(var(--clr-white), 1);
  color: rgb(var(--clr-black));
  border: 0px solid rgb(var(--clr-white));
}

p {
  margin: 0.25rem 0;
}
h2 {
  font-size: 2.5rem;
  margin: 0.25rem 0;
}
.postheader {
  text-align: center;
  margin-top: 1rem;
}

.fw-900 {
  font-weight: 900;
}
.logo-and-phones {
  width: 100%;
  max-width: 1280px;
  margin: 5px auto;
  padding: 0px;
  display: flex;
  justify-content: end;
  gap: 20px;
}
.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 {
  margin-right: auto;
}
.logo-and-phones .header-logo-img {
  max-width: 300px;
}

.logo-and-phones img {
  height: 50px;
  width: auto;
}
@media all and (max-width: 680px) {
  .logo-and-phones img {
    height: 50px;
    width: auto;
  }
}
.max-width-1200 {
  width: 100%;
  max-width: 1200px;
}

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

.hamburger {
  display: none;
  width: 40px;
  height: 24px;
}
@media only screen and (max-width: 768px) {
  .hamburger {
    position: absolute;
    z-index: 101;
    right: 6px;
    top: 16px;
    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: rgb(var(--clr-white));
  }

  .hamburger-box {
    width: 24px;
    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;
  }

  .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: rgba(var(--clr-dark), 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;
  }

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

/*-------------*/
.header-languages {
  display: flex;
  align-items: center;
}
.header-languages ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.header-languages a {
  padding: 3px;
  font-size: 0.875rem;
  color: rgba(var(--clr-white), 0.7);
  font-weight: 400;
  transition: color 0.3s ease-in-out;
}
.header-languages a:hover {
  color: rgb(var(--clr-accent));
}

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

@media only screen and (max-width: 768px) {
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.page-id-1893 .hero h1 {
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.5rem;
}
@media all and (max-width: 680px) {
  .hero-h1 {
    font-size: 1.5rem;
    text-align: center;
  }
  h2 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.link-arial {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.cta-block {
  padding: 3rem 3rem;
  color: #fff;
  border-radius: 30px;
}
.cta-block h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
}
.cta-block p {
  color: rgba(var(--clr-white), 1);
  text-align: center;
  font-size: 1.5rem;
}
p.cta-last-text {
  color: rgb(var(--clr-white));
  margin-top: 2rem;
  font-size: 1.25rem;
}
.perevaga-wrapper {
  background-color: rgb(var(--clr-dark));
}
.perevaga,
.benefits {
  background-image: linear-gradient(
    to right bottom,
    #70a121,
    #577f1d,
    #415f18,
    #2b4012,
    #192408
  );
  border: 1px solid rgba(var(--clr-accent), 0.8);
  border-radius: 7px;
  padding: 1.25rem 1.25rem 0.75rem;
  background-size: 200% 100%;
  transition: background-position 0.5s ease;
  background-position: 0% 0%;
}
.benefits .kt-inside-inner-col {
  display: flex;
  min-height: 200px;
}
.benefits:hover {
  background-position: 100% 0%;
}
.perevaga h3 {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(var(--clr-black), 0.7);
}
.benefits h3 {
  margin: 0.5rem 0;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(var(--clr-white), 1);
}
.perevaga p,
.benefits p {
  text-align: left;
  font-size: 1rem;
  line-height: 1.3;

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

.perevaga figure,
.benefits figure {
  display: flex;
  justify-content: start;
}
.perevaga img,
.benefits img {
  width: 68px;
  height: 68px;
}
.perevaga:hover {
  background-color: rgba(var(--clr-white), 0.8);
}

/* ---------------- */
.kt-row-column-wrap {
  display: flex;
  position: relative;
}

.perevaga {
  position: relative;
  flex: 1;
}

.perevaga::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-20px);
  right: -20px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid rgba(var(--clr-secondary), 0.8);
  z-index: 1;
}

.perevaga:last-child::after {
  content: none;
}

.m-top-auto {
  margin-top: auto;
}

/* -------------HOT IT WORKS */

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 50px;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
}

.gradient-background {
  background: linear-gradient(300deg, deepskyblue, darkviolet, blue);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.full-width {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
@media all and (max-width: 980px) {
  .header-btn a {
    padding: 3px;
    height: 32px;
    width: 32px;
    background-position: 4px center;
    background-size: 20px;
    border-radius: 50%;
  }
  .header-btn a span {
    display: none;
  }
  .logo-and-phones {
    gap: 6px;
  }
}
@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;
  }
  .perevaga::after {
    content: none;
  }
  .header-languages {
    margin-right: 60px;
  }

  .cta-block {
    padding: 3rem 1rem;
  }
}
@media only screen and (max-width: 475px) {
  .logo-and-phones img {
    height: 44px;
  }
}
.forminator-ui.forminator-custom-form[data-design="material"]
  .forminator-button:last-child {
  display: block;
  margin: 0 auto !important;
}
.error-wrapper {
  width: 100%;
  margin: 2rem auto;
  font-size: 20px;
  text-align: center;
}
