/* INDEX FILE */

@import url("index.css");

/* WEB SERVICES */

.webservices {
    position: relative;
}

.webservices .description {
    height: 300px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 10px;
    margin-top: 10px;
}

.webservices h4 {
    font-size: 28px;
    font-weight: bold;
}

.webservices p {
    font-size: 15px;
    width: 70%;
    font-weight: 500;
}

.webservices img {
    width: 65%;
    margin-top: 10px;
}

.webservices 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) {
    .webservices .description {
        height: unset;
    }
    .webservices p {
        font-size: 14px;
        width: 90%;
    }
    .page-title {
        height: unset;
    }
}

@media screen and (max-width: 763px) {
    .webservices h4 {
        font-size: 24px;
    }
    .webservices p {
        font-size: 13px;
        width: 95%;
    }
    .webservices a {
        width: 130px;
        font-size: 11px;
        padding: 6px;
    }
    .webservices img {
        width: 80%;
        display: block;
        margin: 30px 10px;
    }
}


/* WEBSITE PROCESS */

.website-process {
    text-align: center;
    padding: 100px 30px;
    position: relative;
}

.website-process .description {
    height: 210px;
    flex-direction: column;
    display: flex;
    justify-content: flex-end;
}

.website-process .description p {
    color: #003133;
    position: relative;
    font-family: "Poppins";
}

.website-process img {
    width: 320px;
}

@media screen and (max-width: 991px) {
    .website-process .description {
        height: 200px;
        margin-top: 20px;
    }
    .website-process img {
        width: 200px;
        margin-top: 45px;
    }
}

@media screen and (max-width: 763px) {
    .website-process {
        padding: 50px 30px;
    }
    .website-process .description {
        margin-top: 0;
        display: block;
        height: auto;
        width: 90%;
        margin-top: 20px;
    }
    .website-process img {
        display: none;
    }
    .website-process .description h4 {
        font-size: 22px;
    }
    .website-process .description p {
        font-size: 14px;
    }
}

@media screen and (max-width: 530px) {
    .website-process .description {
        width: 98%;
    }
    .website-process .description h4 {
        font-size: 17px;
        margin-top: 30px;
    }
    .website-process .description p {
        font-size: 13px;
    }
}


/* SUCCESSFULL PROJECTS */

.sucessfull-projects {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.sucessfull-projects .project {
    position: relative;
    margin-top: 60px;
}

.sucessfull-projects .project-bg {
    width: 100%;
    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: 65%;
    float: right;
    transition: 0.6s all;
}

.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;
    }
}

@media screen and (max-width: 763px) {
    .sucessfull-projects .description h1 {
        font-size: 28px;
    }
    .sucessfull-projects .description p {
        font-size: 14px;
    }
}