/* INDEX FILE */

@import url("index.css");

/* INTODUCTION */

.intro-portion {
    /* height: 620px;
  overflow: hidden;
  width: 100%;
  background-image: url("../images/home/cstech-intro-background.jpg");
  background-size: cover;
  display: flex;
  padding: 0 10%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex-direction: column; */
}

.intro-portion {
    position: relative;
    height: 620px;
    overflow: hidden;
    width: 100%;
    display: flex;
    padding: 0 10%;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.intro-portion video {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.intro-portion p {
    font-size: 20px;
    width: 85%;
    margin: 10px 0;
    color: #000;
    z-index: 2;
}

.intro-portion h1 {
    font-size: 56px;
    z-index: 2;
}

.intro-portion button {
    z-index: 2;
    margin-top: 5px;
}

.intro-portion .slide-image {
    position: absolute;
    height: 100%;
    background: transparent;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    opacity: 0.5;
}

.intro-portion .slide-image img {
    position: absolute;
    right: 0;
}

.intro-portion img.circle-1 {
    width: 430px;
    right: -230px;
}

.intro-portion img.circle-2 {
    width: 300px;
    right: -150px;
}

.intro-portion img.circle-3 {
    width: 200px;
    right: -100px;
}

.rotateleft {
    -webkit-animation-name: rotateleft;
    animation-name: rotateleft;
    -webkit-animation-duration: 50s;
    animation-duration: 50s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes rotateleft {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateleft {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

.rotateright {
    -webkit-animation-name: rotateright;
    animation-name: rotateright;
    -webkit-animation-duration: 50s;
    animation-duration: 50s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes rotateright {
    from {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes rotateright {
    from {
        -webkit-transform: rotate(360deg);
    }
    to {
        -webkit-transform: rotate(0deg);
    }
}

@media screen and (max-width: 991px) {
    .intro-portion h1 {
        font-size: 55px;
    }
}

@media screen and (max-width: 763px) {
    .intro-portion {
        height: 450px;
    }
    .intro-portion p {
        width: 100%;
        font-size: 16px;
    }
    .intro-portion h1 {
        font-size: 28px;
    }
    .intro-portion .slide-image {
        opacity: 0.2;
    }
}

@media screen and (max-width: 530px) {
    .intro-portion p {
        font-size: 15px;
    }
}


/* SERVICES */

.services {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: -64px;
}

.services div {
    width: 180px;
    background: #23beae;
    text-align: center;
    display: inline-block;
    margin: 5px 30px;
    padding: 20px 10px;
    transition: 0.5s all;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
}

.services img {
    width: 90%;
    transition: 0.3s ease-in-out;
}

.services div:hover {
    box-shadow: 0px 15px 20px rgba(34, 34, 34, 0.25);
}

.services div:hover img {
    transform: scale(1.2);
}

@media screen and (max-width: 763px) {
    .services {
        display: block;
        padding-top: 20px;
        text-align: center;
        padding-bottom: 20px;
    }
    .services div {
        width: 110px;
        margin: 5px 5px;
    }
    .services img {
        width: 100%;
    }
}

@media screen and (max-width: 530px) {
    .services div {
        width: 105px;
    }
}


/* EXPECTTATION */

.expectation {
    text-align: center;
    padding: 100px 30px;
    position: relative;
}

.expectation .description {
    height: 210px;
    flex-direction: column;
    display: flex;
    justify-content: flex-end;
}

.expectation .description p {
    color: #003133;
    position: relative;
    font-family: "Poppins";
}

.expectation img {
    width: 320px;
}

@media screen and (max-width: 991px) {
    .expectation .description {
        height: 200px;
        margin-top: 20px;
    }
    .expectation img {
        width: 200px;
        margin-top: 45px;
    }
}

@media screen and (max-width: 763px) {
    .expectation {
        padding: 50px 30px;
    }
    .expectation .description {
        margin-top: 0;
        display: block;
        height: auto;
        width: 90%;
        margin-top: 20px;
    }
    .expectation img {
        display: none;
    }
    .expectation .description h4 {
        font-size: 22px;
    }
    .expectation .description p {
        font-size: 14px;
    }
}

@media screen and (max-width: 530px) {
    .expectation .description {
        width: 98%;
    }
    .expectation .description h4 {
        font-size: 17px;
        margin-top: 30px;
    }
    .expectation .description p {
        font-size: 13px;
    }
}


/* PROJECTS */

.projects {
    position: relative;
    overflow: hidden;
}

.projects .banner {
    position: relative;
    margin-left: -15px;
    margin-right: -15px;
}

.projects .banner-1 {
    background: linear-gradient( to right, #aaa9ae 0, #7295a9 50%, #fff 50%, #fff 100%);
}

.projects .banner-2 {
    background: linear-gradient( to right, #d2a587 0, #e8c6b9 50%, #fff 50%, #fff 100%);
}

.projects .banner-3 {
    background: linear-gradient( to right, #757b77 0, #94bec9 50%, #fff 50%, #fff 100%);
}

.projects .mac-area-clip {
    position: relative;
    height: 100vh;
}

.projects .mac-area-clip-inner {
    clip: rect(auto, auto, auto, auto);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.projects .mac-area {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    padding-top: 30px;
}

.projects .projects-in-title {
    position: absolute;
    left: 0;
    color: #fff;
    z-index: 1;
    letter-spacing: 1px;
    font-size: 12px;
    text-transform: uppercase;
    transform: rotate(270deg);
    top: 112px;
}

.projects .projects-in-title div::after {
    background-color: #fff;
    content: "";
    height: 2px;
    position: absolute;
    top: 8px;
    right: -67px;
    width: 50px;
}

.projects .description {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.projects .banner-1 .description img {
    width: 350px;
}

.projects .banner-2 .description img {
    width: 140px;
}

.projects .banner-3 .description img {
    width: 250px;
}

.projects .description span {
    background: #e2e2e2;
    padding: 8px 20px;
    margin-right: 10px;
    border-radius: 15px;
}

.projects .description p {
    font-size: 17px;
    font-family: "raleway";
    font-weight: 500;
}

.projects .description button {
    width: 170px;
    border: 0;
    padding: 10px;
    font-size: 14px;
    color: white;
    font-weight: 600;
    position: relative;
    border-radius: 5px;
    transition: 0.7s all;
}

.projects .banner-1 .description button {
    background-image: linear-gradient(to right, #00258a, #12efff);
}

.projects .banner-1 .description button:hover {
    background-image: linear-gradient(to right, #12efff, #00258a);
}

.projects .banner-2 .description button {
    background-image: linear-gradient(to right, #57a58f, #9cd6c6);
}

.projects .banner-2 .description button:hover {
    background-image: linear-gradient(to right, #9cd6c6, #57a58f);
}

.projects .banner-3 .description button {
    background-image: linear-gradient(to right, #ed1c24, #7fd4f8);
}

.projects .banner-3 .description button:hover {
    background-image: linear-gradient(to right, #7fd4f8, #ed1c24);
}

@media screen and (max-width: 1194px) {
    .projects .mac-area-clip {
        height: 50vh;
    }
}

@media screen and (max-width: 991px) {
    .projects .banner-1 .description img {
        width: 250px;
    }
    .projects .banner-2 .description img {
        width: 120px;
    }
    .projects .banner-3 .description img {
        width: 200px;
    }
    .projects .description p {
        font-size: 16px;
    }
}

@media screen and (max-width: 763px) {
    .projects .description {
        padding: 20px 20px;
    }
    .projects .mac-area-clip-inner {
        position: relative;
    }
    .projects .mac-area {
        position: relative;
    }
    .projects .mac-area-clip {
        position: relative;
        height: 100%;
        min-height: 850px;
    }
    .projects .banner-1 {
        background: linear-gradient( to bottom, #00258a 0, #12efff 55%, #fff 30%, #fff 100%);
    }
    .projects .banner-2 {
        background: linear-gradient( to bottom, #57a58f 0, #dbfaf1 55%, #fff 30%, #fff 100%);
    }
    .projects .banner-3 {
        background: linear-gradient( to bottom, #ed1c24 0, #7fd4f8 55%, #fff 30%, #fff 100%);
    }
}

@media screen and (max-width: 530px) {
    .projects .banner-1 {
        background: linear-gradient( to bottom, #00258a 0, #12efff 42%, #fff 30%, #fff 100%);
    }
    .projects .banner-2 {
        background: linear-gradient( to bottom, #57a58f 0, #dbfaf1 42%, #fff 30%, #fff 100%);
    }
    .projects .banner-3 {
        background: linear-gradient( to bottom, #ed1c24 0, #7fd4f8 42%, #fff 30%, #fff 100%);
    }
    .projects .mac-area-clip {
        min-height: 800px;
    }
    .projects .banner-1 .description img {
        width: 220px;
    }
    .projects .banner-2 .description img {
        width: 100px;
    }
    .projects .banner-3 .description img {
        width: 150px;
    }
    .projects .description p {
        font-size: 15px;
    }
    .projects .description span {
        padding: 8px 18px;
        font-size: 13px;
        display: inline-block;
        margin: 5px 0;
    }
}


/* ACHIVEMENTS */

.achivements {
    position: relative;
    overflow: hidden;
    padding-left: 30px;
}

.achivements h3 {
    font-weight: 600;
    font-size: 40px;
}

.achivements p {
    width: 70%;
}

.achivements .google-review {
    width: 220px;
}

.achivements .achivements-record {
    position: relative;
    margin-top: 60px;
    padding-left: 40px;
}

.achivements .achivements-record img {
    position: absolute;
    width: 40%;
    bottom: 70px;
    right: 30%;
    z-index: -1;
}

.achivements .achivements-record h2 {
    font-weight: 800;
    text-align: left;
    font-size: 56px;
}

.achivements .achivements-record h6 {
    font-size: 18px;
}

.achivements .side-bg {
    position: absolute;
    height: 470px;
    top: 0;
    background: #13413c;
    width: 220px;
    right: 0;
    z-index: -1;
}

.achivements .achivement-box {
    width: 170px;
    background: #23beae;
    text-align: center;
    display: inline-block;
    margin: 14px 10px;
    padding: 20px 10px;
    transition: 0.5s all;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
}

.achivements img {
    width: 95%;
    transition: 0.3s ease-in-out;
}

.achivements .achivement-box:hover {
    box-shadow: 0px 15px 20px rgba(34, 34, 34, 0.25);
}

.achivements .achivement-box:hover img {
    transform: scale(1.2);
}

@media screen and (max-width: 1194px) {
    .achivements .achivement-box {
        width: 150px;
        margin: 10px 8px;
    }
}

@media screen and (max-width: 991px) {
    .achivements .achivement-box {
        width: 110px;
        margin: 10px 5px;
    }
    .achivements .side-bg {
        width: 160px;
    }
    .achivements p {
        width: 100%;
    }
    .achivements .achivements-record {
        margin-top: 0px;
        padding-left: 5px;
    }
}

@media screen and (max-width: 763px) {
    .achivements {
        padding-left: 20px;
    }
    .achivements h3 {
        font-weight: 600;
        font-size: 28px;
    }
    .achivements p {
        font-size: 16px;
        width: 80%;
    }
    .achivements .achivements-record {
        margin: 30px 0;
        padding-left: 20px;
    }
    .achivements .achivements-record img {
        bottom: 50px;
    }
    .achivements .achivements-record h2 {
        font-size: 40px;
    }
    .achivements .achivements-record h6 {
        font-size: 14px;
    }
    .achivements .col-md-4 {
        display: none;
    }
}

@media screen and (max-width: 530px) {
    .achivements .achivements-record {
        padding-left: 0;
    }
    .achivements .achivements-record h2 {
        text-align: center;
        font-size: 34px;
    }
    .achivements .achivements-record h6 {
        font-size: 10px;
        text-align: center;
    }
}


/* AWARDS */

.awards .award {
    width: 65%;
    border-radius: 15px;
    padding: 60px 15px;
    margin: auto;
    margin-top: 20px;
    text-align: center;
    overflow: hidden;
    box-shadow: 2px 2px 20px #e2e2e2;
    transition: 0.5s all;
}

.awards .award:hover {
    transform: translateY(-20px);
}

.award img {
    display: block;
    width: 50%;
    margin: auto;
}

.awards .award h6 {
    font-weight: bold;
    margin: 20px;
    font-style: 18px;
}

.awards .award p {
    font-size: 14px;
    font-weight: 500;
}

@media screen and (max-width: 991px) {
    .awards .award {
        width: 90%;
    }
}


/* BELONG */

.belong {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.belong ul {
    width: 90%;
    margin: auto;
}

.belong ul li {
    display: inline-block;
    list-style-type: none;
    width: 22%;
    padding: 25px 0;
}

.belong ul li img {
    width: 40px;
    margin: auto;
    display: block;
}

.belong ul li span {
    font-size: 17px;
    font-weight: bold;
    display: block;
    text-align: center;
    width: 100%;
    color: #0a858a;
    margin-top: 20px;
}

.belong button {
    border: 0;
    padding: 8px 30px;
    font-size: 15px;
    margin-top: 20px;
    font-weight: bold;
    color: #fff;
    border-radius: 15px;
    transition: 0.6s all;
}

@media screen and (max-width: 991px) {
    .belong ul {
        width: 100%;
        margin: auto;
    }
    .page-title {
        height: unset;
    }
}

@media screen and (max-width: 763px) {
    .belong {
        display: none;
    }
}


/* BLOG */

.blog {
    width: 250px;
    box-shadow: 2px 2px 10px #dbdbdb;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px auto;
    margin-bottom: 50px;
}

.blog .blog-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog h6 {
    font-weight: bold;
    text-align: center;
    width: 90%;
    margin: auto;
    margin-top: 20px;
}

.blog p {
    font-size: 14px;
    text-align: center;
    width: 80%;
    margin: auto;
    margin-top: 15px;
}

.blog button {
    border: 0;
    padding: 8px 20px;
    width: 100%;
    text-align: left;
    font-size: 15px;
    margin-top: 25px;
    color: #fff;
    transition: 0.6s all;
}

.blog button i {
    float: right;
    font-size: 20px;
}