@charset "UTF-8";





/*---------------------fonts----------------------*/


/* BEGIN Regular */

@font-face {
    font-family: 'roboto_condensed';
    src: url('../fonts/Light/robotocondensed-light-webfont.woff2') format('woff2'),
    url('../fonts/Light/robotocondensed-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: Roboto;
    src: url("../fonts/Light/Roboto-Light.woff2?v=1.1.0") format("woff2"),
    url("../fonts/Light/Roboto-Light.woff?v=1.1.0") format("woff"),
    url("../fonts/Light/Roboto-Light.ttf?v=1.1.0") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'robotolight_italic';
    src: url('../fonts/Light/roboto-lightitalic-webfont.woff2') format('woff2'),
    url('../fonts/Light/roboto-lightitalic-webfont.woff') format('woff');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'roboto_condensed';
    src: url('../fonts/Light/robotocondensed-lightitalic-webfont.woff2') format('woff2'),
    url('../fonts/Light/robotocondensed-lightitalic-webfont.woff') format('woff');
    font-weight: italic;
    font-style: normal;
}

@font-face {
    font-family: 'roboto_condensed';
    src: url('../fonts/Italic/robotocondensed-italic-webfont.woff2') format('woff2'),
    url('../fonts/Italic/robotocondensed-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Roboto;
    src: url("../fonts/Regular/Roboto-Regular.woff2?v=1.1.0") format("woff2"),
    url("../fonts/Regular/Roboto-Regular.woff?v=1.1.0") format("woff"),
    url("../fonts/Regular/Roboto-Regular.ttf?v=1.1.0") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'roboto_condensedregular';
    src: url('../fonts/Regular/robotocondensed-regular-webfont.woff2') format('woff2'),
    url('../fonts/Regular/robotocondensed-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Roboto;
    src: url("../fonts/Medium/Roboto-Medium.woff2?v=1.1.0") format("woff2"),
    url("../fonts/Medium/Roboto-Medium.woff?v=1.1.0") format("woff"),
    url("../fonts/Medium/Roboto-Medium.ttf?v=1.1.0") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'roboto_condensed';
    src: url('../fonts/Bold/robotocondensed-bold-webfont.woff2') format('woff2'),
    url('../fonts/Bold/robotocondensed-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: bold;
}

@font-face {
    font-family: 'roboto_condensed';
    src: url('../fonts/Bold-Italic/robotocondensed-bolditalic-webfont.woff2') format('woff2'),
    url('../fonts/Bold-Italic/robotocondensed-bolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'robotothin';
    src: url('../fonts/Thin/roboto-thin-webfont.woff2') format('woff2'),
    url('../fonts/Thin/roboto-thin-webfont.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'robotothin_italic';
    src: url('../fonts/Thin/roboto-thinitalic-webfont.woff2') format('woff2'),
    url('../fonts/Thin/roboto-thinitalic-webfont.woff') format('woff');
    font-weight: 100;
    font-style: italic;
}

html {
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    /*overflow-x: hidden;*/
    height: 100%;
    min-height: 100%;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
}

h1 {
    color: #fff;
    text-transform: capitalize;
    font-weight: 300;
    line-height: 1;
    font-family: 'roboto_condensed';
}

h2,
h3 {
    color: #6a747c;
    font-family: 'roboto_condensed';
    font-weight: 300;
    text-transform: uppercase;
}

h4 {
    font-weight: 100;
    color: #fff;
    line-height: 1.4;
    font-family: 'roboto_condensed';
}

h5 {
    font-weight: 300;
    font-family: 'roboto_condensed';
}

p {
    color: #000;
}

a {
    text-decoration: none;
    outline: none;
}

ul {
    padding-left: 0;
}

li {
    list-style: none;
}

.btn {
    border-radius: 0;
    padding: 16px 42px;
    font-weight: 700;
    box-shadow: none;
    border: 2px solid #ffffff;
    text-transform: capitalize;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 1px;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    transition: 0.4s all;
}

.btn-default {
    border-color: #6cb33f;
}

.btn-default:hover,
.btn-default:active,
.btn-default:focus {
    background-color: transparent;
    color: #6cb33f;
    border-color: #6cb33f;
}

.btn-primary {
    border-color: #007dc3;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: transparent;
    border-color: #007dc3;
    color: #007dc3;
}

.btn-info:hover,
.btn-info:active,
.btn-info:focus {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-success:hover,
.btn-success:active,
.btn-success:focus {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.header-fixed {
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 9;
    width: 100%;
}

.shadow {
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

.header {
    background-color: #fff;
}

.navbar-default {
    padding: 25px 0;
    border: none;
    background-color: #fff;
}

.navbar-default .navbar-header {
    vertical-align: middle;
    position: relative;
    top: 7px;
}

.navbar-default .navbar-nav>li>a {
    color: #fff;
    padding: 10px 13px;
    font-size: 20px;
    font-weight: 500;
}

ul.navbar-nav {
    float: right;
    margin: 0;
    vertical-align: middle;
    margin-top: 6px;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:active,
.navbar-default .navbar-nav>li>a:focus {
    color: #6cb33f;
}

.banner {
    background-color: #b50742;
    width: 100%;
    position: relative;
    min-height: auto;
    background-image: url('../img/banner-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 100px 0;
}

.banner .content {
    width: 100%;
    max-width: 640px;
    padding-left: 50px;
}

.banner .container1 {
    padding-top: 120px;
}

.banner .content h1 {
    margin-bottom: 30px;
}

.banner .content h4 {
    margin-bottom: 55px;
    text-transform: uppercase;
}

.section-two .listing {
    background-color: #fff;
    margin-top: -110px;
    position: relative;
}

.section-two .listing ul {
    padding: 34px 0;
    margin-bottom: 0;
}

.section-two .listing ul li .content {
    padding: 20px;
    text-align: center;
    /*min-height: 220px;*/
    min-height: 100%;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    transition: 0.4s all;
    position: relative;
}

.section-two .listing ul li .content:before {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    height: calc(100% - 20px);
    width: 1px;
    border-left: 1px dashed #000;
}

.section-two .listing ul li:last-child .content:before {
    display: none;
}

.section-two .listing ul li .content span {
    font-weight: 700;
    font-family: 'roboto_condensed';
    font-size: 55px;
    color: #6a747c;
    line-height: 1;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    transition: 0.4s all;
}

.section-two .listing ul li .content h5 {
    color: #6a747c;
    margin-bottom: 10px;
    margin-top: 15px;
    min-height: 105px;
    line-height: 1.2;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    transition: 0.4s all;
}

.section-two .listing ul li:nth-child(3) .content h5 {
    margin-bottom: 5px;
}

.section-two .listing ul li .content:hover h5,
.section-two .listing ul li .content:hover span,
.section-two .listing ul li .content:hover p {
    color: #007dc3;
}

.section-two .listing ul li .content a {
    color: #007dc3;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.section-two .listing ul li .content p {
    font-weight: 300;
    font-size: 16px;
    color: #6a747c;
    line-height: 1.2;
    margin-bottom: 5px;
    -webkit-transition: 1s all;
    -moz-transition: 1s all;
    -ms-transition: 1s all;
    transition: 1s all;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
}

.section-two .listing ul li .content:hover p {
    visibility: visible;
    opacity: 1;
    max-height: 500px;
}

.section-two .listing ul li:last-child .content {
    border-right: none;
}

.knowledge-sec {
    position: relative;
    width: 100%;
    min-height: 580px;
}

.knowledge-sec .left-content {
    padding-bottom: 100px;
}

.knowledge-sec .container-fluid {
    padding-left: 50px;
}

.knowledge-sec .right {
    position: absolute;
    width: 50%;
    left: 50%;
    height: 100%;
    background-image: url('../img/career-bg.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.bottom-content {
    padding: 30px 0;
}

.left-content {
    padding-top: 100px;
    padding-right: 50px;
}

.left-content h3 {
    color: #6a747c;
    margin-bottom: 35px;
}

.left-content p {
    font-weight: 300;
    line-height: 1.5;
}

.network-sec .left-content p {
    color: #6a747c;
}





/*Form css*/

.form-field .field-outer {
    max-width: 282px;
    display: inline-block;
}

.form-field .field-outer select {
    width: 100%;
    border: 0px;
    padding: 15px 0px;
    outline: none;
        height: 54px;
            background-color: transparent;
}

.text-checkbox {
    position: relative;
    padding-left: 20px;
    font-size: 12px;
}

.text-checkbox input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
}


.field-outer {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
}

.field-outer .form-control {
    width: 100%;
    border: 0px;
    background-color: transparent;
    position: relative;
    z-index: 4;
    padding: 25px 0px;
    font-size: 20px;
    padding-bottom: 0;
    margin-bottom: 8px;
    margin-top: 10px;
    box-shadow: none;
    border-radius: 0;
    padding: 10px 5px;
    font-size: 18px;
}

.field-outer textarea {
    resize: none;
    max-height: 39px;
    overflow: hidden;
}

.field-outer label {
    position: absolute;
    z-index: 0;
    top: 8px;
    left: -11px;
    font-size: 18px;
    color: #000;
    font-weight: 100;
    font-style: italic;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.field-outer.label-float label {
    font-size: 14px;
    top: -8px;
    font-weight: bold;
    color: #007dc3;
}

.field-outer:before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #6a747c;
    position: absolute;
    bottom: 0;
    left: 0;
}

.contact-sec .field-outer:before,
.membership-sec .field-outer:before {
    height: 1px;
}

.field-outer:after {
    content: "";
    width: 0;
    height: 2px;
    background-color: #007dc3;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.field-outer.label-float:after {
    width: 100%;
}

.form-field .btn-primary {
    padding: 11px 32px;
}

.form-field {
    margin-top: 25px;
    text-align: left;
}

.form-field .btn-outer {
    display: inline-block;
    margin-left: 0;
    vertical-align: top;
    margin-top: 10px;
}





/*Form css*/

.network-sec {
    width: 100%;
    background-color: #f0f1f2;
    padding: 120px 0;
    padding-top: 0;
    position: relative;
}

.network-sec .left-content {
    padding-top: 0;
}

.network-sec .left-content p {
    margin-bottom: 0;
}

.network-sec .right {
    padding-left: 80px;
    margin-top: 50px;
}

.network-sec .right h3 {
    margin-bottom: 35px;
}

.network-sec .right ul li {
    display: inline-block;
    width: 32%;
    margin-bottom: 35px;
}

.network-sec .right ul li img {
    max-width: 100%;
}

.network-sec .right-inner {
    position: absolute;
    width: 50%;
    left: 0;
    background-image: url('../img/globel-bg.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100%;
}

.network-sec .network-mobile-bg {
    background-image: url('../img/globel-bg.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    width: 100%;
    display: none;
}

.network-sec .right-outer {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.network-sec .left-outer {
    float: right;
    padding-top: 120px;
}

.credibility-sec {
    position: relative;
    background-color: #007dc3;
    width: 100%;
    padding-bottom: 120px;
}

.credibility-sec .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
}

.credibility-sec .left-content {
    padding-top: 135px;
}

.credibility-sec .left-content h3 {
    color: #fff;
}

.credibility-sec .left-content p {
    color: #ffffff;
}

.right {
    padding-left: 80px;
}

.credibility-sec .right-cover {
    position: absolute;
    width: 50%;
    left: 50%;
    background-color: #fff;
    height: 100%;
}

.credibility-sec .right {
    padding-top: 135px;
    padding-left: 100px;
}

.credibility-sec .right .inner-content {
    text-align: left;
    outline: none;
    padding-left: 20px;
}

.credibility-sec .right .inner-content .icon {
    margin-bottom: 45px;
    text-align: center;
}

.credibility-sec .right .inner-content .icon img {
    margin: 0 auto;
}

.credibility-sec .right .inner-content p {
    font-size: 36px;
    color: #6a747c;
    font-weight: 700;
    margin-top: 45px;
}

.credibility-sec .right .inner-content span {
    color: #a30046;
    text-align: left;
    font-weight: 400;
}

div.brand-slider i.slick-arrow {
    position: absolute;
    bottom: 3px;
    color: #7a838a;
    cursor: pointer;
    z-index: 2;
}

div.brand-slider i.slick-arrow.icon-right-arrow {
    right: 207px;
}

div.brand-slider i.icon-left-arrow2 {
    left: 305px;
}

.membership-sec {
    width: 100%;
    background-image: url('../img/banner-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 140px 0;
}

.membership-sec .left-content-outer {
    padding-top: 0;
}

.left-content-outer {
    max-width: 935px;
    margin: 0 auto;
    padding-top: 80px;
    text-align: center;
}

.left-content-outer h3,
.left-content-outer p {
    color: #fff;
}

.form-field-inner .field-outer {
    max-width: 47%;
    margin: 0px 1%;
    margin-bottom: 40px;
}

.form-field-inner .field-outer select{
    background-color: transparent;
        color: #ffff;
        height: 54px;
}
.form-field-inner .field-outer select option{
    background-color: #ccc;
    color: #000;
}

.form-field-inner .field-outer:before {
    background-color: #fff;
}

.form-field-inner .text-checkbox{
    color: #fff;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.form-field-inner .btn-outer{
    color: #fff;
        display: block;
    margin: auto;
    text-align: center;
    margin-top: 20px;
}

.form-field-inner .field-outer label {
    font-style: normal;
    color: #fff;
    font-size: 18px;
}

.form-field-inner .field-outer.label-float label {
    color: #fff;
    font-size: 20px;
    top: -14px;
}

.form-field-inner .field-outer input {
    color: #fff;
    font-size: 24px;
}

.form-field-inner {
    margin-top: 40px;
}

.form-field-inner .field-outer:after {
    background-color: #fff;
}

.form-field-inner .btn-outer .btn {
    padding: 11px 34px;
}

.resources-sec {
    padding: 90px 0 115px;
    background-color: #fff;
    text-align: center;
}

.resources-sec .content h3 {
    margin-bottom: 45px;
}

.resources-sec .content ul.nav-tabs {
    border: none;
    text-align: center;
}

.resources-sec .content ul.nav-tabs>li {
    float: none;
    display: inline-block;
    padding: 0 15px;
    position: relative;
}

.resources-sec .content ul.nav-tabs>li a {
    font-size: 24px;
    font-weight: 300;
    color: #6a747c;
    text-transform: uppercase;
    padding: 10px 5px;
    border: none;
    background-color: transparent;
    line-height: 1;
}

.resources-sec .content ul.nav-tabs>li:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 21px;
    background-color: #6a747c;
    right: 0;
    top: 12px;
}

.resources-sec .content ul.nav-tabs>li:last-child:before {
    display: none;
}

.resources-sec .content ul.nav-tabs>li.active a {
    font-weight: 700;
    color: #a30046;
    position: relative;
}

.resources-sec .content ul.nav-tabs>li.active a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 0px;
    left: 0;
    background-color: #a30046
}

.resources-sec .content-inner ul.blog-slider {
    text-align: center;
}

.resources-sec .content-inner {
    margin-top: 45px;
}

.resources-sec .content-inner li.outer {
    width: 25%;
    padding: 0 10px;
    display: inline-block;
    vertical-align: top;
}

.resources-sec .content-inner li.outer:first-child {
    padding-left: 0;
}

.resources-sec .content-inner li.outer:last-child {
    padding-right: 0;
}

@-webkit-keyframes bounce {
    0%,
    20%,
    60%,
    100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateX(15px);
    }
    80% {
        -webkit-transform: translateX(10px);
    }
}

@-moz-keyframes bounce {
    0%,
    20%,
    60%,
    100% {
        -moz-transform: translateY(0);
    }
    40% {
        -moz-transform: translateX(15px);
    }
    80% {
        -moz-transform: translateX(10px);
    }
}

@-ms-keyframes bounce {
    0%,
    20%,
    60%,
    100% {
        -ms-transform: translateY(0);
    }
    40% {
        -ms-transform: translateX(15px);
    }
    80% {
        -ms-transform: translateX(10px);
    }
}

.blog-inner {
    text-align: left;
    cursor: pointer;
}


.blog-inner .thumb {
    width: 100%;
    min-height: 200px;
    background-image: url('../img/blog-1.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 20px
}

.blog-inner .thumb.img-2 {
    background-image: url('../img/blog-2.jpeg');
}

.blog-inner .thumb.img-3 {
    background-image: url('../img/blog-3.jpeg');
}

.blog-inner .thumb.img-4 {
    background-image: url('../img/event-1.jpeg');
}

.blog-inner .thumb.eimg-1 {
    background-image: url('../img/event-1.jpeg');
}

.blog-inner .thumb.eimg-2 {
    background-image: url('../img/event-2.jpeg');
}

.blog-inner .thumb.eimg-3 {
    background-image: url('../img/event-3.jpeg');
}

.blog-inner .thumb.eimg-4 {
    background-image: url('../img/event-4.jpeg');
}

.blog-inner .thumb.timg-1 {
    background-image: url('../img/training-1.jpeg');
}

.blog-inner .thumb.timg-2 {
    background-image: url('../img/training-2.jpeg');
}

.blog-inner .thumb.timg-3 {
    background-image: url('../img/training-3.jpeg');
}

.blog-inner .thumb.rimg-1 {
    background-image: url('../img/research-1.jpeg');
}

.blog-inner .thumb.rimg-2 {
    background-image: url('../img/research-2.jpeg');
}

.blog-inner .thumb.rimg-3 {
    background-image: url('../img/research-3.jpeg');
}

.blog-inner .thumb.rimg-4 {
    background-image: url('../img/research-4.jpeg');
}


.blog-inner h6 {
    font-size: 18px;
    color: #6a747c;
    margin-bottom: 10px;
    margin-top: 0;
    font-weight: 700;
    line-height: 1.5;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    transition: 0.4s all;
}

.blog-inner p {
    font-size: 14px;
    color: #6a747c;
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: 300;
}

.blog-inner span.event-date {
    font-size: 14px;
    color: #6a747c;
}

.blog-inner a {
    font-size: 14px;
    font-weight: bold;
    color: #a30046;
    text-decoration: none;
    outline: none;
}

.blog-inner a i {
    font-size: 10px;
    font-weight: 700;
    position: relative;
    top: 1px;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    transition: 0.4s all;
}

.blog-inner a.link div {
    display: inline-block;
}

.blog-inner:hover h6 {
    color: #007dc3;
}

.blog-inner:hover a.link div {
    -webkit-animation: bounce 2s infinite ease-in-out;
    -moz-animation: bounce 2s infinite ease-in-out;
    -ms-animation: bounce 2s infinite ease-in-out;
    -webkit-animation: bounce 2s infinite ease-in-out;
}

li:first-child .pd-all {
    padding-left: 0;
}

li:last-child .pd-all {
    padding-right: 0;
}

.pd-all {
    padding: 0 10px;
}

.careers-sec {
    width: 100%;
    background-image: url('../img/green-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 140px 0;
}

.careers-sec .left-content-outer {
    padding-top: 0;
}

.careers-sec .form-field-inner {
    text-align: center;
    margin-top: 30px;
}

.contact-sec {
    width: 100%;
    min-height: 640px;
    position: relative;
}

.contact-sec .left {
    min-height: 100%;
    background-image: url('../img/contact-bg.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 0;
    width: 50%;
}

.contact-sec .right-cover {
    position: absolute;
    width: 50%;
    height: 100%;
    left: 50%;
    background-color: #fff;
}

.contact-sec .right {
    float: right;
}

.contact-sec .right .left-content {
    padding-right: 0;
}

.contact-sec .right h3 {
    margin-bottom: 30px;
}

.contact-sec .right .form-field .field-outer {
    max-width: 100%;
    margin-bottom: 25px;
}

.contact-sec .right .form-field .field-outer:before {
    background-color: #6a747c;
}

.contact-sec .right .form-field .field-outer.half-field {
    max-width: 47%;
    display: inline-block;
}

.contact-sec .right .form-field .field-outer.half-field.name {
    margin-right: 20px;
}

.contact-sec .right .form-field .field-outer label {
    font-style: normal;
    top: 21px;
    text-transform: capitalize;
}

.contact-sec .right .form-field .field-outer input {
    padding-left: 0;
    padding-bottom: 0;
}

.contact-sec .right .form-field .label-float label {
    top: 3px;
}

.contact-sec .right .btn-outer {
    margin-top: 15px;
    margin-left: 0;
}

.contact-sec .right .btn-outer .btn-primary {
    background-color: #a30046;
    border-color: #a30046;
    padding: 11px 50px;
}

.contact-sec .right .left-content {
    padding: 135px 0 104px;
}

.contact-sec .right .btn-outer .btn-primary:hover,
.contact-sec .right .btn-outer .btn-primary:active,
.contact-sec .right .btn-outer .btn-primary:focus {
    background-color: transparent;
    color: #a30046;
}

.bloog-slider li {
    outline: none;
}

footer {
    background-color: #333333;
    padding: 65px 0;
}

footer .form-field .field-outer {
        max-width: 47%;
    margin-right: 2%;
    margin-bottom: 10px;
}

footer .form-field .field-outer select{
background-color: transparent;
    color: #fff;
    padding: 10px 0px;
        height: 45px;
}

footer .form-field .field-outer select option{
        background-color: #ccc;
    color: #000;
}

footer .form-field .text-checkbox{
    color: #fff;
}
footer .form-field .btn-outer{
    color: #fff;
}

footer .form-field .field-outer label {
    color: #fff;
    top: 26px;
}

footer .form-field .label-float label {
    top: 8px;
}

footer .form-field .field-outer input {
    padding-left: 0;
    padding-bottom: 0;
    color: #fff;
}

footer .right {
    float: right;
}

footer .right ul {
    padding-left: 0;
}

footer .right ul.social-link {
    padding-left: 0;
    float: right;
    padding-right: 30px;
    margin-bottom: 25px;
}

footer .right .social-link li {
    display: inline-block;
    padding: 0 15px;
}

footer .right .social-link li a {
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    transition: 0.4s all;
}

footer .right .social-link li a i {
    font-size: 35px;
    color: #fff;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    transition: 0.4s all;
}

footer .right .social-link li a:hover i {
    color: #007dc3;
}

footer .right .menu-link li {
    display: inline-block;
}

footer .right .menu-link {
    padding-left: 0;
    max-width: 350px;
    text-align: center;
    padding-top: 78px;
    margin-bottom: 0;
}

footer .right .menu-link li {
    display: inline-block;
    padding: 5px 8px;
    text-align: center;
    line-height: 1;
}

footer .right .menu-link li a {
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    transition: 0.4s all;
}

footer .right .menu-link li a:hover {
    color: #007dc3;
}

footer .field-outer:before {
    background-color: #ccc;
}





/*Back to top btn css*/

a.show {
    opacity: 0;
    visibility: hidden;
    transition: 0.25s all;
    -webkit-transition: 0.25s all;
    -ms-transition: 0.25s all;
    -moz-transition: 0.25s all;
}

a.show-me {
    opacity: 1;
    visibility: visible;
}

a.back-to-top {
    text-decoration: none;
    color: #fff;
    text-align: center;
}

a.back-to-top span {
    position: relative;
    right: 3px;
}

.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: none;
    border: none;
    background-color: #007dc3;
    text-align: center;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    box-shadow: 0px 0px 5px #00000087;
    z-index: 9;
}

.network-sec .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
}




/*Ending Back to top btn css*/

@media (min-width: 1800px) {
    .container,
    .container1 {
        width: 1450px;
    }

    .network-sec {
        width: 100%;
        background-color: #f0f1f2;
        padding: 180px 0;
        padding-top: 0;
        position: relative;
    }
    .network-sec .left-outer {
        padding-top: 180px;
    }
}


@media(max-width: 1399px) {
    div.brand-slider i.slick-arrow.icon-right-arrow {
        right: 126px;
    }
    div.brand-slider i.icon-left-arrow2 {
        left: 230px;
    }
}

@media(max-width: 1199px) {
    h3 {
        font-size: 45px;
    }
    /*.section-two .listing ul li .content{
        min-height: 238px;
        min-height: 177px;
    }*/
    .section-two .listing ul li .content h5 {
        font-size: 18px;
        min-height: 85px;
    }
    .left-content {
        padding-top: 80px;
        padding-right: 20px;
    }
    .form-field .field-outer {
       /*  max-width: 100%; */
        margin-bottom: 20px;
    }
    .form-field .btn-outer {
        margin-left: 0;
    }
    .network-sec .right {
        padding-left: 40px;
        margin-top: 0;
    }
    .network-sec {
        padding: 100px 0;
        padding-top: 0;
    }
    .network-sec .left-outer {
        padding-top: 100px;
    }
    .credibility-sec .left-content {
        padding-top: 100px;
    }
    .credibility-sec .right {
        padding-top: 100px;
        padding-left: 35px;
    }
    div.brand-slider i.slick-arrow.icon-right-arrow {
        right: 100px;
    }
    div.brand-slider i.icon-left-arrow2 {
        left: 150px;
    }
    .credibility-sec {
        padding-bottom: 100px;
    }
    .left-content-outer .btn-outer {
        margin-left: 15px;
    }
/*     .form-field-inner .field-outer {
        max-width: 475px;
    } */
    .resources-sec {
        padding: 90px 0;
    }
    .membership-sec,
    .careers-sec {
        min-height: unset;
    }
    .left-content-outer {
        padding-top: 0;
    }
    .left-content-outer {}
    .right {
        padding-left: 50px;
    }
    .contact-sec .right .left-content {
        padding: 100px 0;
    }
    footer {
        padding: 50px 0;
    }
    footer .form-field .btn-primary {
        padding: 11px 20px;
    }
    footer .form-field .field-outer {
        max-width: 274px;
    }
}

@media(max-width: 992px) {
    footer .right .social-link li {
        padding: 0 12px;
    }
    .section-two .listing ul li .content h5 {
        font-size: 16px;
        min-height: 95px;
    }
    .section-two .listing ul li .content {
        min-height: 100%;
    }
    li:first-child .pd-all {
        padding-left: 10px;
    }
    li:last-child .pd-all {
        padding-right: 10px;
    }
    .section-two .listing ul li .content a {
        font-size: 12px;
    }
    .section-two .listing ul li .content {
        padding: 20px 10px;
    }
    h3 {
        font-size: 35px;
    }
    .left-content h3 {
        margin-bottom: 20px;
    }
    .left-content {
        padding-top: 50px;
        padding-right: 0px;
    }
    .knowledge-sec .left-content {
        padding-right: 20px;
        padding-bottom: 80px;
    }
    .network-sec .right {
        padding-left: 15px;
    }
    .network-sec {
        padding: 80px 0;
        padding-top: 0;
    }
    .network-sec .left-outer {
        padding-top: 80px;
    }
    .credibility-sec .left-content {
        padding-top: 80px;
    }
    .credibility-sec .right {
        padding-top: 80px;
    }
    .credibility-sec .right .inner-content p {
        font-size: 26px;
    }
    .credibility-sec .right {
        padding-left: 20px;
    }

    .credibility-sec .right .inner-content .icon {
        margin-bottom: 20px;
    }
    div.brand-slider i.slick-arrow.icon-right-arrow {
        right: 78px;
    }
    div.brand-slider i.icon-left-arrow2 {
        left: 100px;
    }
    .credibility-sec {
        padding-bottom: 80px;
    }
    .credibility-sec .left-content p {
        margin-bottom: 0;
    }
    .credibility-sec .right .inner-content {
        padding-left: 0;
    }
    .membership-sec {
        padding: 80px 0;
    }
    .membership-sec .left-content,
    .careers-sec .left-content {
        padding-top: 0;
    }
    .resources-sec,
    .careers-sec {
        padding: 80px 0;
    }
    .blog-slider li.outer {
        outline: none;
    }
    .blog-slider li {
        outline: none;
    }
    .blog-inner h6 {
        font-size: 16px;
    }
    .blog-inner a {
        outline: none;
    }
    .right {
        padding-left: 35px;
    }
    .contact-sec .right .form-field .field-outer.half-field {
        max-width: 100%;
    }
    .contact-sec .right .left-content {
        padding: 80px 0;
    }
    footer .form-field .field-outer {
        max-width: 100%;
    }
    footer .form-field .btn-outer {
        margin-top: 15px;
    }
    footer .right .menu-link li {
        padding: 5px 8px;
    }
    footer .right {
        padding-left: 0;
    }
    footer .form-field {
        margin-top: 10px;
    }
    .section-two .listing ul li .content span {
        font-size: 40px;
    }
}

@media(max-width: 767px) {
    body {
        overflow-x: hidden;
    }
    .network-sec .right-outer {
        position: inherit;
        transform: none;
    }
    .credibility-sec .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .knowledge-sec .container-fluid {
        padding-left: 15px;
    }
    .section-two .listing ul li .content {
        padding: 20px;
    }
    footer .right {
        float: none;
    }
    .banner {
        min-height: auto;
        padding: 80px 0;
    }
    .banner .content {
        max-width: 100%;
        padding: 0 40px;
    }
    .section-two .listing {
        margin-top: 0;
    }
    .left-content {
        padding: 80px 25px 60px 25px;
        text-align: center;
    }
    .section-two .listing ul li .content h5 {
        min-height: 76px;
    }

    .knowledge-sec .left-content {
        padding-bottom: 60px;
    }
    .form-field {
        text-align: center;
    }
    .knowledge-sec .right {
        position: inherit;
        width: 100%;
        height: 100%;
        min-height: 600px;
        padding: 0;
    }
    .network-sec {
        padding: 80px 0;
        padding-bottom: 0;
    }
    .network-sec .right {
        text-align: center;
        padding-left: 0;
    }
    .network-sec .right-inner {
        position: inherit;
        width: 100%;
        min-height: 500px;
        display: none;
    }
    .network-sec .network-mobile-bg {
        display: block;
        padding-right: 0;
        padding-left: 0;
    }
    .network-sec .left-outer {
        float: none;
        padding-top: 0;
    }
    .credibility-sec {
        background-color: #fff;
    }
    .credibility-sec .right-cover {
        display: none;
    }
    .credibility-sec .right {
        padding: 0 25px;
    }
    .credibility-sec .right-bg {
        background-color: #fff;
        padding: 80px 15px;
    }
    .credibility-sec .left-bg {
        background-color: #007dc3;
        padding: 80px 15px;
    }
    .credibility-sec .left-content {
        padding-top: 0;
        padding-bottom: 0;
    }
    .membership-sec {
        padding: 80px 0;
    }
    .membership-sec .left-content,
    .careers-sec .left-content {
        padding-bottom: 0;
    }
    .credibility-sec {
        padding-bottom: 0px;
    }
    .credibility-sec .right .inner-content p {
        margin-top: 10px;
    }
    .resources-sec .content-inner {
        padding: 0 40px;
    }
    li:first-child .pd-all {
        padding-left: 15px;
    }
    .resources-sec .content-inner li.outer {
        width: 100%;
        padding: 0 15px;
    }
    .resources-sec .content-inner li.outer:first-child {
        padding-left: 15px;
    }
    .resources-sec .content-inner li.outer:last-child {
        padding-right: 15px;
    }
    .pd-all {
        padding: 0 15px;
    }
    .resources-sec .content ul.nav-tabs>li {
        padding: 0 9px;
    }
    .network-sec .right h3 {
        margin-bottom: 60px;
    }
    .right {
        padding-left: 15px;
    }
    .contact-sec {
        background-image: none;
        background-color: #fff;
    }
    /*.contact-sec .right-bg {
        position: inherit;
        background-image: url(../img/contact-bg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        height: 100%;
        min-height: 600px;
    }*/
    .contact-sec .left {
        position: inherit;
        width: 100%;
        min-height: 500px;
    }
    .contact-sec .right {
        float: none;
    }
    .contact-sec .right-bg-pd {
        padding: 0;
    }
    .membership-sec .form-field .field-outer {
        margin-bottom: 30px;
    }
    footer .right ul.social-link {
        float: none;
        margin-top: 20px;
        padding-right: 0;
        text-align: center;
    }
    footer .right .menu-link {
        margin: auto;
        padding-top: 0;
        max-width: 100%;
    }
    footer .right .menu-link li {
        padding: 5px 5px;
    }
    footer .logo {
        text-align: center;
    }
    footer .form-field .field-outer {
        max-width: 50%;
    }
    footer .form-field .btn-primary {
        font-size: 18px;
    }
    footer .form-field .btn-outer {
        margin-left: 15px;
    }
    footer .form-field {
        margin-top: 10px;
        margin-bottom: 30px;
    }
    .form-field .field-outer {
        max-width: 100%;
        margin-left: 0;
    }
    /*.section-two .listing ul li:nth-child(1) .list-item .content{
    border-bottom: 1px dotted #000;
}*/
    .list-item {
        width: 50%;
        float: left;
        margin-top: 30px;
    }
    ul.navbar-nav {
        padding-right: 15px;
    }
    .section-two .listing ul li:nth-child(2) .content:before {
        display: none;
    }

    .section-two .listing ul li:nth-child(1) .content:after,
    .section-two .listing ul li:nth-child(2) .content:after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        height: 1px;
        width: calc(100% - 40px);
        border-bottom: 1px dashed #000;
        margin: auto;
        left: 0;
    }
    .section-two .listing ul {
        padding-bottom: 0;
    }
    ul.blog-slider i.icon-left-arrow2,
    ul.blog-slider i.slick-arrow.icon-right-arrow {
        position: absolute;
        bottom: 3px;
        left: 51px;
        z-index: 2;
    }
    ul.blog-slider i.slick-arrow.icon-right-arrow {
        right: 51px;
        left: inherit;
    }
    .credibility-sec .right .inner-content {
        text-align: center;
    }
    .network-sec .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media(max-width: 480px) {
    footer .right .social-link li {
        padding: 0 10px;
    }
    .navbar-nav>li>a {
        font-size: 16px;
    }
    .navbar-default .navbar-nav>li>a {
        padding: 10px 15px;
    }
    .btn {
        font-size: 16px;
    }
    .navbar-default .navbar-header a.logo img {
        width: 100px;
    }
    .banner {
        padding: 50px 0;
    }
    .banner .content {
        padding: 0 15px;
    }
    .banner .content h1 {
        margin-bottom: 20px;
    }
    .banner .content h4 {
        margin-bottom: 40px;
    }
    h1 {
        font-size: 38px;
    }
    .banner .content h4 {
        font-size: 24px;
    }
    .left-content {
        padding: 50px 0;
    }
    .section-two .listing ul li .content h5 {
        min-height: 100%;
    }
    .knowledge-sec .left-content {
        padding-right: 0px;
    }
    h3 {
        font-size: 30px;
    }
    .network-sec {
        padding: 50px 0;
    }
    .credibility-sec .left-bg {
        padding: 50px 15px;
    }
    .credibility-sec .right .inner-content p {
        font-size: 22px;
    }
    .credibility-sec .right-bg {
        padding: 50px 15px;
    }
    .credibility-sec .right .inner-content {
        text-align: center;
    }
    .credibility-sec .right {
        padding: 0;
    }
    div.brand-slider i.icon-left-arrow2 {
        left: 51px;
    }
    ul.blog-slider i.icon-left-arrow2,
    ul.blog-slider i.slick-arrow.icon-right-arrow {
        position: absolute;
        bottom: 3px;
        left: 51px;
        z-index: 2;
    }
    ul.blog-slider li {
        outline: none;
    }
    ul.blog-slider i.slick-arrow.icon-right-arrow {
        right: 51px;
        left: inherit;
    }
    div.brand-slider i.slick-arrow.icon-right-arrow {
        right: 51px;
    }
    .membership-sec .left-content,
    .careers-sec .left-content {
        padding: 0 15px;
    }
    .resources-sec,
    .careers-sec {
        padding: 50px 0;
    }
    .resources-sec .content ul.nav-tabs>li a {
        font-size: 16px;
    }
    .resources-sec .content ul.nav-tabs>li {
        padding: 0 5px;
    }
    .resources-sec .content ul.nav-tabs>li:before {
        height: 13px;
    }
    .right {
        padding-left: 15px;
    }
    footer .form-field .field-outer {
        max-width: 100%;
    }
    .section-two .listing ul li .content span {
        font-size: 36px;
    }
    .section-two .listing ul li .content {
        padding: 25px 15px 10px;
    }
    .section-two .listing ul li .content h5 {
        font-size: 18px;
    }
    .resources-sec .content-inner {
        padding: 0 15px;
    }
    .list-item {
        width: 100%;
        margin-top: 0;
    }
    .section-two .listing ul li .content {
        min-height: 100%;
        padding-bottom: 25px;
    }
    .section-two .listing ul li .content:after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        height: 1px;
        width: calc(100% - 40px);
        border-bottom: 1px dashed #000;
        margin: auto;
        left: 0;
    }
    .section-two .listing ul li:last-child .content:after {
        display: none;
    }
    .membership-sec {
        padding: 50px 0;
    }
    .contact-sec .right .left-content {
        padding: 50px 0;
    }
    .knowledge-sec .right,
    .contact-sec .right-bg {
        min-height: 500px;
    }
}
