﻿
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*--------------------CSS RESET ENDS HERE---------------*/
html, body {
    height: 100%;
}

table, th, td {
    padding: 10px;
    border: 1px solid black;
}

p, ul:not(.left-menu-nav), ol, label, table, th, td, textarea {
    line-height: 1.3em;
}

p {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: justify;
}

hr{
    position:relative;
    margin:30px 0px;
}
  hr::before {
        content: "";
        position: absolute;
        height: 3px;
        width: 200px;
        background: -moz-linear-gradient(left, rgba(255,255,255,1) 31%, rgba(255,255,255,0) 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(31%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, rgba(255,255,255,1) 31%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, rgba(255,255,255,1) 31%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(left, rgba(255,255,255,1) 31%,rgba(255,255,255,0) 100%); /* IE10+ */
        top: -1px;
        left: 0;
        z-index: 100000;
    }

    hr::after {
        content: "";
        position: absolute;
        height: 3px;
        width: 200px;
        background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 69%, rgba(255,255,255,1) 69%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(69%,rgba(255,255,255,1)), color-stop(69%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 69%,rgba(255,255,255,1) 69%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 69%,rgba(255,255,255,1) 69%); /* Opera 11.10+ */
        background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 67%,rgba(255,255,255,1) 69%); /* IE10+ */
        top: -1px;
        right: 0;
        z-index: 100000;
    }


body {
    font-family: "minion-pro",sans-serif !important;
    font-style: normal;
    font-weight: 300;
    background: #fff;
    font-size: 19px;
    color: #333;
}


.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.top-menu {
    position: fixed;
    width: 100%;
    height: 50px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    right: 0;
    z-index: 2;
    font-family: "proxima-nova",sans-serif;
    font-weight: 300;
}

    .top-menu.with-left-menu {
        /*width: calc(100% - 250px);*/
        /*width: calc(100% / 5 * 4);*/
    }

        .top-menu.with-left-menu .button-menu-open:hover {
            border-bottom: none;
        }

        .top-menu.with-left-menu .button-menu-open:after {
            content: "";
            position: absolute;
            height: 0;
            width: 0;
            border-left: 14px solid transparent;
            border-right: 14px solid transparent;
            border-bottom: 15px solid rgb(60,166,192);
            top: 40px;
            left: 13px;
        }


    .top-menu .item-logo {
        margin: 5px;
        margin-left: 20px;
        height: 40px;
        cursor: pointer;
        opacity: 0.85;
    }

.label-menu {
    margin-left: 7px;
}

.button-menu-open {
    height: 10px;
    width: 20px;
    padding: 15px;
    text-align: center;
    position: fixed;
    left: 0;
    right: 0;
    cursor: pointer;
}

    .button-menu-open a {
        color: #000;
        font-size: 20px;
        text-decoration: none;
    }

.left-menu .button-menu-open a {
    color: #fff;
}

.top-menu .item-sub-menu {
    list-style: none;
    margin-right: 10px;
}

.item-sub-menu li {
    float: left;
    padding: 10px;
    height: 20px;
    cursor: pointer;
    /*-webkit-transition:all 0.2s ease-in-out;*/
}

    .item-sub-menu li a {
        color: #000;
        font-size: 15px;
        text-decoration: none;
        line-height: 30px;
    }

    .item-sub-menu li:hover, .item-sub-menu li.active, .button-menu-open:hover, .button-menu-open.active {
        background-color: #fff;
        border-bottom: 10px solid rgb(60,166,192);
    }

        .item-sub-menu li:hover > a, .item-sub-menu li.active > a, .button-menu-open:hover > a, .button-menu-open.active > a {
            color: #777;
        }

.left-menu {
    position: fixed;
    height: 100%;
    /*width: calc(100% / 5);*/
    width: 250px;
    display: none;
    background-color: rgb(60,166,192);
    left: 0;
    top: 0;
    z-index: 1;
}

    .left-menu a {
        text-decoration: none;
    }

    .left-menu.active {
        display: block;
    }

.outer-container {
    height: 100%;
}

.inner-container {
    width: 100%;
    background-color: #fff;
    min-height: calc(100% - 81px);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding-top: 50px;
    z-index: 1;
    position: relative;
    left: 0;
}

    .inner-container.with-left-menu, .footer-container.with-left-menu {
        /*left: calc(100% / 5);*/
        /*width: calc(100% / 5 * 4);*/
        left: 250px;
        width: 80%;
        width: -webkit-calc(100% - 250px);
        width: calc(100% - 250px);
    }

.content-wrapper {
    width: 960px;
    /*width:calc(100% / 5 * 4);*/
    padding: 20px;
}

.page-title, .page-headline {
    font-family: "proxima-nova",sans-serif;
    font-style: normal;
    font-weight: 300;
}

.page-title {
    display: inline-block;
    font-size: 40px;
    color: #333;
    font-weight: 400;
    margin: 20px 0;
}

.hero-title {
    padding: 80px 0;
    /*border-bottom: 2px solid #ccc;*/
    text-align: center;
    font-size: 40px;
    color: #333;
    font-family: "proxima-nova",sans-serif;
    font-style: normal;
    font-weight: 300;
    /*margin-bottom: 30px;*/
    padding-bottom:40px;
}

.highlight {
    color: rgb(60, 166, 192);
}

.page-headline {
    font-size: 30px;
    color: #333;
    margin: 30px 0px;
}

.page-sub-heading {
    font-family: "proxima-nova",sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 25px;
    color: #333;
    margin: 10px 0px;
}

.footer-container {
    position: relative;
    height: 30px;
    width: 100%;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    font-family: "proxima-nova",sans-serif;
    font-weight: 300;
    font-size: 15px;
    /*border-top: 1px solid #FFF;*/
    /*box-shadow: 0px -1px #b9b9b9;*/
}

/*@media screen and (min-width: 1400px) {
    .footer-container {
        box-shadow: 0px -2px #b9b9b9 !important;
    }

    .left-menu-nav li {
        box-shadow: 0px 2px #777 !important;
    }

        .left-menu-nav li:last-child {
            box-shadow: none !important;
        }
}*/

#kaaryaa-custom {
    float: none;
    width: 300px;
    margin-top: 20px;
    margin-bottom: 20px;
}

    #kaaryaa-custom button {
        cursor: pointer;
        text-align: center !important;
        padding: 10px;
        background: rgb(36, 173, 36);
        color: #fff;
        line-height: 22px;
        border-radius: 5px;
        width: 300px;
        text-align: left;
        font-weight: bold;
        font-family: "proxima-nova",sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 23px;
        height: 44px;
        border: none;
        margin-top: 1px;
    }

        #kaaryaa-custom button img {
            width: 20px;
            float: left;
            margin-right: -20px;
        }

        #kaaryaa-custom button:hover {
            background-color: rgb(32, 156, 32);
        }

        #kaaryaa-custom button:active {
            background-color: rgb(36, 173, 36);
        }

.footer-content2 {
    margin-top: 10px;
    margin-bottom: 15px;
    color: #444;
    width: 960px;
    /*width: calc(100% - 100px);*/
    padding: 10px;
    /*border-top: 1px solid #888;*/
}


    .footer-content2 label {
        text-align: center;
        display: block;
        font-size: 25px;
        margin: 20px 0px;
    }

    .footer-content2 .social-links {
        display: block;
        width: 105px;
        height: 10px;
    }

.social-links li {
    float: left;
    width: 35px;
    height: 25px;
    position: relative;
}

     .social-links li a i {
         text-align:center;
         width:35px;
        /*height: 25px;*/
        font-size: 28px;
        color: #333;
    }

.social-links .fa-twitter:hover {
    color: #1dcaff;
}

.social-links .fa-facebook-square:hover {
    color: #3B5998;
}

.social-links .fa-linkedin-square:hover {
    color: #007bb6;
}

.footer-content {
    color: #888;
    /*width: 960px;*/
    width: calc(100% - 100px);
    padding: 9px;
}

.footer-links {
    float: right;
    margin-top: -4px;
}

    .footer-links li {
        float: left;
        margin-left: 10px;
    }

        .footer-links li a {
            color: #888;
            text-decoration: none;
        }

        .footer-links li:hover > a {
            color: #333;
            border-bottom: 1px solid #333;
        }

.left-menu-nav {
    font-family: "proxima-nova",sans-serif;
    margin-top: 100px;
}

    .left-menu-nav li {
        padding: 10px 8px;
        border-bottom: 1px solid rgb(117, 184, 201);
        cursor: pointer;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
    }

        .left-menu-nav li:hover {
            background-color: #fff;
        }

            .left-menu-nav li:hover .left-menu-nav-link {
                color: #000;
                text-shadow: none;
            }

            .left-menu-nav li:hover .left-menu-nav-desc {
                color: #000;
            }

        .left-menu-nav li:last-child {
            box-shadow: none;
            border-bottom: none;
        }

.left-menu-nav-link {
    display: block;
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    margin-bottom: 5px;
}

.left-menu-nav-desc {
    display: block;
    font-size: 11px;
    font-family: Verdana;
    color: #fff;
}

/*Helper Classes*/

.clearfix {
    clear: both;
}

.bold {
    font-weight: bold;
}

.underline {
    padding-bottom: 2px;
    border-bottom: 1px solid #000;
}

.new-section {
    display: block;
    margin: 50px 0;
}

blockquote {
    background: #f9f9f9;
    border-left: 10px solid #ccc;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C""\201D""\2018""\2019";
}

    blockquote:before {
        color: #ccc;
        content: open-quote;
        font-size: 4em;
        line-height: 0.1em;
        margin-right: 0.25em;
        vertical-align: -0.4em;
    }

    blockquote p {
        display: inline;
    }

.page-divider {
    width: 960px;
    display: block;
    border-top: 1px solid #FFF;
    box-shadow: 0px -1px #b9b9b9;
    margin: 20px 0;
}

.list-with-style {
    margin-left: 20px;
    list-style: disc;
}

    .list-with-style li:before {
        list-style: disc !important;
    }

#know-sonia {
    color: #ef4242;
    text-decoration: none;
}

    #know-sonia:hover {
        border-bottom: 1px solid #ef4242;
    }

    #know-sonia:visited {
        color: #ef4242;
    }

.img-para {
    width: calc(50% - 60px);
    float: left;
    margin-left: 30px;
    margin-right: 30px;
}

#what-we-do {
    font-family: "proxima-nova";
    font-weight: 300;
    font-size: 40px;
    text-align: center;
    margin: 40px 0;
    color: #333;
}

.services {
    width: 600px;
    margin: 0 auto;
    background: #FFF;
    padding: 38px;
    border: solid 1px #ddd;
    min-height: 217px;
    border-bottom: none;
}

.img-para img {
    margin: auto;
    display: block;
    width: 100px;
    border-radius: 50%;
}

.services h3 {
    font-family: "proxima-nova";
    font-weight: 300;
    font-size: 29px;
    border-left: solid 5px rgb(0, 173, 255);
    margin-left: -38px;
    padding-left: 30px;
    height: 40px;
    line-height: 40px;
    color: #494949;
    margin-bottom: 16px;
}

.services ul {
    list-style-type: square;
    margin-left: 20px;
    list-style-image: inherit;
}

.item-tag {
    margin: 10px;
    background-color: #000;
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
    -webkit-transition: background 0.1s ease-in-out;
    font-family: "proxima-nova",sans-serif;
    font-weight: 300;
}

    .item-tag a {
        text-decoration: none;
        color: #fff;
        font-size: 30px;
        font-weight: 300;
    }

    .item-tag:hover {
        background-color: rgb(60,166,192);
    }

.item-form {
    width: 600px;
}

    .item-form .field-group {
        display: block;
        clear: both;
    }

.item-form-button {
    text-decoration: none;
    padding: 7px 15px;
    background-color: rgb(60,166,192);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 15px;
    /*box-shadow: 0px 8px 7px -6px #6D6D6D;*/
    margin-bottom: 30px;
}

    .item-form-button:hover {
        background-color: rgb(53, 150, 173);
    }

    .item-form-button:active {
        background-color: rgb(60,166,192);
    }

.field-group .field-label {
    display: inline-block;
    width: 210px;
    width: calc(35% - 40px);
    text-align: right;
    padding: 15px 20px;
    float: left;
}

.field-group .field-input {
    display: inline-block;
    width: 350px;
    width: calc(65% - 40px);
    margin: 12px 10px;
    padding: 7px;
    background-color: transparent;
    border: 1px solid #bbb;
    font-family: Arial !important;
    font-style: normal;
    font-weight: 300;
}

.field-input:focus {
    outline: none;
}

textarea.field-input {
    height: 75px;
}

.item-radio, .item-checkbox {
    font-family: "Minion Pro",sans-serif;
}

.field-group .item-radio, .field-group .item-checkbox {
    display: inline-block;
    margin: 10px;
    vertical-align: middle;
}

.item-radio input[type="radio"], .item-checkbox input[type="checkbox"] {
    float: left;
    margin-left: -12px;
    margin-right: 5px;
    margin-top: 6px;
}

.field-group .without-border {
    border: none;
    box-shadow: none;
    margin-top: 8px;
}

.field-group input[type="submit"] {
    margin-left: 10px;
}

/*input:invalid {
    outline:red 1px solid;
    outline-offset:3px;
}
input:valid {
    outline:green 1px solid;
    outline-offset:3px;
}*/

#get-personal {
    margin: 20px 0;
}

#kaaryaa-internal, #social-credential {
    float: left;
    width: 432px;
    min-height: 140px;
}

    #kaaryaa-internal input[type="text"] {
        padding: 12px;
        border: solid 1px #ddd;
        border-radius: 5px;
        margin-bottom: 5px;
        width: 240px;
    }

    #kaaryaa-internal button {
        padding: 10px;
        background: rgb(36, 173, 36);
        color: #fff;
        line-height: 24px;
        border-radius: 5px;
        width: 242px;
        text-align: left;
        font-weight: bold;
        font-family: "proxima-nova",sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        height: 44px;
        border: none;
        margin-top: 1px;
    }

        #kaaryaa-internal button img {
            width: 20px;
            float: left;
            margin-right: 10px;
        }

#seperator-or {
    width: 1px;
    background: #eee;
    height: 160px;
    float: left;
    margin: 40px 52px 0 42px;
}

    #seperator-or div {
        width: 20px;
        border-radius: 50px;
        border: solid 3px #eee;
        margin: 60px 0 0 -20px;
        float: left;
        height: 20px;
        line-height: 20px;
        background: #eee;
        font-family: sans-serif;
        color: #222;
        padding: 10px;
        font-size: 14px;
        font-weight: bold;
    }

#social-credential .social-link {
    display: block;
    margin: 5px 0;
    border: solid 1px #eee;
}

#guest {
    color: #999;
    margin-top: 20px;
    float: left;
    text-decoration: none;
}

    #guest:hover {
        text-decoration: underline;
    }

#recaptcha_widget_div {
    margin-left: -7px;
}

#recaptcha_privacy a {
    color: #999;
    font-size: 10px;
}

.services h3 {
    font-family: "proxima-nova";
    font-family: 400;
}

.tech-links {
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid #000;
    margin-bottom: 5px;
}

    .tech-links:hover {
        border-bottom: 1px solid #999;
    }

        .tech-links:hover h2 {
            color: #999;
        }
