/* INDEX FILE */

@import url("index.css");

/* MOBILE APP SERVICES  */

.mobileservices {
    position: relative;
}

.mobileservices .description {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 10px;
}

.mobileservices h4 {
    font-size: 28px;
    font-weight: bold;
}

.mobileservices p {
    font-size: 15px;
    width: 70%;
    font-weight: 500;
}

.mobileservices img {
    width: 70%;
}

.mobileservices a {
    border: none;
    display: inline-block;
    text-align: center;
    color: #fff;
    font-weight: bold;
    width: 160px;
    font-size: 13px;
    padding: 8px;
    border-radius: 20px;
}

@media screen and (max-width: 1194px) {}

@media screen and (max-width: 991px) {
    .mobileservices .description {
        height: 210px;
    }
    .mobileservices p {
        font-size: 14px;
        width: 90%;
    }
}

@media screen and (max-width: 763px) {
    .mobileservices h4 {
        font-size: 24px;
    }
    .mobileservices p {
        font-size: 13px;
        width: 95%;
    }
    .mobileservices a {
        width: 130px;
        font-size: 11px;
        padding: 6px;
    }
    .mobileservices img {
        width: 80%;
        display: block;
        margin: 70px 10px;
    }
}


/* SUCCESSFULL PROJECTS */

.sucessfull-projects {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.sucessfull-projects .project {
    position: relative;
    margin-top: 60px;
}

.sucessfull-projects .project-bg {
    width: 80%;
    height: 300px;
    display: block;
    background-image: url(../images/web/cstech-webproject-background.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
}

.sucessfull-projects .project img {
    width: 100%;
    float: right;
    transition: 0.6s all;
    height: 100%;
}

.sucessfull-projects .description {
    position: absolute;
    top: 30px;
    left: 0;
    height: 100%;
    display: flex;
    padding-left: 10px;
    justify-content: center;
    flex-direction: column;
}

.sucessfull-projects .description h1 {
    font-weight: bold;
    font-size: 36px;
    transition: 0.6s all;
}

.sucessfull-projects .description .outline {
    background: #6d64ff;
    height: 6px;
    margin: 10px 0;
    width: 60px;
}

.sucessfull-projects .description p {
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s all;
    color: #13413c;
}

.sucessfull-projects .project:hover .description h1 {
    transform: translate(-7px, -7px);
}

.sucessfull-projects .project:hover .description p {
    transform: translate(-7px, 7px);
}

.sucessfull-projects .project:hover .project-bg img {
    transform: translateX(7px);
}

@media screen and (max-width: 991px) {
    .sucessfull-projects .description h1 {
        font-size: 26px;
    }
    .sucessfull-projects .description p {
        font-size: 16px;
    }
    .page-title {
        height: unset;
    }
}

@media screen and (max-width: 763px) {
    .sucessfull-projects .description h1 {
        font-size: 28px;
    }
    .sucessfull-projects .description p {
        font-size: 14px;
    }
}