/* @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;
    font-size: 18px;
    padding: 0 0 0 15px;
}

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 
------------------------------------*/

.btn-1 {
    color: #fff;
    background: linear-gradient(to right, #5f269f, #3acece);
    padding: 15px 30px;
    font-size: 16px;
    border: 1px solid #5f269f;
    border-radius: 7px;
    font-weight: 500;
    transition: 0.5s all;
    margin: 0;
    display: inline-block;
}

.btn-1:hover {
    transform: translateY(-0.625rem);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    color: #fff;
}

.btn-2 {
    color: #5f269f;
    font-weight: 600;
    font-size: 16px;
    background-color: #fff0;
    padding: 15px 30px;
    border-radius: 7px;
    border: 1px solid;
    transition: 0.5s all;
    margin: 0 0 0 15px;
    display: inline-block;
}

.btn-2:hover {
    transform: translateY(-0.625rem);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    color: #5f269f;
}


header {
    display: block;
    padding: 0px 0 17px;
    position: fixed;
    width: 100%;
    z-index: 99999 !important;
}

header.showmenu {
    background-color: #fff;
    box-shadow: 0 1px 5px rgb(0 0 0 / 22%);
}

header.showmenu .navwrp ul li a {
    color: #222;
}

header.showmenu header .navwrp {
    margin: 15px 0 0;
}

header .logowrp img {
    width: 220px;
    margin: 5px 0 0 0;
}

header .logowrp .clr-logo {
    display: none;
}

header.showmenu .clr-logo {
    display: block;
    /* margin: -15px 0 0; */
}

header.showmenu .wt-logo {
    display: none;
}

header.showmenu .navwrp {}

header .navwrp {
    display: block;
    margin: 23px 0 0;
}

header .navwrp ul {
    margin: -10px 0 0;
    display: block;
}

header .navwrp ul li {
    display: inline-block;
    margin-right: 19px;
}

header .navwrp.top-nav ul li a {}

header .navwrp.top-nav ul {
    margin: 0;
}

.navwrp.top-nav ul li a i {
    /* filter: brightness(0) saturate(100%) invert(81%) sepia(23%) saturate(3733%) hue-rotate(344deg) brightness(100%) contrast(98%); */
    filter: brightness(0) saturate(100%) invert(15%) sepia(61%) saturate(7474%) hue-rotate(264deg) brightness(89%) contrast(101%);

}

header .navwrp ul li a {
    font-size: 13px;
    color: #fff;
    transition: 0.4s all;
    font-weight: 500;
    padding: 0 0 30px;
}

header .navwrp ul li a.nmbrwrp {
    font-weight: 600;
    font-size: 16px;
    color: #ffff;
}

header .navwrp ul li a:hover {
    color: #5f269f;
}

header .navwrp ul li.btnnav {
    margin: 0;
}

header .navwrp ul li.btnnav a {
    background: linear-gradient(to right, #5f269f, #3acece);
    color: #fff;
    padding: 10px 10px;
    border-radius: 7px;
    margin: 0 0px 0 7px;
}

header .navwrp ul li.btnnav a.btn-secnd {
    background: unset;
    font-size: 16px;
    font-weight: bold;
}

header .navwrp ul li.btnnav a.btn-secnd img {
    width: 55px;
    /* filter: brightness(0) saturate(100%) invert(81%) sepia(23%) saturate(3733%) hue-rotate(344deg) brightness(100%) contrast(98%); */
    filter: brightness(0) saturate(100%) invert(15%) sepia(61%) saturate(7474%) hue-rotate(264deg) brightness(89%) contrast(101%);

}

header.showmenu .navwrp ul li a.blink {
    color: #000;
}

header .drowpdown {
    transition: 0.4s;
    display: none !important;
    position: absolute;
    background-color: #fff;
    padding: 10px 0px 14px;
    width: 220px;
    top: 50px;
    left: 0px;
    width: 440px;
    background: #fff;
    height: auto;
    border-radius: 6px;
    box-shadow: 4px 2px 31px 0 #93692f2e;
    border: 1px so;
}

header .ser-drop {
    position: relative;
    padding: 3px 0;
}

header .drowpdown li {
    display: block !important;
    color: #000;
    margin: 0 0 0 16px !important;
}

header .drowpdown li:after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #5f269f;
    border-radius: 50%;
    display: none;
    left: -10px;
    top: 8px;
}

header.showmenu .drowpdown li a {
    color: #000 !important;
}

header .drowpdown li a {
    color: #000 !important;
    text-align: start;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 17px 20px 13px 30px !important;
    border-bottom: 1px solid #82849038;
}

header .drowpdown li a:hover {
    color: #5f269f !important;
}

header .drowpdown ul {
    margin: 0;
}

header .drowpdown: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 .ser-drop:hover .drowpdown {
    display: block !important;
}

.blink {
    animation: blinker 1s step-start infinite;
}

@keyframes blinker {
    50% {
        color: #5f269f;
    }
}



.home-banner-wrp {
    background-image: url(../images/contact-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 70px;
}

.home-banner-wrp .txtwrp {}

.home-banner-wrp .txtwrp h2 {
    font-size: 48px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
}

.home-banner-wrp .txtwrp h2 span {
    color: #5f269f;
}

.home-banner-wrp .txtwrp h4 {
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
    padding: 0 0 15px;
    font-weight: 400;
}

.home-banner-wrp .txtwrp p {
    color: #fff;
    font-size: 18px;
    line-height: 32px;
}

.home-banner-wrp .imgwrp {}

.home-banner-wrp .imgwrp ul {
    margin: 0;
}

.home-banner-wrp .imgwrp ul li {
    display: inline-block;
    margin: 0 30px 0 0;
}

.home-banner-wrp .imgwrp ul li img {
    width: 120px;
}

.home-banner-wrp .btnwrp {
    display: block;
    padding: 30px 0 0;
}

.home-banner-wrp .btnwrp .btn-2 {
    background: #fff;
}

.cstm-banner-form {
    background: #ffffff;
    padding: 0 10px;
    position: relative;
    z-index: 9;
    border-radius: 9px;
    width: 90%;
    display: inline-block;
    box-shadow: 0px 0px 30px #0000001f;
    text-align: center;
    margin: 40px 0 0;
    float: right;
}

.cstm-banner-form .intl-tel-input {
    width: 100%;
    margin-bottom: 18px;
}

.cstm-banner-form h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.cstm-banner-form form {
    padding: 30px 20px;
    /* background: #f435351f; */
    border-radius: 22px;
}

.cstm-banner-form h3 {
    font-size: 28px;
    line-height: 33px;
    font-weight: 700;
    font-family: poppins, sans-serif !important;
    color: #000;
    text-align: left;
    margin: 0;
    text-transform: capitalize;
}

.cstm-banner-form h3 span {
    font-weight: 700;
}

.cstm-banner-form a {
    display: inline-block;
    margin: 0 0 20px;
    color: #fff;
    position: relative;
    font-family: poppins, sans-serif;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 15px;
}

.cstm-banner-form select,
.cstm-banner-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    border: 1px solid #d4d4d4;
    outline: none;
    font-size: 14px;
    font-weight: 600;
    font-family: poppins, sans-serif;
    height: 43px;
    border-radius: 10px;
    background: transparent;
    color: #000;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.09);
}

.cstm-banner-form textarea {
    min-height: 115px;
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 1px solid #d4d4d4 !important;
    outline: none;
    font-size: 14px;
    line-height: normal;
    color: #000;
    font-weight: 600;
    border-radius: 12px;
    font-family: poppins, sans-serif;
    background: #d2b48c00;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.09);
}

.cstm-banner-form input[type=submit] {
    border: none;
    box-shadow: none;
    padding: 13px 16px;
    margin-top: 0;
    border-radius: 5px;
    margin-bottom: 0;
    outline: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 17px;
    width: 100%;
    margin: 0 auto !important;
    height: auto;
    color: #ffffff;
    font-weight: 600;
    background: linear-gradient(#5f269f, #3acece);
}

.cstm-banner-form input::placeholder,
.cstm-banner-form textarea::placeholder {
    color: #a6a7a6;
}

.cstm-banner-form a.chat.form-chat {
    background: 0 0 !important;
    color: #000;
    margin: 10px 0 0;
    padding: 0;
}

.home-bnr .btnwrp .btn-one:hover {
    color: #fff;
}

.cstm-banner-form p {
    color: #5f269f;
    font-weight: 600;
    text-align: left;
    padding-bottom: 8px;
    font-size: 16px;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
    color: #000;
}

.main-index .cstm-banner-form {
    margin: 90px 0 0;
}



.clients-logowrp {
    background: #f6f4f291;
    padding: 40px 0;
}

.clients-logowrp .logowrp {}

.clients-logowrp .logowrp h4 {
    color: #8c9aaf;
    display: block;
    text-align: center;
    font-size: 22px;
    padding: 0 0 20px;
}

.clients-logowrp .logowrp ul {
    margin: 0;
    text-align: center;
    display: block;
}

.clients-logowrp .logowrp ul li {
    display: inline;
}

.clients-logowrp .logowrp ul li img {
    width: 150px;
    height: 50px;
}

.upr-head {
    color: #5f269f;
    font-size: 18px;
    text-transform: capitalize;
    background: #5f269f36;
    display: inline-block;
    padding: 7px 11px;
    border-radius: 8px;
    margin: 0 0 15px;
}

.main-heading {
    font-size: 38px;
    font-weight: 600;
    color: #223235;
}

.secnd-fld .mainwrp .img-box img {
    width: 40px;
    /* filter: brightness(0) saturate(100%) invert(81%) sepia(23%) saturate(3733%) hue-rotate(344deg) brightness(100%) contrast(98%); Yellow filter */
    filter: brightness(0) saturate(100%) invert(15%) sepia(61%) saturate(7474%) hue-rotate(264deg) brightness(89%) contrast(101%);

}

.secnd-fld {
    padding: 70px 0;
}

.secnd-fld .imgwrp {}

.secnd-fld .imgwrp img {
    width: 100%;
    padding: 10px 10px;
    border: 2px solid #5f269f;
}

.secnd-fld .btnwrp {
    display: block;
    padding: 15px 0 0;
}

.secnd-fld .mainwrp {
    margin: 60px 0 0;
    border: 1px solid #5f269f;
    padding: 30px 20px 0;
    height: 281px;
    border-radius: 5px;
}

.secnd-fld .mainwrp .img-box {
    display: inline-block;
    vertical-align: top;
    margin: 0 0px 20px 0;
}

.secnd-fld .mainwrp .img-box img {
    width: 40px;
}

.secnd-fld .mainwrp .txtdiv {
    display: inline-block;
    width: 100%;
}

.secnd-fld .mainwrp .txtdiv h4 {
    font-size: 22px;
    color: #223235;
    font-weight: 600;
    width: 100%;
    padding: 0 0 10px;
}

.secnd-fld .mainwrp .txtdiv p {
    font-size: 14px;
    height: 135px;
}

.secnd-fld .long-pera {
    height: 160px;
}

.portfoliowrp {
    padding: 70px 0;
    background: #091523;
}

.portfoliowrp .txtwrp {
    display: block;
    text-align: center;
}

.portfoliowrp .txtwrp h2 {
    color: #fff;
}

.portfoliowrp .txtwrp p {
    color: #fff;
}

.portfoliowrp .port-box {
    display: block;
    text-align: center;
}

.portfoliowrp .port-box ul {
    margin: 40px 0 0;
}

.portfoliowrp .port-box ul li {
    display: inline-block;
    width: 16%;
    margin: 0 10px;
}

.portfoliowrp .port-box ul li img {
    width: 100%;
}

.portfoliowrp .btnwrp {
    display: block;
    text-align: center;
    padding: 40px 0 0;
}



.writing-serviceswrp {
    padding: 70px 0;
    background: #e8e8e829;
}

.writing-serviceswrp .txtwrp {
    display: block;
    text-align: center;
}

.writing-serviceswrp .txtwrp ul {
    margin: 30px 0 0;
}

.writing-serviceswrp .txtwrp ul li {
    display: inline-block;
    margin: 0 10px 40px;
    box-shadow: 0px 0px 20px 1px #e0d6d673;
    border-radius: 5px;
    height: 170px;
    text-align: center;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
    width: 135px;
    padding: 40px 0 0;
    background: #fff;
}

.writing-serviceswrp .txtwrp ul li img {
    width: 46px;
}

.writing-serviceswrp .txtwrp ul li span {
    display: block;
    color: #222;
    font-size: 16px;
    padding: 12px 0 0;
}


.cta-wrp {
    background-image: url(../images/cta-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0 90px;
    position: relative;
    z-index: 1;
}

.cta-wrp:after {
    content: "";
    position: absolute;
    background: #00000000;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}

.cta-wrp .txtwrp {}

.cta-wrp .txtwrp h2 {
    color: #fff;
}

.cta-wrp .txtwrp p {
    color: #fff;
}

.cta-wrp .btnwrp {
    display: block;
    padding: 20px 0 0px;
}



.reasonwrp {
    background-color: #fff;
    padding: 90px 0;
    position: relative;
    z-index: 1;
    left: 0;
}

.reasonwrp:after {
    content: "";
    background-color: #091523;
    position: absolute;
    width: 70%;
    height: 100%;
    top: 0;
    z-index: -1;
}

.reasonwrp .mainwrp {
    width: 80%;
    float: right;
}

.reasonwrp .txtwrp h2 {
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    padding: 0 0 30px;
}

.reasonwrp .txtwrp h4 {
    color: #fff;
    font-size: 22px;
    position: relative;
    padding: 0 0 10px 25px;
}

.reasonwrp .txtwrp p {
    font-size: 16px;
    color: #fff;
    font-weight: 200;
    padding: 0 0 30px 25px;
    margin: 0;
}

.reasonwrp .txtwrp h4:after {
    content: "";
    position: absolute;
    content: "\f101";
    font-family: FontAwesome;
    left: 0;
    border-radius: 50%;
    top: 0;
    color: #5f269f;
}

.reasonwrp .imgwrp {}

.reasonwrp .imgwrp img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.reasonwrp .btnwrp {
    display: block;
    padding: 15px 0 0;
}

.tetiwrp {
    padding: 60px 0 100px;
    position: relative;
    z-index: 0;
}

.tetiwrp .txtwrp {
    display: block;
    text-align: center;
    padding: 0 0 70px;
    width: 80%;
    margin: 0 auto 30px;
}

.tetiwrp .txtwrp h4 {}

.tetiwrp .mainwrp {
    display: block;
    text-align: center;
}

.tetiwrp .mainwrp .imgwrp {
    padding: 40px 30px;
    box-shadow: 0px 6px 21px 11px rgb(0 0 0 / 8%);
    border-radius: 20px;
    height: 360px;
    position: relative;
    background: #fff;
    width: 90%;
    border: 1px solid #20cb98;
}

.tetiwrp .mainwrp .imgwrp img {
    margin: -110px 0 0;
}

.tetiwrp .mainwrp .imgwrp h4 {
    color: #3a4546;
    font-size: 22px;
    padding: 50px 0 0px;
}

.tetiwrp .mainwrp .imgwrp span {
    display: block;
    color: #617071;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 5px;
}

.tetiwrp .mainwrp:after {
    content: "";
    position: absolute;
    /* background: #ee8130; */
    width: 112%;
    height: 430px;
    top: -30px;
    right: -25px;
    /* border-radius: 20px; */
    /* transform: skew(4deg); */
    z-index: -1;
    background-image: url(../images/testi-bg-2.webp);
    background-repeat: no-repeat;
    background-size: 92%;
}

.tetiwrp .mainwrp .imgwrp p {
    color: #617071;
    font-size: 13px;
    padding: 10px 0 0;
}

.tetiwrp .mainwrp .imgwrp h2 {
    color: #20cb98;
    display: inline-block;
    border: 3px solid;
    font-size: 42px;
    font-weight: 500;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    padding: 23px 0 0;
    position: absolute;
    top: -50px;
    background: #fff;
    left: 0;
    right: 0;
    margin: 0 auto;
}




.btmfrom {
    padding: 70px 0;
    background: #091523;
}

.btmfrom .txtwrp {}

.btmfrom .txtwrp h2 {
    color: #fff;
}

.become-pg .btmfrom .txtwrp h2 {
    color: #222;
}

.btmfrom .txtwrp p {
    color: #fff;
}

.btmfrom .formwrp {}

.btmfrom .formwrp form {}

.btmfrom .formwrp form .lablewrp {}

.btmfrom .formwrp form .lablewrp input {
    width: 100%;
    margin: 0 0 0 0;
    border: 1px solid #e5e5e5;
    background: white;
    padding: 10px 15px;
    color: gray;
    font-size: 13px;
    border-radius: 5px;
    height: 50px;
    font-weight: 400;
    outline: none !important;
    margin: 0 0 15px;
}

.btmfrom .formwrp form .lablewrp input.btnwrp {
    background: #5f269f;
    outline: none;
    transition: .4s;
    border-radius: 7px;
    font-size: 16px;
    background: #5f269f;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    padding: 0;
    width: 70%;
    height: 50px;
    margin: 20px 0 0;
    border: none;
    cursor: pointer;
}

.btmfrom .formwrp form .lablewrp select {
    width: 100%;
    margin: 0 0 0 0;
    border: 1px solid #e5e5e5;
    background: white;
    padding: 10px 15px;
    color: gray;
    font-size: 13px;
    border-radius: 5px;
    height: 50px;
    font-weight: 400;
    outline: none !important;
}

.btmfrom .formwrp form .lablewrp textarea {
    width: 100%;
    margin: 0;
    padding: 8px 12px;
    height: 100px;
    border: 1px solid #e5e5e5;
    background: white;
    color: gray;
    font-size: 13px;
    border-radius: 5px;
    resize: none;
    font-weight: 400;
    outline: none !important;
}

.btmfrom .formwrp form .lablewrp input.btnwrp:hover {
    transform: translateY(-0.625rem);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.btmfrom .formwrp form select#countryCode {
    width: 20%;
}

.btmfrom .formwrp form input#free_cons_phone1 {
    width: 78%;
}


a.quest-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: inherit;
    color: #223235;
    padding: 0px 15px;
    margin-bottom: 0px;
    position: relative;
    width: 100%;
    line-height: 60px;
    display: inline-block;
    transition: all 0.15s linear 0s;
    text-decoration: none;
    border-bottom: 1px solid rgb(219, 219, 219);
}

a.quest-title:after {
    content: '\f107';
    position: absolute;
    right: 15px;
    font-family: 'FontAwesome';
    font-size: 26px;
}

.quest-content {
    padding: 15px 20px;
    display: none;
    margin-bottom: 0px;
    float: left;
    width: 100%;
}

.formwrap .imgwrp {
    margin: 10px 0;
}

.formwrap .imgwrp img {
    width: 100%;
}

.roleswrp .row.bodrbtm {
    border-bottom: 1px solid #dbdbdb;
    padding: 0 0 30px;
}

.roleswrp .row.bodrbtm span {
    color: #23233c;
    font-size: 14px;
}

.roleswrp .row.bodrbtm h4 {
    color: #727284;
    font-size: 18px;
    font-weight: 400;
    padding: 0;
}

.roleswrp .row.bodrbtm .btnwrp {
    display: block;
    text-align: right;
}

.roleswrp .row.bodrbtm .btnwrp a {
    color: #7189ff;
}

.roleswrp {
    padding: 70px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -460px -230px;
}

.roleswrp .row.bodrbtm h4 {
    color: #727284;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 0 0 0 20px;
}



footer {
    background: #091523;
    padding: 90px 0 40px;
}

footer .logowrp {}

footer .logowrp img {
    width: 160px;
    margin: -15px 0 30px;
}

footer .logowrp p {
    color: #fff;
    font-size: 14px;
    line-height: 26px;
}

footer .navwrp {
    position: relative;
}

footer .navwrp h4 {
    color: #5f269f;
    font-size: 22px;
    p0 FONT-VARIANT: JIS04;
}

footer .navwrp ul {
    margin: 0;
}

footer .navwrp ul li {
    display: block;
    padding: 0 0 10px;
}

footer .navwrp ul li a {
    font-size: 14px;
    color: #fff;
}

footer .navwrp img {
    position: absolute;
    width: 340px;
    bottom: -60px;
    right: 0;
}

.ftr-btm {
    background: #091523;
    box-shadow: rgb(255 251 251 / 5%) 0px -9px 23px 4px;
    padding: 30px 0 20px;
}

.ftr-btm .txtdiv {}

.ftr-btm .txtdiv p {
    padding: 0;
    color: #fff;
}

.ftr-btm .txtdiv ul {
    margin: 0;
    text-align: center;
    display: block;
}

.ftr-btm .txtdiv ul li {
    display: inline-block;
    margin: 0 11px;
}

.ftr-btm .txtdiv ul li a {
    font-size: 19px;
    color: #fff;
}

.ftr-btm .txtdiv ul li a i {}

.ftr-btm .txtwrp {}

.ftr-btm .txtwrp ul li {
    display: inline-block;
    margin: 0 0px 0 20px;
}

.ftr-btm .txtwrp ul {
    margin: 0;
    display: block;
    text-align: right;
}

.ftr-btm .txtwrp ul li a {
    color: #fff;
    font-size: 13px;
}


.wht-we-dev {
    padding: 70px 0;
}

.wht-we-dev .txtwrp {
    display: block;
    text-align: center;
    padding: 0 0 40px;
    width: 80%;
    margin: 0 auto;
}

.wht-we-dev .txtwrp h2 {}

.wht-we-dev .mainwrp {}

.wht-we-dev .mainwrp ul {
    text-align: center;
}

.wht-we-dev .mainwrp ul li {
    display: inline-block;
    width: 23%;
    margin: 0 9px 25px;
    text-align: left;
    transition: all .5s ease;
}

.wht-we-dev .mainwrp ul li .maindiv {
    background-color: #f6f6f6;
    padding: 50px 20px;
    transition: all .5s ease;
    height: 435px;
}

.wht-we-dev .mainwrp ul li .maindiv .imgwrp {
    margin: 0 0 10px;
}

.wht-we-dev .mainwrp ul li .maindiv .imgwrp img {
    width: 40px;
}

.wht-we-dev .mainwrp ul li .maindiv.dark {
    background-color: #091523;
}

.wht-we-dev .mainwrp ul li .maindiv.dark h4 {
    color: #fff;
}

.wht-we-dev .mainwrp ul li .maindiv.dark p {
    color: #fff;
}

.wht-we-dev .mainwrp ul li .maindiv.dark img {
    filter: invert(1);
}

.wht-we-dev .mainwrp ul li .maindiv .txtdiv {
    height: 190px;
}

.wht-we-dev .mainwrp ul li .maindiv .txtdiv h4 {
    font-size: 22px;
    padding: 0 0 20px;
}

.wht-we-dev .mainwrp ul li .maindiv .txtdiv p {
    font-size: 14px;
    height: 160px;
}

.wht-we-dev .mainwrp ul li .maindiv .txtdiv .imgwrp {}

.wht-we-dev .mainwrp ul li .maindiv .txtdiv .imgwrp img {}

.wht-we-dev .mainwrp ul li .maindiv .btnwrp {
    display: block;
    padding: 50px 0 0;
}


.processwrp {
    padding: 70px 0;
    background-image: url(../images/contact-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.processwrp .txtwrp {
    display: block;
    text-align: center;
    padding: 0 0 50px;
    width: 80%;
    margin: 0 auto;
}

.processwrp .imgwrp {
    min-height: 170px;
}

.processwrp .imgwrp img {
    margin-right: 40px;
    width: 120px;
}

.processwrp .steps_grid {
    position: relative;
    text-align: center;
    min-width: 307px;
    left: -123px;
    padding-top: 50px;
    height: 1170px;
    display: none;
}

.processwrp .steps_grid img {
    height: 3050px;
    width: 60%;
}

.processwrp .stepwrp {
    min-height: 250px;
}

.processwrp .stepwrp.left {
    display: block;
    text-align: right;
}

.processwrp .stepwrp.left h4 span {
    right: -70px;
}

.processwrp .stepwrp h4 {
    position: relative;
    color: #3a3a3a;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
}

.processwrp .stepwrp h4 span {
    color: #5f269f;
    font-style: normal;
    font-size: 54px;
    position: absolute;
    top: -18px;
    left: -70px;
}

.processwrp .stepwrp p {
    font-size: 14px;
}

.air {
    position: absolute;
    bottom: -1842px;
    height: auto !important;
}

.service-pg .wht-we-dev .mainwrp ul li .maindiv.dark .btn-1 {
    background: #fff;
    color: #5f269f;
}

/*.service-pg .secnd-fld .mainwrp {margin: 40px 0 0; border: 1px solid #5f269f; padding: 20px 10px; height: 271px; border-radius: 5px; }
.service-pg .secnd-fld .mainwrp .img-box{display: block;    margin: 0 0px 20px 0;}
.service-pg .secnd-fld .mainwrp .txtdiv h4{width: 100%}*/
.cta-wrp .btnwrp :last-child {
    margin: 0 0 0 12px;
}





.process-2 .processwrp .stepwrp {
    min-height: 160px;
}

.process-2 .processwrp .steps_grid img {
    height: 834px;
    width: unset;
}

.process-2 .processwrp .steps_grid {
    height: 780px;
}

.process-2 .air {
    bottom: -139px;
}

.process-3 .processwrp .stepwrp {
    min-height: 180px;
}

.process-3 .processwrp .steps_grid img {
    height: 674px;
    width: unset;
}

.process-3 .processwrp .steps_grid {
    height: 780px;
}

.process-3 .air {
    bottom: -18px;
    left: 50px;
}

.process-4 .processwrp .stepwrp {
    min-height: 180px;
}

.process-4 .processwrp .steps_grid img {
    height: 1034px;
    width: unset;
}

.process-4 .processwrp .steps_grid {
    height: 780px;
}

.process-4 .air {
    bottom: -349px;
    left: 50px;
}




.contactbox {
    padding: 0 0 70px;
    margin: -60px 0 0;
}

.contactbox .mainwrp {
    padding: 60px 35px;
    display: block;
    text-align: center;
    box-shadow: 0px 6px 21px 11px rgb(0 0 0 / 8%);
    border: 2px solid #5f269f;
    border-radius: 15px;
    background: #fff;
}

.contactbox .mainwrp i {
    font-size: 52px;
    color: #5f269f;
    margin: 0 0 15px;
}

.contactbox .mainwrp h4 {
    color: #3a4546;
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 30px 0;
}

.contactbox .mainwrp a {}

.contactbox .mainwrp p {
    padding: 0 0 40px;
}

.contact-bnr {
    padding: 170px 0 170px;
}




.our-testi {
    padding: 60px 0;
    background-color: #f0f0f0;
}

.our-testi .txtwrp {
    text-align: center;
    display: block;
    padding: 0 0 40px;
}

.our-testi .mainwrp {
    background: #fff;
    border-radius: 10px;
    padding: 30px 40px 30px;
    box-shadow: 0 2px 2px rgb(0 0 0 / 10%);
    -webkit-transition: 0.2s ease-out;
    -moz-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    margin: 0 0 40px;
}

.our-testi .mainwrp p {
    color: #222;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid #ada2a261;
    padding: 0 0 10px;
    margin: 0 0 20px;
}

.our-testi .mainwrp .namwrp {
    display: inline-block;
}

.our-testi .mainwrp .namwrp h4 {
    font-size: 17px;
    color: #000;
    padding: 0 0 0;
}

.our-testi .mainwrp .namwrp h6 {
    color: #6c7b86;
    font-size: 14px;
    padding: 6px 0 0;
}

.our-testi .mainwrp .namwrp span {
    color: #5f269f;
    font-size: 16px;
}

.our-testi .mainwrp .imawrp {
    display: inline-block;
    float: right;
    background: #20cb98;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-sizing: border-box;
}

.our-testi .mainwrp .imawrp span {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    margin: 9px 0 0 10px;
    display: block;
}

.our-testi .mainwrp:hover {
    box-shadow: 0px 0px 20px 1px #d2d2d2bf;
    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);
}



.belowform img {
    max-width: 100%;
}

.belowform h2,
.belowform p {
    text-align: left;
}

.belowform {
    padding: 130px 0 80px;
}

.form-box-main h2 {
    width: 100%;
    line-height: 1.2;
    color: #000;
    text-align: left;
}

.form-box-main p {
    text-align: left;
    font-size: 18px;
    width: 100%;
    padding-bottom: 30px;
    font-weight: 500;
    line-height: 1.4;
}

.form-box-main form input[type="text"],
.form-box-main form select,
.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: 0px;
    border-bottom: 1px solid #B2B9C1;
    background: white;
    padding: 18px 15px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    height: 55px;
    border-radius: 0;
}

.form-box-main form textarea {
    width: 100%;
    margin: 0;
    padding: 8px 12px;
    height: 100px;
    resize: none;
}

.form-box-main form select {
    width: 100%;
    margin: 0 0 0 0;
    border-bottom: 1px solid #B2B9C1;
    padding: 12px 15px;
    color: #5B6B7F;
    font-size: 18px;
    font-weight: 400;
    border-radius: 0;
}

.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;
    border: 1px solid #ffffff;
    padding: 15px 60px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

.form-box-main form {
    width: 100%;
    margin: 0 auto;
}

.form-box-main form .col-md-6,
.form-box-main form .col-md-12 {
    padding-bottom: 20px;
}


.tabs {
    display: none;
}

.tabs.current {
    display: block;
}

.servicesec {
    width: 100%;
    background-size: cover;
    background-position: top center;
    padding: 0px 0 60px;
    text-align: center;
    background: #091523;
}

.servicesec h4 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
    font-weight: 700;
}

.servicesec p {
    /* text-align: center; */
    /* font-size: 20px; */
    /* width: 100%; */
}

.servicesec .boxwrap {
    display: inline-block;
    width: 100%;
    margin-top: -110px;
    text-align: center;
}

.servicesec .boxwrap li {
    cursor: pointer;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: 0 10px 20px;
    position: relative;
    border-radius: 10px;
    min-height: 215px;
    padding: 40px;
    float: left;
    background: #fff;
    width: 18.1%;
    -moz-box-shadow: 3px -8px 43px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 3px -8px 43px 0px rgb(0 0 0 / 16%);
}

.servicesec .boxwrap li.current {
    background: #5f269f;
}

.servicesec .boxwrap li.current i.two {
    background-position: -70px -70px;
}

.servicesec .boxwrap li.current h6 {
    color: #fff;
}

.servicesec .boxwrap li i {
    background-image: url(../images/services-icons.webp);
    background-repeat: no-repeat;
    width: 75px;
    display: inline-block;
    height: 80px;
    margin: 0 auto 10px;
    /* background-position: top center; */
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.servicesec .boxwrap li i.one {
    background-position: 13px 10px;
}

.servicesec .boxwrap li i.two {
    background-position: -70px 10px;
}

.servicesec .boxwrap li i.three {
    background-position: -150px 10px;
}

.servicesec .boxwrap li i.four {
    background-position: -230px 10px;
}

.servicesec .boxwrap li i.five {
    background-position: -320px 10px;
}

.servicesec .boxwrap li h6 {
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: #2c2c2c;
    font-size: 14px;
}

.servicesec .boxwrap li:hover {
    box-shadow: 0px 0px 45px #20CB9817;
    transform: translateY(-0.625rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2a3db6+0,1169cd+100 */
    background: #5f269f;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #2a3db6 0%, #1169cd 100%);
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2a3db6', endColorstr='#1169cd', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.servicesec .boxwrap li:hover i.one {
    background-position: 13px -70px;
}

.servicesec .boxwrap li:hover i.two {
    background-position: -70px -70px;
}

.servicesec .boxwrap li:hover i.three {
    background-position: -150px -70px;
}

.servicesec .boxwrap li:hover i.four {
    background-position: -230px -70px;
}

.servicesec .boxwrap li:hover i.five {
    background-position: -320px -70px;
}

.servicesec .boxwrap li:hover h6 {
    color: #fff;
}



.services-navwrp .mainwrp-second .txtwrp {}

.services-navwrp .mainwrp-second .txtwrp h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    padding: 0 0 30px;
    text-align: left;
}

.services-navwrp .mainwrp-second .txtwrp p {
    /* font-size: 16px; */
    color: #fff;
    /* font-weight: 200; */
    /* padding: 0; */
    text-align: left;
}

.services-navwrp .mainwrp-second .imgtabs {}

.services-navwrp .mainwrp-second .imgtabs ul {
    display: block;
    text-align: center;
    margin: 30px 0 0;
}

.services-navwrp .mainwrp-second .imgtabs ul li {
    display: inline-block;
    width: 23%;
}

.services-navwrp .mainwrp-second .imgtabs ul li img {
    width: 70px;
}

.services-navwrp .mainwrp-second .imgtabs ul li p {
    color: #fff;
    font-size: 14px;
    margin: 10px 0 0;
}

.services-navwrp .mainwrp-second .imgtabs .btn-secnd {
    color: #fff !important;
}

.services-navwrp .btn-one:hover {
    color: #fff;
}


.services-navwrp {
    /* background-color: #4b5eaf; */
    /* padding: 90px 0; */
}

.services-navwrp .navwrp {
    display: block;
}

.services-navwrp .navwrp ul {
    margin: -130px 0 40px;
    display: block;
    text-align: center;
}

.services-navwrp .navwrp ul li {
    transition: 0.5s all;
    display: inline-block;
    margin: 0 10px;
    background-color: #fff;
    padding: 40px 32px 40px;
    box-shadow: -2px 1px 20px 6px rgba(0, 0, 0, 0.11);
    border-radius: 5px;
    cursor: pointer;
    vertical-align: top;
}

.services-navwrp .navwrp ul li:hover {
    background-color: #f33535;
}

.services-navwrp .navwrp ul li:hover .mainwrp h4 {
    color: #fff !important;
}

.services-navwrp .navwrp ul li .mainwrp {}

.services-navwrp .navwrp ul li .mainwrp img {
    margin-bottom: 12px;
    width: 60%;
}

.services-navwrp .navwrp ul li .mainwrp h4 {
    font-size: 14px;
    color: #222;
}

.services-navwrp .imgdiv {
    height: auto;
}

.services-navwrp .imgdiv img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.services-navwrp .mainwrp-second h2 span {
    color: #fff;
    font-weight: 200;
}

.services-navwrp .mainwrp-second .btnwrp {
    text-align: left;
}


.homepage .writing-serviceswrp {
    padding: 70px 0 130px;
    background: #e8e8e829;
}


.ghst-pg .processwrp .steps_grid img {
    height: 2620px;
}

.ghst-pg .processwrp .steps_grid img {
    height: 2620px;
}

.ghst-pg .air {
    bottom: -1410px;
}


.thnkyouwrp {
    padding: 200px 0 90px;
    display: block;
    text-align: center;
    width: 40%;
    margin: 0 auto;
}

.thnkyouwrp .btnwrp {}

.thnkyouwrp .btnwrp a {}

.thnk-pg header {
    background: #091523;
}


.footer-top {
    background: #091523;
    padding: 50px 0;
    border-bottom: 1px solid #5e5e5e5c;
}

.footer-top .txtwrp h4 {
    color: #5f269f;
    font-size: 22px;
}

.footer-top .genwrp {}

.footer-top .genwrp ul {
    display: inline-block;
    /* padding: 0 30px 0 0px; */
    margin: 0;
    vertical-align: top;
}

.footer-top .genwrp ul li {
    padding: 10px 0 0;
}

.footer-top .genwrp ul li a {
    color: #fff;
    font-size: 14px;
}

.order-pg header .navwrp ul li a {
    color: #000;
}

.privacywrp {
    padding: 70px 0;
}


.home-banner-wrp::before {
    content: "";
    position: absolute;
    height: 109vh;
    width: 100%;
    background-color: #000000a8;
    top: 0;
}

.privacy-policy-banner::before {
    content: "";
    position: absolute;
    height: 46vh;
    width: 100%;
    background-color: #000000a8;
    top: 0;
}


.pg-home .home-banner-wrp::before {
    content: "";
    position: absolute;
    height: 133vh;
    width: 100%;
    background-color: #000000a8;
    top: 0;
    display: none;
}

.testims .home-banner-wrp::before {
    content: "";
    position: absolute;
    height: 51vh;
    width: 100%;
    background-color: #000000a8;
    top: 0;
}


.cnnt .home-banner-wrp::before {
    content: "";
    position: absolute;
    height: 56vh;
    width: 100%;
    background-color: #000000a8;
    top: 0;
}

.abts .home-banner-wrp::before {
    content: "";
    position: absolute;
    height: 70vh;
    width: 100%;
    background-color: #000000a8;
    top: 0;
}


.trms .home-banner-wrp::before {
    height: 300px;
}



.section-6 {
    padding: 70px 0 50px 0;
    /* background: #190823; */
    /* position: absolute; */
    /* width: 100%; */
    /* height: 450px; */
}

.section-6 .txtwrp {
    color: #000;
    text-align: center;
}

.section-6 .txtwrp h2 {
    color: #5f269f;
    font-size: 36px;
    padding: 0 0 20px;
    font-weight: 600;
}

.section-6 .txtwrp h4 {}

.section-6 .txtwrp p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.section-6 .product {
    text-align: center;
    margin: 26px 183px;
}

.section-6 .product ul li {
    margin: 0 5px;
    padding: 10px 15px;
    color: #5f269f;
    font-size: 15px;
    border-radius: 7px;
    font-weight: 500;
    border: 1px solid;
    cursor: pointer;
    float: left;
}

.section-6 .pkg-box {
    padding: 47px 40px 39px;
    border: 2px solid #5f269f;
    border-radius: 12px;
    /* background: #190823; */
    margin: 50px 0px 34px;
    position: relative;
    left: 20px;
}

.section-6 .pkg-box ul {
    position: relative;
    overflow-x: hidden;
    height: 100%;
    max-width: 100%;
    outline: none;
    padding: 0 10px;
    direction: ltr;
    height: 230px;
    text-align: center;
}

.section-6 .pkg-box .pkg-btn {
    text-align: center;
}

.section-6 .pkg-box .txtwrp {
    text-align: left;
}

.section-6 .pkg-box .txtwrp h2 {
    line-height: 1.2;
    font-weight: 700;
    padding: 0 0 15px;
    position: relative;
    letter-spacing: -1px;
    text-align: center;
}

.section-6 .pkg-box .txtwrp h6 {
    color: #5f269f;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.section-6 .pkg-box .txtwrp h2 span {
    color: #000000 !important;
    font-size: 20px;
    font-weight: 600;
    text-decoration: line-through;
    display: inline-block;
}

.section-6 .pkg-box .pkg-btn h5 {
    font-size: 12px;
    padding: 0 0 20px;
    color: #fff;
    font-weight: 600;
    display: block;
    text-align: center;
}

.section-6 .pkg-box .pkg-btn h5 span {
    font-size: 14px;
    color: #5f269f !important;
}

.section-6 .pkg-box .pkg-btn button {
    background: #5f269f;
    color: #fff;
    padding: 1px 36px;
    font-size: 15px;
    border: unset;
    border-radius: 5px;
}

li {
    padding-bottom: 10px;
}

.txtwrp h4 {}


.row.kk {
    width: 70%;
    margin: 0 0 0 246px;
}

.txtwrp.aaa {
    color: #fff;
}

.pkg-box.aaa {
    background: #5f269f;
}


h2.aaa {
    color: #fff !important;
}

h6.aaa {
    color: #fff !important;
}

.pkg-box.aaa {
    background: #5f269f;
    border: 1px solid #5f269f;
}

.sect-add {}

.heead {}

.heead p {}

.heead ul {}

.heead ul li {
    font-size: 18px;
    padding: 0 0 20px 25px;
    color: #000;
}

.heead ul li a {
    color: #000;
}

.heead ul li i {
    margin-right: 10px;
    color: #20cb98;
}



.bil-ban {
    padding-top: 220px;
}

.billing .navwrp ul li a {
    color: #000;
}

.billing .header-main {
    background: #fff;
}

.billing .upr-navwrp ul li a {
    color: #000 !important;
}

.billing header {
    padding: 10px 0 10px 0;
}

h1.had-1 {
    margin: 0 0 15px 60px;
}

textarea#message {
    border-radius: 20px;
}

.billing-para {
    color: black;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 0 -38px;
}


.para1 {
    text-align: center;
    margin: 0 auto 0;
    color: #3b3b3b;
    font-size: 16px;
    display: table;
    margin: 0 0 0 106px;
}

/*.under-form {*/
/*    width: 100%;*/
/*    visibility: visible;*/
/*    animation-name: flipInY;*/
/*    margin: 30px auto 0px;*/
/*    padding: 0px;*/
/*    display: table;*/
/*    width: 100%;*/
/*    padding: 30px 50px 70px;*/
/*    background: url(../images/contact-form-bg.webp) no-repeat center;*/
/*    background-size: cover;*/
/*    box-shadow: 0px 10px 15px 10px rgba(204, 204, 204, 0.22);*/
/*    color: #000;*/
/*}*/

.entry {
    display: block;
    width: 100%;
    height: 50px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #d5d5d5;
    border-radius: 42px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.submit-para {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
    margin: 10px 0 0 0;
    text-align: left;
}

.form-group {
    margin: 14px 0 0 6px;
}

.fff {
    width: 110%;
    margin-left: 75px;
}

h1.had-1 {
    margin: 0 0 20px 260px;
}

button#confirm-purchase {
    position: absolute;
    bottom: -11px;
    right: 17px;
    border: 1px solid black;
    font-size: 22px;
    padding: 5px 95px 5px 95px;
}

a.aaa {
    color: #fff;
}

.billing_pg header .navwrp ul li a {
    color: #000;
}

.pkg-btn a {
    background: linear-gradient(to right, #5f269f, #3acece);
    color: #fff;
    padding: 10px 10px;
    border-radius: 7px;
    margin: 0 0px 0 7px;
    width: 100%;
    margin: 0 auto;
    display: table;
}

.txtwrp.aaa a {
    background: #fff;
    color: #5f269f;
}

.hm-banner-wrp {
    position: relative;
}

.hm-banner-wrp:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000008f;
    z-index: 0;
}

.img-overlays {
    z-index: 999;
}