body {
    position: relative;
    font-family: 'Poppins', sans-ser;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

.btn.focus,
.btn:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

button:focus {
    outline: none;
}

input[type="text"].form-control,
input[type="password"].form-control,
input[type="email"].form-control,
input[type="url"].form-control,
input[type="tel"].form-control,
textarea.form-control {
    background: #f5f5f5;
    border: none;
    padding: 15px 20px;
    height: 60px;
    font-size: 14px;
    line-height: 16px;
    color: #222222;
    font-weight: 400;
    border-radius: 0px;
    border: none;
}

select.form-control {
    height: 60px;
    padding: 5px 15px;
    font-size: 14px;
    border: none;
    border: 1px solid #eaeaea;
    font-weight: 400;
    background-image: #f5f5f5 url(../images/selectArrow.png);
    background-position: right 15px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0px;
}

textarea.form-control {
    height: 160px;
    resize: none;
}

.form-control:focus,
.form-control:active {
    background: #f5f5f5;
    box-shadow: none;
    border-color: #eaeaea;
}

select.form-control:focus,
select.form-control:active {
    background-color: #f5f5f5;
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-image: url(../images/selectArrow.png);
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(117, 117, 117, 0.40);
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(117, 117, 117, 0.40);
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(117, 117, 117, 0.40);
}

:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(117, 117, 117, 0.40);
}


/*Start Button Styles*/

input[type="submit"],
.submitBtn {
    display: inline-block;
    background: #87cc73;
    color: #fff;
    padding: 17px 50px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    box-shadow: none;
    border: none;
    outline: none;
    transition: 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    height: auto;
    width: auto;
}

input[type="submit"]:hover,
.submitBtn:hover {
    background: #222;
    color: #fff;
}

.siteBlue {
    display: inline-block;
    background: #31A2DC;
    color: #fff;
    padding: 12px 50px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: none;
    border: none;
    outline: none;
    transition: 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.siteBlue:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: -webkit-transform .2s cubic-bezier(.38, .32, .36, .98) 0s;
    transition: -webkit-transform .2s cubic-bezier(.38, .32, .36, .98) 0s;
    -o-transition: transform .2s cubic-bezier(.38, .32, .36, .98) 0s;
    transition: transform .2s cubic-bezier(.38, .32, .36, .98) 0s;
    transition: transform .25s cubic-bezier(.38, .32, .36, .98) 0s, -webkit-transform .25s cubic-bezier(.38, .32, .36, .98) 0s;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    background: #34495e;
}

.siteBlue:hover {
    color: #fff;
}

.siteBlue:hover:before {
    background: #34495e;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.siteBtn {
    display: inline-block;
    background: #34495E;
    color: #fff;
    padding: 12px 50px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: none;
    border: none;
    outline: none;
    transition: 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.siteBtn:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: -webkit-transform .2s cubic-bezier(.38, .32, .36, .98) 0s;
    transition: -webkit-transform .2s cubic-bezier(.38, .32, .36, .98) 0s;
    -o-transition: transform .2s cubic-bezier(.38, .32, .36, .98) 0s;
    transition: transform .2s cubic-bezier(.38, .32, .36, .98) 0s;
    transition: transform .25s cubic-bezier(.38, .32, .36, .98) 0s, -webkit-transform .25s cubic-bezier(.38, .32, .36, .98) 0s;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    background: #fff;
}

.siteBtn:hover {
    color: #34495E;
}

.siteBtn:hover:before {
    background: #fff;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.outLineBtn {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 7px 16px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    box-shadow: none;
    border: 1px solid #fff;
    outline: none;
    transition: 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.outLineBtn:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: -webkit-transform .2s cubic-bezier(.38, .32, .36, .98) 0s;
    transition: -webkit-transform .2s cubic-bezier(.38, .32, .36, .98) 0s;
    -o-transition: transform .2s cubic-bezier(.38, .32, .36, .98) 0s;
    transition: transform .2s cubic-bezier(.38, .32, .36, .98) 0s;
    transition: transform .25s cubic-bezier(.38, .32, .36, .98) 0s, -webkit-transform .25s cubic-bezier(.38, .32, .36, .98) 0s;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    background: #87cc73;
}

.outLineBtn:hover {
    color: #fff;
    border: 1px solid #87cc73;
}

.outLineBtn:hover:before {
    background: #87cc73;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}


/*End Button Styles*/

.container {
    position: relative;
}


/*Stat Header*/

header {
    width: 100%;
    padding: 0px;
    transition: 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    position: relative;
}
header a.greenBtn {
    position: absolute;
    right: 0;
    top: 0;
    background: #87cc73;
    z-index: 9;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    text-align: left;
    padding: 36px 50px;
    align-items: center;
}
header a.greenBtn img {
    float: left;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0px 10px 0px 0;
}
header a.greenBtn span {
    display: block;
    font-size: 18px;
    font-weight: 600;
}
header a.greenBtn span small {
    display: block;
}
header a.greenBtn:hover{
    background: #59a044;
}
header .navbar {
    padding: 21px 0px;
    position: relative;
    z-index: 1;
}

header .navbar .navbar-brand {
    padding: 0px;
    margin: 0px;
}

.navbar-nav .nav-item {
    position: relative;
    margin: 0px;
    padding: 0px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.smArrow {
    display: none;
}

.navbar-nav .nav-item .nav-link {
    display: inline-block;
    font-size: 15px;
    margin: 0px 0px 0px 35px;
    padding: 10px 0px;
    line-height: 22px;
    color: #58595b;
    font-weight: 500;
    position: relative;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.navbar-nav .nav-item .nav-link:before {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    right: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    background: #000;
    bottom: 0px;
}

.navbar-nav .nav-item:first-child .nav-link {
    margin-left: 0px;
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover {
    color: #000;
}

.navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
    left: 0;
}

.navbar-nav .nav-item.active .nav-link:before {
    width: 100%;
}


.navbar-light .navbar-toggler {
    border-radius: 0px;
    border-color: none;
    padding: 8px 10px;
    background: #87cc73 !important;
    border: none !important;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    line-height: 20px;
    position: absolute;
    right: 0;
}

.navbar-light .navbar-toggler-icon {
    background: url(../images/barImg.png) no-repeat center center;
    width: 21px;
    height: 17px;
}

.navbar-light .navbar-toggler:focus,
.navbar-light .navbar-toggler:hover {
    outline: none !important;
}


header .navbar .navbar-brand .fixLogo {
    display: block;
}

header .navbar .navbar-brand .scrolledLogo {
    display: none;
}

header.topFix .navbar .navbar-brand .fixLogo {
    display: none;
}

header.topFix .navbar .navbar-brand .scrolledLogo {
    display: block;
}

header.topFix .navbar .nav-item .nav-link {
    color: #333;
}


/*End Header*/


/* Start Footer*/

footer {
    background: #fff;
}

.topFooter {
    padding: 50px 0 50px;
}

.topFooter .ftLogo {
    margin-bottom: 50px;
}

.topFooter ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.topFooter ul li {
    padding: 0px 0px 0px;
    margin: 0px 30px;
    position: relative;
    display: inline-block;
}

.topFooter ul li:last-child {
    margin-bottom: 0px;
}

.topFooter ul li a {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: #58595b;
    text-decoration: none;
}

.topFooter ul li a:hover {
    color: #000;
}

.bottomFooter {
    border-top: 1px solid rgba(0, 0, 0, .1);
    font-size: 15px;
    line-height: 30px;
    padding: 20px 0;
    font-weight: 400;
}

.bottomFooter p {
    margin: 0;
    color: #222222;
    font-weight: 500;
    line-height: 30px;
    font-size: 15px;
}

.socialMedia a:not(:first-child) {
    line-height: 1;
    display: inline-block;
    margin: 0px 0px 0px 10px;
    text-align: center;
    font-size: 14px;
    color: #222222;
    border-left: 2px solid #e1e1e1;
    padding: 0px 0px 0px 10px;
}

.socialMedia a:hover {
    color: #87cc72;
}


/* End Footer*/

.siteHeroSlider {
    position: relative;
    margin: 0;
    padding: 0px 0px;
}

.siteHeroSlider .item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.siteHeroSlider .item:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.siteHeroSlider .bannerText {
    position: relative;
    z-index: 1;
    padding: 220px 0px;
    text-align: center;
}

.siteHeroSlider .bannerText h1 {
    font-size: 80px;
    line-height: 90px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 30px;
    padding: 0px;
    font-family: 'Noto Serif', serif;
}
.siteHeroSlider .bannerText h1 span{
    color: #87cc72;
}
.siteHeroSlider .bannerText p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #fff;
    margin: 0px 0px 30px;
    padding: 0px;
}
.siteHeroSlider .bannerText .outLineBtn {
    text-transform: uppercase;
    padding: 16px 51px;
}
.siteHeroSlider .owl-carousel .owl-dots {
    display: block;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    width: 100%;
    bottom: 24px;
}

.siteHeroSlider .owl-carousel button.owl-dot {
    background: rgba(255, 255, 255, .5) !important;
    width: 20px;
    height: 5px;
    border-radius: 0px;
    margin: 0px 3px;
}

.siteHeroSlider .owl-carousel button.owl-dot.active {
    background: rgba(255, 255, 255, 1) !important;
}


.headingPart span{
    color: #666666;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    display: block;
    margin: 0px 0px 5px;
}
.headingPart h2{
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
    color: #222222;
    margin: 0px 0px 0px;
    padding: 0px;
    font-family: 'Noto Serif', serif;
}

.whoWeAre{
    padding: 120px 0px;
}
.whoWeAre .simpleText .headingPart h2{
    margin-bottom: 15px;
}
.whoWeAre .simpleText p {
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    color: #666;
    margin: 0px 0px 60px;
    padding: 0px;
}
.whoWeAre .imgPart{
    position: relative;
    text-align: right;
}
.whoWeAre .imgPart::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 85%;
    height: 90%;
    top: -20px;
    right: -20px;
    border: 1px solid #87cc73;
}
.whoWeAre .customList {
    border-top: 3px solid #87cc73;
    padding: 30px 45px;
    background-color: rgb(255, 255, 255);
    box-shadow: 3.178px 6.237px 17px 0px rgba(0, 0, 0, 0.08);
    float: left;
  }
  
.whoWeAre .customList ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
    float: left;
} 
.whoWeAre .customList ul li{
    list-style: none;
    margin: 0px 27px 15px 27px;
    padding: 0 0 15px 35px;
    font-size: 14px;
    color: rgb(102, 102, 102);
    line-height: 30px;
    text-align: left;
    position: relative;
    border-bottom: 1px solid #000;
    float: left;
} 
.whoWeAre .customList ul li::before{
    content: '';
    position: absolute;
    left: 0px;
    top: 6px;
    width: 22px;
    height: 20px;
    background: url(../images/checkMarkIcon.png) no-repeat;
}
.whoWeAre .customList ul li:nth-child(n+3) {
    border-bottom: transparent;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.ourProjects {
    padding: 60px 0px 0;
    overflow: hidden;
}
.ourProjects .simpleText .headingPart h2{
    margin-bottom: 15px;
}
.ourProjects .galleryContainer{
    margin-left: -10px;
    margin-right: -10px;

}
.ourProjects .example-image-link {
    padding: 0 5px 10px;
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    height: 100%;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
    position: relative;
}
.ourProjects .example-image-link .bgImg {
    background-size: cover;
    height: 100%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.ourProjects .example-image-link .bgImg .img-fluid{
    display: block;
    opacity: 0;
}
.overlayBox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    bottom: -50%;
    transform: translate(-50%, -50%);
    background: rgb(135 204 115 / 80%);
    opacity: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.overlayBox h3 {
    font-size: 38px;
    font-family: "Noto Serif";
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 1;
    margin: 0;
    position: absolute;
    bottom: 40px;
    padding: 0 15px;
    text-align: center;
    height: 45px;
    overflow: hidden;
    display: block;
    box-sizing: border-box;
}
.ourProjects .example-image-link:hover .overlayBox{
    opacity: 1;
    top: 50%;
}
.stepSection {
    padding: 90px 0 160px;
    position: relative;
    z-index: 12;
    overflow: hidden;
}
.stepSection::before {
    content: '';
    left: 0;
    bottom: -290px;
    position: absolute;
    background: url(../images/dotBg.png) no-repeat;
    width: 616px;
    height: 616px;
    z-index: 0;
}
.stepSection:after {
    content: '';
    right: -190px;
    top: -325px;
    position: absolute;
    background: url(../images/dotBg.png) no-repeat;
    width: 616px;
    height: 616px;
    z-index: -1;
}
.stepSection .headingPart{
    margin-bottom: 70px;   
}
.stepPart{
    padding: 0 15px;
}
.stepPart .icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid #87cc73;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.stepPart .icon .hoverIcon{
    display: none;
}
.stepPart .icon:hover{
    background:#87cc73 ;
}
.stepPart .icon:hover .simpleIcon{
    display: none;
    transition: 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.stepPart .icon:hover .hoverIcon{
    display: block;
    transition: 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.stepPart h3{
    font-family: 'Noto Serif', serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
}
.stepPart p {
    font-size: 14px;
    color: rgb(102, 102, 102);
    line-height: 2.143;
    text-align: center;
    margin: 0px;
    padding: 0px;
}

.getInTouch{
    background: #58595b;
    padding: 110px 0px;
    position: relative;
}
.getInTouch::before {
    content: '';
    left:0px;
    top: 0px;
    position: absolute;
    width: 250px;
    height: 100%;
    z-index: 0;
    background: #fff;
}
.getInTouch:after {
    content: '';
    left:0px;
    top: 0px;
    position: absolute;
    background: #fff url(../images/dotBg.png) no-repeat;
    width: 250px;
    height: 250px;
    z-index: 0;
}
.getInTouch .headingPart{
    margin-bottom: 30px;
}
.getInTouch .headingPart h2,
.getInTouch .headingPart span{
    color: #fff;
}
.getInTouch .leftPart{
    padding-left: 100px;
}
.getInTouch .leftPart .formContainer input[type="text"].form-control,
.getInTouch .leftPart .formContainer input[type="password"].form-control,
.getInTouch .leftPart .formContainer input[type="email"].form-control,
.getInTouch .leftPart .formContainer input[type="url"].form-control,
.getInTouch .leftPart .formContainer input[type="tel"].form-control,
.getInTouch .leftPart .formContainer textarea.form-control {
    background: rgba(255, 255, 255,0.10);
    color: #fff;
}
.getInTouch .leftPart .formContainer input[type="submit"],
.getInTouch .leftPart .formContainer .submitBtn {
    display: inline-block;
    background: #87cc73;
    color: #fff;
    padding: 17px 50px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    box-shadow: none;
    border: none;
    outline: none;
    transition: 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    height: auto;
    width: auto;
}

.getInTouch .leftPart .formContainer input[type="submit"]:hover,
.getInTouch .leftPart .formContainer .submitBtn:hover {
    background: #fff;
    color: #87cc73;
}

.getInTouch .leftPart .formContainer ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.40);
}

.getInTouch .leftPart .formContainer ::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.40);
}

.getInTouch .leftPart .formContainer :-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.40);
}

.getInTouch .leftPart .formContainer :-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.40);
}
.getInTouch .leftPart .formContainer .fieldCol{
    margin-bottom: 20px;
}
.getInTouch .leftPart .formContainer .fieldCol:last-child{
    margin-bottom: 20px;
}
.getInTouch .contactPart{
    padding: 60px 0px 0px 70px;
}
.getInTouch .contactPart .mapPart{
    width: 100%;
    height: 300px;
    margin: 0px;
}
.getInTouch .contactPart .contactInfo {
    width: 100%;
    padding:30px;
    border-top: 3px solid #87cc73;
    background-color: rgb(255, 255, 255);
    box-shadow: 3.178px 6.237px 17px 0px rgba(0, 0, 0, 0.08);
}
.getInTouch .contactPart .contactInfo h4{
    margin: 0px 0px 10px;
    font-family: 'Noto Serif', serif;
    font-size: 26px;
    color: rgb(34, 34, 34);
    line-height: 1.538;
    padding: 0px;
}  
.getInTouch .contactPart .contactInfo ul{
    padding: 0px;
    margin: 0px;
}  
.getInTouch .contactPart .contactInfo ul li {
    font-size: 14px;
    color: rgb(102, 102, 102);
    line-height: 1.857;
    text-align: left;
    list-style: none;
    position: relative;
    padding: 0px 0px 0px 35px;
    margin: 0px 0px 10px 0px;
}
.getInTouch .contactPart .contactInfo ul li:last-child{
    margin: 0px;
}
.getInTouch .contactPart .contactInfo ul li i{
    font-size: 18px;
    position: absolute;
    left: 0px;
    line-height: 26px;
    top: 0px;
    width: 30px;
    text-align: center;
    vertical-align: middle;
}
.getInTouch .contactPart .contactInfo ul li a:hover{
    color: #000;
}

.vText {
    font-family: 'Noto Serif', serif;
    font-size: 80px;
    color: rgba(34, 34, 34, 0.059);
    font-weight: 600;
    background: #fff;
    line-height: 1;
    text-align: left;
    position: absolute;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    left: -170px;
    bottom: 410px;
    z-index: 1;
}


.innerBanner{
    background-size: cover;
    background-position: center center;
    padding: 150px 0px;
    text-align: center;
    position: relative;
}
.innerBanner:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}
.innerBanner h2 {
    position: relative;
    z-index: 1;
    font-size: 80px;
    line-height: 90px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 0px;
    padding: 0px;
    font-family: 'Noto Serif', serif;
}
.innerBanner h2 span{
    color: #87cc72;
}


.siteBreadcrumbs{
    padding: 11px 0px;
}
.siteBreadcrumbs .innerBreadcrumbs{
    display: flex;
    align-items: center;
}
.siteBreadcrumbs ul{
    list-style: none;
    margin: 0;
    padding: 0px;
    position: relative;
}
.siteBreadcrumbs ul li{
    display: inline-block;
    list-style: none;
    margin: 0px;
    padding: 0px 0px 0px 0px;
}
.siteBreadcrumbs ul li:not(:first-child)::before {
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    color: #444444;
    font-size: 8px;
    display: inline-block;
    font-weight: bold;
    margin: 0px 10px;
}
.siteBreadcrumbs ul li a{
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    color: #666666;
    display: inline-block;
}
.siteBreadcrumbs ul li a:hover,
.siteBreadcrumbs ul li.act a{
    color: #222222;
}


.innerCommanSection {
    background: #f6f6f6;
    padding: 120px 0px;
}

.innerCommanSection .topPart {
    margin-bottom: 45px;
}

.innerCommanSection .topPart h2 {
    letter-spacing: 0.34px;
    color: #333333;
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 20px;
    padding: 0px;
    font-weight: 600;
}

.whiteContainer {
    padding: 35px;
    background: #FFFFFF;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.04);
    border-radius: 4px;
}

.whiteContainer p {
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    padding: 0px;
    margin-bottom: 30px;
    color: #222222;
}

.whiteContainer p a {
    color: #31A3DD;
}

.whiteContainer p a:hover {
    color: #222222;
}

.requiredColor {
    color: #ff0000;
}

.whiteContainer .formContainer .fieldCol label {
    margin: 0px;
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
}

.whiteContainer .formContainer .fieldCol {
    width: 100%;
    float: left;
    margin-right: 0px;
    margin-bottom: 20px;
}

.whiteContainer .formContainer .fieldCol:last-child {
    margin-bottom: 0px;
}

.whiteContainer .formContainer .fieldCol .halfCol {
    width: 50%;
    float: left;
    padding-right: 3%;
}

.whiteContainer .formContainer .fieldCol .halfCol:nth-child(2n) {
    padding-right: 0%;
}


.contactInfo{
    padding: 35px 35px 60px 35px;
    border-top: 3px solid #87cc73;
    background-color: rgb(255, 255, 255);
    box-shadow: 2.828px 2.828px 12px 0px rgba(0, 0, 0, 0.08);     
}
.contactInfo h3 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    color: #222;
    margin: 0px 0px 30px;
    padding: 0px;
    font-family: 'Noto Serif', serif;
}
.contactInfo .infoCol{
    display: flex;
    margin-bottom: 40px;
    position: relative;
    padding: 0px 0px 0px 65px;
}
.contactInfo .infoCol img{
    position: absolute;
    left: 0px;
    top: 0px;
}
.contactInfo .infoCol h6{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #222;
    margin: 0px 0px 10px;
    padding: 0px;
    display: block;
    font-family: 'Noto Serif', serif;
}
.contactInfo .infoCol p{
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #666666;
    margin: 0px 0px 0px;
    padding: 0px;
}
.contactInfo .infoCol p a{
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #666666;
    margin: 0px 0px 0px;
    padding: 0px;
    display: inline-block;
}
.contactInfo .infoCol p a:hover{
    color: #222;
}
.contactInfo .smPart{
    text-align: center;
}
.contactInfo .smPart a {
    font-size: 18px;
    line-height: 1;
    color: #222222;
    margin: 0 15px 0 0;
    padding: 0 15px 0 0;
    border-right: 1px solid #dadada;
}
.contactInfo .smPart a:hover{
    color: #87cc73;
}
.contactInfo .smPart a:last-child{
    border-right: 0px;
}

.contactForm {
    padding: 35px;
    border-top: 3px solid #87cc73;
    background-color: rgb(255, 255, 255);
    box-shadow: 2.828px 2.828px 12px 0px rgba(0, 0, 0, 0.08);     
    float: left;
}
.contactForm h3 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    color: #222;
    margin: 0px 0px 30px;
    padding: 0px;
    font-family: 'Noto Serif', serif;
}
.contactForm .formContainer .fieldCol:not(:last-child) {
    width: 100%;
    float: left;
    margin-right: 0px;
    margin-bottom: 25px;
}
.contactForm .formContainer .fieldCol .halfCol {
    width: 47%;
    float: left;
    margin-right: 25px;
}
.contactForm .formContainer .fieldCol .halfCol:nth-child(2n) {
    margin-right: 0;
}
.contectPage .mapPart{
    padding: 60px 0px 30px;
    width: 100%;
    height: 515px;
}


.contentArea{
    padding: 30px 0px;
}
.contentArea .simpleText .headingPart h2{
    margin-bottom: 15px;
    font-size: 30px;
}
.contentArea .simpleText p {
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    color: #666;
    margin: 0px 0px 20px;
    padding: 0px;
}
.contentArea .borderdImg{
    position: relative;
    text-align: right;
}
.contentArea .borderdImg::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 85%;
    height: 90%;
    top: -20px;
    right: -20px;
    border: 1px solid #87cc73;
}
.contentArea .customList {
    border-top: 3px solid #87cc73;
    padding: 30px 45px;
    background-color: rgb(255, 255, 255);
    box-shadow: 3.178px 6.237px 17px 0px rgba(0, 0, 0, 0.08);
    float: left;
}
.contentArea .imgPart{
    margin: 0px 0px 20px;
}
  
.contentArea .customList ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
    float: left;
} 
.contentArea .customList ul li{
    list-style: none;
    margin: 0px 27px 15px 27px;
    padding: 0 0 15px 35px;
    font-size: 14px;
    color: rgb(102, 102, 102);
    line-height: 30px;
    text-align: left;
    position: relative;
    border-bottom: 1px solid #000;
    float: left;
} 
.contentArea .customList ul li::before{
    content: '';
    position: absolute;
    left: 0px;
    top: 6px;
    width: 22px;
    height: 20px;
    background: url(../images/checkMarkIcon.png) no-repeat;
}
.contentArea .customList ul li:nth-child(n+3) {
    border-bottom: transparent;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.servicesBox{
    padding: 90px 0px 0px;   
}
.servicesBox .cardBox{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
    margin: 0 auto;
    width: 100%;
    flex-wrap: wrap;
}
.servicesBox .cardBox .box {
    width: calc(50% - 15px);
    margin: 0 30px 90px 0;
    padding: 30px;
    background: #f6fbf4;
    border: 1px solid #e5f4e0;
    position: relative;
}
.servicesBox .cardBox .box .iconPart{
    position: absolute;
    background: #fff;
    right: 40px;
    top: -60px;
    height: 120px;
    width: 120px;
    border-radius: 10px;
    box-shadow: 0 2.237px 8px 2px rgb(0 0 0 / 10%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.servicesBox .cardBox .box span{
    color:#d3dbd9;
    font-size: 50px;
    line-height: 1;
    margin: 0px 0px 40px;
    display: block;
    font-family: 'Noto Serif', serif;
    font-weight: 700;
}
.servicesBox .cardBox .box h2{
    color:#222;
    font-size: 28px;
    line-height: 1;
    margin: 0px 0px 20px;
    font-family: 'Noto Serif', serif;
    font-weight: 700;
}
.servicesBox .cardBox .box p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #666;
    margin: 0px 0px 0px;
    padding: 0px;
}
.servicesBox .cardBox .box:nth-child(2n) {
    margin-right: 0;
}

.notFound {
    text-align: center;
    padding: 0px 20px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}