﻿  /*--------------------------------------------------------------
            # General
            --------------------------------------------------------------*/
            body {
                font-family: "Roboto", sans-serif;
                color: #444444;
            }

            a {
                color: #2487ce;
            }

                a:hover {
                    color: #469fdf;
                    text-decoration: none;
                }

            h1, h2, h3, h4, h5, h6 {
                font-family: "Roboto", sans-serif;
                color: #2487ce;
                font-size: 40px;
            }

            ul.maintxtbox {
                list-style-type: none;
            }

            }
            /*--------------------------------------------------------------
            # Back to top button
            --------------------------------------------------------------*/
            .back-to-top {
                position: fixed;
                display: none;
                right: 15px;
                bottom: 15px;
                z-index: 99999;
            }

                .back-to-top i {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 24px;
                    width: 40px;
                    height: 40px;
                    border-radius: 4px;
                    background: #2487ce;
                    color: #fff;
                    transition: all 0.4s;
                }

                    .back-to-top i:hover {
                        background: #3e9bdd;
                        color: #fff;
                    }



            /*--------------------------------------------------------------
            # Header
            --------------------------------------------------------------*/
            #header {
                transition: all 0.5s;
                background: #004287;
                z-index: 997;
                padding: 15px 0;
                border-bottom: 0px solid #e6f2fb;
            }

                #header.header-scrolled {
                    border-color: #004287;
                    box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
                }

                #header .logo {
                    font-size: 28px;
                    margin: 0;
                    padding: 0;
                    line-height: 1;
                    font-weight: 300;
                    letter-spacing: 0.5px;
                    font-family: "Roboto", sans-serif;
                }

                    #header .logo a {
                        color: #16507b;
                    }

                    #header .logo img {
                        max-height: 40px;
                    }

            .unemoji {
                width: 20%;
                margin: 0 auto;
                display: block;
            }

            .protxt {
                padding: 0px;
                font-size: 25px;
                color: #fff;
            }

            .protxth {
                padding: 0px;
                font-size: 30px;
                color: #333;
            }

            @media (max-width: 1024px) {
                .protxt {
                    padding: 0px 83px;
                }
            }

            @media (max-width: 992px) {
                #header .logo {
                    font-size: 28px;
                }

                .protxt {
                    padding: 0px;
                }

                h1, h2, h3, h4, h5, h6 {
                    font-family: "Roboto", sans-serif;
                    color: #2487ce;
                    font-size: 36px;
                }

                .bgmain {
                    background-size: 1200px !important;
                }
            }

            @media (max-width: 767px) {

                .unemoji {
                    width: 50%;
                    margin: 0 auto;
                    display: block;
                }

                .protxt {
                    padding: 0px;
                }

                h1, h2, h3, h4, h5, h6 {
                    font-family: "Roboto", sans-serif;
                    color: #2487ce;
                    font-size: 30px;
                    line-height: 1.3;
                    margin-top: 10px;
                }

                ul.maintxtbox {
                    list-style-type: none;
                    padding-inline-start: 0px;
                }

                .bgmain {
                    background: none !important;
                    padding-top: 65px !important;
                }
            }

            @media (max-width: 640px) {

                .unemoji {
                    width: 50%;
                    margin: 0 auto;
                    display: block;
                }

                .protxt {
                    padding: 0px;
                    font-size: 20px;
                }

                .formcontainer {
                    margin: 0px 0px;
                }

                .protxth {
                    font-size: 27px;
                }

                h1, h2, h3, h4, h5, h6 {
                    font-family: "Roboto", sans-serif;
                    color: #2487ce;
                    font-size: 26px;
                    line-height: 1.3;
                    margin-top: 10px;
                }
            }

            @media (max-width: 480px) {
                h1, h2, h3, h4, h5, h6 {
                    font-family: "Roboto", sans-serif;
                    color: #2487ce;
                    font-size: 30px;
                    line-height: 1.3;
                    margin-top: 10px;
                }
            }

            @media (max-width: 360px) {
                h1, h2, h3, h4, h5, h6 {
                    font-family: "Roboto", sans-serif;
                    color: #2487ce;
                    font-size: 26px;
                    line-height: 1.3;
                    margin-top: 10px;
                }
            }
            /*--------------------------------------------------------------
            # 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: 14px 0 14px 28px;
                }

            .nav-menu a {
                display: block;
                position: relative;
                color: #124265;
                transition: 0.3s;
                font-size: 14px;
                font-family: "Open Sans", sans-serif;
            }

                .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
                    color: #2487ce;
                }

            .nav-menu .drop-down ul {
                display: block;
                position: absolute;
                left: 15px;
                top: calc(100% + 30px);
                z-index: 99;
                opacity: 0;
                visibility: hidden;
                padding: 10px 0;
                background: #fff;
                box-shadow: 0px 0px 20px rgba(18, 66, 101, 0.1);
                transition: 0.3s;
                border-radius: 5px;
            }

            .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;
                font-weight: 500;
                text-transform: none;
                color: #124265;
            }

                .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
                    color: #2487ce;
                }

            .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;
                }

            @media (max-width: 1366px) {
                .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";
                }
            }




            /*--------------------------------------------------------------
            # Sections General
            --------------------------------------------------------------*/
            section {
                padding: 20px 0;
            }

            .section-bg {
                background-color: #f8fbfe;
            }

            .section-title {
                text-align: center;
                padding-bottom: 30px;
            }

                .section-title h2 {
                    font-size: 32px;
                    font-weight: bold;
                    text-transform: uppercase;
                    margin-bottom: 20px;
                    padding-bottom: 0;
                    color: #124265;
                }

                .section-title p {
                    margin-bottom: 0;
                    font-size: 14px;
                    color: #919191;
                }

            /*--------------------------------------------------------------
            # MAIN
            --------------------------------------------------------------*/
            .bgmain {
                padding: 65px 0px 0px 65px;
                background-image: url(/Content/CxoUtmTracking/images/Digital_Account_Opening.jpg);
                /*padding:120px 120px;*/
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                margin-top: 30px;
            }

            .open {
                margin: 145px 27px 0px;
                text-align: center;
                font-weight: 700;
                display: block;
                color: #333;
                font-size: 42px;
            }

            .formcontainer {
                margin: 40px 0px;
            }

            .dtimg {
                display: block !important;
                margin: 0 auto;
                width: 76px;
            }

            .stepimg {
                display: inline-block !important;
            }

            .btn-lg, .btn-group-lg > .btn {
                padding: 0.5rem 1rem;
                font-size: 1.25rem;
                line-height: 1.5;
                border-radius: 0.3rem;
                padding: 7px 15px !important;
                margin-bottom: 10px;
            }

            .startj {
                display: inline-block;
                padding: 15px;
                /*margin: 35px;*/
                height: 50px;
                min-width: 90px;
                width: 100%;
                background: #e30011;
                border: none;
                outline: none;
                color: white;
                font-family: inherit;
                font-weight: 400;
                font-size: 20px;
                border-radius: 3px;
                box-shadow: 0 5px 0px #91000b;
                border-bottom: 2px solid #91000b;
                float: right;
            }

                .startj:hover {
                    background: #e30011;
                    box-shadow: 0 4px 1px #91000b;
                    border-bottom: 2px solid #e30011;
                    transition: all 0.1s ease-in;
                }

                .startj:active {
                    transform: translateY(4px);
                    border-bottom-width: 2px;
                    box-shadow: none;
                }

            .dtxt {
                width: 90%;
                margin: 0 auto;
                font-size: 20px;
                text-align: center;
                padding: 0px 40px 70px;
            }

            .cube {
                margin: 0px auto 30px;
                width: 66%;
                height: 4px;
                border-radius: 5px;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
                background-position: 0 0, 0 100%;
                background-repeat: no-repeat;
                -webkit-background-size: 100% 20px;
                -moz-background-size: 100% 20px;
                background-size: 100% 20px;
                background-image: -webkit-linear-gradient(left, #003b90 0%, #003b90 100%), -webkit-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: -moz-linear-gradient(left, #003b90 0%, #003b90 100%), -moz-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: -o-linear-gradient(left, #003b90 0%, #e30011 100%), -o-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: linear-gradient(to right, #003b90 80%, #e30011 100%), linear-gradient(to right, #003b90 80%, #e30011 100%);
            }

            .faqcube {
                margin: 0px auto 30px;
                width: 10%;
                height: 4px;
                border-radius: 5px;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
                background-position: 0 0, 0 100%;
                background-repeat: no-repeat;
                -webkit-background-size: 100% 20px;
                -moz-background-size: 100% 20px;
                background-size: 100% 20px;
                background-image: -webkit-linear-gradient(left, #003b90 0%, #003b90 100%), -webkit-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: -moz-linear-gradient(left, #003b90 0%, #003b90 100%), -moz-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: -o-linear-gradient(left, #003b90 0%, #e30011 100%), -o-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: linear-gradient(to right, #003b90 80%, #e30011 100%), linear-gradient(to right, #003b90 80%, #e30011 100%);
            }

            .planscube {
                margin: 0px auto 30px;
                width: 60%;
                height: 4px;
                border-radius: 5px;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
                background-position: 0 0, 0 100%;
                background-repeat: no-repeat;
                -webkit-background-size: 100% 20px;
                -moz-background-size: 100% 20px;
                background-size: 100% 20px;
                background-image: -webkit-linear-gradient(left, #003b90 0%, #003b90 100%), -webkit-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: -moz-linear-gradient(left, #003b90 0%, #003b90 100%), -moz-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: -o-linear-gradient(left, #003b90 0%, #e30011 100%), -o-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: linear-gradient(to right, #003b90 80%, #e30011 100%), linear-gradient(to right, #003b90 80%, #e30011 100%);
            }

            .accountcube {
                margin: 0px auto 30px;
                width: 45%;
                height: 4px;
                border-radius: 5px;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
                background-position: 0 0, 0 100%;
                background-repeat: no-repeat;
                -webkit-background-size: 100% 20px;
                -moz-background-size: 100% 20px;
                background-size: 100% 20px;
                background-image: -webkit-linear-gradient(left, #003b90 0%, #003b90 100%), -webkit-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: -moz-linear-gradient(left, #003b90 0%, #003b90 100%), -moz-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: -o-linear-gradient(left, #003b90 0%, #e30011 100%), -o-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: linear-gradient(to right, #003b90 80%, #e30011 100%), linear-gradient(to right, #003b90 80%, #e30011 100%);
            }

            .advantagecube {
                margin: 0px auto 30px;
                width: 75%;
                height: 4px;
                border-radius: 5px;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
                background-position: 0 0, 0 100%;
                background-repeat: no-repeat;
                -webkit-background-size: 100% 20px;
                -moz-background-size: 100% 20px;
                background-size: 100% 20px;
                background-image: -webkit-linear-gradient(left, #003b90 0%, #003b90 100%), -webkit-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: -moz-linear-gradient(left, #003b90 0%, #003b90 100%), -moz-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: -o-linear-gradient(left, #003b90 0%, #e30011 100%), -o-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: linear-gradient(to right, #003b90 80%, #e30011 100%), linear-gradient(to right, #003b90 80%, #e30011 100%);
            }

            .dtacube {
                margin: 0px auto 30px;
                width: 52%;
                height: 4px;
                border-radius: 5px;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
                background-position: 0 0, 0 100%;
                background-repeat: no-repeat;
                -webkit-background-size: 100% 20px;
                -moz-background-size: 100% 20px;
                background-size: 100% 20px;
                background-image: -webkit-linear-gradient(left, #003b90 0%, #003b90 100%), -webkit-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: -moz-linear-gradient(left, #003b90 0%, #003b90 100%), -moz-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: -o-linear-gradient(left, #003b90 0%, #e30011 100%), -o-linear-gradient(left, #003b90 80%, #e30011 100%);
                background-image: linear-gradient(to right, #003b90 80%, #e30011 100%), linear-gradient(to right, #003b90 80%, #e30011 100%);
            }

            .dta {
                color: #003b90;
                font-weight: 600;
                font-size: 37px;
                margin: 0px 0px 0px;
            }

            .dtasub {
                display: block;
                font-size: 20px;
                font-weight: 600;
                color: #000000;
                padding: 10px;
                vertical-align: middle;
                text-align: center;
            }

            .pb {
                padding-bottom: 40px;
            }

            .bgadvantage {
                background: #fafafa;
                background-image: url(/Content/CxoUtmTracking/images/advantage_bg.jpg);
                padding: 50px 100px;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                margin-top: 30px;
            }

                .bgadvantage p {
                    width: 80%;
                    margin: 0 auto;
                    text-align: center;
                    padding-bottom: 20px;
                }

            .advantagth {
                font-size: 20px;
                font-weight: 600;
                color: #000000;
                padding: 10px 0px 0px;
                vertical-align: middle;
            }

            .plans {
                background: #fafafa;
                padding: 50px 100px;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                margin-top: 30px;
            }

            .plansth {
                font-size: 20px;
                font-weight: 600;
                color: #000000;
                padding: 10px 0px 0px;
                vertical-align: middle;
            }

            .faq {
                background: #fff;
                padding: 50px 100px;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                margin-top: 30px;
            }

            .account {
                background: #fff;
                padding: 50px 100px;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                margin-top: 30px;
            }

            .accordion .fa {
                margin-right: 0.5rem;
            }

            .faqtxt {
                float: right;
                width: 100%;
                text-align: left;
                font-size: 21px;
                color: #333333;
                font-weight: 600;
            }

            .card-header {
                background-color: #fff;
            }

            .btn:focus, .btn.focus {
                outline: 0;
                box-shadow: 0 0 0 0.0rem rgba(0, 123, 255, 0.25);
            }

            .card-body {
                text-align: justify;
            }

            .steps {
                display: inline-block;
                font-size: 70px;
                font-weight: 600;
                color: #74c4f3;
                padding: 0px 0px 0px 24px;
                vertical-align: baseline;
            }

            .account p {
                font-size: 20px;
                text-align: center;
            }

            @media (max-width: 1024px) {
                .dtasub {
                    display: block;
                    font-size: 15px;
                }

                .bgmain {
                    padding: 40px 0px 0px;
                }

                .open {
                    margin: 145px 8px 0px;
                }

                .bgadvantage {
                    padding: 50px 0px;
                }

                .faq {
                    padding: 50px 0px;
                }

                .advantagecube {
                    margin: 0px auto 30px;
                    width: 88%;
                }

                .dtacube {
                    margin: 0px auto 30px;
                    width: 80%;
                }
            }

            @media (max-width: 640px) {
                .bgmain {
                    background: #f8fbfe;
                    background-image: url(~/Content/CxoUtmTracking/~/Content/CxoUtmTracking/images/Digital_Account_Opening.jpg);
                    padding: 0px;
                    background-size: cover;
                    background-position: center;
                    background-repeat: no-repeat;
                    margin-top: 30px;
                }

                .open {
                    margin: 55px 3px 0px;
                    text-align: center;
                    font-weight: 700;
                    display: block;
                    color: #333;
                    font-size: 36px;
                }

                .formcontainer {
                    margin: 0px 0px;
                }

                .dtimg {
                    display: block !important;
                    width: 76px;
                    margin: 0 auto;
                }

                .dtasub {
                    display: block;
                    text-align: center;
                    font-size: 21px;
                }

                .pb {
                    padding-bottom: 0px;
                }

                .bgadvantage {
                    padding: 50px 0px;
                }

                .plans {
                    padding: 50px 0px;
                }

                .faq {
                    padding: 50px 0px;
                }

                .dta {
                    font-size: 31px;
                    margin: 0px 0px 0px;
                }

                .cube {
                    width: 100%;
                }

                .dtxt {
                    padding-bottom: 30px;
                }

                .account {
                    padding: 50px 0px;
                }

                .faqcube {
                    width: 30%;
                }

                .accountcube {
                    width: 95%;
                }

                .advantagecube {
                    width: 95%;
                }

                .dtacube {
                    width: 95%;
                }
            }
            /*--------------------------------------------------------------
            # Breadcrumbs
            --------------------------------------------------------------*/
            .breadcrumbs {
                padding: 15px 0;
                background: #f8fbfe;
                min-height: 40px;
                margin-top: 70px;
            }

            @media (max-width: 992px) {
                .breadcrumbs {
                    margin-top: 62px;
                }
            }

            .breadcrumbs h2 {
                font-size: 24px;
                font-weight: 300;
            }

            .img-responsive {
                display: block;
                max-width: 100%;
                height: auto;
            }

            /*--------------------------------------------------------------
            # Footer
            --------------------------------------------------------------*/
            #footer {
                color: #ffffff;
                font-size: 18px;
                background: #025296;
                box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
            }


                #footer .credits {
                    padding-top: 5px;
                    font-size: 13px;
                    color: #ffffff;
                }

            .btn-grad {
                margin: 0 auto;
                padding: 10px 80px;
                text-align: center;
                text-transform: uppercase;
                transition: 0.5s;
                background-size: 200% auto;
                color: white;
                /*text-shadow: 0px 0px 10px rgba(0,0,0,0.2);*/
                box-shadow: 0 0 20px #eee;
                border-radius: 10px;
                display: block;
                background-image: linear-gradient(to right, #004287 0%, #F11712 51%, #004287 100%);
                background-image: -webkit-linear-gradient(to right, #004287 0%, #F11712 51%, #004287 100%);
                background-image: -moz-linear-gradient(to right, #004287 0%, #F11712 51%, #004287 100%);
                background-image: -ms-linear-gradient(to right, #004287 0%, #F11712 51%, #004287 100%);
                background-image: -o-linear-gradient(to right, #004287 0%, #F11712 51%, #004287 100%);
            }

                .btn-grad:hover {
                    background-position: right center;
                    color: #ffffff;
                }

            .modal-body {
                position: relative;
                -ms-flex: 1 1 auto;
                flex: 1 1 auto;
                padding: 0rem;
            }

            .close {
                float: right;
                font-size: 1.5rem;
                font-weight: 700;
                line-height: 1;
                color: #fff;
                text-shadow: 0 0px 0 #fff;
                opacity: 1;
                */;
            }

                .close:hover {
                    color: #fff;
                    text-decoration: none;
                }

            .modal-content {
                position: relative;
                display: -ms-flexbox;
                display: flex;
                -ms-flex-direction: column;
                flex-direction: column;
                width: 100%;
                pointer-events: auto;
                background-color: #fff0;
                background-clip: padding-box;
                border: 0px solid rgba(0,0,0,.2);
                border-radius: .3rem;
                outline: 0;
            }

            button.close {
                padding: 0;
                background-color: transparent;
                border: 0;
            }

            button:focus {
                outline: 0px dotted;
                outline: 0px auto -webkit-focus-ring-color;
            }