<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --white: #ffffff;
  --black: #000000;
  --dark-grey: #4A4A4A;
  --primary-color: #091733;
  --yellow-color: #DAA520;
  --light-yellow-color: #F4F0E7;
  --heading-yellow-color: #DCC5A2;
  --dark-yellow-color: #B9A082;

}

/*---------- Template CSS start -----------*/

.template h2 {
    color: var(--primary-color);
}

.template ul {
    list-style: none;
    margin-left: 25px;
}

.template ul li {
    font-size: 18px;
    padding: 5px;
    position: relative;
    padding-left: 30px;
}

.template ul li::before{
    content: "";
    position: absolute;
    background-image: url('../images/cicrle.svg');
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    left: 0;
    top: 10px;
}

.template .apartmani-pdf a {
    margin-left: 20px;
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 10px;
    display: inline-block;
}

.template .apartmani-pdf a:hover {
    text-decoration: underline;
}



.template .back-btn a:hover {
    text-decoration: underline;
}

.conclusion-gallery img {
    transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
}

.conclusion-gallery img:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.whole-gallery {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    color: var(--white);
    background-color: rgba(9, 23, 51, .7);
    /* padding: 93px 40px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat";
    font-size: 24px;
    font-weight: 600;
    
}

.blog-gallery{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.blog-gallery .gallery-item:nth-child(1), .blog-gallery .gallery-item:nth-child(2), .blog-gallery .gallery-item:nth-child(3), .blog-gallery .gallery-item:nth-child(4) {
    display: block;
}

.blog-gallery .gallery-item:nth-child(3), .blog-gallery .gallery-item:nth-child(4) {
    grid-column: span 1;
}


.blog-gallery .gallery-item{
    width: 100%;
    height: 265px;
    padding: 0;
    display: none;
}

.blog-gallery .gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-gallery .gallery-item:nth-child(2){
    grid-column: span 2;
}

.blog-gallery .gallery-item:nth-child(1){
    grid-row: span 2;
    grid-column: span 2;
    height: 100%;
}

.back-btn{
    width: 100%;
    max-width: 250px;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: center;
    padding: 10px;
}

.back-btn a{
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 24px;
    font-family: "Playfair Display";
    font-weight: 400;
}

/*---------- Media Css Start -----------*/
@media only screen and (max-width: 1024px) {
    .template ul li {
        font-size: 16px;
    }

}

@media only screen and (max-width: 992px) {
      .blog-gallery{
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .blog-gallery .gallery-item:nth-child(1){
        grid-row: span 1;
        grid-column: span 1;
        height: 265px;
    }
     .blog-gallery .gallery-item:nth-child(2){
        grid-column: span 1;
     }
}

@media only screen and (max-width: 767px) {
        .blog-gallery{
        padding: 0 0.75rem;
        margin-top: 1rem !important;
    }

        .blog-gallery .gallery-item:nth-child(1){
            height: 200px;
        }

    .blog-gallery .gallery-item{
        height: 200px;
    }

.whole-gallery{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 25px;
}

.back-btn{
    margin-left: auto;
    margin-right: auto;
}

}</pre></body></html>