/* @import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,700,900|Open+Sans:300,400,600,700'); */

#jqcheck {
    background: #fff9d7;
    text-align: center;
    color: #333;
    padding: 10px 0px;
    font-size: 13px;
    font-weight: bold;
    position: fixed;
    z-index: 9991;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

* {
    margin: 0px;
    padding: 0px;
}

/* text selection color */

::-moz-selection {
    background: var(--primary-color);
    color: var(--theme-white);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--theme-white);
    text-shadow: none;
}

/* browser scroller style */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    background-color: #ecedf1;
    -webkit-border-radius: 0px;
    border-left: 1px solid #888;
}

::-webkit-scrollbar-thumb:vertical {
    -webkit-border-radius: 0px;
    background: var(--primary-color);
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    select {
        -webkit-appearance: none !important;
        line-height: 28px !important;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--default-color);
    font-size: var(--base-font-size);
    position: relative;
}

/* font family */

.ff-primary {
    font-family: 'Poppins', sans-serif;
}

.ff-secondary {
    font-family: 'Poppins', sans-serif;
}

/* font colors */

.fc-primary {
    color: var(--primary-color);
}

.fc-secondary {
    color: var(--secondary-color);
}

.fc-dark {
    color: var(--theme-dark);
}

.fc-lite {
    color: var(--theme-lite);
}

/* buttons */

.primary-btn,
.secondary-btn {
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 8px 15px;
    position: relative;
    display: table;
    border-radius: 3px;
}

.primary-btn:after,
.secondary-btn:after {
    content: "\e957";
    font-family: 'icomoon' !important;
    font-size: 13px;
    color: white;
    padding-left: 10px;
    display: table-cell;
    vertical-align: middle;
}

.primary-btn {
    background: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background: var(--primary-color-dark);
    color: white;
}

.secondary-btn {
    background: var(--secondary-color);
    color: white;
}

.secondary-btn:hover {
    background: var(--secondary-color-dark);
    color: white;
}

.banner-btn {
    text-transform: capitalize;
    display: inline-block;
    transform: translateY(0rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #fff !important;
    background-color: transparent;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #fff !important;
}

.secpad-100 {
    padding: 100px 0;
}

.sm-btn {
    font-size: 14px;
}

.md-btn {
    font-size: 16px;
}

.lg-btn {
    font-size: 18px;
}

.xl-btn {
    font-size: 20px;
}

/* headings */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p {
    margin: 0;
    padding: 0;
}

h1,
.h1,
h2,
.h2 {
    font-family: 'Poppins', sans-serif;
}

h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: 'Poppins', sans-serif;
    padding-bottom: 10px;
    color: var(--theme-dark);
}

h2,
.h2 {
    font-size: 6.7vmin;
}

h3,
.h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
}

h4,
.h4 {
    font-size: var(--font-size-h4);
}

h5,
.h5 {
    font-size: var(--font-size-h5);
}

h6,
.h6 {
    font-size: var(--font-size-h6);
}

p {
    /*font-size: var(--base-font-size);*/
}

p {
    font-weight: 400;
    line-height: 1.4;
    padding: 0 0 20px;
    margin: 0px;
    color: #687087;
}

/*** theme sections padding ***/

.sec-padding-100 {
    padding: 100px 0;
}

.sec-padding-90 {
    padding: 90px 0;
}

.sec-padding-80 {
    padding: 80px 0;
}

.sec-padding-70 {
    padding: 70px 0;
}

.sec-padding-60 {
    padding: 60px 0;
}

.sec-padding-xlarge {
    padding: 50px 0;
}

.sec-padding-large {
    padding: 40px 0;
}

.sec-padding-medium {
    padding: 30px 0;
}

.sec-padding-small {
    padding: 25px 0;
}

.sec-padding-xsmall {
    padding: 10px 0;
}

/*** theme sections margin ***/

.sec-margin-100 {
    margin: 100px 0;
}

.sec-margin-90 {
    margin: 90px 0;
}

.sec-margin-80 {
    margin: 80px 0;
}

.sec-margin-70 {
    margin: 70px 0;
}

.sec-margin-60 {
    margin: 60px 0;
}

.sec-margin-xlarge {
    margin: 50px 0;
}

.sec-margin-large {
    margin: 40px 0;
}

.sec-margin-medium {
    margin: 30px 0;
}

.sec-margin-small {
    margin: 25px 0;
}

.sec-margin-xsmall {
    margin: 10px 0;
}

/*** no padding, no marging ***/

.p-0 {
    padding: 0;
}

.pt-0 {
    padding-top: 0px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pl-0 {
    padding-left: 0px;
}

.pr-0 {
    padding-right: 0px;
}

.m-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0px;
}

.mb-0 {
    margin-bottom: 0px;
}

.ml-0 {
    margin-left: 0px;
}

.mr-0 {
    margin-right: 0px;
}

.tt-uppercase {
    text-transform: uppercase;
}

.tt-capitalize {
    text-transform: capitalize;
}

p strong {
    color: black;
}

p span {
    color: black;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

img {
    border: 0px;
    outline: none;
}

/*img { max-width: 100%;  }*/

ul,
li {
    list-style-type: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

h2,
.h2 {
    color: #171717;
    line-height: 1.2;
    font-weight: 700;
    padding: 0 0 15px 0;
    position: relative;
    letter-spacing: -1px;
}

h2 span,
.h2 span {
    color: var(--primary-color);
}

a {
    text-decoration: none;
}

.list-simple {
    list-style: none;
    margin: 0 0 15px 0;
    width: 100%;
    display: inline-block;
}

.list-simple li {
    color: var(--default-color);
    padding: 0 0 10px 16px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

.list-simple li:before {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 13px;
    color: var(--secondary-color);
    content: "\e93a";
    font-family: 'icomoon' !important;
}

/*** morefull block link ***/

.moreFull {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-indent: -9999px;
}

/*** transition ***/

.transition {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*** scale with transition ***/

.scale-with-transition {
    -webkit-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

/* header 
------------------------------------*/

header {}

header .top-header {
    padding: 15px 0;
}

header .top-header .logowrp {}

header .top-header .logowrp img {
    width: 230px;
}

header .top-header .navwrp {}

header .top-header .navwrp ul {
    margin: 0;
    display: block;
    text-align: right;
}

header .top-header .navwrp ul li {
    display: inline-block;
    margin: 0 0 0 26px;
}

header .top-header .navwrp ul li a {
    color: #222;
    font-weight: 500;
}

header .top-header .navwrp ul li a.bntwrp {
    background: #f8b105;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
}

header .top-header .navwrp ul li i {
    color: #135ecf;
    margin: 0 4px 0 0;
}

header .bottom-header {
    background: #135ecf;
    display: block;
    text-align: center;
    padding: 10px 0;
}

header .bottom-header ul {
    margin: 0;
}

header .bottom-header ul li {
    display: inline-block;
    margin: 0 20px;
}

header .bottom-header ul li a {
    color: #fff;
}

.home-bannerwrp {
    background-image: url(../images/Rectangle1.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 150px;
    background-position: center;
    position: relative;
    z-index: 1;
}

.home-bannerwrp span.overlaywrp {
    position: absolute;
    background: #0201018a;
    width: 100%;
    height: 100%;
    top: 0;
}

.home-bannerwrp .txtwrp h1 {
    color: #fff;
    padding: 0 0 20px;
    font-size: 42px;
    font-weight: 600;
}

.home-bannerwrp .txtwrp p {
    color: #fff;
    font-size: 16px;
}

.home-bannerwrp .btnwrp {
    display: block;
    padding: 30px 0 0;
}

.btn-1 {
    background: #135ecf;
    color: #fff;
    padding: 17px 30px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-2 {
    background: #f8b105;
    color: #fff;
    padding: 17px 30px;
    font-weight: 600;
    border-radius: 5px;
    margin: 0 0 0 10px;
}

.home-bannerwrp .client-logowrp {}

.home-bannerwrp .client-logowrp ul {
    margin: 100px 0 0;
    display: block;
    text-align: center;
}

.home-bannerwrp .client-logowrp ul li {
    display: inline-block;
    margin: 0 20px;
}

.home-bannerwrp .client-logowrp ul li img {
    width: 170px;
}

.counter-section {
    margin: -70px 0 0;
    position: relative;
    z-index: 1;
    padding: 0 0 0px;
}

.counter-section .mainwrp {
    background: #fff;
    padding: 40px 0;
    box-shadow: -1px 1px 15px 0px rgb(80 77 77 / 24%);
}

.counter-section .mainwrp .top-content {}

.counter-section .mainwrp .top-content ul {
    margin: 0;
    text-align: center;
}

.counter-section .mainwrp .top-content ul li {
    display: inline-block;
    margin: 0 32px;
    border-right: 1px solid #f7e1e1;
    padding: 0 25px 0 0;
    vertical-align: middle;
}

.counter-section .mainwrp .top-content ul li img {
    width: 50px;
    margin: 0 0 20px;
}

.counter-section .mainwrp .top-content ul li h4 {
    color: #163040;
}

.counter-section .mainwrp .top-content ul li span {}

.counter-section .mainwrp .bottom-nav {}

.counter-section .mainwrp .bottom-nav ul {
    margin: 30px 0 0;
    display: block;
    text-align: center;
}

.counter-section .mainwrp .bottom-nav ul li {
    display: inline-block;
    width: 18%;
    margin: 0 -1px;
    border-right: 1px solid #f7e1e1;
    padding: 0 25px 0 0;
    vertical-align: middle;
}

.counter-section .mainwrp .bottom-nav ul li img {
    width: 90px;
}

.counter-section .mainwrp .bottom-nav ul li span {
    text-align: left;
    display: block;
    color: #163040;
}

.upr-head {
    color: #135ecf;
    font-size: 19px;
}

.main-heading {
    color: #163040;
    font-size: 32px;
    font-weight: 600;
}

.main-pera {
    color: #163040;
    font-size: 16px;
}

.simple-section {
    padding: 70px 0;
}

.simple-section .txtwrp {
    display: block;
    text-align: center;
    width: 70%;
    margin: 0 auto 40px;
}

.simple-section .txtwrp h2 {
    font-size: 38px;
}

.simple-section .txtdiv ul {
    margin: 0 0 30px;
}

.simple-section .txtdiv ul li {
    display: inline-block;
    width: 49%;
    margin: 0 0 14px 0px;
    position: relative;
    padding: 0 0 0 23px;
}

.simple-section .txtdiv ul li:after {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #135ecf;
}

.simple-section .imgwrp {}

.simple-section .imgwrp img {
    width: 100%;
}

.cta-grey-section {
    background-image: url(../images/cta-image.webp);
    /* padding: 20px 0; */
    background-size: cover;
    /* background-color: #122471; */
}

.inner-layer {
    padding: 40px 0px;
    background: url(../images/cta-image.png);
    /* background-size: cover; */
    background: #135ecf;
}

.cgrey-text h6 {
    color: #fff;
    font-weight: 600;
    font-size: 30px;
    text-transform: capitalize;
}

.cgrey-text p {
    color: #f7f7f7;
    font-size: 20px;
}

.col-lg-9.cgrey-text {
    text-align: center;
}

.cgrey-btns .btnwrp .btn-one {
    padding: 10px 15px;
}

.cgrey-btns .btnwrp .btn-one:hover {
    background-color: #0000;
    color: #fff;
}

.cgrey-btns .btnwrp {
    margin: 13px 0;
    text-align: center;
}

.cgrey-btns .btnwrp a {
    margin: 0;
    margin-left: 20px;
}

.cgrey-btns .btnwrp .btn-secnd {
    color: #fff;
    padding: 10px 15px;
}

.cgrey-btns .ul-flex {
    display: flex;
    justify-content: center;
    padding-left: 35px;
    padding-right: 35px;
    margin-top: 40px;
}

.cgrey-btns .ul-flex li {
    color: #fff;
    margin-left: 45px;
}

.cgrey-btns {
    text-align: right;
}

.cgrey-btns .star {
    color: #ffb202;
    display: inline-block;
}

/*cta-red*/

.cta-red-section .btn-one {
    color: #000;
    padding: 10px 15px;
    background-color: #ffffff !important;
    border-color: #ffffff !important;
}

.cta-red-section .btn-secnd {
    color: #ffffff;
    padding: 10px 15px;
    margin-left: 15px;
}

.cta-red-section .btn-three {
    background-color: #f43535;
    font-size: 16px;
    border-radius: 7px;
    font-weight: 500;
    transition: 0.5s all;
    border: 1px solid #f43535;
    color: #ffffff;
    padding: 10px 15px;
}

.cta-red-section {
    background-image: url(../images/cta-1.png);
    padding: 20px 30px;
    background-size: cover;
}

.cred-text h3 {
    color: #fff;
    font-weight: 700;
    font-size: 35px;
}

.cred-text p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    word-spacing: 2px;
}

.cred-btns .btnwrp .btn-one {
    border-radius: 30px !important;
}

.cred-btns .btnwrp .btn-one:hover {
    background-color: #0000;
    color: #fff;
}

.cred-btns .btnwrp {
    margin: 13px 0;
}

.cred-btns .btnwrp .btn-secnd {
    border-radius: 30px !important;
    color: #fff;
}

.cred-btns .ul-flex {
    display: flex;
    justify-content: center;
    padding-left: 35px;
    padding-right: 35px;
    margin-top: 40px;
}

.cred-btns .ul-flex li {
    color: #fff;
    margin-left: 45px;
}

.cred-btns {
    text-align: right;
}

.cred-text {
    align-self: center;
}

.cred-btns .star {
    color: #ffb202;
    display: inline-block;
}

.cred-text .btnwrp {
    display: block;
    margin: 20px 0;
}

.cred-text .btnwrp a {
    margin: 0;
    margin-left: 20px;
}

.cgrey-btns .btnwrp a.btn-1 {
    background: #fff;
    color: #000;
}

.home-btm-section {
    background-color: #f9f9f9;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.home-btm-section .testiwrp {
    width: 86%;
    float: right;
}

.home-btm-section .testiwrp ul {
    display: block;
    text-align: center;
    margin: 0;
}

.home-btm-section .testiwrp ul li {}

.home-btm-section .testiwrp ul li img {
    width: 30px;
    filter: opacity(0.5);
    margin: 0 0 20px;
}

.home-btm-section .testiwrp ul li p {
    font-size: 24px;
    color: #23233c;
}

.home-btm-section .testiwrp ul li h4 {
    font-size: 22px;
    padding: 0 0 10px;
}

.home-btm-section .testiwrp ul li span {
    font-size: 14px;
}

.home-btm-section .form-btm {}

.home-btm-section .form-btm:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f8b105;
    top: 0;
    z-index: -1;
}

.home-btm-section .formwrp {
    padding: 80px 0 90px 70px;
    width: 70%;
}

.home-btm-section .formwrp form {}

.home-btm-section .formwrp form h2 {
    color: #fff;
    font-size: 36px;
    padding: 0 0 30px;
}

.home-btm-section .formwrp form p {
    padding: 20px 0 10px;
    color: #fff;
}

.home-btm-section .formwrp form .lablewrp {}

.home-btm-section .formwrp form .lablewrp input {
    width: 100%;
    height: 50px;
    margin: 0 0 20px;
    background-color: unset;
    border: none;
    border-bottom: 1px solid #ffffff;
    outline: none;
    color: #fff;
}

.home-btm-section .formwrp form .lablewrp textarea {
    width: 100%;
    background-color: unset;
    border: 1px solid #ffffff;
    height: 150px;
    padding: 15px 0 0 20px;
    resize: none;
    outline: none;
    color: #fff;
}

.home-btm-section .formwrp form .lablewrp input.btnmain {
    background: #135ecf;
    color: #fff;
    margin: 10px 0 0;
    border-radius: 4px;
}

footer:after {
    content: "";
    transform: skew( 311deg) rotate( 33deg);
    position: absolute;
    background: #111216;
    width: 206%;
    height: 180%;
    right: 310px;
    right: 0;
    top: 0;
    z-index: -1;
    border-radius: 50%;
}

footer {
    background-color: #202126;
    padding: 100px 0 0px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

footer .navwrp {}

footer .navwrp h4 {
    color: #fff;
    font-size: 20px;
    padding: 0;
}

footer .navwrp ul {
    margin: 20px 0px 0;
    display: table-caption;
}

footer .navwrp ul li {
    padding: 0px 0px 12px;
}

footer .navwrp ul li a {
    color: #ffffff;
    font-size: 14px;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
    /* width: 3150% !important; */
}

footer .navwrp ul li a:hover {
    color: #135ecf;
}

footer .navwrp ul li a img {
    margin: 10px 0 0;
    filter: none;
    border: 1px solid #fff;
    width: 130px;
}

footer .navwrp ul li a i {
    color: #135ecf;
    margin: 0 11px 0 0px;
    font-size: 16px;
}

footer .logowrp {}

footer .logowrp p {
    color: #fff;
}

footer .logowrp img {
    width: 170px;
    margin: 0 0 30px;
}

footer .logowrp ul {}

footer .logowrp ul li {
    padding: 0;
    display: block;
    margin: 0 20px 0 0;
    padding: 0 0 9px;
}

footer .logowrp ul li i {
    color: #fff;
    font-size: 23px;
    margin: 18px 0 0;
}

footer .sonialwrp {}

footer .sonialwrp li {
    display: inline-block !important;
}

footer .txtdiv {}

footer .txtdiv h4 {
    color: #fff;
    font-size: 22px;
}

footer .logowrp ul.socialwrp li {
    display: inline-block;
    margin: 0 4px 0 0;
}

footer .formwrp {
    display: block;
    text-align: right;
}

footer .formwrp form {}

footer .formwrp form .lablewrp {
    display: inline-block;
    width: 83%;
}

footer .row.bodr-top {
    border-bottom: 1px solid #d0d7fc24;
    padding: 0 0 30px;
    margin: 0 -10px 70px;
}

footer .formwrp form .lablewrp input {
    width: 100%;
    height: 46px;
    border-radius: 7px;
    padding: 0 0 0 10px;
    border: none;
}

footer .formwrp form .lablewrp input.btnwpr {
    width: 22%;
    padding: 0;
    background: #135ecf;
    color: #ffffff;
    font-weight: 600;
    position: absolute;
    font-size: 16px;
    top: 3px;
    right: 18px;
    height: 40px;
    z-index: 5;
}

.ftr-btm {
    padding: 25px 0;
    box-shadow: -1px -2px 15px -3px rgb(0 0 0 / 32%);
    margin: 80px 0 0;
    position: relative;
}

.ftr-btm .imgwrp img {
    width: 150px;
}

.ftr-btm p {
    padding: 0;
    color: #ffffff;
    font-size: 14px;
    padding-top: 4px;
}

.ftr-btm a {
    padding: 0;
    color: #fff;
    font-size: 14px;
    margin: 0 30px 0 0;
}

.testi {
    height: 50vh;
}

.testimonials-page .home-btm-section .testiwrp {
    width: 100%;
    margin: auto;
    float: unset;
    margin-top: 50px;
}

/*=====================================faq==========================*/

.faq {
    padding: 60px 0 30px;
}

.quest-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
    width: 100%;
    display: inline-block;
    transition: all linear 0.15s;
    text-decoration: none;
    padding: 25px 50px 25px 10px;
    color: #393e54;
    border-color: #e6e6e6;
    border-style: solid;
    border-width: 1px 0 0;
    font-family: var(--secondary-font-family);
}

.accordion {
    margin-bottom: 30px;
    border-color: #e6e6e6;
    border-style: solid;
    border-width: 0px 0 1px;
}

.accordion {
    overflow: hidden;
    background: none;
}

.quest-title.active,
.quest-title:hover {
    color: #3b3f55;
    content: "\e907";
}

.quest-title:before {
    position: absolute;
    content: "\e908";
    width: 20px;
    height: 20px;
    right: 15px;
    font-weight: 300;
    top: 12px;
    font-family: 'icomoon' !important;
    color: #ccc;
    font-size: 28px;
}

.quest-title:after {
    width: 60px;
    height: 1px;
    left: -60px;
    bottom: -1px;
    background: #dbdbdb;
    position: absolute;
    content: "";
}

.quest-content {
    padding: 0px 10px 15px 20px;
    display: none;
    background: #ffffff;
    margin-bottom: 0px;
    float: left;
    padding-bottom: 0;
    width: 100%;
}

.quest-content p {
    line-height: 1.6;
    font-size: 18px;
    font-weight: 400;
    margin: 0px;
    font-family: var(--secondary-font-family);
    color: #616884;
}

/*=====================================faq==========================*/

/*=====================================howtoorder==========================*/

.orderformwrp {
    padding: 0px 0px 180px 0px;
}

.orderformwrp p {
    font-size: 18px;
}

.form-box-main form label.field-txt {
    font-weight: 500;
    font-size: 18px;
    color: #5B6B7F;
    margin: 0 0 5px;
    width: 100%;
    display: block;
    padding: 10px 0px 0;
}

.form-box-main form label.field-txt span {
    color: #e60303;
}

.form-box-main form input[type="text"],
.form-box-main form input[type="email"],
.form-box-main form input[type="number"],
.form-box-main form input[type="tel"],
.form-box-main form textarea {
    width: 100%;
    margin: 0 0 0 0;
    border: 1px solid #B2B9C1;
    background: white;
    padding: 18px 15px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    height: 55px;
    border-radius: 8px;
}

.nums input {
    padding-left: 60px !important;
}

.form-box-main form input[type="text"],
.form-box-main form input[type="email"],
.form-box-main form input[type="number"],
.form-box-main form input[type="tel"],
.form-box-main form textarea {
    width: 100%;
    margin: 0 0 0 0;
    border: 1px solid #B2B9C1;
    background: white;
    padding: 18px 15px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    height: 55px;
    border-radius: 8px;
}

.form-box-main form select {
    width: 100%;
    margin: 0 0 0 0;
    border: 1px solid #B2B9C1;
    background: white;
    padding: 12px 15px;
    color: #5B6B7F;
    font-size: 18px;
    font-weight: 400;
    border-radius: 8px;
    -webkit-appearance: auto;
}

.form-box-main form label.field-txt {
    font-weight: 500;
    font-size: 18px;
    color: #5B6B7F;
    margin: 0 0 5px;
    width: 100%;
    display: block;
    padding: 10px 0px 0;
}

.form-box-main form textarea {
    width: 100%;
    margin: 0;
    padding: 8px 12px;
    height: 100px;
}

.form-box-main form input[type="submit"] {
    display: inline-block;
    transform: translateY(0rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #fff;
    background: #135ecf;
    margin-top: 20px;
    border: none;
    padding: 20px 60px;
    font-size: 16px;
    border-radius: 8px;
    border: 3px solid;
    cursor: pointer;
}

/*=====================================howtoorder==========================*/

/*=========================================pricing=============================*/

.pkagwerp {
    padding: 70px 0;
    background-image: url(../images/DDbanner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.pkagwerp .txtwrp {
    display: block;
    text-align: center;
}

.pkagwerp .navwrp {}

.pkagwerp .navwrp ul {
    margin: 0 0 50px;
    display: block;
    text-align: center;
}

.pkagwerp .navwrp ul li {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 15px;
    color: #b10655;
    font-size: 15px;
    border-radius: 7px;
    font-weight: 500;
    border: 1px solid;
    cursor: pointer;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
}

.pkagwerp .navwrp ul li.current {
    background: #b10655;
    color: #fff;
}

.pkagwerp .pakge-box {
    transition: all 200ms ease-in;
    padding: 30px 20px 50px;
    border: 1px solid;
    border-radius: 7px;
}

.pkagwerp .pakge-box:hover {
    box-shadow: 0px 0px 20px 1px #d2d2d2;
    z-index: 2;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.05);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.05);
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.05);
    transition: all 200ms ease-in;
    transform: scale(1.05);
    border: 1px solid #b10655;
}

.pkagwerp .pakge-box .pkge-name {}

.pkagwerp .pakge-box .pkge-name h4 {
    color: #000;
    font-size: 26px;
    font-weight: 500;
}

.pkagwerp .pakge-box .pkge-name h2 {
    font-size: 44px;
    color: #163040;
}

.pkagwerp .pakge-box .pkge-name h2 span {
    font-size: 29px;
    text-decoration: line-through;
}

.pkagwerp .pakge-box .pkge-name p {
    font-size: 13px;
    display: none;
}

.pkagwerp .pakge-box .detailwrp {}

.pkagwerp .pakge-box .detailwrp ul {
    height: 230px;
}

.pkagwerp .pakge-box .detailwrp ul li {
    position: relative;
    padding: 0 0 2px 25px;
    font-size: 14px;
}

.pkagwerp .pakge-box .detailwrp ul li.heading {
    font-size: 18px;
    color: #b10655;
    padding: 7px 0 10px 0px;
    font-weight: 500;
}

.pkagwerp .pakge-box .detailwrp ul li.heading:after {
    display: none;
}

.pkagwerp .pakge-box .detailwrp ul li:after {
    content: "\f00c";
    position: absolute;
    font-family: 'FontAwesome';
    left: 0;
    color: #b10655;
    top: 0;
}

.pkagwerp .pakge-box .btnwrp {
    display: block;
    text-align: center;
}

.pkagwerp .pakge-box .btnwrp .btn-1 {
    padding: 13px 13px;
    font-size: 15px;
}

.pkagwerp .pakge-box .btnwrp .btn-2 {
    padding: 12px 13px;
    font-size: 15px;
}

.pkagwerp .pakge-box .pakgedetail {
    display: block;
    text-align: center;
    padding: 0 0 30px;
}

.pkagwerp .pakge-box .pakgedetail a {
    color: #afa0a0;
    font-size: 14px;
    text-decoration: underline;
}

.pkagwerp .btndiv {
    display: block;
    text-align: center;
    padding: 55px 0 0;
}

.upr-heading {
    color: #163040;
    font-size: 20px;
}

.main-heading {
    color: #222;
    font-size: 38px;
    padding: 0 0 20px;
    font-weight: 600;
}

.main-pera {
    color: #777;
    font-size: 16px;
    font-weight: 400;
}

/*==============================process====================================*/

.process {
    padding: 60px 0px 60px 0px;
}

.pro-head h2 {
    font-size: 20px;
    text-align: center;
    color: #6c38ef;
}

.pro-head p {
    color: #777;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.mrg-tp {
    margin-top: 50px;
}

.lis-ul ul {
    display: flex;
    justify-content: center;
}

.lis-ul li {
    text-align: center;
}

.lis-ul li img {
    margin-bottom: 25px;
}

.lis-ul li {
    border-right: 1px solid #dedede;
    width: 100%;
}

.lis-ul li h4 {
    font-size: 20px;
}

.lis-ul li:last-child {
    border: 0;
}

.fst-bx h2 {
    font-size: 20px;
    padding-bottom: 0;
    color: #222;
}

.brd-full {
    border: 1px solid #e6e6e6;
    margin-top: 20px;
    padding: 10px 20px;
    background: #fff;
}

.pet {
    color: #6c38ef !important;
}

.phone-div .fa-mobile-phone {
    font-size: 50px;
    margin-top: 8px;
    margin-right: 20px;
}

.flx-phn {
    display: flex;
    justify-content: center;
}

.flx-phn .text-left {
    font-size: 23px;
    margin-top: 10px;
    color: #222;
}

.flx-phn .text-left span {
    color: #6c38ef;
}

.flx-phn i {
    font-size: 50px;
    margin-top: 8px;
    margin-right: 20px;
    color: #6c38ef;
}

/*====================================servicesform===================================*/

.web-pg .form-wrap {
    background: #000000b8;
}

.form-wrap {
    border: 4px solid #135ecf;
    background: #fff;
    color: #fff;
    background: #00000059;
    padding: 40px 20px 40px;
    border-radius: 5px;
    width: 75%;
    margin: auto 0;
    position: relative;
    z-index: 9;
    float: right;
}

.mainfrm .imgform {
    position: absolute;
    top: 20px;
    left: 10px;
}

.form-wrap h1 {
    font-size: 22px;
    text-align: right;
    margin: 0px 0 24px 0;
    font-weight: 400;
    text-transform: capitalize;
    color: #fff;
    line-height: 1.4;
    padding: 0 0 10px;
}

.form-wrap h1 span {
    display: block;
    color: #fff;
    font-size: 32px;
    line-height: 0.5;
    padding: 10px 0 0;
    font-weight: 700;
}

.mainfrm input {
    border: 1px solid #fffefe94;
}

.bnr-inpfild input,
.bnr-inpfild textarea,
.bnr-inpfild select {
    width: 100%;
    padding: 10px;
    margin: 0px 0 18px 0;
    border-radius: 6px;
    border: 1px solid #dad4d4;
    color: #333;
    height: 47px;
    font-size: 16px !important;
    border-color: #ffffff5e;
    background: #ffffff00;
    appearance: auto;
    color: #fff;
    outline: none;
}

.phn-nums input#phone-coun {
    margin-bottom: 20px !important;
    width: 329px !important;
    padding-left: 50px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text],
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel] {
    padding-left: 100px;
}

select#packages option {
    color: #000;
}

.btn-bnr-inpt input {
    background: #135ecf;
}

.imgwrp img {
    width: 100px;
    margin: 0 20px 0 0;
}

.faq-hed {
    padding: 0px 0px 40px 0px;
}

.btnwrp a:hover {
    color: #fff;
}

header .bottom-head .navwrp ul li:hover ul.dropwrp {
    display: block;
}

header .bottom-head .navwrp ul li ul.dropwrp {
    width: 300px;
    background: #fff;
    height: auto;
    border-radius: 6px;
    display: block;
    position: absolute;
    z-index: 999;
    top: 31px;
    display: none;
}

header .bottom-head .navwrp ul li ul.dropwrp:before {
    content: "";
    position: absolute;
    content: "";
    top: -9px;
    left: 17px;
    z-index: 0;
    width: 20px;
    height: 20px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(44deg);
    border-radius: 5px;
    border-top: 1px solid #cbd6e2;
    border-left: 1px solid #cbd6e2;
}

header .bottom-head .navwrp ul li ul.dropwrp li {
    display: block;
}

header .bottom-head .navwrp ul li ul.dropwrp li a {
    color: #000 !important;
    text-align: start;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 17px 30px 13px !important;
    border-bottom: 1px solid #82849038;
}

header .bottom-head .navwrp ul {
    display: block;
    text-align: center;
    margin: 0 -170px 0 0;
}

header .bottom-head .navwrp ul li a {
    color: #fff;
    font-weight: 500;
    padding: 0px 20px 20px;
    display: inline;
    text-align: center;
}

.navwrp ul li {
    display: inline-block;
    /* text-align: center; */
    justify-content: center;
}

header .bottom-head {
    background: #135ecf;
    display: block;
    text-align: center;
    padding: 10px 0;
}

.navwrp p {
    color: #fff;
    margin: 14px 0 0 0;
}

.li-width ul li {
    width: 120px;
}

.flxe li a {
    display: flex;
}

section.termswrp {
    padding: 60px;
}

.thnkyoywrp {
    padding: 250px 0 70px;
    display: block;
    text-align: center;
}

.thnkyoywrp .btnwrp {
    padding: 30px 0 0px;
}

.thnkyou-pg header .logowrp img.lgo-lit {
    display: none;
}

.thnkyou-pg footer {
    padding: 70px 0 60px;
}

.whatsapp {
    width: 50px;
    height: 51px;
    color: #fff;
    display: block;
    text-align: center;
    border-radius: 100%;
    font-size: 34px;
    position: fixed;
    bottom: 1%;
    left: 20px;
    z-index: 9999;
    box-shadow: 6px 9px 30px 1px rgb(37 0 22 / 71%);
    padding: 0px;
    animation: scrollDownAnimation .5s ease infinite alternate;
    -webkit-animation: scrollDownAnimation .5s ease infinite alternate;
    background: #00e676;
    background: -moz-linear-gradient(left, #ea018e 0%, #9b2c92 100%);
    /* background: -webkit-linear-gradient(left, #ea018e 0%,#9b2c92 100%); */
    /* background: linear-gradient(to right, #ea018e 0%,#9b2c92 100%); */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea018e', endColorstr='#9b2c92', GradientType=1);
}







.content-area-inner {
	padding: 30px 0
}

.content-area-inner .title-content {
	color: #675a43;
	font-size: 30px;
	font-weight: 600;
	display: block;
	position: relative;
	margin: 0 0 40px
}

.content-area-inner .title-content:before {
	width: 90px;
	height: 3px;
	background: #e9b305;
	left: 0;
	bottom: -20px;
	content: '';
	position: absolute
}

.content-area-inner a {
	color: #21242c;
	display: inline;
	font-weight: 600
}

.impoints ul {
	margin: 0 0 30px;
	color: #888
}

.impoints ul li {
	position: relative;
	margin-bottom: 15px;
	padding-left: 24px;
	line-height: 23px;
	color: #878787
}

.impoints ul li:before {
	content: '\f14a';
	position: absolute;
	font-family: fontAweSome;
	font-size: 15px;
	color: #878787;
	left: 0;
	top: 0
}





@media (max-width: 766px) {

.orderformwrp {
    padding: 0px 0px 350px 0px;
}
}