@charset "UTF-8";
body {
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

input, textarea, button {
  outline: none;
  box-shadow: none !important;
}

@media (min-width: 320px) {
  header {
    position: fixed;
    background-color: #fff;
    z-index: 1000;
    top: 0;
    width: 100vw;
    padding: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  header .logo {
    text-align: center;
    width: 150px;
  }
  header .logo img {
    width: 100%;
    max-width: 250px;
  }
  header .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: relative;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  header .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
  }
  header .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }
  header .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  header .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }
  header .opened .line1 {
    transform: rotate(45deg);
  }
  header .opened .line2 {
    transform: scaleY(0);
  }
  header .opened .line3 {
    transform: rotate(-45deg);
  }
  header .menu {
    margin-top: 25px;
    margin-bottom: 0px;
    width: 100%;
    display: none;
    transition: all 0.3s ease;
    flex-direction: row;
    justify-content: center;
    transform: translateX(100%); /* Skryté mimo obrazovky */
    transition: none;
  }
  header .menu ul {
    padding-left: 0px;
    padding-right: 0px;
  }
  header .menu ul li {
    list-style: none;
    padding: 10px;
    text-align: center;
  }
  header .menu ul li a {
    font-size: 1.2rem;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    transition: all 0.3s linear;
  }
  header .menu ul li a:hover {
    color: #e41d25;
  }
  header .active {
    transform: translateX(0); /* Viditeľné menu */
    display: flex;
  }
  header .opening {
    animation: slideIn 0.3s ease forwards; /* Animácia otvorenia */
  }
  header .closing {
    animation: slideOut 0.3s ease forwards; /* Animácia zatvorenia */
  }
  @keyframes slideIn {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
  @keyframes slideOut {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(100%);
    }
  }
  main {
    margin-top: 94px;
  }
  main .carousel {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-items: center;
    width: 100%;
    background-image: url("../design_images/backyard-outdoor-fireplace-full-burning-embers.jpg");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0px 15px 0px 15px;
    background-position-y: -70px;
  }
  main .carousel .kotol {
    display: flex;
    flex-direction: row;
    width: 100%;
    transition: all 0.3s linear;
    position: relative;
    padding-top: 50px;
  }
  main .carousel .kotol img {
    width: 100%;
  }
  main .carousel .text {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    min-height: 350px;
  }
  main .carousel .text h1 {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    z-index: 15;
    margin: 0px;
  }
  main .carousel .text h2 {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 15;
    padding-left: 10px;
    margin: 0px;
  }
  main .carousel .text h2 .red-bg {
    position: relative;
    background-color: #e41d25;
    padding-left: 10px;
    margin-left: -10px;
    padding-right: 13px;
  }
  main .carousel .text ul {
    padding-left: 17px;
    z-index: 15;
    margin: 0px;
  }
  main .carousel .text ul li {
    font-size: 0.8rem;
    line-height: 1.2rem;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
  }
  main .carousel .text .carousel-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  main .carousel .text .carousel-links a {
    background-color: #e41d25;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 15px 15px;
    text-decoration: none;
    text-transform: uppercase;
    margin: 0px;
    width: fit-content;
    transition: all 0.3s linear;
  }
  main .carousel .text .carousel-links a:hover {
    background-color: #ffffff;
    color: #000000;
  }
  main .carousel .text .carousel-links a:first-of-type {
    margin-right: 15px;
    background-color: transparent;
    border: 2px solid #ffffff;
  }
  main .carousel .text .carousel-links a:first-of-type:hover {
    background-color: #ffffff;
    color: #000000;
  }
  main .video-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    height: 100vh;
  }
  main .video-box h2 {
    font-size: 2.3rem;
    line-height: 2.3rem;
    color: #000000;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  main .video-box h2 .font-red {
    color: #e41d25;
  }
  main .video-box .video {
    background-color: #000000;
    height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../design_images/fire-bg.jpg");
    background-size: cover;
  }
  main .video-box .video .videomodal .modal-dialog {
    max-width: 70vw;
    margin: 50px auto;
  }
  main .video-box .video .videomodal .modal-body {
    position: relative;
    padding: 0px;
  }
  main .video-box .video .videomodal .close {
    position: absolute;
    right: -30px;
    top: 0;
    z-index: 999;
    font-size: 2rem;
    font-weight: normal;
    color: #fff;
    opacity: 1;
  }
  main .video-box .video .cursor-pointer {
    cursor: pointer;
  }
  main .video-box .video img {
    width: 80vh;
    height: 100%;
    max-width: inherit;
  }
  main .about-box {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    color: #494949;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px;
    text-transform: uppercase;
  }
  main .about-box h2 {
    margin-bottom: 100px;
    color: #12275e;
  }
  main .about-box ul {
    padding-left: 15px;
    margin-bottom: 100px;
  }
  main .about-box ul li {
    list-style-type: square;
    margin-bottom: 25px;
    color: #12275e;
  }
  main .about-box p {
    margin-bottom: 50px;
  }
  footer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #2c4176;
    padding: 15px;
    color: #ffffff;
    text-transform: uppercase;
    min-height: 100vh;
  }
  footer #contactModalBoxFull {
    color: black;
    font-size: 1rem;
  }
  footer #contactModalBoxFull .modal-dialog #responseMessage {
    color: #0e2431;
    font-weight: bold;
    padding: 15px 10px;
    text-align: center;
  }
  footer #contactModalBoxFull .modal-dialog #responseMessage .error-message {
    color: orange;
  }
  footer #contactModalBoxFull .modal-dialog #responseMessage .success-message {
    color: green;
  }
  footer #contactModalBoxFull .modal-dialog .modal-body .btn {
    background-color: #e41d25;
    color: #fff;
    max-width: 250px;
    padding: 15px 55px;
  }
  footer #contactModalBoxFull .modal-dialog .modal-body .btn:hover {
    background-color: #961418;
  }
  footer .copy {
    font-size: 0.8rem;
    font-weight: 100;
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
  }
  footer h2 {
    font-size: 2.3rem;
    line-height: 2.3rem;
    font-weight: 800;
    width: 100%;
    margin-bottom: 25px;
    margin-top: 10px;
  }
  footer .fo-left {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .fo-left div {
    margin-bottom: 25px;
  }
  footer .fo-left div h3 {
    font-weight: 800;
    font-size: 110%;
  }
  footer .fo-left div a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s linear;
    text-transform: lowercase;
  }
  footer .fo-left div a:hover {
    text-decoration: underline;
  }
  footer .fo-left table {
    border: none;
    font-size: inherit;
    border-spacing: 0px;
    font-size: 0.9rem;
    color: white;
  }
  footer .fo-left table tr td {
    padding-right: 5px;
  }
  footer .fo-right {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .fo-right .mapa {
    height: 50vh;
    background-color: #12275e;
    margin-bottom: 15px;
  }
  footer .fo-right .mapa iframe {
    height: 100%;
  }
  footer .fo-right a {
    color: #ffffff;
    padding: 25px;
    font-weight: 800;
    border: 1px solid #ffffff;
    margin-top: 15px;
    margin-bottom: 15px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s linear;
  }
  footer .fo-right a:hover {
    background-color: #ffffff;
    color: #000000;
  }
  footer .bottom-menu {
    display: none;
    margin-top: 50px;
    width: 100%;
  }
  footer .bottom-menu ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-left: 0px;
  }
  footer .bottom-menu ul li {
    list-style-type: none;
    padding: 15px 25px;
  }
  footer .bottom-menu ul li a {
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 0.3s linear;
  }
  footer .bottom-menu ul li a:hover {
    color: #e41d25;
    text-decoration: none;
  }
}
@media (min-width: 414px) {
  main .carousel {
    padding: 0px 25px 25px 25px;
    padding-bottom: 0px;
  }
  main .carousel .text {
    min-height: 450px;
  }
  main .carousel .text h1 {
    font-size: 1.5rem;
  }
  main .carousel .text h2 {
    font-size: 2rem;
  }
  main .carousel .text ul li {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
  main .carousel .text .carousel-links a {
    font-size: 1.2rem;
    padding: 15px 25px;
  }
  main .carousel .text .carousel-links a:first-of-type {
    margin-right: 25px;
  }
  main .video-box, main .about-box {
    padding: 25px;
  }
  footer {
    padding: 25px;
  }
  footer .fo-left table {
    font-size: inherit;
  }
  footer .fo-left table tr td {
    padding-right: 20px;
  }
  footer .bottom-menu ul li {
    padding: 15px 20px;
  }
}
@media (min-width: 600px) {
  header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
  }
  header .logo img {
    width: 150px;
  }
  header .menu {
    margin: 0px;
  }
  header .menu ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin: 20px 0px 0px 0px;
  }
  header .menu ul li a {
    font-size: 1rem;
    border-left: none;
    padding: 25px 10px;
  }
  header .menu ul li a:hover {
    border-left: none;
    color: #e41d25;
  }
  main .carousel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0px 50px 0px 50px;
    background-size: cover;
    position: relative;
    align-items: flex-start;
    background-position-y: -150px;
  }
  main .carousel .kotol {
    position: relative;
    z-index: 10;
  }
  main .carousel .kotol img {
    height: 100%;
    width: inherit;
  }
  main .carousel .text {
    z-index: 15;
    min-height: 600px;
  }
  main .carousel .text h1 {
    font-size: 2rem;
  }
  main .carousel .text h2 {
    font-size: 2.5rem;
  }
  main .carousel .text ul li {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  main .carousel .text .carousel-links a {
    font-size: 2rem;
    z-index: 15;
  }
  main .carousel .text .carousel-links a:first-of-type {
    margin-right: 30px;
  }
  main .video-box {
    padding: 50px;
  }
  main .video-box h2 {
    margin-top: 0px;
  }
  main .about-box {
    padding: 50px;
  }
  footer {
    padding: 50px;
  }
  footer h2 {
    margin-top: 0px;
  }
  footer .bottom-menu {
    height: 55px;
  }
  footer .bottom-menu ul {
    flex-direction: row;
  }
}
@media (min-width: 767px) {
  header .menu ul li a {
    padding: 25px 25px;
  }
  main .carousel {
    background-position-y: -180px;
    padding-bottom: 0px;
  }
}
@media (min-width: 960px) {
  header {
    padding-left: 50px;
    padding-right: 50px;
  }
  main .video-box {
    padding: 50px;
    justify-content: flex-end;
  }
  main .video-box h2 {
    font-size: 3rem;
    line-height: 3rem;
    width: 340px;
  }
  footer {
    padding: 50px 50px 0px 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  footer .copy {
    margin-top: 50px;
  }
  footer h2 {
    font-size: 3rem;
    line-height: 3rem;
    margin-top: 0px;
  }
  footer .fo-right .mapa {
    width: 100%;
    margin-top: 0px;
  }
}
@media (min-width: 1024px) {
  header .hamburger-lines {
    display: none;
  }
  header .menu {
    transform: translateX(0); /* Viditeľné menu */
    display: flex;
    width: auto;
  }
  header .menu ul {
    margin: 0px;
  }
  main .carousel {
    padding: 0px 50px 0px 50px;
    height: calc(100vh - 100px);
    min-height: 600px;
    flex-direction: row;
    background-position-y: -100px;
  }
  main .carousel .kotol {
    width: auto;
    height: calc(100vh - 160px);
    overflow: hidden;
    margin-top: 30px;
    min-height: 500px;
  }
  main .carousel .text {
    justify-content: space-between;
    height: 60vh;
    min-height: 400px;
    max-width: 50%;
  }
  main .carousel .text h1 {
    margin: 0px;
    font-size: 1.8rem;
  }
  main .carousel .text h2 {
    margin: 0px;
  }
  main .carousel .text ul {
    margin: 0px;
  }
  main .carousel .text ul li {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  main .carousel .text .carousel-links a {
    font-size: 1.5rem;
    padding: 15px 35px;
  }
  main .carousel .text .carousel-links a:first-of-type {
    margin-right: 35px;
  }
  footer .fo-left {
    width: 50%;
  }
  footer .fo-left div {
    margin-bottom: 50px;
  }
  footer .fo-left table tr td {
    padding-right: 25px;
  }
  footer .fo-right {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  header .menu ul li a {
    font-size: 1.5rem;
  }
  main .carousel .text h2 {
    font-size: 3rem;
  }
  main .carousel .kotol {
    padding-top: 0px;
    margin-top: 50px;
  }
  main .video-box h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
  }
  footer h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1440px) {
  main .carousel {
    background-position-y: -150px;
    min-height: 700px;
  }
  main .carousel .text {
    min-height: 460px;
  }
  main .carousel .text h2 {
    font-size: 3rem;
  }
  main .carousel .kotol {
    margin-top: 20px;
    min-height: 625px;
  }
  main .about-box {
    flex-direction: row;
    justify-content: space-between;
  }
  main .about-box div, main .about-box ul {
    max-width: 45%;
  }
}
@media (min-width: 1600px) {
  header {
    padding-left: 100px;
    padding-right: 100px;
  }
  header .logo img {
    width: 250px;
  }
  main .carousel {
    padding: 50px 100px 0px 100px;
  }
  main .carousel .text h2 {
    font-size: 3.5rem;
  }
  main .carousel .kotol {
    max-width: 45%;
  }
  main .video-box {
    padding: 0px 100px 100px 100px;
    margin: 0px;
  }
  main .video-box h2 {
    font-size: 4rem;
    line-height: 4rem;
  }
  main .about-box {
    padding: 0px 100px 100px 100px;
  }
  footer {
    padding: 100px 100px 0px 100px;
  }
  footer .copy {
    margin-top: 50px;
  }
  footer h2 {
    font-size: 4rem;
    margin-bottom: 50px;
  }
  footer .fo-left div {
    font-size: 1.5rem;
  }
  footer .fo-left table {
    font-size: 1.5rem;
  }
  footer .fo-right a {
    font-size: 1.8rem;
  }
}
@media (min-width: 1920px) {
  main .carousel {
    min-height: 950px;
  }
  main .carousel .text {
    height: 65vh;
    min-height: 670px;
  }
  main .carousel .text h1 {
    font-size: 3rem;
  }
  main .carousel .text h2 {
    font-size: 4.7rem;
  }
  main .carousel .text ul {
    padding-left: 33px;
  }
  main .carousel .text ul li {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
  main .carousel .text a {
    font-size: 1.8rem;
  }
  main .carousel .kotol {
    max-width: 50%;
    margin-top: 55px;
    min-height: 890px;
  }
}
@media (min-width: 2460px) {
  main .carousel {
    background-position-y: -220px;
    min-height: 1120px;
  }
  main .carousel .text {
    min-height: 780px;
  }
  main .carousel .kotol {
    max-width: 45%;
    min-height: 1011px;
  }
  main .video-box h2 {
    font-size: 6rem;
    line-height: 5.5rem;
  }
  footer h2 {
    font-size: 6rem;
    line-height: 5.5rem;
  }
}

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