/*-------------------------------------------------------------------------------------------------*/
/*start home section*/



.home {
    height: 550px;
    overflow: hidden;
}

.home .slides {
    width: 200%;
    height: 100%;
    animation: slides 5s infinite;
    display: flex;
}

@keyframes slides {
    0% {
        transform: translateX(0);
    }


    50% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }

}

.home .slides .slide-one {
    width: 100vw;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.507)), url(img/home/carousel-1.jpg);
    background-position: center;
    background-size: cover;
}

.home .slides .slide-two {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.507)), url(img/home/carousel-2.jpg);
    background-position: center;
    background-size: cover;
}

.home .slides .slide-one .content {
    padding: 5% 10%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home .slides .slide-one .content h2,
.home .slides .slide-one .content ul {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #eee;
    font-weight: unset;
}

.home .slides .slide-one .content ul li {
    margin-right: 10px;
}

.home .slides .slide-one .content ul li i {
    color: #fda12b;
    font-size: 15px;
}

.home .slides .slide-one .content p {
    width: fit-content;
    height: 50%;
    display: flex;
    align-items: center;
    font-size: 80px;
    font-weight: bold;
    color: #eee;
}

.home .slides .slide-one .content .btn {
    height: 15%;
    width: 200px;
    background-color: aqua;
    border: unset;
    background-color: #fda12b;
    color: #eee;
    font-size: 17px;
    text-transform: capitalize;
}


@media (max-width:780px) {
    .home .slides .slide-one .content {
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .home .slides .slide-one .content h2 {
        justify-content: center;
    }

    .home .slides .slide-one .content p {
        font-size: 45px;
    }

    .home .slides .slide-one .content .btn {
        height: 10%;
    }

    .home .slides .slide-one .content ul {
        justify-content: center;
    }

    .home .slides .slide-one .content ul li,
    .home .slides .slide-one .content ul li i {
        font-size: 10px;
    }
}

@media (max-width :280px) {
    .home {
        height: 200px;
    }

    .home .slides .slide-one .content {
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 0px;
    }

    .home .slides .slide-one .content ul li,
    .home .slides .slide-one .content ul li i {
        font-size: 5px;
    }

    .home .slides .slide-one .content h2 {
        justify-content: center;
        font-size: 10px;
    }

    .home .slides .slide-one .content p {
        font-size: 20px;
        height: fit-content;
    }

    .home .slides .slide-one .content .btn {
        width: 35%;
        height: 5%;
        font-size: 5px;
    }

    .home .slides .slide-one .content ul {
        justify-content: center;
    }
}

/*end home section*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*start section one*/



.one {
    height: 600px;
    display: flex;
    align-items: center;
}

.one .content {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.one .content .left-box {
    width: 49%;
    height: 90%;
}


.one .content .right-box {
    width: 49%;
    height: 100%;
}

.one .content .left-box {
    background: url(img/section-one/about.jpg);
    background-size: cover;
    position: relative;
}

.one .content .left-box .year {
    width: 180px;
    height: 180px;
    background-color: #fda12b;
    outline: 1px solid white;
    outline-width: 20px;
    position: absolute;
    top: -5%;
    left: -5%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.one .content .left-box .year span {
    font-size: 40px;
    color: white;
    text-transform: capitalize;
}

.one .content .left-box .year p {
    font-size: 20px;
    color: white;
    text-transform: capitalize;
}


.one .content .right-box .top-box {
    width: 100%;
    height: 25%;
    padding-left: 20px;
    border-left: 1px solid #fda12b;
    border-width: 5px;

}

.one .content .right-box .top-box span {
    font-size: 17px;
    color: gray;
    text-transform: uppercase;
}

.one .content .right-box .top-box h2 {
    font-size: 40px;
    color: black;
}

.one .content .right-box .center-box {
    width: 100%;
    height: 55%;
}


.one .content .right-box .center-box {
    display: flex;
    align-items: center;
    color: gray;
}

.one .content .right-box .bottom-box {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.one .content .right-box .bottom-box .mark {
    display: flex;
    align-items: center;
    width: fit-content;
}

.one .content .right-box .bottom-box .mark i {
    font-size: 40px;
    margin-right: 15px;
    color: #fda12b;
}

.one .content .right-box .bottom-box .mark h2 {
    font-size: 25px;
    font-weight: bold;
}

@media (max-width :1280px) {
    .one {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.600), rgba(0, 0, 0, 0.600)),
            url(img/about/carousel-1.jpg);
        background-position: center;
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .one .content {
        padding-top: 20px;
        padding-bottom: 20px;
        justify-content: center;
    }

    .one .content .left-box {
        display: none;
    }

    .one .content .right-box .top-box {
        padding: unset;
        border-left: unset;
        text-align: center;

    }

    .one .content .right-box .top-box h2 {
        color: white;
    }

    .one .content .right-box {
        width: 80%;
    }

    .one .content .right-box p {
        color: white;
    }

    .one .content .right-box .bottom-box .mark {
        width: 33%;
        gap: 1%;
        background-color: #eeeeee85;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@media (max-width :780px) {
    .one .content .right-box {
        width: 100%;
    }

    .one .content .right-box .top-box {
        padding: unset;
        border-left: unset;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .one .content .right-box .top-box h2 {
        font-size: 30px;
    }

    .one .content .right-box .center-box {
        align-items: center;
        text-align: center;
    }

    .one .content .right-box .bottom-box {
        height: 30%;
    }

    .one .content .right-box .bottom-box .mark {
        width: 33%;
        gap: 1%;
        background-color: #eeeeee85;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@media (max-width :450px) {
    .one .content .right-box .top-box span {
        font-size: 10px;
    }

    .one .content .right-box .top-box h2 {
        font-size: 20px;
    }

    .one .content .right-box .center-box p {
        font-size: 10px;
    }


    .one .content .right-box .bottom-box .mark {
        font-size: 10px;
    }

    .one .content .right-box .bottom-box .mark p {
        padding-top: 10px;
        height: 50%;
    }

    .one .content .right-box .bottom-box .mark i {
        font-size: 15px;
        height: 30%;
        padding-top: 10px;
        margin: unset;
    }
}

/*end section one*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*start section two*/



.two {
    height: 420px;
    background-color: green;
}

.two .boxs {
    width: 100%;
    height: 100%;
    display: flex;
}

.two .boxs .box {
    width: 25%;
    height: 100%;
    padding: 50px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.800), rgba(0, 0, 0, 0.800)), url(img/section-two/fact-1.jpg);
    background-size: cover;
}

.two .boxs .box2 {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.800), rgba(0, 0, 0, 0.800)), url(img/section-two/fact-2.jpg);
    background-size: cover;
}

.two .boxs .box3 {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.800), rgba(0, 0, 0, 0.800)), url(img/section-two/fact-3.jpg);
    background-size: cover;
}

.two .boxs .box4 {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.800), rgba(0, 0, 0, 0.800)), url(img/section-two/fact-4.jpg);
    background-size: cover;
}


.two .boxs .box span {
    font-size: 110px;
    -webkit-text-stroke: 2px #fda12b;
    color: transparent;
}

.two .boxs .box p,
.two .boxs .box a,
.two .boxs .box a i {
    color: white;
    text-transform: capitalize;
    font-size: 15px;
}

.two .boxs .box h2 {
    color: white;
    text-transform: capitalize;
    font-size: 20px;
}


.two .boxs .box p {
    line-height: 25px;
}

.two .boxs .box a {
    text-transform: uppercase;
    transition: 0.5s;

}

.two .boxs .box a i {
    transition: 0.5s;
}

.two .boxs .box a:hover i {
    color: #fda12b;
}

.two .boxs .box a:hover {
    color: #fda12b;
}

@media (max-width:1280px) {
    .two {
        margin-bottom: 500px;
    }

    .two .boxs {
        display: flex;
        flex-wrap: wrap;
    }

    .two .boxs .box {
        width: 50%;
    }
}

@media (max-width:530px) {
    .two {
        margin-bottom: 1300px;
    }

    .two .boxs .box {
        width: 100%;
    }
}

/*end section two*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*start section three*/


.one .content .img {
    background: url(img/section-three/feature.jpg);
    background-size: cover;
}


.one .content .right-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.one .content .right-box .center {
    height: 15%;
}

.one .content .right-box .bottom {
    height: 50%;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    padding: unset;
}

.one .content .right-box .bottom .box {
    width: 49%;
    height: 48.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

@media (max-width:1280px) {
    .three {
        display: none;
    }

}

/*end section three*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*start section four*/




.four {
    margin-top: 100px;
    height: 1200px;
}

.four .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.four .content .top-box {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.four .content .top-box .left-box {
    width: 50%;
    height: 100%;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #fda12b;
    border-width: 5px;
}

.four .content .top-box .left-box span {
    color: gray;
}

.four .content .top-box .left-box h2 {
    font-size: 40px;
}

.four .content .top-box a {
    width: 18%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fda12b;
    color: #eee;
}

.four .content .boxs {
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.four .content .boxs .top {
    width: 100%;
    height: 45%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.four .content .boxs .top .box {
    width: 31%;
    height: 99%;
    display: flex;
    flex-direction: column;
    margin: unset;
}

.four .content .boxs .top .box .img-box {
    width: 100%;
    height: 60%;
    background-image: url(img/section-four/service-1.jpg);
    background-size: cover;
}

.four .content .boxs .top .two .img-box {
    background-image: url(img/section-four/service-2.jpg);
    background-size: cover;
}

.four .content .boxs .top .three .img-box {
    background-image: url(img/section-four/service-3.jpg);
    background-size: cover;
}

.four .content .boxs .top .four .img-box {
    background-image: url(img/section-four/service-4.jpg);
    background-size: cover;
}

.four .content .boxs .top .five .img-box {
    background-image: url(img/section-four/service-5.jpg);
    background-size: cover;
}

.four .content .boxs .top .six .img-box {
    background-image: url(img/section-four/service-6.jpg);
    background-size: cover;
}

.four .content .boxs .top .box .content {
    width: 100%;
    height: 40%;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    background-color: white;
}

.four .content .boxs .top .box .content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #fda12b;
    z-index: -1;
    transition: 1s;
}

.four .content .boxs .top .box:hover .content::before {
    height: 100%;
}

.four .content .boxs .top .box:hover .content h3,
.four .content .boxs .top .box:hover .content p,
.four .content .boxs .top .box:hover .content a {
    color: #eee;
}


.four .content .boxs .top .box .content h3 {
    font-size: 20px;
    transition: 1s;
}

.four .content .boxs .top .box .content p {
    font-size: 15px;
    color: gray;
    transition: 1s;
}

.four .content .boxs .top .box .content a {
    font-size: 15px;
    color: #fda12b;
    transition: 1s;
}

@media (max-width:880px) {

    .four {
        height: 900px;
    }

    .four .content .boxs .top .box {
        position: relative;
        width: 33.33%;
    }

    .four .content .boxs .top .box .img-box {
        width: 100%;
        height: 100%;
    }

    .four .content .boxs .top .box .content {
        position: absolute;
        top: 0%;
        background-color: rgba(0, 0, 0, 0.600);
        height: 100%;
    }

}

@media (max-width:710px) {

    .four {
        height: 1200px;
        margin-bottom: 400px;
    }

    .four .content .top-box {
        height: 28%;
        flex-direction: column;
    }

    .four .content .top-box .left-box {
        width: 100%;
        border: unset;
        padding: unset;
        text-align: center;
    }

    .four .content .top-box a {
        width: 200px;
        height: 50px;
        margin-bottom: 20px;
    }


    .four .content .boxs .top {
        flex-wrap: wrap;
    }

    .four .content .boxs .top .box {
        width: 50%;
        height: 100%;
    }

}

/*end section four*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*start section five*/




.five {
    height: 400px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.700), rgba(0, 0, 0, 0.700)), url(img/section-five/carousel-2.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
}

.five .content {
    width: 100%;
    height: 75%;
    display: flex;
}

.five .content .left-box {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.five .content .right-box {
    width: 60%;
    height: 100%;
}


.five .content .left-box .text {
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 15px;
    border-left: 1px solid #fda12b;
    border-width: 5px;
}

.five .content .btn {
    display: none;
}

.five .content .left-box .text span,
.five .content .left-box .text h2 {
    color: white;
}

.five .content .left-box .text h2 {
    font-size: 35px;
}

.five .content .left-box p {
    color: white;
    line-height: 25px;
    height: 30%;
    display: flex;
    font-size: 15px;
    align-items: center;
    padding-right: 20px;
}

.five .content .right-box form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.five .content .right-box form .top,
.five .content .right-box form .center {
    width: 100%;
    height: 35%;
}

.five .content .right-box form .top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 11px;
}

.five .content .right-box form .top input {
    width: 49%;
    height: 45%;

}

.five .content .right-box form .top input,
.five .content .right-box form .center textarea {
    background-color: #182333;
    border: unset;
    outline: unset;
    padding: 10px 20px;
}

.five .content .right-box form .top input::placeholder,
.five .content .right-box form .center textarea::placeholder {
    text-transform: capitalize;
    font-size: 15px;
    transition: 0.5s;
}

.five .content .right-box form .top input:focus::placeholder,
.five .content .right-box form .center textarea:focus::placeholder {
    font-size: 10px;
}

.five .content .right-box form .center textarea {
    width: 100%;
    height: 100%;
}

.five .content .right-box form .bottom {
    width: 100%;
    height: 20%;
}

.five .content .right-box form .bottom button {
    height: 100%;
    width: 100%;
    font-size: 15px;
    color: white;
    background-color: #fda12b;
    border: unset;
    outline: unset;

}


@media (max-width :1280px) {
    .five {
        width: 100vw;
        overflow: hidden;
    }

    .five .content {
        width: 200%;
        align-items: center;
        position: relative;
        gap: 20%;
    }

    .five .content .btn {
        display: unset;
        width: 200px;
        height: 50px;
        background-color: #fda12b;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        transition: 0.5s;
        cursor: pointer;
    }

    .five .content .btn a {
        color: white;
    }

    .five .content .btn:hover {
        background-color: white;
    }

    .five .content .btn:hover a {
        color: #fda12b;
    }

    .five .content .right-box,
    .five .content .left-box {
        width: 90%;
        height: 100%;
        position: absolute;
    }

    .five .content .left-box {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-right: 200px;
        height: 70%;
    }

    .five .content .left-box .text {
        width: 45%;
    }

    .five .content .left-box p {
        width: 60%;
    }

    .five .content .right-box {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 70%;
    }

    .five .content .right-box form {
        width: 60%;
    }

    .five .content .right-box form textarea,
    .five .content .right-box form button {
        width: 100%;
    }

    .five .content .right-box form .top input {
        width: 48%;
    }


    .five .content .right-box {
        right: -100%;
    }


    .five .content:hover {
        animation: slide 10s;
    }

    @keyframes slide {
        0% {
            transform: translatex(0);
        }

        50% {
            transform: translatex(-100%);
        }

        75% {
            transform: translatex(-100%);
        }

        100% {
            transform: translatex(-100%);
        }
    }

}

@media (max-width:780px) {
    .five .content {
        padding: unset;
    }

    .five .content .left-box {
        flex-direction: column;
        width: 100%;
        height: 100%;
        align-items: center;
        margin-left: 50px;
    }

    .five .content .right-box {
        width: 100%;
    }

    .five .content .left-box .text {
        padding: 0;
        border: unset;
        text-align: center;
        width: 100%;
        font-size: 10px;
        height: 30%;
    }

    .five .content .left-box .text span {
        color: #fda12b;
    }

    .five .content .left-box .text h2 {
        font-size: 30px;
        width: 100%;
    }

    .five .content .left-box p {
        height: 20%;
        text-align: center;
        font-size: 15px;
        padding: unset;
    }

    .five .content .left-box .btn {
        height: 10%;
        width: 100px;
    }

}

@media (max-width:600px) {

    .five .content .left-box {
        justify-content: center;
    }

    .five .content .left-box .text h2 {
        font-size: 150%;
        width: 100%;
    }

    .five .content .left-box p {
        display: none;
    }
}

@media (max-width: 400px) {
    .five .content .right-box form .top input {
        width: 47%;
    }

    .five .content .right-box form .top input::placeholder,
    .five .content .right-box form .center textarea::placeholder {
        font-size: 5px;
    }
}

/*end section five*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*start section six*/



.six {
    height: 700px;
    display: flex;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.six .content {
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.six .content .top {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: space-between;
}

.six .content .top .text,
.six .content .top p {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.six .content .top .text {
    padding-left: 20px;
    border-left: 1px solid #fda12b;
    border-width: 5px;
}

.six .content .top .text span {
    color: gray;
    font-size: 18px;
}

.six .content .top .text h2 {
    font-size: 35px;
    text-transform: capitalize;
}

.six .content .top p {
    color: gray;
}

.six .content .boxs {
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: space-between;
}

.six .content .boxs .box {
    width: 31.5%;
    height: 100%;
}

.six .content .boxs .box {
    background-image: url(img/section-six/team-1.jpg);
    background-size: cover;
}

.six .content .boxs .box1 {
    background-image: url(img/section-six/team-2.jpg);
    background-size: cover;
}

.six .content .boxs .box2 {
    background-image: url(img/section-six/team-3.jpg);
    background-size: cover;
}

.six .content .boxs .box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.six .content .boxs .box .hover-box {
    margin-bottom: 50px;
    width: 70%;
    background-color: white;
    padding: 20px;
    transition: 1.0s;
}

.six .content .boxs .box .hover-box h3 {
    font-size: 22px;
}

.six .content .boxs .box:hover .hover-box {
    width: 100%;
    letter-spacing: 5px;
}


@media (max-width:780px) {
    .six {
        height: 2000px;
    }

    .six .content {
        gap: 2%;
    }

    .six .content .boxs {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        height: 90%;
    }

    .six .content .boxs .box {
        width: 80%;
    }

    .six .content .top {
        height: 8%;
        position: relative;
    }

    .six .content .top .text {
        padding-left: 0;
        border-left: unset;
        padding: 0 20px;
        border-right: 1px solid #fda12b;
        border-width: 5px;
        background-color: white;
        z-index: 1;
    }

    .six .content .top p {
        padding-left: 20px;
        position: absolute;
        right: 51%;
        animation: p 5s;
        z-index: -1;
    }

    @keyframes p {
        0% {
            right: 51%;
        }

        100% {
            right: 0;
        }
    }
}

@media (max-width:580px) {
    .six .content .top p {
        font-size: 50%;
    }

    .six .content .top .text span,
    .six .content .top .text h2 {
        font-size: 100%;
    }
}

/*end section six*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*start seven section*/



.seven {
    height: 500px;
}

.seven .content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.seven .content .left-box {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.seven .content .left-box .top-box,
.seven .content .left-box .bottom-box {
    width: 100%;
    height: 30%;
}

.seven .content .left-box .bottom-box {
    display: flex;
}

.seven .content .left-box .top-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding-left: 10px;
    border-left: 1px solid #fda12b;
    border-width: 5px;
}

.seven .content .left-box .center-box {
    width: 100%;
    height: 20%;
    color: gray;
    line-height: 25px;
}

.seven .content .left-box .bottom-box .clints,
.seven .content .left-box .bottom-box .projects {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.seven .content .left-box .bottom-box .clints span,
.seven .content .left-box .bottom-box .projects span {
    font-size: 50px;
}

.seven .content .left-box .bottom-box .clints span i,
.seven .content .left-box .bottom-box .projects span i {
    color: #fda12b;
}

.seven .content .left-box .bottom-box .clints p,
.seven .content .left-box .bottom-box .projects p {
    font-size: 20px;
    font-weight: bold;
}

.seven .content .left-box .top-box span {
    color: gray;
}

.seven .content .left-box .top-box h2 {
    font-size: 40px;
}

.seven .content .right-box {
    width: 58%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.seven .content .right-box .top {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.seven .content .right-box .top img {
    width: 15%;
}

.seven .content .right-box .top p {
    color: gray;
    font-size: 21px;
    line-height: 25px;
}

.seven .content .right-box .center {
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    position: relative;
}

.seven .content .right-box .center::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background-color: #fda12b;
}

.seven .content .right-box .center h3 {
    font-size: 20px;
}

.seven .content .right-box .center p {
    color: gray;
}

.seven .content .right-box .bottom {
    width: 100%;
    height: 10%;
    margin-bottom: 50px;
    display: flex;
    gap: 10px;
}

.seven .content .right-box .bottom i {
    width: 40px;
    height: 40px;
    border: 1px solid #fda12b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: gray;
}

.seven .content .right-box .bottom i:hover {
    background-color: #fda12b;
    color: white;
    cursor: pointer;
}

@media (max-width:1280px) {
    .seven {
        height: 1000px;
    }

    .seven .content {
        flex-direction: column;
        gap: 4%;
    }

    .seven .content .left-box,
    .seven .content .right-box {
        width: 100%;
        height: 48%;
        justify-content: center;
        align-items: center;
    }

    .seven .content .left-box .top-box {
        text-align: center;
        border: unset;
        padding: unset;
    }

    .seven .content .left-box .top-box span {
        color: #fda12b;

    }

    .seven .content .left-box .center-box p {
        text-align: center;
    }

    .seven .content .left-box .bottom-box {
        width: 80%;
    }

    .seven .content .right-box .top,
    .seven .content .right-box .center,
    .seven .content .right-box .bottom {
        justify-content: center;
        align-items: center;
    }

    .seven .content .right-box .top p {
        text-align: center;
        margin-top: 10px;
    }

    .seven .content .right-box .center::before {
        left: calc(50% - 40px);
    }

    @media (max-width:580px) {
        .seven {
            height: 1200px;
        }

        .seven .content .left-box {
            height: 60%;
        }

        .seven .content .right-box {
            height: 40%;
        }

        .seven .content .left-box .bottom-box {
            flex-direction: column;
            height: 30%;
        }

        .seven .content .left-box .bottom-box .clints,
        .seven .content .left-box .bottom-box .projects {
            width: 100%;
            height: 50%;
            justify-content: center;
            align-items: center;
        }


        .seven .content .left-box .bottom-box .clints span,
        .seven .content .left-box .bottom-box .projects span {
            font-size: 25px;
        }

        .seven .content .left-box .bottom-box .clints p,
        .seven .content .left-box .bottom-box .projects p {
            font-size: 18px;
        }
    }
}

/*end seven section*/
/*-------------------------------------------------------------------------------------------------*/
/*--------------------------------------------start head about us-----------------------------------------------------*/



.head {
    height: 300px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.600), rgba(0, 0, 0, 0.600)), url(img/about/carousel-1.jpg);
    background-size: cover;
    background-position: center;
}

.head .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.head .content h2 {
    font-size: 60px;
    color: white;
}


.head .content .page span {
    color: white;
    margin: 0 5px;
}

.head .content .page a {
    color: white;
}

.head .content .page .dif {
    color: #fda12b;
}

/*--------------------------------------------------end head about us-----------------------------------------------*/
/*--------------------------------------------------start our services-----------------------------------------------*/


.change {
    background: unset;
}

.change .content .left-box .text h2,
.change .content .left-box .text span,
.change .content .left-box p {
    color: black;
}

.change .content .right-box form .top input,
.change .content .right-box form .center textarea {
    background-color: #eee;
}

/*--------------------------------------------------end our services-----------------------------------------------*/