@font-face {
    font-family: Gotham;
    src: url(../fonts/Metropolis-Bold.ttf);
}

@font-face {
    font-family: Raleway;
    src: url(../fonts/Metropolis-Regular.ttf);
}

body {
    font-family: Raleway !important;
    font-family: Arial, sans-serif;
    background-color: rgb(236, 236, 231);
    color: #2a292a;
}

footer {
    padding: 35px 0 0;
    text-align: center;
    background-color: #ecece7;
}


.navbar {
    top: 0;
    margin-top: 0;
    z-index: 1000;
    position: fixed;
    width: 100%;
    min-height: 95px;
    transition: all 0.5s;
    filter: grayscale(0);
    filter: invert(0);
    text-align: center;
    transition: all 0.5s;
}

.navbar.invert {
    filter: grayscale(1);
    filter: invert(1);
    background: #131318;

    .container-fluid .navbar-collapse.show {
        background-color: transparent;
        border-radius: 10px;
        transition: margin-top 0.5s, background-color 0.5s;

        .container-fluid .navbar-inner .navbar-nav .nav-item .nav-link {
            color: #ecece7;
        }

    }
}

.navbar-collapse {
    max-height: 100px;
}

.navbar-collapse.show {
    max-height: 500px;
    margin-top: 8px;
    background-color: #ecece7;
    border-radius: 10px;
    transition: margin-top 0.5s, background-color 0.5s;

    .container-fluid .navbar-inner .navbar-nav .nav-item .nav-link {
        color: #22221F;
    }

}

.navbar-inner {
    align-content: center;
}

.navbar .container-fluid {
    height: 100%;
}

.navbar-brand {
    filter: grayscale(1);
    filter: invert(1);
}

.navbar-brand.mobile img {
    height: 40px;

}

.navbar-brand.desktop img {
    object-fit: contain;
    width: 75%;
    max-height: 80px;
}

.navbar-toggler {
    width: 20px;
    height: 20px;
    position: relative;
    transition: .5s ease-in-out;
    align-content: center;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
    position: relative;
}

.navbar-toggler span {
    margin: 0;
    padding: 0;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ecece7;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.middle-bar {
    margin-top: 0px;
}


/* State when the navbar is collapsed */

.navbar-toggler.collapsed .top-bar {
    position: absolute;
    top: 0px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    position: absolute;
    top: 10px;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    position: absolute;
    top: 20px;
    transform: rotate(0deg);
}

/* when navigation is clicked */

.navbar-toggler .top-bar {
    top: inherit;
    transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
    opacity: 0;
    top: inherit;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    top: inherit;
    transform: rotate(-135deg);
}

/* Color of 3 lines */

.navbar-toggler.collapsed .toggler-icon {
    background: #ecece7;
}

.navbar-nav {
    justify-content: center;
}

.nav-link.active {
    font-weight: 800;
}

.nav-link {
    font-weight: 500;
    color: #ecece7;
    transition: all 0.25s ease-in-out;
    text-align: center;
}

.nav-link:hover,
.nav-link:focus {
    color: #cacaca !important;
    scale: 1.05;
}

.main {
    min-height: 1000px;
    padding: 0;
    margin: 0;
}

.hero-slider {
    margin-bottom: 50px;
}

.img-property {
    width: 100%;
    height: 50%;
    object-fit: cover;
}

.section-heading {
    padding: 20px 0 10px;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
}

.properties,
.projects {
    margin-bottom: 50px;
}

.property-card,
.project-card {
    margin-top: 10px;
    text-align: center;
    margin-bottom: 30px;
}


.btn {
    border-radius: 0 !important;
}

.black-bg {
    background-color: #2a292a;
    color: #ecece7;
}

.gotham {
    font-family: Gotham !important;
    font-weight: 500;
}

.subtitle {
    font-weight: 700;
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
    height: 70px;
    align-content: center;

}

.reason {
    border-bottom: solid;
    border-color: #ecece7;
}

.desc {
    padding-top: 20px;
}



.white-btn {
    background-color: #ecece7;
    transition: scale 0.3s;
}

.white-btn:hover {
    background-color: #2a292a;
    color: #ecece7;
    box-shadow: 0 0 0 1px #ecece7;
    scale: 1.03;
}

.white-btn:active {
    background-color: rgb(25, 25, 25);
    color: #ecece7;

}

.white-btn:focus {
    box-shadow: 0 0 0 1px #ecece7;

}

.black-btn {
    background-color: #2a292a;
    color: #ecece7;
    transition: scale 0.3s;
}

.black-btn:hover {
    background-color: #ecece7;
    box-shadow: 0 0 0 1px #2a292a;
    scale: 1.03;
}

.black-btn:active {
    background-color: rgb(240, 240, 240)
}

.black-btn:focus {
    box-shadow: 0 0 0 1px #2a292a;
}

.prop-btn {
    background-color: #2a292a;
    border-top: 1px solid #ecece7;
    color: #ecece7;
    transition: scale 0.2s, box-shadow 0.2s, background-color 0.1s, color 0.1s ease-in-out;
}

.form-control {
    transition: all 0.2s;
}

.prop-btn:hover {

    background-color: #d7d5cb;
    color: #ecece7;
    border-top: transparent;
    box-shadow: 0 0 0 4px #d7d5cb;
    color: #2a292a;
    scale: 1.02;
}

.prop-btn:active {
    background-color: #d7d5cb;
    box-shadow: 0 0 0 2px #2a292a;
    color: #2a292a;
    scale: 1.01;
}

.prop-btn:focus {
    box-shadow: 0 0 0 0px transparent;
}

.dark-bg {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.591), rgba(0, 0, 0, 0.591), rgba(0, 0, 0, 0.591), rgba(0, 0, 0, 0.591), rgba(0, 0, 0, 0.591), rgba(42, 41, 42, 0.750), rgba(42, 41, 42, 1));
}

.carousel-control-next {
    z-index: 3;
}

.carousel-control-prev {
    z-index: 3;
}

.carousel-caption {
    height: 70%;
    align-content: start;
}

.carousel-caption-title {
    z-index: 3;
    position: absolute;

    text-align: center;
    align-content: end;
    height: 27%;
    width: 100%;
    color: white;

}

.carousel-caption-title h1 {
    font-weight: 700;
    font-size: 25pt;
}

.carousel-name {
    margin: auto;
    padding-left: 2px;
    padding-right: 2px;
    width: 225px;
    background-color: rgba(42, 41, 42, 0.5);
    font-weight: bolder;
    font-size: medium;
}

.carousel-sub-name {
    margin: auto;
    padding-left: 2px;
    padding-right: 2px;
    width: 225px;
    background-color: rgba(42, 41, 42, 0.5);
    font-size: smaller;
}

.contact {
    text-decoration: none;
    color: #ecece7;
}

.contact:hover {
    color: rgb(230, 230, 230)
}

.contact:active {
    color: rgb(240, 240, 240)
}

.footer-text {
    margin: 0;
    margin-bottom: 2px;
    padding: 0;
}

footer {
    text-align: left;
}

.contact-col {
    min-width: 324px;
}

.start {
    margin-left: auto;

}

.end {
    margin-right: auto;
}



.circle {
    aspect-ratio: 1/1;
    align-content: center;
    border-radius: 100%;
    transition: color 0.4s ease-in, transform 0.4s ease-in-out;
    color: #ecece7;
}


.circle.rotating {
    transform: rotateY(90deg);
}

.circle.rotated {
    transform: rotateY(0deg)
}

.circle.red {
    background-color: #b10e24;
}

.circle.red:hover {
    background-color: rgb(200, 14, 36);
}

.circle.blue {
    background-color: #000223;
}

.circle.blue:hover {
    background-color: rgb(0, 2, 60);
}

.hide {
    display: none;
}

.circle-text {
    font-size: small;
    padding-left: 20px;
    padding-right: 20px;
}

.dropdown-menu {
    background-color: #ecece7;
    border-radius: 0;
    border: none
}

.dropdown-item {
    transition: background-color 0.5s ease-in-out, color 0.s ease-in-out
}

.dropdown-item:hover {
    background-color: #2a292a;
    color: white
}

.best {
    background-color: #2a292a;
    color: #ecece7;
}

.property-link {
    text-decoration: none;
    color: white;
    transition: color 0.2s;

    .property-type {
        aspect-ratio: 3/2;

        background-position: center;
        background-size: 105%;
        border-radius: 5px;
        transition: background-size 0.2s linear;
    }

    .property-cover {
        height: 100%;
        width: 100%;
        border-radius: 5px;
        align-content: center;
        background-color: #2a292a7a;
        transition: background-color 0.2s;
    }

    .property-title {
        font-weight: 600;
    }
}

.property-link:hover {
    color: #ecece7;

    .property-type {
        background-size: 110%;
    }

    .property-cover {
        background-color: #2a292a51;
    }
}

.title-container {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.title-container-top {
    border-bottom: solid;

}

.title-container-img {
    background-image: url(../staticImages/static/dots.webp);
    background-size: 8%;
    background-repeat: no-repeat;
    background-position-y: 50%;
}



.portfolio-title {
    font-weight: 900;
    font-size: x-large;
}

.portfolio-content {
    font-size: medium;
}

.portfolio-name {
    font-weight: 700;
    font-size: medium;
    color: #303192;
}

.portfolio-position {
    font-size: small;
}

.portfolio-image {
    min-height: 350px;
    height: 100%;
    width: 100%;
    border-radius: 3px;
    background-position: center;
    background-size: cover;
}

.maps-small {

    margin: auto;
    width: 100%;
    height: 250px;
}

.services-btn {
    width: 100%;
    align-content: center;
    height: 100px;
}

.services-text {
    text-align: center;
    font-size: larger;
}

.right {
    border-bottom: solid;
}

.left {
    border-bottom: solid;
}

.close {
    aspect-ratio: 1/1;
}

#filter {
    z-index: 2000;
    width: 100%;
    max-height: 0;
    background-color: #2a292a;
    color: white;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    align-content: center;
    transition: margin 0.5s linear, padding 0.5s linear , opacity 0.5s linear, max-height 0.2s ease-in-out;
}

#filter.show {
    max-height: 100%;
    opacity: 100;
    padding: 24px;
    margin-bottom: 16px;
    visibility:visible;
    transition: margin 0.2s linear, padding 0.2s linear ,opacity 0.2s linear, max-height 0.5s ease-in-out;
}

.form-control {
    background-color: #ecece7;
    border-radius: 0%;
}

.form-control:focus {
    box-shadow: 0 0 0 1px #ecece7;
}

.selected {
    scale: 1.00;
    background-color: transparent;
    border-color: #ecece7;
    color: #ecece7;
    border-style: solid;
}

.form-check-input:focus {
    box-shadow: 0 0 0 1px #ecece7;
    border-color: #ecece7;
}

.form-check-input:checked {
    background-color: black;
    border-color: black;
}

.card {
    background-color: #2a292a;
    color: #ecece7;
    border-radius: 0px;
    height: 100%;
}

.card-img-top {
    border-radius: 0px;
    height: 200px;
    background-size: cover;
    background-position: center;
    align-content: flex-end;
}

.card-price-container {
    width: 100%;
    background-color: #2a292acb;
    text-align: center;

}

.card-price {
    font-weight: 500;

}

.card-title {
    font-weight: 600;
}

.card-locality {
    font-weight: 300;
    color: #d7d5cb;
}

.quote {
    font-style: italic;
}

.img-prop-container {
    aspect-ratio: 16/9;
    align-content: center;
    background-position: center;
    background-size: cover;
    opacity: 1;
    transition: opacity 0.25s;
}

.img-prop-sub {
    display: inline-flex;
    width: 100%;
    overflow-x: scroll;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

.img-prop-sub::-webkit-scrollbar {
    display: none;
}

.select-prop-img {
    height: 100%;
    width: 90px;
    object-fit: cover;
}

.select-prop {
    max-width: 90px;
    aspect-ratio: 4/3;
}

.img-prop-btn {
    border-style: none;
    background-color: transparent;
    filter: invert();
    transition: filter 0.25s;
}

.img-prop-btn:hover {
    filter: brightness(30%);
}

.img-prop-btn:active {
    filter: brightness(50%);
}

.prop-title {
    font-weight: 600;
}


.faded {
    opacity: 0;
    transition: opacity 0.1s;
}

.feature-list {
    width: 100%;

}


.feature-item {
    float: inline-start;
    width: 100%;
    margin-bottom: 5px;
}

.seperator {
    border-top: 1px solid #2a292a;
}

.maps-location {
    width: 100%;
    aspect-ratio: 2/1;
}

.prop-info {
    font-size: larger;
}

.title-container-img {
    background-size: 13%;

}

.pos-1 {
    background-position-x: 80%;
}

.pos-2 {
    background-position-x: 65%;
}

.pos-3 {
    background-position-x: 75%;
}

.pos-4 {
    background-position-x: 65%;
}

.carousel-main-item {
    height: 900px;
}

.parallax {
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.desktop {
    display: none;
}

.left {
    text-align: center;
}

.right {
    text-align: center;
}

.maps-large {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.contact-title {
    font-size: 35pt;
    font-weight: 600;
}

.required {
    color: red;
}

.message {
    resize: none;
    height: 250px;
}

.not-filled {
    background-color: #ff7688;
}

.service{
    border-radius: 10px;
    background-color: #f1f0ea;
}

.service-green{
    border-radius: 10px;
    background-color: #b9ceac;
}

.service-icon {
    width: 100%;
}

.service-col {
    align-content: center;
}

.service-title {
    font-weight: 400;
    text-align: end;
}

.service-text {
    text-align: center;
    font-size: large;
}

.service-title.start{
    text-align: start;
}

#awardsImages{
    justify-content: center;
}

#awards{
    justify-content: center;
}
.awardImg{
    aspect-ratio: 1/1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-radius: 10px;
}

.award{
    height: 100%;
    border-radius: 15px;
    background-color: #f1f0ea;
}
.trophy-container{
    width: 100%;
}

.trophy{
    height: 75px;
}

.mobile-portfolio-carousel {
    display: block;
}

.desktop-portfolio-carousel {
    display: none;
}
@media screen and (min-width: 768px) {

    .feature-item {
        float: inline-start;
        width: 100%;
    }

    .select-prop-img {
        height: 100%;
        width: 110px;
        object-fit: cover;
    }

    .select-prop {
        max-width: 110px;
        aspect-ratio: 4/3;
    }

    .carousel-main-item {
        height: 800px;
    }

    .carousel-control-next {
        display: none;
    }

    .carousel-control-prev {
        display: none;
    }

    .carousel:hover {
        .carousel-control-next {
            display: inline-block;
        }

        .carousel-control-prev {
            display: inline-block;
        }
    }

    .parallax {
        background-attachment: fixed;
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .learn {
        margin: 0;
    }

    .maps-small {
        min-width: 400px;
    }

    .title-container-img {
        background-size: 10%;

    }

    .pos-1 {
        background-position-x: 80%;
    }

    .pos-2 {
        background-position-x: 65%;
    }

    .pos-3 {
        background-position-x: 75%;
    }

    .pos-4 {
        background-position-x: 65%;
    }

}

@media (min-width: 992px) {



    .desktop {
        display: block;
    }

    

    .navbar-collapse.show {
        background-color: transparent;

        .container-fluid .navbar-inner .navbar-nav .nav-item .nav-link {
            color: #ecece7;
        }

    }

    .carousel-caption {
        height: 60%;
        align-content: start;
    }

    .carousel-caption-title {
        z-index: 3;
        position: absolute;

        text-align: center;
        align-content: end;
        height: 40%;
        width: 100%;
        color: white;

    }

    .feature-item {
        float: inline-start;
        width: 100%;
    }

    .select-prop-img {
        height: 100%;
        width: 130px;
        object-fit: cover;
    }

    .select-prop {
        max-width: 130px;
        aspect-ratio: 4/3;
    }


    .title-1 {
        line-height: 28pt;
        font-size: 28pt;
    }

    .title-2 {
        line-height: 45pt;
        font-size: 45pt;
    }

    .mobile {
        display: none;
    }

    .title-container-img {
        background-size: 8%;

    }

    .pos-1 {
        background-position-x: 80%;
    }

    .pos-2 {
        background-position-x: 65%;
    }

    .pos-3 {
        background-position-x: 75%;
    }

    .pos-4 {
        background-position-x: 65%;
    }

    .property-main {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .property-features {
        flex-grow: 1;
        width: 100%;
        background-color: #2a292a;
        color: #ecece7;
        border-radius: 5px 5px 0px 0px ;
    }

    .service-text {
        text-align: end;
    }

    .service-text.start{
        text-align: start;
    }

    
}


@media (min-width: 1200px) {
    .select-prop-img {
        height: 100%;
        width: 150px;
        object-fit: cover;
    }

    .select-prop {
        max-width: 150px;
        aspect-ratio: 4/3;
    }

    .feature-item {
        float: inline-start;
        width: 100%;
    }

    .left {
        text-align: left;

    }

    .right {
        text-align: right;

    }
    .mobile-portfolio-carousel {
        display: none;
    }
    
    .desktop-portfolio-carousel {
        display: block;
    }
}

@media (min-width: 1400px) {
    .desktop.lg {
        display: none;
    }
}