@charset "UTF-8";
:root {
  --red: #B20514;
  --dark-red: #89181B;
  --light-black: #3a3a3a;
  --dark-grey: rgb(94, 94, 94);
  --light-grey: #868686;
  --padding: 10%;
  --big-padding: 15%; }

@media (max-width: 1025px) {
  :root {
    --padding: 10%;
    --big-padding: 13%; } }
@media (max-width: 900px) {
  :root {
    --big-padding: 10%; } }
@media (max-width: 600px) {
  :root {
    --big-padding: 8%; } }
*,
*::before,
*::after {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  transition: all 0.3s ease-in-out; }

html {
  box-sizing: border-box;
  font-size: 62.5%; }

body {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  font-size: 1.6rem; }

/*************** Primary colors ***************/
img {
  width: 100%;
  height: auto; }

main {
  padding-top: 5rem; }

a {
  text-decoration: none;
  color: black;
  cursor: pointer; }

h1,
h2,
h3,
h4,
a {
  font-family: "Lato", sans-serif;
  color: white; }

h1, h1 p {
  font-size: 5rem;
  color: var(--dark-grey);
  font-weight: 900;
  line-height: 1.1; }

h2 {
  font-size: 4rem;
  font-weight: 600;
  color: var(--dark-grey);
  padding-top: 2rem; }

.heading-line {
  width: 7rem;
  margin-top: 2rem;
  background-color: var(--red);
  height: 0.7rem;
  border-radius: 0.3rem; }

.heading-line-white {
  background-color: white; }

h3 {
  font-size: 2.5rem;
  font-weight: 600; }

h4 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #2B2B2B; }

h5 {
  font-size: 1.5rem;
  font-weight: 500;
  color: white; }

p {
  font-size: 1.5rem;
  font-weight: 400;
  color: white; }

button {
  font-size: 1.7rem;
  font-weight: 300;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer; }

button:focus {
  outline: 0; }

a {
  outline: none; }

button:hover {
  transform: scale(1.1); }

ul {
  list-style-position: outside; }

.white {
  color: white; }

.black {
  color: #2B2B2B; }

.bg-white {
  background-color: white; }

.border-round {
  border-radius: 6%; }

.main_color-black p {
  color: var(--dark-grey); }

.main_big-padding {
  padding: 5rem var(--big-padding); }

@media (max-width: 1025px) {
  h1 {
    font-size: 5rem; }

  h2 {
    font-size: 2.6rem; }

  .heading-line {
    width: 5rem;
    margin-top: 1.5rem; }

  h3 {
    font-size: 2.3rem; }

  h4 {
    font-size: 1.4rem; }

  h5 {
    font-size: 1.3rem; }

  p {
    font-size: 1.3rem; } }
@media (max-width: 600px) {
  h1 {
    font-size: 3rem; }

  h2 {
    font-size: 2.3rem; }

  .heading-line {
    height: 0.5rem;
    margin-top: 1rem; }

  h3 {
    font-size: 2rem; }

  h4 {
    font-size: 1.3rem; }

  h5 {
    font-size: 1.3rem; }

  p {
    font-size: 1.3rem; } }
/*************** Navbar ***************/
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5; }

.nav_desktop {
  height: 16rem;
  background-color: rgba(255, 255, 255, 0);
  position: relative;
  transition-duration: 0.5s;
  z-index: 6; }

.nav_desktop_logo {
  position: absolute;
  left: 0;
  height: auto;
  width: 18rem;
  margin: 12rem 0 0 10rem;
  transition: all 0.5s ease-in-out;
  z-index: 5;
  top: 0; }

.logo-white {
  opacity: 0;
  visibility: hidden; }

.logo-red {
  opacity: 1;
  visibility: visible; }

.logo-white-landing {
  opacity: 0;
  visibility: hidden; }

.logo-red-landing {
  opacity: 1;
  visibility: visible; }

.nav_desktop ul {
  position: absolute;
  float: right;
  list-style: none;
  text-align: right;
  width: 80%;
  right: 0;
  top: 0;
  height: 100%;
  transition-duration: 0.6s; }

.nav_desktop li {
  display: inline-block;
  width: auto;
  height: 100%;
  position: relative; }

.nav_desktop li a {
  position: absolute;
  left: 0;
  top: 50%;
  width: auto;
  color: white;
  display: block;
  letter-spacing: 0.2rem;
  margin: auto 2rem;
  padding: 1.3rem 1rem;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase; }

.nav_contact a:before {
  height: 0 !important; }

.nav_contact a {
  margin: 0 7rem !important;
  border: 1px solid white;
  border-radius: 0.7rem;
  padding: 1.3rem 2.3rem !important; }

@media (min-width: 1026px) {
  .nav_contact a:hover {
    border: 1px solid white !important;
    color: white !important;
    background-color: var(--red); } }
/* Animated Bottom Line */
.nav_desktop li a:before,
#navbar li a:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -1px;
  background: var(--dark-grey); }

.nav_desktop li a:before {
  left: 0;
  transition: 0.5s; }

.nav_desktop li a:after {
  background: var(--dark-grey);
  right: 0; }

@media (min-width: 1026px) {
  .nav_desktop li a:hover:before {
    background: var(--dark-grey);
    width: 100%;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1); }

  .nav_desktop li a:hover:after {
    background: transparent;
    width: 100%; }

  .nav_button_active a:before {
    background: var(--dark-grey) !important;
    width: 100% !important;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) !important; }

  .nav_button_active a:after {
    background: transparent !important;
    width: 100% !important; } }
/*======== Navbar Active ========*/
.nav_active .nav_desktop_logo {
  margin: 1.5rem 0 0 10%;
  width: 10rem; }
.nav_active .logo-white {
  opacity: 0;
  visibility: hidden; }
.nav_active .logo-white-landing {
  opacity: 0;
  visibility: hidden; }
.nav_active .logo-red {
  opacity: 1;
  visibility: visible; }
.nav_active .logo-red-landing {
  opacity: 1;
  visibility: visible; }
.nav_active .nav_desktop {
  height: 12rem;
  background-color: white;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05); }
.nav_active .nav_desktop li a {
  color: var(--dark-grey);
  transform: translateY(-50%); }
.nav_active .nav_contact a {
  border: 1px solid var(--dark-grey); }
.nav_active .line-bars,
.nav_active .line-bars::before,
.nav_active .line-bars::after {
  background: #d4d4d4; }

/*======== Dropdown ========*/
.dropdown {
  position: absolute;
  top: -60vh;
  left: 0;
  background-color: white;
  padding: 3% 5%;
  z-index: 0;
  transition: all 0.4s ease-in-out; }

.dropdown_box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 0 5%; }

.dropdown_box a {
  display: grid;
  grid-template-columns: 18% 82%;
  margin: 3% 0; }

@media (min-width: 1026px) {
  .dropdown_box a:hover {
    transform: translateX(5%); }

  .dropdown_box a:hover h4 {
    font-weight: 700;
    font-size: 1.8rem; } }
.dropdown_box a h4 {
  margin: auto;
  padding: 0 0 0 5%;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark-grey); }

.dropdown_box a img {
  opacity: 0.8; }

.dropdown_active {
  top: 12rem;
  background-color: white; }

.dropdown_back {
  display: none; }

@media (max-width: 1200px) {
  .nav_desktop li a {
    margin: auto 1rem;
    padding: 1.3rem 1rem;
    font-size: 1.3rem; }

  .header_heading {
    font-size: 7rem; }

  .nav_contact a {
    margin: 0 3rem !important;
    padding: 1.3rem 2rem !important; } }
@media (max-width: 1025px) {
  .nav_desktop_logo {
    margin: 10rem 0 0 10%;
    width: 15rem; }

  .header_heading {
    font-size: 6rem; } }
@media (max-width: 900px) {
  .menuIcon {
    cursor: pointer;
    position: fixed;
    right: 4rem;
    display: block;
    top: 5rem;
    height: 6rem;
    width: 6rem;
    z-index: 10;
    transition: 0.5s ease-in-out; }

  /* Icon Bars */
  .line-bars,
  .line-bars::before,
  .line-bars::after {
    background: white;
    content: '';
    position: absolute;
    left: 0;
    height: 0.4rem;
    width: 100%;
    transition: 0.3s;
    border-radius: 0.3rem; }

  .line-bars {
    top: 45%; }

  .line-bars::before {
    top: -2rem; }

  .line-bars::after {
    bottom: -2rem; }

  /* Bars Shadows */
  .line-bars.overlay {
    background: var(--red);
    width: 6rem;
    animation: middleBar 3s infinite 0.5s; }

  .icon-back {
    cursor: pointer;
    display: block;
    position: absolute;
    left: 50px;
    top: -40px;
    height: auto;
    width: 6rem;
    z-index: 12; }

  @keyframes middleBar {
    0% {
      width: 0px; }
    50% {
      width: 70%; }
    100% {
      width: 0px; } }
  .line-bars.overlay::before {
    background: var(--red);
    width: 4rem;
    animation: topBar 3s infinite 0.2s; }

  @keyframes topBar {
    0% {
      width: 0px; }
    50% {
      width: 60%; }
    100% {
      width: 0px; } }
  .line-bars.overlay::after {
    background: var(--red);
    width: 6rem;
    animation: bottomBar 3s infinite 1s; }

  @keyframes bottomBar {
    0% {
      width: 0px; }
    50% {
      width: 80%; }
    100% {
      width: 0px; } }
  /* Toggle Menu Icon */
  .menuIcon.toggle .line-bars {
    transform: translate3d(0, 0, 0) rotate(135deg);
    transition-delay: 0.1s;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

  .menuIcon.toggle .line-bars::before {
    transition-delay: 0.1s;
    opacity: 0; }

  .menuIcon.toggle .line-bars::after {
    transform: translate3d(0, -2rem, 0) rotate(-270deg);
    transition-delay: 0.1s;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

  .menuIcon.toggle .line-bars.overlay {
    width: 100%;
    opacity: 0;
    transition: all 0s ease 0s; }

  /*======= SMALL DESKTOP - Menu ========*/
  .nav_desktop ul {
    transform: translateX(-100%);
    opacity: 0;
    left: 0;
    width: 100%;
    display: block;
    text-align: left;
    padding: 30vh 5% 10% 10%;
    z-index: 4;
    box-shadow: 0px -1px 2px 0px rgba(0, 0, 0, 0.05); }

  .nav-open .nav_desktop {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    z-index: 8; }

  .nav-open .nav_desktop ul {
    transform: translate(0);
    opacity: 1; }

  .nav_desktop li {
    width: 100%;
    height: auto;
    display: block;
    border-left: 3px solid var(--red);
    border-radius: 2px;
    margin: 2rem 0; }

  .nav_active .nav_desktop li a {
    transform: translateY(0); }

  .nav_desktop li a {
    position: relative;
    padding: 0;
    font-size: 2.6rem;
    font-weight: 400; }

  .nav_contact a {
    margin: auto 1rem !important;
    border: none !important;
    padding: 0 !important; }

  .nav-open .nav_desktop_logo {
    width: 30vw;
    padding: 0;
    margin: 0;
    left: 35%;
    top: 8%; }

  .dropdown {
    background: none;
    width: 100%;
    height: 70vh;
    top: 30vh;
    z-index: 8;
    padding: 0 15% 10% 15%;
    transform: translateX(100%);
    opacity: 0; }

  .dropdown_box {
    grid-column-gap: 5%;
    grid-template-columns: 1fr 1fr;
    padding: 0; }

  .dropdown_box a {
    grid-template-columns: 23% 77%;
    margin: 4% 0; }

  .dropdown_box a h4 {
    font-size: 1.9rem;
    padding: 0 0 0 8%; }

  .dropdown_box a:hover h4 {
    font-weight: 600;
    font-size: 2.1rem; }

  .dropdown_back {
    display: grid;
    grid-template-columns: 16% 84%;
    width: 40%;
    padding: 0 0 7% 0; }

  .dropdown_back img {
    padding: 7%; }

  .dropdown_back h4 {
    margin: auto 15%;
    font-size: 1.8rem; }

  .dropdown_active {
    transform: translateX(0);
    opacity: 1; }

  .nav-mobile-hide .nav_desktop ul {
    transform: translateX(-100%);
    opacity: 0; }

  /*======== TABLET - Menu ========*/
  .nav-open .nav_desktop {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100); }

  .nav_active .nav_desktop_logo {
    margin: 2rem 0 0 10%;
    width: 8.5rem; }

  .nav-open .nav_desktop_logo {
    width: 30vw;
    left: 35%;
    top: 8%;
    padding: 0;
    margin: 0; }

  .logo-white {
    opacity: 1;
    visibility: visible; }

  .logo-red {
    opacity: 0;
    visibility: hidden; } }
@media (max-width: 600px) {
  .nav_desktop_logo {
    margin: 4rem 0 0 4rem;
    width: 11rem; }

  .nav_active .nav_desktop {
    height: 9rem; }

  .nav-open .nav_desktop {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100); }

  .nav_active .nav_desktop_logo {
    margin: 1.5rem 0 0 10%;
    width: 6.6rem;
    height: auto; }

  .nav-open .nav_desktop_logo {
    margin: 0;
    padding: 0;
    width: 30vw;
    left: 35%;
    top: 8%; }

  .dropdown {
    height: 75vh;
    top: 25vh;
    padding: 0 10% 10% 10%; }

  .dropdown_box a {
    grid-template-columns: 25% 75%;
    margin: 0;
    height: 5rem; }

  .dropdown_box a h4 {
    font-size: 1.2rem; }

  .dropdown_box a:hover h4 {
    font-size: 1.3rem; }

  .dropdown_box a img {
    margin: auto 0; }

  .dropdown_back {
    display: grid;
    grid-template-columns: 18% 82%;
    width: 60%;
    padding: 0 0 8% 0; }

  .dropdown_back h4 {
    font-size: 1.6rem; }

  .nav_desktop li a {
    font-size: 1.8rem; }

  /*======== Phone - Menu Icon ========*/
  .menuIcon {
    right: 3rem;
    top: 3.25rem;
    height: 2.5rem;
    width: 4.5rem; }

  .line-bars::before {
    top: -1.5rem; }

  .line-bars::after {
    bottom: -1.5rem; }

  .line-bars {
    height: 0.3rem; }

  /* Icon Bars */
  .line-bars::before,
  .line-bars::after {
    height: 0.3rem; }

  .menuIcon.toggle .line-bars::after {
    transform: translate3d(0, -1.25rem, 0) rotate(-270deg); }

  /* Bars Shadows */
  .icon-bars.overlay {
    width: 5rem; } }
/*************** HEADERS ***************/
.header_active .header_mask {
  transform: translateX(0); }

.header {
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-size: cover;
  background-position: 80% top;
  position: relative;
  transition: height 1000s steps(1); }

.header_mask {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  clip-path: polygon(0 0, 45% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 0, 45% 0, 100% 100%, 0% 100%);
  transform: translateX(-120%);
  transition: all 0.6s ease-in-out; }

.header_blur {
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  filter: blur(2px);
  background-size: cover;
  background-position: 80% top;
  z-index: 1;
  transition: height 1000s steps(1); }

.header-landing {
  background: none;
  display: flex;
  align-items: center;
  overflow: hidden; }
  .header-landing img {
    position: absolute;
    width: 55%;
    right: -50px;
    bottom: 5%;
    z-index: -1; }
  .header-landing .header_heading {
    display: block;
    margin: auto auto auto 15%;
    max-width: 700px; }
    .header-landing .header_heading h1 {
      font-size: 5rem;
      color: #191919;
      padding: 15px 0 35px 0; }
    .header-landing .header_heading h2 {
      color: #868686;
      font-size: 3.3rem; }
    .header-landing .header_heading p {
      color: #393939;
      font-size: 1.7rem;
      max-width: 350px; }
    .header-landing .header_heading button {
      color: white;
      background-color: var(--red); }

.header-sluzby,
.header-sluzby .header_blur {
  background-image: url("../img/services/background-filter.jpeg"); }

.header-akcia,
.header-akcia .header_blur {
  background-image: url("../img/discount/background.jpeg");
  background-position: right top; }

.header-galeria,
.header-galeria .header_blur {
  background-image: url("../img/gallery/background.jpeg"); }

.header-kontakt,
.header-kontakt .header_blur {
  background-image: url("../img/contact/background.jpeg"); }

.header-plechy,
.header-plechy .header_blur {
  background-image: url("../img/metal/background-filter.jpeg"); }

.header-odkvap,
.header-odkvap .header_blur {
  background-image: url("../img/gutters/background-filter.jpeg"); }

.header-stresne,
.header-stresne .header_blur {
  background-image: url("../img/roof-products/background-filter.jpeg"); }

.header-lem,
.header-lem .header_blur {
  background-image: url("../img/roof-edging/background-filter.jpeg"); }

.header-atypic,
.header-atypic .header_blur {
  background-image: url("../img/atypic/background-filter.jpeg"); }

.header-maliarske,
.header-maliarske .header_blur {
  background-image: url("../img/painting/background-filter.jpeg"); }

.header-spojovaci,
.header-spojovaci .header_blur {
  background-image: url("../img/screws/background-filter.jpeg"); }

.header-stavebna,
.header-stavebna .header_blur {
  background-image: url("../img/sealants/background-filter.jpeg");
  background-position: right bottom; }

.header-naradie,
.header-naradie .header_blur {
  background-image: url("../img/tools/background-filter.jpeg"); }

.header-folie,
.header-folie .header_blur {
  background-image: url("../img/foils/background-filter.jpeg"); }

.header-meradla,
.header-meradla .header_blur {
  background-image: url("../img/measuring/background-filter.jpeg");
  background-position: right bottom; }

.header-pasky,
.header-pasky .header_blur {
  background-image: url("../img/tapes/background-filter.jpeg"); }

.header-kotuce,
.header-kotuce .header_blur {
  background-image: url("../img/discs/background-filter.jpeg");
  background-position: right bottom; }

.header-ochranne,
.header-ochranne .header_blur {
  background-image: url("../img/protective/background-filter.jpeg"); }

.header-zemne,
.header-zemne .header_blur {
  background-image: url("../img/ground-screws/background.jpeg"); }

.header-ostatny,
.header-ostatny .header_blur {
  background-image: url("../img/other-tools/background.jpeg"); }

.header_filter {
  background-color: rgba(255, 255, 255, 0.863);
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0; }

.header_heading_text {
  position: absolute;
  bottom: 10%;
  left: 10rem;
  width: 50%;
  z-index: 3; }

.header_heading_text h1 {
  color: var(--dark-red);
  font-size: 5rem; }

.header_heading_text p {
  color: black;
  font-size: 1.5rem; }

.header_heading_text .heading-line {
  background-color: var(--dark-red);
  margin: 2rem 0 3rem 0; }

.header-landing .header_heading {
  background: none; }

@media (max-width: 1200px) {
  .header_mask {
    width: 60%; }

  .header-landing img {
    width: 65%;
    bottom: 0; }
  .header-landing .header_heading {
    padding-bottom: 5%;
    max-width: 550px; }
    .header-landing .header_heading h1 {
      font-size: 4rem; } }
@media (max-width: 1025px) {
  .header_mask {
    width: 80%; }

  .header_heading_text p {
    font-size: 1.8rem; }

  .header-landing .header_heading {
    width: 100%; } }
@media (max-width: 900px) {
  .header_mask {
    left: 5%;
    top: auto;
    bottom: 5%;
    width: 90%;
    height: auto;
    clip-path: none;
    -webkit-clip-path: none;
    border-radius: 3rem;
    background-color: rgba(255, 255, 255, 0.863); }

  .header_filter {
    display: none; }

  .header_blur {
    display: none; }

  .header_heading_text {
    position: static;
    padding: 5rem;
    width: 100%;
    z-index: 3; }

  .header_heading_text h1 {
    font-size: 4rem; }

  .header_heading_text p {
    font-size: 1.6rem; }

  .header_heading_text .heading-line {
    margin: 2rem 0 4rem 0; }

  .header_heading_text h1 {
    font-size: 5rem; }

  .header-landing {
    align-items: start; }
    .header-landing img {
      width: 80%;
      bottom: 0; }
    .header-landing .header_heading {
      padding-top: 160px;
      margin: 0 7% auto 10%; }
      .header-landing .header_heading h1 {
        font-size: 4rem;
        padding: 8px 0 30px 0; } }
@media (max-width: 600px) {
  .header-sluzby,
  .header-sluzby .header_blur {
    background-image: url("../img/small/services/background-filter.jpeg"); }

  .header-akcia,
  .header-akcia .header_blur {
    background-image: url("../img/small/discount/background.jpeg");
    background-position: right bottom; }

  .header-galeria,
  .header-galeria .header_blur {
    background-image: url("../img/small/gallery/background.jpeg"); }

  .header-kontakt,
  .header-kontakt .header_blur {
    background-image: url("../img/small/contact/background.jpeg"); }

  .header-plechy,
  .header-plechy .header_blur {
    background-image: url("../img/small/metal/background-filter.jpeg"); }

  .header-odkvap,
  .header-odkvap .header_blur {
    background-image: url("../img/small/gutters/background-filter.jpeg"); }

  .header-stresne,
  .header-stresne .header_blur {
    background-image: url("../img/small/roof-products/background-filter.jpeg"); }

  .header-lem,
  .header-lem .header_blur {
    background-image: url("../img/small/roof-edging/background-filter.jpeg"); }

  .header-atypic,
  .header-atypic .header_blur {
    background-image: url("../img/small/atypic/background-filter.jpeg"); }

  .header-maliarske,
  .header-maliarske .header_blur {
    background-image: url("../img/small/painting/background-filter.jpeg"); }

  .header-spojovaci,
  .header-spojovaci .header_blur {
    background-image: url("../img/small/screws/background-filter.jpeg"); }

  .header-stavebna,
  .header-stavebna .header_blur {
    background-image: url("../img/small/sealants/background-filter.jpeg");
    background-position: right bottom; }

  .header-naradie,
  .header-naradie .header_blur {
    background-image: url("../img/small/tools/background-filter.jpeg"); }

  .header-folie,
  .header-folie .header_blur {
    background-image: url("../img/small/foils/background-filter.jpeg"); }

  .header-meradla,
  .header-meradla .header_blur {
    background-image: url("../img/small/measuring/background-filter.jpeg");
    background-position: right bottom; }

  .header-pasky,
  .header-pasky .header_blur {
    background-image: url("../img/small/tapes/background-filter.jpeg"); }

  .header-kotuce,
  .header-kotuce .header_blur {
    background-image: url("../img/small/discs/background-filter.jpeg");
    background-position: right bottom; }

  .header-ochranne,
  .header-ochranne .header_blur {
    background-image: url("../img/small/protective/background-filter.jpeg"); }

  .header-zemne,
  .header-zemne .header_blur {
    background-image: url("../img/small/ground-screws/background.jpeg"); }

  .header-ostatny,
  .header-ostatny .header_blur {
    background-image: url("../img/small/other-tools/background.jpeg"); }

  .header_heading_text {
    padding: 3rem; }

  .header_heading_text h1 {
    font-size: 2.5rem; }

  .header_heading_text p {
    font-size: 1.2rem; }

  .header_heading_text .heading-line {
    margin: 2rem 0; }

  .header-landing img {
    width: 95%; }
  .header-landing .header_heading {
    padding-top: 112px;
    width: 100%; }
    .header-landing .header_heading h1 {
      font-size: 3rem;
      padding: 5px 0 20px 0; }
    .header-landing .header_heading h2 {
      font-size: 2.2rem; }
    .header-landing .header_heading p {
      font-size: 1.4rem; }
    .header-landing .header_heading a {
      display: flex; } }
/*************** Footer - form ***************/
.footer_form {
  background-color: var(--red);
  padding: 3% 0 3% 5%;
  display: grid;
  grid-template-columns: 25% 25% 45%;
  grid-template-areas: 'text img form'; }

.footer_form_text {
  padding: 20% 5% 0 5%;
  grid-area: text; }

.footer_form_text h1 {
  font-size: 8rem; }

.footer_form_text p {
  padding-top: 10%;
  font-size: 1.5rem;
  font-weight: 300; }

.footer_form_image {
  padding: 5%;
  grid-area: img; }

.footer_form form {
  padding: 5% 10%;
  grid-area: form; }

.footer_form input,
.footer_form textarea {
  display: block;
  width: 100%;
  margin: 1.5rem auto;
  border: none;
  padding: 1.3rem 1.5rem;
  color: white;
  font-weight: 300;
  font-size: 1.6rem;
  background-color: #ffffff50;
  border-radius: 0.7rem;
  font-family: inherit;
  -webkit-appearance: none; }

.footer_form ::placeholder {
  color: white; }

.footer_form textarea[name=message] {
  height: 20vh;
  color: white;
  resize: none; }

.footer_form input[type=submit] {
  background-color: white;
  color: var(--red);
  font-weight: 700;
  width: 30%;
  padding: 1.2rem;
  float: right;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 1rem; }

.footer_form input[type=submit]:hover {
  transform: scale(1.1); }

/*************** Footer - contact***************/
.footer_contact {
  background-color: #5C5C5C;
  padding: 6% 5% 6% 5%;
  display: grid;
  grid-template-columns: 25% 50% 25%;
  grid-template-areas: 'logo info opening'; }

.footer_contact h5 {
  font-size: 1.9rem; }

.footer_contact p {
  font-weight: 300; }

.footer_contact_logo {
  display: grid;
  align-items: center;
  justify-items: center;
  padding-right: 15%;
  grid-area: logo; }
  .footer_contact_logo img {
    width: 70%; }

.heading-line-footer {
  width: 5rem;
  margin-top: 0.4rem;
  background-color: white;
  height: 0.3rem;
  border-radius: 0.15rem; }

.footer_contact_grid-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4rem 0 0 0; }

.footer_contact_information {
  padding: 0 5rem 0 0;
  grid-area: info; }

.footer_contact_information_item {
  display: grid;
  grid-template-columns: 7% 93%;
  padding: 0 0 2rem 0; }

.footer_contact_information_item:hover a {
  transform: translateX(1rem); }

.footer_contact_information_item a {
  padding: 0 0 0 2rem;
  vertical-align: text-bottom; }

.footer_contact_opening-hours {
  grid-area: opening; }

.footer_contact_opening-hours_box p {
  padding: 0 0 2rem 0; }

.copyright {
  position: absolute;
  bottom: 3rem;
  margin: auto;
  text-align: center;
  font-weight: 200;
  font-size: 1.5rem;
  color: #d6d6d6; }

@media (max-width: 1200px) {
  /*======= Smaller desktop - Footer ========*/
  .footer_contact {
    grid-template-columns: 20% 60% 20%; }

  .footer_contact_information_item {
    grid-template-columns: 10% 90%; }

  .footer_form_text h1 {
    font-size: 7rem; } }
@media (max-width: 1025px) {
  .footer_form {
    padding: 10% 6% 6% 6%;
    grid-template-columns: 35% 65%;
    grid-template-areas: "text text" "img form"; }

  .footer_form_text {
    padding: 0 5% 0 10%; }

  .footer_form_text h1 {
    font-size: 6rem; }

  .footer_form_text p {
    padding: 3% 0 8% 0; }

  .footer_form input[type=submit] {
    width: 40%; }

  .footer_contact {
    grid-template-columns: 50% 50%;
    grid-template-areas: 'logo info' 'opening info'; }

  .footer_contact_logo {
    margin: auto 0;
    padding: 2% 0 6% 0;
    text-align: center; }

  .footer_contact_logo img {
    width: 50%; }

  .footer_contact_information {
    padding: 0 0 0 15%; }

  .footer_contact_information .footer_contact_grid-box {
    grid-template-columns: 1fr; }

  .footer_contact_information_item {
    grid-template-columns: 10% 90%; } }
@media (max-width: 900px) {
  .footer_form {
    padding: 0 10% 6% 10%;
    grid-template-columns: 50% 50%;
    grid-template-areas: "text img" "form form"; }

  .footer_form_text {
    padding: 50% 5% 0 10%; }

  .footer_form_text h1 {
    font-size: 5rem; }

  .footer_form_image {
    padding: 15% 5% 10% 5%; }

  .footer_form_text h1 {
    font-size: 5rem; }

  .footer_form_text p {
    padding: 15% 0 8% 0; }

  .footer_form form {
    padding: 5% 0;
    grid-area: form; }

  .footer_form input[type=submit] {
    width: 45%; }

  .footer_contact {
    grid-template-columns: 1fr;
    grid-template-areas: "logo" "info" "opening"; }

  .footer_contact_grid-box {
    padding: 9% 0 0 0; }

  .footer_contact_information {
    padding: 5% 0 0 5rem; }

  .footer_contact_logo {
    padding: 5% 0 3% 0; }

  .footer_contact_logo img {
    width: 35%; }

  .footer_contact_opening-hours {
    padding: 10% 0 15% 5rem;
    width: 60%; }

  .footer_contact_information_item {
    grid-template-columns: 7% 93%; } }
@media (max-width: 600px) {
  .footer_form_text {
    padding: 40% 5% 0 10%; }

  .footer_form_image {
    padding: 80% 5% 0 5%; }

  .footer_form_text p {
    padding: 15% 0 8% 0; }

  .footer_form form {
    padding: 5% 0;
    grid-area: form; }

  .footer_form input[type=submit] {
    width: 45%; }

  .footer_contact {
    grid-template-columns: 1fr;
    grid-template-areas: "logo" "info" "opening"; }

  .footer_contact_grid-box {
    padding: 9% 0 0 0; }

  .footer_contact_information {
    padding: 5% 0 0 8%; }

  .footer_contact_logo {
    padding: 5% 0 3% 0; }

  .footer_contact_logo img {
    width: 40%; }

  .footer_contact_opening-hours {
    padding: 10% 0 15% 8%;
    width: 60%; }

  .footer_contact_information_item {
    grid-template-columns: 7% 93%; } }
.contact_information {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 5rem;
  padding: 5rem 20%; }
  .contact_information .contact_information_text {
    padding: 7rem 0; }
  .contact_information .contact_information_item {
    display: grid;
    grid-template-columns: 10% 90%;
    padding: 0 0 1rem 0; }
  .contact_information .contact_information_item:hover {
    transform: translateX(1rem); }
  .contact_information .contact_information_item a {
    padding: 0 0 0 2rem;
    vertical-align: text-bottom;
    margin: auto;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--dark-grey); }
  .contact_information .contact_information_img {
    text-align: center;
    margin: auto; }
  .contact_information .contact_information_img img {
    width: 100%;
    border-radius: 2rem; }

.contact_opening-hours {
  padding: 5rem 20%; }
  .contact_opening-hours .contact_opening-hours_box {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5rem 0; }
  .contact_opening-hours .contact_opening-hours_box_text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 80%;
    padding: 3rem 2rem; }
  .contact_opening-hours .holidays {
    width: 100%;
    grid-template-columns: 67% 33%; }
  .contact_opening-hours .contact_opening-hours_box_text p {
    font-size: 1.8rem;
    line-height: 1.9; }
  .contact_opening-hours .contact_opening-hours_box_heading {
    display: grid;
    grid-template-columns: 15% 85%; }
  .contact_opening-hours .contact_opening-hours_box_heading h3 {
    color: var(--dark-grey);
    margin: auto;
    font-weight: 400;
    padding: 0 0 0 1rem; }

@media (max-width: 1025px) {
  .contact_information,
  .contact_opening-hours {
    padding: 5rem 10%; }

  .contact_opening-hours .contact_opening-hours_box {
    width: 100%; }
  .contact_opening-hours .contact_opening-hours_box_text {
    width: 80%; }
  .contact_opening-hours .holidays {
    width: 100%; } }
@media (max-width: 900px) {
  .contact_information .contact_information_item a {
    font-size: 1.6rem;
    line-height: 1.7; }
  .contact_information .contact_information_item {
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0 1rem 0; }
  .contact_information .contact_information_text {
    padding: 5rem 0; }

  .contact_opening-hours .contact_opening-hours_box_heading {
    grid-template-columns: 20% 80%; }
  .contact_opening-hours .contact_opening-hours_box_text {
    width: 100%; }
  .contact_opening-hours .contact_opening-hours_box_text p {
    font-size: 1.6rem;
    line-height: 1.7; }
  .contact_opening-hours .holidays {
    width: 100%; } }
@media (max-width: 600px) {
  .contact_information,
  .contact_opening-hours {
    grid-template-columns: 1fr;
    padding: 5rem 10%; }

  .contact_information .contact_information_item {
    grid-template-columns: 13% 87%; }
  .contact_information .contact_information_item a {
    font-size: 1.3rem;
    line-height: 1.5; }

  .contact_opening-hours .contact_opening-hours_box {
    grid-template-columns: 1fr; }
  .contact_opening-hours .contact_opening-hours_box_text p {
    font-size: 1.5rem; }
  .contact_opening-hours .contact_opening-hours_box_text {
    width: 100%;
    padding: 1rem 2rem 5rem 2rem; }
  .contact_opening-hours .holidays {
    width: 100%; } }
/*************** INTRO ***************/
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 10%; }

.intro_text {
  text-align: center;
  padding: 5%;
  margin: auto; }

.intro_image {
  text-align: center;
  padding: 0 25%; }

/***********  Main - Section with background image **********/
section {
  position: relative; }

.section-background {
  background-size: cover;
  background-position: 80%;
  position: relative;
  background-position: right middle; }

.section-background-about {
  background-image: url("../img/backgrounds/about-main-background.jpeg");
  background-position: left top; }

.section-background-metal {
  background-image: url("../img/metal/main-background.jpeg"); }

.section-background-roof-products {
  background-image: url("../img/roof-products/main-background.jpeg"); }

.section-background-atypic {
  background-image: url("../img/atypic/main-background.jpeg");
  background-position: right top; }

.section-background-paintings {
  background-image: url("../img/painting/main-background-2.jpeg");
  background-size: 100% 100%; }

.section-background-other {
  background-image: url("../img/other-tools/main-background.jpeg"); }

.section-background_p {
  margin-top: 5rem;
  max-width: 40%; }

.section-background_button,
.section-no-background_button {
  margin: 5rem 0;
  width: 15rem;
  height: 5rem;
  background-color: var(--red); }

.section-background_button {
  background-color: white;
  color: var(--light-grey); }

.section-background_button:hover {
  color: white;
  background-color: var(--red); }

.section-background_button:focus {
  outline: 0; }

.section-no-background_button:hover {
  color: var(--red);
  background-color: white;
  border: 2px solid var(--red); }

/***********  Main - Sections text **********/
.section_text_box {
  padding: 7% var(--padding); }

/***********  Main - Sections without background **********/
.section-no-background_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "img heading" "img text";
  grid-auto-rows: unset; }

.section-no-background_box.reverse{
  grid-template-areas: "heading img" "text img";
}

.section-no-background_img {
  padding: 5%;
  grid-area: img;
  margin: auto 0; }

.section-no-background-heading {
  padding: 5rem 0 0 0;
  grid-area: heading;
  height: 100%; }

.section-no-background_text {
  width: 70%;
  grid-area: text;
  padding: 4rem 0 0 0; }

.section-no-background_text p {
  color: var(--dark-grey); }

/***********  Main - Intro **********/
.section-intro .section_text_box {
  display: grid;
  grid-template-areas: 'text img';
  padding: 5% 20%; }

.section-intro {
  display: block; }

.section-intro .section-no-background_text {
  padding: 0 0 5% 0;
  margin: auto 0;
  grid-area: text; }

.section-intro .section-no-background_text p {
  font-size: 1.6rem;
  line-height: 2; }

.section-intro .section-no-background_img img {
  width: 80%; }

.section-intro .section-no-background_img {
  grid-area: img; }

/***********  Main - Services **********/
.section-services_box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 5% 10%; }

.section-services_box_icon {
  width: 100%;
  height: 100%;
  padding: 15%; }

.section-services_box_icon_img_box {
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative; }

.section-services_box_icon_img_box:hover {
  transform: translateY(-10%) scale(1.1); }

.section-services_box_icon_img {
  padding: 0 15%;
  text-align: center; }

.section-services_box_icon_img {
  width: 100%;
  margin: auto 0; }

.section-services_box_icon h4 {
  color: #2B2B2B;
  text-align: center; }

/*********** Main - Odkvapový systém **********/
.section-odkvap .section-no-background_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100%; }

.section-odkvap .section-no-background_box img {
  padding: 5% 0;
  width: 140%; }

.section-odkvap .section-no-background_box .section-no-background_box_text {
  margin: 50% 0 0 0;
  padding-right: 10%; }

.section-odkvap .section-no-background_box .section-no-background_box_text p {
  bottom: 30%;
  left: -50%; }

/***********  Main - Strešné lemovania **********/
/***********  Main - Maliarské potreby **********/
.section-maliarske-potreby .section_text_box {
  width: 100%;
  display: block;
  padding-top: 10%;
  padding-bottom: 10%; }

.section-maliarske-potreby .section-no-background_box {
  width: 60%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "heading" "text";
  grid-auto-rows: unset; }

.section-maliarske-potreby .section-no-background-heading {
  padding: 2rem 0 0 0; }

.section-maliarske-potreby .section-no-background-heading h2 {
  color: white; }

.section-maliarske-potreby .section_text_box p {
  color: white; }

/***********  Main - Ochranné pomôcky **********/
.section-ochranne {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "img heading" "img text";
  grid-auto-rows: unset;
  padding: 5% 0 10% 0; }

.section-ochranne img {
  width: 90%;
  grid-area: img; }

.section-ochranne .section-no-background_text {
  width: 70%;
  margin: 3rem 0 0 0; }

/***********  Main - Fólie + Stavebná chémia **********/
.section-folie img,
.section-chemia img {
  width: 90%; }

/***********  Main - Náradie **********/
.section-naradie {
  padding: 5% 0 0 18rem;
  grid-template-columns: 40% 60%;
  grid-template-areas: "heading img" "text img"; }

.section-naradie .section-no-background_text {
  width: 100%;
  padding: 0;
  grid-area: text; }

.section-naradie .section-no-background-heading {
  padding: 5rem 0 0 0; }

.section-naradie img {
  width: 100%;
  grid-area: img; }

/***********  Main - Zemné skrutky **********/
.section-zemne-skrutky img {
  width: 85%;
  padding-left: 15%; }

/***********  Main - Partneri **********/
.section-partners_box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 5% 10%; }

.section-partners_box_img {
  padding: 7% 15%; }

.section-partners p {
  color: var(--light-grey);
  font-weight: 400;
  padding: 2% 0 0 0; }

.section-partners_box_img:hover {
  transform: scale(1.2); }

@media (max-width: 1025px) {
  .section_text_box {
    padding: 9% var(--padding); }

  /***********  TABLET PRO - Intro **********/
  .section-intro .section-no-background_text p {
    font-size: 1.4rem; }

  /***********  TABLET PRO- Button **********/
  .section-background_button,
  .section-no-background_button {
    margin: 3rem 0;
    width: 12rem;
    height: 4rem; }

  button {
    font-size: 1.6rem;
    font-weight: 400; }

  /***********  TABLET PRO - Info **********/
  .section-no-background_text {
    width: 90%; }

  /***********  TABLET PRO - Services **********/
  .section-services_box {
    padding: 7% 0; }

  .section-services_box_icon {
    padding: 10%; }

  /***********  TABLET PRO - Naradie **********/
  .section-naradie {
    padding: 5% 0 0 8rem; } }
@media (max-width: 900px) {
  /***********  TABLET - Maliarské potreby **********/
  .section-background-paintings {
    background-image: url("../img/painting/main-background-3.jpeg");
    background-position: 40%;
    background-size: 150% 100%; }

  .section-maliarske-potreby .section_text_box {
    padding-top: 15%;
    padding-bottom: 15%; } }
@media (max-width: 600px) {
  .section_text_box {
    padding: 11% var(--padding); }

  .section-background-about {
    background-image: url("../img/small/backgrounds/about-main-background.jpeg"); }

  .section-background-metal {
    background-image: url("../img/small/metal/main-background.jpeg"); }

  .section-background-roof-products {
    background-image: url("../img/small/roof-products/main-background.jpeg"); }

  .section-background-atypic {
    background-image: url("../img/small/atypic/main-background.jpeg"); }

  .section-background-paintings {
    background-image: url("../img/small/painting/main-background-3.jpeg"); }

  .section-background-other {
    background-image: url("../img/small/other-tools/main-background.jpeg"); }

  /*======= PHONE - Intro ========*/
  .section-intro .section_text_box {
    display: block;
    padding: 0 6rem 8rem 6rem; }

  .section-no-background_text {
    width: 100%; }

  .section-no-background_text p {
    font-size: 1.2rem; }

  .section-intro .section-no-background_text p {
    font-size: 1.2rem; }

  .section-intro .section-no-background_img img {
    width: 85%;
    padding: 5% 0 0 0; }

  /*======= PHONE - Ponuka ========*/
  .section-services_box {
    grid-template-columns: 50% 50%;
    padding: 10% 5% 20% 5%; }

  /*======= PHONE - With background ========*/
  .section-background_p {
    max-width: 90%; }

  /*======= PHONE - Without background ========*/
  .section-no-background_box,
  .section-ochranne {
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "img" "text";
    grid-auto-rows: unset; }

  .section-no-background-heading {
    padding: 0 0 2rem 0; }

  /*======= PHONE - Ponuka ========*/
  .section-odkvap .section-no-background_box img {
    padding: 5rem 0;
    width: 100%; }

  /*======= PHONE - Odkvapový systém ========*/
  .section-odkvap .section-no-background_box {
    display: block; }

  .section-odkvap .section-no-background_box .section-no-background_box_text {
    margin: 0 0 0 0;
    padding-right: 10%; }

  .section-ochranne .section-no-background_text {
    width: 80%;
    margin: 3rem 0 0 var(--padding); }

  .section-ochranne .section-no-background-heading {
    width: 80%;
    margin: 3rem 0 0 var(--padding);
    padding-bottom: 0; }

  /***********  PHONE - Maliarské potreby **********/
  .section-maliarske-potreby .section-no-background_box {
    width: 100%; }

  .section-maliarske-potreby .section_text_box {
    padding-top: 20%;
    padding-bottom: 20%; }

  .section-maliarske-potreby .heading-line {
    background-color: white; }

  /***********  PHONE - Náradie **********/
  .section-naradie {
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "text" "img";
    padding: 0;
    margin: 0; }

  .section-naradie .section-no-background-heading {
    padding: 5rem 0 0 0; }

  /***********  PHONE - Partneri **********/
  .section-partners_box {
    grid-template-columns: 1fr 1fr;
    padding: 0; }

  .section-partners_box_img {
    padding: 7% 10%; }

  .section-partners p {
    padding: 10% 0 8% 0; } }
/***********  MODAL - Aktuality **********/
.modal_update_wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100; }

.modal_update_filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.644);
  z-index: 100; }

.modal_update {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 750px;
  height: auto;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 70px 70px 100px 70px;
  opacity: 1;
  border-radius: 10px;
  overflow: hidden;
  z-index: 101; }

.modal_update_logo {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 10%;
  height: auto; }

.modal_update_text {
  color: black;
  font-family: 'Open Sans';
  font-size: 20px; }

.modal_update_text p {
  color: black;
  font-family: 'Open Sans';
  font-size: 20px;
  padding-bottom: 20px; }

.modal_update_text ul {
  padding-bottom: 20px;
  list-style-position: inside; }

.modal_update_contact {
  padding-top: 40px;
  display: flex;
  width: 80%;
  margin: auto; }

.modal_update_contact > div {
  display: flex; }

.modal_update_contact a {
  color: black;
  font-family: 'Open Sans';
  text-decoration: none;
  font-size: 20px; }

.modal_update_icon {
  width: 40px;
  height: 40px;
  margin-right: 15px; }

.modal_update_abstract {
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 100%;
  height: auto; }

.modal_update_close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.3; }

.modal_update_close:hover {
  opacity: 1; }

.modal_update_close:before, .modal_update_close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #333; }

.modal_update_close:before {
  transform: rotate(45deg); }

.modal_update_close:after {
  transform: rotate(-45deg); }

@media only screen and (max-width: 800px) {
  .modal_update {
    top: 45%;
    max-width: 90%;
    padding: 35px 30px 45px 30px; }

  .modal_update_text {
    font-size: 17px; }

  .modal_update_text p {
    font-size: 17px;
    padding: bottom 15px; }

  .modal_update_contact a {
    font-size: 17px; }

  .modal_update_contact {
    display: block;
    width: 250px;
    padding-top: 10px; }

  .modal_update_contact > div {
    margin-bottom: 15px; }

  .modal_update_close {
    right: 25px;
    top: 25px; } }
.section-payments .section-services_box {
  display: grid;
  width: 50%;
  grid-template-columns: 1fr 1fr;
  padding: 5% 0 5% 10%; }

@media (max-width: 1025px) {
  .section-payments .section-services_box {
    padding: 7% 0; } }
@media (max-width: 600px) {
  .section-payments .section-services_box {
    width: 100%;
    padding: 10% 5% 20% 5%; } }
.plechy_item {
  padding: 5rem 12rem; }

.plechy_item h2 {
  color: var(--light-black); }

.plechy_item_grid {
  display: grid;
  grid-template-columns: 35% 65%;
  padding-top: 3rem; }

.plechy_item_grid img {
  border-radius: 4%;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.16);
  margin: 1rem 0; }

.plechy_item_grid img:hover {
  transform: scale(1.05); }

.plechy_item_grid p {
  padding: 2rem 4rem; }

.lakoplast .plechy_item_grid {
  display: block; }

.lakoplast_text {
  width: 60%;
  padding: 3rem 0; }

.lakoplast_colors-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  padding: 6rem 5rem 0 0; }

.lakoplast_color {
  border-radius: 10%;
  width: 10vw;
  height: 10vw;
  text-align: center; }

.lakoplast_color:hover {
  transform: scale(1.1); }

.lakoplast_color_text {
  height: 100%;
  padding: 20% 15%;
  margin: auto; }

.lakoplast_color_text p {
  color: white;
  text-align: center;
  height: 50%;
  line-height: 3;
  padding: 0; }

.lakoplast_color_text p:nth-child(1) {
  border-bottom: 1px solid white;
  font-size: 1.7rem; }

.ral-5010 {
  background-color: #00427F; }

.ral-9010 {
  background-color: #F4F4EC; }

.ral-9002 {
  background-color: #DDDED3; }

.ral-9010 p,
.ral-9002 p,
.ral-9006 p {
  color: var(--dark-grey); }
.ral-9010 .lakoplast_color_text > p:nth-child(1),
.ral-9002 .lakoplast_color_text > p:nth-child(1),
.ral-9006 .lakoplast_color_text > p:nth-child(1) {
  border-color: var(--dark-grey); }

.ral-9006 {
  background-color: #CFCFCF; }

.ral-9005 {
  background-color: black; }

.ral-3009 {
  background-color: #711112; }

.ral-7037 {
  background-color: #7F8082; }

.ral-8004 {
  background-color: #9A4935; }

.ral-EXTRA {
  background-color: #905530; }

.ral-3011 {
  background-color: #8D080C; }

.ral-8017 {
  background-color: #482319; }

.ral-8019 {
  background-color: #1F1B16; }

.ral-7016 {
  background-color: #333C45; }

.ral-6009 {
  background-color: #213529; }

@media (max-width: 1200px) {
  .plechy_item_grid > div > p {
    padding: 1rem 4rem; } }
@media (max-width: 1025px) {
  .plechy_item {
    padding: 2rem 5rem; }

  .plechy_item_grid {
    grid-template-columns: 45% 55%; }

  .plechy_item_grid > div > p {
    padding: 3rem; }

  .lakoplast_colors-box {
    grid-template-columns: 1fr 1fr 1fr 1fr; }

  .lakoplast_color {
    width: 13vw;
    height: 13vw; }

  .lakoplast_color_text p:nth-child(1) {
    font-size: 1.5rem; } }
@media (max-width: 900px) {
  .plechy_item {
    padding: 2rem; }

  .lakoplast_colors-box {
    grid-template-columns: 1fr 1fr 1fr; }

  .lakoplast_color {
    width: 17vw;
    height: 17vw; }

  .lakoplast_color_text p:nth-child(1) {
    font-size: 1.4rem; } }
@media (max-width: 600px) {
  .plechy_item {
    padding: 3rem 0; }

  .plechy_item_grid {
    grid-template-columns: 1fr;
    padding: 2rem; }

  .plechy_item_grid > div > p {
    padding: 4rem 1rem; }

  .lakoplast_colors-box {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 0;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem; }

  .lakoplast_color {
    width: 32vw;
    height: 32vw; }

  .lakoplast_color_text {
    padding: 15% 10%; }

  .lakoplast_text {
    width: 100%; }

  .lakoplast_color_text p:nth-child(1) {
    font-size: 1.3rem; } }
.odkvap .plechy_item {
  padding: 5rem 0 8rem 0; }

.odkvap h2 {
  padding-bottom: 0; }

.box_list-type {
  padding: 1rem 0 2rem 8rem; }

.box_list-type li {
  font-size: 2.4rem;
  line-height: 1;
  padding: 0.8rem 2rem; }

.box_list-type li span,
.box_list-type p {
  font-size: 1.6rem;
  margin: auto;
  font-weight: 300;
  color: black; }

.box_list-type p {
  padding: 4rem 2rem; }

.odkvapy_item {
  padding: 5rem 0 5rem 5rem; }

.odkvapy_item h3 {
  color: var(--dark-grey); }

@media (max-width: 1025px) {
  .odkvapy_item {
    padding: 5rem 0 5rem 4rem; }

  .box_list-type {
    padding: 1rem 0 2rem 7rem; }

  .box_list-type li {
    padding: 0.6rem 2rem; } }
@media (max-width: 900px) {
  .box_list-type li {
    padding: 0.5rem 0; } }
@media (max-width: 600px) {
  .odkvapy_item {
    padding: 4rem 0 4rem 1rem; }

  .odkvap .plechy_item_grid {
    padding: 2rem 0; }

  .box_list-type li {
    font-size: 2.2rem;
    padding: 0.5rem 0; }

  .box_list-type li span,
  .box_list-type p {
    font-size: 1.3rem; }

  .box_list-type p {
    padding: 3rem 0;
    margin-left: -2rem; } }
.gallery_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  padding: 5% 7% 8% 7%; }

.gallery_item {
  background-color: white;
  border-radius: 5%;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.16);
  overflow: hidden; }

.gallery_item:hover {
  transform: scale(1.1); }

.gallery_item_img {
  margin: auto;
  text-align: center;
  padding: 1rem 1rem 0 1rem; }

.gallery_item_img img {
  transform: scale(1.1); }

.gallery_item_title h3 {
  font-size: 1.5rem;
  color: var(--dark-grey);
  text-align: center;
  margin: auto;
  padding: 2rem; }

.gallery_heading {
  padding: 1rem 0; }

.gallery_grid_without-text .gallery_item_img {
  padding: 0 !important; }

@media (max-width: 1025px) {
  .gallery_grid {
    padding: 7% 2% 15% 2%; } }
@media (max-width: 900px) {
  .gallery_grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem; }

  .gallery_item_title h3 {
    font-size: 1.4rem;
    padding: 1rem; } }
@media (max-width: 600px) {
  .gallery_grid {
    grid-template-columns: 1fr 1fr; } }
.atypic {
  display: grid;
  grid-template-columns: 60% 40%;
  padding: 4rem; }
  .atypic .box_list-type {
    display: block;
    width: 100%; }
  .atypic img {
    padding: 5rem 3rem 0 3rem;
    margin: auto 0; }

@media (max-width: 1025px) {
  .atypic {
    padding: 4rem 0; } }
@media (max-width: 900px) {
  .atypic {
    grid-template-columns: 1fr;
    padding: 4rem 0; }
    .atypic img {
      padding: 6rem 0;
      margin: auto;
      width: 60%; } }
.spojovaci .box_list-type {
  display: grid;
  grid-template-columns: 1fr 1fr; }

.spojovaci .box_list-type p {
  padding: 0 2rem 1rem 0;
  margin-left: -2.5rem;
  font-size: 1.7rem; }

@media (max-width: 600px) {
  .spojovaci .box_list-type p {
    font-size: 1.4rem; } }
.maliarske .gallery_item_img {
  padding: 0; }

@media (max-width: 900px) {
  .maliarske .gallery_item_title h3 {
    padding: 2rem 0 1rem 0; } }
@media (max-width: 600px) {
  .maliarske .gallery_grid {
    grid-template-columns: 1fr; }

  .maliarske .gallery_item_title h3 {
    padding: 3rem 0 2rem 0; } }
@media (max-width: 1025px) {
  .stavebna .box_list-type {
    grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .stavebna .box_list-type {
    grid-template-columns: 1fr;
    padding: 1rem 0 2rem 4rem; } }
.ground-screws {
  grid-template-columns: 40% 60%;
  padding: 7rem 5rem 10rem 5rem; }

.ground-screws > div {
  padding: 12%; }

.ground-screws > div p {
  margin: auto; }

.ground-screws_benefits h4 {
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--dark-grey); }

@media (max-width: 1025px) {
  .ground-screws {
    padding: 5rem 0; } }
@media (max-width: 900px) {
  .ground-screws img {
    width: 100%;
    padding: 2rem; } }
@media (max-width: 600px) {
  .ground-screws {
    grid-template-columns: 1fr; }

  .ground-screws_benefits h4 {
    font-weight: 600;
    font-size: 1.6rem; }

  .ground-screws img {
    width: 100%;
    padding: 0 5rem; } }
.akcia .plechy_item_grid > div {
  padding: 0 4rem;
  position: relative; }
  .akcia .plechy_item_grid > div h3 {
    padding: 3rem 0 2rem 0;
    font-size: 2.2rem; }
  .akcia .plechy_item_grid > div p {
    padding: 2rem 0 10rem 0; }
  .akcia .plechy_item_grid > div h2 {
    color: var(--red);
    font-size: 3rem;
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    width: auto; }

.akcia .plechy_item_grid img {
  padding: 1rem;
  box-shadow: none; }

.akcia .plechy_item_grid {
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.16);
  border-radius: 2rem;
  padding: 0;
  grid-template-columns: 45% 55%; }

.akcia .plechy_item_grid:hover {
  transform: scale(1.1); }

@media (max-width: 1025px) {
  .akcia .plechy_item {
    padding: 0; }
  .akcia .odkvapy_item {
    padding: 5% 0; } }
@media (max-width: 600px) {
  .akcia .plechy_item_grid {
    grid-template-columns: 1fr; }

  .akcia .plechy_item_grid > div {
    padding: 0 4rem;
    position: relative; }
    .akcia .plechy_item_grid > div h3 {
      padding: 0 0 1rem 0;
      font-size: 2rem; }
    .akcia .plechy_item_grid > div p {
      padding: 2rem 0 4rem 0; }
    .akcia .plechy_item_grid > div h2 {
      position: static;
      padding: 4rem 1rem 2rem 1rem;
      text-align: right;
      font-size: 2.3rem; } }
.tapes .atypic {
  grid-template-columns: 50% 50%;
  padding: 4rem; }
  .tapes .atypic .box_list-type {
    padding: 6rem; }
  .tapes .atypic img {
    padding: 0; }

@media (max-width: 1025px) {
  .tapes .atypic {
    padding: 4rem 0; } }
@media (max-width: 900px) {
  .tapes .atypic {
    grid-template-columns: 1fr;
    padding: 4rem 0; }
    .tapes .atypic img {
      padding: 6rem 0;
      margin: auto;
      width: 60%; } }

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