/* section header text format */
body{
    background-color: var(--color-light);
}
.h1-center {
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-transform: uppercase;
}
.h1-center span{
    color: var(--primary-color);
}
.title-header {
    text-align: center;
    text-transform: initial;
    font-size: large;
    font-family: 'Courier New', Courier, monospace;
    margin: 1em;
}

.section {
    padding: 5em;
}


/* end section  header text formating */

.home-page {
    margin-right: 0;
    padding-right: 0;
    width: 100%;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    background-position: right!important;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--color-lighter);
    max-width: 100%;
    padding: 0;
}

.hero-animation {
    display: flex;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    max-height: 30em;
}

.hero-animation .hero-content-container {
    padding: 2.5em;
    min-width: 100%;
    height: 30em;
    margin: 0;
}

.hero-animation img {
    position: absolute;
    right: 0;
    top: -1em;
    width: 100%;
    height: 100%;
    opacity: .75;
}

.hero-content {
    position: absolute;
    margin-top: 6em;
    max-width: 40%;
    left: 0;
    z-index: 2;
}

#hero-globe {
    width: 100%;
    height: 90%;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: -1em;
    bottom: 0;
    z-index: -1;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--secondary-gradient-color-light);
}

.hero-section div {
    position: relative;
}


.h1-animate1 {
    transform: translateY(-200%);
    transition: all linear 2s;
}

.h1-animate {
    transform: translateY(0%);
    transition: all linear 2s;
}

.hero-content-container .mobile-app {
    max-width: 50%;
    right: 0;
    display: none;
}
.hero-section .title{
    color: var(--primary-color);
}

.hero-section .primary-action-btn {
    position: absolute;
    z-index: 2;
    top: 45%;
    left: 0;
    right: 0;
    padding-left: 2.5em;
}

.hero-section .scroll-btn {
    display: flex;
    justify-content: center;
    margin-top: 4.5em;
}

.hero-section .scroll-btn .btn {
    margin: .5em;
    width: 1em;
    height: 1em;
    border: 1px solid var(--color-light);
    border-radius: 50%;
}

.scroll-btn .btn:hover {
    background-color: var(--color-lighter);
    opacity: .5;
}

.hero-section .about-container {
    background-color: var(--secondary-color-lighter);
    position: relative;
    padding: .5em;
    left: 0;
    right: 0;
    margin: unset auto;
    padding-bottom: 3em;
}

.hero-section .about {
    border-radius: 10px;
    width: 80%;
    margin: auto;
    text-align: center;
}
.hero-section .content{
     color: var(--color-dark);
    box-shadow: 0 0 16px var(--color-light);
    padding: 1em;
    border-radius: 10px;
}

/*-------------- end hero section -----------------*/

.section-2-0 {
   
   background-color: var(--secondary-color-lighter);
   /* clip-path: polygon( */
        /* 0% 0%,   top-left */
        /* 100% 0%, top-right (slightly lower than top-left) */
        /* 100% 100%,bottom-right (slightly higher than bottom-left) */
    /* 0% 92%  bottom-left */
      /* );  */
        clip-path: polygon(
            0% 0%,    /* top left */
            100% 0%,  /* top right */
            100% 70%, /* right side down to curve start */
            90% 75%,  /* curve approximation points */
            80% 78%,
            70% 80%,
            60% 81%,
            50% 82%,  /* bottom middle */
            40% 81%,
            30% 80%,
            20% 78%,
            10% 75%,
            0% 70%    /* back to left side */
          );
       
  clip-path: polygon(
    0% 0%,     /* top-left */
    100% 0%,   /* top-right */
    100% 100%, /* bottom-right corner */
    75% 80%,   /* right slant up to horizontal */
    25% 80%,   /* left slant up to horizontal */
    0% 100%    /* bottom-left corner */
  );
  
   margin: 0;
   padding-bottom: 8em!important;
}
/* ------------------begin .section-2 ----------------- */

.section-2 {
    padding: 3em 0;
    
}

.section-2 .couroser {
    position: relative;
    display: flex;
    flex-flow: wrap;
    margin: auto 5%;
}

/* .section-2 .service-cancel-btn {
    position: absolute;
    top: 0;
    right: 0;
    margin: .5em;
    color: var(--secondary-color-light);
    display: none;
} */

.section-2 .couroser img {
    position: fixed;
    top: 10%;
    bottom 10%;
    z-index: -2;
    left: 0;
    right: 0;
    width: 100%;
    height: 90%;
}

.section-2 .couroser .service-container {
    border-radius: 15px;
    flex: 1;
    flex-grow: 1;
    width: 20em;
    min-width: 15em;
    margin: .5em;
    transition: linear .25s;
    box-shadow: 0 0 16px var(--secondary-color-lighter);
}
.section-2 .service-descirption-container{
    padding: .5em;
}


.section-2 .couroser .service-container:hover {
    transform: translateY(-5%);
    box-shadow: 0 0 48px var(--secondary-color-lighter);
    transition: linear .5s;
}

.section-2 .couroser .service-container:hover svg {
    animation: service-svg-icon .75s infinite ease;
}

@keyframes service-svg-icon {
    0% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.section-2 .couroser .service-container h3 {
    text-align: center;
}

.section-2 .couroser .service-container .svg_img-container {
    background-position: center;
    background-size: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
    height: 10em;
    padding: 0;
    margin: 0;
    text-align: center;
    vertical-align: middle;
    background-color: var(--secondary-color-lighter);
}

.section-2 .couroser .service-container svg {
    width: 159px;
    height: 152px;
}


.section-2 .service-container .service-description {
    color:var(--color-dark);
}

.section-2 .service-content {
    display: none;
}

.section-2 .service-container .service-description span {
    margin: .5em!important;
}


/* ------------------end .section-2 ----------------- */


/* ------------------begin .development section----------------- */

.section-2-1 {
    background-color: var(--color-light);
}
.development-section {
    background-color: var(--secondary-color-lighter);
    clip-path: polygon(
    50% 0%,   /* top point */
    100% 20%, /* upper right corner */
    100% 100%, /* lower right corner */
    /* 50% 100%, bottom point */
    0% 100%,   /* lower left corner */
    0% 20%    /* upper left corner */
  );
  padding-top: 7em;
  padding-bottom: 7em;
}

.development-section h4 {
    margin: .5em 0;
}

.development-section .d-container {
    margin-top: 2.5em;
    display: flex;
    justify-content: center;
}

.development-section .sub-d-container .arrow-chord div {
    width: 12em;
    height: 1em;
    background-color: var(--secondary-color-light);
}

.development-section .row {
    display: flex;
    align-items: center;
    font-size: smaller;
}

.development-section .row .svg-icon {
    box-shadow:0 0 2px var(--secondary-color-light);
    background-color: var(--color-lighter);
    width: 2em;
    height: 2em;
    border-radius: 50%;
    padding: .75em;
    transform: scale(.95);
}

.development-section .row svg {
    width: 2em;
    height: 2em;
    fill: var(--secondary-color);
}
.development-section .arrow-chord svg{
    fill: var(--secondary-color-light);
}

.development-section .row .descriptn {
    width: 16em;
    padding: .5em;
    border-radius: 15px 15px 0 15px;
    box-shadow: 0 0 2px var(--secondary-color-light);
    background-color: var(--color-lighter);
    transition: .25s linear;
    z-index: 2;
}
.development-section .row .descriptn span {
    color: var(--color-dark);
}
.development-section .row:hover .descriptn {
    box-shadow: 0 0 2px var(--secondary-color-light);
    transform: translate3d(2px, 3px, 4px);
    transition: .25s linear;
}



/* begin first .sub-container-1 */

.development-section .sub-container-1 .row .integration-testing {
    margin-left: 0em;
}

.development-section .sub-container-1 .row .deployment {
    margin-left: 5em;
}

.development-section .sub-container-1 .row .maintenance {
    margin-left: 8.5em;
}


/* end first .sub-container-1 */


/* begin second .sub-container-2 */

.development-section .row .integration-testing {
    margin-left: 9em;
}

.development-section .row .deployment {
    margin-left: 5.5em;
}

.development-section .row .maintenance {
    margin-left: .5em;
}

/* end second .sub-container-2 */


.row:hover svg {
    animation: dev-svg-icon .75s infinite ease;
}

@keyframes dev-svg-icon {
    0% {
        transform: rotate(-20deg);
        /* transform: scale(1.1); */
    }
    50% {
        transform: rotate(20deg);
        /* transform: scale(1); */
    }
    100% {
        transform: rotate(-20deg);
    }
}

.development-section .link-chord {
    background-color:var(--secondary-color-light);
    height: .25em;
}

.development-cycle .requirement-chord {
    width: .25em;
}

.development-cycle .design-chord {
    width: 3em;
}

.development-cycle .implementation-chord {
    width: 7.5em;
}

.development-cycle .sub-container-2 {
    display: none;
}

.development-cycle .mid-arrow-chord-1 {
    display: none;
}

.development-cycle .mid-arrow-chord {
    display: flex;
    align-items: flex-end;
    margin-bottom: 1.5em;
}

.development-cycle .sub-container-1 .integration-testing-chord {
    width: 9em;
}

.development-cycle .sub-container-1 .deployment-chord {
    width: 4em;
}

.development-cycle .sub-container-1 .maintenance-chord {
    width: .5em;
}

.development-cycle .integration-testing-chord {
    width: .5em;
}

.development-cycle .deployment-chord {
    width: 4em;
}

.development-cycle .maintenance-chord {
    width: 9em;
}

.development-section .arrow-chord {
    margin: 0;
    padding: 0;
    margin-bottom: -.5em;
    margin-top: -.15em;
    margin-left: 11.5em;
}


/* ------------------end .development section ----------------- */


/* ----------------begin section-3 why choose us/features------------- */

.section-3 {
    background-color: var(--secondary-color-lighter);
    clip-path: polygon(
        100% 10%, /* upper right corner */
        100% 90%, /* lower right corner */
        0% 100%,   /* lower left corner */
        0% 0%    /* upper left corner */
      );
      padding-top: 8em;
      padding-bottom: 9em;
}

.section-3 .features {
    display: flex;
    flex-flow: wrap;
    justify-content: space-around;
    transform: translateY(150%);
    transition: all 2s ease;
    opacity: 0;
    z-index: -2!important;
    
}

.section-3 .features.active {
    transform: translateY(0%);
    opacity: 1;
}

.features .feature {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 15em;
    margin: 1em;
    padding: 1em;
    border-radius: 5px;
    transition: linear .5s;
    background-color: var(--color-light);
    border-radius: 10px;
}

.features .feature:hover {
    background-color: var(--secondary-color-lighter);
    box-shadow: 0 0 16px var(--color-light);
    transition: linear .5s;
}
.features .feature .svg-container{
    display: flex;
    justify-content: center;
    text-align: center;
}

.features .feature:hover svg{
    animation: features-svg-icon .75s infinite ease;
    text-align: center;
}
.features h4{
    text-align: center;
 }
.features  .feature-description{
    color:var(--color-dark);
    text-align: justify;
}


@keyframes features-svg-icon {
    0% {
        transform: translateY(5px);
    }
   50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(5px);
    }
}


/* start development life cycle */

/* end development life cycle */



/* -----------------start project section---------------- */

.section-23 {
    padding: 5em;
}

.section-23 .project-container {
    display: flex;
    flex-flow: wrap;
}

.section-23 .project {
    width: 45%;
    overflow: hidden;
    background-color: var(--color-lighter);
    box-shadow: 0 0 16px var(--secondary-color-lighter);
    border-radius: 10px;
    margin: .5em;
}

.section-23 .img-container {
    height: 15em;
    overflow-y: scroll;
    width: 110%;
   
}

.section-23 img {
    width: 100%;
   
}

.section-23 .content-container {
    padding: 0 .5em;
}

.section-23 .url-container {
    text-align: right;
    padding: .5em 0;
}


/* ----------------end project css ------------------*/


/*---------------------- start blog css------------------------ */

.section-14 {
    padding-top: 2.5em;
}

.section-14 .title-header {
    text-align: center;
    text-transform: initial;
    font-size: large;
    font-family: 'Courier New', Courier, monospace;
    margin: 1em;
}

.section-14 .couroser {
    display: flex;
    flex-flow: wrap;
    margin: auto;
    justify-content: center;
}

.section-14 .couroser .article {
    position: relative;
    box-shadow: 0 0 8px var(--secondary-color-lighter);
    border-radius: 15px;
    color: black!important;
    background-color: var(--color-lighter);
    flex: 1;
    flex-grow: 0;
    width: 20em;
    min-width: 15em;
    margin: .5em;
    padding: 0;
    padding-bottom: 0;
}

.section-14 .couroser ul {
    margin: 0;
    padding: 0;
}

.section-14 .absolute-bg {
    width: 100%;
    height: 0%;
    position: absolute;
    border-radius: 15px 15px 0 0;
    background-color: var(--secondary-color-lighter);
    transition: ease-out .5s;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border-radius: 10px;
}

.section-14 .absolute-bg .profile-pics {
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    padding: .5em;
}

.section-14 .absolute-bg .profile-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .5em;
    color: #f8f5f8;
}

.section-14 .absolute-bg .profile-container span {
    display: flex;
    align-items: center;
}

.section-14 .absolute-bg .stats-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: var(--color-lighter);
    margin-top: 4em;
    padding: .5em 1em;
    border-radius: 2px;
}

.absolute-bg .stats-container .article-stats {
    margin: .25em;
    display: flex;
    align-items: center;
}
.stats-container svg {
    transform: scale(.5);
    fill: var(--color-light);
    stroke: var(--color-light); 
}


.section-14 .stats-container svg:first-of-type {
    display: none;
    transition: linear .5s;
}


.section-14 .couroser .article:hover .absolute-bg {
    height: 100%;
    background-color: rgb(138, 43, 226, .5);
    transition: ease-out .5s;
}

.section-14 .couroser .img-container {
    background-position: center;
    background-size: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
    height: 10em;
    padding: 0;
    overflow: hidden;
}

.section-14 .couroser .img-container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: ease-out .5s;
}


.section-14 .couroser .img-container img {
    max-width: 100%!important;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: ease-out .5s;
}

.section-14 .couroser .article:hover .img-container img {
    transform: scale(1.25);
    transition: ease-out .5s;
}

.section-14 .couroser .article-content {
    padding: .5em;
}

.couroser .article-content .content{
    color: var(--color-dark);
 }
 
 .couroser .article-cat{
     color: var(--secondary-color-light);
     border-radius: 10px;
     box-shadow: 0 0 1px var(--secondary-color-light);
     background-color: var(--secondary-color-lighter);
     padding: .1em .5em;
     font-size: 12px;
     margin: .5em 0;
     }
/* -------------------end blog css-------------------------------- */

.section-4 {
    background-color: var(--color-lighter);
    margin: 0;
    clip-path: url(#wave-clip);
    padding-top: 12em;
    padding-bottom: 14em;
}

.section-4 .h1-center {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.section-4 .h1-center , .section-4 .title-header{
    text-align: left;
    padding-left: 0%
}
.section-4 .slider {
    width: 90%;
    margin: unset auto;
    overflow: hidden;
}

.section-4 .testimony-container {
    display: flex;
    width: 100%;
    padding-top: 3em;
    padding-bottom: 1em;
}

.section-4 .testimony {
    flex: 1;
    min-width: 28em;
    max-width: 28em;
    justify-content: center;
    text-align: center;
    position: relative;
    border-radius: 40px;
    margin: 3em 5px .5em;
    padding: .5em;
    border-bottom-right-radius: 0;
    box-shadow: 0 0 8px var(--secondary-color-lighter);
    transition: .25s ease-in-out;
}
.section-4 .testimony:hover{
    transform: scale(.95);
    transition: .25s ease-in-out;
}
.section-4 .testimony img {
    position: absolute;
    right: 50%;
    top: -15%;
    border-radius: 50%;
    width: 5em;
    height: 5em;
    background-color: var(--color-light);
}
.section-4 .testimony .review-user {
    margin-top: 2.5em;
    text-transform: capitalize;
    color: var(--color-darker);
    /* text-align: left; */
}
.section-4 .testimony .review-content {
    color: var(--color-dark);
}
.section-4 .testimony b {
    font-size: 1.25em;
}




/* -----------------begin faqs section -----------------*/

.section-5 {
    margin: 0;
    padding-top: 3em;
    padding-bottom: 3em;
}

.section-5 .title-header {
    text-align: center;
    text-transform: initial;
    font-size: large;
    font-family: 'Courier New', Courier, monospace;
    margin: 1em;
}

.section-5 .question {
    margin: .5em;
    max-width: 80%;
    margin: auto;
    box-shadow: 0 0 8px var(--secondary-color-lighter);
    border-radius: 5px;
}

.section-5 p {
    display: flex;
    justify-content: space-between;
    font-size: large;
    font-weight: bolder;
    text-transform: capitalize;
    padding: .5em;
    background-color: var(--color-light);
    border-radius: 5px;
}
.section-5 .question:hover .section-5 p {
    background-color: var(--secondary-color-lighter);
}
.section-5 .faq-btn {
    border-radius: 0;
    padding: .25em .5em;
    border: none!important;
    color: var(--color-lighter);
    background-image: var(--primary-gradient-color);
    border-radius: 5px;
}

.btn-2 {
    display: none;
}

.section-5 .reply {
    display: none;
    padding: 0 .5em .5em;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--color-dark);
}

.section-5 .contact-support {
    text-align: center;
}


/*---------------------- end faqs section----------------- */

.section-6 {
    position: absolute;
    top: 20%;
    transition: all 2s ease;
}

@media screen and (max-width: 992px) {
    .hero-section .hero-content-container {
        padding: .5em;
    }
    .hero-section .hero-content {
        max-width: 60%;
    }
    .hero-section .primary-action-btn {
        padding-left: 0;
        top: 40%;
    }
    .hero-section .scroll-btn {
        margin-top: 4.5em;
    }
    .hero-section .action-btn {
        padding: .5em;
    }
    .hero-section .action-link {
        padding: .5em;
    }
    /* .about-container {
       
    } */
    .section-2 h2 {
        font-size: medium;
    }
    .title-header {
        width: 100%;
        margin: .25em;
        font-size: medium;
    }
    .development-section {
        clip-path: polygon(
        50% 0%,   /* top point */
        100% 10%, /* upper right corner */
        100% 100%, /* lower right corner */
        0% 100%,   /* lower left corner */
        0% 10%    /* upper left corner */
      );
    }
    .section-4 {
        clip-path: url(#wave-clip);
        padding-top: 16em;
        padding-bottom: 14em;
    }

    .section-4 .testimony {
        min-width: 15em;
        max-width: 15em;
    }
    .section-14 {
        padding: 1em;
    }
    .section-14 .title-header {
        margin: .25em;
        font-size: medium;
    }
    .section-14 .couroser {
        margin: auto .5em;
    }
    .section-23 {
        padding: 1em;
    }
    .couroser .article {
        width: 22.5em;
        min-width: 19.5em;
    }
    /* begin .development-cycle section */
    .development-section .d-container {
        flex-direction: column;
        align-items: center;
    }
    .development-cycle .mid-arrow-chord-1 {
        display: block;
    }
    .development-cycle .mid-arrow-chord {
        display: none;
    }
    .development-cycle .sub-container-1 {
        display: none;
    }
    .development-cycle .sub-container-2 {
        display: block;
    }
    /* end .development-cycle section */
}

@media screen and ( max-width: 600px) {
    .hero-animation {
        
        max-height: 22em;
    }
    
    .section {
        padding: 3em;
    }
    .hero-section .hero-content-container {
        padding: 2em .5em;
        height: 20em;
    }
    
    .hero-section .hero-content {
        max-width: 100%;
        margin-top: 4em;
        font-size: 14px!important;
    }
    .hero-section .hero-content h1{
    margin-top: 0;
      margin-bottom: 0;
    }
    .hero-section .primary-action-btn {
        padding-left: 0;
        top: 25%;
    }
    
    .hero-section .scroll-btn {
        margin-top: 2em;
    }
    .section {
        padding: 3em 2.5em;
    }
    .section-2-0{
        clip-path: polygon(
    0% 0%,     /* top-left */
    100% 0%,   /* top-right */
    100% 100%, /* bottom-right corner */
    75% 90%,   /* righ slant up to horizontal */
    25% 90%,   /* left slant up to horizontal */
    0% 100%    /* bottom-left corner */
  );
  
    }
    .title-header {
        font-size: medium!important;
        margin: 0!important;
    
    }
   
    .slider {
        width: 100%!important;
    }
    .development-section {

        clip-path: polygon(
        50% 0%,   /* top point */
        100% 5%, /* upper right corner */
        100% 100%, /* lower right corner */
        0% 100%,   /* lower left corner */
        0% 5%    /* upper left corner */
      );
      padding-top: 4em;
  padding-bottom: 8em;
    }
    .section-3 {
        padding: 10em 3em;
        clip-path: polygon(
            100% 5%, /* upper right corner */
            100% 95%, /* lower right corner */
            0% 100%,   /* lower left corner */
            0% 0%    /* upper left corner */
          );
          padding-top: 10em;
          padding-bottom: 12em;
    }
    .features .feature {
        position: relative;
        flex: 1;
        display: flex;
        flex-direction: column;
        min-width: 15em;
        margin-left: -.05em;
    }
    .section-4 {
        clip-path: url(#wave-clip-mobile);
        padding-top: 20em;
        padding-bottom: 18em;
    }
   
    .section-4 .testimony {
        min-width: 13em!important;
        max-width: 13em;
    }
    .section-4 .testimony .review-user {
        margin-top: 2em;
    }
    .section-5 {
        padding-top: 0em;
    }
    .section-5 .question {
        max-width: 100%;
    }
    .section-23 .project {
        width: 100%!important;
    }
}

@media screen and (max-width:400px) {
    /* ---------begin .development-cycle section------------- */
    .development-section .d-container {
        flex-direction: column;
        align-items: center;
        max-width 20em!important;
    }
    .development-section .sub-container-1 {
        margin: 0 1em!important;
    }
    .development-section .row .descriptn {
        width: unset!important;
    }
    .development-section .row .integration-testing {
        margin-left: 0;
    }
    .development-section .row .deployment {
        margin-left: 0;
    }
    .development-section .row .maintenance {
        margin-left: 0;
    }
    .development-section .arrow-chord {
        margin-left: 8.5em;
    }
    /* ---------end .development-cycle section------------- */
    .section-4 .testimony {
        min-width: 10em;
        max-width: 10em;
    }
}