.heroSec{
    width: 100%;
    overflow: hidden;
    position: relative;
    background-image: url("../images/home-bg.jpg");
    background-size: cover;
    background-position: top center;
    min-height: 800px;
    height: 100vh;
    padding: 80px 0px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.heroSec h1{
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}
.heroSec p{
    font-size: 20px;
    font-weight: 500;
    color: #dfdfdf;
    margin-bottom: 0px;
    line-height: 34px;
}


.aboutUs{
    width: 100%;
    display: block;
    overflow: hidden;
    padding: 60px 0px;
}
.aboutUs .heading{
    padding-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.aboutUs .heading::before{
    content: "We Are";
    position: absolute;
    left: 15px;
    top: 0px;
    width: 100%;
    height: 100%;
    color: #f5f5f5;
    font-size: 150px;
    z-index: -1;
    line-height: 100px;
}
.aboutUs .heading::after{
    content: "";
    position: absolute;
    bottom: 0;
    width: calc(100% - 24px);
    left: 12px;
    border-bottom: dashed 1px #ddd;
}
.aboutUs .heading span{
    font-size: 18px;
    color: #006bcc;
    display: block;
    font-weight: 600;
}
.aboutUs .heading h2{
    font-size: 50px;
    margin-bottom: 0px;
}
.aboutUs .heading p{
    font-size: 20px;
    line-height: 1.5;
}
.aboutUs .content{
    display: flex;
    align-items: center;
}
.aboutUs figure{
    width: 100%;
    display: block;
    position: relative;
}
.aboutUs figure::before{
    content: "";
    width: 100%;
    height: 100%;
    top: 10px;
    left: 10px;
    position: absolute;
    background-color: #bcdfff;
    border-radius: 30px;
    z-index: -1;
}
.aboutUs figure img{
    width: 100%;
    border-radius: 30px;
}
.aboutUs .innovation{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.aboutUs .innovation:after {
    background: #fff;
    background: -moz-linear-gradient(left,#fff 0,#c7cdee 49%,#fff 100%);
    background: -webkit-linear-gradient(left,#fff 0,#c7cdee 49%,#fff 100%);
    background: linear-gradient(to right,#fff 0,#c7cdee 49%,#fff 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 1px;
    content: "";
    margin: auto;
}
.aboutUs .innovation li{
    width: 50%;
    position: relative;
}
.aboutUs .innovation li:not(:last-child):after{
    background: #fff;
    background: -moz-linear-gradient(top,#fff 0,#c7cdee 49%,#fff 100%);
    background: -webkit-linear-gradient(top,#fff 0,#c7cdee 49%,#fff 100%);
    background: linear-gradient(to bottom,#fff 0,#c7cdee 49%,#fff 100%);
    position: absolute;
    right: 0;
    width: 1px;
    height: 100%;
    content: "";
    margin: auto;
    top: 0;
}
.aboutUs .innovation li .itemBox{
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 40px 15px;
}
.aboutUs .innovation li .itemBox b{
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #006bcc;
    line-height: 50px;
}
.aboutUs .innovation li .itemBox span{
    font-size: 20px;
    color: #333;
    font-weight: 600;
}


.serviceSec{
    width: 100%;
    overflow: hidden;
    display: block;
    background-color: #f5f5f5;
    padding: 60px 0px 30px;
}
.serviceSec .heading{
    padding-bottom: 20px;
    text-align: center;
}
.serviceSec .heading span{
    font-size: 18px;
    color: #006bcc;
    display: block;
    font-weight: 600;
}
.serviceSec .heading h2{
    font-size: 50px;
    margin-bottom: 15px;
}
.serviceSec .heading p{
    font-size: 20px;
    line-height: 1.5;
}
.serviceSec .content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.serviceSec .serviceBox{
    width: calc(33.33% - 30px);
    padding: 30px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    margin: 0px 15px 30px;
    border-radius: 30px;
}
.serviceSec .serviceBox .icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #006bcc;
    color: #fff;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}
.serviceSec .serviceBox:first-child .icon{
    background-color: #00b8d6;
}
.serviceSec .serviceBox:nth-child(2) .icon{
    background-color: #00d6af;
}
.serviceSec .serviceBox:nth-child(3) .icon{
    background-color: #88ec84;
}
.serviceSec .serviceBox:nth-child(4) .icon{
    background-color: #6596f9;
}
.serviceSec .serviceBox:nth-child(5) .icon{
    background-color: #e55f84;
}
.serviceSec .serviceBox:last-child .icon{
    background-color: #ff85ed;
}
.serviceSec .serviceBox h3{
    font-size: 24px;
    user-select: none;
}
.serviceSec .serviceBox p{
    margin-bottom: 0px;
    padding-bottom: 15px;
    user-select: none;
}
.serviceSec .serviceBox .overlay{
    position: absolute;
    left: 0;
    top: 100%;
    background-color: rgb(0 0 0 / 80%);
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in;
    padding: 20px 15px;
}
.serviceSec .serviceBox:hover .overlay{
    top: 0%;
    opacity: 1;
}
.serviceSec .serviceBox ol{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.serviceSec .serviceBox ol li{
    width: 50px;
    height: 50px;
    margin: 5px 7.5px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 10px;
    opacity: 1;
    position: relative;
    transition: all 0.3s ease-in;
}
.serviceSec .serviceBox ol li img{
    width: 100%;
    height: 100%;
}
.serviceSec .serviceBox .overlay a{
    margin-top: 15px;
}


.whyChoose{
    width: 100%;
    overflow: hidden;
    display: block;
    background-color: #fff;
    padding: 60px 0px;
}
.whyChoose .heading{
    padding-bottom: 20px;
}
.whyChoose .heading span{
    font-size: 18px;
    color: #006bcc;
    display: block;
    font-weight: 600;
}
.whyChoose .heading h2{
    font-size: 50px;
    margin-bottom: 15px;
}
.whyChoose .heading p{
    font-size: 20px;
    line-height: 1.5;
}
.whyChoose .itemWrapper{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}
.whyChoose .itemBox{
    position: relative;
    text-align: center;
    z-index: 1;
    padding:  0px 15px;
}
.whyChoose .itemBox .iconBox{
    display: inline-block;
    border: 20px solid #bcdfff;
    border-radius: 50%;
    position: relative;
    background-color: #006bcc;
    padding: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    margin: 0px auto 25px;
    color: #fff;
    font-size: 60px;
}
.whyChoose .itemBox .content{
    max-width: 250px;
    margin: 0px auto;
}
.whyChoose .itemBox .content h4{
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
    color: #0f0d1d;
}
.whyChoose .itemBox .content p{
    font-size: 16px;
    font-weight: 400;
    color: #777181;
    margin-bottom: 0px;
    line-height: 24px;
}
.whyChoose .lineShapeImg{
    position: absolute;
    left: 50%;
    top: 40px;
    z-index: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 80%;
}
.whyChoose .lineShapeImg img{
    width: 100%;
}


.discussSec{
    width: 100%;
    overflow: hidden;
    display: block;
    background-image: url("../images/discussSec-bg.jpg");
    background-position: center;
    background-size: cover;
    padding: 60px 0px;
    text-align: center;
}
.discussSec h2{
    font-size: 40px;
    margin-bottom: 15px;
    color: #fff;
}
.discussSec p{
    font-size: 20px;
    line-height: 1.5;
    color: #dfdfdf;
    margin-bottom: 30px;
}
.discussSec a{
    font-size: 20px;
    display: inline-block;
    border: solid 1px #ddd;
}


.weServe{
    width: 100%;
    overflow: hidden;
    display: block;
    background-color: #fff;
    padding: 60px 0px;
}
.weServe .heading{
    padding-bottom: 30px;
}
.weServe .heading span{
    font-size: 18px;
    color: #006bcc;
    display: block;
    font-weight: 600;
}
.weServe .heading h2{
    font-size: 50px;
    margin-bottom: 15px;
}
.weServe .heading p{
    font-size: 20px;
    line-height: 1.5;
}
.weServe .sliderWrapper .slick-arrow{
    display: none !important;
}
.weServe .slick-track{
    display: flex;
}
.weServe .slideBox{
    overflow: hidden;
    position: relative;
    height: auto;
    margin: 0px 15px;
}
.weServe .slideBox .imgItem{
    border-radius: 20px;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.weServe .slideBox .imgItem img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.weServe .slideBox .overlay{
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    background-color: #fff;
    padding: 20px 15px;
    border-radius: 15px;
    overflow: hidden;
}
.weServe .slideBox h4{
    font-size: 20px;
}
.weServe .slideBox p{
    font-size: 16px;
    margin-bottom: 0px;
}


.testimonial{
    width: 100%;
    overflow: hidden;
    display: block;
    background-color: #f5f5f5;
    padding: 60px 0px;
}
.testimonial .row{
    align-items: center;
}
.testimonial .heading{
    padding-right: 30px;
}
.testimonial .heading span{
    font-size: 18px;
    color: #006bcc;
    display: block;
    font-weight: 600;
}
.testimonial .heading h2{
    font-size: 50px;
    margin-bottom: 15px;
}
.testimonial .heading p{
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0px;
}
.testimonial .sliderSec .slick-arrow{
    display: none !important;
}
.testimonial .testimonialItem{
    margin-top: 35px;
    padding: 0px 15px;
}
.testimonial .testimonialItem .content{
    background-color: #fff;
    padding: 20px 30px 30px 30px;
    box-shadow: 0px 0px 10px 0px rgba(16, 23, 40, 0.15);
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.testimonial .testimonialItem .imgSec{
    display: inline-block;
    border: 2px solid #006bcc;
    border-radius: 50%;
    transform: translateY(-55px);
}
.testimonial .testimonialItem .imgSec img{
    padding: 4px 4px;
    border-radius: 50%;
}
.testimonial .testimonialItem .ratConSec{
    margin-top: -26px;
}
.testimonial .testimonialItem .ratConSec > div{
    margin-bottom: 13px;
}
.testimonial .testimonialItem .ratConSec > div span{
    display: inline-block;
}
.testimonial .testimonialItem .ratConSec > div img{
    width: auto;
}
.testimonial .testimonialItem .ratConSec p{
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    color: #777181;
    line-height: 27px;
}
.testimonial .testimonialItem .quote{
    position: absolute;
    top: 25px;
    right: 25px;
}
.testimonial .testimonialItem .quote span{
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.testimonial .testimonialItem .quote span img{
    width: auto;
}
.testimonial .testimonialItem .metaInfo{
    padding-left: 30px;
}
.testimonial .testimonialItem .metaInfo h5{
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1.2;
    color: #0f0d1d;
}
.testimonial .testimonialItem .metaInfo span{
    font-size: 14px;
    font-weight: 400;
    color: #006bcc;
}


.contactSec{
    width: 100%;
    display: block;
    overflow: hidden;
    padding: 60px 0px;
    background-color: #fff;
    position: relative;
}
.contactSec .left{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.contactSec .col-lg-6:first-child{
    padding-right: 0px;
}
.contactSec .col-lg-6:last-child{
    padding-left: 0px;
}
.contactSec .left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contactSec .right{
    padding: 30px;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}
.contactSec .right span{
    font-size: 18px;
    color: #006bcc;
    display: block;
    font-weight: 600;
}
.contactSec .right h2 {
    font-size: 50px;
    margin-bottom: 20px;
}
.contactSec .right p{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}
.contactSec .right form{
    margin-top: 40px;
}
.contactSec .right form input, 
.contactSec .right form textarea{
    margin-bottom: 20px;
    padding: 10px 20px;
    border: 1px solid transparent;
    background-color: #f2f4f8;
    width: 100%;
    font-size: 14px;
    color: #0f0d1d;
    font-weight: 500;
}
.contactSec .right form textarea{
    min-height: 100px;
}
.contactSec .right form button{
    border: none;
    min-width: 150px;
}


@media only screen and (max-width: 1200px) {
    .heroSec h1 {
        font-size: 60px;
    }
    .heroSec p {
        font-size: 18px;
        line-height: 30px;
    }
    .aboutUs .heading::before{
        font-size: 100px;
    }
    .aboutUs .heading p {
        font-size: 18px;
    }
    .whyChoose .itemBox .iconBox {
        border: 15px solid #bcdfff;
        width: 160px;
        height: 160px;
        font-size: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .heroSec{
        min-height: 550px;
    }
    .heroSec h1 {
        font-size: 50px;
    }
    .aboutUs{
        padding: 50px 0px;
    }
    .aboutUs .heading{
        margin-bottom: 30px;
    }
    .aboutUs .heading span{
        font-size: 16px;
    }
    .aboutUs .heading h2 {
        font-size: 40px;
    }
    .aboutUs .heading p {
        font-size: 16px;
    }
    .aboutUs .heading::before {
        font-size: 90px;
    }
    .aboutUs .innovation li .itemBox{
        padding: 25px 15px;
    }
    .aboutUs .innovation li .itemBox b {
        font-size: 40px;
        margin-bottom: 10px;
        line-height: 30px;
    }
    .aboutUs .innovation li .itemBox span {
        font-size: 18px;
    }
    .serviceSec{
        padding: 50px 0px 20px;
    }
    .serviceSec .heading span {
        font-size: 16px;
    }
    .serviceSec .heading h2 {
        font-size: 40px;
        margin-bottom: 10px;
    }
    .serviceSec .heading p {
        font-size: 18px;
    }
    .serviceSec .serviceBox{
        width: calc(50% - 30px);
    }
    .weServe{
        padding: 50px 0px;
    }
    .weServe .heading {
        padding-bottom: 20px;
        text-align: center;
    }
    .weServe .heading span {
        font-size: 16px;
    }
    .weServe .heading h2 {
        font-size: 40px;
        margin-bottom: 10px;
    }
    .weServe .heading p {
        font-size: 18px;
    }
    .discussSec{
        padding: 50px 0px;
    }
    .discussSec h2 {
        font-size: 36px;
    }
    .discussSec p {
        font-size: 18px;
    }
    .discussSec a {
        font-size: 16px;
    }
    .whyChoose{
        padding: 50px 0px;
    }
    .whyChoose .heading{
        text-align: center;
    }
    .whyChoose .heading span {
        font-size: 16px;
    }
    .whyChoose .heading h2 {
        font-size: 40px;
        margin-bottom: 10px;
    }
    .whyChoose .heading p {
        font-size: 18px;
    }
    .whyChoose .itemBox .iconBox {
        border: 10px solid #bcdfff;
        width: 120px;
        height: 120px;
        font-size: 36px;
        margin: 0px auto 20px;
    }
    .whyChoose .lineShapeImg{
        top: 20px;
    }
    .testimonial {
        padding: 50px 0px;
    }
    .testimonial .heading {
        padding-right: 12px;
        text-align: center;
        margin-bottom: 30px;
    }
    .testimonial .heading span {
        font-size: 16px;
    }
    .testimonial .heading h2 {
        font-size: 40px;
        margin-bottom: 10px;
    }
    .testimonial .heading p {
        font-size: 18px;
    }    
    .contactSec {
        padding: 50px 0px;
    }
    .contactSec .right {
        text-align: center;
    }
    .contactSec .right span {
        font-size: 16px;
    }
    .contactSec .right h2 {
        font-size: 40px;
        margin-bottom: 10px;
    }
    .contactSec .right form {
        margin-top: 30px;
    }
    .contactSec .right form input, 
    .contactSec .right form textarea{
        padding: 10px 15px; 
    }
    .contactSec .col-lg-6:first-child {
        padding-right: 12px;
    }
    .contactSec .col-lg-6:last-child {
        padding-left: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .heroSec {
        min-height: 700px;
        height: 100vh;
        padding: 80px 0px 40px;
        align-items: flex-end;
    }
    .heroSec h1 {
        font-size: 40px;
    }
    .heroSec p {
        font-size: 16px;
        line-height: 27px;
    }
    .aboutUs {
        padding: 40px 0px 20px;
    }
    .aboutUs .heading {
        padding-bottom: 10px;
        text-align: center;
        margin-bottom: 0px;
    }
    .aboutUs .heading span {
        font-size: 14px;
    }
    .aboutUs .heading h2 {
        font-size: 32px;
        margin-bottom: 5px;
    }
    .aboutUs .heading::before {
        font-size: 80px;
        line-height: 50px;
    }
    .aboutUs figure::before{
        left: 0;
    }
    .aboutUs .heading::after{
        display: none;
    }
    .aboutUs .innovation li .itemBox b{
        font-size: 34px;
    }
    .aboutUs .innovation li .itemBox span {
        font-size: 16px;
    }
    .serviceSec {
        padding: 40px 0px 20px;
    }
    .serviceSec .heading span {
        font-size: 14px;
    }
    .serviceSec .heading h2 {
        font-size: 34px;
        margin-bottom: 5px;
    }
    .serviceSec .heading p {
        font-size: 16px;
    }
    .serviceSec .serviceBox {
        width: calc(100% - 30px);
        padding: 25px 15px;
        border-radius: 20px;
        margin: 0px 15px 20px;
        text-align: center;
    }
    .serviceSec .serviceBox .icon {
        width: 70px;
        height: 70px;
        margin: 0px auto 20px;
    }
    .serviceSec .serviceBox h3 {
        font-size: 22px;
    }
    .serviceSec .serviceBox p {
        padding-bottom: 0px;
    }
    .weServe {
        padding: 40px 0px;
    }
    .weServe .heading span {
        font-size: 14px;
    }
    .weServe .heading h2 {
        font-size: 34px;
        margin-bottom: 5px;
    }
    .weServe .heading p {
        font-size: 16px;
    }
    .weServe .slideBox {
        margin: 0px 10px;
    }
    .weServe .slideBox .imgItem {
        border-radius: 15px;
    }
    .weServe .slideBox .overlay {
        bottom: 10px;
        width: calc(100% - 20px);
        padding: 15px 15px;
        border-radius: 15px;
    }
    .weServe .slideBox h4 {
        font-size: 18px;
    }
    .weServe .slideBox p {
        font-size: 14px;
        line-height: 22px;
    }
    .discussSec {
        padding: 40px 0px;
    }
    .discussSec h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .discussSec p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .whyChoose {
        padding: 40px 0px 10px;
    }
    .whyChoose .heading span {
        font-size: 14px;
    }
    .whyChoose .heading h2 {
        font-size: 34px;
        margin-bottom: 5px;
    }
    .whyChoose .heading p {
        font-size: 16px;
    }
    .whyChoose .itemWrapper{
        flex-wrap: wrap;
    }
    .whyChoose .lineShapeImg{
        display: none;
    }
    .whyChoose .itemBox{
        width: 100%;
        margin-bottom: 30px;
    }
    .testimonial {
        padding: 40px 0px;
    }
    .testimonial .heading span {
        font-size: 14px;
    }
    .testimonial .heading h2 {
        font-size: 35px;
        margin-bottom: 5px;
    }
    .testimonial .heading p {
        font-size: 16px;
    }
    .testimonial .testimonialItem {
        margin-top: 35px;
        padding: 0px 10px;
    }
    .testimonial .testimonialItem .content {
        padding: 20px 15px 20px 15px;
    }
    .testimonial .testimonialItem .metaInfo {
        padding-left: 15px;
    }
    .testimonial .testimonialItem .metaInfo h5 {
        font-size: 16px;
        margin-bottom: 0px;
    }
    .testimonial .testimonialItem .metaInfo span {
        font-size: 12px;
    }
    .contactSec {
        padding: 40px 0px;
    }
    .contactSec .right span {
        font-size: 14px;
    }
    .contactSec .right h2 {
        font-size: 34px;
        margin-bottom: 5px;
    }
    .contactSec .right p {
        font-size: 16px;
    }
    .contactSec .right {
        padding: 25px 15px;
    }
}   




