﻿
.home-main-content {
    display: grid;
    height: auto;
    width:100%;
    height:100%;
    padding: 0 10px;
}

.home-main-content-carousel {
    position: relative;
    align-items: center;
    height: 100%;
}

    .home-main-content-carousel .carousel-slide {
        position: relative;
        height: 100%;
        width: 100%;
        transition: 0.6s ease;
        flex: 0 0 100%;
    }



.home-main-label {
    position: absolute;
    height: auto;
    width: 350px;
    background-color: inherit;
    top: 25%;
    left: 3%;
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
}

    .home-main-label h3 {
        font-weight: 800;
        font-size: 25px;
    }

    .home-main-label span {
        margin-left: 15px;
        font-size: 18px;
    }

.home-main-label-btn-group {
    margin-top: 15px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 5px;
}

    .home-main-label-btn-group .view-info-btn {
        display: flex;
        justify-content: center;
        padding: 10px 15px;
        background-color: #d9800d;
        color: #fff;
        font-size: 18px;
        text-decoration: none;
    }

    .home-main-label-btn-group .view-listing-btn {
        display: flex;
        justify-content: center;
        padding: 10px 15px;
        border: 1px solid #696969;
        color: #000000;
        font-size: 18px;
        text-decoration: none;
    }

.home-main-content-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
    transition: 0.6s ease;
}


.carousel-back-arrow {
    position: absolute;
    z-index: 1;
    top: 45%;
    left: 2%;
    height: 55px;
    width: 55px;
    background-color: rgba(255, 255, 255, 0.5); /* Partially transparent white */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-next-arrow {
    position: absolute;
    z-index: 1;
    top: 45%;
    right: 2%;
    height: 55px;
    width: 55px;
    background-color: rgba(255, 255, 255, 0.5); /* Partially transparent white */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

    .carousel-back-arrow svg, .carousel-next-arrow svg {
        height: 20px;
        fill: #000000;
        margin-right: 5px;
    }

.carousel-fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .5
    }

    to {
        opacity: 1
    }
}

.home-main-content-lists {
    width: 100%;
    padding: 10px;
}

.main-content-list-layout {
    display: grid;
    justify-content:center;
    gap: 15px;
    margin: 25px 0;
}

.main-content-card {
    width: 100%;
    height: 320px;
    display: grid;
    grid-template-rows: 155px 1fr;
    border: 1px solid #DCDCDC;
    transition: all .3s ease-out;
    cursor: pointer;
}

.main-content-card:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        /*border: 1px groove #d9800d;*/
        border: none;
        box-shadow: 0;
}

.main-content-card .main-content-card-image {
        display: flex;
        align-items: center;
        position: relative;
}

.main-content-card-review {
    position: absolute;
    z-index: 1;
    top: 70%;
    right: 0;
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
    height: 45px;
    width: auto;
    padding: 5px;
}

    .main-content-card-review span {
        font-size: 25px;
        font-weight: 800;
        color: #000000;
    }

    .main-content-card-review .card-review-star-layout {
        display: grid;
        grid-template-columns: auto auto auto auto auto;
        gap: 5px;
        align-items: center;
    }

.card-review-star-layout svg {
    height: 20px;
    fill: #d9800d;
}

.main-content-card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.main-content-card-label {
    display: grid;
    grid-template-rows: auto auto auto;
   /* gap: 5px;*/
    padding:10px;
    height:100%;
}

    .main-content-card-label .main-content-card-title {
        font-size: 16px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: capitalize;
    }

 .main-content-card-label .main-content-address{
     display:grid;
     grid-template-columns: 20px 1fr;
     align-items:center;
     gap: 10px;
     font-size: 13px;
     color: #d9800d;
     justify-content:center;
}

.main-content-card-label .main-content-project-type{
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    margin: 5px;
}

.main-content-project-type span{
    color: #696969;
    font-size: 13px;
}

.main-content-address svg {
        height: 16px;
        fill: #d9800d;
        margin-bottom: 3px;
}

.main-content-card-label .main-content-card-price {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d9800d;
}

    .main-content-card-label .main-content-card-btn-group {
        display: grid;
     /*   grid-template-rows: auto auto;
        gap: 10px*/
     align-items:center;
    }

.main-content-card-btn-group .view-info-btn {
    display: flex;
    justify-content: center;
    padding: 10px 15px;
    background-color: #fcac0c;
    color: #fff;
    font-size: 15px;
    text-decoration:none;
}



.main-content-card-btn-group .view-listing-btn {
        display: flex;
        justify-content: center;
        padding: 10px 15px;
        border: 1px solid #DCDCDC;
        color: #000000;
        font-size: 18px;
        text-decoration: none;
    }

.we-offer-div-layout{
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    margin-top: -15px;
}

    .we-offer-div-layout .we-offer-container {
      display: grid;
      gap: 25px;
      text-align: center;

    }

.we-offer-container .title-h3{
    font-size: 30px;
    font-weight: 500;
    margin-top: 65px;
}

.we-offer-container .content-span{
    font-size: 15px;
    color:#191C20;
    padding-top: 15px;
}

.we-offer-container .content-span a{
    text-decoration: none;
    color: #d9800d;
    font-weight: 600;
}

.we-offer-container .want-more{
    font-size: 25px;
    text-transform: uppercase;
    margin-top: 30px;
    font-weight: 600;
}



.we-offer-div-layout .we-offer-card-layout {
    display: grid;
    width: 100%;
    height: 100%;
    gap: 25px;
    padding-top: 20px;
}

.we-offer-div-layout .follow-step-layout {
    position: relative;
    display: grid;
    width: 100%;
    gap: 15px;
    height: 100%;
    overflow: hidden; /* To ensure the pseudo-element doesn't overflow */
    color: #fff;
    padding: 75px 48px;
    margin-top: 35px;
}

    .we-offer-div-layout .follow-step-layout::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../img/pres_img/aimee02.png);
        background-color: rgba(0, 0, 0, 0.7); /* Adjust the alpha value for the overlay */
        background-blend-mode: overlay; /* Helps to blend the colors */
        z-index: 1; /* Ensure the overlay is behind other content */
        background-size: cover;
        background-position: center;
    }

.follow-step-layout .follow-step-header{
    position: relative;
    color: #fff;
    z-index: 2;
    text-align:left;
}

.follow-step-header h3{
    font-size: 25px;
    font-weight: 500;
}

.follow-step-header span{
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

.follow-step-header span b{
    color: #d9800d;
    text-transform:capitalize;
}

.follow-step-header small{
    display: block;
    font-size: 15px;
    letter-spacing:1px;
    margin-top:15px;
}

.follow-step-layout .follow-step-icons{
    display: grid; 
    align-items: center;
    position:relative;
    z-index:3;
}

.follow-step-icons .follow-steps-icons-card{
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

.follow-steps-icons-card i{
    display: flex;
    justify-content:center;
}

.follow-steps-icons-card i svg{
    fill: #d9800d;
    height: 55px;
}

.follow-steps-icons-card span{
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.follow-steps-icons-card span a{
    text-decoration: none;
    color:#d9800d;
    font-weight: 600;
    font-size: 15px;
}


.we-offer-div-layout .working-for-layout{
    width: 100%;
    margin-top: 85px;
    padding: 25px 15px;
    border-top:1px solid #DCDCDC;
}

.working-for-layout span{
    font-size: 25px;
    color: #696969;
    text-transform: capitalize;
}

.working-for-layout span b{
    color: #d9800d;
    font-weight: 600;
}


.working-for-layout .working-for-logos{
    display: flex;
    margin-top: 35px;
}

.working-for-layout .working-for-logos img{
     width: 200px;
     object-fit: contain;
}




