/*! CSS Used from: Embedded */
:hover {
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

label {
    font-weight: 500;
}

h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

h3 {
    font-size: 1.17em;
    margin: 10px 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.main {
    width: 1330px;
    max-width: 100%;
    margin: 0px auto;
}

.heading_ h2 {
    color: #000;
    text-transform: uppercase;
    font-size: 30px;
    text-align: center;
    font-weight: 500;
}

.heading_ h2 span {
    border-bottom: 3px solid #188ef4;
    position: relative;
}

.heading_ h2 span:after {
    position: absolute;
    color: #188ef4;
    content: "\f0d7";
    bottom: -15px;
    right: 0;
    left: 0;
    margin: 0 auto;
    font-size: 18px;
    font-family: 'fontAwesome';
}

.display {
    display: none;
}

.about_sec {
    display: flex;
    margin: 6% 0;
    flex-wrap: wrap;
    flex-flow: row;
}

.about_sec .left_desc_abt {
    flex: 2;
}

.about_sec .img_part {
    flex: 1;
}

.about_sec .img_part img {
    /*transform: rotate(35deg);*/
    box-shadow: -25px 25px 0px 25px #b9ddfc, 25px -25px 0px 25px #b9ddfc;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.about_sec .img_part img:hover {
    transform: scale(1.1) rotate(20deg);
}

.extra_img_part {
    width: 80%;
    position: relative;
    margin-top: 30%;
}

.about_desc {
    width: 85%;
    margin: 2% 0;
}

.about_desc li {
    display: flex;
    margin-bottom: 10px;
    padding-left: 20px;
}

.about_desc h3 {
    color: #333;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.8;
}

.about_desc label {
    font-size: 16px;
}

.about_desc p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    text-align: left;
    font-family: 'Montserrat-Light';
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.about_desc label {
    font-size: 18px;
    margin: 15px 0;
    color: #333;
    font-family: 'Montserrat-Light';
    display: flex;

}

.about_desc span {
    font-size: 12px;
    color:#333;
    font-family: "Roboto", sans-serif;
}

.about_desc i {
    color: #188ef4;
    font-size: 14px;
    margin-right: 5px;
}

.our_services {
    margin: 4% 0;
}

.service_part {
    display: flex;
    margin: 5% 0;
    flex-wrap: wrap;
    flex-grow: 3;
}

.service_part li {
    width: 33.33%;
    text-align: center;
    align-self: center;
    padding: 30px 0;
    vertical-align: middle;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.service_part li:nth-last-child(2),
.service_part li:nth-last-child(3) {
    border-bottom: 0px;
}

.service_part li:nth-last-child(1) {
    border: 0px;
}

.service_part li:nth-last-child(4) {
    border-right: 0px;
}

.service_part li i {
    color: #188ef4;
    font-size: 23px;
    margin-right: 10px;
    transform: scale(1);
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    cursor: pointer;
}

.service_part li i:hover {
    transform: scale(1.1);
}

.service_part li label {
    color: #333;
    text-transform: uppercase;
    font-size: 18px;
    cursor: text;
}

@media screen and (max-width: 1600px) {
    .main {
        width: 1100px;
        margin: 0 auto;
        padding: 0;
    }
}

@media screen and (min-width: 600px) {
    .img_part {
        margin-top: 85px;
    }
}

@media screen and (max-width: 1200px) {
    .main {
        width: 1024px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .about_sec .img_part img {
        box-shadow: -15px 15px 0px 15px #b9ddfc, 15px -15px 0px 15px #b9ddfc;
    }
}

@media screen and (max-width: 990px) {

    .main {
        width: 780px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .heading_ h2 span {
        padding-bottom: 5px;
    }

    .service_part li label {
        font-size: 16px;
    }

    .service_part li {
        padding: 25px 0;
    }

    .extra_img_part {
        margin-top: 70%;
    }

    .left_desc_abt .heading_ {
        display: none;
    }

    .display {
        display: flex;
        justify-content: center;
    }

    .about_sec {
        flex-flow: column;
    }

    .about_sec .left_desc_abt {
        order: 3;
    }

    .extra_img_part {
        margin: 12% auto 5% auto;
        width: 65%;
    }

    .about_sec .img_part img {
        transform: rotate(0deg);
    }

    .service_part {
        margin: 12% 0;
    }

    .about_desc {
        margin: 5% auto;
    }
}

@media screen and (max-width: 800px) {
    .main {
        width: 600px;
    }

    .service_part li {
        width: 50%;
    }

    .service_part li:nth-last-child(4) {
        border-right: 1px solid #ccc;
    }

    .service_part li:nth-last-child(3) {
        border-bottom: 1px solid #ccc;
        border-right: 0px;
    }

    .service_part li:nth-child(2) {
        border-right: 0px;
    }
}

@media screen and (max-width: 767px) {
    .main {
        width: 600px;
    }

    .about_sec .img_part img {
        box-shadow: -10px 10px 0px 10px #b9ddfc, 10px -10px 0px 10px #b9ddfc;
    }
}

@media screen and (max-width: 600px) {
    .main {
        width: 450px;
    }

    .heading_ h2 {
        font-size: 24px;
    }

    .about_desc p {
        font-size: 13px;
    }

    .about_desc h3 {
        font-size: 18px;
    }

    .about_desc i {
        font-size: 14px;
    }

    .about_desc span {
        font-size: 10px;
    }

    .about_desc label {
        font-size: 16px;
    }

    .service_part li label {
        font-size: 14px;
    }

    .service_part li i {
        font-size: 18px;
    }
}

@media screen and (max-width: 479px) {
    .main {
        padding: 0 25px;
    }
    .timeline {
    margin-bottom: 0!important;
    }

    .service_part li {
        width: 80%;
        margin: 0 auto;
    }

    .service_part li:nth-last-child(n) {
        border: 1px solid #ccc;
    }
}

/*! CSS Used from: https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css */
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-search:before {
    content: "\f002";
}

.fa-briefcase:before {
    content: "\f0b1";
}

.fa-dot-circle-o:before {
    content: "\f192";
}

.fa-line-chart:before {
    content: "\f201";
}

/*! CSS Used fontfaces */
@font-face {
    src: url(https://s.codepen.io/create_vc/fonts/Montserrat-Light.otf);
    font-family: 'Montserrat-Light';
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('https://maxcdn.bootstrapcdn.com/font-awesome/latest/fonts/fontawesome-webfont.eot?v=4.7.0');
    src: url('https://maxcdn.bootstrapcdn.com/font-awesome/latest/fonts/fontawesome-webfont.eot#iefix&v=4.7.0') format('embedded-opentype'), url('https://maxcdn.bootstrapcdn.com/font-awesome/latest/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('https://maxcdn.bootstrapcdn.com/font-awesome/latest/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('https://maxcdn.bootstrapcdn.com/font-awesome/latest/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('https://maxcdn.bootstrapcdn.com/font-awesome/latest/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@media only screen and (min-width: 480px) {
    .imp_part {
        margin-top: 80px;
    }

}