    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Lato';
        /* font-family: poppins, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    }
    
    body {
        background-color: #ecececc2 !important;
        font-family: 'Lato';
    }
    
    .header_up {
        height: 75px;
        width: 100vw;
        display: flex;
        position: fixed;
        z-index: 10;
        padding-top: 14px;
        background-color: #ffffff;
        box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    }
    /* Styling Logo*/
    
    .logo {
        text-align: left;
        width: 240px;
        margin-top: -17px;
    }
    
    .logo_1 {
        text-align: center;
        width: 20vw;
    }
    
    .logo img {
        width: 100%;
    }
    
    .logo_1 img {
        height: auto;
        width: 33%;
    }
    
    .logo_2 img {
        height: auto;
        width: 12%;
        margin-top: 40px;
    }
    
    .logo_2 {
        text-align: center;
        width: 20vw;
    }
    /* Styling Navigation Links*/
    
    .nav-links_1 {
        width: auto;
        display: flex;
        margin-left: auto;
        padding: 0px 4.7vw;
        justify-content: space-evenly;
        align-items: center;
        text-transform: uppercase;
        list-style: none;
        font-weight: 600;
    }
    
    .nav-links_1 li a {
        margin: 0 0.7vw;
        text-decoration: none;
        transition: all ease-in-out 350ms;
        padding: 10px;
    }
    
    .nav-links_1 li a:hover {
        color: #000;
        background-color: #fff;
        padding: 10px;
        border-radius: 50px;
    }
    
    .nav-links_1 li {
        position: relative;
    }
    
    .nav-links_1 li a:hover::before {
        width: 80%;
    }
    
    .img_top_section {
        height: 100%;
        width: 100%;
    }
    
    .appstore {
        display: flex;
    }
    /*Buttons Styling*/
    
    .header-button {
        padding: 7px 20px 7px 20px;
        margin-left: 2vw;
        font-size: 1rem;
        cursor: pointer;
        background-color: transparent;
        border: 1.5px solid #f2f5f7;
        border-radius: 10px;
        color: #000;
        font-weight: 700;
        background: #59f2db;
        text-decoration: none;
    }
    
    .header-button:hover {
        color: #fff;
        background-color: #50d7c3;
        border: 1.5px solid #ffffff;
        transition: all ease-in-out 350ms;
    }
    
    .header-button_2 {
        padding: 8px 25px 8px 25px;
        margin-top: 15px;
        margin-bottom: 15px;
        font-size: 1rem;
        cursor: pointer;
        background-color: transparent;
        border: 1.5px solid #f2f5f7;
        border-radius: 5px;
        color: #fff;
        background: #1b4983;
        border: 2px solid #1b4983;
        text-decoration: none;
    }
    
    .header-button_2:hover {
        color: #fff;
        background-color: #0a2e2e;
        border: 1.5px solid #ffffff;
        transition: all ease-in-out 350ms;
    }
    /*Navigation Icon Styling*/
    
    .hamburger div {
        width: 30px;
        height: 3px;
        background: #000000;
        margin: 5px;
        transition: all 0.3s ease;
    }
    
    .hamburger {
        display: none;
    }
    /*Responsive Adding Media Queries*/
    
    @media screen and (max-width: 800px) {
        .header_up {
            position: fixed;
            z-index: 3;
        }
        .hamburger {
            display: block;
            position: absolute;
            cursor: pointer;
            right: 5%;
            top: 50%;
            transform: translate(-5%, -50%);
            z-index: 2;
            transition: all 0.7s ease;
        }
        .nav-links_1 {
            background: #ffffff;
            position: fixed;
            margin-top: -10px;
            opacity: 1;
            height: 100vh;
            width: 100%;
            flex-direction: column;
            clip-path: circle(50px at 90% -20%);
            -webkit-clip-path: circle(50px at 90% -10%);
            transition: all 1s ease-out;
            pointer-events: none;
        }
        .nav-links_1.open {
            clip-path: circle(1000px at 90% -10%);
            -webkit-clip-path: circle(1000px at 90% -10%);
            pointer-events: all;
        }
        .nav-links_1 li {
            opacity: 0;
        }
        .nav-links_1 li:nth-child(1) {
            transition: all 0.5s ease 0.2s;
        }
        .nav-links_1 li:nth-child(2) {
            transition: all 0.5s ease 0.4s;
        }
        .nav-links_1 li:nth-child(3) {
            transition: all 0.5s ease 0.6s;
        }
        .nav-links_1 li:nth-child(4) {
            transition: all 0.5s ease 0.7s;
        }
        .nav-links_1 li:nth-child(5) {
            transition: all 0.5s ease 0.8s;
        }
        .nav-links_1 li:nth-child(6) {
            transition: all 0.5s ease 0.9s;
            margin: 0;
        }
        .nav-links_1 li:nth-child(7) {
            transition: all 0.5s ease 1s;
            margin: 0;
        }
        li.fade {
            opacity: 1 !important;
        }
        /* Navigation Bar Icon on Click*/
        .toggle .bars1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        .toggle .bars2 {
            transition: all 0s ease;
            width: 0;
        }
        .toggle .bars3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }
    }
    
    .header_font {
        color: #1b4983;
        font-size: 19px;
    }
    
    .section_sides {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    
    .sec_top {
        margin-top: 60px;
    }
    
    .sec_top_2 {
        margin-top: 45px;
    }
    
    .text_line {
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        padding-top: 10px;
    }
    
    .text_line_2 {
        color: #1b4983;
        font-weight: 700;
    }
    
    .text_line_3 {
        color: #1b4983;
        font-size: 40px !important;
        margin-top: 130px;
        font-family: 'Lato';
    }
    
    .text_line_4 {
        color: #1b4983;
        text-align: center;
        font-size: 32px !important;
        margin-top: 30px;
    }
    
    .text_line_7 {
        color: #1b3383;
        font-weight: 500;
        font-size: 55px !important;
    }
    
    .text_line_8 {
        color: #1b4983;
        font-weight: 700;
        font-size: 22px !important;
    }
    
    .text_line_9 {
        color: #1b4983;
        font-size: 39px !important;
        line-height: 50px;
    }
    
    .text_second {
        color: #1b4983;
        font-size: 22px;
        font-family: 'Lato';
    }
    
    .text_third {
        color: #1b4983;
        font-size: 20px;
        text-align: center;
    }
    
    .line_background {
        background: #00a38f;
    }
    
    .playstore {
        width: 41%;
        margin-left: 20px;
    }
    
    .rate {
        float: left;
        height: 46px;
        padding: 0 10px;
    }
    
    .rate:not(:checked)>input {
        position: absolute;
        top: -9999px;
    }
    
    .rate:not(:checked)>label {
        float: right;
        width: 1em;
        overflow: hidden;
        white-space: nowrap;
        cursor: pointer;
        font-size: 30px;
        color: #ffc700;
    }
    
    .rate:not(:checked)>label:before {
        content: '★ ';
    }
    
    .rate>input:checked~label {
        color: #ffc700;
    }
    
    .rate:not(:checked)>label:hover,
    .rate:not(:checked)>label:hover~label {
        color: #deb217;
    }
    
    .rate>input:checked+label:hover,
    .rate>input:checked+label:hover~label,
    .rate>input:checked~label:hover,
    .rate>input:checked~label:hover~label,
    .rate>label:hover~input:checked~label {
        color: #c59b08;
    }
    
    .subscribe_form {
        max-width: 470px;
        width: 100%;
        box-shadow: 0px 2px 5px 0px rgba(10, 6, 20, 0.24);
    }
    
    .subscribe_form:focus {
        outline: none;
    }
    
    .subscribe_form .form-control {
        border: none;
    }
    
    .subscribe_form .form-control:focus {
        box-shadow: none;
    }
    
    .subscribe_form input {
        height: 44px;
    }
    
    .subscribe_form button {
        border: none;
        height: 44px;
        background-color: #0ed085;
        color: #fff;
        font-size: 13px;
        margin: -1px;
        border-radius: 0;
        width: 166px;
        text-transform: uppercase;
        position: relative;
        transition: all ease 0.3s;
        -webkit-transition: all ease 0.3s;
        -moz-transition: all ease 0.3s;
        -o-transition: all ease 0.3s;
        -ms-transition: all ease 0.3s;
    }
    
    .subscribe_form button:hover,
    .subscribe_form button:focus,
    .subscribe_form button:active,
    .subscribe_form button:visited {
        color: #fff;
        background-color: rgba(14, 208, 133, 0.77);
        outline: none;
        transition: all ease 0.3s;
        -webkit-transition: all ease 0.3s;
        -moz-transition: all ease 0.3s;
        -o-transition: all ease 0.3s;
        -ms-transition: all ease 0.3s;
    }
    
    .subscribe_form button:hover:before,
    .subscribe_form button:focus:before,
    .subscribe_form button:active:before,
    .subscribe_form button:visited:before {
        background-color: rgba(14, 208, 133, 0.77);
        transition: all ease 0.3s;
        -webkit-transition: all ease 0.3s;
        -moz-transition: all ease 0.3s;
        -o-transition: all ease 0.3s;
        -ms-transition: all ease 0.3s;
    }
    
    .subscribe_form button:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        height: 1px;
        background-color: #0ed085;
        width: 100%;
        transition: all ease 0.3s;
        -webkit-transition: all ease 0.3s;
        -moz-transition: all ease 0.3s;
        -o-transition: all ease 0.3s;
        -ms-transition: all ease 0.3s;
    }
    
    .subscribe_form .input-group-btn:last-child>.btn,
    .subscribe_form .input-group-btn:last-child>.btn-group {
        z-index: 2;
        margin-left: 0px;
    }
    
    .line_f_top {
        margin-top: 15px;
    }
    
    .pg-footer {
        font-family: 'Roboto', sans-serif;
    }
    
    .footer {
        background-color: #ecececc2;
        color: #1b3383;
    }
    
    .footer-wave-svg {
        background-color: transparent;
        display: block;
        height: 30px;
        position: relative;
        top: -1px;
        width: 100%;
    }
    
    .footer-wave-path {
        fill: #1b3383;
    }
    
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 450px;
        position: relative;
    }
    
    .footer-content-column {
        box-sizing: border-box;
        float: left;
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        color: #1b3383;
    }
    
    .footer-content-column ul li a {
        color: #1b3383;
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
    }
    
    .footer-logo-link {
        display: inline-block;
    }
    
    .footer-menu {
        margin-top: 30px;
    }
    
    .footer-menu-name {
        color: #1b3383;
        font-size: 20px;
        font-weight: 900;
        letter-spacing: .1em;
        line-height: 18px;
        margin-bottom: 0;
        margin-top: 0;
        text-transform: uppercase;
    }
    
    .footer-menu-list {
        list-style: none;
        margin-bottom: 0;
        margin-top: 15px;
        padding-left: 0;
    }
    
    .footer-menu-list li {
        margin-top: 10px;
    }
    
    .footer-call-to-action-description {
        color: #1b3383;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    
    .footer-call-to-action-button:hover {
        background-color: #1b3383;
        color: #00bef0;
    }
    
    .button:last-of-type {
        margin-right: 0;
    }
    
    .footer-call-to-action-button {
        background-color: #027b9a;
        border-radius: 21px;
        color: #fffff2;
        display: inline-block;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .1em;
        line-height: 18px;
        padding: 12px 30px;
        margin: 0 10px 10px 0;
        text-decoration: none;
        text-transform: uppercase;
        transition: background-color .2s;
        cursor: pointer;
        position: relative;
    }
    
    .footer-call-to-action {
        margin-top: 30px;
    }
    
    .footer-call-to-action-title {
        color: #1b3383;
        font-size: 14px;
        font-weight: 900;
        letter-spacing: .1em;
        line-height: 18px;
        margin-bottom: 0;
        margin-top: 0;
        text-transform: uppercase;
    }
    
    .footer-call-to-action-link-wrapper {
        margin-bottom: 0;
        margin-top: 10px;
        color: #1b3383;
        text-decoration: none;
    }
    
    .footer-call-to-action-link-wrapper a {
        color: #1b3383;
        text-decoration: none;
    }
    
    .stars_m_section {
        margin-top: 15px;
    }
    
    .stars_m_section_1 {
        margin-top: 25px;
    }
    
    .footer-social-links {
        bottom: 0;
        height: 54px;
        position: absolute;
        right: 0;
        width: 236px;
    }
    
    .footer-social-amoeba-svg {
        height: 54px;
        left: 0;
        display: block;
        position: absolute;
        top: 0;
        width: 236px;
    }
    
    .footer-social-amoeba-path {
        fill: #1b3383;
    }
    
    .footer-social-link.linkedin {
        height: 26px;
        left: 12px;
        top: 18px;
        width: 26px;
    }
    
    .footer-social-link {
        display: block;
        padding: 0px;
        position: absolute;
    }
    
    .hidden-link-text {
        position: absolute;
        clip: rect(1px 1px 1px 1px);
        clip: rect(1px, 1px, 1px, 1px);
        -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
        clip-path: inset(0px 0px 99.9% 99.9%);
        overflow: hidden;
        height: 1px;
        width: 1px;
        padding: 0;
        border: 0;
        top: 50%;
    }
    
    .footer-social-icon-svg {
        display: block;
    }
    
    .footer-social-icon-path {
        fill: #fffff2;
        transition: fill .2s;
    }
    
    .footer-social-link.twitter {
        height: 28px;
        left: 70px;
        top: 12px;
        width: 28px;
    }
    
    .footer-social-link.youtube {
        height: 24px;
        left: 133px;
        top: 20px;
        width: 24px;
    }
    
    .footer-social-link.github {
        height: 34px;
        left: 182px;
        top: 16px;
        width: 34px;
    }
    
    .footer-copyright {
        background-color: #1b4983;
        color: #fff;
        padding: 25px 150px;
    }
    
    .footer-copyright-wrapper {
        margin-left: auto;
        margin-right: auto;
        max-width: 1200px;
        place-content: space-between;
    }
    
    .footer-copyright-text {
        color: #fff;
        font-size: 13px;
        font-weight: 400;
        line-height: 18px;
        margin-bottom: 0;
        margin-top: 0;
    }
    
    .footer-copyright-link {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
    }
    /* Media Query For different screens */
    
    @media (min-width:320px) and (max-width:479px) {
        /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
        .footer-content {
            margin-left: auto;
            margin-right: auto;
            max-width: 1230px;
            margin-top: -90px;
            padding: 40px 15px 720px;
            position: relative;
        }
    }
    
    @media (min-width:480px) and (max-width:599px) {
        /* smartphones, Android phones, landscape iPhone */
        .footer-content {
            margin-left: auto;
            margin-right: auto;
            max-width: 1230px;
            padding: 40px 15px 1050px;
            position: relative;
        }
    }
    
    @media (min-width:600px) and (max-width: 800px) {
        /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
        .footer-content {
            margin-left: auto;
            margin-right: auto;
            max-width: 1230px;
            padding: 40px 15px 1050px;
            position: relative;
        }
    }
    
    @media (min-width:801px) {
        /* tablet, landscape iPad, lo-res laptops ands desktops */
    }
    
    @media (min-width:1025px) {
        /* big landscape tablets, laptops, and desktops */
    }
    
    @media (min-width:1281px) {
        /* hi-res laptops and desktops */
    }
    
    @media (min-width: 760px) {
        .footer-content {
            margin-left: auto;
            margin-right: auto;
            max-width: 1230px;
            padding: 40px 15px 430px;
            position: relative;
        }
        .footer-wave-svg {
            height: 50px;
        }
        .footer-content-column {
            width: 24.99%;
        }
    }
    
    @media (min-width: 568px) {
        /* .footer-content-column {
      width: 49.99%;
  } */
    }
    
    .main_section_top {
        margin-top: -400px;
        margin-bottom: 50px;
    }
    /* @media (max-width: 1023px) and (max-width: 1423px) {
        .Subscribe .form_last {
            z-index: 2;
            width: 481px;
            margin: 10px 10px 10px 205px;
            height: 69px;
            overflow: hidden;
            position: absolute;
            background: #FFFFFF;
            box-shadow: 0 3px 6px 0 rgba(149, 144, 179, 0.2);
            transition: transform 600ms cubic-bezier(0.2, 0, 0, 1);
        }
    } */
    
    @media (max-width: 1023px) {
        .mobile-hidden {
            display: none !important;
        }
        .footer-content-column {
            box-sizing: border-box;
            float: left;
            padding-left: 15px;
            padding-right: 15px;
            width: 50%;
            color: #fff;
        }
        .text_line_7 {
            color: #1b3383;
            font-weight: 700;
            font-size: 41px !important;
            text-align: center;
        }
        .footer-content-column ul li a {
            color: #1b3383;
            text-decoration: none;
            font-size: 16px !important;
            font-weight: 600;
        }
        .modalDialog>div {
            width: auto !important;
            position: relative;
            margin: 50% auto !important;
            padding: 0px 20px 12px 20px;
            background: #ffffff;
            border: 3px solid #0a1c50;
        }
        .Subscribe .form_last-1 {
            z-index: 2;
            width: auto !important;
            height: 69px;
            overflow: hidden;
            position: absolute;
            background: #FFFFFF;
            box-shadow: 0 3px 6px 0 rgba(149, 144, 179, 0.2);
            transition: transform 600ms cubic-bezier(0.2, 0, 0, 1);
        }
        .Subscribe .form_last {
            z-index: 2;
            width: auto !important;
            height: 69px;
            overflow: hidden;
            position: absolute;
            background: #FFFFFF;
            box-shadow: 0 3px 6px 0 rgba(149, 144, 179, 0.2);
            transition: transform 600ms cubic-bezier(0.2, 0, 0, 1);
        }
        .Subscribe input[type=text] {
            border: none;
            width: 90% !important;
            float: left;
            height: 100%;
            outline: none;
            font-size: 17px;
            padding: 0 110px 0 20px;
            font-family: "Open Sans", sans-serif;
        }
        .header-button_2 {
            width: inherit;
            margin-top: 15px;
            margin-bottom: 15px;
            font-size: 1rem;
            cursor: pointer;
            background-color: transparent;
            border: 1.5px solid #f2f5f7;
            border-radius: 5px;
            color: #fff;
            background: #1b4983;
            border: 2px solid #1b4983;
            text-decoration: none;
        }
        .devicer {
            width: 10em !important;
            display: block;
            height: 2px;
            background-color: #1b4a85d9;
            margin: 35px auto 0;
        }
        .Subscribe .Beta {
            top: 0;
            right: 0;
            padding: 0;
            cursor: pointer;
            outline: none;
            width: auto !important;
            border: none;
            height: 55% !important;
            color: #5224FF;
            font-weight: 600 !important;
            font-size: 15px !important;
            position: absolute;
            background-color: white;
            transition: color 500ms;
            padding: 6px 10px 0px 10px;
            margin-top: 15px !important;
            margin-right: 11px;
            cursor: pointer;
            background-color: transparent;
            border: 1.5px solid #f2f5f7;
            border-radius: 5px;
            color: #fff;
            background: #1b4983;
            border: 2px solid #1b4983;
            text-decoration: none;
        }
        .Subscribe form input[type=text] {
            border: none;
            width: 88% !important;
            float: left;
            height: 100%;
            outline: none;
            font-size: 17px;
            padding: 0 110px 0 20px;
            font-family: "Open Sans", sans-serif;
        }
        .footer-menu-name {
            color: #1b3383;
            font-size: 16px !important;
            font-weight: 900;
            letter-spacing: .1em;
            line-height: 18px;
            margin-bottom: 0;
            margin-top: 0;
            text-transform: uppercase;
        }
        .text_line_8 {
            color: #342b50;
            font-weight: 700;
            font-size: 20px !important;
            text-align: center;
        }
        .img_top_section {
            height: 0%;
            width: 100%;
            margin-top: 200px;
        }
        .pop-up-first-text {
            font-size: 24px !important;
            font-weight: 700;
            color: #0e417b;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        }
        .pop-up-second-text {
            font-size: 20px !important;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            font-weight: 400;
            color: #0e417b;
        }
        .text_line_4 {
            color: #1b4983;
            text-align: center;
            font-size: 22px !important;
        }
        input[type="radio"]+label:before {
            top: 3px !important;
            left: -6px;
            width: 25px;
            height: 25px;
            background: #0e417b;
            -moz-box-shadow: inset 0 0 0 18px #E0E0E0;
            -webkit-box-shadow: inset 0 0 0 18px #E0E0E0;
            box-shadow: inset 0 0 0 18px #E0E0E0;
        }
        input[type="radio"]+label {
            position: relative;
            cursor: pointer;
            margin: 18px 28px 18px 26px;
            padding-left: 24px;
            font-size: 18px !important;
        }
        .playstore {
            width: 37%;
            margin-left: 0px!important;
            margin-top: 10px;
            margin-bottom: 30px;
        }
        .appstore {
            text-align: center;
            display: block !important;
        }
        .mob_back {
            background-color: #cefff9c4;
        }
        .text_line {
            color: #fff;
            font-size: 20px;
            text-align: center;
            font-weight: 700;
        }
        .line_f_top {
            margin-top: 0px !important;
            padding: 10px 20px 0px 20px;
        }
        .sec_top_2 {
            margin-top: 0px !important;
            text-align: center;
        }
        .rate {
            float: inherit;
            height: 46px;
            padding: 0 10px;
        }
        .rate:not(:checked)>label {
            float: inherit;
            width: 1em;
            overflow: hidden;
            white-space: nowrap;
            cursor: pointer;
            font-size: 30px;
            color: #ffc700;
        }
        .stars_m_section {
            margin-top: -15px;
        }
        .stars_m_section_1 {
            margin-top: -5px;
            margin-bottom: 10px;
        }
        .section_mob_top {
            margin-top: -50px;
        }
        .text_line_2 {
            color: #342b50;
            font-size: 21px;
            text-align: center;
            font-weight: 700;
        }
        .text_line_3 {
            color: #1b4983;
            font-size: 28px !important;
            margin-top: 0px !important;
            font-weight: 600;
            text-align: center;
        }
        .text_second {
            color: #1b4983;
            font-size: 20px;
            font-family: 'Lato';
            text-align: center;
            padding-bottom: 30px;
        }
        .logo {
            padding: 0px 0px 0px 10px;
            text-align: left;
        }
        .text_line_9 {
            font-size: 20px !important;
            line-height: 30px;
            text-align: center;
        }
        input[type="radio"]+label {
            position: relative;
            cursor: pointer;
            margin: 5px !important;
            padding-left: 28px;
        }
        .img_top_text_selection {
            font-size: 16px;
            color: #0f4386;
        }
        .Subscribe form {
            z-index: 2;
            width: auto !important;
            height: 69px;
            overflow: hidden;
            position: absolute;
            background: #FFFFFF;
            box-shadow: 0 3px 6px 0 rgba(149, 144, 179, 0.2);
            transition: transform 600ms cubic-bezier(0.2, 0, 0, 1);
        }
        .text-middle {
            text-align: center!important;
        }
        .box-middle {
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }
        .Subscribe form button {
            top: 0;
            right: 0;
            padding: 0;
            cursor: pointer;
            outline: none;
            width: 120px !important;
            border: none;
            height: 70%;
            color: #5224FF;
            font-weight: 600 !important;
            font-size: 14px !important;
            position: absolute;
            background-color: white;
            transition: color 500ms;
            padding: 0px 10px 0px 10px;
            margin-top: 11px;
            margin-right: 11px;
            cursor: pointer;
            background-color: transparent;
            border: 1.5px solid #f2f5f7;
            border-radius: 5px;
            color: #fff;
            background: #1b4983;
            border: 2px solid #1b4983;
            text-decoration: none;
        }
        .Subscribe .form_last {
            z-index: 2;
            width: 481px;
            margin: 10px 10px 10px 10px !important;
            height: 69px;
            overflow: hidden;
            position: absolute;
            background: #FFFFFF;
            box-shadow: 0 3px 6px 0 rgba(149, 144, 179, 0.2);
            transition: transform 600ms cubic-bezier(0.2, 0, 0, 1);
        }
        .logo_1 img {
            height: auto;
            width: 65%;
        }
        .logo_2 img {
            height: auto;
            width: 30%;
            margin-top: 25px;
        }
        .footer-copyright {
            background-color: #1b4983;
            color: #fff;
            padding: 25px 10px;
        }
        .footer_logo_sub {
            width: 40%;
            height: 100%;
        }
        .footer-copyright-text {
            color: #fff;
            font-size: 13px;
            font-weight: 400;
            line-height: 15px;
            margin-bottom: 0;
            margin-top: 0;
        }
        .footer-copyright-link {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
        }
    }
    
    @media (min-width: 1023px) {
        .desktop-hidden {
            display: none !important;
        }
        .footer {
            background-color: #ecececc2;
            color: #1b3383;
            margin-top: -55px;
        }
        .footer_logo_sub {
            width: 22%;
        }
        .img_header {
            margin-top: -100px;
        }
    }
    
    @-moz-keyframes ripple {
        5%,
        100% {
            opacity: 0;
        }
        5% {
            opacity: 1;
        }
    }
    
    @-webkit-keyframes ripple {
        5%,
        100% {
            opacity: 0;
        }
        5% {
            opacity: 1;
        }
    }
    
    @keyframes ripple {
        5%,
        100% {
            opacity: 0;
        }
        5% {
            opacity: 1;
        }
    }
    
    input[type="radio"] {
        display: none;
    }
    
    input[type="radio"]+label {
        position: relative;
        cursor: pointer;
        margin: 18px 28px 18px 26px;
        padding-left: 24px;
        font-size: 24px;
    }
    
    input[type="radio"]+label:before,
    input[type="radio"]+label:after {
        content: "";
        position: absolute;
        border-radius: 50%;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    
    input[type="radio"]+label:before {
        top: 6px;
        left: -6px;
        width: 25px;
        height: 25px;
        background: #0e417b;
        -moz-box-shadow: inset 0 0 0 18px #E0E0E0;
        -webkit-box-shadow: inset 0 0 0 18px #E0E0E0;
        box-shadow: inset 0 0 0 18px #E0E0E0;
    }
    
    input[type="radio"]+label:after {
        top: 49%;
        left: 9px;
        width: 54px;
        height: 54px;
        opacity: 0;
        background: rgba(255, 255, 255, 0.3);
        -moz-transform: translate(-50%, -50%) scale(0);
        -ms-transform: translate(-50%, -50%) scale(0);
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
    }
    
    input[type="radio"]:checked+label:before {
        -moz-box-shadow: inset 0 0 0 4px #E0E0E0;
        -webkit-box-shadow: inset 0 0 0 4px #E0E0E0;
        box-shadow: inset 0 0 0 4px #E0E0E0;
    }
    
    input[type="radio"]:checked+label:after {
        -moz-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        -moz-animation: ripple 1s none;
        -webkit-animation: ripple 1s none;
        animation: ripple 1s none;
    }
    
    .img_top_text_selection {
        font-size: 20px;
        color: #0f4386;
    }
    
    .test {
        width: 100%;
        height: 550px;
        background-size: cover;
        background-image: linear-gradient(rgb(255 255 255 / 86%), rgb(255 255 255 / 70%)), url(../imgs/Splash.jpg);
        position: relative;
    }
    
    .Subscribe form {
        z-index: 2;
        width: 440px;
        height: 69px;
        /* bottom: 25px; */
        overflow: hidden;
        position: absolute;
        /* border-radius: 4px; */
        background: #FFFFFF;
        box-shadow: 0 3px 6px 0 rgba(149, 144, 179, 0.2);
        transition: transform 600ms cubic-bezier(0.2, 0, 0, 1);
    }
    
    .Subscribe input[type=text] {
        border: none;
        width: 80%;
        float: left;
        height: 100%;
        outline: none;
        font-size: 17px;
        padding: 0 110px 0 20px;
        font-family: "Open Sans", sans-serif;
    }
    
    .Subscribe .form_last {
        z-index: 2;
        width: 481px;
        margin: 10px 10px 10px 295px;
        height: 69px;
        overflow: hidden;
        position: absolute;
        background: #FFFFFF;
        box-shadow: 0 3px 6px 0 rgba(149, 144, 179, 0.2);
        transition: transform 600ms cubic-bezier(0.2, 0, 0, 1);
    }
    .Subscribe .form_last-1 {
        z-index: 2;
        width: 481px;
        height: 69px;
        overflow: hidden;
        position: absolute;
        background: #FFFFFF;
        box-shadow: 0 3px 6px 0 rgba(149, 144, 179, 0.2);
        transition: transform 600ms cubic-bezier(0.2, 0, 0, 1);
    }
    .Subscribe .email_last[type=text] {
        border: none;
        width: 82%;
        float: left;
        height: 100%;
        outline: none;
        font-size: 17px;
        padding: 0 110px 0 20px;
        font-family: "Open Sans", sans-serif;
    }
    
    .Subscribe .Beta {
        top: 0;
        right: 0;
        padding: 0;
        cursor: pointer;
        outline: none;
        width: 170px;
        border: none;
        height: 70%;
        color: #5224FF;
        font-weight: 600 !important;
        font-size: 20px;
        position: absolute;
        background-color: white;
        transition: color 500ms;
        padding: 6px 10px 0px 10px;
        margin-top: 11px;
        margin-right: 11px;
        cursor: pointer;
        background-color: transparent;
        border: 1.5px solid #f2f5f7;
        border-radius: 5px;
        color: #fff;
        background: #1b4983;
        border: 2px solid #1b4983;
        text-decoration: none;
    }
    
    .img-box {
        margin-top: 150px;
    }
    
    .bottom_email {
        text-align: center;
        margin-top: 25px;
    }
    
    .img_flip {
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }
    
     ::placeholder {
        color: #1b3383;
        opacity: 1;
        font-weight: 600;
        /* Firefox */
    }
    
     :-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #1b3383;
        font-weight: 600;
    }
    
     ::-ms-input-placeholder {
        /* Microsoft Edge */
        color: #1b3383;
        font-weight: 600;
    }
    
    .popup {
        display: none;
        position: fixed;
        padding: 20px;
        text-align: center;
        width: auto;
        height: auto;
        top: 50%;
        margin-top: -100px;
        background: #FFF;
        border: 3px solid #61a7ff;
        z-index: 20;
    }
    
    #popup:after {
        position: fixed;
        content: "";
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -2;
    }
    
    #popup:before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: #FFF;
        z-index: -1;
    }
    
    .pop-up-first-text {
        font-size: 30px;
        font-weight: 700;
        color: #0e417b;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }
    
    .pop-up-second-text {
        font-size: 25px;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-weight: 400;
        color: #0e417b;
    }
    
    .pop-up-close-btn {
        background-color: #0e417b;
        border: none;
        color: white !important;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
    }
    
    .pop-up-close-btn:hover {
        background-color: #1a589f;
    }
    
    .button-close a {
        color: #fff !important;
    }
    
    .button-close a:hover {
        color: #fff !important;
        text-decoration: none;
    }
    
    .button-close {
        padding: 10px 24px;
    }
    /* .modal-header {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 15px 20px 0px 0px !important;
        border-bottom: 0px solid #dee2e6 !important;
        border-top-left-radius: calc(0.3rem - 1px);
        border-top-right-radius: calc(0.3rem - 1px);
    }
    
    .modal-title {
        margin-bottom: 0;
        line-height: 1.5;
        text-align: center !important;
    }
    
    .modal-body {
        position: relative;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        padding: 10px 30px 30px 30px !important;
    }
    
    @media (min-width: 576px) {
        .modal-dialog {
            max-width: fit-content !important;
            margin: 1.75rem auto;
        }
    }
    
    .modal-content {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        pointer-events: auto;
        background-color: #fff;
        background-clip: padding-box;
        border-radius: 0.3rem;
        border: 3px solid #194a87 !important;
        border-radius: inherit !important;
        outline: 0;
    }
    
    #myModal:after {
        position: fixed;
        content: "";
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -2;
    }
    
    .modal-dialog {
        padding-top: 200px !important;
        position: relative;
        width: auto;
        margin: 0.5rem;
        pointer-events: none;
    } */
    
    .devicer {
        width: 30em;
        display: block;
        height: 2px;
        background-color: #1b4a85d9;
        margin: 35px auto 0;
    }
    
    .modalDialog {
        position: fixed;
        font-family: Arial, Helvetica, sans-serif;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.8);
        z-index: 99999;
        opacity: 0;
        -webkit-transition: opacity 300ms ease-in;
        -moz-transition: opacity 300ms ease-in;
        transition: opacity 300ms ease-in;
        pointer-events: none;
    }
    
    .modalDialog:target {
        opacity: 1;
        pointer-events: auto;
    }
    
    .modalDialog>div {
        width: 550px;
        position: relative;
        margin: 18% auto;
        padding: 0px 20px 12px 20px;
        background: #ffffff;
        border: 3px solid #0a1c50;
    }
    
    .close {
        padding: 0;
        color: black;
        line-height: 25px;
        position: absolute;
        right: 10px;
        text-align: center;
        top: 10px;
        width: 24px;
        text-decoration: none;
        background: none;
        font-weight: bold;
    }
    
    .close:hover {
        color: #EA4436;
    }
    
    .btn {
        display: table-caption !important;
        font-weight: 400;
        color: #212529;
        text-align: center;
        vertical-align: middle;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: transparent;
        border: 1px solid transparent;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: 0.25rem;
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }
    
    .modal-title {
        margin-bottom: 0;
        line-height: 1.5;
        padding: 42px 0px 20px 0px;
        text-align: center;
    }
    
    .background-section {
        background-color: #0000000a;
    }
    
    

    
    
    
    
    
    @media screen and (min-width: 1900px) {
      .test {
            width: 100%;
            height: 1080px !important;
            background-size: cover;
            background-image: linear-gradient(rgb(255 255 255 / 86%), rgb(255 255 255 / 70%)), url(../imgs/Splash.jpg);
            position: relative;
        }
        .main_section_top {
            margin-top: -925px !important;
            margin-bottom: 50px;
        }
        .text_line_7 {
            color: #1b3383;
            font-weight: 500;
            font-size: 100px !important;
            margin-top: 150px;
        }
        .text_line_9 {
            color: #1b4983;
            font-size: 77px !important;
            line-height: 95px !important;
        }
        input[type="radio"]+label {
            position: relative;
            cursor: pointer;
            margin: 18px 28px 18px 26px;
            padding-left: 45px !important;
            font-size: 60px !important;
        }
        input[type="radio"]+label:before {
            top: 28px !important;
            left: -6px;
            width: 36px !important;
            height: 36px !important;
            background: #0e417b;
            -moz-box-shadow: inset 0 0 0 18px #E0E0E0;
            -webkit-box-shadow: inset 0 0 0 18px #E0E0E0;
            box-shadow: inset 0 0 0 18px #E0E0E0;
        }
        .Subscribe .form_last-1 {
            z-index: 2;
            width: 960px !important;
            margin-left: -155px !important;
            height: 120px;
            overflow: hidden;
            position: absolute;
            background: #FFFFFF;
            box-shadow: 0 3px 6px 0 rgba(149, 144, 179, 0.2);
            transition: transform 600ms cubic-bezier(0.2, 0, 0, 1);
        }
        .Subscribe input[type=text] {
            border: none;
            width: 80%;
            float: left;
            height: 100%;
            outline: none;
            font-size: 36px !important;
            padding: 0 110px 0 35px !important;
            font-family: "Open Sans", sans-serif;
        }
        .Subscribe .Beta {
            top: 0;
            right: 0;
            padding: 0;
            cursor: pointer;
            outline: none;
            width: 260px !important;
            border: none;
            height: 82% !important;
            color: #5224FF;
            font-weight: 600 !important;
            font-size: 30px !important;
            position: absolute;
            background-color: white;
            transition: color 500ms;
            padding: 6px 10px 0px 10px;
            margin-top: 11px;
            margin-right: 11px;
            cursor: pointer;
            background-color: transparent;
            border: 1.5px solid #f2f5f7;
            border-radius: 5px;
            color: #fff;
            background: #1b4983;
            border: 2px solid #1b4983;
            text-decoration: none;
        }
        .text_line_3 {
            color: #1b4983;
            font-size: 80px !important;
            margin-top: 265px !important;
            font-family: 'Lato';
        }
        .text_second {
            color: #1b4983;
            font-size: 40px !important;
            font-family: 'Lato';
        }
        .text_line_4 {
            color: #1b4983;
            text-align: center;
            font-size: 55px !important;
            margin-top: 30px;
        }
        .Subscribe .form_last {
            z-index: 2;
            width: 960px !important;
            margin-left: 60px !important;
            height: 120px;
            overflow: hidden;
            position: absolute;
            background: #FFFFFF;
            box-shadow: 0 3px 6px 0 rgba(149, 144, 179, 0.2);
            transition: transform 600ms cubic-bezier(0.2, 0, 0, 1);
        }
        .footer-content {
            margin-left: inherit !important;
            margin-right: inherit !important;
            max-width: inherit !important;
            padding: 80px 15px 700px !important;
            position: relative;
        }
        .footer {
            background-color: #ecececc2;
            color: #1b3383;
            margin-top: 0px !important;
        }
        .footer-content-column ul li a {
            color: #1b3383;
            text-decoration: none;
            font-size: 35px !important;
            font-weight: 600;
        }
        .footer-menu-name {
            color: #1b3383;
            font-size: 40px !important;
            font-weight: 900;
            letter-spacing: .1em;
            line-height: 18px;
            margin-bottom: 0;
            margin-top: 50px !important;
            text-transform: uppercase;
        }
        .footer-menu-list {
            list-style: none;
            margin-bottom: 0;
            margin-top: 40px !important;
            padding-left: 0;
        }
        .footer-copyright {
            background-color: #1b4983;
            color: #fff;
            padding: 40px 120px !important;
        }
        .footer-copyright-wrapper {
            margin-left: auto;
            margin-right: auto;
            max-width: inherit !important;
            place-content: space-between;
        }
        .footer_logo_sub {
            width: 15% !important;
        }
        .footer-copyright-text {
            color: #fff;
            font-size: 13px;
            font-weight: 400;
            line-height: 30px !important;
            margin-bottom: 0;
            margin-top: 0;
        }
        .footer-copyright-link {
            color: #fff;
            text-decoration: none;
            font-size: 30px !important;
            cursor: default !important;
        }
        .header_up {
            height: 100px !important;
            width: 100vw;
            display: flex;
            position: fixed;
            z-index: 10;
            padding-top: 14px;
            background-color: #ffffff;
            box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
        }
        .nav-links_1 li a {
            margin: 0 0.7vw;
            font-size: 30px;
            text-decoration: none;
            transition: all ease-in-out 350ms;
            padding: 10px;
        }
        .header-button {
            padding: 7px 20px 7px 20px;
            margin-left: 2vw;
            font-size: 2rem !important;
            cursor: pointer;
            background-color: transparent;
            border: 1.5px solid #f2f5f7;
            border-radius: 10px;
            color: #000;
            font-weight: 700;
            background: #59f2db;
            text-decoration: none;
        }
        .logo {
            text-align: left;
            width: 405px !important;
            margin-left: 50px;
            margin-top: -30px !important;
        }
    }
    
    /* Landscape */
        @media only screen 
          and (min-device-width: 250px) 
          and (max-device-width: 812px) 
          and (-webkit-min-device-pixel-ratio: 3)
          and (orientation: landscape) { 
            .Subscribe .form_last-1 {
                z-index: 2;
                width: 310px !important;
                height: 69px;
                overflow: hidden;
                position: absolute;
                background: #FFFFFF;
                box-shadow: 0 3px 6px 0 rgba(149, 144, 179, 0.2);
                transition: transform 600ms cubic-bezier(0.2, 0, 0, 1);
            }
            .Subscribe .form_last {
                z-index: 2;
                width: 310px !important;
                height: 69px;
                overflow: hidden;
                position: absolute;
                background: #FFFFFF;
                box-shadow: 0 3px 6px 0 rgba(149, 144, 179, 0.2);
                transition: transform 600ms cubic-bezier(0.2, 0, 0, 1);
            }
        }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    