/* @import url(https://fonts.googleapis.com/css?family=Roboto:400,300,500,400italic,300italic,500italic,700,700italic&subset=latin,latin-ext);

@import url(https://fonts.googleapis.com/css?family=Cantata+One&subset=latin,latin-ext);
@import url(https://fonts.googleapis.com/css?family=Montserrat&subset=latin,latin-ext); */

:root {
    --brown: #594838;
    --rosegold: linear-gradient(90deg, #DEC4AB 0%, #F8E1C2 50%, #DEC4AB 100%);
}

* {
    font-family: 'Montserrat', sans-serif;
    color: var(--brown);
}

a,
a:hover,
a:focus {
    color: var(--brown);
}

body {
    margin: 0;
    padding: 0;
    background: white;
}

strong {
    font-weight: 600;
}

::selection {
    background: #C9A680;
    color: #fff;
}

::-moz-selection {
    background: #C9A680;
    color: #fff;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    box-shadow: none !important;
    outline: none !important;
}

div:focus {
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cantata One', serif;
    color: #D5BDA3;
    font-weight: 400;
}

h2 {
    font-size: 3.5rem;
    position: relative;
}

#reserv h2 {
    font-size: 2rem;
}

h3 {
    font-size: 40px;
    line-height: 60px;
}

h4 {
    font-size: 25px;
}

a {
    transition: all 0.25s;
}

a:hover,
a:focus {
    text-decoration: none;
}

.bg {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.clear {
    clear: both;
}

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

/* BUTTONS */

.btn,
.btn:hover,
.btn:focus,
.btn:active {
    background: var(--rosegold);
    border: 1px solid var(--rosegold);
    color: var(--brown);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    box-shadow: none;
    border-radius: 0;
}

.btn-brown {
    background: var(--brown);
    color: white;
}

.btn-brown:hover,
.btn-brown:focus,
.btn-brown:active {
    background: #342A20;
    color: white;
}

.btn-light {
    background: transparent;
    color: #fff;
}

.separator {
    width: 80px;
    border-bottom: 2px solid var(--brown);
    margin: 15px 0 20px;
}

/* HEADER */

.navbar {
    padding-left: 50px;
    padding-right: 50px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFFFFFDD;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 4rem;
}

.navbar .nav-item {
    padding: 0 17px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.navbar .nav-item:last-child {
    padding-right: 0;
}

.navbar .nav-item .underline {
    border-bottom: 2px solid #C9A680;
    width: 0;
    opacity: 0;
    transition: all 0.4s;
}

.navbar .nav-item:hover .underline {
    width: 100%;
    opacity: 1;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0.25rem;
    color: #C9A680;
    font-weight: 600;
}

.navbar .dropdown-menu {
    background: #FFFFFFDD;
    margin-top: -2px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    padding: 30px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.navbar .dropdown-menu .col-md-3 {
    border-right: 1px solid #999;
    padding-left: 40px;
}

.navbar .dropdown-menu .col-md-3:last-child {
    border-right: none;
}

.navbar .dropdown-menu h3 {
    font-size: 1.75rem;
    color: #C9A680;
    margin-bottom: 1rem;
    line-height: 1;
}

.navbar .dropdown-menu .uline {
    width: 50px;
    border-bottom: 2px solid #C9A680;
    margin: 10px 0;
}

.navbar .dropdown-menu ul {
    padding: 0;
    margin: 15px 0 0 0;
    list-style: none;
}

.navbar .dropdown-menu ul li {
    margin-bottom: 1rem;
}

.navbar .dropdown-menu ul>li a {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 500;
}

.navbar .dropdown-menu ul>li a:hover {
    color: #C9A680;
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
}

/* FOOTER */

footer {
    background: #342A20;
    padding: 60px 0 20px;
}

footer p,
footer h5,
footer ul>li a {
    color: #fff;
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

footer h5 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

footer ul>li {
    margin-bottom: 0.625rem;
}

footer ul>li a:hover {
    color: #D5BDA3;
}

footer .content {
    border-top: 1px solid #fff;
    padding-top: 2rem;
    margin-top: 30px;
}

/* HOMEPAGE */

#homepageSlider .slider .swiper-slide {
    height: 750px;
    padding-left: 150px;
    display: flex;
    align-items: center;
}

#homepageSlider .slider .swiper-slide .content {
    max-width: 350px;
}

#homepageSlider .slider .swiper-slide .content .separator {
    margin: 30px 0;
    border-color: #000;
}

#homepageSlider .slider .swiper-slide .content h2 {
    color: var(--rosegold);
}

#homepageSlider .slider .swiper-slide .content p {
    color: #000;
}

#homepageSlider .slider .navs ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#homepageSlider .slider .navs ul>li {
    position: absolute;
    z-index: 1000;
    margin-top: -400px;
    background: #fff;
    padding: 10px 8px;
    transition: all 0.25s;
}

#homepageSlider .slider .navs ul>li svg {
    fill: var(--rosegold);
    width: 30px;
    height: 30px;
    transition: all 0.25s;
}

#homepageSlider .slider .navs ul>li:hover {
    transform: scale(1.1)
}

#homepageSlider .slider .navs ul>li.back {
    left: 15px;
}

#homepageSlider .slider .navs ul>li.next {
    right: 15px;
}

/* ÚJ HERO */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.9;
}

.hero .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brown);
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.hero .container img {
    display: block;
    height: 9rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.hero .container p {
    max-width: 500px;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    padding: 1.5rem 0 1rem;
    position: relative;
    color: #fff;
}

.hero .container p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 1.5px;
    background: white;
}

/* SERVICES */

#homePageServices {
    padding: 80px 0;
}

#homePageServices .separator {
    border-color: #D5BDA3;
}

#homePageServices .desc {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

#homePageServices .highlightedItem .inner {
    height: 460px;
}

#homePageServices .highlightedItem .inner .layer {
    background: #59483888;
    position: absolute;
    height: 100%;
    width: calc(100% - 30px);
    top: 0;
    left: 15px;
    padding: 40px;
    display: flex;
    align-items: flex-end;
    color: white;
}

#homePageServices .highlightedItem .inner .layer p,
#homePageServices .highlightedItem .inner .layer p strong {
    color: white;
}

#homePageServices .inner .separator {
    border-color: white;
}

#homePageServices .highlightedItem .inner .layer h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

#homePageServices .serviceItem {
    margin-top: 30px;
}

#homePageServices .serviceItem .inner {
    padding: 30px;
    min-height: 240px;
    position: relative;
    background-color: #59483888;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#homePageServices .serviceItem .inner h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0;
}

#homePageServices .serviceItem .inner p {
    color: white;
    margin-bottom: 0;
}

#homePageServices .serviceItem .inner .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
}

#homePageServices .serviceItem .inner .layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #59483888;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
}

#homePageServices .serviceItem .inner:hover .layer {
    opacity: 1;
}

#homepageBlog {
    padding: 80px 0;
}

#homepageBlog .separator {
    border-color: #D5BDA3;
}

#homepageBlog .item {
    padding: 0 30px;
}

#homepageBlog .item .inner .separator {
    border-color: var(--brown);
}

#homepageBlog .item .inner .bg {
    height: 200px;
}

#homepageBlog .item .inner .content {
    background: var(--rosegold);
    padding: 20px;
}

#homepageBlog .item .inner .content h4 {
    color: var(--brown);
}

#homepageBlog .item .inner .content strong {
    font-weight: 500;
}

#kapcsolat {
    background: var(--rosegold);
    padding: 80px 0;
}

#kapcsolat h2 {
    color: var(--brown);
}

#kapcsolat h2::after {
    background: var(--brown);
}

#kapcsolat .contactDatas h2 {
    color: #D5BDA3;
    font-size: 2rem;
    margin-bottom: 1rem;
}

#kapcsolat .contactDatas {
    background: white;
    padding: 50px;
    max-width: 440px;
    margin-left: 15px;
}

#kapcsolat .contactDatas h2::after {
    background: #D5BDA3;
}

#kapcsolat .desc {
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 2rem;
}

#kapcsolat .contactDatas p {
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 20px;
}

.form-control,
.form-control:active,
.form-control:focus {
    background: transparent;
    border: 1px solid var(--brown);
    border-radius: 0;
    color: var(--brown);
    box-shadow: none;
    padding: 0.75rem 1.25rem;
    height: auto;
}

.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--brown);
    opacity: 1;
    /* Firefox */
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff;
}

input[type="checkbox"] {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 10px;
    accent-color: var(--brown);
    background-color: transparent;
}

.form-check-label {
    padding-left: 1rem;
}

/* STATIC */

#subpageHeader {
    margin-top: 80px;
}

#subpageHeader h1 {
    color: var(--brown);
}

#subpageHeader,
#subpageHeader .col-12 {
    height: 60vh;
}

#subpageHeader .layer {
    background: #DEC4ABAA;
    position: absolute;
    height: 60vh;
    width: 40%;
}

#subpageHeader p {
    max-width: 460px;
    margin-top: 2rem;
    font-weight: 600;
}

#subpageHeader .layer .triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 60vh 0 0 60vh;
    border-color: transparent transparent transparent #DEC4ABAA;
    position: absolute;
    right: -60vh;
}

#static {
    padding: 100px 0;
}

#static h2 {
    margin: 30px 0;
    padding-bottom: 0;
}

#static h4 {
    color: #999;
    margin-top: 30px;
}

#priceList {
    padding-bottom: 100px;
}

#priceList .item {
    margin-top: 15px;
}

#beforeAfter {
    padding: 0 0 80px 0;
}


#beforeAfter .swiper-slide .inner {
    height: 400px;
    display: flex;
    align-items: flex-end;
}

#beforeAfter .swiper-slide .inner .text {
    width: 100%;
}

#beforeAfter .swiper-slide .inner .text p {
    background: rgba(37, 58, 130, 0.7);
    font-family: 'Cantata One', serif;
    padding: 5px 15px;
    margin-bottom: 0;
}

#beforeAfter .navs ul>li {
    display: inline;
    list-style: none;
    margin: 0 8px;
}

#beforeAfter .navs .back,
#beforeAfter .navs .next {
    padding: 7px 5px 8px 7px;
    border: 1px solid #fff;
}


/* BLOG LIST */

.newestBlog {
    min-height: 500px;
}

.newestBlog h2 {
    font-size: 2rem;
    color: white;
}

.newestBlog .separator {
    border-color: white;
}

.newestBlog .layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 500px;
    background: #59483888;
    padding: 50px;
    display: flex;
    align-items: center;
    color: white;
}

.newestBlog .layer p,
.newestBlog .layer strong {
    color: white;
}

.newestBlog .layer div {
    width: 40%;
}

/* GALLERY */

.gallery {
    padding: 50px 0 100px;
}

.gallery h2 {
    margin-top: 50px;
}

.gallery .swiper-wrapper {
    overflow: hidden;
}

.gallery .swiper-slide {
    height: 400px
}

.gallery .swiper-slide .layer {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #00000088;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    opacity: 0;
}

.gallery .swiper-slide:hover .layer {
    opacity: 1;
}

.gallery .swiper-slide .layer svg {
    height: 40px;
    width: 40px;
    transition: all 0.25s;
}

.gallery .swiper-slide .layer a:hover {
    color: #fff;
}

.gallery .swiper-slide .layer svg:hover {
    color: #fff;
    height: 50px;
    width: 50px;
}

.gallery .navs ul {
    padding: 0;
}

.gallery .navs ul>li {
    display: inline;
    list-style: none;
    margin: 0 8px;
}

.gallery .navs .back,
.gallery .navs .next {
    position: absolute;
    padding: 7px;
    border: 1px solid #fff;
}

.gallery .navs .next {
    position: absolute;
    right: 15px;
}

/* RESERV */

#reserv {
    padding: 110px 0;
}

.calendarSlider,
.sericeSelector {
    border: 1px solid #fff;
}

.calendarSlider .navs svg {
    height: 20px;
    width: 20px;
}

.calendarSlider .navs .back,
.calendarSlider .navs .next {
    position: absolute;
    margin-top: 24px;
    z-index: 80;
}

.calendarSlider .navs .back {
    left: 15px;
}

.calendarSlider .navs .next {
    right: 15px;
}

.calendarSlider .table thead td {
    color: #999;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    /* width: 20%; */
    overflow-wrap: anywhere;
}

.calendarSlider .table tbody td {
    font-family: 'Cantata One', serif;
    text-align: center;
    color: #fff;
    border: none;
}

.calendarSlider .table tbody td.lastmounthday {
    color: #999;
}

.calendarSlider .table tbody td a {
    border: 1px solid #fff;
    padding: 5px;
}

.calendarSlider .table tbody td.active a,
.calendarSlider .table tbody td a:hover {
    color: #fff;
    background: var(--rosegold);
    border-color: var(--rosegold);
}

.sericeSelector {
    padding: 30px 45px;
}

.sericeSelector ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sericeSelector ul li {
    margin-bottom: 8px;
    border: 1px solid #fff;
    /* padding: 5px; */
    text-align: center;
}

.sericeSelector ul li a {
    color: #999;
    display: block;
    margin: 5px;
}

.sericeSelector ul li:hover {
    background: #fff;
}

.sericeSelector ul li:hover a {
    color: var(--rosegold)
}

@media (max-width: 767px) {

    /* #mobileSlider {
        margin-top: 85px;
    }

    #mobileSlider .container {
        padding: 0;
    }

    #mobileSlider .bg {
        height: 300px;
    }

    #mobileSlider .content {
        background: #f2f2f2;
        min-height: 250px;
        padding: 30px;
    }

    #mobileSlider .content img,
    #mobileSlider .content .separator {
        display: none;
    }

    #mobileSlider .content h2 {
        color: var(--rosegold);
    }

    #mobileSlider .content p {
        color: #000;
    } */

    h2 {
        font-size: 2rem;
        padding-bottom: 0;
    }

    .hero {
        height: 70vh;
    }

    .hero .container img {
        height: 4rem;
    }

    .hero .container p {
        font-size: 1rem;
        padding: 1rem 0 0.5rem;
    }

    #homePageServices {
        padding: 40px 15px;
    }

    #homePageServices .desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    #homePageServices .container {
        padding: 0;
    }

    #homePageServices .highlightedItem,
    #homepageBlog .item {
        margin-bottom: 30px;
    }

    #homePageServices .highlightedItem:last-of-type {
        margin-bottom: 0;
    }

    #homePageServices .highlightedItem .inner {
        height: auto;
        aspect-ratio: 4/5;
    }

    #homePageServices .serviceItem .layer .btn {
        width: 100%;
        height: 100%;
    }

    #kapcsolat {
        padding: 40px 0;
    }

    #kapcsolat .contactDatas {
        max-width: calc(100% - 30px);
        margin-bottom: 50px;
        padding: 25px;
        margin-top: 30px !important;
    }

    #kapcsolat .contactDatas h2 {
        font-size: 1.5rem;
    }

    footer {
        text-align: center;
        padding: 40px 15px 20px;
    }

    footer h5 {
        margin-top: 30px;
    }

    #subpageHeader {
        margin-top: 60px;
    }

    #subpageHeader,
    #subpageHeader .col-12,
    #subpageHeader .layer {
        height: 240px;
    }

    #subpageHeader .layer {
        width: 10%;
    }

    #subpageHeader .layer .triangle {
        border-width: 240px 0 0 240px;
        right: -240px;
    }

    #subpageHeader h1 {
        font-size: 25px;
        max-width: 35%;
        margin-top: 180px;
    }

    #subpageHeader p,
    #subpageHeader .separator {
        display: none;
    }

    #static {
        padding: 60px 0;
    }

    #static h2 {
        font-size: 1.5rem;
        line-height: 2rem;
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }

    #static h3 {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }

    #homepageBlog .item {
        margin-bottom: 20px !important;
    }

    .newestBlog {
        min-height: auto;
    }

    .newestBlog h2 {
        font-size: 1.5rem;
    }

    .newestBlog .layer {
        padding: 20px;
        min-height: auto;
        position: static;
        margin-left: -15px;
        width: calc(100% + 30px);
    }

    .newestBlog .layer div {
        width: 100%;
    }

}

@media (min-width: 768px) and (max-width: 992px) {}

@media (min-width: 993px) and (max-width: 1200px) {}

@media (min-width: 1201px) and (max-width: 1366px) {
    .navbar .nav-item {
        padding: 0px 6px;
    }

    .navbar-brand img {
        max-width: 180px;
    }

    .navbar .w-75 {
        width: 90% !important;
    }

    #homepageSlider .slider .swiper-slide {
        height: 550px;
        padding-left: 50px;
    }
}

@media (min-width: 1367px) {}