html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

* {
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

:after, :before {
  box-sizing: inherit;
}

article, aside, footer, header, main, nav, section {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

a {
  text-decoration: none;
}

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

blockquote, q {
  quotes: none;
}

/* Utility */
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  left: -9999px;
  top: -9999px;
}

h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'gang_of_threerus_by_daymariRg';
  src: url("12489-webfont.woff2") format("woff2"), url("12489-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: Montserrat, sans-serif;
}

/* Variables */
:root {
  --color-yellow: #FEC21F;
  --color-green: #009555;
  --color-darkgreen: #004B2B;
}

/* Components */
@media (min-width: 1023px) {
  .mobile-only {
    display: none !important;
  }
}

/* reset button styles */
.btn {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  font: inherit;
  /* [3] */
  text-align: center;
  /* [4] */
  cursor: pointer;
  /* [5] */
  border: 0;
  padding: 0;
  position: relative;
  text-decoration: none !important;
}

.btn-primary {
  background: #FEC21F;
  border-radius: 100px;
  padding: 18px 36px;
  font-size: 2rem;
  transition: all 0.2s ease;
  font-weight: 700;
  color: black;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 767px) {
  .btn-primary {
    font-size: 1.8rem;
  }
}

.btn-primary svg {
  width: 24px;
  margin-left: 6px;
  fill: black;
}

@media (max-width: 767px) {
  .btn-primary svg {
    width: 20px;
  }
}

@media (min-width: 1024px) {
  .btn-primary:hover {
    background: white;
  }
}

@media (max-width: 767px) {
  .btn-primary {
    font-size: 16px;
    margin: 0 auto;
  }
}

.btn-secondary {
  color: #FEC21F;
  padding: 18px 0;
  font-size: 2rem;
  transition: all 0.2s ease;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 767px) {
  .btn-secondary {
    font-size: 1.8rem;
  }
}

.btn-secondary svg {
  width: 24px;
  margin-left: 6px;
  fill: #FEC21F;
}

@media (max-width: 767px) {
  .btn-secondary svg {
    width: 20px;
  }
}

@media (max-width: 1023px) {
  .btn-container {
    display: flex;
    justify-content: center;
  }
}

#thank {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#thank * {
  text-align: center;
}

/* Pages */
#masthead {
  width: 100%;
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: var(--color-green);
}

#masthead .nav-wrap {
  width: 100%;
  display: flex;
}

@media (max-width: 767px) {
  #masthead .nav-wrap {
    justify-content: space-between;
  }
}

.logo {
  position: relative;
  z-index: 4;
  max-width: 160px;
}

@media (max-width: 1023px) {
  .primary-nav {
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    background: white;
    z-index: 3;
    padding: 24px;
  }
}

@media (min-width: 1024px) {
  .primary-nav {
    display: flex;
    align-items: center;
  }
}

.nav-link {
  padding: 8px 16px;
  color: white;
  font-size: 1.4rem;
  display: block;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.2s linear;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .nav-link {
    font-size: 28px;
    text-align: center;
  }
}

.nav-link + .nav-link {
  margin-left: 12px;
}

@media (max-width: 1240px) {
  .nav-link + .nav-link {
    margin-left: 8px;
  }
}

@media (max-width: 1023px) {
  .nav-link + .nav-link {
    margin-left: 0;
    margin-top: 8px;
  }
}

@media (min-width: 1024px) {
  .nav-link:hover {
    background: var(--color-yellow);
    color: black;
  }
}

.nav-link-active {
  background: #4145B5;
  color: white;
}

@media (max-width: 1023px) {
  .nav {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .nav {
    order: 2;
    margin-left: 32px;
  }
}

@media (min-width: 1024px) {
  .nav {
    margin-left: 40px;
  }
}

.header-cta {
  display: flex;
  align-items: center;
  margin-left: auto;
}

@media (max-width: 767px) {
  .header-cta {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header-cta {
    order: 1;
  }
}

.header-cta-mobile {
  margin: 60px auto 0;
}

@media (min-width: 768px) {
  .header-cta-mobile {
    display: none;
  }
}

.menu-toggle {
  padding: 0;
  height: 20px;
  width: 31px;
  position: relative;
  z-index: 4;
  border: 0;
  background: none;
}

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

.hamburger {
  display: block;
  position: relative;
  height: 21px;
  width: 30px;
  margin-top: 1px;
  cursor: pointer;
}

.hamburger__bar {
  backface-visibility: hidden;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 8px;
  transform-origin: center center;
  transition: transform 0.3s, background 0.3s, opacity 0.3s;
  background: white;
}

.hamburger__bar:first-child {
  transform: translatey(-7px);
}

.hamburger__bar:last-child {
  transform: translatey(7px);
}

.toggled .hamburger__bar {
  transform: rotate(45deg);
}

.toggled .hamburger__bar:nth-child(2) {
  transform: rotate(0);
  opacity: 0;
}

.toggled .hamburger__bar:last-child {
  transform: rotate(-45deg);
}

.toggled .primary-nav {
  display: flex;
  background: var(--color-green);
}

.section {
  padding: 72px 0;
  background: var(--color-green);
}

@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}

.section-bg-darkgreen {
  background: var(--color-darkgreen);
}

.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .container {
    padding: 0 24px !important;
  }
}

@media (max-width: 1440px) {
  .container {
    padding: 0 80px;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {
  .container {
    padding: 0 60px;
  }
}

.section-header {
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 52px;
  }
}

.section-header-large {
  font-family: gang_of_threerus_by_daymariRg;
}

.section-header-large > span {
  font-size: 56px;
}

@media (max-width: 767px) {
  .section-header-large > span {
    font-size: 36px;
  }
}

.section-header-copy {
  color: transparent;
  -webkit-text-stroke: 1px var(--color-yellow);
  position: absolute;
  top: -4px;
  left: -4px;
  opacity: 0.5;
}

@media (max-width: 767px) {
  .section-header-copy {
    top: -2px;
    left: -2px;
  }
}

.section-header-original {
  position: relative;
  z-index: 2;
}

.row {
  display: flex;
  align-items: center;
}

@media (max-width: 1023px) {
  .row {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .row {
    margin: 0 -30px;
  }
  .row > * {
    padding: 0 30px;
  }
}

@media (min-width: 1400px) {
  .row {
    margin: 0 -60px;
  }
  .row > * {
    padding: 0 60px;
  }
}

/* Mobile columns */
@media (max-width: 1023px) {
  [class*="col"] {
    flex: 0 0 100% !important;
    width: 100%;
  }
}

@media (max-width: 1023px) {
  [class*="col"] + [class*="col"] {
    margin-top: 24px;
  }
}

.col-4 {
  flex: 0 0 33.333%;
}

.col-6 {
  flex: 0 0 50%;
}

.col-5 {
  flex: 0 0 42%;
}

.col-7 {
  flex: 0 0 58%;
}

.col-8 {
  flex: 0 0 68%;
}

@media (min-width: 1024px) {
  .col-8 {
    padding-left: 40px;
  }
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}

@media (max-width: 767px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Type */
.typography * + * {
  margin-top: 18px;
}

@media (max-width: 767px) {
  .typography * + * {
    margin-top: 20px;
  }
}

.typography + .btn-container {
  margin-top: 32px;
}

@media (max-width: 767px) {
  .typography + .btn-container {
    margin-top: 24px;
  }
}

.op-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-link {
  display: flex;
  align-items: center;
  font-size: 16px;
  border-radius: 1000px;
  color: white;
  height: 28px;
  padding: 0 8px;
}

.phone-link img {
  filter: invert(100%);
  margin-right: 2px;
  width: 22px;
  height: 22px;
}

.icon-link {
  display: block;
  border-radius: 1000px;
}

.icon-link img {
  filter: invert(100%);
  width: 22px;
  height: 22px;
}

#main h1 {
  font-size: 8.6rem;
  line-height: 1.1;
  color: white;
  font-weight: 300;
  margin-bottom: -12px;
}

#main h2, #main .h2 {
  font-weight: 300;
  font-size: 5.6rem;
  line-height: 1.1;
  color: white;
  position: relative;
}

#main h3, #main .h3 {
  font-weight: 600;
  line-height: 1.25;
  color: white;
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  #main h3, #main .h3 {
    font-size: 2rem;
  }
}

@media (min-width: 1400px) {
  #main h3, #main .h3 {
    font-size: 2.8rem;
  }
}

#main p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: white;
}

@media (max-width: 767px) {
  #main p {
    font-size: 16px;
  }
}

@media (min-width: 1400px) {
  #main p {
    font-size: 21px;
  }
}

#main p.small {
  font-size: 17px;
  line-height: 1.4;
}

@media (max-width: 767px) {
  #main p.small {
    font-size: 17px;
  }
}

/*** HOME ***/
#intro {
  padding-top: 110px;
  overflow: hidden;
}

#intro .row {
  margin: 0 -30px;
}

#intro .col-6,
#intro .col-7 {
  padding: 0 30px;
  position: relative;
}

#intro .col {
  flex: 0 0 50%;
}

#intro .col-7:last-child {
  padding-left: 0;
}

@media (max-width: 1023px) {
  #intro .col-7:last-child {
    order: -1;
  }
}

#intro p {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 600;
}

@media (max-width: 767px) {
  #intro p {
    font-size: 32px;
    padding: 0 16px;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #intro p {
    text-align: center;
  }
}

.body-new #pro-nas {
  margin-bottom: 0px;
}

.body-new #intro .col-5 {
  padding-right: 0;
  flex: 0 0 50%;
}

.body-new #intro .col-5 p {
  font-size: 36px;
}

.body-new .col-7 {
  flex: 0 0 50%;
}

#pro-nas {
  padding-top: 0;
  margin-bottom: -160px;
}

@media (max-width: 1023px) {
  #pro-nas {
    padding-top: 60px;
    margin-bottom: 0;
  }
}

#pro-nas .col-4,
#pro-nas .col-5 {
  position: relative;
}

@media (min-width: 1024px) and (max-width: 1400px) {
  #pro-nas .col-8 {
    flex: 0 0 60%;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {
  #pro-nas .col-4 {
    flex: 0 0 40%;
  }
}

#pro-nas img {
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 767px) {
  #pro-nas img {
    max-width: 70%;
    margin: 0 auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #pro-nas img {
    max-width: 50%;
    margin: 0 auto;
  }
}

#pro-nas p + h3 {
  margin-top: 32px;
}

#pro-nas .lines {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 16px;
  top: 16px;
  overflow: hidden;
  background-image: repeating-linear-gradient(45deg, var(--color-yellow) 0, var(--color-yellow) 5px, transparent 5px, transparent 10px, var(--color-yellow) 10px, var(--color-yellow) 15px, transparent 15px);
}

.pro-nas {
  display: flex;
  gap: 40px;
}

.pro-nas > * {
  flex: 0 0 50%;
}

.media {
  padding-bottom: 56.25%;
  height: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.media iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.media .video-banner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.media .video-banner button {
  position: relative;
  z-index: 2;
  display: block;
  border: 0;
  background: none;
  cursor: pointer;
}

.media .video-banner button svg {
  width: 64px;
  height: 64px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  border-radius: 1000px;
  transition: all 0.3s ease-in;
}

.media .video-banner:hover button svg {
  box-shadow: none;
  transform: scale(1.1);
}

.video-banner-hidden .video-banner {
  opacity: 0;
  visibility: hidden;
}

/* Advantages */
#advantages {
  padding-top: 160px;
  padding-bottom: 0;
}

@media (max-width: 1023px) {
  #advantages {
    padding-top: 60px;
  }
}

/* Brand */
#brand {
  padding-bottom: 0;
}

@media (max-width: 1023px) {
  #brand {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

#brand .row {
  align-items: center;
}

@media (min-width: 1024px) and (max-width: 1400px) {
  #brand .row > * {
    flex: 0 0 50%;
  }
}

@media (max-width: 1023px) {
  #brand .row .col-7 {
    order: -1;
    margin-bottom: 24px;
  }
}

#brand img {
  position: absolute;
  top: 0;
  left: 0;
}

#georgaphy .row {
  align-items: center;
}

@media (min-width: 1024px) and (max-width: 1400px) {
  #georgaphy .row > * {
    flex: 0 0 50%;
  }
}

.vartist-numbers p.small {
  margin-top: 24px;
}

#main .highlight {
  margin-top: 60px;
  background: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 36px 48px;
  border-radius: 8px;
  line-height: 1.5;
  font-weight: 300;
  display: flex;
}

@media (max-width: 767px) {
  #main .highlight {
    flex-direction: column;
  }
}

#main .highlight h4 {
  flex: 0 0 33.333%;
  font-size: 21px;
  margin-top: -4px;
  line-height: 1.4;
  margin-right: 40px;
}

@media (max-width: 767px) {
  #main .highlight h4 {
    font-size: 18px;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 18px;
  }
}

#main .highlight p {
  font-size: 16px;
}

#main .highlight a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  color: var(--color-yellow);
  font-weight: bold;
  text-decoration: underline;
  padding-bottom: 0;
}

#umovy .row {
  align-items: flex-start;
}

#umovy ul {
  margin: 0;
  padding: 0;
}

#umovy li:first-child {
  margin-top: 24px;
}

#umovy li {
  margin-top: 16px;
  display: flex;
  color: white;
  align-items: flex-start;
  line-height: 1.4;
}

#umovy li svg {
  margin-right: 16px;
  flex: 0 0 20px;
  fill: var(--color-yellow);
}

.recommeded {
  position: absolute;
  top: -20px;
  left: 60%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  border-radius: 1000px;
  align-items: center;
  background: white;
  justify-content: center;
  width: 72px;
  height: 72px;
}

.recommeded svg {
  width: 32px;
  height: 32px;
}

.recommeded span {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

.pricing {
  display: flex;
  margin: 0 -20px;
}

.pricing > * {
  flex: 0 0 33.333% !important;
  padding: 0 20px;
}

@media (max-width: 1023px) {
  .pricing {
    flex-direction: column;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {
  .pricing {
    margin: 0 -16px;
  }
  .pricing > * {
    padding: 0 16px;
  }
}

.pricing-col {
  position: relative;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1023px) {
  .pricing-col {
    display: block;
  }
}

@media (max-width: 767px) {
  .pricing-col + .pricing-col {
    margin-top: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pricing-col + .pricing-col {
    margin-top: 60px;
  }
}

.pricing-img {
  display: block;
  margin: 0 40px;
  height: 0;
  padding-bottom: 75%;
  position: relative;
}

@media (max-width: 767px) {
  .pricing-img {
    margin: 0;
    padding-bottom: 100%;
  }
}

.pricing-img img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pricing-col:first-child .pricing-img {
  margin: 0 -20px !important;
}

.pricing-col-content {
  padding: 24px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding-top: 90px;
  margin-top: -70px;
  flex: 1;
}

@media (max-width: 1023px) {
  .pricing-col-content {
    padding-top: 120px;
    margin-top: -120px;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {
  .pricing-col-content {
    padding: 20px;
    padding-top: 90px;
  }
}

#main .pricing-title {
  text-align: center;
  margin-bottom: 16px;
}

#main .pricing-title h3 {
  margin-top: 4px;
  font-size: 30px;
}

@media (max-width: 1023px) {
  #main .pricing-title h3 {
    font-size: 24px;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {
  #main .pricing-title h3 {
    font-size: 24px;
  }
}

#main .pricing-format {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}

@media (max-width: 1023px) {
  #main .pricing-format {
    font-size: 13px;
  }
}

#main .pricing-price {
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 24px;
  font-size: 24px;
  border: 1px solid var(--color-yellow);
  color: var(--color-yellow);
  padding: 4px 12px;
  line-height: 1;
  border-radius: 8px;
  font-weight: 600;
}

@media (max-width: 1023px) {
  #main .pricing-price {
    font-size: 20px;
    margin-bottom: 18px;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {
  #main .pricing-price {
    font-size: 18px;
  }
}

#main .pricing-content p {
  font-size: 16px;
}

#main .pricing-content p + p {
  margin-top: 8px;
}

#main .pricing-content p.text-small {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  margin-bottom: 8px;
}

#main .pricing-content em {
  display: block;
  margin-top: 16px;
  padding-top: 16px;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-btn {
  display: flex;
  justify-content: center;
  margin: 32px 0 0 0;
  padding-bottom: 16px;
}

.pricing-col a {
  padding: 8px 24px;
  font-size: 16px;
}

.gallery-section {
  background: var(--color-green);
}

.gallery {
  display: flex;
  margin: 0 -10px;
  flex-wrap: wrap;
  align-items: stretch;
}

.gallery > * {
  flex: 0 0 28%;
  padding: 0 10px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .gallery > * {
    flex: 0 0 50%;
  }
}

.gallery > * .gallery-media {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .gallery > * .gallery-media {
    position: absolute;
  }
}

.gallery > * img {
  border-radius: 8px;
}

@media (min-width: 768px) {
  .gallery > * img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
  }
}

.gallery > *:first-child {
  flex: 0 0 44%;
}

@media (max-width: 767px) {
  .gallery > *:first-child {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.gallery > *:first-child .gallery-media {
  position: relative !important;
}

.gallery > *:first-child img {
  height: auto !important;
  position: static !important;
}

#rozrahunok {
  overflow: hidden;
}

#rozrahunok .row {
  position: relative;
  z-index: 2;
  align-items: stretch;
  margin: 0 -30px;
}

#rozrahunok .row > * {
  align-items: stretch;
  padding: 0 30px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  #rozrahunok .row {
    flex-direction: row;
    margin: 0 -20px;
  }
  #rozrahunok .row > * {
    padding: 0 20px;
    margin-top: 0;
    flex: 0 0 50% !important;
  }
}

#rozrahunok .container {
  position: relative;
}

#rozrahunok .lines {
  position: absolute;
  width: 50%;
  height: auto;
  right: -10%;
  top: 80%;
  transform: translateY(-50%);
  z-index: 0;
}

@media (max-width: 767px) {
  #rozrahunok .lines {
    width: 100%;
    right: -40%;
  }
}

#rozrahunok .col-content {
  padding: 32px;
  border-radius: 16px;
  height: 100%;
  background: #007744;
}

@media (max-width: 767px) {
  #rozrahunok .col-content {
    padding: 24px;
  }
}

#rozrahunok h3 {
  height: 60px;
  margin-bottom: 32px;
}

@media (max-width: 1023px) {
  #rozrahunok h3 {
    height: auto;
  }
}

#rozrahunok ul {
  padding: 0;
  margin: 0;
}

#rozrahunok li {
  color: white;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  #rozrahunok li {
    font-size: 14px;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {
  #rozrahunok li {
    font-size: 16px;
  }
}

#rozrahunok li strong {
  flex: 0 0 60%;
}

#rozrahunok li + li {
  margin-top: 12px;
}

#rozrahunok .additional {
  margin-top: 40px;
  font-size: 14px;
}

#rozrahunok .rozr-final {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 40px;
  gap: 24px;
}

#rozrahunok .rozr-final .text-small {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
}

#rozrahunok .rozr-final p {
  font-size: 32px;
  font-weight: bold;
}

#rozrahunok .additional {
  max-width: 60%;
}

#main .grid-benefits {
  grid-gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(3, min-content);
}

@media (max-width: 767px) {
  #main .grid-benefits {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #main .grid-benefits {
    grid-template-columns: 1fr 1fr;
  }
}

#main .grid-benefits .feature {
  border-radius: 20px;
  padding: 24px 32px;
  min-height: 100%;
  background: var(--color-yellow);
}

@media (max-width: 767px) {
  #main .grid-benefits .feature {
    padding: 16px 24px;
  }
}

#main .grid-benefits .feature > * {
  color: black;
}

#main .grid-benefits .number-small {
  font-family: gang_of_threerus_by_daymariRg;
  font-size: 32px;
  display: block;
  margin-bottom: 16px;
  color: var(--color-yellow);
}

#main .grid-benefits .feature h3 {
  font-size: 22px;
  margin-bottom: 8px;
  max-width: 100%;
}

@media (max-width: 1400px) {
  #main .grid-benefits .feature h3 {
    font-size: 18px;
  }
}

#main .grid-benefits p {
  font-size: 16px;
}

@media (max-width: 1400px) {
  #main .grid-benefits p {
    font-size: 14px;
  }
}

#etapy {
  padding-bottom: 140px;
}

@media (max-width: 1023px) {
  #etapy {
    padding-bottom: 200px;
  }
}

#etapy h2 {
  display: inline-block;
  text-align: center !important;
}

@media (max-width: 1023px) {
  #etapy h2 {
    text-align: left !important;
  }
}

#etapy .grid {
  grid-gap: 60px;
  margin-bottom: -60px;
}

#etapy .feature {
  background: none !important;
  padding: 0 0 0 !important;
}

#etapy .feature img {
  width: 40px;
  margin-bottom: 24px;
}

@media (max-width: 1023px) {
  #etapy .feature {
    text-align: left;
  }
}

#etapy .feature h3, #etapy .feature p {
  color: white !important;
}

#forma {
  padding-top: 0;
  padding-bottom: 0;
  background: #002616 !important;
}

#forma .content {
  position: relative;
  top: -80px;
}

#forma #status,
#forma .status,
.submit #status,
.submit .status {
  border: 1px solid black;
  padding: 4px 16px;
  border-radius: 1000px;
  margin-top: 24px;
  display: none;
}

#forma .status.visible,
.submit .status.visible {
  display: block;
}

#forma .forma-img,
.submit .forma-img {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
}

#forma .row,
.submit .row {
  align-items: stretch;
  width: 100%;
  margin: 0;
}

#forma .content,
.submit .content {
  background: var(--color-yellow);
  border-radius: 12px;
  overflow: hidden;
  padding: 0 40px;
}

@media (max-width: 767px) {
  #forma .content,
  .submit .content {
    padding: 16px 24px;
  }
}

#forma .col-6:first-child,
.submit .col-6:first-child {
  position: relative;
}

#forma .col-6:first-child img,
.submit .col-6:first-child img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

#forma .section-subheader,
.submit .section-subheader {
  padding-top: 40px;
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

#forma .section-header,
.submit .section-header {
  color: black;
  margin-bottom: 36px;
  font-size: 36px;
  font-weight: 600;
}

@media (max-width: 767px) {
  #forma .section-header,
  .submit .section-header {
    font-size: 28px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #forma .section-header,
  .submit .section-header {
    font-size: 32px;
  }
}

.form-benefits {
  padding: 24px;
  border-radius: 8px;
  height: calc(100% - 80px);
  margin: 40px 0;
}

@media (max-width: 767px) {
  .form-benefits {
    height: auto;
    margin: 0;
    padding: 32px 0;
  }
}

.form-benefits li:first-child {
  margin-top: 0;
}

.form-benefits li {
  margin-top: 24px;
  display: flex;
  color: black;
  font-size: 16px;
  align-items: flex-start;
  line-height: 1.4;
}

.form-benefits li svg {
  margin-right: 8px;
  flex: 0 0 24px;
  fill: black;
}

form {
  display: inline-block;
  margin: 0 auto;
  padding-bottom: 80px;
}

@media (max-width: 1023px) {
  form {
    padding-bottom: 0;
  }
}

form .control-group + .control-group {
  margin-top: 24px;
}

@media (max-width: 767px) {
  form .control-group + .control-group {
    margin-top: 16px;
  }
}

form .control-group--error input {
  border-color: red !important;
}

form .control-group--error label {
  color: red;
}

form .control-group--error .form-error {
  display: block;
}

form .form-error {
  display: none;
  font-size: 13px;
  margin-top: 8px;
  margin-left: 0px;
  color: black;
  border-radius: 1000px;
}

form label {
  display: block;
  margin-bottom: 8px;
  margin-left: 12px;
  font-size: 18px;
  font-weight: 400;
  color: #373737;
}

form input[type=text] {
  background: white;
  border: 1px solid black;
  border-radius: 1000px;
  font-size: 32px;
  padding: 4px 16px;
}

@media (max-width: 1023px) {
  form input[type=text] {
    width: 100%;
  }
}

form .control-group--submit {
  margin-top: 40px !important;
}

@media (max-width: 767px) {
  form .control-group--submit {
    margin-top: 32px !important;
  }
}

form .control-group--submit .btn-primary {
  background: black;
  color: white;
}

form .control-group--submit .btn-primary:hover {
  color: black;
  background: white;
}

.gang-font {
  font-family: gang_of_threerus_by_daymariRg;
  color: white;
  font-size: 48px;
  line-height: 1;
}

.body-new #footer {
  padding-top: 72px;
  background: var(--color-green);
}

@media (max-width: 767px) {
  .body-new #footer {
    padding-top: 36px;
  }
}

.body-new #footer .row {
  justify-content: space-between;
}

#footer {
  padding-top: 0px;
  padding-bottom: 40px;
  background: #002616;
}

#footer .row {
  align-items: flex-start;
}

#footer .col.logo-col {
  flex: 0 0 240px;
}

#footer h3 {
  color: white;
  font-weight: 600;
}

@media (max-width: 767px) {
  #footer h3 {
    margin-bottom: -4px;
  }
}

#footer .op-social {
  margin-top: 16px;
}

#footer .op-social * {
  color: white;
  fill: white;
  background: none;
  border: 0;
}

#footer .op-social .phone-link img {
  filter: invert(100%);
  width: 24px;
  height: 24px;
  margin-right: 4px;
}

#footer .op-social .icon-link {
  border: 0;
}

#footer .op-social .icon-link img {
  filter: invert(100%);
  width: 24px;
  height: 24px;
}

.chat {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--color-yellow);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  color: black;
  border-radius: 1000px;
  display: flex;
  padding: 4px 16px;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

@media (max-width: 767px) {
  .chat {
    bottom: 16px;
    right: 16px;
    flex-direction: column;
    padding: 8px;
    width: 60px;
    height: 60px;
  }
}

.chat svg {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}

@media (max-width: 1023px) {
  .chat svg {
    width: 40px;
    height: 40px;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .chat span {
    display: none;
  }
}

#apply {
  background: #E5EEFF;
}

@media (max-width: 1023px) {
  #apply .col-6:last-child {
    order: -1;
    margin-top: 0;
    margin-bottom: 40px;
  }
}

#page-404 .btn-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.lightbox-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  display: none;
}

.lightbox-wrap.active {
  display: block;
}

.lightbox-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}

.lightbox {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 40px 0;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox .container {
  position: relative;
}

.lightbox-content {
  margin: auto;
}

.lightbox-close button {
  width: 32px;
  height: 32px;
  border: 0;
  background: none;
  position: absolute;
  top: 20px;
  right: 32px;
  cursor: pointer;
}

.lightbox-close button svg {
  width: 32px;
  height: 32px;
}

#addresses {
  padding-bottom: 0;
  /* Mobile columns */
  text-align: center;
  /*** HOME ***/
}

#addresses h1, #addresses h2 {
  font-family: gang_of_threerus_by_daymariRg;
  color: white;
}

#addresses ul {
  margin: 0;
  padding: 0;
}

#addresses ul * {
  color: white;
}

#addresses .section-header-large {
  margin-bottom: 16px;
}

#addresses .section-header-large span {
  width: 100% !important;
  text-align: center;
  display: block;
}

#addresses .section-header-desc {
  margin-bottom: 40px;
}

#addresses .row {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 1023px) {
  #addresses .row {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  #addresses .row {
    margin: 0 -30px;
  }
  #addresses .row > * {
    padding: 0 30px;
  }
}

@media (max-width: 1023px) {
  #addresses [class*="col"] {
    flex: 0 0 100% !important;
    width: 100%;
  }
}

@media (max-width: 1023px) {
  #addresses [class*="col"] + [class*="col"] {
    margin-top: 24px;
  }
}

#addresses .col-4 {
  flex: 0 0 33.333%;
}

#addresses .row h2, #addresses .row .h2 {
  font-weight: 300;
  font-size: 2.8rem;
  line-height: 1.1;
  margin-top: 36px;
  margin-bottom: 24px;
  position: relative;
}

#addresses h3, #addresses .h3 {
  font-weight: 600;
  line-height: 1.25;
  color: white;
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  #addresses h3, #addresses .h3 {
    font-size: 2rem;
  }
}

@media (min-width: 1400px) {
  #addresses h3, #addresses .h3 {
    font-size: 2.8rem;
  }
}

#addresses li + li {
  margin-top: 12px;
}

#addresses li {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
}

#addresses li:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 2px;
  position: relative;
  top: 2px;
  background: url(assets/images/pin.png) no-repeat top left;
  background-size: contain;
}

#addresses p.small {
  font-size: 17px;
  line-height: 1.4;
}

@media (max-width: 767px) {
  #addresses p.small {
    font-size: 17px;
  }
}

#addresses .op-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

#addresses .op-social * {
  color: white;
  fill: white;
  background: none;
  border: 0;
}

#addresses .op-social .phone-link img {
  filter: invert(100%);
  width: 24px;
  height: 24px;
  margin-right: 4px;
}

#addresses .op-social .icon-link {
  border: 0;
}

#addresses .op-social .icon-link img {
  width: 24px;
  height: 24px;
}

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