@import url(https://fonts.googleapis.com/css?family=Nunito);

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  margin: 0;
  padding: 0;
  scrollbar-gutter: stable;
  overflow-x: clip;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Nunito", sans-serif;
  overflow-x: clip;
}

.font {
  font-family: "Muli", sans-serif;
}

.section__wrapper {
  width: 100%;
  max-width: 128rem;
  margin: 0 auto;
  padding: 0;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  width: 100%;
  height: 5rem;
  border-radius: 0.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  transition: background-color 0.4s ease;
}

.btn:hover,
.btn:focus,
.btn:active {
  outline: none;
}

.btn--green {
  background-color: #23e6a8;
  color: #2d2852;
}

.btn--green:hover {
  background-color: #18d79a;
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */
.input-wrapper {
  padding: 1rem 0;
}

.input-wrapper input[type=text],
.input-wrapper input[type=email],
.input-wrapper textarea {
  width: 100%;
  border: none;
  outline: none;
  background-color: #d1f3e5;
  border-radius: 0.5rem;
  color: #098e7b;
  font-weight: 700;
  font-family: inherit;
}

.input-wrapper input[type=text],
.input-wrapper input[type=email] {
  height: 4.5rem;
  padding: 0 1rem;
}

.input-wrapper textarea {
  min-height: 20rem;
  padding: 1rem;
  resize: none;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: #2dc798;
  opacity: 1;
  font-style: italic;
}

/* Custom Radio */
.container-radio {
  display: block;
  position: relative;
  padding-left: 3rem;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  color: #a6acc7;
  user-select: none;
}

.container-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark-radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 2rem;
  width: 2rem;
  background-color: #eee;
  border-radius: 50%;
}

.container-radio:hover input ~ .checkmark-radio {
  background-color: #ccc;
}

.container-radio input:checked ~ .checkmark-radio {
  background-color: #2dc798;
}

.checkmark-radio:after {
  content: "";
  position: absolute;
  display: none;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

.container-radio input:checked ~ .checkmark-radio:after {
  display: block;
}

/* Custom Checkbox */
.container-checkbox {
  display: block;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1.2rem;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  color: #a6acc7;
  user-select: none;
}

.container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.5rem;
  width: 2.5rem;
  background-color: #eee;
  border-radius: 0.3rem;
}

.container-checkbox:hover input ~ .checkmark-checkbox {
  background-color: #ccc;
}

.container-checkbox input:checked ~ .checkmark-checkbox {
  background-color: #2dc798;
}

.checkmark-checkbox:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.container-checkbox input:checked ~ .checkmark-checkbox:after {
  display: block;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 8rem;
  display: flex;
  align-items: center;
  padding: 0 6rem;
  z-index: 9000 !important;
  background-color: rgba(45, 40, 82, 0.82) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: height 0.4s ease, background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.header.sticky {
  background-color: rgba(45, 40, 82, 0.92) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 9000 !important;
  height: 6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.header__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.header__logo a {
  display: flex;
  align-items: center;
}

.header__logo img {
  display: block;
  height: 4.5rem;
  width: auto;
  max-width: 18rem;
}

.header__contact {
  display: flex;
  align-items: center;
  color: #23e6a8;
  font-weight: 700;
  font-size: 1.4rem;
  width: 13rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-decoration: none;
}

.header__contact img {
  margin-right: 0.8rem;
}

.header__hamburger {
  display: none;
}

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

.header__menu a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  width: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.3s;
}

.header__menu a:hover {
  color: #23e6a8;
}

.menu-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 12, 35, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 8900 !important;
}

.menu-backdrop.active {
  display: block;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
main .section-main {
  width: 100%;
  height: 100%;
  min-height: 1000px;
  position: relative;
  background-color: #2d2852;
  overflow: visible;
  z-index: 20;
}

main .section-main .background {
  background-image: linear-gradient(rgba(45, 40, 82, 0.8), rgba(45, 40, 82, 0.8)), url(../assets/images/bg.jpg);
  background-position: 50% 65%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.section-main__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12rem;
  z-index: 2;
  pointer-events: none;
  display: block;
  object-fit: fill;
}

main .section-main .section__wrapper {
  height: 100%;
  position: relative;
  z-index: 3;
}

main .section-main__left {
  padding-top: 21rem;
}

main .section-main__left__slogan {
  font-size: 7rem;
  color: #fff;
  font-weight: 800;
  line-height: 9rem;
  letter-spacing: 0.1rem;
}

main .section-main__left__subslogan {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 600;
  line-height: 3.8rem;
  margin-top: 2.5rem;
}

main .section-main__left .btn {
  max-width: 25rem;
  margin-top: 4rem;
  font-size: 2.1rem;
  height: 5rem;
  padding: 0 1.5rem;
}

main .section-main__title-top {
  display: none;
  position: absolute;
  height: 6rem;
  width: 100%;
  bottom: 0;
  overflow: hidden;
}

main .section-main__title-top h1 {
  position: absolute;
  bottom: -83%;
  left: 0;
  font-size: 8rem;
  margin: 0;
  color: #098e7b;
}

/* ==========================================================================
   SERVICES CARDS
   ========================================================================== */
main .section-services {
  position: absolute;
  bottom: -10rem;
  width: 100%;
  background-color: transparent;
  z-index: 25;
}

main .section-services__title-bottom {
  display: none;
}

main .section-services__grid {
  display: grid;
  grid-gap: 4rem;
  padding: 1rem;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 25;
}

main .section-services__service {
  background-color: #fff;
  border-radius: 1rem;
  padding: 3rem 4rem;
  min-height: 10rem;
  position: relative;
  box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3), 0 -6px 16px -6px rgba(0, 0, 0, 0.025);
  overflow: hidden;
  z-index: 26;
  display: flex;
  flex-direction: column;
}

main .section-services__service .btn {
  width: 100%;
  max-width: 16rem;
  margin-top: auto;
  background-color: #23e6a8;
  font-size: 1.8rem;
  height: 5rem;
  flex-shrink: 0;
}

main .section-services__service img {
  position: absolute;
  bottom: 0;
  right: -11rem;
  width: 31rem;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

main .section-services__service h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 2rem;
  padding: 0;
  color: #2d2852;
}

main .section-services__service ul {
  display: block;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  font-size: 1.6rem;
  font-weight: 600;
  color: #8f8eb9;
}

main .section-services__service ul li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
}

main .section-services__service ul li:before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #23e6a8;
  position: absolute;
  top: 1.2rem;
  left: 0;
}

/* Card 2 (Realizácia) Distinct Colors */
main .section-services__service:nth-child(2) {
  background-color: #23e6a8;
}

main .section-services__service:nth-child(2) h2 {
  color: #fff;
}

main .section-services__service:nth-child(2) .btn {
  background-color: #2d2852;
}

main .section-services__service:nth-child(2) ul li {
  color: #2d2852;
}

main .section-services__service:nth-child(2) ul li:before {
  background-color: #fff;
}

/* ==========================================================================
   OFFER SECTION (Ponúkame)
   ========================================================================== */
main .section-offer {
  position: relative;
  z-index: 10;
  padding-top: 20rem;
  padding-bottom: 15rem;
}

main .section-offer .section-wrapper {
  width: 100%;
  max-width: 128rem;
  margin: 0 auto;
  padding: 0;
}

main .section-offer .section-title {
  font-size: 7rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 3rem;
  color: #2d2852;
}

main .section-offer .box {
  width: 100%;
  height: 38rem;
  border-radius: 2rem;
  display: flex;
}

main .section-offer .box .decoration {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .section-offer .box .decoration img {
  width: 100%;
  max-width: 40rem;
  height: auto;
}

main .section-offer .box .services {
  flex: 1;
  padding: 2rem 3rem;
  align-items: center;
  display: flex;
}

main .section-offer .box .services .row {
  padding-left: 7rem;
  height: 6rem;
  display: flex;
  align-items: center;
  position: relative;
}

main .section-offer .box .services .row .number {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  color: white;
  background-color: #23e6a8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.8rem;
}

main .section-offer .box .services .row p {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: #1f1650;
}

main .section-offer .box .services .row p span {
  color: #32e2aa;
}

/* ==========================================================================
   DETAIL SECTIONS (Návrh, Realizácia, Servis)
   ========================================================================== */
/* Shared Lists & Typography */
main .section-design__left ul,
main .section-mounting__right ul,
main .section-servis__left ul,
main .section-contact-us__left ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.6rem;
  color: #8f8eb9;
}

main .section-design__left ul li,
main .section-mounting__right ul li,
main .section-servis__left ul li,
main .section-contact-us__left ul li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
}

main .section-design__left ul li:before,
main .section-mounting__right ul li:before,
main .section-servis__left ul li:before,
main .section-contact-us__left ul li:before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #23e6a8;
  position: absolute;
  top: 1.2rem;
  left: 0;
}

main .section-design__left h2,
main .section-mounting__right h2,
main .section-servis__left h2,
main .section-contact-us__left h2 {
  font-size: 7rem;
  line-height: 7.5rem;
  margin: 0 0 3rem;
}

main .section-design__left p,
main .section-mounting__right p,
main .section-servis__left p {
  font-size: 1.6rem;
  color: #8f8eb9;
}

/* 1. Návrh */
main .section-design {
  width: 100%;
  padding: 6rem 0 10rem;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

main .section-design .section__wrapper {
  display: flex;
  align-items: stretch;
}

main .section-design__left {
  width: 47%;
}

main .section-design__left h2 {
  color: #2d2852;
}

main .section-design__left h2 span {
  color: #23e6a8;
}

main .section-design__right {
  width: 50%;
}

main .section-design__right .img-wrapper {
  opacity: 0.5;
  position: absolute;
  height: 100%;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

/* 2. Realizácia (Mounting) */
main .section-mounting {
  width: 100%;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
  height: 70rem;
}

main .section-mounting .section__wrapper {
  display: flex;
  height: 70rem;
  align-items: center;
}

main .section-mounting__left {
  width: 59%;
}

main .section-mounting__left .img-wrapper {
  position: absolute;
  opacity: 0.5;
  height: 70rem;
  left: -10.4rem;
  top: 0;
  overflow: hidden;
}

main .section-mounting__left .img-wrapper img {
  height: 70rem;
}

main .section-mounting__right {
  width: 41%;
}

main .section-mounting__right h2 {
  color: #23e6a8;
}

/* 3. Servis */
main .section-servis {
  width: 100%;
  padding: 8rem 0 15rem;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

main .section-servis .section__wrapper {
  display: flex;
}

main .section-servis__left {
  width: 41%;
}

main .section-servis__left h2 {
  color: #23e6a8;
}

main .section-servis__right {
  width: 59%;
}

main .section-servis__right .img-wrapper {
  opacity: 0.5;
  position: absolute;
  height: 100%;
  right: -30rem;
  bottom: 0;
  overflow: hidden;
}

/* ==========================================================================
   PARTNERS SECTION
   ========================================================================== */
main .section-partners {
  border-top: 1px solid #f0f5fb;
  padding: 4rem 0;
  position: relative;
}

main .section-partners__title {
  position: absolute;
  display: inline-block;
  width: 22rem;
  text-align: center;
  top: -16%;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #fff;
  font-size: 3rem;
  font-weight: 700;
  color: #23e6a8;
}

main .section-partners .section__wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

main .section-partners .section__wrapper .img {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

main .section-partners .section__wrapper .img img {
  max-width: 40%;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.4s;
}

main .section-partners .section__wrapper .img:hover {
  transform: scale(1.2);
}

main .section-partners .section__wrapper .img:hover img {
  filter: none;
  opacity: 1;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
main .section-contact-us {
  background-color: #23e6a8;
  background-image: linear-gradient(to right, #23e6a8, #73f0a4);
  padding: 12rem 0;
  position: relative;
}

main .section-contact-us .decoration__street {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  overflow: hidden;
}

main .section-contact-us .decoration__street img {
  width: 100%;
}

main .section-contact-us .section__wrapper {
  display: flex;
  position: relative;
  z-index: 2;
}

main .section-contact-us__left {
  width: 41%;
}

main .section-contact-us__left h2 {
  color: #fff;
}

main .section-contact-us__left__bg {
  border-radius: 2rem;
  padding: 3rem;
  background-color: rgba(47, 50, 68, 0.7);
}

main .section-contact-us__left p {
  margin-top: 0;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
}

main .section-contact-us__left__contact-info {
  display: flex;
  font-size: 1.6rem;
  line-height: 2.4rem;
}

main .section-contact-us__left__contact-info > div {
  width: 50%;
}

main .section-contact-us__left__contact-info__name {
  font-weight: 700;
  color: #4aeaa8;
}

main .section-contact-us__left__contact-info__tel,
main .section-contact-us__left__contact-info__email {
  color: #fff;
  margin-top: 0.5rem;
}

main .section-contact-us__left__contact-info__tel span,
main .section-contact-us__left__contact-info__email span,
main .section-contact-us__left__contact-place span {
  font-weight: 700;
  color: #fff;
}

main .section-contact-us__left__contact-info__tel a,
main .section-contact-us__left__contact-info__email a {
  color: #4aeaa8;
  text-decoration: none;
  font-weight: 500;
  font-style: italic;
}

main .section-contact-us__left__contact-place {
  font-size: 1.6rem;
  margin-top: 2rem;
  color: #fff;
  font-weight: 500;
  font-style: italic;
  line-height: 2.4rem;
}

main .section-contact-us__right {
  width: 59%;
  position: relative;
}

main .section-contact-us__right .section-contact-us__form__wrapper {
  padding: 3rem 4rem;
  background-color: #fff;
  border-radius: 2rem;
  position: absolute;
  max-width: 50rem;
  top: 12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3), 0 -6px 16px -6px rgba(0, 0, 0, 0.025);
}

main .section-contact-us__right .section-contact-us__form__wrapper h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #4a6a86;
  margin: 0 0 2rem;
}

main .section-contact-us__right .section-contact-us__form__wrapper .btn {
  background-color: #23e6a8;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
main .section-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 16rem 16rem;
  position: relative;
}

main .section-gallery .section-title {
  position: absolute;
  top: 13rem;
  left: 0;
  right: 0;
  width: 24rem;
  height: 6rem;
  background-color: #2d2852;
  color: #23e6a8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 2rem;
  z-index: 3;
  margin: 0 auto;
}

main .section-gallery .photo {
  background-color: #f5f7fa;
  border: 1px solid #f5f7fa;
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
}

main .section-gallery .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

main .section-gallery .photo:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(35, 230, 168, 0.2);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

main .section-gallery .photo:hover:after {
  opacity: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  width: 100%;
  height: 30rem;
  background-color: #2d2852;
}

footer .section__wrapper {
  display: flex;
}

footer .section-footer__left {
  padding: 5rem 0;
  width: 41%;
}

footer .section-footer__left__description {
  font-size: 1.4rem;
  font-weight: 600;
  color: #f5f5f5;
  margin: 1rem 0;
}

footer .section-footer__left__info {
  margin-top: 3rem;
  border-top: 1px solid #252627;
  padding: 1rem 0;
  color: #f5f5f5;
}

/* ==========================================================================
   RESPONSIVE DESIGN: LARGE TABLETS (max-width: 1320px)
   ========================================================================== */
@media (max-width: 1320px) {
  .section__wrapper,
  main .section-offer .section-wrapper {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN: TABLETS (max-width: 992px)
   ========================================================================== */
@media (max-width: 992px) {
  .header {
    padding: 0 2rem;
    height: 7rem;
  }

  .header__contact {
    position: static;
    margin-left: auto;
    margin-right: 1.5rem;
    width: auto;
    font-size: 1.4rem;
  }

  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 3.2rem;
    height: 2.6rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100001 !important;
  }

  .header__hamburger span {
    width: 100%;
    height: 3px;
    background-color: #23e6a8;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .header__hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .header__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(32rem, 85vw);
    height: 100vh;
    background-color: rgba(36, 32, 66, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 9rem 3rem 3rem;
    gap: 1.2rem;
    box-shadow: -8px 0 35px rgba(0, 0, 0, 0.7);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100000 !important;
  }

  .header__menu.active {
    right: 0;
  }

  .header__menu a {
    width: 100%;
    font-size: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: flex-start;
  }

  /* Hero */
  main .section-main {
    min-height: auto;
    height: auto;
    padding-bottom: 6rem;
    position: relative;
    overflow: visible;
    z-index: 20;
  }

  main .section-main .background {
    height: 100% !important;
    min-height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  .section-main__wave {
    height: 7rem;
  }

  main .section-main .section__wrapper {
    height: auto;
  }

  main .section-main__left {
    padding-top: 13rem;
    width: 100%;
  }

  main .section-main__left__slogan {
    font-size: 4.6rem;
    line-height: 5.8rem;
    word-break: break-word;
  }

  main .section-main__left__subslogan {
    font-size: 2.2rem;
    line-height: 3.4rem;
  }

  main .section-main__left .btn {
    max-width: 22rem;
  }

  /* Karty služieb */
  main .section-services {
    position: relative;
    bottom: auto;
    width: 100%;
    margin-top: 4rem;
    z-index: 25;
  }

  main .section-services__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2.5rem;
    padding: 0;
  }

  main .section-services__service:nth-child(3) {
    grid-column: span 2;
  }

  main .section-services__service img {
    right: -6rem;
    width: 24rem;
  }

  /* Ponúkame */
  main .section-offer {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  main .section-offer .section-title {
    font-size: 4.6rem;
    margin-bottom: 3rem;
  }

  main .section-offer .box {
    height: auto;
    min-height: auto;
    flex-direction: column;
  }

  main .section-offer .box .decoration {
    width: 100%;
    margin-bottom: 2.5rem;
  }

  main .section-offer .box .decoration img {
    max-width: 28rem;
  }

  main .section-offer .box .services {
    width: 100%;
    padding: 0;
    display: block;
  }

  main .section-offer .box .services .row {
    height: auto;
    min-height: 5.5rem;
    padding-left: 6.5rem;
    margin-bottom: 1.5rem;
  }

  /* Detailné sekcie */
  main .section-design,
  main .section-mounting,
  main .section-servis {
    padding: 5rem 0;
    height: auto !important;
  }

  main .section-design .section__wrapper,
  main .section-mounting .section__wrapper,
  main .section-servis .section__wrapper {
    flex-direction: column;
    height: auto !important;
  }

  main .section-design__left,
  main .section-mounting__right,
  main .section-servis__left {
    width: 100%;
  }

  main .section-design__left h2,
  main .section-mounting__right h2,
  main .section-servis__left h2 {
    font-size: 4.2rem;
    line-height: 5rem;
    margin-bottom: 2rem;
  }

  main .section-mounting__right {
    order: 1;
  }

  main .section-mounting__left {
    order: 2;
    width: 100%;
    margin-top: 3rem;
  }

  main .section-design__right,
  main .section-servis__right {
    width: 100%;
    margin-top: 3rem;
  }

  main .section-design__right .img-wrapper,
  main .section-mounting__left .img-wrapper,
  main .section-servis__right .img-wrapper {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    opacity: 0.85;
  }

  main .section-design__right .img-wrapper img,
  main .section-mounting__left .img-wrapper img,
  main .section-servis__right .img-wrapper img {
    width: 100%;
    height: auto;
    max-height: 40rem;
    object-fit: cover;
    border-radius: 1.5rem;
  }

  /* Partneri */
  main .section-partners {
    padding: 3rem 0;
  }

  main .section-partners__title {
    position: static;
    display: block;
    margin: 0 auto 2rem;
    font-size: 2.6rem;
  }

  main .section-partners .section__wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
  }

  main .section-partners .section__wrapper .img img {
    max-width: 60%;
  }

  /* Galéria */
  main .section-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  main .section-gallery .section-title {
    display: none;
  }

  main .section-gallery .photo {
    height: 16rem;
  }

  /* Kontakt */
  main .section-contact-us {
    padding: 6rem 0;
  }

  main .section-contact-us .section__wrapper {
    flex-direction: column;
  }

  main .section-contact-us__left {
    width: 100%;
    margin-bottom: 4rem;
  }

  main .section-contact-us__left h2 {
    font-size: 4.2rem;
    line-height: 5rem;
  }

  main .section-contact-us__right {
    width: 100%;
  }

  main .section-contact-us__right .section-contact-us__form__wrapper {
    position: relative;
    top: 0;
    max-width: 100%;
    padding: 3rem 2.5rem;
  }

  /* Pätička */
  footer {
    height: auto;
    padding: 4rem 0;
  }

  footer .section-footer__left {
    width: 100%;
    padding: 0;
  }

  footer .section-footer__left__description {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }

  footer .section-footer__left__info {
    margin-top: 2rem;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN: SMARTPHONES (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  html {
    font-size: 9.5px;
  }

  .header {
    padding: 0 1.5rem;
    height: 6.5rem;
  }

  .header.sticky {
    height: 6rem;
  }

  .header__logo a img {
    max-width: 12rem !important;
  }

  .header__contact {
    font-size: 1.2rem;
    margin-right: 1rem;
  }

  .header__contact img {
    width: 1.8rem;
    margin-right: 0.4rem;
  }

  .section__wrapper,
  main .section-offer .section-wrapper {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }

  /* Hero */
  main .section-main__left {
    padding-top: 9.5rem;
  }

  main .section-main__left__slogan {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }

  main .section-main__left__subslogan {
    font-size: 1.8rem;
    line-height: 2.6rem;
    margin-top: 1.5rem;
  }

  main .section-main__left .btn {
    width: 100%;
    max-width: 100%;
    margin-top: 3rem;
  }

  /* 1 stĺpec pre karty služieb */
  main .section-services__grid {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }

  main .section-services__service:nth-child(3) {
    grid-column: span 1;
  }

  main .section-services__service {
    padding: 2.5rem 2rem;
  }

  main .section-services__service h2 {
    font-size: 2.6rem;
  }

  main .section-services__service img {
    right: -4rem;
    width: 20rem;
  }

  main .section-services__service .btn {
    width: 100%;
    max-width: 100%;
  }

  /* Ponúkame */
  main .section-offer {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  main .section-offer .section-title {
    font-size: 3.4rem;
    margin-bottom: 2rem;
  }

  main .section-offer .box .services .row {
    padding-left: 5.5rem;
  }

  main .section-offer .box .services .row .number {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.6rem;
  }

  main .section-offer .box .services .row p {
    font-size: 1.3rem;
    line-height: 1.9rem;
  }

  /* Detailné sekcie */
  main .section-design__left h2,
  main .section-mounting__right h2,
  main .section-servis__left h2 {
    font-size: 3.2rem;
    line-height: 4rem;
  }

  main .section-design__left p,
  main .section-mounting__right p,
  main .section-servis__left p,
  main .section-design__left ul,
  main .section-mounting__right ul,
  main .section-servis__left ul {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }

  /* Partneri - 2 stĺpce */
  main .section-partners .section__wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
  }

  main .section-partners .section__wrapper .img img {
    max-width: 65%;
  }

  /* Galéria - 2 stĺpce */
  main .section-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  main .section-gallery .photo {
    height: 14rem;
  }

  /* Kontakt formulár */
  main .section-contact-us__left h2 {
    font-size: 3.2rem;
    line-height: 4rem;
  }

  main .section-contact-us__left__bg {
    padding: 2rem 1.5rem;
  }

  main .section-contact-us__left__contact-info {
    flex-direction: column;
  }

  main .section-contact-us__left__contact-info > div {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  main .section-contact-us__right .section-contact-us__form__wrapper {
    padding: 2.5rem 1.8rem;
  }

  .container-checkbox {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN: EXTRA SMALL MOBILES (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
  html {
    font-size: 9px;
  }

  .section__wrapper,
  main .section-offer .section-wrapper {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  main .section-main__left__slogan {
    font-size: 2.7rem;
    line-height: 3.5rem;
  }

  main .section-main__left__subslogan {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }

  main .section-gallery .photo img {
    height: 12rem;
  }
}
