*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}

::-webkit-scrollbar{
    width: 5px;
}
::-webkit-scrollbar-thumb{
    background: gray;
    border-radius: 5px;
}


/* header design start */


header{
    width: 100%;
    position: fixed;
    top: 0;
    height: 70px;
    border-bottom: 1px solid rgba(197, 197, 197, 0.208);
    z-index: 1000;
}

header .header-logo{
    height: 70px;
    position: absolute;
    left: 75;
    display: flex;
    align-items: center;
    overflow: hidden;
}

header .header-logo img{
    height: 65px;
    width: 100%;
    object-fit: contain;
}


/* header .header-logo img{
    position: absolute;
    height: 70px;
    left: 75px;
    cursor: pointer;
    transition: .3s;
} */

header ul{
    float: right;
    margin-right: 75px;
    transition: .3s;
}

header ul li{
    position: relative;
    display: inline-block;
    line-height: 70px;
    margin: 0px 0px;
    font-size: 15px;
}

header ul li.dropdown-icon{
    position: relative;
}

header ul li a.main-option,
header ul li label.main-option{
    margin: 0px 15px;
    position: relative;
    color: white;
    cursor: pointer;
}

header ul li a.main-option:hover,
header ul li label.main-option:hover{
    color: #c6f50a;
}

header ul li a.main-option:before,
header ul li label.main-option:before{
    position: absolute;
    content: '';
    left: 0;
    bottom: -3;
    height: 2px;
    width: 100%;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s linear;
}

header ul li label.main-option:hover:before,
header ul li a:hover.main-option:before{
    transform: scaleX(1);
    transform-origin: left;
    background: #c6f50a;
    transition: transform .3s linear;
}

header ul li.dropdown-icon:before{
    content: '\f0d7';
    position: absolute;
    font-family: fontAwesome;
    color: white;
    right: 0;
    font-size: 15px;
    line-height: 70px;
}

header ul li.dropdown-icon{
    position: relative;
}

header ul li.dropdown-icon:hover:before{
    content: '\f0d8';
    color: #c6f50a;
}

header ul li ul{
    position: absolute;
    top: 54px;
    visibility: hidden;
    opacity: 0;
    width: fit-content;
    background: white;
    border-top: 1px solid rgb(43, 43, 43);
}

header ul li ul li{
    margin: 0;
    padding: 0 10px;
    line-height: 35px;
    width: 100%;
    border-top: 1px solid rgb(203, 203, 203);
}

header ul li ul li a{
    color: rgb(136, 136, 136);
}

header ul li ul li:hover a{
    color: black;
    transition: .3s;
}

header ul li:hover ul{
    visibility: visible;
    opacity: 1;
    top: 43;
    transition: .3s;
}

label #btn,
label #cancel{
    color: white;
    font-size: 20px;
    line-height: 60px;
    float: right;
    margin-right: 30px;
    cursor: pointer;
    display: none;
}

#bars{
    display: none;
}

/*  */
header ul li a.home-color:before{
    transform: scaleX(1);
    transform-origin: left;
    background: #c6f50a;
    transition: transform .3s linear;
}

header ul li a.home-color{
color: #c6f50a;
}

header.scroll{
    background: #0d5c15;
}
/*  */

/* ------------------------------------------------------------------------------------------------------------------------ */


/* media code */
@media(orientation:landscape){
    div#form-login{
        height: 100%;
    }
}

@media(max-width:1100px){
    header .header-logo img{
        left: 65px;
    }

    header ul{
        margin-right: 65px;
        transition: .3s;
    }
}

@media(max-width:1000px){
    header .header-logo img{
        left: 55px;
    }

    header ul{
        margin-right: 55px;
        transition: .3s;
    }
}

@media(max-width:950px){
    header .header-logo img{
        left: 45px;
    }

    header ul{
        margin-right: 45px;
        transition: .3s;
    }
}

/* media codes start*/
@media(max-width:900px){

    header .header-logo img{
        left: 30px;
        transition: 0s;
        height: 50px;
        top: 5px;
    }
    
    label #btn{
        display: block;
    }

    header{
        height: 60px;
    }

    header ul{
        position: fixed;
        width: 100%;
        height: fit-content;
        background: #0d5c15;
        top: 60;
        left: -100%;
        text-align: center;
        transition: .3s;
    }

    header ul li{
        display: block;
        margin: 0;
        position: relative;
        line-height: 30px;
    }

    #bars:checked ~ ul{
        left: 0;
    }

    #bars:checked ~ label #btn{
        display: none;
    }

    #bars:checked ~ label #cancel{
        display: block;
    }

    header ul li.dropdown-icon.click ul{
        display: block;
        width: 100%;
        left: 0;
        right: 0;
        margin: 0;
        visibility: visible;
        opacity: 1;
        top: 0; 
        position: relative;
        z-index: 10;
    }

    header ul li:hover ul{
        display: none;
    }
    

    header ul li label.main-option,
    header ul li a.main-option,
    header ul li ul li a.main-option{
        color: #c6f50a;
    }

    header ul li ul li{
        border: none;
    }

    
    header ul li label.main-option,
    header ul li a.main-option{
        color: white;
    }

    header ul li.dropdown-icon:before{
        content: '\f0d7';
        position: absolute;
        font-family: fontAwesome;
        color: #c6f50a;
        right: 41%;
        font-size: 15px;
        line-height: 30px;
    }
    
    header ul li.dropdown-icon{
        position: relative;
    }
    

    header ul li ul{
        border: none;
        background: rgb(250, 250, 250);
        border-top: 1px solid gray;
        border-bottom: 1px solid gray;
    }

    header ul li.dropdown-icon:before{
        visibility: hidden;
    }

    header ul li{
        line-height: 60px;
    }
}

@media(max-width:450px){

    header .header-logo img{
        left: 10px;
    }

}
/* header design end */



/* ------------------------------------------------------------------------------------------------------------------------ */
/* ======================================================================================================================== */
/* ------------------------------------------------------------------------------------------------------------------------ */




/* -background design start */
.background{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: black;
    overflow: hidden;
}

.background .background-image{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* z-index: -2; */
    overflow: hidden;
    opacity: 0;
    animation: sliderCycle 31s infinite;
}

.background .background-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: sliderZoom 31s infinite;
}


.background .background-image:nth-child(1),
.background .background-image:nth-child(1) img{
    animation-delay: 0s;
}

.background .background-image:nth-child(2),
.background .background-image:nth-child(2) img{
    animation-delay: 10s;
}
.background .background-image:nth-child(3),
.background .background-image:nth-child(3) img{
    animation-delay: 20s;
}


@keyframes sliderCycle{
    25%{
        opacity: 1;
    }
    40%{
        opacity: 0;
    }
}

@keyframes sliderZoom{
    100%{
        transform: scale(1.3);
    }
}


.background .background-color{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.635);
}

/* background design end */

.empty-space{
    width: 100%;
    height: 100vh;
    position: relative;
}
.empty-space .background-content{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.empty-space .background-content .background-content-control{
    display: block;
    text-align: center;
    color: white;
}

.empty-space .background-content .background-content-control h2{
    font-size: 45px;
    text-transform: uppercase;
    margin-top: 10px;
}

.empty-space .background-content .background-content-control span{
    font-size: 17px;
    font-weight: 500;
}

.empty-space .background-content .background-content-control .background-short-text{
    width: 45%;
    height: fit-content;
    margin: auto;
    margin-top: 30px;

}

.empty-space .background-content .background-content-control .background-link{
    margin-top: 40px;
}

.empty-space .background-content .background-content-control .background-link a{
    text-decoration: none;
    color: white;
    padding: 12px 35px;
    border: 1px solid white;
    background: #f53d0a ;
    transition: .4s;
}

.empty-space .background-content .background-content-control .background-link:hover a{
    background: #b01504;
    transition: .4s;
}

.empty-space .background-content .background-content-control p{
    font-size: 14px;
}

@media(max-width: 900px){
    .empty-space .background-content .background-content-control h2{
        font-size: 40px;
        transition: .4s;
    }
}

@media(max-width: 700px){
    .empty-space .background-content .background-content-control h2{
        font-size: 35px;
    }
    .empty-space .background-content .background-content-control span{
        font-size: 15px;
        font-weight: 500;
        transition: .4s;
    }
}

@media(max-width: 500px){
    .empty-space .background-content .background-content-control h2{
        font-size: 25px;
    }
    .empty-space .background-content .background-content-control span{
        font-size: 13px;
        font-weight: 500;
        transition: .4s;
    }
    .empty-space .background-content .background-content-control p{
        font-size: 12px;
    }
}

@media(max-width: 400px){
    .empty-space .background-content .background-content-control h2{
        font-size: 20px;
    }
    .empty-space .background-content .background-content-control span{
        font-size: 13px;
        font-weight: 500;
        transition: .4s;
    }
    .empty-space .background-content .background-content-control p{
        font-size: 12px;
    }
}


/* ------------------------------------------------------------------------------------------------------------------------ */
/* ======================================================================================================================== */
/* ------------------------------------------------------------------------------------------------------------------------ */


.services{
    position: relative;
    width: 100%;
    height: fit-content;
    background: white;
    display: block;
    padding: 75px 0px;
    border-bottom: 1px solid white;
    padding-bottom: 0px;
}

.services-title{
    width: 100%;
    text-align: center;
}

.services-title h5{
    color: rgba(79, 79, 79, 0.801);
}

.services-title h1{
    font-size: 35px;
    margin-top: 5px;
    color: rgb(98, 98, 98);
    transition: .3s;
}

.services-container{
    width: 90%;
    height: fit-content;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, 22rem);
    justify-content: space-evenly;
}

.services-card{
    height: fit-content;
    margin: 30px 0px;
    display: block;
    overflow: hidden;
    padding-top: 10px;
    box-shadow: 0 0 20px rgba(115, 115, 115, 0.235);
    padding-bottom: 10px;
}

.services-image{
    width: 95%;
    height: 220px;
    margin: auto;
    overflow: hidden;
    
}

.services-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.services-image:hover img{
    transform: scale(1.1);
    transition: .3s;
}

.services-content{
    width: 95%;
    margin: auto;
}

.services-content .services-summary{
    height: 100px;
    overflow-y: scroll white;
}

.services-content h4{
    font-size: 20px;
    color: rgb(98, 98, 98);
    letter-spacing: 1px;    
    margin: 10px 0px;
    margin-top: 15px;
}

.services-content p{
    color: rgba(98, 98, 98, 0.809);
    font-size: 15px;
    margin-bottom: 30px;
}

.services-content .know-more{
    text-align: end;
}

.services-content .know-more a{
    padding: 10px 25px;
    background: #f53d0a;
    color: white;
    font-size: 14px;
    transition: .3s;
}

.services-content .know-more a:hover{
    box-shadow: 0 0 10px #ff3700;
    transition: .3s;
}

@media(max-width: 500px){
    .services-container{
        grid-template-columns: repeat(auto-fit, 19rem);
    }
    
    .services-title h1{
        font-size: 30px;
        transition: .3s;
    }
}

@media(max-width: 380px){
    .services-container{
        grid-template-columns: repeat(auto-fit, 18rem);
    }
}

@media(max-width: 400px){
    .services-container{
        grid-template-columns: repeat(auto-fit, 20rem);
    }

    .services-title h5{
        color: rgba(79, 79, 79, 0.801);
    }
    
    .services-title h1{
        font-size: 30px;
        transition: .3s;
    }
}

@media(max-width: 380px){
    .services-container{
        grid-template-columns: repeat(auto-fit, 18rem);
    }
}


/* ------------------------------------------------------------------------------------------------------------------------ */
/* ======================================================================================================================== */
/* ------------------------------------------------------------------------------------------------------------------------ */


/* about us design start */
.about-us{
    width: 100%;
    height: fit-content;    
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    background: white;
}

.about-us .about-title{
    width: 100%;
    margin: 100px 0px;
    text-align: center;
    margin-bottom: 75px;
}

.about-us .about-title h5{
    color: rgba(79, 79, 79, 0.801);
}

.about-us .about-title h1{
    font-size: 35px;
    margin-top: 5px;
    color: rgb(98, 98, 98);
    transition: .3s;
}


.about-us .about-us-container{
    width: 80%;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(auto-fit, 31rem);
    justify-content: center;
    transform: scale(1);
    /* opacity: 0; */
    transition: 1s;
    margin-bottom: 50px;
}

/* .sec-about.show-animate .about-us-container{
    transform: scale(1);
    transition: 1s;
    opacity: 1;
} */

.about-us .about-us-container .about-us-card{
    margin: 0px 30px;
    display: block;
    height: 350px;
    transition: .4s;
}

.about-us .about-us-container .about-us-card .about-img{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgb(115, 115, 115);
    /* overflow: hidden;; */
}

.about-us .about-us-container .about-us-card .about-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us .about-us-container .about-us-card .about-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.about-us .about-us-container .about-us-card .about-content .about-content-text{
    width: 100%;
    margin-top: 25px;
    line-height: 22px;
    letter-spacing: 1px;
    font-size: 15px;
    color: rgb(86, 86, 86);
    padding: 0px 7px;
}

.about-us .about-us-container .about-us-card .about-content .about-content-title h3{
    letter-spacing: 1px;
    width: 100%;
    font-weight: 900;
    text-align: start;
    font-size: 27px;
    text-transform: uppercase;
    color: rgb(98, 98, 98);
}

.about-us .about-us-container .about-us-card .about-content .about-us-link{
    position: absolute;
    width: fit-content;
    display: flex;
    bottom: 0;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 20px 35px;
    background: #f53d0a;
    transition: .4s;
}

.about-us .about-us-container .about-us-card .about-content .about-us-link a{
    text-decoration: none;
    color: white;
    font-size: 15px;
}
.about-us .about-us-container .about-us-card .about-content .about-us-link:hover{
    background: #b01504;
    transition: .4s;
}

.about-us .mvg{
    width: 60%;
    height: fit-content;
    margin-top: 100px;
}

.about-us .mvg .mission-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, 25rem);
    justify-content: center;
}

.about-us .mvg .mission-container .mission-left{
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 40px;
    /* background: maroon; */
}

.about-us .mvg .mission-container .mission-left h3{
    letter-spacing: 1px;
    width: 100%;
    font-weight: 900;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    color: rgb(98, 98, 98);
    /* color: white; */
}

.about-us .mvg .mission-container .mission-left p{
    margin-top: 20px;
    font-size: 14px;
    color: rgb(86, 86, 86);
    /* color: white; */
}

.about-us .mvg .mission-container .mission-right{
    min-height: 50vh;
    overflow: hidden;
    background: white;
    box-shadow: 0 0 20px rgb(115, 115, 115);
}

.about-us .mvg .mission-container .mission-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.about-us .mvg .vision-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, 25rem);
    justify-content: center;
}

.about-us .mvg .vision-container .vision-left{
    height: 50vh;
    overflow: hidden;
    background: white;
    box-shadow: 0 0 20px rgb(115, 115, 115);
}

.about-us .mvg .vision-container .vision-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.about-us .mvg .vision-container .vision-right{
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 40px;
}

.about-us .mvg .vision-container .vision-right h3{
    letter-spacing: 1px;
    width: 100%;
    font-weight: 900;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    color: rgb(98, 98, 98);
    /* color: white; */
}

.about-us .mvg .vision-container .vision-right p{
    margin-top: 20px;
    font-size: 14px;
    color: rgb(86, 86, 86);
    /* color: white; */
}

.about-us .mvg .values-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, 25rem);
    justify-content: center;
    margin-bottom: 100px;
}

.about-us .mvg .values-container .values-left{
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 40px;
    /* background: maroon; */
}

.about-us .mvg .values-container .values-left h3{
    letter-spacing: 1px;
    width: 100%;
    font-weight: 900;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    color: rgb(98, 98, 98);
    /* color: white; */
}

.about-us .mvg .values-container .values-left p{
    margin-top: 20px;
    font-size: 14px;
    color: rgb(86, 86, 86);
    /* color: white; */
}

.about-us .mvg .values-container .values-right{
    height: 50vh;
    overflow: hidden;
    background: white;
    box-shadow: 0 0 20px rgb(115, 115, 115);
}

.about-us .mvg .values-container .values-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.about-us .mvg .mission-container .mission-right:hover img,
.about-us .mvg .vision-container .vision-left:hover img,
.about-us .mvg .values-container .values-right:hover img{
    transform: scale(1.2);
    transition: .3s;
}

@media(max-width: 1240px){
    .about-us .about-us-container .about-us-card{
        margin-top: 50px;
    }
}

@media(max-width: 650px){
    .about-us .about-us-container{
        grid-template-columns: repeat(auto-fit, 25rem);
        transition: .4s;
    }
    .about-us .about-us-container .about-us-card .about-content .about-us-link{
        bottom: -50;
    }

    .about-us .mvg .mission-container{
        grid-template-columns: repeat(auto-fit, 20rem);
        margin-bottom: 20px;
    }

    .about-us .mvg .vision-container{
        grid-template-columns: repeat(auto-fit, 20rem);
    }

    .about-us .mvg .values-container{
        grid-template-columns: repeat(auto-fit, 20rem);
    }
}


@media(max-width: 500px){
    .about-us .mvg .mission-container .mission-right{
        min-height: 40vh;
    }

    .about-us .mvg .vision-container .vision-left{
        height: 40vh;
    }

    .about-us .mvg .values-container .values-right{
        height: 40vh;
    }
}

@media(max-width: 400px){
    .about-us .about-title h5{
        color: rgba(79, 79, 79, 0.801);
    }
    
    .about-us .about-title h1{
        font-size: 30px;
        transition: .3s;
    }

    .about-us .mvg .mission-container{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, 18rem);
        justify-content: center;
    }

    .about-us .mvg .vision-container{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, 18rem);
        justify-content: center;
    }

    .about-us .mvg .values-container{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, 18rem);
        justify-content: center;
        margin-bottom: 100px;
    }

    .about-us .about-us-container .about-us-card .about-content .about-content-title h3{
        font-size: 23px;
        text-align: center;
    }

    .about-us .mvg .mission-container .mission-right{
        min-height: 40vh;
    }

    .about-us .mvg .vision-container .vision-left{
        height: 40vh;
    }

    .about-us .mvg .values-container .values-right{
        height: 40vh;
    }
}



@media(max-width: 1334px){
    .about-us .mvg{
        width: 70%;
    }

}

@media(max-width: 1150px){
    .about-us .mvg{
        width: 80%;
    }

}

@media(max-width: 1000px){
    .about-us .mvg{
        width: 90%;
    }

}

@media(max-width: 500px){
    .about-us .about-us-container{
        grid-template-columns: repeat(auto-fit, 22rem);
        transition: .4s;
    }

    .about-us .about-us-container .about-us-card .about-content .about-us-link{
        bottom: -50;
    }
}
/* about us design end */




/* ------------------------------------------------------------------------------------------------------------------------ */
/* ======================================================================================================================== */
/* ------------------------------------------------------------------------------------------------------------------------ */



/* projects design start */
.projects{
    width: 100%;
    height: fit-content;
    position: relative;
    padding: 10px 0px;
    padding-bottom: 100px;
    display: block;
    background: white;
    /* background: rgb(0, 35, 63); */
}

.projects .projects-title{
    width: 90%;
    margin: 100px auto;
    text-align: center;
    margin-bottom: 75px;
}

.projects .projects-title h5{
    color: rgba(79, 79, 79, 0.801);
}

.projects .projects-title h1{
    font-size: 35px;
    margin-top: 5px;
    color: rgb(98, 98, 98);
}

.projects .projects-container{
    width: 90%;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(auto-fit, 20rem);
    justify-content: space-evenly;
    margin: 0 auto;
}

.projects .projects-container .projects-card{
    overflow: hidden;
    height: fit-content;
    position: relative;
    display: block;
    margin: 20px 0px;
    box-shadow: 0 0 20px rgb(115, 115, 115);
    transition: .3s;
    padding-bottom: 20px;
}

.projects-image{
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.projects-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.projects .projects-container .projects-card:hover .projects-image img{
    transform: scale(1.1);
    transition: .3s;
}

.projects-content{
    width: 100%;
    margin: auto;
    padding: 0px 10px;
}

.projects-content h3{
    margin: 20px 0px;
    margin-bottom: 10px;
    font-size: 20px;
    color: rgb(84, 84, 84);
    letter-spacing: 1px;    
}

.projects-content p{
    color: rgba(83, 83, 83, 0.922);
    font-size: 15px;    
    margin: 3px 0px;
    margin-bottom: 20px;
}

.projects-content span{
    color: rgba(83, 83, 83, 0.922);
    font-size: 15px;  
}

.projects-content .projects-link{
    text-align: end;
}

.projects-content .projects-link a{
    padding: 10px 25px;
    background: #f53d0a;
    color: white;
    font-size: 14px;
    transition: .3s;
}

.projects-content .projects-link a:hover{
    box-shadow: 0 0 10px #ff3700;
    transition: .3s;
}
.projects .projects-see-more{ 
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.projects .projects-see-more .projects-btn{
    text-decoration: none;
    color: white;
    padding: 12px 35px;
    background: #f53d0a;
    transition: .4s;
}

.projects .projects-see-more .projects-btn i{
    margin-left: 10px;
}

.projects .projects-see-more .projects-btn:hover{
    box-shadow: 0 0 10px #ff3700;
    transition: .3s;
}

@media(max-width: 400px){
    .projects .projects-container{
        grid-template-columns: repeat(auto-fit, 18rem);
    }
    
    .projects .projects-title h1{
        font-size: 30px;
    }
}
/* projects design end */



/* ------------------------------------------------------------------------------------------------------------------------ */
/* ======================================================================================================================== */
/* ------------------------------------------------------------------------------------------------------------------------ */



/* unique design start */
.unique{
    width: 100%;
    height: fit-content;
    position: relative;
    display: block;
    padding: 100px 0px;
    background: white;
}

.unique .unique-title{
    width: 100%;
    margin-bottom: 75px;
    color: rgb(0, 35, 63);
    text-align: center;
}

.unique .unique-title h5{
    color: rgba(79, 79, 79, 0.801);
}

.unique .unique-title h1{
    font-size: 35px;
    margin-top: 5px;
    color: rgb(98, 98, 98);
}

.unique .unique-container{
    width: 100%;
    height: fit-content;
    padding: 0px 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 22rem);
    justify-content: center;
}

.unique .unique-container .unique-card{
    margin: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    position: relative;
    transition: .4s;
    overflow: hidden;
    box-shadow: 0 0 20px rgb(115, 115, 115);
}

.unique-bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.unique-bg-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.unique-content{
    width: 100%;
    height: 100%;
    padding: 30px 20px;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.801);
}

.unique-content .content-top{
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #c6f50a;
}

.unique-content .content-top i{
    margin-right: 10px;
    color: #c6f50a;
}

.unique-content .content-bottom{
    width: 100%;
    color: white;
}

.unique-content .content-bottom p{
    font-size: 13px;
}

@media(max-width: 400px){
    
    .unique .unique-title h1{
        font-size: 30px;
    }
}
/* unique design end */


/* ------------------------------------------------------------------------------------------------------------------------ */
/* ======================================================================================================================== */
/* ------------------------------------------------------------------------------------------------------------------------ */


/* testimonials design start */
.testimonials{
    width: 100%;
    height: fit-content;
    position: relative;
    background: linear-gradient(rgba(2, 0, 17, 0.7),rgba(2, 0, 17, 0.7)), url('../images/Building-Construction.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 50px;
    margin: auto;
}

.testimonials .testimonials-title{
    width: 100%;
    color: white;
    text-align: center;
}

.testimonials .testimonials-container{
    width: 80%;
    height: fit-content;
    display: grid;
    margin: auto;
    grid-template-columns: repeat(auto-fit, 27rem);
    justify-content: space-evenly;
    padding: 50px 0px;
    transition: .3s;
}

.testimonials .testimonials-container .testimonials-card{
    height: fit-content;
    padding: 30px 40px;
    color: #5c5e5d;
    display: block;
    overflow: hidden;
    margin: 20px 0px;
    /* background: transparent; */
    background: white;
    border: 1px solid #c6f50a6b;
    border-left: 3px solid #c6f50a;
}

.testimonials .testimonials-container .testimonials-card .review-image{
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50px;
    margin-bottom: 15px;
}

.testimonials .testimonials-container .testimonials-card .review-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials .testimonials-container .testimonials-card i{
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 2px solid rgb(84, 84, 84);
    color: rgb(84, 84, 84);
}

.testimonials .testimonials-container .testimonials-card p{
    font-size: 13px;
    color: rgba(83, 83, 83, 0.922);
}

.testimonials .testimonials-container .testimonials-card h5{
    margin-bottom: 7px;
    font-size: 20px;
    letter-spacing: 1px;
    color: rgb(84, 84, 84);
}

@media(max-width: 500px){
    .testimonials .testimonials-container{
        grid-template-columns: repeat(auto-fit, 21rem);
        transition: .3s;
    }
}

@media(max-width: 400px){
    .testimonials .testimonials-container{
        grid-template-columns: repeat(auto-fit, 19rem);
        transition: .3s;
    }

    .testimonials .testimonials-title  h1{
        font-size: 30px;
    }
}
/* testimonials design end */



/* ------------------------------------------------------------------------------------------------------------------------ */
/* ======================================================================================================================== */
/* ------------------------------------------------------------------------------------------------------------------------ */




/* contact design start */
.contact{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    background: rgb(60, 60, 60);
    padding: 50px 0px;
}

.contact .contact-container{
    width: 90%;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(auto-fit, 22rem);
    justify-content: space-evenly;  
}

.contact .contact-container .contact-card{
   height: 300px;
   padding: 20px 20px;
   display: block;
   margin: 20px 0px;
}

.contact .contact-container .contact-card .contact-left-title{ 
   font-size: 18px;
   font-weight: 600;
   color: white;
 }

 .contact .contact-container .contact-card p{
    margin: 15px 0px;
    color: white;
    font-size: 15px;
 }

 .contact .contact-container .contact-card span{
    margin: 15px 0px;
    color: white;
    font-size: 14px;
 }

 .contact .contact-container .contact-card input{
    outline: none;
    width: 100%;
    padding: 6px 5px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 247, 255, 1);
 }

 .contact .contact-container .contact-card textarea{
    width: 100%;
    height: 100px;
    resize: none;
    outline: none;
    padding: 5px 5px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 247, 255, 1);
 }

 .contact .contact-container .contact-card i{
    margin-right: 5px;
 }

 .contact .contact-container .contact-card .contact-btn{
    padding: 12px 20px;
    color: white;
    font-size: 13px;
    border: 1px solid #c6f50a;
    background: transparent;
    transition: .3s;
    cursor: po;
}

.contact .contact-container .contact-card .contact-btn i{
    margin-left: 10px;
}

.contact .contact-container .contact-card .contact-btn:hover{
    box-shadow: 0 0 10px #c6f50a;
    color: #c6f50a;
    transition: .3s;
}

@media(max-width: 500px){
    .contact .contact-container{
        grid-template-columns: repeat(auto-fit, 21rem); 
    }
}
/* contact design end */



/* footer design start */
.footer{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #e23506;
    color: white;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.223);
    font-size: 14px;
}


.footer span p{
    margin: 0px 10px;
}
/* footer design end */