@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
}

.container {
    width: 1280px;
    max-width: 100%;
    height: auto;
    margin: 0px auto;
}

a {
    text-decoration: none;
}

.header {
    width: 100%;
    height: auto;
}
.header .header__top {
    width: 100%;
    height: auto;
    background-color: #017a6b;
}
.header .header__top .header__top-block {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .header__top .header__top-left ul {
    display: flex;
    align-items: center;
}
.header .header__top .header__top-left ul li {
    margin-right: 10px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    align-items: center;
}
.header .header__top .header__top-left ul li a {
    color: #fff;
}
.header .header__top .header__top-left ul li img {
    height: 25px;
    object-fit: contain;
}
.header .header__top .header__top-right {
    display: inline-flex;
    align-items: center;
}
.header .header__top .header__top-right ul {
    display: inline-flex;
    align-items: center;
}
.header .header__top .header__top-right ul li {
    display: inline-flex;
    margin-left: 10px;
}
.header .header__top .header__top-right ul li a {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}
.header .header__top .header__top-right ul li a:hover {
    color: #000;
}
.header .header__top .header__top-right ul li img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    object-fit: contain;
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(113deg)
        brightness(119%) contrast(117%);
}
.header .header__top .header__top-right ul li img:hover {
    filter: invert(19%) sepia(53%) saturate(5997%) hue-rotate(341deg)
        brightness(88%) contrast(98%);
}
.header .header__top .header__top-right form input {
    width: 200px;
    height: 30px;
    border: 1px solid #d7d7d7;
    padding-left: 10px;
    margin-left: 15px;
    border-radius: 3px;
}
.header .header__block {
    width: 100%;
    height: auto;
    padding: 30px 0px;
    border-bottom: 1px solid #e9e9e9;
}
.header .header__block .header__block-inside {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .header__block .header__block-inside .header__logo h3 {
    font-size: 24px;
    font-weight: 900;
    color: #282828;
}
.header .header__block .header__block-inside .header__logo img {
    height: 50px;
}
.header .header__block .header__block-inside .header__hamb {
    width: 50px;
    height: auto;
    display: flex;
    flex-direction: column;
    display: none;
}
.header .header__block .header__block-inside .header__hamb span {
    display: inline-flex;
    width: 100%;
    height: 6px;
    background-color: #0d090a;
    margin-bottom: 10px;
}
.header .header__block .header__block-inside .header__hamb span:last-child {
    margin-bottom: 0px;
}
.header .header__block .header__block-inside .header__menu .header__menu-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 2px solid #000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.header .header__block .header__block-inside .header__menu ul li {
    display: inline-flex;
    margin-left: 10px;
    position: relative;
    z-index: 9999;
    padding: 10px 0px;
}
.header
    .header__block
    .header__block-inside
    .header__menu
    ul
    li:hover
    > ul.submenu {
    display: block;
}
.header .header__block .header__block-inside .header__menu ul li ul.submenu {
    position: absolute;
    top: 40px;
    left: 0px;
    width: 180px;
    height: auto;
    background-color: #017a6b;
    border-radius: 3px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
    display: none;
}
.header .header__block .header__block-inside .header__menu ul li ul.submenu li {
    position: relative;
    width: 100%;
    height: auto;
    padding: 10px 15px;
    margin: 0px;
    font-size: 14px;
    color: #fff;
}
.header
    .header__block
    .header__block-inside
    .header__menu
    ul
    li
    ul.submenu
    li
    a {
    color: #fff;
}
.header
    .header__block
    .header__block-inside
    .header__menu
    ul
    li
    ul.submenu
    li:hover
    > a {
    color: #c29969;
}
.header
    .header__block
    .header__block-inside
    .header__menu
    ul
    li
    ul.submenu
    li:hover
    > ul.subsubmenu {
    display: block;
}
.header
    .header__block
    .header__block-inside
    .header__menu
    ul
    li
    ul.submenu
    li
    ul.subsubmenu {
    position: absolute;
    top: 0px;
    left: 100%;
    width: auto;
    height: auto;
    background-color: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    display: none;
    margin: 0px;
}
.header
    .header__block
    .header__block-inside
    .header__menu
    ul
    li
    ul.submenu
    li
    ul.subsubmenu
    li
    a {
    color: #000;
}
.header
    .header__block
    .header__block-inside
    .header__menu
    ul
    li
    ul.submenu
    li
    ul.subsubmenu
    li:hover
    > a {
    color: #017a6b;
}
.header
    .header__block
    .header__block-inside
    .header__menu
    ul
    li
    ul.submenu
    li
    ul.subsubmenu
    li {
    margin: 0px;
    position: relative;
    width: 100%;
    height: auto;
    padding: 10px 15px;
    font-size: 14px;
}
.header .header__block .header__block-inside .header__menu ul li a {
    font-size: 16px;
    font-weight: 600;
    color: #282828;
    position: relative;
    padding-right: 20px;
}
.header .header__block .header__block-inside .header__menu ul li a:hover {
    color: #017a6b;
}

.slider {
    width: 100%;
    height: auto;
}
.slider .slider__items {
    width: 100%;
    height: auto;
    position: relative;
}
.slider .slider__items .slick-dots {
    position: absolute;
    left: 50%;
    bottom: 75px;
    transform: translateX(-50%);
    display: inline-flex;
}
.slider .slider__items .slick-dots li {
    margin: 0px 5px;
    list-style: none;
}
.slider .slider__items .slick-dots li button {
    text-indent: -9999px;
    width: 20px;
    height: 20px;
    background-color: #282828;
    border: 0px;
}
.slider .slider__items .slick-dots li.slick-active button {
    background-color: #017a6b;
}
.slider .slider__items .slider__item {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: 50% 50%;
}
.slider .slider__items .slider__item .slider__item-block {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.slider .slider__items .slider__item .slider__item-block .slider__item-content {
    width: 100%;
    max-width: 420px;
    padding: 35px;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.slider
    .slider__items
    .slider__item
    .slider__item-block
    .slider__item-content
    h3 {
    font-size: 30px;
    font-weight: 700;
    color: #017a6b;
}
.slider
    .slider__items
    .slider__item
    .slider__item-block
    .slider__item-content
    h4 {
    font-size: 18px;
    font-weight: 400;
    color: #017a6b;
    padding-top: 10px;
    display: inline-flex;
    align-items: center;
}
.slider
    .slider__items
    .slider__item
    .slider__item-block
    .slider__item-content
    h4
    img {
    margin-right: 10px;
    height: 20px;
    filter: invert(23%) sepia(60%) saturate(1249%) hue-rotate(297deg)
        brightness(93%) contrast(91%);
}
.slider
    .slider__items
    .slider__item
    .slider__item-block
    .slider__item-content
    .slider__item-price {
    width: 100%;
    height: auto;
    padding-top: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.slider
    .slider__items
    .slider__item
    .slider__item-block
    .slider__item-content
    .slider__item-price
    h5 {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    padding: 10px;
    background-color: #017a6b;
    border-radius: 3px;
}
.slider
    .slider__items
    .slider__item
    .slider__item-block
    .slider__item-content
    .slider__item-price
    a {
    padding: 8px 20px;
    border-radius: 3px;
    border: 1px solid #017a6b;
    font-size: 16px;
    font-weight: 600;
    color: #017a6b;
}
.slider
    .slider__items
    .slider__item
    .slider__item-block
    .slider__item-content
    .slider__item-price
    a:hover {
    background-color: #017a6b;
    color: #fff;
}

.popular {
    width: 100%;
    height: auto;
    padding-top: 50px;
}
.popular .popular__title {
    width: 100%;
    height: auto;
}
.popular .popular__title h3 {
    font-size: 30px;
    font-weight: 600;
    color: #0d090a;
}
.popular .popular__block {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 35px;
}
.popular .popular__block .popular__item {
    width: calc(25% - 20px);
    height: 350px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.popular .popular__block .popular__item::after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
}
.popular .popular__block .popular__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popular .popular__block .popular__item:hover .popular__item-content {
    transform: translateY(0px);
}
.popular .popular__block .popular__item:hover .popular__item-content h4 {
    color: #017a6b;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}
.popular .popular__block .popular__item .popular__item-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    position: absolute;
    left: 0px;
    bottom: 0px;
    padding: 20px;
    transform: translateY(70px);
    z-index: 2;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}
.popular .popular__block .popular__item .popular__item-content h4 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}
.popular .popular__block .popular__item .popular__item-content p {
    font-size: 14px;
    color: #fff;
}
.popular .popular__block .popular__item .popular__item-content a {
    width: 100%;
    height: 50px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    margin-top: 15px;
}
.popular .popular__block .popular__item .popular__item-content a:hover {
    color: #017a6b;
    background-color: #fff;
}

.icon-white {
    filter: invert(99%) sepia(99%) saturate(0%) hue-rotate(9deg)
        brightness(113%) contrast(100%);
}

.offer {
    width: 100%;
    height: auto;
    padding-top: 50px;
}
.offer .offer__title {
    width: 100%;
    height: auto;
}
.offer .offer__title h3 {
    font-size: 30px;
    font-weight: 600;
    color: #0d090a;
}
.offer.offer__multiple .offer__block {
    flex-wrap: wrap;
}
.offer.offer__multiple .offer__block .offer__item {
    margin-bottom: 30px;
    position: relative;
}
.offer.offer__multiple .offer__block .offer__item .featured__row {
    height: 40px;
    background-color: #c29969;
    color: #0d090a;
    z-index: 9999;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.offer .offer__block {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    display: flex;
    /* justify-content: space-between; */
    padding-top: 30px;
}
.offer .offer__block .offer__item {
    width: calc(33.33% - 20px);
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}
.offer .offer__block .offer__item::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
    transition: 0.2s background-color ease-in-out;
}
.offer .offer__block .offer__item:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
}


.offer .offer__block .offer__item:hover .offer__item-content h3 {
    color: #017a6b;
}
.offer .offer__block .offer__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.offer .offer__block .offer__item .offer__item-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}
.offer .offer__block .offer__item .offer__item-content h3 {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    color: #fff;
}
.offer .offer__block .offer__item .offer__item-content h4 {
    font-size: 16px;
    color: #fff;
 
    font-weight: bold;
    padding-top: 5px;
}
.offer .offer__block .offer__item .offer__item-content .offer__item-info {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: 0px;
    bottom: 0px;
    padding: 20px;
}
.offer
    .offer__block
    .offer__item
    .offer__item-content
    .offer__item-info
    .offer__item-short {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.offer
    .offer__block
    .offer__item
    .offer__item-content
    .offer__item-info
    .offer__item-short
    .offer__item-icons {
    display: flex;
}
.offer
    .offer__block
    .offer__item
    .offer__item-content
    .offer__item-info
    .offer__item-short
    .offer__item-icons
    span {
    color: #fff;
    font-size: 16px;
    margin: 0px 7px;
}
.offer
    .offer__block
    .offer__item
    .offer__item-content
    .offer__item-info
    .offer__item-short
    .offer__item-icons
    img {
    height: 20px;
    width: 20px;
    object-fit: contain;
}
.offer
    .offer__block
    .offer__item
    .offer__item-content
    .offer__item-info
    .offer__item-short
    p {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.offer
    .offer__block
    .offer__item
    .offer__item-content
    .offer__item-info
    .offer__item-price
    h4 {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
}

.whyus {
    width: 100%;
    height: auto;
    background-color: #017a6b;
    padding: 20px 0px;
    margin: 50px 0px;
}
.whyus .whyus__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.whyus .whyus__block .whyus__item {
    width: 25%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}
.whyus .whyus__block .whyus__item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
}
.whyus .whyus__block .whyus__item h4 {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}
.whyus .whyus__block .whyus__item p {
    font-size: 14px;
    font-weight: 400;
    padding-top: 10px;
    color: #fff;
}

.footer {
    width: 100%;
    height: auto;
    padding: 35px 0px;
}
.footer .footer__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
}
.footer .footer__block .footer__logo {
    width: 40%;
    height: auto;
}
.footer .footer__block .footer__logo h3 {
    font-size: 24px;
    font-weight: 900;
    color: #282828;
}
.footer .footer__block .footer__logo p {
    font-size: 16px;
    line-height: 29px;
    font-weight: 300;
    color: #000;
    padding-top: 20px;
}
.footer .footer__block .footer__logo .footer__social {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    padding-top: 35px;
}
.footer .footer__block .footer__logo .footer__social img {
    height: 30px;
    object-fit: contain;
    margin-right: 10px;
}
.footer .footer__block .footer__list {
    width: 25%;
    height: auto;
    padding-left: 50px;
}
.footer .footer__block .footer__list h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0d090a;
    padding-bottom: 20px;
}
.footer .footer__block .footer__list ul li {
    list-style: none;
    padding: 5px 0px;
    font-weight: 300 !important;
}
.footer .footer__block .footer__list ul li a {
    font-size: 16px;
    font-weight: 300;
    color: #0d090a;
}
.footer .footer__block .footer__list ul li a:hover {
    color: #017a6b;
}

.copy {
    width: 100%;
    height: auto;
    padding: 15px 0px;
    border-top: 1px solid #e9e9e9;
    display: flex;
    justify-content: center;
}
.copy p {
    font-size: 16px;
    color: #0d090a;
    font-weight: 300;
}

.category {
    width: 100%;
    height: auto;
    min-height: 420px;
    background-position: 50% 50%;
    background-size: cover;
    display: flex;
    padding: 20px 0px;
    position: relative;
}
.category::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.category .category__block {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}
.category .category__block .category__title {
    padding: 12px 40px;
    border-radius: 2px;
    display: inline-flex;
    font-size: 20px;
    color: #fff;
    background-color: #017a6b;
}

.filter {
    width: 100%;
    height: auto;
    padding-top: 50px;
}
.filter .filter__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.filter .filter__block .filter__box {
    width: calc(25% - 10px);
    height: auto;
}
.filter .filter__block .filter__box label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.filter .filter__block .filter__box input,
.filter .filter__block .filter__box select {
    width: 100%;
    height: auto;
    min-height: 45px;
    margin-top: 10px;
    border-radius: 3px;
    border: 1px solid #e9e9e9;
    padding-left: 10px;
}
.filter .filter__block .filter__box button {
    width: 100%;
    height: auto;
    min-height: 45px;
    margin-top: 32px;
    border-radius: 3px;
    border: 0px;
    background-color: #017a6b;
    color: #fff;
    font-size: 14px;
}
.filter
    .filter__block
    .filter__box
    .select2-container--default
    .select2-selection--multiple {
    height: auto;
    width: 100%;
    min-height: 45px;
    margin-top: 10px;
    border-radius: 3px;
    border: 1px solid #e9e9e9;
    padding-left: 10px;
}

.single {
    width: 100%;
    height: auto;
    padding-top: 50px;
}
.single .single__images {
    width: 100%;
    height: auto;
    padding: 15px 0px;
    display: flex;
    flex-wrap: wrap;
}
.single .single__images .single__image {
    width: 150px;
    height: 120px;
    margin: 10px;
    border: 3px solid #282828;
    position: relative;
}
.single .single__images .single__image .dots {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
    top: 0px;
    left: 0px;
}
.single .single__images .single__image .dots span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0px 5px;
}
.single .single__images .single__image:hover {
    border: 3px solid #017a6b;
}
.single .single__images .single__image a {
    width: 100%;
    height: 100%;
}
.single .single__images .single__image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single .single__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
}
.single .single__block .single__content {
    width: 100%;
    height: auto;
    padding-right: 35px;
}
.single .single__block .single__content p {
    font-size: 18px;
    color: #00000090;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 20px;
}
.single .single__block .single__content ul {
    padding-left: 15px;
}
.single .single__block .single__content ul li {
    font-size: 18px;
    padding: 3px 0px;
    color: #00000090;
}
.single .single__block .single__content table {
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin: 0px;
    padding: 0px;
    border-spacing: 0px;
    margin: 20px 0px;
}
.single .single__block .single__content h4 {
    font-size: 18px;
    margin: 10px 0px;
}
.single .single__block .single__content td {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    margin: 0px;
    padding: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
}
.single .single__block .single__content td:last-child {
    border-right: 0px;
}
.single .single__block .single__content tr {
    margin: 0px;
    padding: 0px;
}
.single .single__block .single__content .book__now {
    width: 100%;
    height: auto;
    display: inline-flex;
    margin-top: 30px;
    padding: 15px 50px;
    border-radius: 3px;
    background-color: #017a6b;
    align-items: center;
}
.single .single__block .single__content .book__now span {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.single .single__block .single__content .book__now a {
    background-color: #fff;
    border-radius: 3px;
    padding: 15px 35px;
    border-radius: 3px;
    font-size: 18px;
    font-weight: bold;
    color: #017a6b;
}
.single .single__block .single__sidebar {
    min-width: 250px;
    height: auto;
    min-height: 100%;
    position: sticky;
    top: 10px;
    right: 0px;
    margin-top: -200px;
    z-index: 99;
}
.single .single__block .single__sidebar .sidebar__list {
    width: 100%;
    height: auto;
    border-radius: 3px;
    position: sticky;
    top: 0px;
    left: 0px;
    overflow: hidden;
}
.single .single__block .single__sidebar .sidebar__list img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}
.single .single__block .single__sidebar .sidebar__list .sidebar__list-top {
    width: 100%;
    height: auto;
    padding: 15px;
    background-color: #017a6b;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.single
    .single__block
    .single__sidebar
    .sidebar__list
    .sidebar__list-top
    .slt__left {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}
.single
    .single__block
    .single__sidebar
    .sidebar__list
    .sidebar__list-top
    .slt__left
    span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: -10px;
}
.single
    .single__block
    .single__sidebar
    .sidebar__list
    .sidebar__list-top
    .slt__left
    h4 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}
.single
    .single__block
    .single__sidebar
    .sidebar__list
    .sidebar__list-top
    .slt__right
    a {
    padding: 9px 35px;
    border-radius: 3px;
    color: #fff;
    background-color: #c29969;
    font-size: 16px;
    font-weight: 600;
}
.single .single__block .single__sidebar .sidebar__list .sidebar__list-body {
    width: 100%;
    height: auto;
    background-color: #e9e9e9;
    padding: 15px;
}
.single .single__block .single__sidebar .sidebar__list .sidebar__list-body ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.single
    .single__block
    .single__sidebar
    .sidebar__list
    .sidebar__list-body
    ul
    li {
    list-style: none;
    width: 50%;
    height: 50px;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    background-color: #c29969;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.single
    .single__block
    .single__sidebar
    .sidebar__list
    .sidebar__list-body
    ul
    li
    img {
    margin-right: 5px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(211deg)
        brightness(110%) contrast(101%);
}
.single .single__block .single__sidebar .sidebar__list .sidebar__list-bottom {
    width: 100%;
    height: auto;
    background-color: #e9e9e9;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.single .single__block .single__sidebar .sidebar__list .sidebar__list-bottom a {
    width: 50%;
    height: auto;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    color: #282828;
}
.single
    .single__block
    .single__sidebar
    .sidebar__list
    .sidebar__list-bottom
    a
    img {
    margin-right: 5px;
}
.single
    .single__block
    .single__sidebar
    .sidebar__list
    .sidebar__list-bottom
    a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.single .single__block .single__tabs {
    width: 100%;
    height: auto;
    margin-top: 20px;
}
.single .single__block .single__tabs ul {
    display: flex;
    align-items: center;
    margin: 0px;
    padding: 0px;
    flex-wrap: wrap;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.single .single__block .single__tabs ul li {
    list-style: none;
    display: inline-flex;
    padding: 10px 20px;
    height: 50px;
    cursor: pointer;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.single .single__block .single__tabs ul li.active {
    border-bottom: 5px solid #017a6b;
}
.single .single__block .s__tab {
    width: 100%;
    height: auto;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 35px;
    display: none;
}
.single .single__block .s__tab.active {
    display: block;
}
.single .single__block .s__tab img,
.single .single__block .s__tab video {
    max-width: 100% !important;
}
.acco__images {
    width: 100%;
    height: auto;
    padding: 15px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.acco__images a {
    width: 129px;
    height: 120px;
    margin: 10px;
    border: 3px solid #282828;
}

.acco__images a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.booking {
    width: 100%;
    height: auto;
    margin-top: -60px;
    position: relative;
    z-index: 999;
}
.booking .booking__block {
    width: 100%;
    height: auto;
    padding: 0px 20px;
    border-radius: 3px;
    background-color: #fff;
    display: flex;
    border: 1px solid #d7d7d7;
    border-bottom: 5px solid #c29969;
}
.booking .booking__block form {
    width: 100%;
    height: auto;
    padding: 20px 0px;
    padding-right: 20px;
    border-right: 1px solid #d7d7d7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.booking .booking__block form .bb__group,
.booking .booking__block form .bb__button {
    width: calc(33.33% - 10px);
    height: auto;
}
.booking .booking__block form .bb__group select {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    border: 1px solid #d7d7d7;
    padding-left: 15px;
}
.booking .booking__block form .bb__button button {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    border: 0px;
    background-color: #017a6b;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}
.booking .booking__block form .bb__button button:hover {
    opacity: 0.8;
}

.booking .booking__block .bb__smjestaj {
    min-width: 250px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
}
.booking .booking__block .bb__smjestaj a {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-color: #c29969;
    border-radius: 3px;
}

.booking .booking__block .bb__smjestaj a:hover {
    opacity: 0.8;
}

.blog {
    width: 100%;
    height: auto;
    padding-top: 50px;
}
.blog .blog__title h3 {
    font-size: 40px;
    font-weight: bold;
    color: #017a6b;
}
.blog .blog__block {
    width: 100%;
    height: auto;
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
}
.blog .blog__block .blog__item {
    width: calc(33.33% - 20px);
    margin: 10px;
    height: auto;
    border: 1px solid #e9e9e9;
}
.blog .blog__block .blog__item .blog__image {
    width: 100%;
    height: 200px;
}
.blog .blog__block .blog__item .blog__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog .blog__block .blog__item .blog__content {
    width: 100%;
    height: auto;
    padding: 15px;
}
.blog .blog__block .blog__item .blog__content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0d090a;
}
.blog .blog__block .blog__item .blog__content p {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    padding: 10px 0px;
}
.blog .blog__block .blog__item .blog__content a {
    width: 100%;
    height: 40px;
    border-radius: 3px;
    font-size: 16px;
    background-color: #017a6b;
    align-items: center;
    justify-content: center;
    color: #fff;
    display: inline-flex;
}

.post {
    width: 100%;
    height: auto;
}
.post .post__image {
    width: 100%;
    height: auto;
    min-height: 450px;
    background-size: cover;
    background-position: 50% 50%;
}
.post .post__content {
    width: 100%;
    height: auto;
    padding-top: 50px;
}
.post .post__content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
.post .post__content p {
    padding: 10px 0px;
    font-size: 16px;
    color: #00000090;
}

.contact {
    width: 100%;
    height: auto;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact h4 {
    font-size: 30px;
    color: #000;
    padding-bottom: 30px;
}
.contact .contact__form {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
}
.contact .contact__form form input,
.contact .contact__form form textarea,
.contact .contact__form form button {
    width: 100%;
    height: 50px;
    border: 0px;
    border-radius: 3px;
    padding: 15px;
    margin: 5px 0px;
    border: 1px solid #d7d7d7;
}
.contact .contact__form form textarea {
    height: 150px;
}
.contact .contact__form form button {
    background-color: #017a6b;
    cursor: pointer;
    color: #fff;
}

.payment {
    width: 100%;
    height: auto;
    padding: 15px;
    border-top: 1px solid #e9e9e9;
}
.payment .payment__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.payment .payment__block .payment__item {
    margin: 0px 10px;
}
.payment .payment__block .payment__item img {
    max-height: 80px;
}

@media screen and (max-width: 1280px) {
    .container {
        padding: 0px 10px;
    }
}
@media screen and (max-width: 1080px) {
    .blog .blog__block .blog__item {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 960px) {
    .header .header__top .header__top-right form input {
        width: calc(100% - 20px);
    }
    .header .header__top .header__top-block .header__top-left {
        display: none;
    }
    .header .header__block .header__block-inside .header__hamb {
        display: flex;
    }
    .header .header__block .header__block-inside .header__menu ul li {
        display: flex;
        flex-direction: column;
        margin-left: 0;
    }
    .header .header__block .header__block-inside .header__menu ul li ul.submenu li ul.subsubmenu li {
        width: 100%;
    }
    .header .header__block .header__block-inside .header__menu ul li ul.submenu li ul.subsubmenu {
        display: flex;
        position: relative;
        width: calc(100% - 40px);
        margin-left: 20px;
        box-sizing: border-box;
        left: 0;
        flex-direction: column;
        display: flex;
        top: 10px;
    }
    .header .header__block .header__block-inside .header__menu ul li ul.submenu li ul.subsubmenu:last-child {
        margin-bottom: 15px;

    }
    .header .header__block .header__block-inside .header__menu ul li ul.submenu {
        width: 100%;
        top: 10px;
        bottom: 0;
    }
    .header .header__block .header__block-inside .header__menu ul li ul.submenu li {
        align-items: flex-start;
        flex-direction: column;
    }
    .header .header__block .header__block-inside .header__menu ul li ul.submenu {
        display: flex;
        position: relative;
        flex-direction: column;
    }
    .header .header__block .header__block-inside .header__menu ul li {
        height: fit-content !important;
    }
    .header .header__block .header__block-inside .header__menu {
        top: 0px;
        left: 0px;
        position: fixed;
        width: 100vw;
        box-sizing: border-box;
        height: 100vh;
        background-color: #fff;
        padding: 20px 20px;
        padding-top: 60px;
        overflow-y: auto;
        z-index: 999999999;
        display: none;
    }
    .header
        .header__block
        .header__block-inside
        .header__menu
        .header__menu-close {
        display: flex;
        font-size: 22px;
    }
    .header .header__block .header__block-inside .header__menu ul li {
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header .header__block .header__block-inside .header__menu ul li a {
        font-size: 18px;
    }

    .popular .popular__block {
        flex-wrap: wrap;
    }
    .popular .popular__block .popular__item {
        width: calc(50% - 20px);
        margin: 10px;
    }

    .offer .offer__block {
        flex-wrap: wrap;
    }
    .offer .offer__block .offer__item {
        width: 100%;
        margin: 20px 0px;
        height: 350px;
    }

    .whyus .whyus__block {
        flex-wrap: wrap;
    }
    .whyus .whyus__block .whyus__item {
        width: 50%;
        margin: 10px 0px;
    }

    .footer .footer__block {
        flex-wrap: wrap;
    }
    .footer .footer__block .footer__logo {
        width: 100%;
        margin-bottom: 20px;
    }
    .footer .footer__block .footer__list {
        width: 33.33%;
        padding-left: 0px;
    }

    .single .single__block {
        flex-wrap: wrap;
    }
    .single .single__block .single__content {
        padding-right: 0px;
        order: 2;
    }
    .single .single__block .single__sidebar {
        order: 1;
        width: 100%;
        position: relative;
        top: 0px;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 880px) {
    .filter .filter__block {
        flex-wrap: wrap;
    }
    .filter .filter__block .filter__box {
        width: calc(50% - 10px);
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 820px) {
    .booking .booking__block {
        flex-wrap: wrap;
    }
    .booking .booking__block form {
        border-right: 0px;
        padding-right: 0px;
    }
    .booking .booking__block .bb__smjestaj {
        min-width: 100%;
        margin-top: 0px;
        padding-left: 0px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 540px) {
    .single .single__block .single__content .book__now {
        flex-wrap: wrap;
        padding: 15px;
    }
    .single .single__block .single__content .book__now a {
        width: 100%;
        margin-top: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .blog .blog__block .blog__item {
        width: 100%;
        margin: 10px 0px;
    }

    .single .single__block .single__tabs ul li {
        width: 100%;
    }
}
@media screen and (max-width: 480px) {
    .popular .popular__block .popular__item {
        width: 100%;
    }

    .footer .footer__block .footer__list {
        width: 100%;
        margin-bottom: 20px;
    }

    .slider
        .slider__items
        .slider__item
        .slider__item-block
        .slider__item-content {
        width: 100%;
    }

    .booking .booking__block form {
        flex-wrap: wrap;
    }
    .booking .booking__block form .bb__group,
    .booking .booking__block form .bb__button {
        width: 100%;
        margin-bottom: 20px;
    }
    .booking .booking__block form .bb__button {
        margin-bottom: 0px;
    }
}
@media screen and (max-width: 420px) {
    .offer .offer__block .offer__item .offer__item-info {
        flex-wrap: wrap;
    }
    .offer .offer__block .offer__item .offer__item-info .offer__item-short {
        width: 100%;
    }
    .offer .offer__block .offer__item .offer__item-info .offer__item-price {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .filter .filter__block {
        flex-wrap: wrap;
    }
    .filter .filter__block .filter__box {
        width: 100%;
    }
}

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