html,
button,
input,
select,
textarea {
    font-family: 'Nunito Sans', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    line-height: 28px;
}

p {
    margin-bottom: 20px;
}

a:hover {
transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
}

.container {
    max-width: 1200px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
}

/*.entry-content {*/
/*padding: 40px 0 40px;*/
/*}*/

/*h1.entry-title {*/
/*   font-weight: 500;*/
/*   color: #000;*/
/*   font-family: 'Ubuntu', sans-serif;*/
/*}*/

h2.section-title {
    font-weight:500;
    color: #000;
}

p {
    line-height: inherit;
    margin-bottom: 15px;
}

.outline-button {
    display: inline-block;
    position: relative;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    color: #000 !important;
    font-weight: 300;
    box-shadow: inset 0px 0px 0px 1px #000;
    padding: 12px 20px 12px 20px;
    -moz-transition: box-shadow .3s;
    -o-transition: box-shadow .3s;
    -webkit-transition: box-shadow .3s;
    transition: box-shadow .3s;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    overflow: hidden;
    line-height: 1;
    font-size: 14px !important;
    margin-top: 10px;
}

.outline-button:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
    z-index: -1;
    background-color: #000;
}

.outline-button:hover {
    color: #fff !important;
    background-color: transparent;
}

.outline-button:hover:before {
    left: 0;
}

.site-header {
    background: transparent;
    position: fixed !important;
}

body.home #page.site {
    padding-top: 100px;
}

#page {
    padding: 0;
}

.site-header .container {
    padding-top: 35px;
    padding-bottom: 20px;
    -webkit-transition: .4s;
    transition: .4s;
    -moz-transition: .4s;
    -webkit-transition: .4s cubic-bezier(.455,.03,.515,.955);
    transition: .4s cubic-bezier(.455,.03,.515,.955);
}

.site-header.fixed-header .container {
    border-bottom: 1px solid #efefef;
    padding-top: 15px;
    padding-bottom: 15px;
    -webkit-transition: .4s;
    transition: .4s;
    -moz-transition: .4s;
    -webkit-transition: .4s cubic-bezier(.455,.03,.515,.955);
    transition: .4s cubic-bezier(.455,.03,.515,.955);
}

.aw-upsell-page .site-header .container  {
    padding-top: 0;
    padding-bottom: 0;
}

.aw-upsell-page .site-header.fixed-header .container {
   border: none; 
}

.site-header .home-link {
    margin: 0;
}

.hero-section {
    padding-bottom: 220px;
    background:url('images/aW-bg-hero.png') no-repeat bottom 50px center;
    position:relative;
    background-attachment: scroll;
    background-size: 100%;
}

.hero-section a.scroll-btn {
    background:url('images/scroll-icon.svg') no-repeat center center;
    display: block;
    height: 40px;
    width: 40px;
    position: absolute;
    bottom: 20%;
    left:0;
    right:0;
    background-size: 90%;
    margin: 0 auto;
}

.hero-title h1 {
    color: #000;
    font-size: 110px;
}

.hero-title h1 span {
    color: #4981c2;
}

/*Navigation menu*/

header nav {
    background-color: rgba(0, 0, 0, 0.88);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
    top: 170px;
    transition: all 0.3s ease-in-out;
    max-width:1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header nav ul li {
    transform: translateY(50px);
    -moz-transform: translateY(50px);
    -webkit-transform: translateY(50px);
    opacity: 0;
    text-align: right;
    line-height: 1.5;
}

header nav ul li a {
    display: inline-block;
    font-size: 45px;
    text-decoration: none;
    padding: 0;
    text-align: right;
    color: #fff;
    font-weight: 200;
    transition: all 0.2s ease-in-out;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

header nav ul li a:hover {
    color: #29b473;
}

.toggle-btn {
    display: block;
    position: absolute;
    z-index: 10;
    right: 15px;
    top: 35px;
    cursor: pointer;
    -webkit-transition: .4s;
    transition: .4s;
    -moz-transition: .4s;
}

.toggle-btn .bar {
    width: 30px;
    height: 2px;
    margin: 6px auto;
    background-color: #4981c2;
    transition: all 0.3s ease-in-out;
}

#toggle:checked ~ nav {
    opacity: 1;
    visibility: visible;
}

#toggle:checked ~ nav ul {
    top: 135px;
}

#toggle:checked ~ nav ul li {
    transform: translateY(0px);
    opacity: 1;
}

#toggle:checked ~ nav ul li:nth-child(1) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.1s;
}

#toggle:checked ~ nav ul li:nth-child(2) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.2s;
}

#toggle:checked ~ nav ul li:nth-child(3) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.3s;
}

#toggle:checked ~ nav ul li:nth-child(4) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.4s;
}

#toggle:checked ~ nav ul li:nth-child(5) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.5s;
}

#toggle:checked ~ nav ul li:nth-child(6) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.6s;
}

#toggle:checked ~ nav ul li:nth-child(7) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.7s;
}

#toggle:checked ~ nav ul li:nth-child(8) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.8s;
}

#toggle:checked + label.toggle-btn .bar {
    background-color: #29b473;
}

#toggle:checked + label.toggle-btn .bar:nth-child(2) {
    transform: translateX(50px);
    opacity: 0;
}

#toggle:checked + label.toggle-btn .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

#toggle:checked + label.toggle-btn .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.site-header {
    -webkit-transition: .4s;
    transition: .4s;
    -moz-transition: .4s;
    -webkit-transition: .4s cubic-bezier(.455,.03,.515,.955);
    transition: .4s cubic-bezier(.455,.03,.515,.955);
}

.site-header img {
    -webkit-transition: .4s;
    transition: .4s;
    -moz-transition: .4s;
    -webkit-transition: .4s cubic-bezier(.455,.03,.515,.955);
    transition: .4s cubic-bezier(.455,.03,.515,.955);
}

.site-header .container {
    position: relative;
}

.site-header.fixed-header {
    -webkit-transition: .4s;
    transition: .4s;
    -moz-transition: .4s;
    background-color: rgba(255,255,255,0.95);
}

.site-header .menu-header-menu-1-container li#socialSectionPhone {
    display: block;
    margin-top: -70px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.9s;
    -moz-transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.9s;
    -webkit-transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.9s;
    max-width: 500px;
}

.site-header .menu-header-menu-1-container li#socialSectionPhone a {
    display: inline-block;
    margin-right: 8px;
}

.site-header .menu-header-menu-1-container li#socialSectionPhone a img {
    filter: inherit;
    -webkit-filter: grayscale(0);
}

.site-header .menu-header-menu-1-container li#socialSectionPhone a img:hover {
    opacity: 0.8;
}

.site-header.fixed-header .toggle-btn {
    top: 16px;
    -webkit-transition: .4s;
    transition: .4s;
    -moz-transition: .4s;
}

.whoWeAreSection {
    margin-top:0;
    padding: 70px 0;
    min-height: inherit;
    margin-bottom: 0px;
    background: #233b56;
}

.whoWeAreContent p {
    margin-bottom: 25px;
}

.whoWeAreSection h2.section-title {
    color:#fff;
}

.whoWeAreSection .whoWeAreContent {
    font-size: 18px;
}

.services {
    margin-bottom: 0px;
    padding-top: 60px;
    padding-bottom: 60px;
    background: url('images/aW-bg-services.svg') no-repeat bottom right;
    background-size: 450px;
    background-attachment: fixed;
    background-color: #f7f7f7;
}

.services h2.section-title {
    margin-bottom: 50px;
}

.services .service-card {
    min-height: 500px;
    box-shadow: 0px 0px 28px rgba(0,0,0,0.10);
    padding: 35% 30px 30px;
    position: relative;
    font-size: 18px;
    overflow: hidden;
    background: #fff;
    -webkit-transition: .4s;
    transition: .4s;
    -moz-transition: .4s;
}

.services .service-tagline {
   color: #4981c2;
   font-weight: 700;
   line-height: 25px;
}

.services .service-card:hover {
    -webkit-transition: .4s;
    transition: .4s;
    -moz-transition: .4s;
    transform:translateY(-8px);
    -moz-transform:translateY(-8px);
    -webkit-transform:translateY(-8px);
}

.services .service-card h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 28px;
    color:#333;
    font-weight: 700;
    margin-bottom:25px;
}

.services .service-card,
.project-row .card-action,
.product-section .card-action {
    position: relative;
}

.services .service-card {
    height: 100%;
}

.services .service-card p strong {
    color:#4981c2;
}

.services .row .col-12 {
    margin-bottom: 30px;
}

.card-box {
    margin-top: 15px;
}

.services .service-card a,
.project-row .card-action a,
.product-section .card-action a,
.card-box a {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #29b473;
    position: relative;
}

.services .service-card a:after,
.project-row .card-action a:after,
.card-box a:after{
    content: "";
    height: 1px;
    width: 70px;
    background-color: #333;
    position: absolute;
    top: 12px;
    right: -85px;
}

.services .service-card a:hover,
.project-row .card-action a:hover,
.product-section .card-action a:hover,
.card-box a:hover {
    color: #4981c2;
}

.services .service-card .service-icon {
    width: 300px;
    height: 300px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: -25%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.services .service-card .service-icon.serv-app {
    background: #bfffca url('images/app-dev.svg') no-repeat center;
    background-size: 30%;
    background-position-y: 75%;
}

body.home .services .service-card .service-icon.serv-integration {
 background-size: 27%;
background-position-y: 72%;   
}

.services .service-card .service-icon.serv-app.serv-app-portal {
 background-size: 30%;
background-position-y: 75%;   
}

.services .service-card .service-icon.serv-web {
    background: #daebff url('images/web-dev.svg') no-repeat center;
    background-size: 30%;
    background-position-y: 75%;
}

.services .service-card .service-icon.serv-market {
    background: #efffbf url('images/internet-marketing.svg') no-repeat center;
    background-size: 30%;
    background-position-y: 75%;
}

.services .service-card .service-icon.serv-seo {
    background: #e6e4ff url('images/seo-service.svg') no-repeat center;
    background-size: 30%;
    background-position-y: 75%;
}

.services .service-card .service-icon.serv-app-portal {
    background: #fdEdCd url('images/app-portals.svg') no-repeat center;
}

.services .service-card .service-icon.serv-integration {
    background: #efffbf url('images/integration.svg') no-repeat center;
}

.services .service-card .service-icon.serv-oc-customization {
    background: #ffd2d2 url('images/open-source.svg') no-repeat center;
}

.services .service-card .service-icon.serv-gen-keyword {
    background: #bfffca url('images/keywords.svg') no-repeat center;
}

.services .service-card .service-icon.serv-social-media {
    background: #efffbf url('images/social-media.svg') no-repeat center;
}

.services .service-card .service-icon.serv-one-time-opt {
    background: #daebff url('images/one-time-optimization.svg') no-repeat center;
}

.product-section {
    margin-bottom: 40px;
    background-color: #fff;
    padding: 70px 0;
}

.product-section h2 {
    color: #000;
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    margin: 20px 0 30px;
}

.product-section h2 span {
    font-size: 17px;
    display: block;
    color: #868686;
}

.product-section .product-content-box {
    background: #daebff;
    color: #333;
    padding: 30px 50px 40px 90px;
    position: relative;
}

.product-section .product-content-box.birdcalls-content {
    background: #efffbf;   
}

.product-section .product-content-box.awmaze-content {
    background: #bfffca;   
}

.product-section .product-content-box h3 {
    font-size: 26px;
    color: #000;
    font-weight: 600;
    margin: 0px 0 0px;
}

.product-section .product-content-box h4 {
    font-family: 'Nunito Sans', sans-serif;
    color:#000;
    font-size: 17px;
    font-weight:500;
    line-height: 25px;
    margin-top:0;
    position: relative;
    margin-bottom: 32px;
}

.product-section .product-content-box h4:after {
    position: absolute;
    content:"";
    bottom:-15px;
    left:0;
    height:1px;
    width:200px;
    background:#0000004d;
}

.product-section .product-content-box .brand-logo {
    height: 220px;
    width: 220px;
    background: #fff url('images/aw-ocu-logo.svg') no-repeat center center;
    position: absolute;
    left: -22%;
    top: 60px;
    background-size: 160px auto;
    box-shadow: 0px 0px 28px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 0px 28px rgba(0,0,0,0.10);
    -webkit-box-shadow: 0px 0px 28px rgba(0,0,0,0.10);
}

.product-section .product-content-box.birdcalls-content .brand-logo {
    background: #fff url('images/birdcalls-logo.png') no-repeat center center; 
    background-size: 160px auto;
}

.product-section .product-content-box.awmaze-content .brand-logo {
    background: #fff url('images/awmaze-logo.png') no-repeat center center; 
    background-size: 160px auto;
}

.product-section .product-content-box .ocu-action a {
    display: inline-block;
    padding: 7px 20px;
    border: 2px solid #fff;
    color: #000;
}

.product-section .product-content-box .ocu-action a:hover {
    background-color: #fff;
    color: #000;
    -webkit-transition: .4s;
    transition: .4s;
    -moz-transition: .4s;
}

.our-clients {
    background: #f8f8f8;
    padding: 50px 0 70px;
    margin-bottom: 50px;
}

 .our-clients .slick-prev {
    left: 0;
    display:none;
}

.our-clients .slick-next {
    right: 0;
    display:none;
}

.our-clients .slick-prev::before, 
.our-clients .slick-next::before { 
    color: #000;
    display:none;
}

.our-clients .slick-dots li button::before { 
    font-size: 36px;
}

.our-clients .slick-dots li button {
    padding: 2px;
}

.our-clients .slick-dots {
    bottom: -35px;
    margin-top: 30px;
}

.our-clients h2.section-title {
    margin-bottom: 70px;
}

.our-clients .rsDefaultInv,
.our-clients .rsOverflow,
.our-clients .rsSlide {
    background: transparent !important;
}

.our-clients .slick-slide img {
    margin:0 auto;
    max-width: 270px;
    max-height: 80px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .4s;
    transition: .4s;
    -moz-transition: .4s;
}

.our-clients .slick-slide img:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transition: .4s;
    transition: .4s;
    -moz-transition: .4s;
}

.testimonials {
    margin-bottom: 80px;
    padding: 60px 0;
}

.testimonials-section .testimonialBlock:last-of-type {
    margin-bottom: 20px;
}

.testimonials h2.section-title {
    margin-bottom: 50px;
}

.testimonials .testimonial-box {
    background: #fff;
    padding: 35px 50px;
    position: relative;
    box-shadow: 0px 0px 28px rgba(0,0,0,0.10);
    min-height: 370px;
}

.testimonials .testimonial-box:before,
.testimonials .testimonial-box:after {
    content:"";
    position:absolute;
    height:100px;
    width:100px;
    background-color:#487fbf;
    z-index:-1;
}

.testimonials .testimonial-box:before {
    top:-20px;
    left:-20px;
}

.testimonials .testimonial-box:after {
    bottom:-20px;
    right:-20px;
}

.testimonials .testimonial-box h5.author {
    font-weight: 700;
    margin: 0;
    margin-bottom: 5px;
}

.testimonials .testimonial-box .author-designation {
    font-weight: normal;
    color: #707070;
}

.testimonials .testimonial-box .author-company {
    font-weight: 500;
    color: #000;
    margin-left: 5px;
}

.hero-banner {
padding-bottom: 30px;
margin-bottom: 10px;
background-color: #fff;
}

.hero-banner-bg {
padding-top: 70px;
padding-bottom: 20px;
background-color: #f3f3f3;
}

.hero-banner-bg .container {
-webkit-box-pack: end;
justify-content: flex-end;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
display: -webkit-box;
display: flex;
}

.hero-banner h1,
.hero-banner.blog-banner h2 {
color: #111;
font-size: 50px;
-webkit-transform: translate3d(0,60%,0);
transform: translate3d(0,60%,0);
line-height: 1.1;
font-weight: 200;
text-transform: uppercase;
font-family: 'Oswald', sans-serif;
margin: 0;
}

.inner-page .about .intro-section {
background-color: #f7f7f7;
padding: 70px 0;
margin-bottom: 0;
}

.inner-page .about .intro-section h3 {
font-size: 20px;
color: #4981c2;
margin-bottom: 0;
line-height: 25px;
}

.inner-page .about .intro-section h2 {
font-size: 32px;
margin-top: 10px;
}

.services-page .content-area {
    padding-top: 50px;
}

.services-whitebg {
}

.leadership-box {
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0,0,0,0.12);
padding: 22px;
margin-bottom: 45px;    
}

.leadership-box img.alignleft {
    margin-right: 20px;
    border: 1px solid #ccc;
    padding: 3px;
    background: #f9f9f9;
}

.ceo-message {
position: relative;
max-width: 700px;
width: 100%;
}

.ceo-message .imgbox {
position: absolute;
right: 15px;
bottom: 15px;
text-align: right;
}

.ceo-message .imgbox .ceo-name {
font-size: 20px;
color: #fff;
font-weight: 700;
line-height: 20px;
}

.ceo-message .imgbox .designation {
font-size: 13px;
color: #fff;
font-weight:600;
}

.bcs-contribution-page {
    max-width: 420px;
    margin: 30px auto;
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    box-sizing: initial;
    -moz-box-sizing: initial;
    -webkit-box-sizing: initial;
}

.bcs-contribution-page .container {
    padding-left: 0;
    padding-right: 0;
}

.bcs-contribution-page .logo,
.bcs-contribution-page .content p{
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.bcs-contribution-page h1 span {
    display: block;
    font-size: 17px;
    color: #1d7125;
    text-align: center;
    font-weight: 500;
    margin-top: 12px;
}

.bcs-contribution-page .content p {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    line-height: 24px;
    padding-bottom: 30px;
}

.bcs-contribution-page .add-amount form {
    margin-bottom: 20px;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.bcs-contribution-page .price-box label {
    margin: 0;
}

.bcs-contribution-page .add-amount span.amt-pick {
    font-size: 20px;
    color: #000;
    width: 100px;
    display: inline-block;
    padding: 10px 12px;
    border: 1px solid #000;
    border-radius: 30px;
    font-weight: 700;
    margin: 0 3px;
    box-sizing: initial;
    -moz-box-sizing: initial;
    -webkit-box-sizing: initial;
    
}

.bcs-contribution-page .add-amount .amt-suggestion {
    margin-bottom: 45px;
}

.bcs-contribution-page .add-amount .proceed-btn {
    display: block;
    color: #fff;
    background-color: #3f7ef3;
    padding: 10px;
    font-weight: 600;
    border-radius: 5px;
}

body.single-post .content-area .entry-thumbnail img,
body.author .content-area .entry-thumbnail img {
    margin: 0 0 15px;
}

body.archive.category .site,
body.archive.tag .site,
body.archive.author .site {
    padding-top: 150px !important;
}

body.blog .site-content  {
color: #333;
font-family: 'Nunito Sans', sans-serif;
font-size: 18px;
line-height: 28px;
}

body.blog .site-content p {
font-family: 'Nunito Sans', sans-serif;
font-size: 18px;
line-height: 28px;  
margin-bottom: 20px;
}

body.blog .latestPost .latest-imgbox a {
    max-width:650px;
    width:100%;
    height: 225px;
}

body.blog .latestPost h2 {
    font-size: 26px;
    color: #222;
    margin: 15px 0 15px;
}

body.blog .latestPost h2 a {
    color: #222;
}

body.single .content-area h1,
body.author .content-area h1 {
font-size: 32px;
color: #222;
margin: 0px 0px 15px;    
}

.blogDetail h2 {
    font-size: 26px;
}

body.single .entry-meta a,
body.author .entry-meta a {
color: #888;
}

body.single .entry-meta a:hover,
body.author .entry-meta a:hover,
.sidebar-container .widget_recent_entries ul li a:hover,
body.author .content-area h1 a:hover {
color: #29b473;
}

.entry-meta .date a::before {
content: "\f303";
position: relative;
top: -2px;
}

.entry-meta .author::before {
color: #888;
}

.entry-meta .date a,
.categories-links a:first-child,
.tags-links a:first-child,
.entry-meta .author a.url {
    margin-left: 3px;
}

.categories-links a:first-child::before,
.tags-links a:first-child::before,
.entry-meta .author::before { 
position: relative;
top: -2px;
}

body.single .sidebar-container .gform_wrapper input,
body.blog .sidebar-container .gform_wrapper input,
body.author .sidebar-container .gform_wrapper {
    border:1px solid #eee !important;
}

body.single .sidebar-container .gform_wrapper input[type="submit"],
body.blog .sidebar-container .gform_wrapper input[type="submit"],
body.author .sidebar-container .gform_wrapper input[type="submit"],
body.request-information .gform_wrapper input[type="submit"]  {
color: #000;
padding: 8px 10px;
background: transparent;
border: 1px solid #000 !important;
font-size: 16px !important;
margin-top: 0px;
margin-bottom: 20px;
display: inline-block;
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
-moz-transition: all 0.4s ease-in-out 0s;
-webkit-transition: all 0.4s ease-in-out 0s;
-ms-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
text-transform: uppercase;
position: relative;   
max-width: 210px;
width: 100%;
font-family: 'Nunito Sans', sans-serif;
}

body.single .sidebar-container .gform_wrapper input[type="submit"]:hover,
body.author .sidebar-container .gform_wrapper input[type="submit"]:hover,
body.blog .sidebar-container .gform_wrapper input[type="submit"]:hover,
body.request-information .gform_wrapper input[type="submit"]:hover {
background-color: #000;
color: #fff;
}

.sidebar-container .widget_text {
margin-bottom: 20px;
}

.sidebar-container .widget_recent_entries ul li a {
color: #333;
font-size: 16px;
}

.archive-title {
font-size: 33px;
margin: 0 0 18px;
color: #333; 
font-family: 'Ubuntu', sans-serif;
}

body.archive.category h1.archive-title,
body.archive.tag h1.archive-title {
    font-weight: 700;
}

body.archive.category h1.archive-title span,
body.archive.tag h1.archive-title span {
    font-weight: 400;
}

body.author .content-area .hentry {
margin-bottom: 60px;
}

body.author .content-area .hentry h2 {
font-size: 26px;
margin-bottom:15px;
}

.blogArticle {
max-width: 340px;
margin-right: 40px;
}

.blogArticle:nth-of-type(2n+2) {
    clear: both;
}

.blogArticle h2 {
font-size: 22px;
font-family: 'Ubuntu', sans-serif;
font-weight: 600;
margin: 10px 0px 15px;
}

.blogArticle p {
font-size: 18px;
line-height: 28px;
}

.blogArticle h2 a {
color: #333;
}

.blogArticle h2 a:hover {
color: #29b473;
}

.blogArticle a.readMore, 
.latestPost a.readMore {
width: 316px;
height: 225px;
}

.blogArticle a.readMore span, 
.latestPost a.readMore span {
border: 1px solid #000;
margin: 60px auto 0;
padding: 6px 0;
max-width: 155px;
font-size: 18px;
color: #000;    
}

body.single-post .content-area .entry-thumbnail img {
    margin: 0 0 15px;
}

body.blog a.read-more,
body.archive a.read-more {
border: 1px solid #222;
padding: 4px 15px;
max-width: 120px;
width: 100%;
display: block;
text-align: center;
margin: 10px 0px;
color: #222;
text-transform: capitalize;
}

body.blog a.read-more:hover,
body.archive a.read-more:hover {
background-color: #000;
color: #fff;
}

body.archive .site {
    padding-top: 150px;
}

body.request-information .site-content {
    padding-top: 60px;
}

body.request-information .site-content .gfield_label {
font-size: 14px;
margin-bottom: 0;
}

body.request-information .gform_wrapper .top_label div.ginput_container {
   margin-top: 0 !important; 
}

.refund-policy-page .site-content {
    padding-top: 30px;
}

.refund-policy-page .testimonials {
    display:none;
}



@media only screen and (min-width:1100px) {  
    .seo-page .hero-banner h1,
    .services-page .hero-banner h1,
    .request-information .hero-banner h1,
    .refund-policy-page .hero-banner h1 {
        font-size: calc(20px + 30*(100vw - 480px)/760);
    }
    
    .seo-page .hero-banner-bg,
    .services-page .hero-banner-bg,
    .request-information .hero-banner-bg,
    .refund-policy-page .hero-banner-bg {
        padding-top: 130px;
    }
    
    .seo-page .hero-banner,
    .services-page .hero-banner,
    .request-information .hero-banner,
    .refund-policy-page .hero-banner {
         padding-bottom: calc(20px + 20*(100vw - 480px)/760); 
         margin-bottom: 0;
    }
    
}

@media only screen and (min-width:640px) {  
    .seo-page .hero-banner h1,
    .services-page .hero-banner h1,
    .request-information .hero-banner h1,
    .refund-policy-page .hero-banner h1 {
        font-size: calc(25px + 30*(100vw - 480px)/760);
    }

    
    .seo-page .hero-banner,
    .services-page .hero-banner,
    .request-information .hero-banner,
    .refund-policy-page .hero-banner {
         padding-bottom: calc(25px + 20*(100vw - 480px)/760); 
         margin-bottom: 0;
    }
    
}


@media only screen and (min-width:480px) { 
  .hero-banner h1,
  .hero-banner.blog-banner h2 {
      font-size: calc(40px + 50*(100vw - 480px)/760);
    }  

    .hero-banner {
       padding-bottom: calc(40px + 40*(100vw - 480px)/760); 
    }
}

@media only screen and (max-width:480px) {
  .hero-banner-bg {
      padding-top: 90px;
  }
  
  .hero-banner {
      padding-bottom: 55px;
  }
  
  .seo-service-page .hero-banner h1{
      font-size: 42px;
  }
  
  .error404 .not-found-page h1 {
      font-size: 140px;
      line-height: 120px;
  }
  
  .blogArticle {
      margin-right: 0;
  }
    
}

/*Portfolio page*/

.portfolioList {
    max-width:100%;
    padding-top: 10px;
}

.project-row {
    padding: 40px 40px 40px 120px;
    /*box-shadow: 0px 0px 16px rgba(0,0,0,0.1);*/
    border-radius: 5px;
    position: relative;
}

.project-row.brown-bg {
    background: #fdEdCd;
}

.project-row.green-bg {
    background: #bfffca;
}

.project-row.blue-bg {
    background: #daebff;
}

.project-row.yellow-bg {
    background: #efffbf;
}

.project-row.red-bg {
    background: #ffe5e5;
}

.project-row .card-action a {
    position: relative;
    bottom: inherit;
}

.project-row .img-box {
    max-width: 360px;
    overflow: hidden;
    position: absolute;
    left: -281px;
    border: 5px solid #fff;
    box-shadow: 0px 0px 16px rgba(0,0,0,0.1);
    background: #fff;
    height:175px;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.project-row h3 {
    margin: 0px 0 5px;
    font-size: 24px;
    font-weight: 500;
}

.project-row h3 a {
    color: #222;
}

.portfolio-detail-page {
    padding: 0px 0 0px;
    /*margin-top: 70px;*/
}

body.page-template-aw-portfolio-detail .info-section {
  margin-top: 0;  
}

.portfolio-detail-page p:empty {
display:none;
}

.portfolio-detail-page .entry-content {
    padding-top: 0;
}

.portfolio-detail-page h1.entry-title {
    margin-bottom: 20px;
}

.portfolio-detail-page h2 {
    color: #000;
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 10px;
}

.portfolio-detail-page p,
.portfolio-detail-page ul li,
.fifth-q-page .content-section p,
.fifth-q-page .content-section ul li {
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 20px;
}

.portfolio-detail-page ul li,
.fifth-q-page .content-section ul li{
    margin-bottom: 20px;
}

.portfolio-detail-page .conclusionSection {
    margin-top: 80px;
    padding: 60px 0;
}

.portfolio-detail-page .conclusionSection p {
    font-size: 21px;
    line-height: 32px;
    margin-bottom: 28px;
}

.portfolio-detail-page .conclusionSection a {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #444;
    color: #444;
    margin-right: 15px;
    font-size: 16px;
}

.portfolio-detail-page .conclusionSection a:hover,
.portfolio-detail-page .conclusionSection a.contact-btn {
    background-color: #444;
    color: #fff;
}

.portfolio-detail-page .conclusionSection a.go-back-btn {
    border:none;
    background:inherit;
    color:#444;
    text-decoration:underline;
    padding: 12px 10px;
}

.portfolio-detail-page .conclusionSection a.contact-btn:hover {
    background-color: inherit;
    color: #444;
}

.info-section {
    margin: 50px 0 80px;
    padding: 0px;
}

.info-section .info-inner {
    background: #5c5c5c;
    padding: 50px 50px 90px;
    position: relative;
}

.info-section .info-inner .aw-bird {
    width: 250px;
    height: 200px;
    position:absolute;
    bottom: -70px;
    right:0;
    left:0;
    margin:0 auto;
    background:url('images/aW-bird.png') no-repeat center center;
    background-size:100%;
}

.info-section .action-card {
    color: #fff;
    text-align:center;
    padding: 0 50px;
}

.info-section .action-card h3 {
    color:#fff;
    margin-top:0;
    margin-bottom: 0;
    font-weight:500;
}

.info-section .action-card p {
    font-size: 18px;
    font-weight: 300;
}

.info-section .action-card a.cta-btn {
    display:inline-block;
    color:#fff;
    padding: 8px 15px;
    border: 1px solid #fff;
    margin-top: 20px;
}

.info-section .action-card a.cta-btn:hover {
background-color: #fff;
color: #000;
transition: all .5s ease;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease
}

.site-footer {
    border: none;
    padding: 26px 0 0;
    margin-bottom: 20px;
}

body.academy .site-footer {
  border-top: 2px solid #ddd;  
}

#dynamic-to-top {
    bacground-color: rgba(73, 129, 194, .40);
    text-shadow:none;
    box-shadow:none;
    border-radius: 50%;
}

.fifth-q-page .site-header {
    padding: 20px 0;
}

.fifth-q-page .site-header .home-link {
    max-width: 155px;
}

.fifth-q-page .content-section {
    margin-top: 40px;
}

.site-main .sidebar-container,
.site-main .widget-area,
ul#menu-about-us-sidebar-menu,
ul.child-sidebar-menu {
    width: 100%;
    float: none;
    max-width: 100%;
}

.site-main .sidebar-container {
    margin-right: 0;
    padding: 0 0px;
}

ul#menu-about-us-sidebar-menu li a,
ul.child-sidebar-menu li a {
    background-color: #f2f2f2;
    border-bottom: 1px solid #eaeaea;
    font-family: 'Ubuntu', sans-serif;
    color: #444;
    font-size: 17px;
    letter-spacing: 0.4px;
    padding: 5px 12px;
    font-weight: 500;
    display:block;
}

ul#menu-about-us-sidebar-menu li a:hover,
ul.child-sidebar-menu li a:hover ,
ul#menu-about-us-sidebar-menu li.current_page_item a,
ul.child-sidebar-menu li.current_page_item a,
ul#menu-about-us-sidebar-menu li.current-page-ancestor a,
ul.child-sidebar-menu li.current-page-ancestor a {
    color: #4981C2;
}

ul#menu-about-us-sidebar-menu li ul.sub-menu li a {
    background-color: #fff;
    font-size: 15px;
}

ul#menu-about-us-sidebar-menu li ul.sub-menu li {
    padding: 0;
}

ul#menu-about-us-sidebar-menu li a:hover,
ul.child-sidebar-menu li a:hover,
ul#menu-about-us-sidebar-menu li.current_page_item a,
ul.child-sidebar-menu li li.current_page_item a {
    background-color: #edf5ff;
}

ul.child-sidebar-menu li.current_page_item a {
     background-color: #edf5ff;
}

ul#menu-about-us-sidebar-menu li ul.sub-menu,
ul.child-sidebar-menu li ul.sub-menu  {
    margin: 10px 0 0px 10px;
}

ul.child-sidebar-menu li ul.sub-menu {
margin-bottom: 10px;
}


ul#menu-about-us-sidebar-menu li ul.sub-menu li,
ul.child-sidebar-menu li ul.sub-menu li {
    list-style-type: none;
}

ul#menu-about-us-sidebar-menu li ul.sub-menu li a:hover,
ul.child-sidebar-menu  li ul.sub-menu li a:hover,
ul#menu-about-us-sidebar-menu li ul.sub-menu li.current_page_item a,
ul.child-sidebar-menu li ul.sub-menu li.current_page_item a {
    color: #29B473;
}

aside .testimonialsSection h2 {
    color: #000;
    font-weight: 500;
    font-size: 25px;
    padding: 0 0 5px 0;
    border:none;
}

aside .testimonialsSection .contentArea {
    color: #000;
    background-color: #f5f5f5;
    padding: 16px;
    border-top: 1px solid #ccc;
    border-bottom: none;
    font-size: 16px;
}

aside .testimonialsSection .aboutAuthor,
aside .testimonialsSection a.viewAllButton {
    font-family: 'Ubuntu', sans-serif;
}

aside .testimonialsSection .company-name {
font-weight: 600;
}

aside .testimonialsSection a.viewAllButton {
    background-color: #51c68f;
    border: 0;
    /*border: 1px solid #000;*/
    color: #fff;
    font-size: 16px;
    font-weight:500;
    width: 100%;
    text-align: center;
}

aside .testimonialsSection a.viewAllButton:hover {
    background-color: #31b373;
    color:#fff;
}

.inner-page .entry-content ul li,
.inner-page .entry-content ol li{
font-size: 18px;
    line-height: 27px;
}

.inner-page .entry-content h2,
.inner-page .services h2 {
    font-size: 36px;
    font-weight: 500;
    color: #000;
    font-family: 'Ubuntu', sans-serif;
    margin: 30px 0 15px;
}

.inner-page .services h2 {
    margin-bottom: 40px;
}

.inner-page .entry-content h3 {
    font-size: 24px;
    color: #000;
    margin: 30px 0 5px;
    font-weight: 500;
}

.inner-page .intro-section {
    padding: 0px 0;
    position: relative;
    /*background: #f8f8f8;*/
    z-index: 100;
    margin-bottom: 20px;
}

.inner-page.service-page h3 {
    margin-bottom: 30px;
    margin-top: 50px;
    font-weight: 500;
    color: #000;
    font-size: 30px;
}

.inner-page .services {
    margin-bottom: 20px;
    /*padding-bottom: 0;*/
    background: inherit;
    background-size: inherit;
    background-attachment: inherit;
    background-color: #fff;
    padding: 0px 0 60px;
    border-bottom: 1px solid #eee;
}

.inner-page .services .service-card {
    min-height: 350px;
}

.inner-page .services .service-card .service-icon {
    background-size: 27%;
    background-position-y: 80%;
    width: 250px;
    height: 250px;
    top: -125px;
}

.inner-page .services .service-card {
   padding-top: 130px; 
}

.inner-page .services .service-card h3 {
    font-size: 22px;
    line-height: 35px;
    margin-top: 28px;
}

.inner-page .testimonial-section {
    position: relative;
    z-index: 10;
}

.contact-page .our-locations {
    margin-top: 10px;
    padding: 30px 0 30px;
}

.contact-page .our-locations .location-box {
    background-color: #fff;
    margin: 0 0 45px;
    box-shadow: 0 2px 9px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 2px 9px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 2px 9px rgba(0,0,0,0.2);
}

.contact-page .our-locations h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 42px;
}

.contact-page .our-locations h4 {
    font-size: 17px;
    margin: 8px 0 5px;
    font-family: 'Nunito Sans', sans-serif;
    color: #000;
    font-weight: 700;
}

.contact-page .our-locations .pr-10 {
    padding-right: 10px !important;
}

.contact-page .our-locations .location-box .cont-box p {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 8px;
}
    
.contact-page .our-locations .location-box .flag-box {
    /*background: #eee;*/
    position: relative;
}

.contact-page .our-locations .location-box .flag-box img {
    margin: 12px;
}

.contact-page .our-locations .location-box.usa-location:hover .texasLocationPointer {
    display: block;
}

.contact-page .our-locations .location-box.india-location:hover .udaipurLocationPointer {
    display: block;
}

.contact-page .our-locations .location-box.uae-location:hover .dubaiLocationPointer {
    display: block;
}

.contact-page .our-locations .img-box {
    position: relative;
}
 
.contact-page .our-locations .location-box.usa-location:hover .texasLocationPointer {
    margin: 0;
    bottom: -123px;
    right: -266px;
    z-index: 20;
}

.contact-page .our-locations .location-box.india-location:hover .udaipurLocationPointer {
    z-index: 20;
    right: -517px;
    bottom: 27px;
    margin: 0;
}

.contact-page .our-locations .location-box.uae-location:hover .dubaiLocationPointer {
    z-index: 20;
    right: -490px;
    bottom: 179px;
    margin: 0;
}

.contact-page .banner {
    background-position: center top;
}

.row-eq-height {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
}

.row-eq-height .row-box {
    display: flex;
}

.client-section {
    margin-top: 30px;
}

.client-section .client-box {
    position: relative;
    margin-bottom: 50px;
}

.client-section .client-box .image-box {
    background: #fff;
    padding: 50px;
    box-shadow: 0px 0px 28px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 0px 28px rgba(0,0,0,0.10);
    -webkit-box-shadow: 0px 0px 28px rgba(0,0,0,0.10);
    position: absolute;
    width: 220px;
    height: 220px;
    left: 0;
    right: 0;
    top: 50%;
    left: 90%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 30;
}

.client-section .client-box .image-box img {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 15px;
}

.client-section .client-box .client-content {
    background: #8ec697;
    padding: 20px 20px 20px 90px;
    min-height: 280px;
}

.client-section .client-box.client-box-1 .client-content {
    background: #f7e4b9;   
}

.client-section .client-box.client-box-2 .client-content {
    background: #ffd2cf;  
}

.client-section .client-box.client-box-3 .client-content {
    background: #e6ddae;
}

.client-section .client-box.client-box-4 .client-content {
    background: #d0ffc6;
}

.client-section .client-box.client-box-5 .client-content {
    background: #daebff;
}

.client-section .client-box.client-box-6 .client-content {
    background: #bcdcff;   
}

.client-section .client-box.client-box-7 .client-content {
    background: #f9d1d1;  
}

.client-section .client-box.client-box-8 .client-content {
    background: #bef4ff;
}

.client-section .client-box.client-box-9 .client-content {
    background: #ceeec2;
}

.client-section .client-box.client-box-10 .client-content {
    background: #cdead7;
}

.client-section .client-box.client-box-11 .client-content {
    background: #fffcbc;
}

/*.client-section .client-box .client-content .desc {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    -moz-transform: translate(-50%, -50%);*/
/*    -webkit-transform: translate(-50%, -50%);*/
/*    -ms-transform: translate(-50%, -50%);*/
/*    transform: translate(-50%, -50%);*/
/*    width: 100%;*/
/*    max-width: 70%;*/
/*}*/

.client-section .client-box .client-content .desc  {
    padding: 25px;
}

.client-section .client-box .client-content .desc h3 {
    font-size: 26px;
    line-height: 28px;
    color: #000;
    margin-top: 0;
    margin-bottom: 20px;
}

.client-section .client-box .client-content .desc h3 a {
    color: #000;
}

.client-section .client-box .client-content .desc p {
    margin-bottom: 0;
    font-size: 16px;
}

.client-section .client-box .client-content .desc a.btn-outline {
    color: #000;
    padding: 8px 10px;
    background: transparent;
    border: 1px solid #000;
    font-size: 14px;
    margin-top: 20px;
    display: inline-block;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    text-transform: uppercase;
    position: relative;
}

.client-section .client-box .client-content .desc a.btn-outline:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.client-section .client-box .client-content .desc a.btn-outline:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.client-section .client-box .client-content .desc a.btn-outline:hover {
    color: #fff;
}

.client-section .client-box .client-content .desc a.btn-outline img {
    margin-left: 5px;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 18px;
    height: 18px;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    
}

.client-section .client-box .client-content .desc a.btn-outline:hover img {
    -webkit-filter: grayscale(1) invert(1);
    filter: grayscale(1) invert(1);
    -moz-transform: translate(4px, -50%);
    -ms-transform: translate(4px, -50%);
    -webkit-transform: translate(4px, -50%);
    transform: translate(4px, -50%);
}

.client-section .client-box .client-content .desc a.btn-outline span {
    margin-right: 25px;
}

.mobile-application-section .client-box {
    box-shadow: 0px 0px 28px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0px 0px 28px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 28px rgb(0 0 0 / 10%);
    background: #fff;
    padding: 20px 15px;
    margin-bottom: 30px;
}

.mobile-application-section .client-box .app-link a {
    margin: 0 3px;
}

.mobile-application-section .client-box .logo-box {
    min-height: 110px;
    position: relative;
}

.mobile-application-section .client-box .logo-box img {
    position: absolute;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    left: 50%;
    margin: 0;
}

.mobile-application-section .client-box h4 {
    font-size: 21px;
    margin-top: 0;
    color: #000;
    font-weight: 600;
}

/*-----------------About Page----------------------*/
.our-vision-section {
    padding: 21px 340px 0 15px;
    color: #fff;
    margin: 0 auto;
    background: url('images/whoWeAre-contentBG.png') no-repeat right 100px;
}

.our-vision-section .vision-cont {
    max-width: 800px;
}

.our-vision-section {
padding: 70px 0;
background-color: #233b56;
color: #fff;
}

.about-page .our-vision-section h2 {
margin: 10px 0 10px;
color: #fff;
}

.about-page .our-vision-section h3 {
font-size: 20px;
color: #fff;
line-height: 30px;
margin-bottom: 25px;
}

.our-vision-section ul.nav-tabs li {
background: none;
padding: 0;
margin: 0 15px 0 0;
}

.our-vision-section ul.nav-tabs li:last-of-type {
    margin-right: 0;
}

.our-vision-section ul.nav-tabs {
border-bottom: none;
}

.our-vision-section ul.nav-tabs li a.nav-link {
border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
color: #fff;
font-size: 18px;
border: none;
border: 2px solid #fff;
line-height: 18px;
}

.our-vision-section ul.nav-tabs li a.nav-link:hover {
background-color: #fff;
color: #000;
}

.our-vision-section p:empty {
display:none;
}

.our-vision-section ul.nav-tabs li a.nav-link.active {
    color: #000;
}

.our-vision-section .tab-pane ul {
    list-style-type: square;
    padding-left: 20px;
}

.our-vision-section .tab-pane ul li {
    padding: 0;
    margin: 0 0 15px;
    background: none;
    list-style-type: square;
    overflow: inherit;
}


.about-page .info-section {
    margin-top: 0;
}

.entry-content.about {
    padding: 0;
}

.executive-section {
    padding: 60px 0 60px;
    background: #f7f7f7;
}

.executive-section .executive-box {
    position: relative;
    margin-bottom: 50px;
}

.about-page .executive-section h2 {
    color: #000;
    margin-bottom: 0;
}

.about-page .executive-section h3 {
    font-size: 20px;
    color: #4981c2;
    line-height: 30px;
    margin-bottom: 40px;
    margin-top: 5px;
}

.executive-section .executive-box .image-box {
    background: #fff;
    padding: 50px;
    box-shadow: 0px 0px 28px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 0px 28px rgba(0,0,0,0.10);
    -webkit-box-shadow: 0px 0px 28px rgba(0,0,0,0.10);
    position: absolute;
    width: 145px;
    height: 145px;
    left: 0;
    right: 0;
    top: 50%;
    left: 90%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 30;
}

.executive-section .executive-box .image-box img {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /*padding: 15px;*/
}

.executive-section .executive-box .executive-content {
    background: #8ec697;
    padding: 10px 20px 20px 90px;
    min-height: 300px;
}

.executive-section .executive-box .executive-content.box-large {
    min-height: 380px;
}

.executive-section .executive-box.executive-box-1 .executive-content {
    background: #bfffca;   
}

.executive-section .executive-box.executive-box-2 .executive-content {
    background: #daebff;  
}

.executive-section .executive-box.executive-box-3 .executive-content {
    background: #ffd2d2;
}

.executive-section .executive-box.executive-box-4 .executive-content {
    background: #efffbf;
}

.executive-section .executive-box .executive-content .desc {
    position: absolute;
    left: 0;
    right: 0;
    top: 48%;
    left: 52%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 84%;
}

.executive-section .executive-box .executive-content .desc h3 {
    margin: 0;
    font-size: 30px;
    margin-bottom: 8px;
    color: #000;
}

.executive-section .executive-box .executive-content .desc h4 {
    margin: 0;
    color: #000;
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 1px solid #0000004d;
    padding-bottom: 20px;
}

.executive-section .executive-box .executive-content .desc p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 24px;
}

.ceo-message-section {
    padding: 70px 0 70px;
    color: #fff;
    position: relative;
    background: #233b56;
}

.ceo-message-section .ceo-details h4 {
    font-size: 20px;
    margin: 10px 0 10px;
    color: #fff;
}

.ceo-message-section .ceo-details p {
    margin-bottom: 0;
    font-size: 14px;
    font-style: italic;
    line-height: 20px;
}

.ceo-message-section .content-box {
    /*position: absolute;*/
    /*background: #233b56;*/
    /*bottom: 0;*/
    /*max-width: 650px;*/
    /*padding: 20px 30px;*/
    /*right: 40px;*/
}

.about-page .ceo-message-section h2 {
    color: #fff;
    margin-top: 0;
}

.ceo-message-section p {
    margin-bottom: 20px;
}

.privacy-policy p {
    font-size: 16px;
    margin-bottom: 30px;
}

.privacy-policy .entry-content .container,
.terms-conditions .entry-content .container,
.list-holiday-page .entry-content .container {
    padding-top: 20px;
}


.terms-conditions h4 {
    color: #000;
    margin: 30px 0 10px;
}

.terms-conditions h4:first-of-type {
    margin-top: 0;
}

.list-holiday-page .month-box {
    box-shadow: 0px 0px 18px rgba(0,0,0,0.10);
    -webkit-box-shadow: 0px 0px 28px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 0px 28px rgba(0,0,0,0.10);
    background: #fff;
    width: 100%;
    margin-bottom: 30px;
}

.list-holiday-page .cont-box {
    padding: 15px 15px;
}

.list-holiday-page h3 {
    color: #000;
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 30px;
}

.list-holiday-page h5 {
    margin-bottom: 10px;
    font-weight: 600;
    background: #eee;
    padding: 5px 15px;
    font-size: 18px;
    margin: 0;
}

.list-holiday-page span {
    font-size: 15px;
    font-weight: 800;
    display: block;
}

.list-holiday-page p {
    margin-bottom: 8px;
    font-size: 15px;
}

.list-holiday-page .cont-box p:last-of-type {
    margin-bottom: 0;
} 

ul#menu-about-us-sidebar-menu li ul.sub-menu li:last-of-type a {
    border-bottom: none;
}

.testimonials-section .innerPageContent {
    float:none;
    max-width: 100%;
}

.testimonials-section .testimonials {
    margin-bottom: 50px;
}

.testimonials-section .testimonials p {
    line-height: 22px;
    color: #000;
}

.testimonials-section .testimonials p.companyName {
    font-weight: 700;
}

.integration-box {
    margin-top: 50px;
}

.int-serv-card {
	padding: 14px;
	margin-bottom: 30px;
	box-shadow: 0 0 12px #ddd;
	border-radius: 12px;
	height: 320px;
}

.int-serv-card h2 {
    font-size: 20px!important;
    margin-top: 8px!important;
    margin-bottom: 30px!important;
    font-weight: 700;
}

.int-serv-card img {
	max-height: 230px;
}


@media only screen and (max-width:1200px) {
    .contact-page .our-locations .location-box {
        margin: 0 0 30px;
    }
}

@media only screen and (max-width:1180px) {
    .contact-page .our-locations .location-box.usa-location .texasLocationPointer img,
    .contact-page .our-locations .location-box.india-location .udaipurLocationPointer img,
    .contact-page .our-locations .location-box.uae-location .dubaiLocationPointer img {
        max-width: 90%;
        height: auto;
    }
    
    .contact-page .our-locations .location-box.usa-location:hover .texasLocationPointer {
        bottom: -123px;
        right: -211px;
    }
    
    .contact-page .our-locations .location-box.india-location:hover .udaipurLocationPointer {
        bottom: 18px;
        right: -463px;
    }
    
    .contact-page .our-locations .location-box.uae-location:hover .dubaiLocationPointer {
        right: -436px;
        bottom: 162px
    }
}

@media only screen and (max-width:1024px) {
    .contact-page .our-locations .location-box.usa-location .texasLocationPointer img,
    .contact-page .our-locations .location-box.india-location .udaipurLocationPointer img,
    .contact-page .our-locations .location-box.uae-location .dubaiLocationPointer img {
        max-width: 80%;
        height: auto;
    }
    
    .contact-page .our-locations .location-box.usa-location:hover .texasLocationPointer {
        bottom: -116px;
        right: -199px;
    }
    
    .contact-page .our-locations .location-box.india-location:hover .udaipurLocationPointer {
        bottom: 15px;
        right: -416px;
    }
    
    .contact-page .our-locations .location-box.uae-location:hover .dubaiLocationPointer {
        right: -392px;
        bottom: 147px;
    }
    
    .about-page .our-vision-section {
        background: #233b56 url('images/whoWeAre-contentBG.png') no-repeat right bottom;
        padding-bottom: 200px;
        background-size: 53%;
    }
    
    .contact-page .our-locations .location-box .cont-box p {
        margin-bottom: 6px;
    }
    
    .contact-page .our-locations h4 {
        font-size: 16px;
    }
}

@media only screen and (max-width:991px) {
    .client-section .client-box .client-content .desc {
        left: 54%;
    }
    
    .info-section .info-inner {
        padding: 50px 0px;
    }
    
    .info-section .info-inner .aw-bird {
        width: 200px;
        height: 170px;
        bottom: -50px;
        right: -30px;
    }
    
    .contact-page .our-locations .location-box.usa-location .texasLocationPointer,
    .contact-page .our-locations .location-box.india-location .udaipurLocationPointer,
    .contact-page .our-locations .location-box.uae-location .dubaiLocationPointer,
    .contact-page .our-locations .location-box.usa-location:hover .texasLocationPointer,
    .contact-page .our-locations .location-box.india-location:hover .udaipurLocationPointer,
    .contact-page .our-locations .location-box.uae-location:hover .dubaiLocationPointer{
        display: none;
    }
    
    .contact-page .our-locations {
        padding: 30px 0 0;
    }
    
    .services-page .content-area {
        padding-top: 20px;
    }
    
    .services-page .content-area .container {
        padding: 0 15px;
    }
    
    .services-page .content-area .sidebar-container {
        margin-top: 30px;
        padding: 0;
    }
    
    body.archive .site {
        padding-top: 120px;
    }
    
   body.blog .sidebar-container {
        margin-top: 30px;
    }
    
    .project-row .img-box {
        position: relative;
        top: inherit;
        transform:inherit;
    }
    
    .page-template-aw-portfolio .entry-content .mobile-spacing-0 {
        margin-bottom: 1.5rem !important;
    }
    
    .page-template-aw-portfolio .entry-content .mobile-spacing-0:last-of-type {
        margin-bottom: 0 !important;
    }
}

@media only screen and (min-width:768px) and (max-width:1140px) {
     .executive-section .executive-box .executive-content.box-large {
        min-height: 450px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    
    .executive-section .executive-box .executive-content {
        min-height: 320px;
    }
    
    .executive-section .executive-box .executive-content .desc {
        left: 55%;
    }
    
    .executive-section .executive-box {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width:767px) {
  
    .row-eq-height,
    .row-eq-height .row-box {
        display: inherit;
    }
    
    .mobile-0 {
        margin-bottom: 0 !important;
    }
    
    .mobile-p0 {
        padding-bottom: 0 !important;
    }
    
    .leadership-box {
        margin-bottom: 35px;
    }
    
    .inner-page .entry-content ul li, .inner-page .entry-content ol li {
        font-size: 16px;
    }
    
    .client-section .container {
        padding: 0;
    }
    
    .client-section {
        margin-top: 50px;
    }
    
    .client-section .client-box .image-box,
    .executive-section .executive-box .image-box {
        width: 150px;
        height: 150px;
        left: 0;
        right: 0;
        top: -49px;
        margin: 0 auto;
        -moz-transform: inherit;
        -webkit-transform: inherit;
        -ms-transform: inherit;
        transform: inherit;
    }
    
    .client-section .client-box .client-content,
    .executive-section .executive-box .executive-content{
        padding: 110px 20px 30px 20px;
        min-height: inherit;
    }
    
    .client-section .client-box .client-content .desc,
    .executive-section .executive-box .executive-content .desc {
        position: relative;
        left: inherit;
        right: inherit;
        top: inherit;
        left: inherit;
        -moz-transform: inherit;
        -webkit-transform: inherit;
        -ms-transform: inherit;
        transform: inherit;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .client-section .client-box {
        margin-bottom: 100px;
    }
    
    .client-section .client-box:last-of-type {
        margin-bottom: 0px;
    }
    
    .executive-section .executive-box {
        margin-bottom: 60px;
    }
    
    .executive-section .executive-box:last-of-type {
        margin-bottom: 30px;
    }
    
    .about-page .intro-section img.alignright {
        margin: 10px 0 20px 0;
        float: inherit;
    }
    
    .about-page .executive-section,
    .about-page .intro-section {
        padding: 0px 0 30px;
    }
    
    .about-page .executive-section h3 {
        margin-bottom: 90px;
    }
    
    .about-page .ceo-message-section h2 {
        margin: 30px 0 20px;
    }
    
    .our-vision-section ul.nav-tabs li {
        margin-bottom: 8px;
    }
    
    .inner-page .about .intro-section {
        padding-top:30px;
        padding-bottom: 10px;
    }
    
    .about-page .our-vision-section {
        padding-bottom: 110px;
    }
    
    .privacy-policy .entry-content .container,
    .terms-conditions .entry-content .container,
    .list-holiday-page .entry-content .container {
        padding-top: 20px;
    }
    
    .privacy-policy .entry-content .container,
    .list-holiday-page .entry-content .container{
        padding-top: 0px;
    }
    
    .privacy-policy p.copyright {
        margin: 0;
    }
     
    .contact-page .our-locations .map-box {
        display: none;
    }
    
    .contact-page .our-locations {
       margin-top: 0px;
       padding-top: 10px;
        
    }
    
    .client-section .client-box .client-content .desc h3 {
        margin-top: 12px;
    }
    
    .site-main .sidebar-container {
        padding: 0;
        margin-top: 40px;
    }
    
    .inner-page .services h2 {
        margin-bottom: 25px;
    }
    
    .inner-page .entry-content h2, 
    .inner-page .services h2 {
        font-size: 36px;
    }
    
    .mobile-application-section .client-box {
        margin-bottom: 30px;
    }
    
    .ceo-message .imgbox {
      right: 10px;
      bottom: 10px;
    }
    
    .ceo-message .imgbox .ceo-name {
    font-size: 17px;
    line-height: 16px;
    }
    
    .ceo-message .imgbox .designation {
    font-size: 12px;
    line-height: 20px;
    }
    
    .testimonials-section .testimonialBlock:last-of-type {
        margin-bottom: 0px;
    }
    
    body.single .content-area h1 {
      font-size: 30px;
      margin: 0px 0px 5px;
  }
  
  .blogDetail h2 {
      font-size: 26px;
  }
  
  body.archive.category .site,
  body.archive.tag .site,
  body.archive.author .site {
      padding-top: 90px !important;
  }
  
  .request-information .site-main .sidebar-container {
     margin-top: 20px; 
  }
  
  body.request-information .site-content {
      padding-top: 20px !important;
  }
    
}

/*Media Queries*/

@media only screen and (max-width: 1024px) {
    
    .hero-title h1 {
        font-size: 70px;
    }
    
    .whoWeAreSection {
        padding: 50px 25px;
        font-size: 14px;
    }
    
    .whoWeAreContent p {
        font-size: 14px;
    }
    
    h2.section-title {
        font-size: 38px;
    }
    
    .services {
      background-attachment: inherit;
      padding-bottom: 126px;
      background-position: center bottom;
      background-size: 70% auto;
    }
    
    .whoWeAreContent {
        padding-right: 0;
    }
    
    .our-clients .slick-slide img {
        max-width:180px;
    }
    
     .services .service-card .service-icon {
        width: 210px;
        height: 210px;
    }
}

@media only screen and (max-width: 991px) {
    
    .project-row {
        padding: 40px;
    }
    
    .project-row .img-box {
        position: inherit;
        left: inherit;
        margin-bottom: 30px;
    }
    
    .product-section .product-content-box {
        padding-left: 120px;
    }
    
    .product-section .product-content-box .brand-logo {
        left: -20%;
    }
    
    .services .service-card {
        padding-top: 22%;
    }
    
    .services .service-card .service-icon.serv-app,
    .services .service-card .service-icon.serv-web,
    .services .service-card .service-icon.serv-market,
    .services .service-card .service-icon.serv-seo {
        background-size: 25%;
        background-position-y: 75%;
    }
    
    .services .service-card {
        min-height: 350px;
    }
    
    .services .service-card h3 {
        font-size: 20px;
        margin-bottom: 17px;
        margin-top: 40px;
    }
    
}

@media only screen and (max-width: 768px) {
    
    h2.section-title {
        font-size: 36px;
    }
    
    .whoWeAreSection {
        padding: 50px 20px;
        margin-bottom: 0px;
    }
    
    .whoWeAreContent {
        background: url('images/whoWeAre-contentBG.png') no-repeat right bottom;
        background-size: 60%;
    }
    
    .services {
        padding-bottom: 126px;
    }
    
    
    .testimonials {
        padding: 10px 0;
    }
    
    .product-section .product-content-box {
        padding: 30px 20px 30px 20px;
    }
    
    .info-section .info-inner {
        padding: 40px 20px 100px;
    }
    
    .info-section .action-card {
        padding: 0;
        margin-bottom: 25px;
    }
    
    .info-section .action-card h3 {
        margin-bottom: 0;
    }
    
    .info-section .action-card p {
        font-size: 16px;
    }
    
    .info-section .action-card a.cta-btn {
        padding: 7px 10px;
        margin-top: 0px;
    }
    
    .info-section .info-inner .aw-bird {
        width: 180px;
        left: 50px;
    }
    
    .site-footer {
        padding: 6px 0 0;
    }
}

@media only screen and (max-width: 767px) {
    
   .site-header .menu-header-menu-1-container li#socialSectionPhone {
        display:none;
    }
    
      img.alignright, 
        img.alignleft, 
        img.aligncenter {
	    float: none;
	    margin: 0px 0px 25px;
	    display:block;
	}
	
	img.aligncenter {
	  margin: 0px auto 25px;  
	}
    
    .inner-page .entry-content h3 {
        margin: 25px 0 10px !important;
        line-height: 30px;
    }
    
    .site-header .container {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .toggle-btn,
    .site-header.fixed-header .toggle-btn{
        top: 14px;
    }
    
    .hero-title h1 {
        font-size: 55px;
        line-height: 60px;
    }
    
    .product-section .section-title {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .testimonials {
        margin-bottom: 80px;
        padding: 10px 0;
    }
    
    .menu-footer-menu-container ul li {
    margin-right: 15px;
    }
    
    .menu-footer-menu-container, 
    p.copyright {
      text-align: center;
    }
    
    .footer-contact,
    .footer-social-links{
        text-align: center;
        margin: 20px 0;
    }
    
    .footerLogo {
        width: 100%;
        /*margin-top: -34px;*/
    }
    
    .menu-footer-menu-container ul li {
        display: inline-block;
        margin-bottom: 15px;
    }
    
    .copyright {
        text-align:center;
    }
    
    .product-section .product-content-box .ocu-action {
        text-align: left;
    }
    
    .whoWeAreSection .whoWeAreContent {
        padding-left: 0;
    }
    
    .testimonials .testimonial-box::before {
      top: -10px;
      left: -10px;
    }
    
    .testimonials .testimonial-box:after { 
      bottom: -10px;
      right: -10px;  
    }
    
    .product-section .product-content-box h3 {
      line-height: 27px;
      margin-bottom: 10px;
      font-size: 24px;
    }
    
    .product-section .row {
        margin-bottom: 30px !important;
    }
    
    .product-section h2 {
        margin-bottom: 0;
        font-size: 36px;
    }
    
    .product-section .product-content-box .brand-logo {
        height: 180px;
        width: 180px;
        background-size: 130px auto;
    }
    
    .our-vision-section ul.nav-tabs li {
      max-width: 125px;
      width: 100%;
      text-align: center;
    }
    
    .our-vision-section ul.nav-tabs li a {
        font-size: 15px !important;
    }
    
    .product-section .product-content-box {
        margin-top: 200px;
        padding: 50px 20px 30px;
    }
    
    .product-section .product-content-box .brand-logo {
        left: 0;
        right: 0;
        margin: 0 auto;
        top: -160px;
    }
    
    .mobile-spacing {
        padding-bottom: 30px;
    }
    
    .services-box-section .testimonials {
        padding-top: 50px;
    }
    
    .testimonials h2.section-title {
        margin-bottom: 30px;
    }
    
    .project-row {
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 0px;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
    }
    
    .mobile-spacing-0 {
        margin-bottom: 0 !important;
    }
    
    body.page-template-aw-portfolio .info-section {
        margin-top: 0;
    }
    
    body.archive .site {
        padding-top: 90px;
    }
    
    body.author .content-area h1.entry-title {
        font-size: 24px;
    }
   
   
   
}

@media only screen and (max-width: 640px) {
    
    .menu-header-menu-1-container, ul.nav-menu, div.nav-menu > ul {
        display: block;    
        width: 100%;
        max-width: 780px;
    }
    
    #socialSectionPhone {
        display:none;
    }
    
    header nav ul li a {
        font-size: 30px;
    }
    
    .whoWeAreSection .whoWeAreContent {
        padding-bottom: 110px;
        background-size: 53%;
    }
    
    .services .service-card .service-icon.serv-app,
    .services .service-card .service-icon.serv-web,
    .services .service-card .service-icon.serv-market,
    .services .service-card .service-icon.serv-seo {
        background-size: 25%;
        background-position-y: 72%;
    }
    
    .services .service-card .service-icon {
        width: 210px;
        height: 210px;
    }
    
    .services .service-card {
        padding-top: 22%;
    }
    
   
    
    .testimonials .testimonial-box:before {
        top:-10px;
        left:-10px;
    }
    
    .testimonials .testimonial-box:after {
        bottom:-10px;
        right:-10px;
    }
    
    .info-section .action-card {
        margin-bottom: 60px;
    }
    
    .portfolio-detail-page .conclusionSection a {
      display: block;
      margin-bottom: 15px;
      text-align: center;
      margin-right: 0;
    }
    
    .portfolio-detail-page {
        padding-bottom: 0px;
    }
    
    .portfolio-detail-page br.clear {
        display: none;
    }
    
     .page-template-aw-portfolio-detail .info-section {
         margin-top: 0;
     }
     
     .portfolio-detail-page .conclusionSection p {
         font-size: 18px;
         line-height: 26px;
     }
}

@media only screen and (max-width: 420px) {
    
    .whoWeAreSection .whoWeAreContent {
        background-size: 82%;
    }
    
    .product-section {
        margin-bottom: 20px;
        padding: 30px 0 50px;
    }
    
    .testimonials .testimonial-box {
        padding: 35px 32px;
        min-height: 500px;
    }
    
    .our-clients {
        padding: 40px 0 20px;
    }
    
    .our-clients h2.section-title {
        margin-bottom: 40px;
    }
    
    .info-section {
        margin-bottom: 50px;
    }
}


@media only screen and (max-width: 376px) {
    
    .info-section {
        padding:0;
    }
    
    .info-section .info-inner {
        padding: 35px 10px 80px;
    }
    
     .info-section .action-card {
        margin-bottom: 40px;
    }
    
    .info-section .action-card h3 {
        line-height: 27px;
    }
    
}

/*Back to top Button*/

.back-top {
  display: inline-block;
  z-index: 1000;
  position: fixed;
  bottom: 100px;
  right: 50px;
}

.back-top img {
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

.back-top.show img {
  opacity: 0.75;
  visibility: visible;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease
}

.back-top.show  img:hover,
.back-top.show  img:active {
  opacity: 1;
}

.back-top {
    bottom: 20px;
    right: 20px;
}

.bcs-contribution-page {
    max-width: 420px;
    margin: 60px auto;
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    font-family: 'Nunito Sans', sans-serif;
}

.bcs-contribution-page .logo,
.bcs-contribution-page .content p{
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.bcs-contribution-page h1 span {
    display: block;
    font-size: 21px;
    color: #1d7125;
    text-align: center;
    font-weight: 500;
    margin-top: 12px;
    font-family: 'Ubuntu', sans-serif;
}

.bcs-contribution-page .content p {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    line-height: 24px;
    padding-bottom: 50px;
}

.bcs-contribution-page .add-amount form {
    margin-bottom: 20px;
}

.bcs-contribution-page .add-amount input[type='number'] {
    border: 0;
    text-align: center;
    font-size: 52px;
    padding: 0;
    position: relative;
    max-width: 110px;
    width: 100%;
    border: 2px solid #ddd;
    padding: 0px 5px 5px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    height: 60px;
    line-height: 52px !important;
    box-shadow: inherit;
    -moz-box-shadow: inherit;
    -webkit-box-shadow: inherit;
     box-sizing: initial;
    -moz-box-sizing: initial;
    -webkit-box-sizing: initial;
    outline: 0;
}

.bcs-contribution-page .add-amount span.amt-pick {
    font-size: 20px;
    color: #000;
    width: 100px;
    display: inline-block;
    padding: 10px 12px;
    border: 1px solid #000;
    border-radius: 30px;
    font-weight: 700;
    margin: 0 3px;
}

.bcs-contribution-page .add-amount .amt-suggestion {
    margin-bottom: 45px;
}

.bcs-contribution-page .add-amount .proceed-btn {
    display: block;
    color: #fff;
    background-color: #3f7ef3;
    padding: 10px;
    font-weight: 600;
    border-radius: 5px;
    font-family: 'Nunito Sans', sans-serif;
font-size: 18px;
line-height: 28px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

.bcs-contribution-page .price-box {
  position: relative;  
  margin-left: -8px;
}

.bcs-contribution-page .price-box label span {
font-size: 32px;
font-weight:600;
color: #666666;
position: relative;
top: -10px;
margin-right: 8px;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.bcs-contribution-page.bcs-success-page
 .logo, 
.bcs-contribution-page.bcs-success-page
 .content p {
border-bottom: none;
}

.bcs-contribution-page.bcs-success-page {
 min-height: 600px;   
}

.bcs-contribution-page.bcs-success-page .content  {
 margin: 150px 0;    
}




.bcs-success-page .success-message {
font-size: 18px;
margin: 10px 0 25px;
color: #000;
font-weight: 600; 
}

.error-message {
font-size: 17px;
margin: 10px 0 25px;
color: #ce0000;
text-align: center;
font-weight: 600;  
padding: 0;
line-height: 23px;
border:none;
}

@media only screen and (max-width:640px) {
   
    .bcs-contribution-page .add-amount span.amt-pick {
        max-width: 60px;
        width: 100%;
        font-size: 18px;
        margin-bottom: 15px;
    }
    
     .bcs-contribution-page {
        margin: 20px 15px 40px; 
      } 
      
      .bcs-contribution-page .contri-section h1 {
          margin: 0px 0 15px;
      }
      
      .bcs-contribution-page .content p {
          padding-bottom: 20px;
      }
      
      .bcs-contribution-page .add-amount .amt-suggestion {
          margin-bottom: 20px;
      }
}

@media only screen and (max-width:358px) {
   
    .bcs-contribution-page .add-amount span.amt-pick {
        max-width: 45px;
        width: 100%;
        font-size: 16px;
        margin-bottom: 15px;
    }
    
     .bcs-contribution-page {
        margin: 20px 15px 40px; 
      } 
      
      .bcs-contribution-page .contri-section h1 {
          margin: 0px 0 15px;
      }
      
      .bcs-contribution-page .content p {
          padding-bottom: 20px;
      }
      
      .bcs-contribution-page .add-amount .amt-suggestion {
          margin-bottom: 20px;
      }
      
      .bcs-contribution-page .add-amount input[type="number"] {
          padding: 0px 5px 0px;
          height: 55px;
          line-height: 52px !important;
      }
}

.subscribe-form-box .subscribe-form {
max-width: 330px;
width: 100%;
margin: 0 auto;
}

.subscribe-form-box .subscribe-form .gform_heading,
.subscribe-form-box .subscribe-form label{
display:none !important;
}

.subscribe-form-box .subscribe-form li.gfield {
 margin-bottom: 15px !important; 
 padding-right: 0 !important;
}

.subscribe-form-box .subscribe-form li.gfield input {
max-width: 100% !important;
background: #fff;
padding: 8px 15px !important;
border-width: 0;
line-height: 1 !important;
}

.subscribe-form-box .subscribe-form .gform_footer input[type="submit"] {
color:#fff;
border: none;
margin-top: 5px;
background-color: transparent;
border: 1px solid #fff !important;
padding: 13px 15px;
max-width: 200px;
width: 100%;
font-family: 'Nunito Sans', sans-serif;
font-size: 18px !important;
line-height: 1 !important;
}

.subscribe-form-box .subscribe-form .gform_footer {
padding-top: 0;
margin-top: 0;   
text-align: center;
}

.subscribe-form-box .subscribe-form .gform_footer input[type="submit"]:hover {
background-color: #fff;
color: #000;
transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
}

.subscribe-form-box .subscribe-form .validation_error {
display:none;
}

.subscribe-form-box .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
max-width:100% !important;      
}

.subscribe-form-box .subscribe-form li.gfield.gfield_error .validation_message {
font-size: 13px;
color: #fff;
font-weight: 400;
line-height: 19px;
margin-top: 5px;
}

.subscribe-form-box .subscribe-form li.gfield.gfield_error {
max-width:100% !important;    
margin-bottom: 15px !important;
}

.subscribe-form-box .subscribe-form-box .gform_validation_error .gform_footer {
   margin-top: 15px;
}

.subscribe-form-box .subscribe-form li.gfield.gfield_error input {
    border:none !important;
}

.subscribe-form-box .subscribe-form input::-moz-placeholder {
	color: #b1b3b5;
	opacity: 1;
	font-size: 15px;
}

.subscribe-form-box .subscribe-form input::-webkit-input-placeholder{
	olor: #b1b3b5;
	opacity: 1;
	font-size: 15px;
}

.subscribe-form-box .subscribe-form input:-ms-input-placeholder {
	olor: #b1b3b5;
	opacity: 1;
	font-size: 15px;
}

.subscribe-form-box .subscribe-form input::placeholder {
	olor: #b1b3b5;
	opacity: 1;
	font-size: 15px;
}

.subscribe-form-box .gform_confirmation_message {
color: #fff !important;
font-weight: 600 !important;
line-height: 24px !important;    
}

.fa {
font-family: 'FontAwesome';
font-weight: 400;
font-style: normal;
}

.site-footer a {
color: #29b473;
}

.footer-contact .contact-address i {
    color: #29b473;
    margin-right: 3px;
}

.site-footer a:hover,
.footer-contact .contact-address a:hover i {
color: #000;
}

.contact-page-form {
background: #f4f4f4;
padding: 20px 40px;
margin-left: 90px;
border: 1px solid #eee;    
}

.contact-page .our-locations h3 {
    font-size: 36px;
    color: #000;
    margin: 0;
    font-weight: 300;
}

.contact-page-form .contact-enquiry-form .gfield_label {
   display:none !important; 
}

.contact-page-form .contact-enquiry-form input,
.contact-page-form .contact-enquiry-form textarea {
width: 100% !important;
max-width: 350px;
border: 1px solid #ddd;
padding: 8px 15px !important;
margin-top: 0px !important;
line-height: 1 !important;
font-size: 16px !important;
}

.contact-page-form .contact-enquiry-form li.gfield {
padding-right: 0 !important;
}

.contact-page-form .contact-enquiry-form textarea {
    height: 150px !important;
    max-width: inherit;
    margin-top: 0px;
}

.contact-page-form .contact-enquiry-form input::-moz-placeholder,
.contact-page-form .contact-enquiry-form textarea::-moz-placeholder{
	color: #b1b3b5;
	opacity: 1;
	font-size: 15px;
}

.contact-page-form .contact-enquiry-form input::-webkit-input-placeholder,
.contact-page-form .contact-enquiry-form textarea::-webkit-input-placeholder {
	olor: #b1b3b5;
	opacity: 1;
	font-size: 15px;
}

.contact-page-form .contact-enquiry-form input:-ms-input-placeholder,
.contact-page-form .contact-enquiry-form textarea:-ms-input-placeholder {
	olor: #b1b3b5;
	opacity: 1;
	font-size: 15px;
}

.contact-page-form .contact-enquiry-form input::placeholder,
.contact-page-form .contact-enquiry-form textarea::placeholder {
	olor: #b1b3b5;
	opacity: 1;
	font-size: 15px;
}

.contact-page-form .contact-enquiry-form .gform_footer input[type="submit"] {
color: #000;
padding: 12px !important;
background: transparent;
border: 1px solid #000 !important;
font-size: 16px !important;
margin-top: 0px;
margin-bottom: 20px;
display: inline-block;
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
-moz-transition: all 0.4s ease-in-out 0s;
-webkit-transition: all 0.4s ease-in-out 0s;
-ms-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
text-transform: uppercase;
position: relative;
max-width: 160px;
width: 100%;
font-family: 'Nunito Sans', sans-serif;    
}

.contact-page-form .contact-enquiry-form .gform_footer input[type="submit"]:hover {
background-color: #000;
color: #fff;
}

.contact-page-form .gform_confirmation_message {
font-size: 18px !important;
margin-top: 20px !important;
color: #048600 !important;
font-weight: 600 !important;    
}

.contact-page-form .contact-enquiry-form .validation_error {
display:none !important;    
}

.contact-page-form .contact-enquiry-form li.gfield.gfield_error {
border: none;
max-width: 100% !important;
background: transparent;
padding: 0 !important;
}

.contact-page-form .contact-enquiry-form li.gfield.gfield_error div.gfield_description {
 padding-right: 0;
padding-top: 0;
font-size: 13px;
font-weight: 400;
color: #ce0000;   
}

.contact-page-form .contact-enquiry-form li.gfield.gfield_error input {
    border-color: #ce0000 !important;
}

.our-locations .contact-address p a {
color: #29b473;
font-size: 16px;
font-weight: 700;
}

.our-locations .contact-address p a:hover,
.our-locations .contact-address p a:hover i {
color: #000;
}

.our-locations .contact-address p a i {
font-size: 15px;
margin-right: 4px;
position: relative;
top: 0px;
}

.sitemap-page .wsp-pages-title {
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
}

.sitemap-page .wsp-pages-list li {
    margin-left: 0;
    margin-bottom: 5px;
}

.sitemap-page .wsp-pages-list li a {
color: #000;
font-size: 15px;
font-weight:700;
}

.sitemap-page .wsp-pages-list li a:hover {
color: #29b473;
}

.sitemap-page .wsp-pages-list li ul.children {
    margin: 5px 0 5px;
}

.sitemap-page .wsp-pages-list li ul li {
    margin-bottom: 1px;
}

ul.wsp-pages-list li ul.children li {
    background-position: left 10px;
}

@media only screen and (max-width:991px) {
    .contact-page-form {
        margin-left: 25px;
    }
}

@media only screen and (max-width:767px) {
    .contact-page-form {
        margin-left: 0px;
        margin-bottom: 40px;
        padding: 20px;
    }
    
    .subscribe-form-box .subscribe-form .gform_footer input[type="submit"] {
        padding: 12px 15px;
    }
    
    .contact-page .our-locations h3 {
        font-size: 28px;
        line-height: 34px;
    }
    
    .contact-page-form .ginput_recaptcha {
        transform: scale(0.85);
        -moz-transform: scale(0.85);
        -webkit-transform: scale(0.85);
        margin-left: -25px;
    }
}































