@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

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

a {
    text-decoration: none;
}
p {
    text-align: justify !important;
}
.container {
    width: 100%;
    height: auto;
    padding: 0px 15px;
}

input,
select,
textarea {
    outline: none;
}

.header {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99;
}
.header .header__block {
    width: 100%;
    height: auto;
}
.header .header__block .header__top {
    width: 100%;
    height: 60px;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-bottom: 1px solid #d6d6d6;
    position: relative;
    z-index: 999;
}
.header .header__block .header__top .header__menu {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: space-between;
}
.header .header__block .header__top .header__menu span {
    width: 20px;
    height: 2px;
    margin: 2px 0px;
    transition-timing-function: ease;
    transition-duration: 0.15s;
    transition-property: transform;
    background-color: #39364e;
    border-radius: 0;
}
.header .header__block .header__top .header__menu.show span {
    position: absolute;
    top: 6px;
    transform: rotate(45deg);
}
.header .header__block .header__top .header__menu.show span:last-child {
    display: none;
}
.header .header__block .header__top .header__menu.show span:nth-child(2) {
    transform: rotate(135deg);
}
.header .header__block .header__top .header__logo img {
   height: 45px;
}
.header .header__block .header__top .header__language {
    width: 40px;
    height: auto;
    position: relative;
}
.header .header__block .header__top .header__language .hl__span {
    display: inline-block;
    padding-right: 10px;
    font-size: 16px;
}
.header .header__block .header__top .header__language .hl__span::before {
    content: ">";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%) rotate(90deg);
}
.header .header__block .header__top .header__language ul {
    display: none;
    width: 100%;
    height: auto;
    position: absolute;
    top: 30px;
    right: -10px;
    width: 200px;
    height: auto;
    background-color: #65656d;
    box-shadow: 2px 6px 13px 7px rgba(0, 0, 0, 0.15);
    z-index: 999;
}
.header .header__block .header__top .header__language ul.active {
    display: inline-block;
}
.header .header__block .header__top .header__language ul li {
    list-style: none;
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header .header__block .header__top .header__language ul li a {
    color: rgba(255, 255, 255, 0.8);
}
.header .header__block .header__top .header__language ul li:last-child {
    border: 0px;
}
.header .header__block .header__top .header__language ul li span {
    color: #c4a26e;
}
.header .header__block .header__top .header__language ul li.selected {
    display: inline-block;
}
.header .header__block .header__top .header__language ul li.selected {
    color: rgba(255, 255, 255, 0.4);
}
.header .header__block .header__action {
    width: 100%;
    height: auto;
    display: flex;
    position: relative;
    z-index: 99;
}
.header .header__block .header__action .header__action-single {
    
    height: 50px;
    background-color: #65656d;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.header .header__block .header__action .header__action-single:last-child {
    border: 0px;
}
.header .header__block .header__action .header__action-single img {
    max-height: 17px;
   
    filter: grayscale(100) invert(1);
}
.header .header__block .header__action .header__action-single span {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    font-family: "Noto Sans TC", sans-serif;
}
.header .header__block .header__nav {
    position: fixed;
    top: -110%;
    left: 0px;
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 20px 15px;
    box-shadow: 2px 6px 13px 7px rgba(0, 0, 0, 0.15);
    transition: 0.4s top ease-in-out;
}
.header .header__block .header__nav.active {
    top: 110px;
}
.header .header__block .header__nav ul li {
    list-style: none;
    width: 100%;
    height: auto;
    padding: 3px 0px;
}
.header .header__block .header__nav ul li.active a {
    font-weight: 600;
}
.header .header__block .header__nav ul li.active .submenu {
    max-height: 400px;
}
.header .header__block .header__nav ul li a {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    position: relative;
    font-family: "Noto Sans TC", sans-serif;
}
.header .header__block .header__nav ul li a.has_submenu::after {
    content: ">";
    font-family: "Poppins", sans-serif;
    position: absolute;
    transform: rotate(90deg);
    font-size: 18px;
    font-weight: 300;
    right: -15px;
    top: -4px;
}
.header .header__block .header__nav ul li .submenu {
    width: 100%;
    height: auto;
    max-height: 0px;
    position: relative;
    overflow: hidden;
    transition: 0.4s max-height ease-in, 0.2s max-height ease-out;
}
.header .header__block .header__nav ul li .submenu ul {
    padding-left: 10px;
}
.header .header__block .header__nav ul li .submenu ul li a {
    color: #000;
    font-size: 15px;
    font-weight: 300;
}

.slider {
    width: 100%;
    height: auto;
    min-height: 450px;
    background-image: url("../img/homepageimg.jpg");
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 109px;
}
.slider::before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, 0.25);
}
.slider .slider__block {
    position: relative;
    z-index: 1;
}
.slider .slider__block h3 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}
.slider .slider__block h5 {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    padding-top: 20px;
    text-transform: uppercase;
}
.slider .slider__block a {
    padding: 15px 35px;
    background-color: #c4a26e;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    display: inline-block;
    margin-top: 25px;
}

.section__title {
    width: 100%;
    height: auto;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}
.section__title.big__title::before {
    width: 320px;
}
.section__title::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    z-index: 1;
    height: 1px;
    background-color: #000;
}
.section__title h4 {
    font-size: 16px;
    font-weight: 500;
    font-family: "Noto Sans TC", sans-serif;
    color: #c4a26e;
    background-color: #fff;
    padding: 5px 10px;
    position: relative;
    z-index: 2;
}
.section__title h3 {
    font-family: "Poppins", serif;
    color: #39374d;
    font-weight: 400;
    font-family: Poppins;
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
    padding-top: 20px;
}

.section__back {
    width: 100%;
    height: auto;
    padding: 7px 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.section__back img {
    margin-right: 15px;
    width: 20px;
}
.section__back h4 {
    font-size: 15px;
    font-family: "Poppins", serif;
    color: #000000;
}

.section__text {
    width: 100%;
    height: auto;
    padding-top: 20px;
}
.section__text h5 {
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    text-transform: uppercase;
}
.section__text p {
    padding: 10px 0px;
    font-size: 14px;
    font-weight: 400;
    color: #4d4d4d;
}
.section__text a {
    padding: 10px 18px;
    width: 100%;
    margin: 15px 0px;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    background-color: #c4a26e;
}
.section__text ul li {
    list-style: none;
    font-size: 14px;
    font-weight: 400;
    color: #4d4d4d;
}

.section__image {
    width: 100%;
    height: 270px;
    padding-top: 15px;
}
.section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.about {
    width: 100%;
    height: auto;
    padding: 35px 0px;
}
.about .projects {
    width: 100%;
    height: auto;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about .projects .projects__title {
    padding: 15px 0px;
    width: 100%;
    height: auto;
}
.about .projects .projects__title h3 {
    font-size: 18px;
    font-family: "Poppins", serif;
    color: #000000;
}
.about .projects .projects__item {
    flex-basis: calc(50% - 5px);
    margin-bottom: 10px;
    height: 150px;
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
    cursor: pointer;
}
.about .projects .projects__item:hover .projects__item-hover {
    opacity: 1;
}
.about .projects .projects__item .projects__item-hover {
    background-color: #19324c75;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
    opacity: 0;
    transition: 0.2s opacity ease-in-out;
}
.about .projects .projects__item .projects__item-hover h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}
.about .projects .projects__item .projects__item-hover h5 {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.about .projects .projects__item .projects__item-hover a {
    position: absolute;
    left: auto;
    bottom: 15px;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
}

.sadrzaj__list {
    width: 100%;
    height: auto;
}
.sadrzaj__list.koraci__list .sadrzaj__list-item {
    height: 70px;
    padding-right: 35px;
}
.sadrzaj__list .sadrzaj__list-item {
    width: 100%;
    height: 50px;
    margin: 10px 0px;
    padding: 0px 20px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.sadrzaj__list .sadrzaj__list-item::after {
    content: ">";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #000;
    font-size: 18px;
}
.sadrzaj__list .sadrzaj__list-item span {
    font-size: 18px;
    color: #000000;
    font-family: "Poppins", serif;
}
.sadrzaj__list .sadrzaj__list-item:hover {
    background-color: #19324c;
    border: 1px solid #19324c;
}
.sadrzaj__list .sadrzaj__list-item:hover span {
    color: #fff;
}
.sadrzaj__list .sadrzaj__list-item:hover::after {
    color: #fff;
}

.apartments__list {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}
.apartments__list .apartments__item {
    width: 100%;
    height: auto;
    margin: 10px 0px;
}
.apartments__list .apartments__item.active .apartments__item-top {
    background-color: #19324c;
    border: 1px solid #19324c;
}
.apartments__list .apartments__item.active .apartments__item-top h4 {
    color: #fff;
}
.apartments__list .apartments__item.active .apartments__item-top::after {
    color: #fff;
}
.apartments__list .apartments__item.active .apartments__item-top::after {
    transform: translateY(-50%) rotate(90deg);
}
.apartments__list .apartments__item.active .apartments__item-content {
    max-height: 500px;
}
.apartments__list .apartments__item .apartments__item-top {
    width: 100%;
    height: 50px;
    padding: 0px 20px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.apartments__list .apartments__item .apartments__item-top h4 {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    font-family: "Poppins", serif;
}
.apartments__list .apartments__item .apartments__item-top::after {
    content: ">";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #000;
    font-size: 18px;
}
.apartments__list .apartments__item .apartments__item-content {
    width: 100%;
    height: auto;
    max-height: 0px;
    overflow: hidden;
    margin-top: -2px;
    text-align: center;
    transition: 0.3s max-height ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.apartments__list .apartments__item .apartments__item-content img {
    max-width: 100%;
    padding: 0px 15px;
}
.apartments__list .apartments__item .apartments__item-content h3 {
    color: #39374d;
    font-size: 22px;
    font-weight: 400;
    padding: 0px 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: "Poppins", serif;
}
.apartments__list .apartments__item .apartments__item-content h3 sup {
    font-size: 14px;
}
.apartments__list .apartments__button {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}
.apartments__list .apartments__button a {
    margin-top: 20px;
    width: 100%;
    height: 50px;
    background-color: #c4a26e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}

.contact {
    width: 100%;
    height: auto;
}
.contact.contact--bt {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact__list {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact__list ul li {
    width: 100%;
    height: auto;
    padding: 5px 0px;
    display: flex;
    align-items: center;
}
.contact__list ul li img {
    margin-right: 10px;
}
.contact__list ul li span {
    font-size: 16px;
    color: #000000;
    font-family: "Poppins", serif;
}

.contact__form {
    width: 100%;
    height: auto;
    padding: 30px 0px;
}
.contact__form form {
    width: 100%;
    height: auto;
}
.contact__form form input,
.contact__form form textarea {
    width: 100%;
    height: 50px;
    border: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(0, 0, 0, 0.02);
    padding: 15px;
    margin-bottom: 15px;
    font-family: "Poppins", serif;
    font-size: 16px;
    resize: none;
}
.contact__form form input:focus,
.contact__form form textarea:focus {
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.contact__form form textarea {
    height: 120px;
}
.contact__form form button {
    width: 100%;
    height: 50px;
    background-color: #c4a26e;
    color: #fff;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    border: 0px;
}

.benefits {
    width: 100%;
    height: auto;
    padding: 30px 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.benefits .benefits__list {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.benefits .benefits__list .benefits__item {
    flex-basis: 50%;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
}
.benefits .benefits__list .benefits__item img {
    margin-bottom: 10px;
    height: 40px;
    object-fit: contain;
}
.benefits .benefits__list .benefits__item h5 {
    font-family: "Poppins", serif;
    font-size: 14px;
    color: #000000;
    line-height: 1.2;
    height: 32px;
}

.footer {
    width: 100%;
    height: auto;
    margin-top: 30px;
    padding: 35px 0px;
    background-color: #35373b;
}
.footer .footer__list {
    width: 100%;
    height: auto;
}
.footer .footer__list ul li {
    list-style: none;
    padding: 3px 0px;
}
.footer .footer__list ul li a {
    font-size: 14px;
    font-family: "Noto Sans TC", sans-serif;
    color: rgba(255, 255, 255, 0.9);
}
.footer .footer__text {
    width: 100%;
    height: auto;
    padding-top: 30px;
}
.footer .footer__text h5 {
    font-family: "Poppins", serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
}
.footer .footer__text p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 20px;
}
.footer .footer__social {
    width: 100%;
    height: auto;
    padding-top: 30px;
}
.footer .footer__social h5 {
    font-family: "Poppins", serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
}
.footer .footer__social ul {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
}
.footer .footer__social ul li {
    display: inline-flex;
    margin-right: 10px;
}
.footer .footer__social ul li a img {
    width: 25px;
    filter: grayscale(1) invert(1);
}
.footer .footer__copyright {
    width: 100%;
    height: auto;
    padding-top: 15px;
    text-align: center;
    margin-top: 30px;
}
.footer .footer__copyright p {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

.sarajevo__page {
    width: 100%;
    height: auto;
    margin-top: 80px;
}

.gallery {
    width: 100%;
    height: auto;
    margin-top: 120px;
    padding-bottom: 50px;
}
.gallery .gallery__list {
    width: 100%;
    height: auto;
    padding: 30px 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.gallery .gallery__list .gallery__list-title {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}
.gallery .gallery__list .gallery__list-title h4 {
    font-size: 18px;
    font-family: "Poppins", serif;
    color: #000000;
}
.gallery .gallery__list .gallery__slides {
    width: 100%;
    height: 300px;
}
.gallery .gallery__list .gallery__slides .gallery__slides-slide {
    width: 100%;
    height: 300px;
}
.gallery .gallery__list .gallery__slides .gallery__slides-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery .gallery__list .gallery__slides-small {
    width: 100%;
    height: 70px;
    margin-top: 25px;
}
.gallery .gallery__list .gallery__slides-small .small__item {
    margin-right: 10px;
    height: 70px;
}
.gallery .gallery__list .gallery__slides-small .small__item img {
    width: 100%;
    height: 70px;
    object-fit: cover;
}

.news__list {
    width: 100%;
    height: auto;
    margin-top: 30px;
    text-align: center;
}
.news__list h4 {
    font-size: 16px;
    color: #000000;
    font-family: "Poppins", serif;
}

.interest {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999999;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.interest.active {
    display: flex;
}
.interest .interest__close {
    position: absolute;
    top: 15px;
    right: 15px;
}
.interest .interest__close img {
    width: 50px;
    filter: grayscale(1) invert(1);
}
.interest .interest__box {
    width: 100%;
    height: auto;
    max-height: 100%;
    overflow-y: auto;
}
.interest .interest__box h3 {
    font-size: 26px;
    color: #fff;
    font-family: "Poppins", serif;
}
.interest .interest__box p {
    font-size: 13px;
    color: #fff;
    padding: 15px 0px;
    font-family: "Noto Sans TC", sans-serif;
}
.interest .interest__box form {
    width: 100%;
    height: auto;
}
.interest .interest__box form input,
.interest .interest__box form textarea {
    width: 100%;
    height: 50px;
    border: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    background-color: rgba(255, 255, 255, 0.02);
    padding: 15px;
    margin-bottom: 15px;
    font-family: "Poppins", serif;
    font-size: 16px;
    resize: none;
}
.interest .interest__box form input:focus,
.interest .interest__box form textarea:focus {
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.interest .interest__box form textarea {
    height: 120px;
}
.interest .interest__box form button {
    width: 100%;
    height: 50px;
    background-color: #c4a26e;
    color: #fff;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    border: 0px;
}
.map {
    width: 100%;
    height: auto;
}
.map::before {
    content: "";
    background-color: #fff;
    z-index: 9;
    width: 100%;
    height: 60px;
    position: absolute;
    top: 0px;
    left: 0px;
}

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