@charset "UTF-8";
/*

--------------------
  JD Sass Framwork
--------------------


  ------------
  Introduction
  ------------

  This is a lightweight SASS framework, following multiple methodologies
  including BEM, ITCSS, OOCSS, CSS Namespacing and also flex.
  See the readme for more info.
*/
/* ———————————————————————————————————————— */
/* Settings
/* ———————————————————————————————————————— */
/* ———————————————————————————————————————— */
/* Global Settings
/* ———————————————————————————————————————— */
/*---------------
  Colors
  ---------------*/
/*------------
 Spacing
 ------------*/
/*---------------
Typography
---------------*/
/**
  Breakpoints
 */
/* ———————————————————————————————————————— */
/* Tools
/* ———————————————————————————————————————— */
/* ———————————————————————————————————————— */
/* JD - Media Query
/* ———————————————————————————————————————— */
/* ———————————————————————————————————————— */
/* Tools - Clearfix
/* ———————————————————————————————————————— */
/* ———————————————————————————————————————— */
/* Tools - Font Size
/* ———————————————————————————————————————— */
/* ———————————————————————————————————————— */
/* Tools - Fonts
/* ———————————————————————————————————————— */
/*--------------
  Primary Font
--------------*/
/*--------------
 Secondary Font
--------------*/
/* ———————————————————————————————————————— */
/* Tools - Images
/* ———————————————————————————————————————— */
/* ———————————————————————————————————————— */
/* Tools - Cover
/* ———————————————————————————————————————— */
/* ———————————————————————————————————————— */
/* Generic
/* ———————————————————————————————————————— */
/* ———————————————————————————————————————— */
/* Box Sizing
/* ———————————————————————————————————————— */
html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
    font-family: sans-serif;
    /* 1 */
    line-height: 1.15;
    /* 2 */
    -ms-text-size-adjust: 100%;
    /* 3 */
    -webkit-text-size-adjust: 100%;
    /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
    margin: 0;
    height: 100%;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
    display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
    /* 1 */
    display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
    margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
    background-color: transparent;
    /* 1 */
    -webkit-text-decoration-skip: objects;
    /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
    outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    text-decoration: underline dotted;
    /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
    font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
    font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
    background-color: #ff0;
    color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
    display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
    border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
    overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
    /* 1 */
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
    /* 1 */
    text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
    display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
    display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
    display: none;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ———————————————————————————————————————— */
/* Base
/* ———————————————————————————————————————— */
/* ———————————————————————————————————————— */
/* Default Page
/* ———————————————————————————————————————— */
html {
    font-size: 20px;
    line-height: 1.2;
    background: #fff;
    font-weight: 400;
    font-family: 'Quicksand', sans-serif;
    color: #002033;
    overflow-y: scroll;
    min-height: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    overflow: hidden;
}

div {
    position: relative;
}

/* ———————————————————————————————————————— */
/* JD - Base Text
/* ———————————————————————————————————————— */
p {
    color: #002033;
    margin-bottom: 40px;
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    line-height: 24px;
}

/* ———————————————————————————————————————— */
/* JD - Base Headings
/* ———————————————————————————————————————— */
h1, h2, h3, h4, h5, h6 {
    color: #002033;
}

h1 {
    font-size: 41px;
    font-weight: 800;
}

h1 strong {
    color: #00b382;
}

/* payment Gateway */
.pg_wrapper {
    background: #002033;
    height: 100%;
    display: flex;
    justify-content: center;
}

.bg_back {
    background: url('../images/triangles-edited-bottom.png') no-repeat top center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.inner_pg {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_wrapper {
    width: 600px;
    margin: 0 auto;
    text-align: center;
}

.main-logo {
    margin-bottom: 20px;
}

.pg_content {
    background: #f5f6fa;
    padding: 30px 20px;
}

.amount_section {
    position: relative;
    width: 80%;
    margin: 0 auto 20px;
}

.amount_section label {
    text-align: left;
    display: block;
    margin-bottom: 10px;
}

.amount_section input {
    background: #fff;
    color: #a3a3a3;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
    border: 0;
    outline: 0;
    width: 100%;
    height: 55px;
    padding: 0 20px 0 70px;
}

.amount_section .pay_label {
    background: #40b065;
    color: #fff;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
    padding: 13px 20px;
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 30px;
    line-height: 1;
}

.add-on-input {
    display: block;
}

.send_button {
    display: inline-block;
    position: relative;
    padding: 10px 20px;
    border: 2px solid #40b064;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    margin: 20px auto;
    background: #40b064;
    color: #FFF;
    transition: color 0.4s;
}

.send_button:hover {
    background: transparent;
    color: #40b064;
}

.send_button:after {
    content: " ";
    border: 2px solid rgba(0, 0, 0, 0);
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.4s;
}

.send_button:hover:after {
    border: 2px solid #40b064;
    width: calc(100% - 10px);
    height: calc(100% + 15px);
}

.intl-tel-input {
    display: inline-block;
    width: 60%;
}

.intl-tel-input ul.country-list li:before {
    display: none;
}

.intl-tel-input ul.country-list {
    padding: 0;
    margin: 0;
    z-index: 99;
}

.intl-tel-input ul.country-list li {
    font-size: 16px;
}

.intl-tel-input .country-list .country {
    margin: 0;
}

.modal_content .modal_filed_input .intl-tel-input input {
    width: 100%;
}

#error-msg {
    display: block;
    font-size: 12px;
    color: red;
    text-align: left;
    width: 60%;
    margin: 0 auto;
}

.modal_filed_input.searchSelect {
    margin-bottom: 25px;
}

.intl-tel-input .error {
    position: absolute;
}

/* package style */
.modal_content .package-info {
    display: inline-block;
    border: 1px solid;
    width: auto;
    margin-bottom: 10px;
    margin-right: 5px;
    text-align: center;
    padding: 0;
}

span.package_title {
    font-size: 18px;
    padding: 5px 40px;
    display: block;
    position: relative;
    font-weight: 400;
    color: #FFF;
    background: #062033;
}

.modal_content .package-info .package-contain {
    float: none;
    padding: 10px;
    display: block;
    font-size: 17px;
    font-weight: 500;
}

.modal_content .package-info .pac_sel {
    width: 100%;
    cursor: pointer;
}

.modal_content .package-info input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    padding: 0;
    overflow: visible;
}

.modal_content .package-info input[type=checkbox]:checked ~ .check_design {
    background-color: #42b566;
}

.check_design {
    position: absolute;
    top: -10px;
    right: -5px;
    height: 25px;
    width: 25px;
    z-index: 9;
    border-radius: 50%;
}

.check_design:after {
    content: "";
    position: absolute;
    display: none;
}

.modal_content .package-info input[type=checkbox]:checked ~ .check_design:after {
    display: block;
}

.modal_content .package-info .check_design:after {
    left: 9px;
    top: 5px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.fr_mob .intl-tel-input {
    width: 100%;
}

@media (max-width: 700px) {
    h1 {
        font-size: 24px;
    }
}

h2 {
    font-size: 32px;
    font-weight: 300;
}

@media (max-width: 700px) {
    h2 {
        font-size: 21px;
    }
}

h3 {
    font-size: 27px;
    font-weight: 800;
}

@media (max-width: 700px) {
    h3 {
        font-size: 18px;
    }
}

h4 {
    font-size: 20px;
    font-weight: 800;
}

@media (max-width: 700px) {
    h4 {
        font-size: 14px;
    }
}

h5 {
    font-size: 20px;
    font-weight: 300;
}

p {
    font-size: 17px;
}

h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 40px;
}

@media (max-width: 700px) {
    h1, h2, h3, h4, h5, h6, p {
        margin-bottom: 25px;
    }
}

/* ———————————————————————————————————————— */
/* Default Links
/* ———————————————————————————————————————— */
a {
    color: #00a2e1;
    text-decoration: none;
}

/* ———————————————————————————————————————— */
/* JD - Base Input
/* ———————————————————————————————————————— */
input {
    outline: 0;
}

/* ———————————————————————————————————————— */
/* JD - Base List
/* ———————————————————————————————————————— */
ul, ol {
    margin-bottom: 60px;
}

li {
    margin-left: 40px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
    text-align: left;
}

li::before {
    color: #00b382;
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 30px;
    position: absolute;
    top: 0;
    left: 0;
}

/* ———————————————————————————————————————— */
/* Objects
/* ———————————————————————————————————————— */
.o-row--white, .o-row--light, .o-row--primary, .o-row--secondary, .o-row--grey, .o-row--dark {
    display: block;
    position: relative;
}

.o-row--top-angle {
    padding-top: 0px;
}

@media (max-width: 700px) {
    .o-row--top-angle {
        padding-top: 0;
    }
}

.o-row--top-straight {
}

@media (max-width: 700px) {
    .o-row--top-straight {
        padding-top: 30px;
    }
}

.o-row--top-alt-angle {
    padding-top: 0px;
}

.o-row--top-alt-angle.o-row--bottom-alt-angle .o-divide-alt {
    height: 300px;
}

.o-row--top-alt-angle.o-row--bottom-alt-angle article {
    margin-bottom: -65px;
}

@media (max-width: 700px) {
    .o-row--top-alt-angle.o-row--bottom-alt-angle .o-container--sm {
        margin-top: 15px;
    }
}

.o-row--bottom-angle {
    padding-bottom: 150px;
}

@media (max-width: 700px) {
    .o-row--bottom-angle {
        padding-bottom: 260px;
    }
}

.o-row--bottom-straight {
}

@media (max-width: 700px) {
    .o-row--bottom-straight {
        padding-bottom: 45px;
    }
}

.o-row--bottom-straight .o-divide--image, .o-row--bottom-straight .o-divide--image-top {
    bottom: -200px;
}

.o-row--bottom-angle2 {
}

@media (max-width: 700px) {
    .o-row--bottom-angle {
        padding-bottom: 260px;
    }
}

.o-row--bottom-straight {
}

@media (max-width: 700px) {
    .o-row--bottom-straight {
        padding-bottom: 45px;
    }
}

.o-row--bottom-straight .o-divide--image, .o-row--bottom-straight .o-divide--image-top {
    bottom: -200px;
}

.o-row--bottom-alt-angle {
    padding-bottom: 0px;
    z-index: 9;
}

@media (max-width: 700px) {
    .o-row--bottom-alt-angle {
        padding-bottom: 135px;
    }
}

/**
  Row Colours
 */
.o-row--white {
    background-color: white;
}

.o-row--white h1 {
}

.o-row--light {
    background-color: #f9fdff;
}

.o-row--primary {
    background-color: #00b382;
}

.o-row--primary h1, .o-row--primary h2, .o-row--primary h3, .o-row--primary h4, .o-row--primary h5, .o-row--primary h6, .o-row--primary p {
    color: white;
}

.o-row--secondary {
    background-color: #00a2e1;
    color: #fff;
}

.o-row--grey {
    background-color: #113348;
}

.o-row--grey h1, .o-row--grey h2, .o-row--grey h3, .o-row--grey h4, .o-row--grey h5, .o-row--grey h6, .o-row--grey p {
    color: white;
}

.o-row--dark {
    background-color: #002033;
    color: #fff;
}

.o-row--dark h1, .o-row--dark h2, .o-row--dark h3, .o-row--dark h4, .o-row--dark h5, .o-row--dark h6, .o-row--dark p {
    color: white;
}

/**
  Misc Rows
 */
.o-row--image {
    padding-left: 50px;
    padding-bottom: 80px;
}

@media (max-width: 1500px) {
    .o-row--image {
        padding-left: 0px;
    }
}

.o-row--image section {
    float: left;
    text-align: left;
    padding-right: 60%;
    max-width: 100%;
}

@media (max-width: 1500px) {
    .o-row--image section {
        padding-right: 50%;
    }
}

@media (max-width: 1300px) {
    .o-row--image section {
        float: none;
        text-align: center;
        padding-right: 0;
        max-width: 700px;
    }
}

.o-row--image .o-row--image__background {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    bottom: 0;
    height: 100%;
}

@media (max-width: 1500px) {
    .o-row--image .o-row--image__background {
        width: 45%;
    }
}

@media (max-width: 1300px) {
    .o-row--image .o-row--image__background {
        width: 35%;
    }
}

@media (max-width: 1300px) {
    .o-row--image .o-row--image__background {
        display: none;
    }
}

.o-row-shadow {
    box-shadow: inset -3px 12px 11px -11px rgba(0, 0, 0, 0.8);
}

.o-row--last-item {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/**
 * Contianers Control horizontal width / padding sections control vertical padding
 */
.o-container--md, .o-container--lg, .o-container--sm {
    margin: 0 auto;
    padding-top: 0;
    text-align: center;
    position: relative;
    z-index: 100;
    background-color: transparent;
}

.o-container--md {
    max-width: 800px;
}

@media (max-width: 930px) {
    .o-container--md {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.o-container--lg {
    max-width: 1127px;
}

@media (max-width: 1135px) {
    .o-container--lg {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.o-container--sm {
    max-width: 700px;
}

@media (max-width: 730px) {
    .o-container--sm {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ———————————————————————————————————————— */
/* Object - List
/* ———————————————————————————————————————— */
/*--------------
 Main List
--------------*/
.o-list {
    margin-bottom: 0;
}

.o-list__item {
    margin-left: 0;
}

/*--------------
 Inline List
--------------*/
.o-list--inline .o-list__item {
    display: inline-block;
}

.o-divide--dark, .o-divide--grey, .o-divide--white, .o-divide--light, .o-divide--primary {
    position: absolute;
    bottom: -180px;
    left: 0;
    width: 120%;
    height: 230px;
    transform: rotate(-2deg);
}

.o-divide-alt {
    transform: rotate(2deg);
    left: -50px;
    height: 225px;
}

.o-divide--image, .o-divide--image-top {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    opacity: 0.3;
}

.o-divide--image-top {
    top: 0;
    bottom: auto;
}

.o-divide--dark {
    background-color: #002033;
}

@media (max-width: 700px) {
    .o-divide--dark.o-divide-alt {
        height: 200px;
    }
}

.o-divide--grey {
    background-color: #113348;
}

.o-divide--white {
    background-color: white;
}

.o-divide--light {
    background-color: #f9fdff;
}

.o-divide--primary {
    background-color: #00b382;
}

.o-grid--3, .o-grid--2, .o-grid--4 {
    padding-left: 15px;
    padding-right: 15px;
    display: block;
    float: left;
}

.o-grid--3 {
    width: calc(100% / 3);
}

@media (max-width: 700px) {
    .o-grid--3 {
        width: 100%;
    }
}

.o-grid--2 {
    width: calc(100% / 2);
}

@media (max-width: 700px) {
    .o-grid--2 {
        width: 100%;
    }
}

.o-grid--4 {
    width: calc(100% / 4);
}

@media (max-width: 700px) {
    .o-grid--4 {
        width: 50%;
    }
}

.o-grid--right {
    float: right !important;
}

.o-grid--row {
    display: block;
    margin-left: -15px;
    margin-right: -15px;
}

@media (max-width: 700px) {
    .o-grid--row {
        margin-left: 0;
        margin-right: 0;
    }
}

.o-section--sm {
    padding-bottom: 40px;
}

.o-section--md {
    padding-bottom: 60px;
}

.o-section--lg {
    padding-bottom: 75px;
}

.o-footer {
    padding-top: 15px;
}

.o-footer:first-of-type {
    border-bottom: 1px solid black;
}

.o-footer img {
    max-width: 350px;
    margin: 0 auto;
}

.o-footer p {
    margin-bottom: 5px;
}

.o-footer p small {
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
}

.videosuite-logo {
    width: 100px;
    display: inline;
    margin-top: -3px !important;
    padding-left: 5px;
    padding-right: 5px;
    vertical-align: middle;
}

/* ———————————————————————————————————————— */
/* Components
/* ———————————————————————————————————————— */
/* ———————————————————————————————————————— */
/* Components - Buttons
/* ———————————————————————————————————————— */
.c-btn-light {
    background-color: #919295 !important;
}

.c-btn--dark {
    background-color: #002033 !important;
}

.c-btn---banner {
    margin-bottom: 0 !important;
    padding: 10px 15px !important;
    margin-top: 20px !important;
    font-size: 21px !important;
    font-weight: 800 !important;
}

.c-btn, .c-btn-light {
    font-weight: 800 !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 12px 30px;
    text-transform: uppercase;
    transition: 0.2s ease all;
    background-color: #00b382;
    color: #fff;
    font-size: 21px;
    border-radius: 3px;
}

@media (max-width: 700px) {
    .c-btn, .c-btn-light {
        margin-bottom: 25px;
    }
}

.c-btn:hover, .c-btn-light:hover {
    transform: scale(1.07);
}

/* ———————————————————————————————————————— */
/* Components - Intro
/* ———————————————————————————————————————— */
.c-intro__list {
    text-align: left;
    margin-bottom: 60px;
}

@media (max-width: 700px) {
    .c-intro__list {
        margin-top: 40px;
        margin-bottom: 25px;
    }
}

.c-intro__list-item {
    position: relative;
    padding-left: 50px;
    font-size: 17px;
    margin-bottom: 20px;
    color: #fff;
}

.c-intro__list-item::before {
    color: #00b382;
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 30px;
    position: absolute;
    top: 0;
    left: 0;
}

.c-intro {
    padding-top: 40px;
    padding-bottom: 230px;
}

.c-intro__title {
    margin-bottom: 40px;
}

/* ———————————————————————————————————————— */
/* Components - Testimonial
/* ———————————————————————————————————————— */
.c-testimonial__shape {
    position: absolute;
    bottom: -50px;
    left: auto;
    right: 0px;
    width: 100%;
    height: auto;
    opacity: 0.05;
}

.c-testimonial__image {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 40px;
    background-color: white;
    padding: 5px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.c-testimonial__item {
    margin-bottom: 30px;
}

.c-testimonial__item:last-of-type {
    margin-bottom: 0px;
}

.c-testimonial {
    text-align: center;
    overflow: hidden;
}

.c-testimonial .c-testimonial__quote {
    margin-bottom: 10px;
}

.c-testimonial__quote {
    font-size: 20px;
}

.c-testimonial .c-testimonial__info {
    margin-bottom: 0;
    color: #00b382;
}

.c-testimonial .c-testimonial__divide {
    position: absolute;
    bottom: -148px;
    left: 0;
    background-color: #fff;
    width: 120%;
    height: 300px;
    transform: rotate(-10deg);
}

/*scroll*/
.scroll-down {
    padding: 50px 0;
}

.scroll-down .arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: 20px;
}

.scroll-down .arrows path {
    stroke: #fff;
    fill: transparent;
    stroke-width: 2px;
    animation: arrow 2s infinite;
    -webkit-animation: arrow 2s infinite;
}

@keyframes arrow {
    0% {
        opacity: 0
    }
    40% {
        opacity: 1
    }
    80% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

@-webkit-keyframes arrow /*Safari and Chrome*/
{
    0% {
        opacity: 0
    }
    40% {
        opacity: 1
    }
    80% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

.scroll-down .arrows path.a1 {
    animation-delay: -1s;
    -webkit-animation-delay: -1s; /* Safari 和 Chrome */
}

.scroll-down .arrows path.a2 {
    animation-delay: -0.5s;
    -webkit-animation-delay: -0.5s; /* Safari 和 Chrome */
}

.scroll-down .arrows path.a3 {
    animation-delay: 0s;
    -webkit-animation-delay: 0s; /* Safari 和 Chrome */
}

.main-tagh1 {
    font-size: 35px;
    margin-bottom: 30px;
}

.sec-block h4 {
    margin-bottom: 0;
    color: #848484;
}

.main-section {
    padding: 100px 0;
}

section.o-container--sm.sec-block {
    padding: 50px 0 80px;
}

.mobile-mokup-block {
    padding: 80px 0;
}

.o-row--dark.o-row--top-alt-angle.o-row--bottom-alt-angle.video-block {
    padding: 80px 0 120px;
}

.video-block h4 {
    margin-bottom: 30px;
    margin-top: 40px;
}

.child-achieve-block p {
    margin-bottom: 30px;
}

.child-achieve-block ul li {
    font-size: 17px;
    padding-left: 40px;
    margin-bottom: 30px;
}

.child-achieve-block ul li::before {
    font-size: 20px;
}

.client-block {
    padding: 55px 0 0;
}

.client-tag .main-tagh1 {
    margin-bottom: 0;
}

.client-tag {
    padding-bottom: 80px;
}

.trusted-block {
    padding: 80px 0;
}

.trusted-block .main-tagh1 {
    font-size: 28px;
}

.trusted-block h2 {
    margin-bottom: 30px;
}

.trusted-block p {
    margin-bottom: 30px;
}

.trusted-block ul li {
    font-size: 17px;
    padding-left: 40px;
}

.trusted-block ul li::before {
    font-size: 20px;
}

.trusted-block .c-card {
    padding-bottom: 0;
}

.section-apart {
    padding: 80px 0 120px;
}

.section-apart p {
    margin-bottom: 30px;
}

.section-apart p b {
    margin-top: 30px;
    display: block;
    font-size: 25px;
    font-weight: bold;
}

.process-block {
    padding: 40px 0 80px;
}

.accordion-block {
    padding: 80px 0;
}

.accordion-block h4 {
    margin-bottom: 15px;
    background: #0c354e;
    padding: 10px 15px;
    font-size: 18px;
    text-align: left;
    border-radius: 5px;
    cursor: pointer;
}

.accordion-block p {
    margin-bottom: 15px;
    text-align: left;
}

.accordion-content {
    display: none;
}

.accordion-block h3 {
    margin-bottom: 0;
    margin-top: 30px;
}

.accordion-content ul li {
    font-size: 17px;
    padding-left: 40px;
}

.accordion-content ul li::before {
    font-size: 20px;
}

.team-btn {
    background: #fff;
    display: inline-block;
    padding: 14px 75px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    outline: none;
    font-size: 25px;
    margin-top: 20px;
    color: #333333;
}

.o-grid--6 {
    float: left;
    width: 50%;
}

.c-template-box video {
    width: 550px;
    height: 310px;
}

/* ———————————————————————————————————————— */
/* Components - Videos
/* ———————————————————————————————————————— */
.c-video {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    background-color: #00a2e1;
}

.c-video iframe {
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
}

.c-video--title {
    margin-top: 40px;
}

@media (max-width: 700px) {
    .c-video--title {
        margin-top: 10px;
    }
}

.c-quote {
    width: 500px;
    margin: 0 auto;
    font-weight: 500;
    text-align: center;
}

.c-buy-now {
}

@media (max-width: 700px) {
    .c-buy-now {
        margin-top: 85px;
    }
}

.c-buy-now .macbook {
    position: absolute;
    top: -325px;
    left: 50%;
    margin-left: -250px;
    width: 500px;
    display: block;
}

@media (max-width: 700px) {
    .c-buy-now .macbook {
        max-width: 90%;
        margin-left: 0;
        left: auto;
        right: auto;
        top: -225px;
    }
}

.c-logo {
    top: -148px !important;
    padding: 25px 20px;
    position: absolute;
    width: 500px !important;
    margin-left: -250px !important;
    left: 50%;
}

@media (max-width: 700px) {
    .c-logo {
        top: -110px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        left: auto;
        width: auto !important;
    }
}

.c-template-box--img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.c-template-box--img img {
    border-radius: 10px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    padding: 5px;
    background-color: white;
}

.c-card {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
}

@media (max-width: 700px) {
    .c-card {
        padding: 25px 0;
    }
}

.c-card p {
    font-style: italic;
    font-weight: 600;
    margin: 0;
}

.c-features .c-template-box--img {
    padding: 30px;
    max-width: 400px;
}

@media (max-width: 700px) {
    .c-features .c-template-box--img {
        padding: 0px;
        margin-left: auto;
        margin-right: auto;
    }
}

.c-features .c-template-box--img img {
    max-width: 100%;
    float: right;
}

.c-features .text {
    padding: 30px;
    display: flex;
    align-items: center;
}

.c-features .text div p {
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .c-features .text {
        text-align: center;
    }
}

.c-features .text h3 {
    margin-bottom: 15px !important;
}

.c-features .o-grid--2 {
    text-align: left;
}

.c-features .o-grid--2 .c-template-box--img, .c-features .o-grid--2.text {
    height: 239px;
}

@media (max-width: 700px) {
    .c-features .o-grid--2 .c-template-box--img, .c-features .o-grid--2.text {
        height: auto;
    }
}

@media (max-width: 700px) {
    .c-features .o-grid--2.text {
        margin-bottom: 40px;
    }
}

.c-list--item {
    margin-bottom: 40px;
    width: 100%;
}

.o-row--grey .c-list--content, .o-row--dark .c-list--content {
    color: white;
}

.c-list--content--no-heading p {
    margin-top: 20px;
}

.c-list--image {
    width: 30%;
    float: left;
}

.c-list--image img {
    width: 150px;
    height: 150px;
}

@media (max-width: 700px) {
    .c-list--image {
        width: 100%;
    }
}

.c-list--content {
    width: 70%;
    float: right;
    text-align: left;
    margin-top: 20px;
}

@media (max-width: 700px) {
    .c-list--content {
        width: 100%;
        text-align: center;
    }
}

.c-list--content p {
    margin-bottom: 0;
}

.c-list--content h3 {
    margin-bottom: 10px;
}

.c-bonus-box {
    margin-bottom: 60px;
    float: left;
}

.c-bonus-box .heading {
    background-color: #00b382;
    color: white;
    float: left;
    width: 100%;
    padding: 10px 25px;
    text-align: left;
}

.c-bonus-box .heading h3 {
    color: white;
    margin: 0;
}

.c-bonus-box .body {
    float: left;
    width: 58.33333333%;
    text-align: left;
    color: #333;
    padding-right: 10px;
    padding-top: 45px;
    font-size: 20px;
    font-weight: 300;
}

@media (max-width: 720px) {
    .c-bonus-box .body {
        width: 100%;
        padding-top: 20px;
    }
}

@media (max-width: 700px) {
    .c-bonus-box .image {
        float: left;
        width: 100%;
    }

    .c-bonus-box .image img {
        width: 100%;
        display: block;
    }
}

.c-page-break {
    width: 55%;
    height: 3px;
    background-color: #00674a;
    margin: 0 auto;
    margin-bottom: 30px;
}

@media (max-width: 700px) {
    .c-page-break {
        margin-bottom: 25px;
    }
}

.c-down-icon {
    position: absolute;
    bottom: 70px;
    left: 50%;
    margin-left: -48px;
    z-indeX: 100;
    background-color: #00b382;
    border-radius: 100%;
}

@media (max-width: 700px) {
    .c-down-icon {
        bottom: 96px;
    }
}

.c-percentage-stats {
    margin-bottom: 40px;
    margin-top: 40px;
}

@media (max-width: 700px) {
    .c-percentage-stats {
        margin-bottom: 25px;
        margin-top: 25px;
    }
}

.c-percentage-stats img {
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 700px) {
    .c-percentage-stat {
        height: 310px;
    }
}

.c-faq h2 {
    margin-bottom: 30px;
    color: #00b382;
}

.c-banner {
    background-color: #00b382;
    background-size: cover;
    color: white;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9880000;
    box-shadow: -1px -3px 5px 0px rgba(0, 0, 0, 0.59);
    height: 90px;
}

@media (max-width: 850px) {
    .c-banner {
        height: 66px;
    }
}

@media (max-width: 500px) {
    .c-banner {
        height: 52px;
    }
}

.c-banner .inner {
    max-width: 1127px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 500px) {
    .c-banner .inner {
        padding: 0 5px;
    }
}

.c-banner .text {
    float: left;
    width: 40%;
    text-align: right;
    padding-right: 35px;
    padding-top: 10px;
}

@media (max-width: 500px) {
    .c-banner .text {
        padding-right: 15px;
    }
}

.c-banner .text h3 {
    color: white;
}

@media (max-width: 850px) {
    .c-banner .text h3 {
        font-size: 21px;
    }
}

@media (max-width: 850px) {
    .c-banner .text h3 {
        font-size: 15px;
    }
}

@media (max-width: 720px) {
    .c-banner .text {
        width: 30%;
    }
}

.c-banner .countdown {
    float: left;
    width: 30%;
    text-align: left;
    padding-top: 20px;
}

@media (max-width: 850px) {
    .c-banner .countdown {
        padding-top: 10px;
    }
}

.c-banner .countdown h1 {
    display: inline;
    color: white;
}

@media (max-width: 710px) {
    .c-banner .countdown h1 {
        font-size: 35px;
        line-height: 66px;
    }
}

@media (max-width: 550px) {
    .c-banner .countdown h1 {
        font-size: 23px;
        line-height: 41px;
    }
}

.c-banner .button {
    float: right;
    text-align: right;
    width: 30%;
}

@media (max-width: 720px) {
    .c-banner .button {
        width: 40%;
    }
}

@media (max-width: 1020px) {
    .c-banner .button .c-btn, .c-banner .button .c-btn-light {
        font-size: 17px !important;
        margin-top: 15px !important;
    }
}

@media (max-width: 1020px) {
    .c-banner .button .c-btn, .c-banner .button .c-btn-light {
        font-size: 14px !important;
    }
}

@media (max-width: 550px) {
    .c-banner .button .c-btn, .c-banner .button .c-btn-light {
        font-size: 10px !important;
        padding: 7px !important;
    }
}

.c-pricing-table--dark, .c-pricing-table--grey, .c-pricing-table--white {
    padding-top: 25px;
    border-radius: 7px;
}

.c-pricing-table--dark h1, .c-pricing-table--grey h1, .c-pricing-table--white h1 {
    margin-bottom: 10px;
}

.c-pricing-table--dark h2, .c-pricing-table--grey h2, .c-pricing-table--white h2 {
    font-size: 13px;
    margin-bottom: 15px;
    background-color: #ff6961;
    padding: 7px 13px;
    border-radius: 10px;
    display: inline-block;
    color: white !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.1px;
}

.c-pricing-table--dark h3, .c-pricing-table--grey h3, .c-pricing-table--white h3 {
    font-size: 64px;
    margin-bottom: 15px;
    line-height: 64px;
}

.c-pricing-table--dark h4, .c-pricing-table--grey h4, .c-pricing-table--white h4 {
    font-size: 15px;
    margin-bottom: 0px;
}

@media (max-width: 700px) {
    .c-pricing-table--dark, .c-pricing-table--grey, .c-pricing-table--white {
        margin-bottom: 30px;
    }
}

.c-pricing-table--dark {
    background-color: #002033;
    color: white;
}

.c-pricing-table--dark h1, .c-pricing-table--dark h2, .c-pricing-table--dark h3, .c-pricing-table--dark h4 {
    color: white;
}

.c-pricing-table--grey {
    background-color: #113348;
    color: white;
}

.c-pricing-table--grey h2 {
    background-color: #002033;
}

.c-pricing-table--white {
    background-color: white;
}

.c-pricing-table--white h1, .c-pricing-table--white h2, .c-pricing-table--white h3, .c-pricing-table--white h4 {
    color: #002033;
}

.c-pricing-table--white h2 {
    background-color: #002033;
}

.c-pricing-table--shadow {
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
}

.c-pricing-table--img-btn {
    position: absolute;
    bottom: -21px;
    left: 50%;
    margin-left: -130px;
}

.c-pricing-table--img {
    position: relative;
}

@media (max-width: 700px) {
    .c-pricing-table--img {
        margin-bottom: 35px;
    }
}

/* ———————————————————————————————————————— */
/* Utilities
/* ———————————————————————————————————————— */
.col-md-6 {
    width: 50%;
    display: block;
    padding: 15px;
    float: left;
}

@media (max-width: 720px) {
    .col-md-6 {
        width: 100%;
    }
}

.color-dark {
    color: #002033 !important;
}

.p-b {
    padding-bottom: 40px;
}

.img-responsive {
    max-width: 100%;
    display: block;
}

.card {
    box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.59);
    border-radius: 3px;
    padding: 30px 25px;
    margin-bottom: 50px;
}

.card p {
    margin: 0 !important;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.2;
}

.card p span {
    font-size: 21px;
}

.card.orange {
    background-color: #f7a05d;
    color: white;
}

.card.orange p {
    color: white;
}

.card.white {
    background-color: white;
}

.card.white p {
    color: #333333;
}

strong {
    font-weight: 900 !important;
}

em {
    font-style: italic !important;
}

.img-text-row img:after {
    content: '';
    transform: rotate(60deg);
    background-color: #ccc;
    height: 100%;
    width: 150px;
}

.centered {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    display: block;
}

.image {
    float: right;
    width: 41.66666667%;
}

.clearfix:after, .o-row--white:after, .o-row--light:after, .o-row--primary:after, .o-row--secondary:after, .o-row--grey:after, .o-row--dark:after, .o-container--md:after, .o-container--lg:after, .o-container--sm:after, .o-grid--row:after, .c-list--item:after {
    content: "";
    display: table;
    clear: both;
}

ul li {
    font-size: 20px;
}

.buy-btn-img {
    display: block;
    cursor: pointer;
    height: 100%;
    width: 100%;
    background-color: transparent;
    position: absolute;
}

a {
    cursor: pointer;
}

.no-thanks {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding-top: 30px;
    position: relative;
    z-index: 999;
}

.list-agency {
    margin-left: 77px;
}

@media (max-width: 700px) {
    .list-agency {
        margin-left: 0;
    }
}

.buy-btn {
    background: #002033;
    display: inline-block;
    padding: 14px 75px;
    color: #fff;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    outline: none;
    font-size: 25px;
}

.modal_open {
    display: none;
    background: rgba(17, 17, 17, 0.62);
    /*color: #fff;*/
    position: fixed;
    top: 0;
    height: 100%;
    right: 0;
    width: 100%;
}

.modal-tbl {
    display: table;
    width: 100%;
    height: 100%;
}

.modal_cell {
    display: table-cell;
    vertical-align: middle;
}

.modal_open p {
    padding: 20px;
    font-size: 15px;
}

.modal_content .modal_close span, .modal_content .cheque_modal_close span, .modal_content .paytm_modal_close span {
    color: #000;
    position: absolute;
    top: -20px;
    right: -10px;
    font-weight: 600;
    cursor: pointer;
}

.modal_content {
    position: relative;
    background: #fff;
    width: 40%;
    margin: auto;
    padding: 30px 30px 15px 30px;
    border-radius: 8px;
    text-align: center;
}

.modal_content .modal_filed_input i {
    color: #3f3f3f;
    position: absolute;
    top: 10px;
    left: 22%;
    padding-right: 11px;
    border-right: 1px solid #c3c3c3;
    font-size: 17px;
}

.modal_content .modal_filed_input input {
    border: 1px solid #c7c7c7;
    width: 60%;
    padding: 10px 15px 8px 60px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-weight: normal;
    font-size: 14px;
    color: #333;
    height: 35px;
}

.searchSelect .select2-container {
    margin-bottom: 15px;
    font-size: 16px;
    width: 60% !important;
}

li.select2-results__option:before {
    display: none;
}

.select2-results__option {
    margin: 0;
    padding: 5px 10px;
    font-size: 14px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    font-size: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 35px;
    text-align: left;
    padding-left: 10px;
}

.select2-container--default .select2-selection--single {
    height: 35px;
}

.modal_content .modal_filed_input label {
    color: red;
    font-size: 12px;
    display: block;
    text-align: left;
    width: 60%;
    margin: auto;
    margin-bottom: 10px;
}

.modal_content .modal-purchase {
    color: #000;
}

.modal_content .purchase-info {
    width: 60%;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 8px;
    margin: 0 auto 10px;
}

.modal_content .purchase-info .purchase-contain {
    float: right;
}

.modal_content .card {
    margin: 0px auto;
    padding: 20px 30px;
    border-radius: 2px;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 1px solid #e4e4e4;
    margin-top: 25px;
}

.modal_content .card__title {
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}

.modal_content .card__text {
    margin: 25px 0 40px 0;
}

.modal_content .card:not(:first-of-type) {
    display: none;
}

.modal_content .actions {
    text-align: center;
}

.modal_content .btn {
    width: 100px;
    background: #002033;
    font-weight: bold;
    font-size: 14px;
    color: white;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border-radius: 2px;
    padding: 10px 5px;
    border: 0;
    outline: none;
}

.modal_content .btn:hover {
    -webkit-box-shadow: 0 0 0 2px white, 0 0 0 3px #002033;
    box-shadow: 0 0 0 2px white, 0 0 0 3px #002033;
}

.modal_content .bar__container {
    width: 100%;
    margin: 0 auto;
    z-index: 99;
}

.modal_content .bar {
    counter-reset: step;
    margin: 0;
    padding: 0;
}

.modal_content .bar li {
    list-style-type: none;
    position: relative;
    color: #111;
    padding-left: 5px;
    width: 18%;
    display: inline-block;
    text-align: center;
    margin: 0;
}

.modal_content .steps_card {
    clear: both;
}

@media all and (min-width: 500px) {
    .modal_content .bar li {
        text-transform: uppercase;
        font-size: 10px;
    }
}

.modal_content .bar li:before {
    content: counter(step);
    counter-increment: step;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    border: 1px solid #ddd;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: #ddd;
    position: relative;
    color: #333;
}

.modal_content .bar li:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ddd;
    top: 20px;
    left: -50%;
    z-index: -1;
}

.modal_content .bar li:first-child:after {
    content: none;
}

.modal_content .bar li.active:before {
    background: #002033;
    border: 1px solid #002033;
    color: white;
}

.modal_content .bar li.active + li.active:after {
    background: #002033;
}

.modal_content .bar li.active:first-child + li:after:not(.active) {
    background: white;
}

.alert-success, .alert-danger {
    margin-bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    text-align: center;
}
.error.form-group .alert-success,.error.form-group .alert-danger {
    position: relative;
}

.form-horizontal .control-label {
    font-size: 15px;
}

label.error {
    color: red;
    font-size: 12px;
}

body.modal-open {
    overflow: hidden;
}

/* partner payment page*/

.main-payment-wrap {
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 99;
}

.main-payment-wrap .modal_open {
    display: block;
    height: 100%;
    background: none;
}

.main-payment-wrap .modal-tbl {
    display: table;
    width: 100%;
    height: 100%;
}

.main-payment-wrap .modal_cell {
    display: table-cell;
    vertical-align: middle;
}

.main-payment-wrap .modal_open p {
    padding: 20px;
    font-size: 15px;
}

.main-payment-wrap .modal_content .card__title {
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    font-weight: bold;
    font-size: 20px;
}

.main-payment-wrap .modal_content .card__text {
    margin: 0;
    color: #888;
}

.main-payment-wrap .modal_content .btn {
    width: 100px;
    background: #002033;
    font-weight: bold;
    font-size: 14px;
    color: white;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border-radius: 2px;
    padding: 10px 5px;
    border: 0;
    outline: none;
    margin-left: 2px;
}

@media all and (min-width: 500px) {
    .main-payment-wrap .modal_content .bar li {
        text-transform: uppercase;
        font-size: 12px;
    }
}

.main-payment-wrap .card .package_block p {
    margin-bottom: 15px !important;
    padding: 0;
    text-transform: uppercase;
    color: #adadad;
    font-size: 14px;
}

.package_block .block_btn {
    /*background: #db6d56;*/
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

.package_block .btn_2 {
    background: #199c8b;
}

.package_block .btn_3 {
    background: #e5bf3c;
}

.package_block {
    background: rgba(247, 247, 247, 0.3);
    border: 1px solid #dadada;
    border-radius: 5px;
    cursor: pointer;
}

.check-payment .check_btn {
    background: #1987c8;
    border: 0;
    color: #fff;
    padding: 12px 18px;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    font-size: 15px;
}

.check-payment {
    display: inline-block;
    padding: 10px;
    background: #f5f5f5;
    border: 1px solid #c0c0c0;
}

.buy_cheque_block, .buy_paytm_block {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.54);
    z-index: 999;
}

.package_tbl {
    display: table;
    width: 100%;
    height: 100%;
}

.package_cell {
    display: table-cell;
    vertical-align: middle;
}

.paytm-block {
    width: 30%;
    margin: auto;
    background: #f7f7f7;
    padding: 30px;
    overflow: hidden;
}

.buy_cheque_block .modal_filed_input:last-child input {
    margin-bottom: 0;
}

.radio-button {
    display: none;
}

.package_block input:checked + .abc {
    border: 1px solid #2a3542;
    background-color: #2a3542;
    color: #fff;
}

.package_block input:checked + .abc:after {
    content: "\2713";
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    border: 2px solid #fff;
    background-color: #2a3542;
    z-index: 1;
    position: absolute;
    top: -10px;
    right: -10px;
}

.context {
    width: 100%;
    position: absolute;
    top: 50vh;

}

.context h1 {
    text-align: center;
    color: #fff;
    font-size: 50px;
}

.area {
    background: #002033;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

.package_block input[type=radio] {
    position: absolute;
    opacity: 0;
}

.package_block input[type=radio]:checked ~ label {
    position: relative;
}

.package_block input[type=radio]:checked ~ label:after {
    content: "✓";
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    BOX-SHADOW: 0 0 0 2px #fff, 0 0 0 4px #002033;
    background-color: #2a3542;
    z-index: 1;
    position: absolute;
    top: -10px;
    right: -10px;
    color: #fff;
    font-size: 22px;
}

.package_block label {
    display: block;
    padding: 15px;
    margin-bottom: 0;
    cursor: pointer;
}

.package_block h3 {
    font-weight: normal;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 20px;
}

.partner_payment_html {
    height: 100%;
}

.partner_payment_body {
    height: 100%;
}

.area ul li:before {
    content: '';
}

.area ul li {
    margin-left: 0;
    margin-bottom: 0;
    position: inherit;
    padding-left: 0;
    text-align: center;
}

.logo {
    width: 250px;
}

.page-logo {
    margin-bottom: 45px;
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

/* --------------- MENU --------------*/

header {
    position: fixed;
    left: 0;
    right: 0;
    background: #002033;
    z-index: 9999;
    box-shadow: 0 0 2px 1px #0f0f0f;
}

.nvbar-header {
    display: table;
    width: 100%;
    height: 100%;
}

.nav-logo {
    display: table-cell;
    vertical-align: middle;
    float: left;
    padding-top: 10px;
}

.navbar-page {
    display: table-cell;
    vertical-align: middle;
}

.navbar-page ul, .navbar-page ul li {
    margin: 0;
}

.navbar-page ul {
    text-align: right;
}

.navbar-page ul li {
    display: inline-block;
    padding-left: 18px;
}

.navbar-page ul li:before {
    display: none;
}

.navbar-page ul li a {
    font-size: 17px;
    color: #fff;
    text-decoration: none;
    padding: 25px 0;
    transition: all .3s ease;
    display: block;
}

.navbar-page ul li.active a, .navbar-page ul li a:hover {
    color: #00b382;
}

.toggle-bar {
    color: #fff;
    display: none;
}

.terms-block {
    margin-top: 100px;
    margin-bottom: 30px;
}

.terms-block h1 {
    color: #002033;
    font-size: 33px;
    text-align: center;
    margin: 15px 0 0 0;
}

.terms-block div:nth-child(2) {
    padding: 15px;
    margin-top: 10px;
}

.terms-block h4 {
    margin-bottom: 15px;
}

.terms-block p {
    margin-bottom: 20px;
}

.terms-block p:last-child {
    margin-bottom: 0;
}

.privacy-block ul li:before, .privacy-block ol li:before {
    display: none;
}

.privacy-block ul, .privacy-block ol {
    margin: 0;
}

.privacy-block ul li, .privacy-block ol li {
    font-size: 17px;
    list-style-type: decimal;
    padding-left: 10px;
}

.privacy-block b {
    font-weight: bold;
}

section.about-wrap {
    padding-top: 80px;
}

.about-block img {
    display: inline-block;
}

.about-block {
    text-align: center;
}

.about-block-content h4 {
    margin-bottom: 8px;
    font-size: 25px;
}

.about-block-content hr {
    height: 2px;
    background: #00b382;
    width: 40px;
    margin: 10px auto;
}

.about-block-content h6 {
    margin: 0 0 15px 0;
    font-size: 17px;
}

.about-block-img {
    margin-bottom: 15px;
    padding: 18px 0px;
}

.about-block-img {
    position: relative;
    border-bottom: 2px solid #40b065;
}

.about-block-img:before, .about-block-img:after {
    content: "";
    position: absolute;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#40b065), to(transparent));
    background-image: -webkit-linear-gradient(transparent, #40b065);
    background-image: -moz-linear-gradient(transparent, #40b065);
    background-image: -o-linear-gradient(transparent, #40b065);
    background-image: linear-gradient(transparent, #40b065);
    top: -2px;
    bottom: -2px;
    width: 2px;
}

.about-block-img:before {
    left: -2px;
}

.about-block-img:after {
    right: -2px;
}

.team-btn {
    background: #002033;
    display: inline-block;
    padding: 14px 75px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    outline: none;
    font-size: 25px;
    color: #fff;
    margin-bottom: 30px;
}

.contact-detail {
    /*background: rgb(0, 32, 51);*/
    /*margin-top: 40px;*/
}

.contact-block {
    display: table-cell;
    vertical-align: middle;
}

.contact-block span {
    font-weight: bold;
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
    color: #40b065;
}

.contact-block, .contact-block h6 {
    margin-bottom: 0;
    /*color: #fff;*/
    font-size: 17px;
}

.contact-tbl {
    display: table;
    width: 100%;
    height: 100%;
    padding: 40px 0;
}

.contact-block h6 a.white {
    /*color: #fff;*/
}

footer {
    padding: 5px 0;
    background: #002033;
    color: #FFF;
    border: 1px solid #e4e4e4;
}

.f-copyright p {
    margin: 0;
    color:inherit;
    display: inline-block;
    font-size: 13px;
}

.f-copyright li:before {
    display: none;
}

.f-copyright ul, .f-copyright ul li {
    margin: 0;
}

.f-copyright ul {
    float: right;
    display: inline-block;
}

.f-copyright ul li {
    display: inline-block;
    padding: 0 8px;
}

.f-copyright ul li a {
    text-decoration: none;
    font-size: 13px;
    color: inherit;
    vertical-align: middle;
}

/*------- qr code --------*/
.qr-code {
    float: left;
    width: 30px;
    margin: 20px 0 0 155px;
}

.qr-code i {
    color: #FFF;
    font-size: 35px;
    /*margin: 17px 0 0 100px;*/
    cursor: pointer;
}

.qrcode-main {
    text-align: center;
    margin-top: 35px;
}

.qrcode-main img {
    max-width: 300px;
    width: 100%;
}

.qr-buttons {
    text-align: center;
}

.qr-buttons li {
    display: inline-block;
    padding: 0;
    margin: 30px 0 0 0;
    width: 26%;
}

.qr-buttons ul {
    margin: 0 0 35px 0;
}

.qr-buttons li img {
    width: 100%;
}

.qr-buttons li:before {
    display: none;
}

.qr-model .close {
    position: absolute;
    right: 10px;
    z-index: 999;
    font-size: 44px;
    top: 5px;
}

/*------- franchise code --------*/
.franchise_body {
    height: 100%;
}

.radio-btn-step ul {
    margin: 0 0 15px 0;
}

.radio-btn-step ul li {
    color: #888;
    display: block;
    position: relative;
    width: auto;
    height: auto;
    border: none;
    padding: 10px 0;
    margin: 0 0 0 30%;
    text-indent: 40px;
}

.radio-btn-step ul li input[type=radio] {
    position: absolute;
    visibility: hidden;
}

.radio-btn-step ul li label {
    display: block;
    position: relative;
    /*font-weight: 300;*/
    font-size: 18px;
    padding: 0;
    margin: 0;
    height: 30px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
}

.radio-btn-step ul li:hover label {
    color: #000;
}

.radio-btn-step ul li .check {
    display: block;
    position: absolute;
    border: 5px solid #888;
    border-radius: 100%;
    height: 31px;
    width: 31px;
    top: 6px;
    left: 0;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}

.radio-btn-step ul li:before {
    display: none;
}

.radio-btn-step ul li:hover .check {
    border: 5px solid #000;
}

.radio-btn-step ul li .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 15px;
    width: 15px;
    top: 3px;
    left: 3px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

.radio-btn-step input[type=radio]:checked ~ .check {
    border: 5px solid #002033;
}

.radio-btn-step input[type=radio]:checked ~ .check::before {
    background: #002033;
}

.radio-btn-step input[type=radio]:checked ~ label {
    color: #002033;
}

.radio-btn-step ul li .modal_filed_input {
    margin-top: -7px;
    display: block;
}

.radio-btn-step ul li i {
    left: 15px !important;
}

.radio-btn-step ul li input[type="text"] {
    width: 200px;
}

/*Thank you page start*/
.tx-page {
    display: table;
    position: absolute;
    height: 100%;
    z-index: 999;
    width: 100%;
}

.tx-in-page {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    width: 100%;
    text-align: center;
}

.tx-in-page h1 {
    color: #FFF;
    font-size: 50px;
    margin: 10px 0 20px;
}

.tx-in-page p {
    padding: 0 10px;
    margin: 0;
    color: #FFF;
    font-size: 17px;
    letter-spacing: 1.5px;
}

.tx-in-page a {
    color: #FFF;
    font-size: 15px;
    letter-spacing: 1.5px;
    border: solid 1px #FFF;
    padding: 12px 0;
    margin: 20px auto 0;
    display: block;
    width: 220px;
    border-radius: 25px;
}

.tx-in-page a:hover {
    background: #FFF;
    color: #002033;
    text-decoration: none;
}

/*  index page  modal */

#discountList.modal {
    text-align: center;
    padding: 0 !important;
}

#discountList.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

#discountList .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

#discountList .modal-title i {
    margin-right: 10px;
    font-size: 30px;
    vertical-align: bottom;
}

.listButton {
    position: absolute;
    top: 15px;
    right: 10px;
    box-shadow: 7px 7px 0 0px #fff;
    border: 2px solid #062033;
    display: inline-block;
    cursor: pointer;
    background: #FFF;
    border-radius: 5px;
    padding: 0px 3px;
}

.listButton .listDiscount {
    padding: 5px;
    color: #062033;
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
    text-align: center;
    background: #FFF;
    outline: 0;
    border: none;
    vertical-align: middle;
}

.listButton i {
    color: #062033;
    font-size: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.listButton:hover .listDiscount,
.listButton:hover i {
    color: #FFF;

}

.listButton:hover,
.listButton:hover .listDiscount {
    background: #062033;
}

.discount_table th {
    font-weight: bold;
}

.discount_calculation {
    position: relative;
    width: 60%;
    margin: 20px auto;
}

.discount_desc {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    position: relative;
}

.discount_desc .title {
    text-align: left;
    display: inline-block;
    float: left;
}

.discount_desc .amount {
    text-align: right;
    display: inline-block;
    float: right;
}

.modal_content .package-info .pac_sel.disabled-checkbox {
    cursor: not-allowed;
    opacity: 0.5;
}

.field_icon {
    position: absolute;
    right: 22%;
    top: 15%;
}
.chief-advisor-content p {
    margin-bottom: 15px;
}

.chief-advisor-content ol {
    margin-bottom: 25px;
}

.ref_block {
    display: block;
    overflow: hidden;
    font-size: 15px;
}

.ajax-form{
    overflow: hidden;
}
form#international_payment_form {
    overflow: hidden;
}
/* --------------- START RESPONSIVE --------------*/

@media (max-width: 1499px) {
    .modal_content {
        width: 50%;
    }

    .modal_content .overflow_scroll {
        overflow-y: scroll;
        max-height: 530px;
    }

    .modal_content .overflow_scroll .actions {
        margin-bottom: 20px;
    }

    /*MODAL*/
    .main-payment-wrap .modal_content .card {
        padding: 20px 15px;
    }

    .main-payment-wrap .modal_content .modal_filed_input input {
        padding: 10px 15px 10px 50px;
    }

    .main-payment-wrap .paytm-block .modal_filed_input input {
        width: 100%;
    }

    .main-payment-wrap .paytm-block .modal_filed_input i {
        left: 4%;
    }

    .main-payment-wrap .selected_block img {
        width: 60px;
    }

    .main-payment-wrap .package_block h3 {
        font-size: 18px;
    }

    .package_block .block_btn {
        padding: 6px 16px;
    }

    .check-payment .check_btn {
        padding: 8px 16px;
    }

    .main-payment-wrap .modal_content .bar li {
        width: 18%;
    }

}

@media (max-width: 1199px) {
    /*ABOUT*/
    .about-block-img {
        padding: 15px;
    }

    .navbar-page {
        display: block;
    }

    /*----- qr code -----*/
    .qr-code {
        margin: 15px 0 0 40px;
    }
    /*----- partner -----*/
    .package_block .abc img{
        width: 70px;
    }
}

@media (max-width: 991px) {
    .toggle-bar {
        margin-top: 15px;
        cursor: pointer;
        display: block;
        z-index: 99;
        position: absolute;
        right: 0;
    }

    .navbar-page, .nav-logo {
        display: block;
        padding-top: 0;
    }

    .navbar-page ul li {
        display: block;
        padding: 0;
        width: 100%;
    }

    .navbar-page ul li a {
        font-size: 14px;
        padding: 12px 15px;
    }

    .navbar-page {
        display: none;
        position: absolute;
        width: 100%;
        background: #0e2939;
        top: 100%;
    }

    .nvbar-header {
        padding: 15px 0;
    }

    .terms-block h1 {
        font-size: 30px;
    }

    .terms-block p, .privacy-block {
        padding: 0;
    }

    /*About*/
    .about-block-content h4 {
        font-size: 22px;
    }

    section.about-wrap {
        margin-top: 50px;
    }

    .about-block-content p {
        margin-bottom: 0;
    }

    .about-block {
        margin-bottom: 30px;
    }

    .modal_content {
        width: 90%;
    }

    .modal_content .card__title {
        font-size: 18px;
    }

    .modal_open p {
        font-size: 14px;
        padding: 15px 0;
    }

    /*MODAL*/
    .margin-bottom-s {
        margin-bottom: 15px;
    }

    .package_block .block_btn {
        width: 100%;
    }

    .paytm-block {
        width: 50%;
    }

    .main-tagh1, .trusted-block h2 {
        font-size: 25px;
    }

    p {
        padding: 0 15px;
    }

    p, .c-intro__list-item, .trusted-block ul li {
        font-size: 14px;
    }

    .o-container--md {
        max-width: 700px;
    }

    section.o-container--sm.sec-block {
        padding: 20px 0 50px;
    }

    .mobile-mokup-block {
        padding: 50px 0;
    }

    .mobile-mokup-block .c-template-box--img {
        margin-top: 0;
    }

    .o-row--dark.o-row--top-alt-angle.o-row--bottom-alt-angle.video-block {
        padding: 50px 0 80px;
    }

    .child-achieve-block ul li::before, .trusted-block ul li::before {
        font-size: 18px;
    }

    .child-achieve-block ul li {
        line-height: 22px;
        font-size: 14px;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .c-template-box video {
        width: 330px;
        height: 240px;
    }

    .accordion-block h4 {
        font-size: 16px;
    }

    .team-btn, .buy-btn {
        padding: 10px 40px;
        font-size: 20px;
    }

    .client-block {
        padding: 50px 0 0;
    }

    .c-testimonial__quote {
        font-size: 15px;
    }

    .client-tag {
        padding-bottom: 50px;
    }

    .trusted-block {
        padding: 50px 0;
    }

    .section-apart {
        padding: 50px 0 80px;
    }

    .process-block {
        padding: 10px 0 50px;
    }

    .accordion-block {
        padding: 50px 0;
    }

    /*----- qr-code   ----*/
    .qr-code {
        margin: 10px 0 0 10%;
    }

}

@media (max-width: 767px) {
    .intl-tel-input {
        width: 90%;
    }

    .listDiscount {
        display: none
    }

    .listButton i {
        display: block;
        margin: 3px;
    }

    #discountList .modal-title i {
        font-size: 18px;
    }

    .discount_calculation {
        width: 100%;
    }

    .discount_desc {
        font-size: 14px;
        font-weight: 500;
    }

    .field_icon {
        right: 3%;
    }

    .nav-logo {
        width: 175px;
        padding-left: 15px;
    }

    .toggle-bar {
        margin: 10px 15px 0 0;
    }

    .terms-block h1 {
        font-size: 25px;
    }

    .terms-block div:nth-child(2) {
        margin-top: 0;
    }

    .terms-block {
        margin-top: 80px;
    }

    .f-copyright {
        text-align: center;
    }

    .f-copyright p {
        float: none;
        text-align: center
    }

    .f-copyright ul {
        text-align: center;
        float: none;
    }

    /*ABOUT*/
    .about-block-img {
        width: 70%;
        margin: 0 auto 15px;
        border-bottom: none;
    }

    .about-block-img:after, .about-block-img:before {
        display: none;
    }

    .about-block-content h4 {
        font-size: 18px;
    }

    .contact-block, .contact-block h6 {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .contact-block {
        display: block;
    }

    .contact-tbl {
        padding: 30px 0;
    }

    .mobile-mokup-block {
        padding: 30px 0;
    }

    section.o-container--sm.sec-block {
        padding: 20px 0 30px;
    }

    .o-row--dark.o-row--top-alt-angle.o-row--bottom-alt-angle.video-block {
        padding: 30px 0 30px;
    }

    .o-row--top-alt-angle.o-row--bottom-alt-angle .o-container--sm {
        margin-top: 0;
    }

    .main-tagh1 {
        margin-bottom: 15px;
    }

    .video-block h4 {
        margin-bottom: 15px;
    }

    .video-block p {
        margin-bottom: 0;
    }

    .c-testimonial .c-testimonial__quote {
        padding: 0 15px;
    }

    .client-block {
        padding: 30px 0 0;
    }

    .c-intro__list {
        margin-top: 15px;
    }

    .o-row--bottom-straight {
        padding-bottom: 30px;
    }

    .trusted-block {
        padding: 30px 0;
    }

    .trusted-block p {
        margin-bottom: 0;
    }

    .section-apart {
        padding: 30px 0 30px;
    }

    .process-block {
        padding: 30px 0 0;
    }

    .accordion-block {
        padding: 30px 0 30px !important;
    }

    section.about-wrap {
        margin-top: 0;
    }

    section.about-wrap {
        padding-top: 50px;
    }

    .team-btn {
        margin-bottom: 0;
    }

    .o-divide--dark.o-divide-alt {
        display: none;
    }

    .buy-btn {
        padding: 10px 60px;
        font-size: 20px;
    }

    .modal_content .modal_filed_input input {
        width: 100%;
        padding: 10px 8px 10px 50px;
    }

    .modal_content .modal_filed_input i {
        left: 14px;
        font-size: 14px;
        top: 12px;
    }

    .modal_content .bar li::after {
        top: 15px;
    }

    .modal_content .overflow_scroll {
        max-height: 200px;
    }

    .modal_content .actions {
        margin-top: 10px;
        text-align: center;
    }

    .modal_content .purchase-info {
        width: 100%;
    }

    .modal_content .card {
        margin-top: 15px;
    }

    /*MODAL*/
    .main-payment-wrap .modal_content .card {
        padding: 15px 15px;
    }

    .main-payment-wrap .modal_content {
        padding: 10px;
    }

    .main-payment-wrap .modal_content .overflow_scroll .actions {
        margin-bottom: 15px;
    }

    .main-payment-wrap .modal_open p {
        padding: 10px;
    }

    .main-payment-wrap .modal_content .modal_filed_input i {
        left: 4%;
        top: 12px;
    }

    .main-payment-wrap .modal_content .modal_filed_input input {
        padding: 8px 15px 8px 50px;
    }

    .package_cell {
        padding: 0 10px;
    }

    .paytm-block {
        width: 100%;
    }

    .main-payment-wrap .package_block h3 {
        margin-bottom: 0;
    }

    .main-payment-wrap .modal_open p {
        margin-bottom: 0;
    }

    .form-group {
        margin-bottom: 0;
    }

    .package_block input[type="radio"]:checked ~ label::after {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 15px;
    }

    .o-grid--6 {
        width: 100%;
    }

    .o-row--bottom-alt-angle {
        padding-bottom: 0;
    }

    .mobile-mokup-block .c-template-box--img {
        margin-bottom: 25px;
    }

    .main-tagh1, .trusted-block h2 {
        font-size: 20px;
        padding: 0 15px;
    }

    .client-tag {
        padding-bottom: 0;
    }

    .trusted-block .main-tagh1 {
        font-size: 20px;
    }

    .o-row--top-alt-angle.o-row--bottom-alt-angle article {
        display: none;
    }

    .modal_content .bar li {
        display: none;
    }

    .modal_content .bar li.active {
        font-size: 12px;
        display: block;
        position: absolute;
        height: 70px;
        padding: 0;
        width: 45px;
        left: 0;
        right: 0;
        margin: auto;
        background: #FFF;
    }

    .modal_content .steps_card {
        margin-top: 80px;
    }

    .radio-btn-step ul li {
        margin: 0;
    }

    .radio-btn-step ul li label {
        font-size: 17px;
    }

    .page-logo {
        margin-bottom: 15px;
    }

    .modal_content .modal_filed_input label {
        width: 100%;
    }

    /*.modal_content .bar li.active:last-child{}*/
    /*.main-payment-wrap .modal_content .bar li{*/
    /*width: 100%;*/
    /*}*/
    .modal_content .bar li::before {
        width: 40px;
        height: 40px;
        line-height: 35px;
        font-size: 27px;
    }

    .modal_content .bar li:after {
        display: none;
    }

    /*------- qr coed -------*/
    .qr-code {
        float: left;
        width: 30px;
        margin: 5px 0 0 45px;
    }

    .qr-buttons li {
        margin: 10px 0 0 0;
        width: 48%;
    }
    .intl-tel-input{
        width: 90%;
    }
    .listDiscount{display: none}
    .listButton i{
        display: block;
        margin: 3px;
    }
    #discountList .modal-title i {
        font-size: 18px;
    }

    .discount_calculation {
        width: 100%;
    }
    .discount_desc{
        font-size: 14px;
        font-weight: 500;
    }
    /* eye */
    .field_icon{
        right:3%;
    }
    /* payment Gateway */
    .pg_wrapper .main_wrapper {
        width:400px;
    }
    .pg_wrapper .main_wrapper .pg_content{
        max-height: 380px;
    }
    .pg_wrapper .main_wrapper .pg_content .amount_section{
        width: 100%;
    }

}

@media (max-width: 600px) {
    /*ABOUT*/
    .about-block {
        width: 70%;
        margin: 0 auto 30px;
    }

    .modal_content .overflow_scroll {
        max-height: 180px;
    }

    /*MODAL*/
    .main-payment-wrap .modal_content .overflow_scroll {
        max-height: 200px;
    }

}

@media (max-width: 479px) {
    .listButton {
        top: 7px;
        right: 5px;
    }

    /*ABOUT*/
    .about-block {
        width: 100%;
        margin: 0 auto 30px;
    }

    .about-block-img {
        width: 100%;
        padding: 0;
    }

    .sec-block h4 {
        padding: 0 15px;
    }

    .modal_content .bar li {
        font-size: 10px;
        width: 22%;
    }

    /*.modal_content .bar li::before {*/
    /*width: 30px;*/
    /*height: 30px;*/
    /*line-height: 30px;*/
    /*}*/
    .modal_content .card {
        padding: 10px;
    }

    .modal_content {
        padding: 30px 10px 15px 10px;
    }

    .modal_content .modal_close span {
        top: -11px;
        right: 0;
    }

    .modal_content {
        width: 100%;
    }

    .modal_cell {
        padding: 0 10px;
    }

    .check-payment .check_btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    /*MODAL*/
    .modal_content .overflow_scroll {
        max-height: 250px;
    }

    .main-payment-wrap .modal_content {
        padding: 15px 10px;
    }

    .main-section {
        padding: 100px 0;
    }

    .c-page-break, .c-intro__list {
        margin-bottom: 0;
    }
    /* web */
    .listButton{
        top: 7px;
        right: 5px;
    }
    .main-payment-wrap .modal_content .card{
        max-height: 250px;
        overflow-y: scroll;
    }
    /* payment Gateway */
    .pg_wrapper .main_wrapper {
        width:300px;
    }
}

@media (max-width: 320px) {

}