/********** Template CSS **********/
:root {
    --primary: #173f30;
    --secondary: #f2ead7;
    --light: #f8f9fa;
    --dark: #deb777;
}

/* =========================================================
   BACK TO TOP BUTTON
   ========================================================= */

.back-to-top-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    border-radius: 50%;
    background: var(--bs-buttongold);
    color: var(--bs-primary);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        background 0.3s ease;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.back-to-top-btn {
    transition: all 0.3s ease;
}

.back-to-top-btn:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 575.98px) {
    .back-to-top-btn {
        right: 20px;
        bottom: 20px;
    }
}

.btn-brochure {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-buttongold);
    color: var(--bs-primary);
    border: 0;
    border-radius: 0;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.btn-brochure:hover {
    background-color: var(--bs-buttongold);
    color: var(--bs-white);
}

.btn-brochure span {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.btn-brochure:hover span {
    transform: rotate(45deg);
}

/*** Universal Button ***/

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: var(--bs-buttongold);
    color: var(--bs-primary);
    font-family: "Tenor Sans";
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: 0.4s ease;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bs-primary);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover,
.btn:focus {
    color: #ffffff;
    background: var(--bs-buttongold);
    box-shadow: none;
}

.btn span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn:hover span {
    transform: rotate(45deg);
}

/*** Square Buttons ***/

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    position: relative;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #deb777;
}

/* Navbar link underline animation */
.navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 15px;
    width: 100%;
    height: 1px;
    background: #deb777;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/* Mobile */
@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #eeeeee;
    }
}

/* Desktop Dropdown */
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    /*background-color: var(--dark);
    border: 15px solid var(--dark);*/
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item + .breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 650px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
}
/*thankyou page start*/

.page-header {
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: #999999;
}

/*thankyou page end*/

/* Artistic Image Label */
.artistic-label {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 6px;
    color: #fff;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    z-index: 2;
    pointer-events: none;
}

/*expanding gallery end*/

/*** Appointment ***/
.appointment {
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.5)),
        url(../img/ctaimg.jpg) center center no-repeat;
    background-size: cover;
}

.appointment2 {
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.5)),
        url(../img/am1.webp) center center no-repeat;
    background-size: cover;
}

/*** CTA ***/
.cta {
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.65)),
        url(../img/configurationbg2.jpg) center center no-repeat;
    background-size: cover;
}

/*** CTA ***/
.cta2 {
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.65)),
        url(../img/am1.jpg) center center no-repeat;
    background-size: cover;
}

.bgimg {
    background: url("../img/abtbg.png") center center / cover no-repeat;
    background-attachment: fixed;
}

/*** Footer ***/
.footer {
    color: #fff;
}

.footer .copyright {
    padding: 5px 0;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--bs-buttongold);
}

.fadeclass {
    display: inline-block;
    animation: fadeZoom 3s ease-in-out infinite;
}

@keyframes fadeZoom {
    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/*new css */

/* =========================================================
   PROJECT AMENITIES
   ========================================================= */

#amenities {
    overflow: hidden;
}

.amenity-item {
    min-height: 600px;
    overflow: hidden;
}

.amenity-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 1.2s ease;
}

.amenity-bg-1 {
    background-image: url("../img/am1.webp");
}

.amenity-bg-2 {
    background-image: url("../img/am2.webp");
}

.amenity-bg-3 {
    background-image: url("../img/am3.webp");
}

.amenity-bg-4 {
    background-image: url("../img/am4.webp");
}

.amenity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.amenity-item .container {
    z-index: 2;
}

/*.amenity-item:hover .amenity-bg {
   transform: scale(1.08);
}*/

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991.98px) {
    .amenity-item {
        min-height: 70vh;
    }

    .amenity-item .col-lg-6 {
        width: 75%;
    }
}

@media (max-width: 575.98px) {
    .amenity-item {
        min-height: 65vh;
    }

    .amenity-item .col-lg-6 {
        width: 100%;
    }

    .amenity-right .col-lg-6 {
        text-align: left !important;
    }
}

/*  ENQUIRY MODAL */

.custom-enquiry-modal .modal-dialog {
    max-width: 940px;
}

.custom-enquiry-modal .modal-content {
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: #f4eedf;
}

/* Backdrop */
.custom-enquiry-modal + .modal-backdrop,
.modal-backdrop.show {
    background: rgba(9, 26, 19, 0.78);
    opacity: 1;
}

/* Main Modal Box */
.enquiry-modal-box {
    position: relative;
    background: #f4eedf;
    color: #173d2d;
}

/* IMAGE */

.enquiry-modal-image {
    min-height: 510px;
    height: 100%;
    overflow: hidden;
}

.enquiry-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* CONTENT */

.enquiry-modal-content {
    min-height: 530px;
    padding: 55px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #173d2d;
}

.enquiry-modal-content > span {
    color: #697068;
    letter-spacing: 0.15em;
    font-size: 9px;
}

.enquiry-modal-content h2 {
    color: #173d2d;
    line-height: 1;
}

.enquiry-modal-content h2 em {
    color: #b08a52;
}

.enquiry-modal-content > p {
    max-width: 390px;
    margin-top: 17px;
    color: #697068;
    font-size: 12px;
    line-height: 1.7;
}

/* FORM */

.enquiry-modal-content form {
    margin-top: 5px;
}

.enquiry-field {
    display: block;
    width: 100%;
}

.enquiry-field > span {
    display: block;
    margin-bottom: 7px;
    color: #697068;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.enquiry-field input,
.enquiry-field select {
    width: 100%;
    height: 46px;
    padding: 10px 12px;
    border: 1px solid #d4cbb9;
    border-radius: 0;
    outline: none;
    background: transparent;
    color: #173d2d;
    font-family: inherit;
    font-size: 13px;
}

.enquiry-field input:focus,
.enquiry-field select:focus {
    border-color: #b08a52;
    outline: none;
    box-shadow: none;
}

.enquiry-field input::placeholder {
    color: #99958c;
}

.enquiry-field select {
    appearance: auto;
}

/* CONSENT  */

.enquiry-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    color: #697068;
    font-size: 9px;
    line-height: 1.5;
    cursor: pointer;
}

.enquiry-consent input {
    width: 14px;
    height: 14px;
    margin: 1px 0 0;
    padding: 0;
    flex-shrink: 0;
    accent-color: #173d2d;
}

/*  CLOSE BUTTON */

.custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #173d2d;
    color: #fff;
    font-size: 22px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.custom-close:hover {
    background: #b08a52;
    color: #173d2d;
}

/* BOOTSTRAP MODAL OVERRIDES  */

.custom-enquiry-modal .modal-dialog {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
}

.custom-enquiry-modal .modal-content:focus {
    outline: none;
}

.custom-enquiry-modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
}

.custom-enquiry-modal.show .modal-dialog {
    transform: none;
}

/* TABLET */

@media (max-width: 991.98px) {
    .custom-enquiry-modal .modal-dialog {
        max-width: 700px;
    }

    .enquiry-modal-content {
        min-height: auto;
        padding: 45px 40px;
    }
}

/* MOBILE */

@media (max-width: 575.98px) {
    .custom-enquiry-modal .modal-dialog {
        margin: 15px;
    }

    .enquiry-modal-content {
        padding: 40px 25px;
    }

    .enquiry-modal-content h2 {
        font-size: 42px;
    }

    .enquiry-modal-content > p {
        font-size: 11px;
    }

    .enquiry-field input,
    .enquiry-field select {
        height: 44px;
    }

    .custom-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
}

.logoclass {
    width: 160px;
}

/* Side Rail */
.rail {
    position: fixed;
    right: 0;
    top: 42%;
    z-index: 900;
    display: flex;
    flex-direction: column;
    background: var(--bs-buttongold);
}

.rail a,
.rail button {
    width: 60px;
    height: 80px;
    border: 0;
    border-bottom: 1px solid rgba(23, 63, 48, 0.25);
    background: var(--bs-buttongold);
    color: var(--bs-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.rail a,
.rail button {
    transition: all 0.3s ease;
}

.rail a:hover,
.rail button:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.rail span:first-child {
    font-size: 15px;
}

.rail span:last-child {
    font-size: 7px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .rail {
        top: 450px;;
    }

    .rail a,
    .rail button {
        width: 65px;
        height: 70px;
    }

    .rail span:first-child {
        font-size: 20px;
    }

    .rail span:last-child {
        font-size: 9px;
    }
}

/*side rail end*/

/* =========================================================
   FLOOR PLAN
   ========================================================= */

.floor-plan-image {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: #f5f1e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floor-plan-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: blur(7px);
    transform: scale(1.04);
    user-select: none;
    pointer-events: none;
}

.floor-plan-content {
    background: #fff;
}

.floor-plan-content > span {
    letter-spacing: 0.15em;
}

.floor-plan-content h2 {
    line-height: 1;
}

.floor-plan-content h2 em {
    color: #b08a52;
}

.floor-plan-content p {
    color: #697068;
    line-height: 1.8;
    max-width: 420px;
}

.floor-plan-icon {
    color: #b08a52;
}

.floor-plan-control {
    width: 60px;
    height: 60px;
    top: 50%;
    margin-top: -30px;
    background: #173f30;
    opacity: 1;
}

.floor-plan-control:hover {
    background: #deb777;
}

.floor-plan-control:hover .floor-arrow {
    color: #173f30;
}

.floor-arrow {
    color: #deb777;
    line-height: 1;
}

.floor-plan-control.carousel-control-prev {
    left: -30px;
}

.floor-plan-control.carousel-control-next {
    right: -30px;
}

.floor-plan-indicators {
    position: static;
    margin: 35px 0 0;
    gap: 12px;
}

.floor-plan-indicators button {
    width: 45px;
    height: 4px;
    margin: 0;
    border: 0;
    background-color: #173f30;
    opacity: 1;
}

.floor-plan-indicators button.active {
    background-color: #deb777;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991.98px) {
    .floor-plan-image {
        min-height: 400px;
    }

    .floor-plan-content {
        padding: 40px !important;
    }

    .floor-plan-control {
        width: 45px;
        height: 45px;
        margin-top: -22px;
    }

    .floor-plan-control.carousel-control-prev {
        left: -15px;
    }

    .floor-plan-control.carousel-control-next {
        right: -15px;
    }
}

@media (max-width: 575.98px) {
    .floor-plan-image {
        min-height: 300px;
    }

    .floor-plan-content {
        padding: 30px 25px !important;
    }
}

/* =========================================================
   LAYOUT PLAN
   ========================================================= */

.layout-plan {
    overflow: hidden;
}

.layout-plan-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.layout-plan-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   HOTSPOTS
   ========================================================= */

.plan-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    z-index: 2;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   HOTSPOT POSITIONS
   ========================================================= */

.hotspot-01 {
    top: 14%;
    left: 46%;
}

.hotspot-02 {
    top: 12%;
    left: 49%;
}

.hotspot-03 {
    top: 12%;
    left: 54%;
}

.hotspot-04 {
    top: 12%;
    left: 51%;
}

.hotspot-05 {
    top: 20%;
    left: 63%;
}

.hotspot-06 {
    top: 25%;
    left: 63%;
}

.hotspot-07 {
    top: 31%;
    left: 63%;
}

.hotspot-08 {
    top: 35%;
    left: 31%;
}

.hotspot-09 {
    top: 30%;
    left: 41%;
}

.hotspot-10 {
    top: 31%;
    left: 58%;
}

.hotspot-11 {
    top: 34%;
    left: 43%;
}

.hotspot-12 {
    top: 37%;
    left: 49%;
}

.hotspot-13 {
    top: 43%;
    left: 51%;
}

.hotspot-14 {
    top: 48%;
    left: 45%;
}

.hotspot-15 {
    top: 48%;
    left: 55%;
}

.hotspot-16 {
    top: 24%;
    left: 67%;
}

.hotspot-17 {
    top: 34%;
    left: 67%;
}

.hotspot-18 {
    top: 28%;
    left: 17%;
}

.hotspot-19 {
    top: 23%;
    left: 27%;
}

.hotspot-20 {
    top: 15%;
    left: 11%;
}

.hotspot-21 {
    top: 86%;
    left: 45%;
}

.hotspot-22 {
    top: 68%;
    left: 43%;
}

.hotspot-23 {
    top: 58%;
    left: 35%;
}

.hotspot-24 {
    top: 65%;
    left: 37%;
}

.hotspot-25 {
    top: 72%;
    left: 52%;
}

.hotspot-26 {
    top: 60%;
    left: 55%;
}

.hotspot-27 {
    top: 80%;
    left: 37%;
}

.hotspot-28 {
    top: 76%;
    left: 40%;
}

.hotspot-29 {
    top: 82%;
    left: 71%;
}

.hotspot-30 {
    top: 82%;
    left: 64%;
}

.hotspot-31 {
    top: 80%;
    left: 78%;
}

.hotspot-32 {
    top: 78%;
    left: 83%;
}

.hotspot-33 {
    top: 75%;
    left: 88%;
}

.hotspot-34 {
    top: 65%;
    left: 86%;
}

.hotspot-35 {
    top: 30%;
    left: 50%;
}


/* =========================================================
   TOOLTIP
   ========================================================= */

.plan-hotspot::after {
    content: attr(data-title);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(5px);
    width: max-content;
    max-width: 220px;
    padding: 10px 14px;
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    white-space: nowrap;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

.plan-hotspot::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 5px);
    transform: translateX(-50%);
    border-top: 7px solid var(--bs-primary);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* =========================================================
   DESKTOP HOVER
   ========================================================= */

.plan-hotspot:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 0 8px rgba(222, 183, 119, 0.2);
    z-index: 10;
}

.plan-hotspot:hover::after,
.plan-hotspot:hover::before {
    opacity: 1;
    visibility: visible;
}

.plan-hotspot:hover::after {
    transform: translateX(-50%) translateY(0);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .plan-hotspot {
        width: 12px;
        height: 12px;
        font-size: 5px;
    }


    /* -----------------------------------------------------
       MOBILE TOOLTIP
       Appears when the number is tapped/focused
       ----------------------------------------------------- */

    .plan-hotspot:focus {
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 0 0 0 5px rgba(222, 183, 119, 0.2);
        z-index: 10;
        outline: none;
    }

    .plan-hotspot:focus::after,
    .plan-hotspot:focus::before {
        opacity: 1;
        visibility: visible;
    }

    .plan-hotspot:focus::after {
        transform: translateX(-50%) translateY(0);
    }


    /* -----------------------------------------------------
       MOBILE TOOLTIP SIZE
       ----------------------------------------------------- */

    .plan-hotspot::after {
        max-width: 180px;
        width: max-content;
        padding: 7px 10px;
        font-size: 10px;
        line-height: 1.3;
        text-align: center;
        white-space: normal;
        bottom: calc(100% + 10px);
    }

    .plan-hotspot::before {
        bottom: calc(100% + 4px);
    }


    /* -----------------------------------------------------
       REMOVE VERTICAL BORDERS FROM OTHER SECTION
       ----------------------------------------------------- */

    .peace-privacy-pride .border-start {
        border-left: 0 !important;
    }
}


/* =========================================================
   LAYOUT PLAN END
   ========================================================= */

/**/
.cta-banner {
    min-height: 500px;
    background-image: url("../img/cta1.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 767.98px) {
    .cta-banner {
        min-height: 300px;
        background-attachment: scroll;
    }
}

/**/

/**/
.image-collage {
    height: 650px;
}

.collage-image {
    object-fit: cover;
}

.collage-large {
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
}

.collage-small {
    width: 34%;
    height: 48%;
    right: 0;
    top: 10%;
}

.collage-tiny {
    width: 30%;
    height: 32%;
    right: 7%;
    bottom: 2%;
}

/* Mobile */
@media (max-width: 767.98px) {
    .image-collage {
        height: 350px;
    }

    .collage-large {
        width: 78%;
        height: 100%;
    }

    .collage-small {
        width: 38%;
        height: 42%;
        top: 8%;
    }

    .collage-tiny {
        width: 34%;
        height: 30%;
        right: 5%;
        bottom: 2%;
    }
}
/**/

@media (max-width: 767.98px) {
    .peace-privacy-pride > div {
        padding: 20px 0 !important;
        border-left: 0 !important;
    }

    .peace-privacy-pride > div + div {
        padding-top: 28px !important;
    }
}

