.home-slider{
    width: 100%;
    height: 650px;
    margin-top: 78px;
    position: relative;
    overflow: hidden;
    background: rgb(0, 0, 0);
    box-shadow: 0 2px 10px rgba(35, 35, 35, 0.671);
    animation: fade-in 1s ease-out forwards, zoom-out 2.5s ease-out forwards;
}

.slider-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.slider-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.slider-container{
    width: 100%;
    height: 100%;
    position: relative;
    display: grid;
    align-items: center;
    justify-items: center;
    color: white;
}

#slider-image{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    display: grid;
    align-items: center;
}

.home-title{
    position: relative;
    width: 70%;
    height: fit-content;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.612);
}

.home-title h1{
    font-size: 100px;
    margin: 0;
    line-height: 130px;
    color: white;
}


.home-title .tag-line::before{
    content: '';
    position: absolute;
    border-top: solid 2px white;
    bottom: 50px;
    left: -100%;
    right: -100%;
}

.home-title .tag-line::after{
    content: '';
    position: absolute;
    border-bottom: solid 2px white;
    bottom: 5px;
    left: -100%;
    right: -100%;
}

/* ---------------------------- */
.section-contact-details{
    position: relative;
}

.contact-card-list{
    position: relative;
    width: 80%;
    height: 50%;
}

.contact-card-list a{
    text-decoration: none;
}
.contact-card{
    width: 300px;
    height: 200px;
    margin: 0 50px 30px 50px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 0 12px var(--shadow-color);
    color: var(--primary-color);
    text-align: center;
    transition: all 0.1s ease-in-out;
}

.contact-card .card-icon{
    width: 60px;
}

.contact-card:hover{
    transform: scale(1.02);
}

.location-map {
    width: 70%;
    height: 400px;
    margin-top: 50px;
}
.location-map iframe{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 12px var(--shadow-color);
}


/* --------------------------- */
.section-request-project{
    position: relative;
}

.details-form-list{
    position: relative;
    width: 50%;
    height: 300px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 0 10px var(--shadow-color);
    overflow: hidden;
}

.details-form{
    position: absolute;
    width: 95%;
    left: 200%;
    transition: all 0.3s ease-in-out;
}
.active-details-form{
    left: 8px;
}


.details-form-list h2{
    font-family: "Manrope",sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}
.details-form-list h2::after{
    content: '';
    position: absolute;
    border-bottom: 3px solid var(--primary-color);
    top: 52px;
    left: 10%;
    right: 10%;
}

span.prefix-txt {
    width: 300px;
    height:30px;
    margin-bottom: 10px;
    color: var(--primary-color);
    border-bottom: var(--primary-color) solid 2px;
}
span.prefix-txt input[type=text] {
    width: 260px;
    height:28px;
    /* border: none; */
}

.controll-btns{
    width: 100%;
    margin-top: 20px;
    justify-content: space-around;
}

.form-submited h1,h2{
    font-family: "Manrope",sans-serif;
}
.form-submited h1{
    font-size: 28px;
    margin: 0;
}
.form-submited h2::after{
    border: none;
}
/* .form-submited .controll-btns{
    margin-top: 5px;
} */