                        /*=====================================================
PROJECT NAME: DIGITAL AIR PRODUCT
CREATED BY: HANDHOLDERS GLOBAL
COPYRIGHT: HHG 2021
=====================================================*/
                        
                        body {
                            font-family: 'Helvetica', sans-serif!important;
                            background-color: #FAFAFA;
                            height: 100%;
                            overflow-x: hidden;
                        }
                        /*=====================================================
NAVBAR CSS
=====================================================*/
                        /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
                        
                        #header {
                            /*background: #fff;*/
                            transition: all 0.5s;
                            z-index: 997;
                            padding: 20px 0;
                        }
                        
                        #header.header-scrolled {
                            padding: 12px 0;
                            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
                            background: #fff;
                        }
                        
                        #header .logo {
                            font-size: 32px;
                            margin: 0;
                            padding: 0;
                            line-height: 1;
                            font-weight: 600;
                            font-family: "Poppins", sans-serif;
                        }
                        
                        #header .logo a {
                            color: #111111;
                        }
                        
                        #header .logo a span {
                            color: #e03a3c;
                        }
                        
                        #header .logo img {
                            max-height: 70px;
                        }
                        
                        @media (max-width: 992px) {
                            #header {
                                padding: 12px 0;
                            }
                            #header .logo {
                                font-size: 28px;
                            }
                        }
                        /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
                        /* Desktop Navigation */
                        
                        .nav-menu ul {
                            margin: 0;
                            padding: 0;
                            list-style: none;
                        }
                        
                        .nav-menu>ul {
                            display: flex;
                        }
                        
                        .nav-menu>ul>li {
                            position: relative;
                            white-space: nowrap;
                            padding: 10px 0 10px 28px;
                        }
                        
                        .nav-menu a {
                            display: block;
                            position: relative;
                            color: #111111;
                            transition: 0.3s;
                            font-size: 15px;
                            /*font-weight: 600;*/
                        }
                        
                        .nav-menu li .btn-primary {
                            color: #ffffff;
                        }
                        
                        .nav-menu a:hover,
                        .nav-menu .active>a,
                        .nav-menu li:hover>a {
                            color: #5271FF;
                        }
                        
                        .nav-menu .drop-down ul {
                            display: block;
                            position: absolute;
                            left: 14px;
                            top: calc(100% + 30px);
                            z-index: 99;
                            opacity: 0;
                            visibility: hidden;
                            padding: 10px 0;
                            background: #fff;
                            box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
                            transition: 0.3s;
                        }
                        
                        .nav-menu .drop-down:hover>ul {
                            opacity: 1;
                            top: 100%;
                            visibility: visible;
                        }
                        
                        .nav-menu .drop-down li {
                            min-width: 180px;
                            position: relative;
                        }
                        
                        .nav-menu .drop-down ul a {
                            padding: 10px 20px;
                            font-size: 14px;
                            text-transform: none;
                        }
                        
                        .nav-menu .drop-down ul a:hover,
                        .nav-menu .drop-down ul .active>a,
                        .nav-menu .drop-down ul li:hover>a {
                            color: #5271FF;
                        }
                        
                        .nav-menu .drop-down>a:after {
                            content: "\ea99";
                            font-family: IcoFont;
                            padding-left: 5px;
                        }
                        
                        .nav-menu .drop-down .drop-down ul {
                            top: 0;
                            left: calc(100% - 30px);
                        }
                        
                        .nav-menu .drop-down .drop-down:hover>ul {
                            opacity: 1;
                            top: 0;
                            left: 100%;
                        }
                        
                        .nav-menu .drop-down .drop-down>a {
                            padding-right: 35px;
                        }
                        
                        .nav-menu .drop-down .drop-down>a:after {
                            content: "\eaa0";
                            font-family: IcoFont;
                            position: absolute;
                            right: 15px;
                        }
                        
                        .pad-right i .fa {
                            color: #ffffff!important;
                        }
                        
                        @media (max-width: 1500px) {
                            .nav-menu>ul>li {
                                position: relative;
                                white-space: nowrap;
                                padding: 10px 0 10px 15px;
                            }
                            .nav-menu>ul>.li-first {
                                padding-left: 30px;
                            }
                        }
                        
                        @media (max-width: 1366px) {
                            .nav-menu>ul>li {
                                position: relative;
                                white-space: nowrap;
                                padding: 10px 0 10px 10px;
                            }
                            .nav-menu .drop-down .drop-down ul {
                                left: -90%;
                            }
                            .nav-menu .drop-down .drop-down:hover>ul {
                                left: -100%;
                            }
                            .nav-menu .drop-down .drop-down>a:after {
                                content: "\ea9d";
                            }
                        }
                        
                        .get-started-btn {
                            margin-left: 30px;
                            border-radius: 4px;
                            padding: 8px 25px;
                            white-space: nowrap;
                            transition: 0.3s;
                            font-size: 14px;
                            font-weight: 600;
                            display: inline-block;
                        }
                        
                        .get-started-search {
                            margin-left: 18px;
                            padding: 8px 10px;
                        }
                        
                        .get-started-user {
                            margin-left: 10px;
                            padding: 8px 10px;
                        }
                        
                        @media (max-width: 992px) {
                            .get-started-btn {
                                margin: 0 15px 0 0;
                                padding: 6px 18px;
                            }
                        }
                        /* Mobile Navigation */
                        
                        @media only screen and (max-width: 600px) {
                            #header .pad-right {
                                padding-right: 50px;
                            }
                            .mobile-nav-toggle i {
                                margin-top: 22px;
                            }
                        }
                        
                        .mobile-nav-toggle {
                            position: fixed;
                            right: 15px;
                            top: 15px;
                            z-index: 9998;
                            border: 0;
                            background: none;
                            font-size: 18px;
                            transition: all 0.4s;
                            outline: none !important;
                            line-height: 1;
                            cursor: pointer;
                            text-align: right;
                        }
                        
                        .mobile-nav-toggle i {
                            color: #111111;
                        }
                        
                        .mobile-nav {
                            position: fixed;
                            top: 55px;
                            right: 15px;
                            bottom: 15px;
                            left: 15px;
                            z-index: 9999;
                            overflow-y: auto;
                            background: #fff;
                            transition: ease-in-out 0.2s;
                            opacity: 0;
                            visibility: hidden;
                            border-radius: 10px;
                            padding: 10px 0;
                        }
                        
                        .mobile-nav * {
                            margin: 0;
                            padding: 0;
                            list-style: none;
                        }
                        
                        .mobile-nav a {
                            display: block;
                            position: relative;
                            color: #111111;
                            padding: 10px 20px;
                            font-weight: 500;
                            outline: none;
                        }
                        
                        .mobile-nav a:hover,
                        .mobile-nav .active>a,
                        .mobile-nav li:hover>a {
                            color: #e03a3c;
                            text-decoration: none;
                        }
                        
                        .mobile-nav .drop-down>a:after {
                            content: "\ea99";
                            font-family: IcoFont;
                            padding-left: 10px;
                            position: absolute;
                            right: 15px;
                        }
                        
                        .mobile-nav .active.drop-down>a:after {
                            content: "\eaa1";
                        }
                        
                        .mobile-nav .drop-down>a {
                            padding-right: 35px;
                        }
                        
                        .mobile-nav .drop-down ul {
                            display: none;
                            overflow: hidden;
                        }
                        
                        .mobile-nav .drop-down li {
                            padding-left: 20px;
                        }
                        
                        .mobile-nav-overly {
                            width: 100%;
                            height: 100%;
                            z-index: 9997;
                            top: 0;
                            left: 0;
                            position: fixed;
                            background: rgba(0, 0, 0, 0.6);
                            overflow: hidden;
                            display: none;
                            transition: ease-in-out 0.2s;
                        }
                        
                        .mobile-nav-active {
                            overflow: hidden;
                        }
                        
                        .mobile-nav-active .mobile-nav {
                            opacity: 1;
                            visibility: visible;
                        }
                        
                        .mobile-nav-active .mobile-nav-toggle i {
                            color: #fff;
                        }
                        /*=====================================================
MAIN BANNER CSS
=====================================================*/
                        
                        .main-banner {
                            padding: 90px 0px;
                        }
                        
                        .main-banner h1 {
                            font-size: 60px;
                            font-weight: bold;
                        }
                        
                        .main-banner h1 span {
                            color: #5271FF!important;
                        }
                        
                        .main-banner p {
                            font-size: 25px;
                            padding-top: 10px;
                        }
                        
                        .main-banner button a {
                            text-decoration: none;
                            color: #ffffff;
                        }
                        
                        .main-banner .btn-outline-primary a {
                            text-decoration: none;
                            color: #5271FF;
                        }
                        
                        .main-banner .btn-outline-primary a:hover {
                            text-decoration: none;
                            /* background-color: #5271FF; */
                            color: #ffffff;
                        }
                        /*=====================================================
SECTION1 CSS
=====================================================*/
                        
                        .section1 {
                            padding: 100px 0px;
                        }
                        
                        .section1 .carousel .carousel-indicators li {
                            width: .625rem;
                            height: .625rem;
                            cursor: pointer;
                            border-radius: 50%;
                        }
                        
                        .section1 .carousel-indicators .active {
                            background-color: #5271FF;
                        }
                        
                        .section1 .carousel-indicators li {
                            position: relative;
                            -ms-flex: 0 1 auto;
                            flex: 0 1 auto;
                            width: 30px;
                            height: 3px;
                            margin-right: 3px;
                            margin-left: 3px;
                            text-indent: -999px;
                            cursor: pointer;
                            background-color: rgba(49, 49, 49, 0.5);
                        }
                        
                        .section1 ol .carousel-indicators {
                            margin-top: 30px;
                        }
                        
                        .section1 .h1 {
                            font-size: 60px;
                            font-weight: bold;
                            text-align: right;
                        }
                        
                        .section1 h1 span {
                            color: #5271FF!important;
                        }
                        
                        .section1 .mybtn-right {
                            text-align: right;
                        }
                        
                        .section1 h5 {
                            font-size: 30px;
                        }
                        
                        .section1 button a {
                            text-decoration: none;
                            color: #ffffff;
                        }
                        
                        .section1 .btn-outline-primary a {
                            text-decoration: none;
                            color: #5271FF;
                        }
                        
                        .section1 .btn-outline-primary a:hover {
                            text-decoration: none;
                            /* background-color: #5271FF; */
                            color: #ffffff;
                        }
                        
                        .section1 .line {
                            display: flex;
                            align-items: center;
                            text-align: center;
                        }
                        
                        .section1 .line::before,
                        .section1 .line::after {
                            content: '';
                            flex: 1;
                            border-bottom: 1px solid rgb(255, 255, 255);
                        }
                        
                        .section1 .line:not(:empty)::before {
                            margin-right: .25em;
                        }
                        
                        .section1 .line:not(:empty)::after {
                            margin-left: .25em;
                        }
                        
                        .section1 .contaminants {
                            margin-bottom: 50px;
                        }
                        /* .section1 .contaminants2 {
                            text-align: center;
                        }
                         */
                        
                        .section1 .h1-1 {
                            font-size: 60px;
                            font-weight: bold;
                            text-align: center;
                        }
                        
                        .section1 .contaminants-bg {
                            background-image: url(../images/contaminants-bg.jpg);
                            background-repeat: no-repeat;
                            color: #ffffff;
                            padding: 100px 0px;
                        }
                        
                        @media only screen and (max-width: 600px) {
                            .section1 .h1 {
                                font-size: 60px;
                                font-weight: bold;
                                text-align: center;
                            }
                            .section1 .mybtn-right {
                                text-align: center;
                            }
                        }
                        /*=====================================================
SECTION2 CSS
=====================================================*/
                        
                        .section2 {
                            padding: 70px 0px;
                            background-color: rgba(188, 224, 253, 0.1);
                        }
                        
                        .section2 h1 {
                            font-size: 60px;
                            font-weight: bold;
                            text-align: right;
                        }
                        
                        .no-pad {
                            margin: 0px !important;
                            padding: 0px !important;
                        }
                        
                        .air-row {
                            align-items: center;
                        }
                        
                        .air-right-m {
                            float: right;
                        }
                        
                        .air-left-m {
                            float: left;
                        }
                        
                        .air-left-img1 {
                            background-image: url(../images/eefficience_l.png);
                            height: 100vh;
                            max-height: 438px;
                            object-fit: cover;
                            background-repeat: no-repeat;
                        }
                        
                        .air-right-img2 {
                            background-image: url(../images/prisk_r.png);
                            height: 100vh;
                            max-height: 438px;
                            object-fit: cover;
                            background-repeat: no-repeat;
                        }
                        
                        .air-left-img3 {
                            background-image: url(../images/acontamination_l.png);
                            height: 100vh;
                            max-height: 438px;
                            object-fit: cover;
                            background-repeat: no-repeat;
                        }
                        
                        .air-right-img4 {
                            background-image: url(../images/nroute_r.png);
                            height: 100vh;
                            max-height: 438px;
                            object-fit: cover;
                            background-repeat: no-repeat;
                        }
                        
                        @media only screen and (max-width: 600px) {
                            .air-left-img1,
                            .air-left-img2,
                            .air-left-img3,
                            .air-left-img4 {
                                height: 100vh;
                                min-height: 438px!important;
                                object-fit: cover;
                                background-repeat: no-repeat;
                            }
                        }
                        
                        .section2 h1 span {
                            color: #5271FF!important;
                        }
                        
                        .section2 .img-class {
                            margin-right: -50px;
                        }
                        
                        .section2 .img-class2 {
                            margin-left: -13px;
                        }
                        /*=====================================================
SECTION3 CSS
=====================================================*/
                        
                        .section3 {
                            padding: 70px 0px;
                        }
                        
                        .section3 h1 span {
                            color: #5271FF!important;
                        }
                        
                        .section3 h1 {
                            font-size: 60px;
                            font-weight: bold;
                            text-align: left;
                        }
                        
                        @media only screen and (max-width: 600px) {
                            .section3 h1 {
                                font-size: 60px;
                                font-weight: bold;
                                text-align: center;
                            }
                        }
                        
                        .section3 h4 {
                            font-size: 20px;
                            font-weight: bold;
                            color: #ffffff;
                        }
                        
                        .section3 .overlay1 {
                            margin-top: 30px;
                        }
                        
                        .section3 .overlay2 {
                            margin-top: 180px;
                        }
                        
                        .section3 .overlay3 {
                            margin-top: 180px;
                        }
                        
                        .section3 .overlay4 {
                            margin-top: 30px;
                        }
                        /*=====================================================
SECTION4 CSS
=====================================================*/
                        
                        .section4 {
                            padding: 70px 0px;
                        }
                        
                        .section4 h1 span {
                            color: #5271FF!important;
                        }
                        
                        .section4 h1 {
                            font-size: 60px;
                            font-weight: bold;
                            text-align: center;
                        }
                        
                        .section4 .line {
                            display: flex;
                            align-items: center;
                            text-align: center;
                        }
                        
                        .section4 .line::before,
                        .section4 .line::after {
                            content: '';
                            flex: 1;
                            border-bottom: 1px solid #000;
                        }
                        
                        .section4 .line:not(:empty)::before {
                            margin-right: .25em;
                        }
                        
                        .section4 .line:not(:empty)::after {
                            margin-left: .25em;
                        }
                        
                        .section4 .fa {
                            color: #cacaca!important;
                        }
                        
                        .section4 .checked {
                            color: #5271FF!important;
                        }
                        /*=====================================================
SECTION5 CSS
=====================================================*/
                        
                        .section5 {
                            padding: 20px 0px 70px 0px;
                        }
                        /*=====================================================
FOOTER CSS
=====================================================*/
                        
                        footer .page-footer {
                            background-color: #F6FBFF;
                        }
                        
                        .sub-page-footer {
                            margin-bottom: 0;
                            background-color: #F6FBFF;
                            padding-top: 50px;
                        }
                        
                        .sub-page-footer h5 {
                            color: #5271FF!important;
                        }
                        
                        .sub-page-footer ul li a {
                            color: #333333!important;
                            text-decoration: none;
                        }
                        
                        .sub-page-footer ul li a:hover {
                            color: #5271FF!important;
                        }
                        
                        .sub-page-footer form .form-group .form-control {
                            font-size: 13px;
                            border-radius: 0!important;
                            background-color: #F6FBFF;
                        }
                        
                        .sub-page-footer form button {
                            font-size: 13px;
                        }
                        
                        .sub-page-footer form button .btn,
                        .btn-lg {
                            border-radius: 0!important;
                        }
                        
                        .footer-copyright {
                            right: 0;
                            bottom: 0;
                            left: 0;
                            padding: 2rem 0rem 0rem 0rem;
                            background-color: #ffffff;
                            text-align: center;
                            color: #6162f7!important;
                        }
                        
                        .footer-copyright p {
                            color: #7FC4FD;
                            font-size: 13px;
                        }
                        
                        .footer-copyright p a {
                            text-decoration: none;
                            font-size: 13px;
                        }
                        
                        .footer-copyright ul li a {
                            color: #7FC4FD!important;
                            font-size: 18px;
                        }
                        
                        .footer-copyright .footer-nav ul li a {
                            color: #7FC4FD!important;
                            font-size: 13px;
                        }
                        
                        .footer-copyright p a i .fab {
                            color: #7FC4FD!important;
                        }
                        
                        .sub-page-footer .container-fluids {
                            margin: 0px auto;
                        }
                        /*=====================================================
=======
.sub-page-footer
{
  margin-bottom:0; 
  background-color:#F6FBFF; 
  padding-top:50px;
}
.sub-page-footer h5{
    color:#5271FF!important;
}
.sub-page-footer ul li a{
    color:#333333!important;
    text-decoration: none;
}
.sub-page-footer ul li a:hover{
    color:#5271FF!important;
}
.sub-page-footer form .form-group .form-control{
    font-size: 13px;
    border-radius: 0!important;
    background-color:#F6FBFF;
}
.sub-page-footer form button{
    font-size: 13px;    
}
.sub-page-footer form button .btn,.btn-lg{
    border-radius: 0!important;
}
.footer-copyright {
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2rem 0rem 0rem 0rem;
  background-color: #ffffff;
  text-align: center;
  color: #6162f7!important;  
}
.footer-copyright p{
  color:#5271FF;
  font-size: 13px;
}
.footer-copyright p a{
  text-decoration: none;
  font-size: 13px;
}
.footer-copyright ul li a{
  color:#5271FF !important;
  font-size: 18px;
}
.footer-copyright .footer-nav ul li a{
    color:#5271FF!important;
    font-size: 16px;
  }
.footer-copyright p a i .fab{
  color:#5271FF!important;
}
.sub-page-footer .container-fluids{
    margin: 0px auto;
}
/*=====================================================
>>>>>>> 814f5f1999002259c14d3e8df740ee4e0e1d6988
LOGIN PAGE CSS
=====================================================*/
                        
                        .user_card {
                            height: 500px;
                            width: 400px;
                            margin-top: 240px;
                            margin-bottom: auto;
                            background: #ffffff;
                            border: 1px solid #7FC4FD;
                            position: relative;
                            display: flex;
                            justify-content: center;
                            flex-direction: column;
                            padding: 10px;
                            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
                            -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
                            -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
                            border-radius: 20px;
                        }
                        
                        .brand_logo_container {
                            position: absolute;
                            height: 170px;
                            width: 170px;
                            top: -75px;
                            border-radius: 50%;
                            background: #ffffff;
                            border: 2px solid #7FC4FD;
                            padding: 10px;
                            text-align: center;
                        }
                        
                        .brand_logo {
                            margin-top: 10px;
                            height: 110px;
                            width: 110px;
                        }
                        
                        .form_container {
                            margin-top: 25px;
                        }
                        
                        .user_card input {
                            font-size: 18px;
                            padding: 10px 10px 10px 10px;
                            display: block;
                            width: 100%;
                            border: none;
                            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
                            background: none;
                            color: #eee;
                        }
                        
                        .user_card .input-group-text {
                            border: none;
                            background-color: transparent;
                        }
                        
                        .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
                            background-color: #7FC4FD !important;
                        }
                        
                        .user_card .btn-floating i {
                            display: inline-block;
                            width: inherit;
                            color: #fff;
                            text-align: center;
                            font-size: 1.25rem;
                            line-height: 47px;
                        }
                        
                        .user_card .btn-fb {
                            color: #fff;
                            background-color: #3b5998 !important;
                        }
                        
                        .user_card .btn-tw {
                            color: #fff;
                            background-color: #55acee !important;
                        }
                        
                        .user_card .btn-gplus {
                            color: #fff;
                            background-color: #dd4b39 !important;
                        }
                        
                        .user_card .btn-floating {
                            position: relative;
                            z-index: 1;
                            display: inline-block;
                            padding: 0;
                            margin: 10px;
                            overflow: hidden;
                            vertical-align: middle;
                            cursor: pointer;
                            border-radius: 50%;
                            -webkit-box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%);
                            box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%);
                            -webkit-transition: all .2s ease-in-out;
                            transition: all .2s ease-in-out;
                            width: 47px;
                            height: 47px;
                        }
                        
                        .shadow-effect {
                            background: #fff;
                            padding: 20px;
                            border-radius: 4px;
                            text-align: center;
                            border: 1px solid #ECECEC;
                            box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
                        }
                        
                        #customers-testimonials .shadow-effect p {
                            font-family: inherit;
                            font-size: 17px;
                            line-height: 1.5;
                            margin: 0 0 17px 0;
                            font-weight: 300;
                        }
                        
                        .testimonial-name {
                            margin: -17px auto 0;
                            display: table;
                            width: auto;
                            background: #3190E7;
                            padding: 9px 35px;
                            border-radius: 12px;
                            text-align: center;
                            color: #fff;
                            box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
                        }
                        
                        #customers-testimonials .item {
                            text-align: center;
                            padding: 50px;
                            margin-bottom: 80px;
                            opacity: .2;
                            -webkit-transform: scale3d(0.8, 0.8, 1);
                            transform: scale3d(0.8, 0.8, 1);
                            -webkit-transition: all 0.3s ease-in-out;
                            -moz-transition: all 0.3s ease-in-out;
                            transition: all 0.3s ease-in-out;
                        }
                        
                        #customers-testimonials .owl-item.active.center .item {
                            opacity: 1;
                            -webkit-transform: scale3d(1.0, 1.0, 1);
                            transform: scale3d(1.0, 1.0, 1);
                        }
                        
                        .owl-carousel .owl-item img {
                            transform-style: preserve-3d;
                            max-width: 90px;
                            margin: 0 auto 17px;
                        }
                        
                        #customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
                        #customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
                            background: #3190E7;
                            transform: translate3d(0px, -50%, 0px) scale(0.7);
                        }
                        
                        #customers-testimonials.owl-carousel .owl-dots {
                            display: inline-block;
                            width: 100%;
                            text-align: center;
                        }
                        
                        #customers-testimonials.owl-carousel .owl-dots .owl-dot {
                            display: inline-block;
                        }
                        
                        #customers-testimonials.owl-carousel .owl-dots .owl-dot span {
                            background: #3190E7;
                            display: inline-block;
                            height: 20px;
                            margin: 0 2px 5px;
                            transform: translate3d(0px, -50%, 0px) scale(0.3);
                            transform-origin: 50% 50% 0;
                            transition: all 250ms ease-out 0s;
                            width: 20px;
                        }
                        /*=====================================================
ABOUT US SECTION 1 CSS
=====================================================*/
                        
                        .about-main-banner {
                            padding: 90px 0px;
                        }
                        
                        .about-main-banner h1 {
                            font-size: 60px;
                            font-weight: bold;
                            padding-top: 100px;
                        }
                        
                        .about-main-banner h1 span {
                            color: #5271FF!important;
                        }
                        
                        .about-section1 {
                            padding: 40px 0px;
                        }
                        
                        .about-section1 h1 {
                            font-size: 60px;
                            font-weight: bold;
                        }
                        
                        .about-section1 h1 span {
                            color: #5271FF!important;
                        }
                        
                        .about-section1 .content h4 {
                            text-align: center;
                        }
                        
                        .about-section1 .card-body {
                            text-align: center;
                            color: #ffffff;
                            background-color: #5271FF!important;
                        }
                        /*=====================================================
PRODUCTS MAIN BANNER CSS
=====================================================*/
                        
                        .products-main-banner {
                            padding: 120px 0px;
                        }
                        
                        .products-main-banner .aboutus-bg {
                            background-image: url(../images/products_bg1.png);
                            background-repeat: no-repeat;
                        }
                        
                        .products-main-banner .right {
                            padding-right: 0px;
                            margin-right: 0px;
                        }
                        
                        .products-main-banner .left {
                            padding-left: 180px;
                            padding-top: 50px;
                        }
                        
                        @media only screen and (max-width: 600px) {
                            .products-main-banner {
                                padding: 40px 0px;
                            }
                            .products-main-banner .right {
                                padding-right: 0px;
                                margin-right: 0px;
                            }
                            .products-main-banner .left {
                                padding-left: 0px;
                                padding-top: 0px;
                            }
                        }
                        
                        .products-main-banner h1 {
                            font-size: 60px;
                            font-weight: bold;
                            padding-top: 100px;
                        }
                        
                        .products-main-banner h1 span {
                            color: #5271FF!important;
                        }
                        /*=====================================================
PRODUCTS SECTION 1 CSS
=====================================================*/
                        
                        .products-section1 {
                            background-color: #F6FBFF;
                            padding: 70px 0px;
                        }
                        
                        .products-section1 .h1 {
                            font-size: 60px;
                            font-weight: bold;
                        }
                        
                        .products-section1 h1 span {
                            color: #5271FF!important;
                        }
                        
                        .products-section1 h5 {
                            font-size: 30px;
                            padding-bottom: 10px;
                        }
                        /*=====================================================
PRODUCTS SECTION 2 CSS
=====================================================*/
                        
                        .products-section2 {
                            padding: 70px 0px;
                        }
                        
                        .products-section2 .h1 {
                            font-size: 60px!important;
                            font-weight: bold!important;
                            text-align: right;
                            padding-bottom: 5px;
                        }
                        
                        .products-section2 h1 span {
                            color: #5271FF!important;
                        }
                        
                        .products-section2 .mybtn-right {
                            text-align: right;
                        }
                        
                        .products-section2 h5 {
                            font-size: 30px;
                            text-align: right;
                            padding-bottom: 10px;
                        }
                        
                        @media only screen and (max-width: 600px) {
                            .products-section2 .h1 {
                                font-size: 60px!important;
                                font-weight: bold!important;
                                text-align: center;
                                padding-bottom: 5px;
                            }
                            .products-section2 h1 span {
                                color: #5271FF!important;
                            }
                            .products-section2 .mybtn-right {
                                text-align: center;
                            }
                            .products-section2 h5 {
                                font-size: 30px;
                                text-align: center;
                                padding-bottom: 10px;
                            }
                        }
                        /*=====================================================
MAIN BANNER CSS
=====================================================*/
                        
                        .insights-main-banner {
                            padding: 150px 0px 70px 0px;
                            /* margin-bottom: -50px;
                             background-color: cornsilk; */
                        }
                        
                        .insights-main-banner h1 {
                            padding-top: 70px;
                            font-size: 60px;
                            font-weight: bold;
                        }
                        
                        .insights-section1 h2 {
                            font-size: 40px;
                        }
                        
                        .insights-main-banner h1 span {
                            color: #5271FF!important;
                        }
                        
                        .insights-section1 {
                            padding: 70px 0px;
                        }
                        
                        .insights-section1 article {
                            margin-bottom: 2em;
                            padding-bottom: 2em;
                            border-bottom: 1px solid #ccc;
                        }
                        
                        .insights-section2 {
                            padding: 40px 0px 70px 0px;
                        }
                        
                        .insights-section2 p {
                            text-align: center;
                            font-size: 18px;
                        }
                        
                        .insights-section2 button a {
                            text-decoration: none;
                            color: #ffffff;
                        }
                        
                        @media (max-width: 786px) {
                            .insights-section1 {
                                padding: 40px 0px 0px 0px;
                            }
                            .insights-main-banner h1 {
                                padding-top: 70px;
                                font-size: 50px;
                                font-weight: bold;
                            }
                            .insights-section1 h2 {
                                font-size: 30px;
                            }
                            .insights-section2 {
                                padding: 90px 0px 0px 0px;
                            }
                        }
                        
                        #content {
                            padding: 90px 0px;
                        }
                        
                        #content .nav-previous {
                            float: left;
                        }
                        
                        #content .nav-next {
                            float: right;
                        }
                        
                        #content .content-left-wrap {
                            padding-top: 60px;
                        }
                        
                        #content .entry-content .card {
                            margin-bottom: 20px;
                        }
                        
                        #content .entry-content .caption-text {
                            font-weight: bolder;
                            font-size: 25px;
                            text-align: left;
                            padding-top: 10%;
                            color: #5271FF!important;
                        }
                        
                        #content .entry-content footer {
                            font-style: italic;
                        }
                        /* .insights-section2 .test1 {
                            background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .6)), url('../images/insight-subbg1.png');
                            height: 300px;
                            width: 200px;
                            background-size: cover;
                            position: relative;
                            line-height: 300px;
                            text-align: center;
                            margin-left: 500px;
                        }
                        
                        .insights-section2 .test1 p {
                            position: absolute;
                            color: white;
                            text-transform: uppercase;
                            bottom: 10px;
                            left: 180px;
                        } */
                        /*=====================================================
CONTACT-SECTION CSS
=====================================================*/
                        
                        .contact-section {
                            padding: 70px 0px;
                        }
                        
                        .contact-section .bg {
                            background-color: #5271FF;
                            color: #ffffff;
                            padding: 20px 0px;
                            margin: 50px 0px;
                        }
                        
                        .contact-section .form-control {
                            border-radius: 0px!important;
                        }
                        
                        .contact-section .btn {
                            border-radius: 0px!important;
                        }
                        /*=====================================================
SUBSCRIPTION CSS
=====================================================*/
                        
                        .subscription-main-section {
                            background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(242, 243, 243, 0.7), rgba(223, 221, 221, 0.7));
                            margin-top: 150px;
                            padding-bottom: 100px;
                            margin-right: 0px;
                            margin-left: 0px;
                        }
                        
                        .subscription-main-section h1 {
                            margin-top: 75px;
                            font-weight: bolder;
                            color: #5271FF;
                        }
                        
                        @-webkit-keyframes blinker {
                            from {
                                opacity: 1.0;
                            }
                            to {
                                opacity: 0.0;
                            }
                        }
                        /* section.pricing {
        background: #007bff;
        background: linear-gradient(to right, #0062E6, #33AEFF);
    } */
                        
                        .pricing h2 {
                            font-family: "Open Sans", sans-serif !important;
                            font-weight: bolder!important;
                            color: #121212;
                        }
                        
                        .pricing h2 span {
                            color: #3CA3FC;
                        }
                        
                        .pricing .line {
                            display: flex;
                            align-items: center;
                            text-align: center;
                        }
                        
                        .pricing .line::before,
                        .pricing .line::after {
                            content: "";
                            flex: 1;
                            border-bottom: 2px solid #e4e4e4;
                        }
                        
                        .pricing .line:not(:empty)::before {
                            margin-right: 1em;
                        }
                        
                        .pricing .line:not(:empty)::after {
                            margin-left: 1em;
                        }
                        
                        .pricing .line-industries {
                            margin-bottom: 50px;
                        }
                        
                        .pricing {
                            margin: 50px 0px;
                        }
                        
                        .pricing h1 {
                            margin: 75px 0px;
                            font-weight: bolder;
                            color: #5271FF;
                            text-align: center;
                        }
                        
                        .pricing .d-grid {
                            text-align: center;
                        }
                        
                        .pricing .card {
                            border: none;
                            border-radius: 1rem;
                            transition: all 0.2s;
                            box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
                        }
                        
                        .pricing hr {
                            margin: 1.5rem 0;
                        }
                        
                        .pricing .card-title {
                            margin: 0.5rem 0;
                            font-size: 0.9rem;
                            letter-spacing: .1rem;
                            font-weight: bold;
                        }
                        
                        .pricing .card-price {
                            font-size: 3rem;
                            margin: 0;
                        }
                        
                        .pricing .card-price .period {
                            font-size: 0.8rem;
                        }
                        
                        .pricing ul li {
                            margin-bottom: 1rem;
                        }
                        
                        .pricing .text-muted {
                            opacity: 0.7;
                        }
                        
                        .pricing .btn {
                            font-size: 80%;
                            border-radius: 0;
                            letter-spacing: .1rem;
                            font-weight: bold;
                            padding: 1rem 4rem;
                            opacity: 0.7;
                            transition: all 0.2s;
                        }
                        /* Hover Effects on Card */
                        
                        @media (min-width: 992px) {
                            .pricing .card:hover {
                                margin-top: -.25rem;
                                margin-bottom: .25rem;
                                box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
                            }
                        }
                        
                        .communicate-dashboard {
                            background-color: #2699FB;
                            /* margin-bottom: 50px; */
                            /* padding-top: 50px;*/
                            padding: 50px 0px 0px 0px;
                        }
                        
                        .communicate-dashboard h2 {
                            color: #ffffff;
                            margin-top: 100px;
                            font-weight: bolder;
                        }
                        
                        .communicate-dashboard button {
                            color: #2699FB!important;
                            font-weight: bold;
                        }
                        /*=====================================================
PAYMENT
=====================================================*/
                        
                        .payment-section1 {
                            padding: 150px 0px 50px 0px;
                        }
                        
                        .payment-section1 img {
                            float: left;
                            margin-right: 20px;
                        }
                        
                        .payment-section1 .form-control {
                            margin-top: 10px!important;
                        }
                        
                        .payment-section1 .mar {
                            margin-top: 10px!important;
                        }
                        
                        .payment-section1 .form-control-pad {
                            height: 50px;
                        }
                        
                        #before-select {
                            font-size: 30px;
                            color: #2699FB!important;
                        }
                        
                        select {
                            /* border: 1px solid gray;
                            background: transparent;
                            background-color: blue;
                            -webkit-appearance: none;
                            -moz-appearance: none;
                            appearance: none; */
                            width: 180px;
                            padding-top: 0px;
                            background-size: 20px;
                            color: #ffffff;
                            font-size: 30px;
                        }
                        
                        select option {
                            color: #2699FB!important;
                            background: #ffffff;
                        }
                        
                        .payment-section1 .h3 {
                            color: #2699FB!important;
                            float: left;
                            margin-right: 50%;
                        }
                        /* .payment-section2 {
                            padding: 0px 0px 10px 0px;
                        }
                        
                        .payment-section2 .h3 {
                            float: right;
                            margin-right: 50%;
                        } */
                        
                        #bg-div {
                            margin: 0px auto;
                            /* margin-top: 100px;
                            margin-bottom: 100px */
                        }
                        
                        #bg-div .imag {
                            /* color: #2699FB!important; */
                            float: left;
                            margin-left: 10px;
                            margin-top: 10px;
                            /* margin-right: 50%; */
                        }
                        
                        #bg-div .h3 {
                            /* color: #2699FB!important; */
                            /* float: left;
                            margin-left: 10px; */
                            margin-top: 25px;
                            /* margin-right: 50%; */
                        }
                        
                        #bg-div #wrapper {
                            margin-top: -16px!important;
                        }
                        
                        #border-btm {
                            padding-bottom: 20px;
                            margin-bottom: 0px;
                            box-shadow: 0px 35px 2px -35px lightgray
                        }
                        
                        .btn-success {
                            color: #fff!important;
                            background-color: #2699FB !important;
                            border-color: #2699FB !important;
                        }
                        
                        #test {
                            margin-top: 0px;
                            margin-bottom: 40px;
                            border: 1px solid #FFE082;
                            border-radius: 0.25rem;
                            width: 60px;
                            height: 30px;
                            background-color: #FFECB3
                        }
                        
                        .active1 {
                            color: #2699FB !important;
                            font-weight: bold
                        }
                        
                        .bar4 {
                            width: 35px;
                            height: 5px;
                            background-color: #ffffff;
                            margin: 6px 0
                        }
                        
                        .list-group .tabs {
                            color: #000000
                        }
                        
                        #menu-toggle {
                            height: 50px
                        }
                        
                        #new-label {
                            padding: 2px;
                            font-size: 10px;
                            font-weight: bold;
                            background-color: red;
                            color: #ffffff;
                            border-radius: 5px;
                            margin-left: 5px
                        }
                        
                        #sidebar-wrapper {
                            min-height: 100vh;
                            margin-left: -15rem;
                            -webkit-transition: margin .25s ease-out;
                            -moz-transition: margin .25s ease-out;
                            -o-transition: margin .25s ease-out;
                            transition: margin .25s ease-out
                        }
                        
                        #sidebar-wrapper .sidebar-heading {
                            padding: 0.875rem 1.25rem;
                            font-size: 1.2rem
                        }
                        
                        #sidebar-wrapper .list-group {
                            /* width: 15rem */
                        }
                        
                        #page-content-wrapper {
                            min-width: 100vw;
                            padding-left: 20px;
                            padding-right: 20px
                        }
                        
                        #wrapper.toggled #sidebar-wrapper {
                            margin-left: 0
                        }
                        
                        .list-group-item.active {
                            z-index: 2;
                            color: #fff;
                            background-color: #fff !important;
                            border-color: #fff !important
                        }
                        
                        @media (max-width: 768px) {
                            #page-content-wrapper {
                                min-width: 100vw;
                                padding-left: 109px;
                                /* padding-right: 20px; */
                            }
                            #bg-div .h3 {
                                /*color: #2699FB!important; */
                                /* float: left; */
                                margin-left: 10px;
                                /* margin-top: 25px; */
                                /* margin-right: 50%; */
                            }
                        }
                        
                        @media (min-width: 768px) {
                            #page-content-wrapper {
                                min-width: 100vw;
                                padding-left: 20px;
                                padding-right: 20px;
                            }
                            #sidebar-wrapper {
                                overflow-x: hidden;
                                margin-left: 0
                            }
                            #page-content-wrapper {
                                min-width: 0;
                                width: 100%
                            }
                            #wrapper.toggled #sidebar-wrapper {
                                margin-left: -15rem;
                                display: none
                            }
                        }
                        
                        .card0 {
                            margin-top: 10px;
                            margin-bottom: 10px
                        }
                        
                        .top-highlight {
                            color: #2699FB;
                            font-weight: bold;
                            font-size: 20px
                        }
                        
                        .form-card input,
                        .form-card textarea {
                            padding: 10px 15px 5px 15px;
                            border: none;
                            border: 1px solid lightgrey;
                            border-radius: 6px;
                            margin-bottom: 25px;
                            margin-top: 2px;
                            width: 100%;
                            box-sizing: border-box;
                            font-family: arial;
                            color: #2C3E50;
                            font-size: 14px;
                            letter-spacing: 1px
                        }
                        
                        .form-card input:focus,
                        .form-card textarea:focus {
                            -moz-box-shadow: 0px 0px 0px 1.5px skyblue !important;
                            -webkit-box-shadow: 0px 0px 0px 1.5px skyblue !important;
                            box-shadow: 0px 0px 0px 1.5px skyblue !important;
                            font-weight: bold;
                            border: 1px solid skyblue;
                            outline-width: 0
                        }
                        
                        input.btn-success {
                            height: 50px;
                            color: #ffffff;
                            opacity: 0.9
                        }
                        
                        #below-btn a {
                            font-weight: bold;
                            color: #000000
                        }
                        
                        .input-group {
                            position: relative;
                            width: 100%;
                            overflow: hidden
                        }
                        
                        .input-group input {
                            position: relative;
                            height: 90px;
                            margin-left: 1px;
                            margin-right: 1px;
                            border-radius: 6px;
                            /* padding-top: 30px;
                            padding-left: 25px */
                        }
                        
                        #bg-div .input-group label {
                            position: absolute;
                            height: 24px;
                            background: none;
                            border-radius: 6px;
                            line-height: 48px;
                            font-size: 15px;
                            color: gray;
                            width: 100%;
                            font-weight: 100;
                            padding-left: 15px;
                        }
                        
                        input:focus+label {
                            color: #2699FB
                        }
                        
                        #qr {
                            margin-bottom: 150px;
                            margin-top: 50px
                        }
                        /*=====================================================
FAQ CSS
=====================================================*/
                        
                        .faq-main-section {
                            /* position: relative;
                            background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(24, 132, 233, 0.7), rgba(24, 132, 233, 0.7));
                            height: 500px;
                            background-size: cover; */
                            background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(242, 243, 243, 0.7), rgba(223, 221, 221, 0.7));
                            margin-top: 150px;
                            padding-bottom: 100px;
                            margin-right: 0px;
                            margin-left: 0px;
                        }
                        
                        .faq-main-section h1 {
                            margin-top: 75px;
                            font-weight: bolder;
                            color: #5271FF;
                        }
                        
                        .faq-main-section h1 span {
                            color: rgba(0, 0, 0);
                        }
                        /* .faq-main-section i {
                            font-size: 35px;
                            color: #fff;
                            position: absolute;
                            left: 50%;
                            bottom: 15px;
                            transform: translateX(-50%);
                        }
                        
                        .faq-main-section .section-part {
                            color: #fff;
                            position: absolute;
                            top: 50%;
                            transform: translateY(-50%);
                        }
                        
                        @-webkit-keyframes blinker {
                            from {
                                opacity: 1.0;
                            }
                            to {
                                opacity: 0.0;
                            }
                        } */
                        
                        .faq-section {
                            padding: 100px 0px;
                        }
                        
                        .faq-section .faq-cap-section .accordion {
                            background-color: transparent;
                            border-bottom: 1px solid #e4e4e4!important;
                            /* color: #5271FF; */
                            cursor: pointer;
                            padding: 25px;
                            width: 100%;
                            border: none;
                            text-align: left;
                            outline: none;
                            font-weight: bold;
                            font-size: 15px;
                            transition: 0.4s;
                        }
                        /* .ind-section2 .active,
                      .ind-section2 .accordion:hover {
                          background-color: #ccc; 
                      }*/
                        
                        .faq-section .faq-cap-section .accordion:after {
                            content: '\002B';
                            /* color: #5271FF; */
                            font-weight: bolder;
                            font-size: 20px;
                            float: right;
                            margin-left: 5px;
                        }
                        
                        .faq-section .faq-cap-section .active:after {
                            content: "\2212";
                        }
                        
                        .faq-section .faq-cap-section .panel {
                            padding: 0 18px;
                            background-color: white;
                            max-height: 0;
                            overflow: hidden;
                            transition: max-height 0.2s ease-out;
                        }
                        
                        .contact-section {
                            padding: 70px 0px;
                        }
                        
                        .contact-section .bg {
                            background-color: #5271FF;
                            color: #ffffff;
                            padding: 20px 0px;
                            margin: 50px 0px;
                        }
                        
                        .contact-section .form-control {
                            border-radius: 0px!important;
                        }
                        
                        .contact-section .btn {
                            border-radius: 0px!important;
                        }
                        
                        .leftshadow {
                            box-shadow: 1px 1px 10px 1px #eee;
                            border-radius: 85px 0px 0px 85px;
                        }
                        
                        .rightshadow {
                            box-shadow: 1px 1px 10px 1px #eee;
                            border-radius: 0px 85px 85px 0px;
                        }