@charset "utf-8";
/*CSS Document*/
/*Table of content*/
/*font-family: 'Lato', sans-serif;*/
/*font-family: 'Nunito Sans', sans-serif;*/
/*font-weight*/
/*100: extra light
300: light	
400: regular
500: medium
600: semibold
700: bold
800: extrabold
900: black*/
/*common css*/
/*body*/
/*form*/
/*bullet style*/
/*button*/
/*shadow*/
/*gradient*/
/*section padding*/
/*header*/
/*slider*/
/*about sectoin*/
/*product section*/
/*video section*/
/*testimonials section*/
/*blog section*/
/*footer*/
/**/

/*common css start*/
*:focus {
    outline: none;
    border: none;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #555;
    line-height: 24px;
    overflow-x: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    height: 100%;
}

.body-wrapper {
    width: 100%;
    overflow: hidden;
    min-height: 100%;
}

p {
    margin-bottom: 20px;
}

small {
    color: #999;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

a {
    color: #ef7b12;
    text-decoration: none;
    outline: none;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

a:hover {
    color: #1f3a82;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    line-height: 1;
    color: #000;
    margin: 0px;
    padding: 0px;
    letter-spacing: 0px;
}

h1 {
    font-size: 30px;
    margin-bottom: 25px;
}

h2 {
    font-size: 30px;
    margin-bottom: 25px;
}

h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

h5 {
    font-size: 18px;
    margin-bottom: 20px;
}

h6 {
    font-size: 16px;
    margin-bottom: 20px;
}

b,
strong {
    font-weight: 700;
}

/*common css end*/

/*form start*/
input[type="submit"],
input[type="button"],
button[type="submit"],
button[type="button"] {
    outline: none;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 400;
    cursor: pointer;
}

textarea {
    resize: none;
    height: 100px;
}

.form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 8px 15px;
    font-size: 14px;
    line-height: inherit;
    color: #999;
    background-color: #fff;
    background-image: none;
    border: none;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
select.form-control {
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 5px;
}
.form-control:focus {
    background-color: #fff;
    outline: 0;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.form-control::-webkit-input-placeholder {
    color: #999;
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #999;
}

.form-group {
    margin-bottom: 10px;
    ;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

input[type="radio"],
input[type="checkbox"] {
    cursor: pointer;
}

/*form end*/

/*bullet start*/
ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

ol li {
    margin: 0px;
    padding: 0px;
}

.bullet li {
    position: relative;
    padding-left: 18px;
}

.bullet li::before {
    background-image: url(../images/bullet.svg);
    content: '';
    background-position: left center;
    height: 8px;
    left: 0px;
    position: absolute;
    top: 9px;
    width: 8px;
}

/*bullet end*/

/*button start*/
button {
    border: none;
}

button:focus {
    outline: none;
    border: none;
}

.button-common {
    background: #1f3a82;
    border: 0px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.4px;
    padding: 8px 20px;
    outline: 0px;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.button-common:hover {
    background: #ef7b12;
    color: #fff;
}

.button-common.bg-orange {
    background: #ef7b12;
}

.button-common.bg-orange:hover {
    background: #1f3a82;
    color: #fff;
}

/*button end*/

/*section padding start*/
/*section padding end*/
/*section margin start*/
.mb-100 {
    margin-bottom: 100px;
}

/*section margin end*/
/*animation css start*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        opacity: 0;
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 0;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

/*animation css end*/
/*common css end*/
/*header start*/
.header {
    padding: 20px 0px;
    position: fixed;
    left: 0px;
    width: 100%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    z-index: 10;
    top: 0px;
    background-color: #f5f5f5;
}

.header.stickyheader {
    padding: 10px 0px;
    /*background-color: #fff;*/
}

.header .logo img {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    width: 84px;
}

.header.stickyheader .logo {
    width: 70px;
}

.header .logo a {
    display: inline-block;
}

nav.nav>ul>li {
    display: inline-block;
    margin-right: 10px;
}

nav.nav>ul>li:last-child {
    margin-right: 0;
}

.button-common.light-blue {
    background: #0062a9;
}

.button-common.light-blue:hover {
    background: #ef7b12;
}

/*header end*/
/*footer start*/
.footer {
    padding: 30px 0;
    background-color: #f5f5f5;
}

.copyright p {
    margin-bottom: 0;
    text-align: center;
}

.pre-footer {
    color: #fff;
    text-align: center;
}

.pre-footer p {
    margin-bottom: 0px;
}

.pre-footer .button-common {
    border: 2px solid #fff;
    background: transparent;
}

.pre-footer .button-common:hover {
    background: #ef7b12;
    border-color: #ef7b12;
}

/*footer end*/
/*homepage start*/
.topoffset {
    margin-top: 160px;
}

.homepagezigzagrow .custom-row {
    margin-bottom: 50px;
}

.homepagezigzagrow .custom-row:last-child {
    margin-bottom: 0;
}

.zigzag-box {
    padding: 60px 80px;
}

.zigzag-box.bg-blue {
    padding: 80px 130px 80px 120px;
}

.zigzag-box p,
.zigzag-box h1,
.zigzag-box h2 {
    color: #fff;
}

.zigzag-box p:last-child {
    margin-bottom: 0;
}

.bg-orange {
    background-color: #ef7b12;
}

.bg-orange h3,
.bg-orange p,
.bg-orange ul li {
    color: #fff;
}

.bg-orange ul {
    margin-bottom: 20px;
}

.bg-orange ul li {
    list-style-type: disc;
    list-style-position: inside;
}

.bg-orange .button-common:hover {
    background-color: #fff;
    color: #000;
}

.bg-blue {
    background-color: #0062a9;
}

.bg-dark-blue {
    background-color: #1f3a82;
}

.custom-row {
    margin-right: 0;
    margin-left: 0;
}

.custom-row>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.homepageiconsectionrow h2 {
    margin-bottom: 5px;
}

.homepageiconsectionrow h3 {
    margin-bottom: 10px;
}

.gray-box {
    background-color: #f5f5f5;
    padding: 85px 40px 50px;
    margin-bottom: 30px;
    margin-top: -60px;
    min-height: 305px;
}

.box-design {
    padding: 85px 40px 50px;
    margin-bottom: 30px;
    margin-top: -60px;
    min-height: 305px;
}

.homepageiconsectionrow .text-wrap p:last-child {
    margin-bottom: 0;
}

/*homepage end*/
/*live 3 days training start*/
.formsectionrow h1 {
    margin-bottom: 20px;
}

.form-box {
    padding: 50px 50px;
    color: #fff;
}

.form-box h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.form-box .button-common {
    width: 100%;
}

.form-box .button-common:hover {
    background-color: #0062a9
}

.box-wrap {
    position: relative;
    padding-left: 50px;
    height: 100%;
}

.day-box {
    background-color: #fff;
    padding: 19px 36px;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 50px;
    left: 0;
}

.day-box span {
    color: #ef7b12;
    display: inline-block;
    margin-bottom: 2px;
}

.day-box .custom-day {
    color: #000;
    font-size: 36px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0px;
}

.list-box {
    padding: 45px 30px 45px 80px;
    color: #fff;
    height: 100%;
}

.list-box ul li {
    margin-bottom: 10px;
}

.list-box ul li:last-child {
    margin-bottom: 0;
}

.questionsectionrow h3 {
    margin-bottom: 25px;
}

.question-box {
    background-color: #f5f5f5;
    padding: 55px 120px;
}

.question-radio .form-check-inline:first-child {
    margin-right: 70px;
}

.question-radio .form-check-inline:last-child {
    margin-right: 0;
}

.questio-row {
    border-bottom: 1px solid #ccc;
    padding: 30px 0;
    width: 100%;
}

.questio-row:first-child {
    padding: 0 0 30px;
}

.question-title {
    font-size: 20px;
    width: calc(100% - 160px);
}

.questionsectionrow .row [class*="col-"]:last-child {
    margin-top: 50px;
}

/*live 3 days training end*/

.earning-potential-section .zigzag-box {
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.earning-potential-section h3 {
    font-size: 1.75rem;
    margin-top: 1rem;
    font-weight: bold;
    color: #fff;
}

.earning-potential-section ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.earning-potential-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    list-style: disc;
}

.examples-list li {
    margin-bottom: 1.2rem;
}

.earning-potential-section blockquote {
    font-style: italic;
    border-left: 4px solid #fff;
    padding-left: 1rem;
    margin-top: 1rem;
    color: #f9f9f9;
}

.earning-potential-section .text-muted {
    color: #d1ecf1 !important;
}

.earning-potential-section small {
    color: #fff;
}

.main-heading {
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 2.5rem;
}

.main-heading span {
    font-size: 2rem;
    color: #0062a9;
}

.form-style {
    background-color: #f5f5f5;
    padding: 50px;
    border: 1px solid #ddd;
}

/* Thank you page */
.thank-you-page {
    text-align: center;
    padding: 60px 20px;
}

.thank-you-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #005f96;
}

.thank-you-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
}

.thankyou_banner {
    height: 350px;
    max-width: 100%;
    overflow: hidden;
    margin-top: 110px;
}

.thankyou_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.error{
    color: red;
    font-size: 13px;
}