/* make keyframes that tell the start state and the end state of our object */

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    /* make things invisible upon start */
    -webkit-animation: fadeIn ease-in 1;
    /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

.fade-in.one {
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.fade-in.two {
    -webkit-animation-delay: .5s;
    -moz-animation-delay: .5s;
    animation-delay: .5s;
}

.fade-in.three {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    animation-delay: .9s;
}

.fade-in.four {
    -webkit-animation-delay: 1.3s;
    -moz-animation-delay: 1.3s;
    animation-delay: 1.3s;
}

.fade-in.five {
    -webkit-animation-delay: 1.7s;
    -moz-animation-delay: 1.7s;
    animation-delay: 1.7s;
}

.fade-in.six {
    -webkit-animation-delay: 2.1s;
    -moz-animation-delay: 2.1s;
    animation-delay: 2.1s;
}

.fade-in.seven {
    -webkit-animation-delay: 2.5s;
    -moz-animation-delay: 2.5s;
    animation-delay: 2.5s;
}


/*Animated-scroll*/

[data-animate-in] {
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease
}

[data-animate-in="up"] {
    transform: translate3d(0, 24px, 0)
}

[data-animate-in="left"] {
    transform: translate3d(-25%, 0, 0)
}

[data-animate-in="right"] {
    transform: translate3d(25%, 0, 0)
}

[data-animate-in="down"] {
    transform: translate3d(0, -24px, 0)
}

[data-animate-in="fadeIn"] {
    transform: translate3d(0, 0, 0)
}

[data-animate-in].in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transition: transform 0.6s ease, opacity 0.6s ease
}

.fade-in {
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
}

.page-loaded .fade-in,
.page-loaded.fade-in {
    opacity: 1
}

.isSafari.isTouch [data-animate-in],
.isSafari.isTouch [data-animate-in="up"] {
    opacity: 1;
    transition: none;
    transform: none
}


/*End*/


/*--------------------------------------------------------------------------------------*/

.img_wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
}

.one_column_template .industry_banner h3 {
    margin: 0 0 45px;
}

.feature_icon {
    display: flex;
    margin: 0;
    padding: 0;
}

.feature_icon .feature_icon_inner {
    flex: 1 0 0;
    margin: 0 10px;
}

.feature_icon .feature_icon_inner .icon {
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 30px;
    border-radius: 50%;
    color: #32325d;
    border: 5px solid #fff;
    text-transform: uppercase;
    font-size: 12px;
    height: 140px;
    width: 140px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    box-shadow: 0px 0px 14px 0px rgb(5 23 52 / 70%);
}

.feature_icon .feature_icon_inner .icon a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    width: 100%;
    height: 100%;
}

.feature_icon .feature_icon_inner .icon a img {
    margin: 0;
}

.feature_icon .feature_icon_inner .icon:hover {
    border: 5px solid #b02024;
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
}

.feature_icon .feature_icon_inner .icon:hover a img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.feature_icon .feature_icon_inner p {
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px #000;
}

.btn_section {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.btn_section::after {
    display: table;
    content: "";
    clear: both;
}

.case_btn {
    display: flex;
    margin: 0 10px;
}

.download_link {
    text-decoration: none;
    padding: 6px 12px;
    background-color: #ffffff;
    color: #b02024;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    transition: all .3s ease-in-out;
    text-transform: uppercase;
    line-height: 26px;
    width: 180px;
    border: none;
}

.download_link:hover {
    background-color: #eaeaea;
}

.download_link a {
    text-decoration: none;
    color: #b02024;
    position: relative;
    top: 2px;
}

.viewproject {
    border: none;
    text-decoration: none;
    padding: 6px 12px;
    background-color: #b02024;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    transition: all .3s ease-in-out;
    text-transform: uppercase;
    line-height: 26px;
    width: 180px;
}

.viewproject:hover {
    background-color: #d4494d;
}

.viewproject a {
    text-decoration: none;
    color: #fff;
    position: relative;
    top: 2px;
    outline: none;
}

.one_column_template .industry_banner .overlay_gaph {
    vertical-align: middle;
    background: rgb(35 62 145 / 62%) none repeat scroll 0 0;
    /* background: rgb(122 59 186 / 50%) none repeat scroll 0 0; */
    display: block;
    padding: 8vh 0;
    text-align: center;
}

.object_column_alternative_content .img_box_section .img_inr img {
    /*max-width: 100%;
    */
    position: relative;
    width: auto;
    height: 310px;
    /*background: #ffffff;
    box-shadow: 0px 0px 6px 2px rgb(0 0 0 / 50%);
    */
    filter: drop-shadow(1px 3px 5px #111);
    -webkit-filter: drop-shadow(1px 3px 5px #111);
}

.object_column_alternative_content .img_box_section .img_txt_inr {
    width: 100%;
    padding: 0 15px 0 0;
    color: #626262;
    font-size: 14px;
    font-family: 'robotoregular';
    height: 310px;
    display: flex;
    align-items: center;
}

.one_column_template .industry_banner {
    margin: 0 0 0;
    display: table;
    width: 100%;
}

.ppms-product-bg {
    background: url(../../images/ppms/ppms-banner-bg.jpg) no-repeat fixed center;
    background-size: cover;
}

.one_column_template {
    margin-top: 75px;
    margin-bottom: 0;
}

.pading_sec {
    padding: 30px 0;
}

.overlay_gaph_SetupDemo {
    vertical-align: middle;
    background: rgb(58 58 58 / 75%) none repeat scroll 0 0;
    display: block;
    padding: 4px 0;
    text-align: center;
}

.SetupDemo_txt {
    color: #fff;
    font-size: 24px;
    text-align: left;
    height: 48px;
    margin: 0;
    display: flex;
    align-items: center;
}

.SetupDemo_link {
    text-decoration: none;
    padding: 8px 20px;
    font-size: 20px;
    border-radius: 6px;
    background-color: #0d2676;
    color: #fff;
    box-shadow: 0px 0px 6px 2px rgb(0 0 0 / 15%);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    width: 100%;
    height: 48px;
    box-shadow: none;
    border: none;
}

.SetupDemo_link:hover {
    background-color: #1c3b9d;
}

.viewproject_link:hover {
    background-color: #df363b;
}

.viewproject_link {
    text-decoration: none;
    padding: 8px 20px;
    font-size: 20px;
    border-radius: 6px;
    background-color: #b01f23;
    color: #fff;
    box-shadow: 0px 0px 6px 2px rgb(0 0 0 / 15%);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    width: 100%;
    height: 48px;
    box-shadow: none;
    border: none;
}

.viewproject_link a {
    text-decoration: none;
    color: #fff;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999999;
    background-color: #000;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999999;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.object_column_alternative_content .img_box_section .img_txt_inr p {
    width: 100%;
    margin: 0 0 10px 0;
    padding: 0;
    list-style: none;
    line-height: 26px;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    color: #000;
}

.object_column_alternative_content .img_box_section .img_txt_inr h2 {
    color: #B01F23;
    font-size: 24px;
    font-weight: normal;
    line-height: 24px;
    margin: 0 0 15px 0;
    padding: 0;
    text-transform: capitalize;
}

.grey_bg {
    background: #efefef;
}

.industry_banner_sec {
    margin-bottom: 75px;
}

.industry_banner_sec h3 {
    color: #000;
    font-size: 28px;
    margin: 40px 0 45px;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
}

.industry_banner_sec h3 span {
    height: 2px;
    width: 150px;
    background: #1fb03e;
    display: block;
    text-align: center;
    margin: 25px auto 0;
}

.industries_icon {
    display: flex;
    margin: 0;
    padding: 0;
}

.industries_icon .industries_icon_inner {
    flex: 1 0 0;
    margin: 0 10px;
}

.industries_icon .industries_icon_inner p {
    margin-bottom: 0;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.industries_icon .industries_icon_inner p span {
    display: block;
    font-size: 14px;
    color: #333;
    line-height: 20px;
    margin-top: 15px;
    text-transform: none;
    font-weight: normal;
}

.industries_icon .industries_icon_inner .icon {
    text-align: center;
    /* padding: 30px; */
    border-radius: 50%;
    color: #32325d;
    text-transform: uppercase;
    font-size: 12px;
    height: 200px;
    width: 200px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    box-shadow: 0px 0px 3px 0px rgb(5 23 52 / 80%);
    overflow: hidden;
}

.industries_icon .industries_icon_inner .icon .icon1inner .overlay_icon,
.industries_icon .industries_icon_inner .icon .icon2inner .overlay_icon,
.industries_icon .industries_icon_inner .icon .icon3inner .overlay_icon,
.industries_icon .industries_icon_inner .icon .icon4inner .overlay_icon,
.industries_icon .industries_icon_inner .icon .icon5inner .overlay_icon {
    background-color: rgb(0 0 0 / 50%);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.industries_icon .industries_icon_inner .icon .icon1inner {
    background: url(../../images/afforestation-deforestation/Deforestation-Tracking-bg.png) no-repeat center top / 100% 100%;
    color: #32325d;
    text-transform: uppercase;
    font-size: 12px;
    height: 100%;
    width: 100%;
    cursor: pointer;
    transition: all .3s ease-in-out;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.industries_icon .industries_icon_inner .icon .icon2inner {
    background: url(../../images/afforestation-deforestation/Collecting-Field-Data-bg.png) no-repeat center top / 100% 100%;
    color: #32325d;
    text-transform: uppercase;
    font-size: 12px;
    height: 100%;
    width: 100%;
    cursor: pointer;
    transition: all .3s ease-in-out;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.industries_icon .industries_icon_inner .icon .icon3inner {
    background: url(../../images/afforestation-deforestation/Real-time-Analyze-bg.png) no-repeat center top / 100% 100%;
    color: #32325d;
    text-transform: uppercase;
    font-size: 12px;
    height: 100%;
    width: 100%;
    cursor: pointer;
    transition: all .3s ease-in-out;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.industries_icon .industries_icon_inner .icon .icon4inner {
    background: url(../../images/afforestation-deforestation/Monitor-Operations-bg.png) no-repeat center top / 100% 100%;
    color: #32325d;
    text-transform: uppercase;
    font-size: 12px;
    height: 100%;
    width: 100%;
    cursor: pointer;
    transition: all .3s ease-in-out;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.industries_icon .industries_icon_inner .icon .icon5inner {
    background: url(../../images/afforestation-deforestation/AccessDataFromAnywhere-bg.png) no-repeat center top / 100% 100%;
    color: #32325d;
    text-transform: uppercase;
    font-size: 12px;
    height: 100%;
    width: 100%;
    cursor: pointer;
    transition: all .3s ease-in-out;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}


.industries_icon .industries_icon_inner .icon .icon1inner:hover,
.industries_icon .industries_icon_inner .icon .icon2inner:hover,
.industries_icon .industries_icon_inner .icon .icon3inner:hover,
.industries_icon .industries_icon_inner .icon .icon4inner:hover,
.industries_icon .industries_icon_inner .icon .icon5inner:hover {
    transform: scale(1.2);
}

.industries_icon .industries_icon_inner .icon .icon1inner img,
.industries_icon .industries_icon_inner .icon .icon2inner img,
.industries_icon .industries_icon_inner .icon .icon3inner img,
.industries_icon .industries_icon_inner .icon .icon4inner img,
.industries_icon .industries_icon_inner .icon .icon5inner img {
    width: 90px;
    margin: 0;
    transition: all .3s ease-in-out;
}

.industries_icon .industries_icon_inner .icon .icon1inner:hover img,
.industries_icon .industries_icon_inner .icon .icon2inner:hover img,
.industries_icon .industries_icon_inner .icon .icon3inner:hover img,
.industries_icon .industries_icon_inner .icon .icon4inner:hover img,
.industries_icon .industries_icon_inner .icon .icon5inner:hover img {
    transform: scale(0.8);
}

.ppms_logo_carousel {
    margin-bottom: 50px;
}

.brochure_download_section .brochure_form {
    margin: 45px auto 0;
    width: 60%;
}

.object_column_alternative_content .img_box_section .coreutilits h2 {
    color: #B01F23;
    font-size: 24px;
    font-weight: normal;
    line-height: 24px;
    margin: 0 0 15px 0;
    padding: 0;
    text-transform: uppercase;
}

.object_column_alternative_content .img_box_section .coreutilits ul {
    list-style-type: none;
    margin: 20px 0;
    padding: 0;
}

.object_column_alternative_content .img_box_section .coreutilits ul li {
    background: url(../../images/right_arrow_bullet.png) no-repeat 0 2px;
    list-style-type: none;
    padding: 0 0 15px 25px;
    font-size: 14px;
    line-height: 20px;
}

.coreutilits_sec {
    margin: 65px 0 0;
}

.object_column_alternative_content {
    display: block;
    overflow-x: hidden;
}




/* ---------Project Banner Industries---------- */
.project-banner-disaster-monitoring {
    float: left;
    clear: none;
    width: 100%;
    margin: 20px auto;
}

.project-banner-disaster-monitoring .banner-medium-disaster-monitoring {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    flex-direction: row;
    justify-content: flex-start;
    text-align: unset;
}

.banner-medium-disaster-monitoring img.center-cover {
    width: 100%;
    position: absolute;
    min-height: 316px;
    object-fit: cover;
}


.banner-medium-disaster-monitoring .left-column {
    min-width: 0;
    padding: 0 20px 0 10px;
    width: 50%;
    z-index: 1;
    text-align: center;
}

.banner-medium-disaster-monitoring .left-column .banner-title {
    color: #fff;
    text-shadow: 0px 0px 8px #234d3c;
}

.banner-medium-disaster-monitoring .left-column p.header-sub-title {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 24px;
    text-shadow: 0px 0px 8px #234d3c;
}

.banner-medium-disaster-monitoring .right-column {
    height: 100%;
    margin-top: 0;
    width: 50%;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.banner-medium-disaster-monitoring hr.separator {
    width: 100px;
    height: 4px;
    background-color: #8ff301;
    margin: 15px auto 22px auto;
    border: none;
}

.banner-medium-disaster-monitoring .right-column img.right {
    display: flex;
    justify-content: flex-end;
    width: auto;
    position: relative;
    margin: 0;
}

.banner-medium-disaster-monitoring .left-column ul li {
    background: url("../images/bullet-li-icon.png") no-repeat 0 2px;
    list-style-type: none;
    padding: 0 0 15px 25px;
    line-height: 24px;
    text-align: left;
    background-size: 18px;
    display: inline-block;
    margin: 0 15px;

}



.banner-medium-disaster-monitoring .left-column ul li a {
    color: #fff;
    font-size: 24px;
    text-shadow: 0px 0px 8px #234d3c;
}

.benefits-disaster-section {
    margin-top: 30px;
}

.benefits-disaster-section h4 {
    text-align: left;
}

.benefits-disaster-section h5 {
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 700;
}

.benefits-disaster-section ul {
    list-style-type: none;
    margin: 20px 0;
    padding: 0;
}

.benefits-disaster-section ul li {
    background: url("../../images/right_arrow_bullet.png") no-repeat 0 2px;
    list-style-type: none;
    padding: 0 0 15px 25px;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    font-weight: 300;
}




.banner-medium-disaster-monitoring.banner-webgis-portal .left-column ul li {
    background: url("../../images/bullet-li-icon.png") no-repeat 0 2px;
    list-style-type: none;
    padding: 0 0 15px 25px;
    line-height: 22px;
    text-align: left;
    background-size: 18px;
    display: inline-block;
    margin: 0 15px;

}

.banner-medium-disaster-monitoring.banner-webgis-portal .left-column ul li a {
    color: #fff;
    font-size: 20px;
    text-shadow: 0px 0px 8px #234d3c;
}

.banner-medium-disaster-monitoring.banner-webgis-portal img.center-cover {
    min-height: 352px;
}

@media screen and (max-width: 991px) {
    .project-banner-disaster-monitoring .banner-medium-disaster-monitoring {
        flex-direction: column;
    }

    .banner-medium-disaster-monitoring img.center-cover {
        min-height: 438px;
    }

    .banner-medium-disaster-monitoring img.center-cover.forest-boundary-survey-cover {
        min-height: 505px;
    }

    .banner-medium-disaster-monitoring .left-column {
        text-align: center;
        width: 100%;
    }

    .banner-medium-disaster-monitoring .left-column .banner-title {
        text-align: center;
        text-shadow: 0px 0px 8px #234d3c;
        margin-top: 50px;
    }

    .banner-medium-disaster-monitoring .right-column {
        width: 480px;
    }

    .banner-medium-disaster-monitoring .left-column p.header-sub-title {
        text-align: center;
        width: 100%;
        text-shadow: 0px 0px 8px #234d3c;
    }

    .banner-medium-disaster-monitoring hr.separator {
        margin: 10px auto 15px auto;

    }

    .banner-medium-disaster-monitoring.banner-webgis-portal img.center-cover {
        min-height: 552px;
    }



}


@media screen and (max-width: 767px) {


    .banner-medium-disaster-monitoring .left-column ul li {
        line-height: 21px;
        background-size: 21px;
    }

    .banner-medium-disaster-monitoring .left-column ul li a {
        font-size: 21px;
    }

    .banner-medium-disaster-monitoring.banner-webgis-portal .left-column ul li a {
        font-size: 18px;
    }

    .banner-medium-disaster-monitoring.banner-webgis-portal img.center-cover {
        min-height: 552px;
    }

}

@media screen and (max-width: 650px) {
    .banner-medium-disaster-monitoring.banner-webgis-portal .left-column ul {
        min-height: 210px;
    }

    .banner-medium-disaster-monitoring.banner-webgis-portal .left-column ul li a {
        font-size: 18px;
    }

    .banner-medium-disaster-monitoring.banner-webgis-portal img.center-cover {
        min-height: 640px;
    }

}

@media(max-width:551px) {

    /* ---------Project Banner Industries---------- */

    .banner-medium-disaster-monitoring img.center-cover {
        min-height: 362px;
    }

    .banner-medium img.center-cover.forest-boundary-survey-cover {
        min-height: 445px;
    }

    .banner-medium-disaster-monitoring .right-column {
        width: 380px;
    }

    .banner-medium-disaster-monitoring .left-column .banner-title {
        font-size: 24px;
    }

    .banner-medium-disaster-monitoring .left-column p.header-sub-title {
        font-size: 18px;
    }

    .banner-medium-disaster-monitoring .left-column ul li {
        line-height: 18px;
        background-size: 18px;

    }

    .banner-medium-disaster-monitoring .left-column ul li a {
        font-size: 18px;
    }

    .banner-medium-disaster-monitoring.banner-webgis-portal img.center-cover {
        min-height: 590px;
    }
}



/*-----------------------contact-section----------------------------*/
section#contact {
    background-color: #ffffff;
    padding-top: 26px;
    padding-bottom: 40px;
    float: none;
}

section#contact.plantation-monitoring-contact {
    background-color: #efefef;
}

.contact-section h4 {
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    -moz-osx-font-smoothing: grayscale;
    margin-top: 1.71rem;
    margin-bottom: 15px;
}


.contact-section .textfield__input,
.contact-section .mdl-textfield {
    font-size: 14px;
}

.contact-section .mdl-textfield {
    font-size: 1rem;
    width: 300px;
    max-width: 100%;
    margin: 0;
    padding: 1.43rem 0;
}

.contact-section .test_email {
    position: absolute;
    z-index: -9;
    left: -9999px;
    top: 0;
    border: solid 1px #fff;
}

.contact-section .mdl-textfield__input {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    display: inline-block;
    font-size: 16px;
    margin: 0;
    padding: 4px 0;
    width: 100%;
    background: 16px;
    text-align: left;
    color: inherit
}

.contact-section .contact-section .mdl-textfield__input:focus,
.contact-section .mdl-textfield__input:focus-visible {
    outline: none
}

.contact-section .mdl-textfield.is-invalid .mdl-textfield__input {
    border-color: #de3226;
    box-shadow: none
}

.contact-section .mdl-textfield.is-disabled .mdl-textfield__input {
    background-color: transparent;
    border-bottom: 1px dotted rgba(0, 0, 0, .12)
}

.contact-section .mdl-textfield__label {
    bottom: 0;
    color: rgba(0, 0, 0, .26);
    font-size: 16px;
    left: 0;
    right: 0;
    pointer-events: none;
    position: absolute;
    top: 24px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-align: left
}

.contact-section .mdl-textfield.is-dirty .mdl-textfield__label {
    visibility: hidden
}

.contact-section .mdl-textfield--floating-label .mdl-textfield__label {
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.contact-section .mdl-textfield--floating-label.is-focused .mdl-textfield__label,
.contact-section .mdl-textfield--floating-label.is-dirty .mdl-textfield__label {
    color: rgb(63, 81, 181);
    font-size: 12px;
    top: 4px;
    visibility: visible
}


#contact-us .mdl-textfield.is-invalid .mdl-textfield__input {
    border-color: rgba(0, 0, 0, 0.12) !important;
}

.contact-submit {
    margin-top: 15px;
}

.contact-submit button {
    background-color: rgb(94, 195, 41);
}

.contact-submit .mdl-button.mdl-js-button.mdl-button--raised.mdl-button--accent.mdl-js-ripple-effect {
    background-color: #61b638;
}

.contact-section .mdl-button {
    height: 45px;
    min-width: 104px;
    padding: 0 1.28rem;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.57rem;
}

.contact-section p {
    font-size: 17px;
    font-weight: 300;
    line-height: 29px;
    letter-spacing: 0;
    margin-bottom: 15px;
    padding: 0;
}

.ulist {
    /* padding-bottom: 0.3rem; */
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
    padding-left: 0;
}

.ulist li {
    font-size: 19px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 1px;
    opacity: 1;
    position: relative;
    color: #626262;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ulist li span {
    display: inline-block;
    margin-left: 2rem;
}



.ulist li span a {
    color: black;
}

@media (max-width:1200px) {
    .ulist li {
        font-size: 17px;
    }
}

@media (max-width:991px) {
    .contact-section .mdl-textfield {
        width: 100%;
    }

    .contact-section h4 {
        font-size: 22px;
    }

    .contact-section p {
        font-size: 14px;
    }

    .ulist li {
        font-size: 14px;
        ;
    }

    .ulist li span {
        margin-left: 10px;
    }

}

/*-----------------------Swift csr same contact-section start----------------------------*/


.signup-content {
    padding: 60px 0 130px 0;
    display: flex;
}

.signup-form {
    margin-left: 75px;
    padding-right: 75px;
    padding-left: 34px;
    border-right: solid 1px #e4e4e4;
}

.signup-form,
.signup-image,
.signin-form,
.signin-image {
    width: 50%;
    overflow: hidden;
}

.form-title {
    margin-top: 120px;
    text-transform: none;
    font-size: 42px;
    color: #001040;
    font-family: 'rocko', sans-serif !important;
    text-align: center;
}

.register-form {
    width: 100%;
}

.signup-form .form-group {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}

.signup-form .form-group label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    color: #222;
}

.signup-form .form-group input {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid #999;
    padding: 6px 30px;
    font-family: 'roboto';
    box-sizing: border-box;
    outline: none;
}

.signup-form .form-group:last-child {
    margin-bottom: 0;
}

.signup-form .form-submit {
    display: inline-block;
    background: #6dabe4;
    color: #fff;
    border-bottom: none;
    width: auto;
    padding: 15px 39px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    margin-top: 18px;
    cursor: pointer;
    min-height: 42px;
    font-size: 16px;
}

.signup-form .form-submit:hover {
    background: #4292dc;
}

.signup-form input:focus {
    border-bottom: 1px solid #222;
}

.signup-text {
    margin-top: 45px;
}

.signup-text {
    margin: 0 55px;
}

.signup-form,
.signup-text,
.signin-form,
.signin-image {
    width: 50%;
    overflow: hidden;
}

.request-Call-btn {
    border-color: rgb(27, 19, 99);
    border-radius: 50em;
    background-color: rgb(27, 19, 99);
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff;
    transition: 0.2s;
}

.request-Call-btn:hover {
    border-color: rgb(27, 19, 99);
    background-color: rgb(255, 255, 255);
    color: rgb(27, 19, 99);

    box-shadow: 0px 1px 1px rgb(0 0 0 / 5%), 0px 2px 2px rgb(0 0 0 / 5%), 0px 4px 4px rgb(0 0 0 / 5%), 0px 8px 8px rgb(0 0 0 / 5%), 0px 16px 16px rgb(0 0 0 / 5%);
}

.request-Call-btn:focus {
    color: #fff;
    outline: none;
}

.request-Call-btn>span {
    padding: 0.45em 0.75em;
    display: inline-flex;
    border-radius: inherit;
    border-color: inherit;
    flex-flow: row wrap;
    align-items: center;
    margin: -1px;

}

@media (max-width:1099px) {

    .signup-form,
    .signup-text,
    .signin-form,
    .signin-image {
        width: 100%;
        overflow: hidden;
    }

    .signup-content {
        display: block;
        padding-bottom: 60px;
    }

    .signup-form {
        padding: 0;
        margin: 0 auto;
        border-right: solid 1px transparent;
        width: 75%;
        padding: 22px;
        box-shadow: 0 1px 6px rgb(60 64 67 / 30%);
        border-radius: 12px;
    }

    .signup-text {
        margin: 45px 0 0;
        text-align: center;
    }

    .signup-text p {
        margin: 10px 0;
    }


}

@media (max-width:767px) {


    .form-title {
        font-size: 24px;
        line-height: 32px;
        font-weight: 600;
        margin-top: 20px;
    }

    .signup-form {
        width: 90%;
    }

    .signup-text,
    .signup-text p {
        text-align: center;
        ;
    }

    .signup-text {
        margin: 30px 0 0 0;
    }

    .signup-content {
        padding: 60px 0 60px 0;
    }
}

/*-----------------------Swift csr same contact-section End----------------------------*/


/*-----------------------ExampleModal start----------------------------*/
#exampleModal {
    top: 0;
    z-index: 999999;
    padding-top: 90px;
    background-color: rgba(0, 0, 0, 0.4)
}



.signup-form.signup-modal-form {
    width: 100%;
    overflow: hidden;
    margin: 0;
    border: none;
    padding: 0 15px;
    margin-block: 20px;
    margin-top: 0px;
    box-shadow: none;
    border-radius: 0;
}

.signup-form.signup-modal-form .form-group i {
    color: #747d8e;
}

.signup-form.signup-modal-form .form-group {
    margin-bottom: 8px;
}

.signup-form.signup-modal-form .form-group input {
    width: 100%;
    display: block;
    border: none;
    border: 1px solid #dde9e9;
    padding: 6px 30px;
    /* font-family: 'roboto'; */
    box-sizing: border-box;
    outline: none;
    border-radius: 4px;
    padding: .75em;
    padding-left: 32px;
    height: 44px;
    line-height: 1.18em;
}

.signup-form.signup-modal-form .form-group input:focus {
    -webkit-box-shadow: 0 0 0 1px rgb(0 0 0 / 10%) inset;
    box-shadow: inset 0 0 0 1px rgb(0 0 0 / 10%);
    outline: 0;
}

.signup-form.signup-modal-form .form-group label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    color: #4c3636;
}

.signup-form.signup-modal-form .form-group .elementor-button {
    background-color: #1fc1c3;
    color: #fff;
    line-height: 1.22em;
    flex-basis: 100%;
    min-height: 44px;
    font-family: "Proxima Nova", Sans-serif;
    font-size: 18px;
    width: 100%;
    border: none;
    border-radius: 4px;
    margin-top: 7px;
}

#exampleModal .modal-header {
    border-bottom: transparent;
}

#exampleModal .modal-title {
    float: left;
    line-height: 30px;
    font-size: 18px;
    color: #747d8e;
    width: calc(100% - 30px);
    text-align: center;
}

#exampleModal .close {
    width: 25px;
    height: 25px;
    transition: all 0.3s ease 0s;
    color: #747d8e;
    opacity: 0.8;
}

#exampleModal .close:hover {
    color: #657491;
}

#exampleModal .modal-footer {
    text-align: center;
}

#exampleModal .modal-footer .btn-primary {
    color: #fff;
    background-color: #021c6b;
    border-color: #204d74;
}


.Features_two_column_alternative_content .img_box_section {
    width: 100%;
    margin-top: 15px;
    border-bottom: none;
    padding-bottom: 15px;
    margin-bottom: 15px;
}


.Features_two_column_alternative_content .img_box_section .img_txt_inr h1 {
    color: #B01F23;
    font-size: 20px;
    font-weight: normal;
    line-height: 24px;
    margin: 0 0 15px 0;
    padding: 0;
    position: relative;
    z-index: 1;
    /* font-family: 'rocko', sans-serif !important; */
    color: #1b1363;
    letter-spacing: 0px;
    font-size: 26px;
    font-weight: 600;
    text-transform: capitalize;
}


.object_column_alternative_content .img_box_section .img_txt_inr h2 {


    font-weight: normal;
    line-height: 24px;
    margin: 0 0 15px 0;
    padding: 0;
    text-transform: capitalize;
    /* font-family: 'rocko', sans-serif !important; */
    color: #1b1363;
    letter-spacing: 0px;
    font-size: 26px;
    font-weight: 600;
}

.object_column_alternative_content .img_box_section .img_txt_inr ul li {
    background: url(../../images/circle_grey_bullet.png) no-repeat 0 2px;
    list-style-type: none;
    padding: 0 0 15px 25px;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}
.Features_two_column_alternative_content .img_box_section .img_txt_inr ul li {
    list-style-type: none;
    line-height: 20px;
}
   

.img_box_section .img_txt_inr ul li {
    background: url(../../images/circle_grey_bullet.png) no-repeat 0 2px;
    list-style-type: none;
    padding: 0 0 10px 25px;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}

.object_column_alternative_content .img_box_section .img_txt_inr{
    min-height: 310px;
    height: auto;
}

.object_column_alternative_content .img_box_section{
    margin-bottom: 0;
}

@media (min-width: 768px) {
    #exampleModal .modal-dialog {
        width: 480px;
        margin: 30px auto;
    }
}

/*-----------------------ExampleModal End----------------------------*/


/*---------------------Responsive Part Start-----------------------------------*/

@media (max-width:1200px) {
    .industries_icon .industries_icon_inner .icon {
        height: 150px;
        width: 150px;
    }
}

@media (max-width:1024px) {
    .industries_icon .industries_icon_inner .icon {
        height: 180px;
        width: 180px;
    }

    .one_column_template {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .img_wrapper {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .object_column_alternative_content .img_box_section .img_inr img,
    .object_column_alternative_content .img_box_section .img_txt_inr {
        height: auto;
    }

    .object_column_alternative_content .img_box_section {
        width: 100%;
        margin-bottom: 60px;
        margin-top: 40px;
    }

    .feature_icon,
    .industries_icon {
        display: flex;
        margin: 0;
        padding: 0;
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .industries_icon_inner p {
        text-align: center;
    }

    .feature_icon .feature_icon_inner p {
        text-align: center;
    }

    .feature_icon .feature_icon_inner {
        flex: 0 0 30%;
        margin: 0 0 0;
        margin-bottom: 30px;
    }

    .industries_icon_inner {
        flex: 0 0 30%;
        margin-bottom: 30px;
    }

    .industries_icon .industries_icon_inner {
        flex: 0 0 30%;
        margin: 0 0 40px;
    }

    .brochure_download_section .brochure_form {
        margin: 45px auto 0;
        width: 80%;
    }

    .img_inr {
        text-align: left;
    }

    .one_column_template .industry_banner .overlay_gaph {
        vertical-align: middle;
        background: rgb(35 62 145) none repeat scroll 0 0;
        /* background: rgb(122 59 186 / 50%) none repeat scroll 0 0; */
        display: block;
        padding: 8vh 0;
        text-align: center;
    }
}

@media (max-width:768px) {
    .img_inr {
        text-align: center;
    }

    .object_column_alternative_content .img_box_section .img_txt_inr p {
        text-align: center;
    }

    .SetupDemo_txt {
        color: #fff;
        font-size: 20px;
        text-align: center;
        margin-bottom: 10px;
        justify-content: center;
    }

    .feature_icon .feature_icon_inner {
        flex: 0 0 40%;
        margin: 0 0 0;
        margin-bottom: 30px;
    }

    .industries_icon_inner {
        flex: 0 0 40%;
        margin: 0 0 0;
        margin-bottom: 30px;
    }

    .industries_icon .industries_icon_inner {
        flex: 0 0 48%;
        margin: 0 0 40px;
    }

    .object_column_alternative_content {
        margin: 25px 0 0;
    }

    .industry_banner_sec h3 {
        color: #000;
        font-size: 25px;
    }
}

@media (max-width:767px) {
    .object_column_alternative_content .img_box_section .img_txt_inr {
        height: auto;
        margin-top: 40px;
    }
}

@media (max-width:640px) {
    .btn_section {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature_icon .feature_icon_inner .icon {
        padding: 10px;
        color: #32325d;
        border: 2px solid #fff;
        height: 80px;
        width: 80px;
    }

    .feature_icon .feature_icon_inner {
        flex: 0 0 50%;
        margin: 0 0 0;
        margin-bottom: 30px;
    }
}

@media (max-width:480px) {

    .case_btn,
    .case_btn a,
    .case_btn a button {
        width: 100%;
    }

    .SetupDemo_txt {
        color: #fff;
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
    }

    .industries_icon_inner {
        flex: 0 0 40%;
        margin: 0 0 0;
        margin-bottom: 30px;
    }

    .industries_icon .industries_icon_inner {
        flex: 0 0 100%;
        margin: 0 0 40px;
    }
}

@media (max-width:479px) {
    .download_link {
        margin-bottom: 10px;
    }
}

.common_btn {
    margin-bottom: 50px;
}