/* SHARED */

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: rgb(50, 65, 88);
}

.custom-header {
    background-color: #f9f9f9;
    padding: 7px 15px;
    border-radius: 30px;
    font-weight: 700;
    margin: 15px;
    display: inline-block;
}

table th, table td {
    padding: 20px;
    font-size: 14px;
    font-weight: 500;
}

table tr:nth-child(even) {background: #f9f9f9}
table tr:nth-child(odd) {background: #fff}

#kosztydodatkoweform, #kosztydodatkoweform input {
    font-size: 1em !important;
}
#kosztydodatkoweform input {
    padding: 4px !important;
    margin-top: 4px;
    margin-bottom: 4px;
}

.kd-row:hover {
    background-color: #d7ecf2 !important;
}

.kd-row:nth-child(odd) {
    background-color: #f8f8f8;
}


@media (max-width: 400px) {

    #kosztydodatkoweform, #kosztydodatkoweform input {
        font-size: 0.9em !important;
    }

}

.nag {
    display: inline-block;
    padding: 7px 0;
    border-radius: 30px;
    font-weight: 700;
    margin: 40px 0 10px 0;
}

.text-center p {
    margin: 5px 0;
}

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

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

.text-center {
    text-align: center;
}

.bold {
    font-weight: 600;
}
.semi-bold {
    font-weight: 500;
}

.link {
    color: #64b1c6;
    text-decoration: none;
    font-weight: 500;
}

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

.space-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.wrap {
    flex-wrap: wrap;
}

.column {
    flex-direction: column;
}

.wrapper {
    margin: 0 auto;
    max-width: 1400px;
    padding: 15px;
}

.mini-wrapper {
    margin: 0 auto;
    max-width: 900px;
    padding: 0 20px;
}

.middle-wrapper {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.grey-background {
    background-color: rgb(249, 249, 249);
}

.caption {
    font-size: 12px
}

/* HEADER */

.top-header {
    background-color: #d6eef5;
    padding: 10px 0;
    font-size: 12px
}

.top-header a {
    color: rgb(50, 65, 88);
    text-decoration: none;
    margin: 0 5px;
    padding: 0 5px;
    font-weight: 500;
}

.top-header i {
    margin-right: 5px;
}

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

.menu ul li {
    display: inline-block;
    margin: 0 10px;
}

.menu a {
    text-decoration: none;
    color: rgb(50, 65, 88);
    font-size: 12px;
    font-weight: 700;
}

.flag {
    border-radius: 50%;
    margin: 0 5px;
}

.logo {
    padding: 10px 5px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu ul li.mobile-phone {
    display: none;
}

@media(min-width: 1201px) {

    .menu-toggle {
        display: none !important;
    }

    .phone-circle-btn {
        display: none !important;
    }

}

@media (max-width: 1200px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        z-index: 10;
        width: 100%;
        background-color: #fff;
    }

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

    .menu ul li {
        display: block;
        border-bottom: 1px solid #dedede;
    }

    .menu ul li a {
        display: block;
        padding: 12px;
        text-decoration: none;
    }

    .menu ul li:last-child {
        border-bottom: none;
    }

    .menu.active {
        display: block;
    }

    .menu.active ul {
        animation: slideDown 0.3s ease-out forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.menu ul .mobile-flags, .phone-circle-btn {
    display: none;
}

.circle-btn {
    border: 1px solid #d5d9dd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(50, 65, 88);
    margin: 0 5px;
}

@media (max-width: 600px) {
    .social-icon, .flags {
        display: none;
    }
    .circle-btn {
        display: flex;
    }
    .top-header {
        display: none;
    }
}

@media (max-width: 450px) {
    header .btn {
        display: none;
    }
    .top-header a {
        font-size: 10px
    }
    .mobile-flags {
        display: block !important;
        margin: 20px 0 !important;
        border-bottom: none !important;
    }
}

/* BTNS */

.btn {
    box-sizing: border-box;
    border: 1px solid rgb(213, 217, 221);
    padding: 10px 15px;
    border-radius: 14px;
    color: rgb(50, 65, 88);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin: 0 15px;
}

.blue-btn {
    box-sizing: border-box;
    background-color: #4e5b73;
    padding: 20px 25px;
    border-radius: 24px;
    color: white;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin: 0 15px;
}
.blue-btn-smaller {
    padding: 12px 18px;
    margin: 15px;
    background-color: #64b1c6;
}
.blue-btn:hover {
    background-color: rgb(50, 65, 88);
}

.btn i {
    margin-right: 10px;
}

.blue-btn i, .orange-btn i {
    margin-left: 10px;
}

.btn:hover {
    background-color: rgb(50, 65, 88);
    color: white;
    border-color: rgb(50, 65, 88);
}

.orange-btn {
    box-sizing: border-box;
    background-color: #fbb86b;
    padding: 20px 25px;
    border-radius: 24px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin: 15px 0;
}

.orange-btn:hover {
    background-color: #f7a65e;
}

.social-icon {
    font-size: 32px;
    margin: 5px;
    color: rgb(50, 65, 88);
}

.main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.icon-amenity {
    background-color: rgb(249, 249, 249);
    border-radius: 15px;
    margin: 10px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-section-btn {
    background-color: rgb(249, 249, 249);
    border: 1px solid rgb(249, 249, 249);
    border-radius: 30px;
    padding: 27px;
    margin: 15px;
    cursor: pointer;
    text-align: center;
    width: 250px;
    color: rgb(50, 65, 88);
    text-decoration: none;
}

.icon-section-btn:hover {
    border: 1px solid #73bacd;
    color : #73bacd !important;
}

/* CTA SECTION */

.cta-text {
    max-width: 800px;
    margin-top: 40px;
    text-align: center;
    line-height: 25px;
}

.cta-section {
    background-color: #e0f1f6;
    padding: 15px;
    border-radius: 15px;
    max-width: 1200px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

@media (max-width: 1100px) {
    .cta-section img {
        display: none;
    }
}

@media (max-width: 750px) {
    .cta-section h4 {
        display: none;
    }
    .cta-section {
        justify-content: center;
        padding: 15px 0;
    }



}



/* NEWS */

.news {
    background-color: rgb(249, 249, 249);
    padding: 40px 20px;
    margin: 20px 0;
}

.news .card {
    border-radius: 40px;
    width: 390px;
    background-color: #fff;
    padding-bottom: 30px;
}

.news .card img {
    width: 390px;
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
}

.card-info {
    padding: 0px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* PROCESS */

.process-text {
    width: 50%;
}

.process img {
    width: 50%;
    border-radius: 40px;
}

@media (max-width: 700px) {
    .process img, .prepayment-text {
        display: none;
    }
    .process-text {
        padding: 0 20px !important;
        width: 100%;
        text-align: center;
    }
}

/* ABOUT */

.about {
    margin-bottom: 40px;
}

.about img {
    border-radius: 50px;
}

.story-text {
    width: 50%;
    padding: 40px;
    box-sizing: border-box;
}

.story-text p {
    line-height: 28px;
    font-weight: 400;
}

.about-banner {
    background-color: #edfbfb;
    border-radius: 60px;
    font-size: 20px;
    font-weight: 500;
    padding: 40px;
    margin: 40px auto;
    line-height: 31px;
}

@media (max-width: 1500px) {
    .about img {
        border-radius: 40px !important;
        margin: 20px;
    }
}

@media (max-width: 1200px) {
    .about img {
        border-radius: 40px !important;
        margin: 20px;
    }
    .about .flex {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .story-text {
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 800px) {
    .about img {
        width: calc(100% - 40px) !important;
        height: 300px;
    }
}

/* GALLERY */

.gallery img {
    border-radius: 30px;
    margin: 10px;
}

.gallery h4 {
    margin: 7px 10px;
}

@media (max-width: 1370px) {
    .gallery img {
        width: calc(50% - 30px);
        height: 450px;
    }
}
@media (max-width: 1100px) {
    .gallery img {
        width: calc(100% - 40px);
        height: auto !important;
    }
}

/* CONTACT */

.contact h4 {
    font-weight: 600;
}

.contact-section > div {
    margin: 20px;
}

@media (max-width: 1200px) {
    .contact-section {
        flex-wrap: wrap;
    }
}

/* FOOTER */

.top-footer {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px 0;
}

.bottom-footer {
    font-size: 11px;
    background-color: rgb(249, 249, 249);
    margin-top: 20px;
    padding: 10px 40px;
}

@media (max-width: 930px) {
    .top-footer {
        flex-direction: column;
    }
    .top-footer div {
        margin: 10px 0;
    }
}

footer a {
    color: rgb(50, 65, 88);
}


/* SLIDER */

.mainSlider .swiper-wrapper {
    height: 650px;
}

.mainSlider .swiper-wrapper img{
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
    color: rgb(50, 65, 88);
}

.mainSlider .swiper-button-next, .mainSlider .swiper-button-prev {
    color: white;
}

.newsSlider, .poisSlider {
    max-width: 1400px;
    padding: 40px 30px 20px 30px;
}

@media (max-width: 1500px) {
    .newsSlider, .poisSlider {
        max-width: 100%;
        padding: 40px 0 20px 0;
    }
}

@media (max-width: 600px) {
    .news .card, .news .card img {
        width: 100%;
    }
    .swiper-button-next, .swiper-button-prev {
        color: white;
    }
    .mainSlider .swiper-wrapper {
        height: 400px;
    }
    .mainSlider .swiper-wrapper img{
        object-position: 50% -150px;
    }
}

.newsSlider .swiper-slide, .poisSlider .swiper-slide {
    display: flex;
    justify-content: center;
}

/* CUSTOM SELECT */

.custom-select {
    position: relative;
}

.selected, .option {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.options-container {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 10;
}

.hidden {
    display: none;
}

.custom-select .option:hover {
    background-color: #f2f2f2;
}

.custom-select img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.1);
}


@media (max-width: 1200px) {
    .wrapper {
        flex-wrap: wrap;
    }

}

@media (max-width: 900px) {
    .mini-wrapper {
        margin: 20px;
    }
}

.prices {
    margin-left: 300px;
}

@media (max-width: 950px) {
    .prices {
        margin-left: 0;
    }
}



.stepper .nav-tabs {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 40px 0;
    padding: 0;
}

.tab-content {
    padding: 20px;
}

.stepper .nav-tabs > li {
    width: 20%;
    display: inline-block;
    position: relative;
}

.stepper .nav-tabs > li:last-child{
    width: 40px;
}

.stepper .nav-tabs .bar {
    content: '';
    position: absolute;
    background: #f1f1f1;
    display: block;
    width: 100%;
    height: 5px;
    top: 20px;
    left: 20px;
    z-index: 1;
}

.stepper .nav-tabs > li.completed .bar {
    background: #64b1c6;
}

.stepper .nav-tabs [data-toggle='tab'] {
    width: 40px;
    height: 40px;
    margin: 20px auto;
    border-radius: 100%;
    border: none;
    padding: 0;
    color: #f1f1f1;
    line-height: 40px;
    font-size: 30px;
}

.stepper .nav-tabs > .active > [data-toggle='tab'] {
    color: #64b1c6;
    cursor: default;
    border: none;
}

.stepper .round-tab {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    border-radius: 25px;
    background: #fff;
    border: 2px solid #64b1c6;
    color: #64b1c6;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 24px;
}

.stepper .completed .round-tab::after {
    content: '✔';
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    display: block;
}

.stepper .active .round-tab {
    background: #fff;
    border: 2px solid #64b1c6;
}

.stepper  .completed .round-tab {
    background: #64b1c6;
}

.stepper .disabled .round-tab {
    background: #fff;
    color: #f1f1f1;
    border-color: #f1f1f1;
}

.tab-content img {
    height: 40px
}

.tab-content .icon-section-btn {
    background: rgb(249,249,249);
    background: linear-gradient(6deg, rgba(249,249,249,1) 0%, rgba(224,241,246,1) 70%, rgba(224,241,246,1) 100%);
}

.reservation-item {
    border-radius: 40px;
    padding: 30px;
    margin: 20px;
}

.reservation-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.parcel-desc {
    padding: 0 20px;
}

.parcel-desc a {
    display: block;
    padding-top: 10px;
}

.parcel-btn-sec {
    min-width: 200px;
    text-align: center;
}

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

.map-img {
    margin-left: -50px;
}

@media (max-width: 950px) {
    .reservation-item {
        flex-wrap: wrap;
    }
    .reservation-item .imgs {
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .reservation-item img {
        width: 130px;
        height: 130px;
    }
    .parcel-btn-sec {
        width: 100%;
        margin-top: 15px;
    }
}

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

.search-box {
    margin-top: 40px;
    padding: 30px;
    border-radius: 40px;
}

.search-box input {
    text-align: center;
}

.search-box label {
    line-height: 40px;
}

@media (max-width: 1200px) {
    .search-box {
        flex-direction: column;
    }
    .search-box input {
        margin-bottom: 10px;
    }

    .search-box .blue-btn {
        margin-top: 20px;
    }

}

input {
    font-family: "Montserrat", sans-serif;
    line-height: 50px;

    width: 220px;
    border-radius: 25px;
    border: 1px solid #dedede;
}

.parcel-details {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: start;
    padding: 20px;
}
.parcel-details > div {
    width: 50%;
    padding: 15px;
    box-sizing: border-box;
}

.parcel-details .map {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1);
}

.reservation-form {
    background-color: #ffffff;
    width: 100%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    padding: 30px;
}
.reservation-form input, .reservation-form textarea {
    font-family: "Montserrat", sans-serif;
    line-height: 45px;
    height: 45px;
    font-size: 18px;
    width: 100%;
    padding: 0 15px;
    margin: 7px 0;
    box-sizing: border-box;
    border-radius: 20px;
}

.reservation-form textarea {
    height: 150px;
    border: 1px solid #dedede;
}
.reservation-form .orange-btn {
    border: none;
    font-size: 24px;
    letter-spacing: 3px;
}

.reservation-form .ui-datepicker-calendar {
    margin: 30px auto;
}

.reservation-form .ui-datepicker-next {
    float: right;
}


.ui-datepicker-next span, .ui-datepicker-prev span {
    display: none !important;
}

.ui-datepicker-prev, .ui-datepicker-next {
    position: relative;
    display: inline-block;
    border: 2px solid #64b1c6;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
}

.ui-datepicker-prev:hover, .ui-datepicker-next:hover {
    background-color: #e0f1f6;
}

.ui-datepicker-next::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: 5px;
    font-size: 30px;
    line-height: 0;
}

.ui-datepicker-prev::after {
    content: '←';
    position: absolute;
    top: 50%;
    left: 5px;
    font-size: 30px;
    line-height: 0;
}

.ui-datepicker-title {
    text-align: center;
    font-weight: 500;
    margin: 15px;
}

.ui-state-default {
    text-decoration: none;
    color: #64b1c6
}

select.ui-datepicker-month {
    line-height: 30px;
    height: 30px;
    font-size: 18px;
    width: 100px;
    border-radius: 25px;
    border: 1px solid #dedede;
    text-align: center;
}

.ui-datepicker-calendar th, .ui-datepicker-calendar td {
    padding: 0px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}




.big-list li {
    margin: 10px 0;
    line-height: 30px;
    font-weight: 500;
}

.small-list li {
    margin: 7px 0;
    line-height: 20px;
    font-size: 14px;
}

@media (max-width: 1000px) {
    .parcel-details {
        flex-direction: column;
    }
    .parcel-details > div {
        width: 100%;
    }

}

@media (max-width: 400px) {
    .parcel-details, .tab-content {
        padding: 15px 0;
    }
    .reservation-form {
        padding: 15px;
    }
    .ui-datepicker-calendar th, .ui-datepicker-calendar td {
        padding: 10px;
        width: 12px;
        font-size: 14px;
        font-weight: 500;
    }
}

