/*** Project Big custom design ***/

@font-face {
    font-family: 'Tesla';
    src: url('/wp-content/themes/merin-group-website/static/fonts/Tesla.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DarbySansPoster';
    src: url('/wp-content/themes/merin-group-website/static/fonts/DarbySansPoster-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DarbySansPoster';
    src: url('/wp-content/themes/merin-group-website/static/fonts/DarbySansPoster-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'SweetSansPro';
    src: url('/wp-content/themes/merin-group-website/static/fonts/SweetSansProRegular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SweetSansPro';
    src: url('/wp-content/themes/merin-group-website/static/fonts/SweetSansProMedium.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}




.container {
    color: #887774;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #887774;
    font-family: 'DarbySansPoster', sans-serif !important;
    font-weight: normal;
    text-transform: uppercase;
}




.project-intro__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5%;
    text-align: center;
}

.project-logo__content {
    width: 200px;
    margin: 0 auto;
}

.project-intro__content {
    margin-top: 20px;
}

.project-intro__title {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'DarbySansPoster', sans-serif !important;
    font-weight: normal;
    text-transform: initial;
}

.project-intro__title strong {
    font-weight: bold;
    font-size: inherit;
    font-family: inherit;
    text-transform: initial;
}


.project-intro__subtitle {
    font-size: 4rem;
    font-family: 'Tesla', sans-serif !important;
    color: #375d64;
}

.mid-text {
    font-size: 1.7em;
    font-family: 'DarbySansPoster', sans-serif !important;
    font-weight: normal !important;
    text-align: center;
}

.mid-text-quality {
    font-size: 2em;
    font-family: 'DarbySansPoster', sans-serif !important;
    font-weight: normal !important;
    text-align: center;
    color: #887774;
}

@media (max-width: 768px) {
    .mid-text-quality {
        font-size: 1em;
        padding: 0 15px;
    }
}



/* Big project gallery style */
.custom-gallery {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: auto;
}

.gallery-slide {
    min-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}


.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: #4d3e38;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 11;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    font-size: 1.5em;
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: rgba(255, 255, 255, 1);
}

.gallery-prev {
    left: 5%;
}

.gallery-next {
    right: 5%;
}


.gallery-dots {
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
    position: relative;
}

.gallery-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #887774;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gallery-dots .dot.active {
    background-color: #4d3e38;
}


.galleries-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.gallery-column {
    width: 45%;
    text-align: center;
}

.gallery-title {
    margin-bottom: 20px;
    font-size: 2.2em;
    font-family: 'DarbySansPoster';
}



/* Main section Big */


.main-section {
    text-align: center;
    margin: 0 auto;
    padding: 20px 0 0 0;
    width: 80%;
}

h1,
h2 {
    font-size: 3em;
    margin-bottom: 20px;

}

.main_section__title_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.main_section__title_wrapper::before,
.main_section__title_wrapper::after {
    content: '';
    flex: 1;
    height: 2px;
    background-color: #4d3e38;
}

.main_section__title {
    margin: 0 20px;
    text-transform: uppercase;
    color: #93887a;
    font-family: 'DarbySansPoster', sans-serif !important;
    text-align: center;
    font-weight: bold;
}

.width-60-line {
    max-width: 60%;
}

@media (min-width: 1400px) {
    .width-60-line {
        max-width: 70%;
    }
}

.cta-buttons .btn-big,
button.btn-big {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #375d64;
    border: solid 2px #fff;
    vertical-align: middle;
    position: relative;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.m-form-quote__cta {
    width: 100%;
    display: flex;
    justify-content: space-around;
}


.m-form-quote__cta button.btn-big {
    margin: 0;
}


.cta-buttons .btn-big {
    margin: 15px;
}


.cta-buttons .arrow-box,
button .arrow-box {
    display: inline-block;
    background-color: #375d64;
    padding: 25px 25px;
    height: auto;
    vertical-align: middle;
    border-right: solid 2px #fff;
    font-size: 20px;
    line-height: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-buttons .btn-text,
button .btn-text {
    display: inline-block;
    vertical-align: middle;
    padding: 0 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 250px;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

/* Hover efekat za oba, <a> i <button> */
.cta-buttons .btn-big:hover,
button.btn-big:hover {
    background-color: #fff;
    color: #4d3e38;
    border-color: #4d3e38;
}

.cta-buttons .btn-big:hover .arrow-box,
button.btn-big:hover .arrow-box {
    background-color: #fff;
    color: #4d3e38;
    border-color: #4d3e38;
}

.cta-buttons .btn-big:hover .btn-text,
button.btn-big:hover .btn-text {
    color: #4d3e38;
}

.btn-big:disabled {
    pointer-events: none;
    opacity: 0.6;
}


/* Mobile adjustments */
@media (max-width: 768px) {
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 15px;
    }

    .cta-buttons .btn-big,
    button.btn-big {
        font-size: 16px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .cta-buttons .arrow-box,
    button .arrow-box {
        padding: 15px;
        font-size: 18px;
        flex: 0 0 40px;
        box-sizing: border-box;
        text-align: center;
        margin-right: 0;
    }

    .cta-buttons .btn-text,
    button .btn-text {
        padding: 0 15px;
        width: 250px;
        flex: 1;
        box-sizing: border-box;
        text-align: center;
    }

    .three-buttons {
        margin: 15px !important;
    }
}

.big-stats-image {
    margin: 45px auto;
}

.two-column-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
}

.left-column {
    flex: 1;
    max-width: 50%;
}

.quote-left-column {
    flex: 1;
    max-width: 40%;
}

@media (max-width: 768px) {
    .quote-left-column {
        max-width: 100%;
    }
}

.right-column {
    flex: 1;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;

}


.location-map img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


.icons-section {
    display: flex;
    justify-content: center;
    width: 100%;
}

.icons-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 50px auto;
}

.two-column-container .mid-text,
.two-column-container .footer-description {
    margin: 0 15px;
    text-align: justify;
    color: #375d64;
}

.footer-description {
    color: #333;
    font-size: 18px;
}

.m-form-quote--single {
    margin-top: 0;
}

.m-form-quote__logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
}

.m-form-quote__logo img.site-logo {
    max-width: 200px;
    height: auto;
}

.m-form-quote {
    background-color: transparent;
}

.textarea-field--quote {

    pading: 0 0 0 3rem;


}

.m-form-quote__wrapper {
    display: flex;
    flex-direction: column;
}

.m-form-quote__first-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.m-form-quote h2 {
    color: #4d3e38;
    font-size: 3em;
}

.m-form-quote__subheading {
    flex: 1;
    text-align: left;
}

.m-form-quote__form {
    flex: 1;
    text-align: right;
    display: initial;
}

.m-form-quote__second-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.m-form-quote__icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

}

.m-form-quote__contact-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 2px;
    font-family: 'SweetSansPro';
}

.m-form-quote__contact-title {
    padding-bottom: 5px;
    text-transform: uppercase;
    font-family: 'SweetSansPro';
}

.m-form-quote__submit {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.btn-submit {
    padding: 10px 20px;
    background-color: #f39c12;
    color: white;
    border: none;
    cursor: pointer;
}



.input-field .input-wrapper input,
.textarea-field .textarea-wrapper textarea {
    /* text-transform: uppercase; */
    border: #4d3e38 solid 1px;
    border-radius: 0;
}

.input-field--quote .input-wrapper input,
.textarea-field--quote .textarea-wrapper textarea {
    color: #4d3e38;
    background-color: transparent;
}

.input-field--quote .input-wrapper,
.textarea-field--quote .textarea-wrapper {
    background: none;
}


.m-form-quote__wrapper .wpcf7 .wpcf7-not-valid-tip {
    background-color: inherit;
}


.m-form-quote__icons {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.m-form-quote__contact-icon {
    display: inline-flex;
    align-items: center;
    color: #4d3e38;

    a {
        color: #4d3e38;
    }
}



/* Sekcija za navigator */

.navigator-intro-section {
    background-image: url("/wp-content/themes/merin-group-website/static/images/single-project-silva/silva_navigator_image-min.png");
    background-size: cover;
    background-position: center;
    height: 800px;
}


.navigator-section {
    background-image: url("/wp-content/themes/merin-group-website/static/images/single-project-silva/navigator_pozadina.png");
    background-size: cover;
    background-position: center;
    min-height: 400px;
    padding: 50px 10px;
}

.m-cards-grid__wrapper {
    margin-top: 30px;
    webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5rem 3.75rem;
    justify-content: center;
}

.c-card {
    position: relative;
}

.c-card__content {
    background: #fff;
}

.c-card__logo {
    position: absolute;
    top: 5px;
    right: 5px;
    width: initial;
    padding: 10px;
    background: #fffe;
    border-radius: 3px;
    z-index: 1;
}

.c-card__logo img {
    width: 80px;
}

.c-card__image {
    text-align: center;
    margin-top: 50px;
}

.c-card__text {
    text-align: center;
    margin-top: 10px;
}

.c-card__text--text-logo {
    margin: 0 auto;
}

.c-card__text .h4 {
    font-size: 20px;
    color: #333;
    font-family: 'SweetSansPro' !important;
}

.c-card__text-category .c-card__area {
    font-size: 33px;
    font-weight: bold;
    color: #333;
    height: 60px;
    margin: 0 auto;
    font-family: 'SweetSansPro' !important;
}

.c-card__arrow {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: #375d64;
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}



/* Sekcija za kvalitet */



.quality-section {
    padding: 50px 0;
    text-align: center;
}

.quality-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.quality-items {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin: 0 auto;
}

.quality-item {
    background-color: #93887a;
    width: 23%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-height: 750px;
}

.quality-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 15px;
}

@media (min-width: 1400px) {
    .quality-item {
        max-height: 750px;
    }

    .quality-item img {
        height: 400px;
    }
}

.quality-item h3 {
    font-size: 2rem;
    margin: 35px 0;
    color: #fff;
    font-weight: bold;
}

.quality-item p {
    color: #fff;
    margin: 20px;
    height: 135px;
    text-align: left;
    line-height: 1.5;
    font-family: 'DarbySansPoster', sans-serif;
    font-size: 18px;
}


.cta-buttons .btn-quality {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    border: none;
}

.cta-buttons {
    margin-top: auto;
    margin: 0;
}

.cta-buttons .arrow-box {
    display: inline-flex;
    align-items: center;
}

.cta-buttons .btn-quality .btn-text {
    display: inline-flex;
    align-items: center;
    margin-left: 40px;
}


.quality-item .btn-big {
    background-color: transparent;
}


.quality-item .arrow-box {
    background-color: transparent;

}

.m-form-quote__wrapper .wpcf7 {
    width: 100%;
}

.btn-quality-adjust {
    width: auto;
}

@media (max-width: 768px) {
    .btn-quality-adjust {
        width: 90%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .btn-quality-adjust {
        width: 100%;
    }
}



@media only screen and (max-width: 768px) {
    .quality-item h3 {
        font-size: 1.5rem;

    }

    .quality-item p {

        font-size: 1em;
    }

    .m-form-quote h2 {
        font-size: 1.7em;
    }
}



@media only screen and (max-width: 1024px) {
    .two-column-container {
        flex-direction: column;
        gap: 30px;
        align-items: unset;
    }

    .left-column,
    .right-column {
        max-width: 100%;
    }

    .right-column {
        margin: 0 auto;
    }
}


/* Stilovi za srednje ekrane (tableti i manji desktop uređaji) */
@media only screen and (min-width: 769px) and (max-width: 1320px) {
    .quality-items {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .quality-item {
        width: 48%;
        margin-bottom: 20px;
    }

    .quality-image {

        height: 100%;
    }

 /*    .quality-item img {

         height: 60vh;

    } */


}



@media only screen and (max-width: 768px) {

    .main-section {
        width: 100%;
    }

    .container {
        padding: 10px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 1.7rem;
    }

    .project-intro__wrapper {
        padding: 2%;
    }

    .project-logo__content {
        width: 35%;
    }

    .project-intro__content {
        margin-top: 10px;
    }

    .project-intro__title {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .project-intro__subtitle {
        font-size: 2.2rem;
        margin: 0 15px;
    }


    .mid-text {
        font-size: 1rem;
        margin: 0 15px;
        text-align: center;
    }


    .custom-gallery {
        margin-bottom: 20px;
    }

    .gallery-slide img {
        max-height: 50vh;
        /* width: auto; */
        object-fit: cover;
    }

    .gallery-prev,
    .gallery-next {
        display: none;
    }

    .gallery-title {

        font-size: 1.5em;

    }



    .big-stats-image {
        width: 90%;
    }


    .icons-section img {
        width: 60%;
    }

    /* .big-stats-image img {
        width: 90%;
    } */

    .big-stats-image.lang-sr img {
        content: url('/wp-content/themes/merin-group-website/static/images/markice_sa_brojevima_silva_mob.png');
    }

    .big-stats-image.lang-en img {
        content: url('/wp-content/themes/merin-group-website/static/images/markice_sa_brojevima_silva_mob_en.png');
    }

    .icons-section.lang-sr img {
        content: url('/wp-content/themes/merin-group-website/static/images/single-project-silva/silva_lokacija_ikonice_mob.png');
    }

    .icons-section.lang-en img {
        content: url('/wp-content/themes/merin-group-website/static/images/single-project-silva/silva_lokacija_ikonice_mob_en.png');
    }

    /*kontakt forma Big*/

    .main-section .contact-form-big {
        background-image: url('/wp-content/themes/merin-group-website/static/images/podloga_belo_sa_sarom.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
    }

    .m-form-quote__first-row,
    .m-form-quote__second-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .m-form-quote__form {
        text-align: left;
    }

    .m-form-quote__submit {
        justify-content: flex-start;
    }

    .galleries-container {
        display: block;
        margin-top: 50px;

    }

    .gallery-column {
        width: 100%;
    }

    .quality-items {
        display: flex;
        flex-direction: column;
        margin: 15px;
    }

    .quality-item {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        width: 100%;
        height: 330px;
    }

    .quality-image {
        width: 50%;
        height: 100%;
        overflow: hidden;
    }

    .quality-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;

    }

    .quality-content {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;


    }

    .quality-content h3,
    .quality-content p {
        margin: 0;
        padding: 10px;

    }

    .quality-content .cta-buttons {
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: auto;
    }

    .quality-content .btn-quality {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .quality-content .arrow-box {

        flex: 0;
    }

    .quality-content .btn-text {
        flex-grow: 1;
        margin-left: 0px !important;
        width: 75%;
    }

}



/*Quality standard Silva*/

.project-hero {
    background-size: cover;
    background-position: top center;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.project-intro__content {
    z-index: 2;
}

.project-hero .project-intro__content {
    z-index: 2;
    color: #fff;
}

.project-hero .project-intro__title {
    font-size: 3.5rem;
    color: #fff;
    text-transform: uppercase;
}


.project-hero .project-intro__subtitle {
    font-size: 4rem;
    color: #fff;
    text-transform: initial;
}

.project-hero .main_section__title_wrapper::before,
.project-hero .main_section__title_wrapper::after {
    background-color: #fff;
}


.section-title {
    margin: 0 auto 50px auto;
    color: #4d3e38;
    text-transform: none;
    text-align: center;
    width: 60%;
}

.materials-section {
    padding: 50px 0;
    background-color: #f0efee;
}

.two-column-quality {
    width: 80%;
    margin: 0 auto;
    color: #000;
    font-size: 1rem;
}

.left-column ul,
.right-column ul {
    list-style-type: disc;
    padding-left: 20px;
}

.left-column ul li,
.right-column ul li {
    list-style-type: disc;
    font-size: 1.3rem;
    line-height: 1.2;
    color: #979799;
    font-family: 'DarbySansPoster'
}


.facade-section {
    padding: 100px 0;

}

.two-column-facade {
    margin-bottom: 50px;
}

.two-column-facade .left-column,
.right-column {
    align-items: flex-start;
}

.facade-section .text-image-row {
    display: flex;
    justify-content: space-between;


}

.facade-section .text-content {
    flex: 1;
}

.facade-section .image-content {
    flex: 0 0 250px;
}

.facade-section .image-content img {
    width: 100%;
    margin-top: 30px;


}

.facade-section h2.main_section__title,
.joinery-section h2.main_section__title,
.parquet-section h2.main_section__title,
.ceramics-section h2.main_section__title {
    font-size: 3rem;
    font-family: 'DarbySansPoster', sans-serif;
    margin: 0;
    text-align: left;
}

.facade-section h3 {
    color: #887774;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 1.5rem;
}


.facade-section ol {
    list-style-type: decimal;
    list-style-position: inside;
}

.facade-section ol li {
    font-size: 0.9rem;
    margin: 5px;
    text-transform: uppercase;
}

.text-content ol li,
.text-content ul li {

    padding-left: 1.4em;

}

.joinery-section {
    background-color: #f0efee;
    padding: 100px 0;
}

.left-column h2.main_section__title {
    margin-bottom: 20px;
    color: #887774;
}

.left-column hr {
    margin-bottom: 100px;
    border: none;
    border-top: 2px solid #887774;
    width: 100%;
}

.left-column h3.subsection-title,
.right-column h3.subsection-title {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.left-column ul.content-list {
    margin-bottom: 30px;
}

.joinery-section .right-column img,
.ceramics-section .right-column img {
    height: auto;
    display: block;
}



.parquet-section,
.ceramics-section {
    margin: 50px 0;
}


.parquet-section .right-column h3.subsection-title {
    margin-top: 0;
}

.ceramics-section .image-content,
.parquet-section .image-content {
    flex: 0 0 350px;
}

.parallax-parquet-section {
    background-image: url('/wp-content/themes/merin-group-website/static/images/quality-sdandard-big/PARKET%20-%20IMAGE-min.jpg');
    background-size: cover;
    height: 400px;
}



@media (max-width: 768px) {
    .project-hero .project-intro__subtitle {
        font-size: 2rem;
    }

    .project-hero .project-intro__title {
        font-size: 1.5rem;
    }

    .project-hero {

        height: 50vh;

    }

    .section-title {
        width: 100%;
    }

    .left-column ul li,
    .right-column ul li {

        font-size: 1rem;

    }

    .left-column h2.main_section__title {
        font-size: 2rem;
        text-align: center;
    }

    .left-column h3.subsection-title,
    .right-column h3.subsection-title {

        font-size: 1.4rem;
        text-align: center;
    }

    .joinery-section,
    .facade-section {
        padding: 20px 0;
    }

    .left-column hr {
        margin-bottom: 20px;

    }



    .facade-section h3 {

        font-size: 1.5rem;

    }

}

.sticky-icons {
    position: fixed;
    top: 50%;
    right: 0.5vw;
    transform: translateY(-50%);
    z-index: 9999;
}

.sticky-icons a {
    align-items: center;
    background-color: #aa8a62;
    box-shadow: 0 .1875rem .375rem rgba(0, 0, 0, .161);
    display: flex;
    height: 3.75rem;
    width: 3.75rem;
    justify-content: center;
    transition: .2s cubic-bezier(.25, .46, .45, .94);
    margin-bottom: 5px;
}

.sticky-icons a:hover {
    transform: scale(1.1);
}


.cover__filter-wrapper {
    background: #fff;
    padding: 0 1.5rem;
}

.nav-wrap {
    position: relative;
    width: 95%;
    margin: auto;
}

.search-form-project {
    position: relative;
    z-index: 2;

    .wrapper {
        width: 100%;
    }

    & .label {
        margin: 0;
        margin-top: 0.5rem;
    }

    & .select-wrapper {
        border-right: 1px solid #4d3e38;
        padding-right: 1rem;
    }

    & .custom-select {
        height: 2rem;

        & .placeholder {
            display: flex;
            align-items: stretch;
            padding: 0;
            background-color: #fff;
            font-weight: bold;
        }

        & .icon-angle-down svg {
            width: 0.8rem;
            height: 1rem;
        }

        & .dropdown-items {
            top: 24px;
            left: -10px;
        }
    }

    & .btn-big.submit-property-search {
        width: 100%;
        margin: 0.5rem 1rem;

        &:hover .btn__text {
            color: #4d3e38;
        }

        &::after {
            background-color: transparent;
        }
    }
}

@media (max-width: 768px) {
    .search-form-project {
        & .btn-big.submit-property-search {
            margin: 0.5rem 0;
        }

        & .custom-select {
            border-bottom: 1px solid;
            padding-bottom: 0.5rem;
            margin-top: 0.5rem;

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


        & .select-wrapper {
            border-right: none;
            padding-right: 0;
        }
    }
}

@media (max-width: 768px) {
    .sticky-icons a {
        height: 2.5rem;
        width: 2.5rem;
    }

    .sticky-icons a img {
        max-width: 1.5rem;
        max-height: 1.5rem;
    }

    .sticky-icons a:nth-child(n + 5) {
        display: none;
    }
}

/*
@media (min-width: 769px) {
    .sticky-icons a.icon-call {
        display: none;
    }
}
*/
/*Prikaz sadr탑aja koji se selektivno prikazuju na desktopu i na mobilnom*/


@media (max-width: 768px) {
    .two-column-container-desktop {
        display: none;
    }

    .content-slider {
        display: block;
    }
}


@media (min-width: 769px) {

    .content-slider-container,
    .content-slider {
        display: none;
    }

    .two-column-container-desktop {
        display: flex;
    }
}



@media (max-width: 768px) {
    .text-image-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .text-content {
        width: 100%;
    }

    .image-content {
        width: 100%;
    }

    .image-content img {
        max-height: 400px;
        width: 100%;
        object-fit: contain;
    }
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}


@media (max-width: 768px) {
    #facade, #joinery, #parquet, #ceramics {
        scroll-margin-top: 90px;
    }
}

.contactFormBtn .spinner {
    -webkit-animation: rotation 2s linear infinite;
    animation: rotation 2s linear infinite;
    border: 5px dotted #fff;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    height: 32px;
    position: relative;
    width: 32px;
}
