@font-face {
    font-family: 'gothambold';
    src: url('fonts/gotham-bold-webfont.woff2') format('woff2'), url('fonts/gotham-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gothamlight';
    src: url('fonts/gotham-light-webfont.woff2') format('woff2'), url('fonts/gotham-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong,
span {
    font-family: 'gothambold' !important;
}

p,
a,
div,
input,
ul,
li {
    font-family: 'gothamlight' !important;
}

#jqcheck {
    background: #fff9d7;
    text-align: center;
    color: #333;
    padding: 10px 0px;
    font-size: 13px;
    font-weight: bold;
    position: fixed;
    z-index: 9991;
    width: 100%;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}


/* 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: #ffffff;
    -webkit-border-radius: 0px;
    border-left: 1px solid #fff;
}

::-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 {
    color: var(--default-color);
    font-size: var(--base-font-size);
    position: relative;
}


/* 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);
}

.profile_area {
    padding: 122px 0;
}

.profile_area h4,
.profile_area h2 {
    color: rgb(20 30 68);
    padding: 0 0 20px;
    font-family: 'gothambold';
    font-size: 51px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    line-height: 68px;
}

.profile_area h4 span , .profile_area h2 span {
    display: block;
    color: rgb(20 30 68);
}

.pf_crd {
    margin: 11rem 0 0 0;
}

.profile_area .nav-pills {
    justify-content: center;
    margin: 61px 0;
}

.profile_area .nav-pills .nav-link {
    width: 164px;
    text-align: center;
    padding: 10px 0;
    font-size: 17px;
    font-weight: 600;
    font-family: 'gothamlight';
    color: #e90d71;
}

.profile_area .nav-pills .nav-link.active {
    background: #141e44;
    color: #fff;
}

.pf_crd .crd_1 {
    background: white;
    border-radius: 7px;
    position: relative;
    text-align: center;
    transition: all 0.4s ease-in-out;
    height: 398px;
    box-shadow: 0px 0px 9px #141e444a;
    cursor: pointer;
}

.pf_crd .crd_1:hover img {
    transform: rotate(360deg);
}

.pf_crd .crd_1:hover {
    transform: scale(1.1);
}

.pf_crd .crd_1 .img_area {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pf_crd .crd_1 .img_area img {
    width: 163px;
    height: 164px;
    border-radius: 50%;
    border: 7px solid #ec0d72;
    transition: all 4s ease-in-out;
}

.pf_crd .crd_1 .txt_area {
    padding: 113px 21px 0;
}

.pf_crd .crd_1 h5 , .pf_crd .crd_1 h3 {
    margin: 0;
    font-size: 24px;
    line-height: 34px;
    color: #141e44;
}

.pf_crd .crd_1 p {
    font-size: 14px;
    padding: 25px 0;
}

.pf_crd .crd_1 a {
    background: #141e44;
    color: #fff;
    display: block;
    width: 45%;
    margin: 0 auto;
    padding: 11px 0;
    border-radius: 7px;
    font-size: 14px;
    font-family: 'gothamlight';
    font-weight: 800;
    transition: all 0.3s ease-in-out;
}

.pf_crd .crd_1 a:hover {
    background-color: #0031c6;
    color: #fff;
}


/* 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: 'gothamlight' !important;
    display: none;
    font-size: 13px;
    color: white;
    padding-left: 10px;
    display: none !important;
    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; font-family: 'gothambold'; }
h1,h2, h3 {font-family: 'gothambold';  font-weight: 900;}
h4, h5, h6, a, li{font-family: 'gothambold'; padding-bottom: 10px;font-family: 'gothambold';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;
}


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

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.preloader .preloader-after,
.preloader .preloader-before {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(96deg, #6254e7 0%, #9289f1 100%);
}

.preloader .preloader-before {
    top: 0;
}

.preloader .preloader-after {
    bottom: 0;
}

.preloader .preloader-block {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
}

.preloader .preloader-block .title {
    position: absolute;
    left: 0;
    bottom: calc(50% + 16px);
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #fff;
}

.preloader .preloader-block .percent {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    font-weight: 700;
    letter-spacing: 8px;
    font-size: 24vw;
    color: rgba(255, 255, 255, .14);
    z-index: 1;
}

.preloader .preloader-block .loading {
    position: absolute;
    top: calc(50% + 16px);
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #fff;
    -webkit-animation: blink-animation 2.2s linear infinite;
}

.preloader .preloader-bar {
    position: absolute;
    z-index: 2;
    top: calc(50% - 1px);
    right: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .14);
}

.preloader .preloader-bar .preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    height: 100%;
    width: 0;
    background: #fff;
}

@-webkit-keyframes blink-animation {
    0% {
        opacity: 0
    }
}

@-moz-keyframes blink-animation {
    0% {
        opacity: 0
    }
}

@keyframes blink-animation {
    0% {
        opacity: 0
    }
}

.preloader.hidden-main {
    opacity: 0;
    visibility: hidden
}

.preloader .preloader-after,
.preloader .preloader-before {
    transition: .6s ease-in-out
}

.hidden .preloader-after {
    transform: translate(0, 100%)
}

.hidden .preloader-before {
    transform: translate(0, -100%)
}

.loader-width .preloader-progress {
    width: 100% !important
}

.preloader .preloader-bar .preloader-progress {
    transition: width 3.2s;
    transition-timing-function: cubic-bezier(.1, .5, 1.3, .1)
}

.bubbles_wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
    pointer-events: none
}

@-webkit-keyframes animateBubble {
    0% {
        margin-top: 20%
    }

    to {
        margin-top: -30%
    }
}

@-moz-keyframes animateBubble {
    0% {
        margin-top: 20%
    }

    to {
        margin-top: -30%
    }
}

@keyframes animateBubble {
    0% {
        margin-top: 20%
    }

    to {
        margin-top: -30%
    }
}

@-webkit-keyframes sideWays {
    0% {
        margin-left: 0
    }

    to {
        margin-left: 25px
    }
}

@-moz-keyframes sideWays {
    0% {
        margin-left: 0
    }

    to {
        margin-left: 25px
    }
}

@keyframes sideWays {
    0% {
        margin-left: 0
    }

    to {
        margin-left: 25px
    }
}

.x1 {
    -webkit-animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 6%;
    top: 45%;
    background: #ffb739
}

.x2 {
    -webkit-animation: animateBubble 10s linear infinite, sideWays 4s ease-in-out infinite alternate;
    animation: animateBubble 10s linear infinite, sideWays 4s ease-in-out infinite alternate;
    left: 5%;
    top: 80%;
    background: #fc4fdd
}

.x3 {
    -webkit-animation: animateBubble 18s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 18s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 10%;
    top: 40%;
    background: #5ed5cb
}

.x4 {
    -webkit-animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
    animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
    left: 20%;
    top: 0;
    background: #3de4a3
}

.x5 {
    -webkit-animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
    animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
    left: 30%;
    top: 50%;
    background: #fc4fb1
}

.x6 {
    -webkit-animation: animateBubble 11s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 11s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 50%;
    top: 0;
    background: #2c4aff
}

.x7 {
    -webkit-animation: animateBubble 10s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 10s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 65%;
    top: 70%;
    background: #ffb739
}

.x8 {
    -webkit-animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
    animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
    left: 80%;
    top: 10%;
    background: #8f3de4
}

.x9 {
    -webkit-animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
    animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
    left: 90%;
    top: 50%;
    background: #fff339
}

.x10 {
    -webkit-animation: animateBubble 16s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 16s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 80%;
    top: 80%;
    background: #fc4f4f
}

.bubble {
    border-radius: 50%;
    box-shadow: none;
    height: 5px;
    position: absolute;
    width: 5px
}

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;
    font-family: 'gothambold';
}

.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: 'gothamlight' !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;
}


/* privacy_content  */

.privacy_content {
    padding: 100px 0;
}

.privacy_content h4 {
    color: #242047;
    font-family: 'gothambold';
    font-size: 30px;
    padding: 15px 0;
}

.privacy_content p {
    font-size: 15px;
    line-height: 27px;
}


/* privacy_content  */


/*** 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);
}

.btn-main {
    padding: 15px 40px;
    border-radius: 35px;
    color: #080808;
    font-weight: 500;
    font-size: 16px;
    background: white;
}

.btn-main:hover {
    /* background: transparent;
    border: 2px solid white;
    color: white; */
    background: transparent;
    border: 2px solid #008cfa;
    color: #008cfa;
}

.btn-secnd {
    padding: 15px 40px;
    /* border-radius: 62px; */
    color: #ec0d72;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid #ec0d72;
    margin: 0 0 0 15px;
}

.btn-secnd:hover {
    padding: 15px 40px;
    padding: 15px 40px;
    border-radius: 35px;
    color: #fff !important;
    font-weight: 500;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
}

.btnwrp {
    padding: 30px 0 85px 0;
    position: relative;
    z-index: 1;
}

h2.main-heading {
    color: #000;
    padding: 0 0 20px;
    font-family: 'gothambold';
    font-size: 45px;
    font-weight: 700;
}

p.main-pera {
    color: #3a3a3a;
    font-size: 18px;
    font-weight: 500;
}


/* header 
------------------------------------*/

.header-main.showmenu ul.dropdown-content li a {
    color: #000 !important;
}

ul.dropdown-content li a {}

.header-main.showmenu {
    background-color: #fff;
    box-shadow: -1px -2px 15px -3px rgb(0 0 0 / 41%);
    padding: 20px 0 0;
}

.header-main.showmenu .top-head {
    display: none;
}

header {
    /* padding: 0px 0 20px; */
    position: fixed;
    width: 100%;
    z-index: 99;
}

header .logowrp {
    margin: 12px 0;
}

header .logowrp img {
    /* position: absolute;
    left: -400px;
    top: -46px;
    height: 123px;
    z-index: 26; */
    width: 100%;
}

header .navwrp {
    /* background: white; */
    border-radius: 10px;
    margin: 0px 10px 0px 5px;
    float: left;
}

header .navwrp ul {
    margin: 15px 0 0;
    text-align: right;
}

header .navwrp ul li {
    display: inline-block;
    margin: 16px 10px;
    margin-bottom: -17px;
}

header .navwrp ul li a {
    color: rgb(0 0 0);
    font-size: 15px;
    font-weight: 500;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
    position: relative;
    margin-left: 10px;
}

header .navwrp ul li a:hover {
    color: #008CFA;
}

header .navwrp ul li a.btnwrp {
    padding: 17px 25px;
    border-radius: 2px;
    color: #ffffff !important;
    font-weight: 500;
    background-color: #ec0d72;
    /* background: #141e44; */
    /* border: 2px solid #ec0d72; */
    text-transform: uppercase;
    font-family: 'gothambold' !important;
    font-size: 16px;
    /* margin-left: 7px !important; */
    border-radius: 4px;
}

.service-bg header .logo-clr {
    display: none;
}

.service-bg header .logo-bkl {
    display: block;
}

.service-bg header.showmenu .logowrp img.logo-clr {
    display: none;
}

.service-bg header.showmenu .logowrp img.logo-bkl {
    display: block;
}

.hompg header .logowrp img.logo-bkl {
    display: block;
}

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

.service-bg header .navwrp ul li a:hover {
    color: #0850b9;
}

.home-bnnerwrp .txtwrp {
    z-index: 1;
    position: relative;
}

.home-bnnerwrp {
    position: relative;
}

.home-bnnerwrp video {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
}

.home-bnnerwrp .txtwrp h1,
.home-bnnerwrp .txtwrp h4 {
    color: #ffffff;
    font-size: 19px;
    font-weight: 100 !important;
    margin-top: 63px;
    font-family: 'gothamlight' !important;
}

h4.wow.fadeInDown:before,
h1.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 209px;
    height: 4px;
    position: absolute;
    bottom: 0;
    /* top: 20px; */
}

.home-bnnerwrp .txtwrp h1,
.home-bnnerwrp .txtwrp h2 {
    font-size: 50px;
    color: #ffffff;
    font-weight: 700;
    font-weight: 700;
    line-height: 66px;
    padding: 20px 0 23px;
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-image: linear-gradient(to right top, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff); */
}

.home-bnnerwrp .txtwrp p {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    line-height: 32px;
}

.home-bnnerwrp .txtwrp ul {}

.home-bnnerwrp .txtwrp ul li {
    display: inline-block;
    margin: 0 13px;
}

.home-bnnerwrp .txtwrp ul li img {}

.home-bnnerwrp .imgwrp {
    position: relative;
}

.home-bnnerwrp .imgwrp img {
    width: 100%;
    position: absolute;
    left: 157px;
    top: -22px;
}

.btn-img {}

.col-lg-12.row.mb {
    margin-bottom: 15px;
}

section.service-featured .col11 h1 {
    font-size: 20px !important;
    padding: 12px 0 6px;
}

body .col11:hover {
    background-image: linear-gradient(to right top, #000000, #000000, #000000, #000000, #000000);
    cursor: pointer;
}

.col11 {
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    color: white;
    border-radius: 20px;
    width: 370px;
    height: 323px;
    padding: 37px 20px 10px 30px;
    z-index: 9;
}

div#second-box {
    position: relative;
    margin: 0px auto;
}

div#second-box img {
    position: absolute;
    left: -15%;
    right: 0;
    margin: 0px auto;
    top: -180px;
    z-index: 0;
}

div#first-box {
    position: relative;
    left: -90px;
}

div#third-box {
    position: relative;
    right: -90px;
}

.col12 {
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    color: white;
    border-radius: 20px;
    width: 370px;
    height: 323px;
    padding: 37px 30px;
}

.box-p {
    color: white;
    width: 100% !important;
}

.myimg {
    position: relative;
    /* left: -168px; */
    right: -176px;
    top: -98px;
}

.check-clr {
    color: #008CFA;
}

.myimg1 {
    border: 0px;
    outline: none;
    width: 129%;
}

h2.myh2,
h3.myh2 {
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'gothambold' !important;
    color: #141e44;
    padding-bottom: 0;
    margin-bottom: 0;
}

p.myp2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
}

.myli {
    line-height: 34px;
}

.mainwp {
    position: relative;
    left: 116px;
}

.btn-main {
    padding: 15px 40px;
    border-radius: 0 !important;
    color: #000000;
    font-weight: 800;
    font-size: 17px;
    background: #ffffff;
    /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
    margin-right: 19px;
    font-family: 'gothambold' !important;
    text-transform: uppercase;
}


.header-main.showmenu .navwrp ul li a {
    color: #020202;
}

.hompg .header-main.showmenu .logo-clr {
    display: none;
}

.hompg .header-main.showmenu .logo-bkl {
    display: block;
}

.header-main.showmenu .navwrp ul li a.btnwrp {
    background-image: unset;
    background-color: #000;
    color: #fff !important;
}

header .txtdiv {}

header .txtdiv h6 {
    color: #000;
    font-size: 18px;
}

header .txtdiv span {
    color: #0853bd;
}

header .navtop {
    margin: 0 0 0px;
}

header .navtop ul {
    margin: 0;
    text-align: right;
    padding: 6px 0;
}

header .navtop ul li {
    display: inline-block;
    margin: 0 15px;
    padding: 0;
}

header .navtop ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
    position: relative;
    padding: 0;
}

.top-head {
    /* background: #f3f5f7; */
    /* border-bottom: 1px solid #cbd6e2; */
    padding: 1px 0 0px;
    margin: 19px 0 10px;
}

header .navtop ul li a.blink:after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #ec0d72;
    right: -13px;
    top: 8px;
    border-radius: 50%;
}

header .navtop ul li a.blink:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #ec0d72;
    left: -13px;
    top: 8px;
    border-radius: 50%;
}

header .navtop ul li a i {
    color: #083da2;
}

.navwrp ul li a.btnwrp {
    position: absolute;
    right: -15% !important;
    top: 18px !important;
    padding: 9px 30px !important;
}

header .navwrp ul li a {
    margin: 0 2px 34px 10px !important;
    font-weight: 500;
    font-size: 16px;
}

.navwrp ul {
    margin: 16px 0px !important;
    padding: 5px 0;
}

header.header-main {
    /* height: 160px!important; */
    border-bottom: 1px solid #ffffff63;
    background: white;
}

section.clientswrp .txtwrp {
    z-index: 9999;
}

.clientswrp {
    padding: 40px 0 0px !important;
    text-align: center;
    display: block;
    /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
    width: 100%;
    margin: 0 0;
    position: relative;
    /* top: -120px; */
    height: 40vh;
    background: radial-gradient(102% 75% at bottom, transparent 52%, #f8f8f8 51%);
    z-index: -1;
    background-position: 40% 0px !important;
}

.clientswrp .txtwrp {}

.clientswrp .txtwrp h4 {
    color: #141e44;
    font-size: 29px;
    font-weight: 700;
    z-index: 9999;
}

.clientswrp .txtwrp h4 span {}

.clientswrp .txtwrp h4 span i {
    color: #ff9406;
}

.clientswrp .txtwrp ul {
    margin: 20px 0 0;
}

.clientswrp .txtwrp ul li {}

.clientswrp .txtwrp ul li img {}

.imgwrp {
    POSITION: relative;
    left: -153px;
}

.service-cetawrp {
    padding: 0 0 27px;
}

.dual {
    color: #ec0d72;
}

.smh {
    color: #000;
    /* padding: 0 0 0px; */

    font-family: 'gothamlight';
    font-size: 20px;
    letter-spacing: 6px;
}

.service-cetawrp .txtwrp {
    display: block;
    /* padding: 0 0 20px;  */
}

.service-cetawrp .txtwrp h2 {
    color: #008CFA;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    /* margin: 0 0 0 30px; */

    font-weight: 700;
}

/* .service-cetawrp .txtwrp h2:after{content: "";position: absolute;width: 100px;height: 2px;background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);bottom: 0;left: 0;} */
.service-cetawrp ul.tabbing-links {}

.service-cetawrp ul.tabbing-links li {
    font-size: 34px;
    color: #8a8484;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
}

.service-cetawrp ul.tabbing-links li.current {
    transform: scale(1.1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
}

.service-cetawrp ul.tabbing-links li:hover {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    transform: scale(1.1);
}

.service-cetawrp .ser-port {}

.service-cetawrp .ser-port li {}

.service-cetawrp .ser-port li .imgwrp {}

.service-cetawrp .ser-port li .imgwrp img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-cetawrp .ser-port li .mainwrp {
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    padding: 60px 40px;
    height: 400px;
}

.service-cetawrp .ser-port li .mainwrp h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    padding: 0 0 5px;
}

.service-cetawrp .ser-port li .mainwrp span {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.service-cetawrp .ser-port li .mainwrp p {
    color: #fff;
    font-size: 18px;
    padding: 20px 0 0;
}

.service-cetawrp .ser-port li .mainwrp .btn-main {
    background-image: unset;
    padding: 15px 25px;
}

.service-cetawrp .ser-port li .mainwrp .btn-secnd {
    color: #fff;
    font-weight: 500;
    padding: 15px 25px;
}

.ctawrp {
    padding: 50px 0;
    text-align: center;
    display: block;
}

.ctawrp .mainwrp {
    background-size: cover;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
    background-image: url(../images/cta-main-bg.html);
    width: 88%;
    margin: 0 auto;
    height: auto;
    text-align: center;
    border-radius: 26px;
    padding: 40px 0 60px;
    background-repeat: no-repeat;
}

.ctawrp .mainwrp .txtwrp {}

.ctawrp .mainwrp .txtwrp h2 {
    color: #fff;
    width: 80%;
    margin: 0 auto;
    font-size: 48px;
}

.ctawrp .mainwrp .txtwrp p {
    color: #fff;
}

.ctawrp .mainwrp .btnwrp .btn-main {
    background-color: #fff;
    background-image: unset;
    color: #000;
}

.ctawrp .mainwrp .btnwrp .btn-secnd {
    color: #fff;
}

.ctawrp:hover .mainwrp {
    transform: scale(1.1);
}

.ctawrp .mainwrp .btnwrp {}

.portfoliowrp {
    padding: 40px 0 70px;
}

.portfoliowrp .navwrp {
    text-align: center;
    margin: 0 auto;
}

.portfoliowrp .navwrp .tabbing-links {
    text-align: center;
    margin: 0 0 30px;
    border-radius: 25px;
    margin: 20px auto 40px;
    width: auto;
    background-color: #f3f0f0;
    padding: 2px 2px;
    display: inline-block;
}

.portfoliowrp .navwrp .tabbing-links li {
    display: inline-block;
    color: #000;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    /* background: #f3f3f3; */
}

.portfoliowrp .navwrp .tabbing-links li.current {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    padding: 10px 40px;
    background: #008cfa;
    border: none;
    vertical-align: bottom;
}

.portfoliowrp .imgport {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.portfoliowrp .imgport li {
    display: inline-block;
    width: 32%;
    margin: 0 5px 15px;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
}

.portfoliowrp .imgport li:hover {
    transform: scale(1.1);
}

.portfoliowrp .imgport li img {
    width: 100%;
    border-radius: 10px;
}

.portfoliowrp .imgport li figure {
    margin: 0px;
}

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

.portfoliowrp .tabs {
    display: none;
}

.portfoliowrp .tabs.current {
    display: block;
}

.pakcgewrp {
    padding: 60px 0;
    background-image: url(../images/packages-bg.html);
    background-repeat: no-repeat;
    background-size: cover;
}

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

.pakcgewrp .txtwrp p {
    color: rgb(0, 0, 0);
    text-align: left;
}

.pakcgewrp .txtwrp h2 {
    color: rgb(0, 0, 0);
    text-align: left;
    font-size: 45px;
    font-family: 'gothamlight';
    font-weight: 700;
}

.pakcgewrp .navwrp {
    text-align: center;
    display: block;
}

.pakcgewrp .navwrp ul.tabbing-links {
    text-align: center;
    margin: 0 0 60px;
    width: auto;
    background-color: #f3f0f0;
    padding: 2px 2px;
    margin: 20px auto 50px;
    border-radius: 25px;
    display: inline-block;
}

.pakcgewrp .navwrp ul.tabbing-links li {
    border-bottom: 1px solid;
    padding: 10px 40px;
    border-radius: 20px;
    color: #000;
    vertical-align: bottom;
    font-weight: 500;
    display: inline-block;
    border: 1px solid;
    cursor: pointer;
    margin: 0 2px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.pakcgewrp .navwrp ul.tabbing-links li.current {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    padding: 10px 40px;
    background: #008cfa;
    border: none;
    vertical-align: bottom;
}

.pakcgewrp .navwrp .pkgeport {
    text-align: center;
}

.pakcgewrp .navwrp .pkgeport li {
    transition: all 200ms ease-in;
    display: inline-block;
    width: 30%;
    border: 2px solid #fff;
    border-radius: 13px;
    padding: 30px 10px;
    margin: 0 10px 50px;
    background: #008cfa;
    /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
}

.pakcgewrp .navwrp .pkgeport li.best-slr {
    position: relative;
    overflow: hidden;
    vertical-align: bottom;
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .btnwrp a.chat-btn {
    color: #000;
}

.pakcgewrp .navwrp2 ul.tabbing-links {}

.pakcgewrp .navwrp2 ul.tabbing-links li {
    width: auto;
}

.pakcgewrp .navwrp2 ul.tabbing-links li.current {}

.pakcgewrp .navwrp2 ul.tabbing-links li:hover {
    box-shadow: 0px 0px 20px 1px #353434a3;
     z-index: 2;
    -webkit-transition: unset;
    -webkit-transform: unset;
    -ms-transition: unset;
    -ms-transform: unset;
    -moz-transition: unset;
    -moz-transform: unset;
    transition: unset;
    transform: unset;
    background-color: unset;
    box-shadow: unset;
}

.pakcgewrp .navwrp2 ul.tabbing-links li.current:hover {
    background-color: #fff;
    color: #000;
}

/* writing_page  */
.writing_page {
    margin-top: -39px;
}

.writing_page h4 {
    font-size: 43px;
    color: #141e44;
    text-align: center;
}

.writing_page p {
    font-size: 17px;
    /* text-align: center; */

    padding: 19px 0;
    line-height: 31px;
}

.writing_page ul li b {
    color: #d51e85;
}

.writing_page ul li {
    padding: 16px 0;
    font-size: 17px;
}

/* writing_page  */
.pakcgewrp .navwrp .pkgeport li.best-slr:after {
    content: "";
    content: "BEST SELLER";
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    vertical-align: middle;
    padding: 7px 10px;
    text-indent: -15px;
    display: block;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    height: 35px;
    width: 180px;
    background-color: #0457c2;
    position: absolute;
    border: 2px solid #ffffff;
    box-shadow: 2px 1px 7px -1px #ffffff;
    right: -62px;
    top: 23px;
}

.pakcgewrp .navwrp .pkgeport li:hover {
    /* box-shadow: 0px 0px 20px 1px #353434a3; */

    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);
    background-color: #008cfa;
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .namwrp h2 {
    color: rgb(255, 255, 255);
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .namwrp span {
    color: #cacaca;
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .pricewrp h1 {
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */

    color: #fff;
    transform: scale(1.1);
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .pricewrp h4 {
    color: #000;
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .pricewrp h4 span {
    color: #fff;
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .detailwrp ul li {
    color: #000;
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .btnwrp p {
    color: #000;
    color: #b9b9b9;
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .btnwrp a {
    border: 1px solid #000;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge {
    /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */

    background: #008cfa;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .namwrp {
    text-align: left;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .namwrp h2 {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0 10px;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .namwrp span {
    font-size: 16px;
    color: #cacaca;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .pricewrp {}

.pakcgewrp .navwrp .pkgeport li .mainpkge .pricewrp h1 {
    font-weight: 700;
    font-size: 27px;
    color: #fff;
    display: inline-block;
    margin-right: -21px;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .pricewrp h1:hover {
    font-weight: 700;
    font-size: 27px;
    color: #fff;
    display: inline-block;
    margin-right: -21px;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .pricewrp h4 {
    font-size: 22px;
    display: inline-block;
    color: #fff;
    margin: 0 0 0 20px;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .pricewrp h4 span {
    display: block;
    text-decoration: line-through;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .detailwrp {
    margin: 0 33px 0 -10px;
    background: white;
    /* border-bottom-right-radius: 9px; */
    /* border-top-right-radius: 9px; */

    border-radius: 9px;
    position: relative;
    height: 26em;
    right: 5px;
    box-shadow: 0 0 20px 0px #0000001c;
    width: 241px;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .detailwrp ul {
    text-align: left;
    height: 350px;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .detailwrp ul li {
    border: none;
    display: block;
    width: auto;
    padding: 35px;
    position: relative;
    color: #fff;
    font-size: 15px;
    padding: 0 0 2px;
    margin: 0 0 0 20px;
    color: black;
    background: #fff;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .detailwrp ul li:hover {
    transform: unset;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .detailwrp ul li:after {
    content: "\f00c";
    position: absolute;
    font-family: 'FontAwesome';
    left: -20px;
    top: 0;
    color: #0bad00;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .btnwrp {}

.pakcgewrp .navwrp .pkgeport li .mainpkge .btnwrp a {
    padding: 11px 20px;
    border-radius: 20px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    position: relative;
    top: 41px;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .btnwrp p {
    font-size: 14px;
    color: #fff;
    color: #b9b9b9;
    padding: 20px 0 0;
}

.pakcgewrp .btnwrp .btn-main {
    color: #000;
    background-color: #fff;
    background-image: unset;
}

.pakcgewrp .btnwrp .btn-secnd {
    color: #fff;
}

ul.tabs.pkgeport {
    display: none;
}

ul.tabs.pkgeport.current {
    display: block;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .btnwrp a.chat-btn {
    margin: 0 0 0 10px;
    background-color: unset;
    color: #fff;
    border: 1px solid;
}

.conbowrp {
    padding: 60px 0;
}

.conbowrp .mainpkge {
    display: block;
    background-image: url(../images/combo-bg.html);
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 50px 30px 20px;
    border-radius: 40px;
    box-shadow: 0px 6px 21px 11px rgb(0 0 0 / 8%);
    background-repeat: no-repeat;
    background-size: cover;
}

.conbowrp .mainpkge:before {
    content: "";
    position: absolute;
    background-color: #ffffffd9;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 40px;
}

.conbowrp .pkgehead {
    text-align: center;
    background-image: url(../images/pkge-head.html);
    background-repeat: no-repeat;
    background-size: cover;
    width: 66%;
    margin: 0 auto -20px;
    position: relative;
    z-index: 1;
}

.about_img img {
    width: 95%;
    border-radius: 9px;
    position: relative;
    /* box-shadow: -17px -16px 0px #6750d2e3; */
}

.conbowrp .pkgehead h2 {
    color: #fff;
    padding: 15px 0 0;
}

.conbowrp .pkgehead p {
    color: #fff;
}

.conbowrp .mainpkge .navwrp {}

.conbowrp .mainpkge .navwrp h4 {
    font-size: 20px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    transform: scale(1.1);
    margin: 12px 0 0 14px;
}

.conbowrp .mainpkge .navwrp ul {
    margin: 0 0 0 30px;
}

.conbowrp .mainpkge .navwrp ul li {
    font-size: 14px;
    color: #a09c9ce3;
    font-weight: 300;
    padding: 0 0 3px;
}

.conbowrp .mainpkge .btnwrp {
    padding: 28px 0 0;
}

.conbowrp .mainpkge .btnwrp .btn-main {
    display: block;
    margin: 0 0 13px;
    text-align: center;
    width: 80%;
    padding: 10px 0;
    padding: 15px 40px;
}

.conbowrp .mainpkge .btnwrp .btn-secnd {
    display: block;
    margin: 0;
    text-align: center;
    width: 80%;
    padding: 15px 40px;
}

.conbowrp .mainpkge .imgwrp {
    position: relative;
}

.conbowrp .mainpkge .imgwrp img {
    width: 130%;
    position: absolute;
    top: 140px;
    left: -80px;
}

.testiwrp {
    padding: 100px 0 100px;
    background-image: url(../images/testimonial-bg.html);
    background-size: cover;
    background-repeat: no-repeat;
    height: 47em;
}

.testiwrp .imgwrp {
    display: block;
    text-align: center;
    position: relative;
    left: 94px;
    top: 44px;
}

.testiwrp .imgwrp img {
    width: 50%;
    border-radius: 50%;
    border: 2px solid #fff;
    position: relative;
    margin: 0 auto;
}

.testiwrp .txtwrp {}

.testiwrp .txtwrp h4 {
    font-size: 22px;
    color: #fff;
    text-transform: capitalize;
}

.testiwrp .txtwrp h2 {
    color: #fff;
    font-size: 56px;
    text-transform: capitalize;
}

.testiwrp .txtwrp p {
    color: #fff;
    padding: 0 0 7px;
}

.testiwrp .txtwrp h5 {
    font-size: 24px;
    color: #fff;
    padding: 10px 0 0;
}

.testiwrp .txtwrp span {
    font-size: 18px;
    color: #fff;
}

.testiwrp .txtwrp span {}

.testiwrp .txtwrp span i {
    color: #ffe10b;
    font-size: 15px;
}

.testiwrp .img-anii {}

.testiwrp .img-anii img {
    width: 30% !important;
    position: absolute;
    right: 300px !important;
    margin: -80px auto 0;
    -webkit-animation: tesiMove linear infinite 5s;
    -moz-animation: tesiMove linear infinite 5s;
    -o-animation: tesiMove linear infinite 5s;
    animation: tesiMove linear infinite 4s;
}

@keyframes tesiMove {
    0% {
        transform: rotate(0)
    }

    15% {
        transform: rotate(2deg)
    }

    33% {
        transform: rotate(4deg)
    }

    66% {
        transform: rotate(2deg)
    }

    100% {
        transform: rotate(0)
    }
}

.logo-clntwerp {
    background-image: url(../images/client-icon-bg.html);
    background-size: cover;
    background-repeat: no-repeat;
}

.logo-clntwerp .txtwrp {
    padding: 60px 0;
    height: 40em !important;
    text-align: center;
}

.logo-clntwerp ul {
    margin: 30px 0 0;
}

.logo-clntwerp ul li {}

.logo-clntwerp ul li img {
    width: 40%;
    transition: all 200ms ease-in;
}

.logo-clntwerp ul li img:hover {
    filter: unset;
}

.cta-sndwrp {
    display: block;
    text-align: center;
    padding: 60px 0 70px;
    background-image: url(../images/banner1.html);
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-sndwrp .txtwrp {}

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

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

.cta-sndwrp .btnwrp {}

.cta-sndwrp .btnwrp .btn-main {
    color: #fff;
    border: 1px solid #fff;
}

.cta-sndwrp .btnwrp .btn-secnd {
    margin: 0 20px;
    background-color: #fff;
    border: none;
}

.btm-form {
    padding: 70px 0;
    background-image: url(../images/form-bg.html);
    background-repeat: no-repeat;
    background-size: cover;
}

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

.btm-form .txtwrp p span {
    color: #07379b;
    font-weight: bold;
}

.btm-form .formwrp {
    width: 70%;
    margin: 30px auto 0;
}

.btm-form .formwrp form {}

.btm-form .formwrp form .lable {}

.btm-form .formwrp form .lable input {
    width: 100%;
    height: 50px;
    border-radius: 20px;
    border: 1px solid #818181;
    margin: 0 0 20px 0;
    padding: 0 0 0 15px;
    outline: none;
}

.btm-form .formwrp form .lable textarea {
    width: 100%;
    height: 170px;
    border-radius: 20px;
    border: 1px solid #818181;
    outline: none;
    resize: none;
    padding: 20px 0 0 20px;
}

.btm-form .formwrp form .lable select {
    width: 100%;
    height: 50px;
    border-radius: 20px;
    border: 1px solid #818181;
    margin: 0 0 20px 0;
    padding: 0 0 0 15px;
    outline: none;
}

.btm-form .formwrp form .lable input.btnmain {
    color: #fff;
    font-weight: 600;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    width: 50%;
    margin: 20px auto 0;
    text-align: center;
    display: block;
    border: none;
}

.btn-main:hover {
    background: transparent;
    border: 2px solid #ec0d72;
    color: #ec0d72 !important;
}

footer {
    padding: 160px 0 50px;
    /* background-image: url(../imgs/footer-bg.webp); */

    background-repeat: no-repeat;
    background-size: cover;
    background: #141e44;
}

footer .logowrp {}

footer .logowrp a img {
    width: 65%;
    margin: 12px 0 0;
    /* background: #fff; */
    border-radius: 4px;
    padding: 0 20px;
}


footer .logowrp p {
    padding: 22px 0 30px;
    font-size: 16px;
    color: #fff;
}

footer .logowrp ul {
    margin: 0 0 0 10px;
}

footer .logowrp ul li {
    display: inline-block;
    margin: 0 0px;
    width: 19%;
    transition: all 0.3s ease;
}

footer .logowrp ul li a img.twitter{
    background: #fff;
    width: 35px;
    height: 35px;
    margin: -5px 0 0 0;
    border-radius: 45px;
    padding: 5px;
}

footer .logowrp ul li a i {
    height: 35px;
    width: 35px;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px 0 0px 11px;
    box-sizing: border-box;
    transition: 2s all;
}

footer .logowrp ul li a i:hover {
    color: #063395;
}

footer .fotrnav {
    margin: 30px 0 0;
}

footer .fotrnav h4 {
    color: #ec0d72;
    font-size: 18px;
    font-weight: 800;
}

footer .fotrnav ul {
    margin: 20px 0 0;
}

footer .fotrnav ul li {
    display: block;
    padding: 0 0 5px;
}

footer .fotrnav ul li i {
    margin: 0 10px 0 0;
    color: #ec0d72;
}

footer .fotrnav ul li a {
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

footer .fotrnav ul li a:hover {
    color: #e4a12a;
}

footer .fotrnav ul li a img {
    margin: 10px 0 0;
}

footer .fotrnav ul li a img.address-add{
    position:inherit !important;
}

footer .fotr-btm {
    margin: 30px 0 0;
}

footer .fotr-btm p {
    color: #fff;
    text-align: left;
    font-size: 14px;
    padding: 0px 0 0;
}

footer .fotr-btm ul {
    margin: 0;
    text-align: right;
}

footer .fotr-btm ul li {
    display: inline-block;
    padding: 0;
    margin: 0 10px 0;
}

footer .fotr-btm ul li a {
    color: #fff;
}

.col-md-12.linewrp {
    background-color: #ec0d72;
}

.secnd-fold {
    padding: 0px 0 40px;
    margin: -90px 0 0 0;
}

.secnd-fold .col-md-6.my-auto {
    text-align: left;
}

.secnd-fold .imgwrp {}

.secnd-fold .imgwrp img {
    width: 120%;
}

.secnd-fold.margnwrp {
    margin: 0;
}

.servicewrp {
    position: relative;
    z-index: 1;
    padding: 220px 0 250px;
}

.servicewrp.lppadd {
    padding: 150px 0 250px;
}

.servicewrp:after {
    content: "";
    position: absolute;
    background-color: #0000000f;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}

.servicewrp .txtwrp h4 {
    color: #fff;
}

.servicewrp .txtwrp h1 {
    color: #fff;
}

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

.servicewrp .btn-secnd {
    color: #fff;
}

.mybanform {
    z-index: 10;
    position: relative;
    padding: 50px 0 0 0;
    text-align: center;
}

.mybanform form {
    position: relative;
    display: inline-block;
}

.mybanform form .wrap {
    font-size: 0;
    width: 100%;
    border-radius: 10px;
    display: block;
    position: relative;
    height: 70px;
}

.mybanform form .wrap .dtf {
    display: inline-block;
    vertical-align: top;
    width: 27%;
}

.round {
    border-radius: 10px 0 0 10px;
}

.mybanform form .wrap .dtf.posrelative {
    width: 17%;
}

.mybanform form .wrap .dtf input[type="text"],
.mybanform form .wrap .dtf input[type="email"],
.mybanform form .wrap .dtf input[type="number"] {
    background: #fff;
    border: 0;
    font-size: 14px;
    height: 70px;
    width: 100%;
    padding: 20px;
    border-right: 1px solid #e8e9eb;
    color: #000;
    outline: none;
}

.mybanform form .wrap .dtf input[type="submit"] {
    font-size: 16px;
    border: 0;
    color: #fff;
    height: 70px !important;
    padding: 20px 48px;
    height: 80px;
    cursor: pointer;
    border-radius: 0 10px 10px 0;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
}

.contact-us-cta__logo-container:after {
    content: "Confidential Engagements";
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

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

.service-bg header .navwrp ul li a {
    color: #fff;
}

.service-bg header.showmenu .navwrp ul li a {
    color: #000;
}

.service-bg header.showmenu .navwrp ul li a.btnwrp {
    color: #fff;
}

.our-ser-bnnr {
    padding: 260px 0 140px;
    background-repeat: no-repeat;
    background-size: cover;
    text-transform: capitalize;
}

.our-ser-bnnr h2,
.our-ser-bnnr h1 {
    color: #fff;
    padding: 0 0 20px;
}

.our-ser-bnnr p {
    color: #fff;
}

.our-ser-bnnr .txtwrp {}

.our-ser-bnnr .txtwrp ul {
    margin: 0;
}

.our-ser-bnnr .txtwrp ul li {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    width: 35%;
    position: relative;
    padding: 0 0 7px 20px;
}

.our-ser-bnnr .txtwrp ul li:after {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
}

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

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

.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: 12px;
    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: #ffdd65;
    font-size: 16px;
}

.our-testi .mainwrp .imawrp {
    display: inline-block;
    width: 50%;
    float: right;
}

.our-testi .mainwrp .imawrp img {
    width: 50%;
    border-radius: 50%;
    float: right;
}

.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);
}

.whatsapp {
    width: 50px;
    height: 51px;
    color: #fff;
    display: block;
    text-align: center;
    border-radius: 100%;
    font-size: 34px;
    position: fixed;
    bottom: 8%;
    left: 20px;
    z-index: 9999;
    box-shadow: 4px 5px 14px 0px rgb(37 0 22 / 27%);
    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);
}

.whatsapp:hover {
    color: #fff;
}

.whatsapp:focus {
    color: #fff;
}

.whatsapp i {}

@keyframes scrollDownAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes scrollDownAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.btn:link,
.btn:visited {
    text-transform: capitalize;
    text-decoration: none;
    padding: 10px 25px;
    display: inline-block;
    border-radius: 100px;
    transition: all .2s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(7 59 159);
    color: #fff;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-white {
    background-color: #fff;
    color: #fff;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
}

.btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

.btn-white::after {
    background-color: #fff;
}

.btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.btn-animated {
    animation: moveInBottom 5s ease-out;
    animation-fill-mode: backwards;
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

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

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

@keyframes blinker {
    50% {
        color: #fa130d;
    }
}

.btmform {
    z-index: 2;
    position: relative;
    padding: 0 0 120px 0;
}

.btmform .wrapper {
    box-shadow: 1px 1px 18px 0px rgb(0 0 0 / 20%), 0 2px 25px -5px rgb(0 0 0 / 10%), 1px 5px 1px rgb(0 0 0 / 5%);
    height: 95%;
    width: 100%;
    padding: 60px 0 0 30px;
    background: #fff;
    margin: 30px 0 80px 0;
    position: relative;
}

.form-sec {
    height: 500px;
}

.ver-ctaa {
    height: 98%;
    background-repeat: no-repeat;
}

.ver-cta .box {
    width: 50%;
    position: relative;
    display: inline;
    /* transform: rotate(
90deg); */

    top: 47px;
    left: 48px;
    color: #fff !important;
    /* display: none; */

    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-end;
}

.ver-cta p {
    color: #fff;
    display: inline;
    margin: auto;
    font-size: 17px;
    padding: 0;
}

.ver-cta .icon-call {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    padding-top: 11px;
    margin: 0 25px;
}

.ver-cta .icon-call img {
    margin: auto;
    transform: rotate(-90deg);
}

.ver-cta span {
    color: #ffc800;
    font-size: 21px;
    display: inline;
    margin: auto;
    font-weight: 500;
}

.sec-left {
    width: 100%;
}

.sec-right {
    width: 20%;
    position: absolute;
    top: 30px;
    width: 100%;
    height: 95%;
    right: 9px;
    /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */

    border-radius: 29px;
}

.contact-pg ul li a.highlight {
    color: #6325f6;
    text-decoration: underline;
}

.main-privacy-sec {
    padding: 60px;
}

.main-privacy-sec ul {
    padding: 0px;
}

.srvces-slides .slick-dots {
    text-align: center;
    bottom: -50px;
    right: 4.2%;
}

.srvces-slides .slick-dots li button {
    background-color: #e1e3e4;
    border-radius: 0%;
    height: 10px;
    width: 10px;
}

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

.srvces-slides .slick-dots li.slick-active button {
    background-color: #5a7797;
}

.srvces-slides .li img {
    display: inline-block;
    border-radius: 0%;
    outline: none;
    width: 100%;
}

.banner-cont {
    margin-top: 150px;
    position: relative;
    z-index: 9;
}

.new-margin-cont {
    margin-top: 220px;
}

.banner-img {
    margin-top: 100px;
}

.banner-img img {
    width: 90%;
    transform: scale(1.3);
    margin-left: 50px;
}

.mainbannerslider {
    padding-top: 150px;
}

.mainbannerslider .slick-list {
    overflow: unset;
}

.second-sec-cont {
    position: relative;
    /* z-index: 10; */
    /* margin-bottom:50px; */
    /* padding: 15px; */
}

.main-second-sec {
    padding: 60px 0;
}

.field {
    padding: 5px 0px 10px 5px;
}

.field input,
.field select {
    background-color: #f0f0f0;
    width: 100%;
    padding: 15px 15px;
    border: 0;
    color: #9b9fa6;
}

.banner-img img {
    width: 90%;
    transform: scale(1.3);
    margin-left: 50px;
}

.mainbannerslider {
    padding-top: 150px;
}

.mainbannerslider .slick-list {
    overflow: unset;
}

.second-sec-cont {
    position: relative;
    /* z-index: 10; */
    /* margin-bottom:50px; */
    /* padding: 15px; */
}

.main-second-sec {
    padding: 60px 0;
}

.field {
    padding: 5px 0px 10px 5px;
    display: inline;
}

.field input,
.field select {
    background-color: #ffffff;
    width: 44%;
    margin-bottom: 20px;
    padding: 15px 15px;
    border: 0;
    /* border-radius: 35px; */

    color: #9b9fa6;
    border: 1px solid #9b9fa673;
    border: 2px solid #141e44;
    outline: none;
    /* box-shadow: 1px 1px 18px 0px rgb(0 0 0 / 20%), 0 2px 25px -5px rgb(0 0 0 / 10%), 1px 5px 1px rgb(0 0 0 / 5%); */
}

.whyus {
    background: #4362ff;
    color: #fff;
    padding: 80px 0;
    background-size: cover !important;
    text-align: center;
}

.field-msg {
    padding: 5px 5px 5px 0px;
}

.field-msg textarea {
    background-color: #ffffff;
    width: 90%;
    padding: 15px 15px;
    border: 0;
    color: #9b9fa6;
    overflow: hidden;
    /* border-radius: 15px; */

    height: 110px;
    margin: 0;
    border: 2px solid #141e44;
    resize: none;
    outline: none;
    /* box-shadow: 1px 1px 18px 0px rgb(0 0 0 / 20%), 0 2px 25px -5px rgb(0 0 0 / 10%), 1px 5px 1px rgb(0 0 0 / 5%); */
}

.field-msg textarea:focus {
    border: 0;
}

.field-btn input[type=submit] {
    color: #fff !important;
    font-size: 16px;
    background-color: #4362ff;
    border-radius: 35px !important;
    padding: 15px 50px;
    font-weight: 500;
    display: inline-block;
    border-radius: 22px;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    border: none;
    margin: 10px 0 0;
    width: 90%;
    height: auto;
    padding: 15px 50px;
}

input.form-btn {
    color: #fff !important;
    font-size: 16px;
    background-color: #4362ff;
    border-radius: 35px !important;
    padding: 15px 50px;
    font-weight: 500;
    display: inline-block;
    border-radius: 22px;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    border: none;
    margin: 10px 0 0;
    width: 46% !important;
    height: auto;
    padding: 15px 50px;
}

.btmform .imgwrp i {
    color: #ffffff;
    font-size: 62px;
    padding: 0 0 0 0;
    position: relative;
    left: 92px;
    top: -65px;
}

.btmform .imgwrp {
    background-color: #fff;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    position: relative;
    top: -68px;
    left: -58px;
    margin: -2px 0px;
}

.btmform .second-sec-cont h2 {
    font-size: 32px;
    margin: -15px 0 0;
}

.overlay {
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99998;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: none;
}

.home-logo-clint {
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    top: 0;
}

.order-form {
    position: fixed;
    width: 100%;
    max-width: 420px;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 99999;
    display: none;
    align-items: center;
}

.order-form .close-icon {
    position: absolute;
    left: -15px;
    top: 0;
    font-size: 18px;
    z-index: 99999;
    cursor: pointer;
    color: #fff;
    background: #334ed0;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    text-align: center;
}

.order-form .free-consult {
    position: relative;
    width: 100%;
    z-index: 999999;
    padding: 110px 0 0;
    background-image: url(../images/popup.webp);
    background-size: cover;
    background-repeat: no-repeat;
    height: 510px;
}

.order-form .free-consult .form textarea {
    height: 100px;
    margin-top: 0px;
}

.order-form .free-consult .pkg-dt {
    margin-top: 10px;
    margin-bottom: 10px;
}

section.clientswrp h4.wow.fadeInDown::before {
    width: 9% !important;
    margin: 0px auto !important;
    display: table !important;
    left: 0px !important;
    right: 0px !important;
}

.order-form .free-consult .pkg-dt .pkg-price {
    font-weight: 800;
}

/*CAPTCHA*/
.grecaptcha-badge {
    /*   width: 256px;
    height: 60px;
    box-shadow: grey 0px 0px 5px;
    position: fixed;
    left: -187px;
    bottom: 20px;
    transition: all 0.3s ease-in;*/

    display: none;
}

.grecaptcha-badge:hover {
    left: 0px;
    z-index: 999;
}

/* Safari 7.1+ */
_::-webkit-full-page-media,
_:future,
:root .get-a-quote-pg .free-consult .form select {
    color: #a7a7a7;
    background: #f3f5fe;
    -webkit-appearance: none;
}

.free-consult .form input[type="text"],
.free-consult .form input[type=email],
.free-consult .form textarea,
.free-consult .form select {
    width: 100%;
    font-size: 15px;
    color: #767676;
    font-weight: 600;
    border: 0px;
    padding: 13px 24px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-family: 'gothamlight';
    margin-bottom: 14px;
}

.free-consult .form .primary-btn {
    width: 100%;
    margin-top: 0;
    padding: 13px;
    border: 0px;
    cursor: pointer;
}

.primary-btn {
    background: #14aae7;
    background: -moz-linear-gradient(top, #14aae7 0%, #3945d7 100%);
    background: -webkit-linear-gradient(top, #14aae7 0%, #3945d7 100%);
    background: linear-gradient(to bottom, #e88120 0%, #e43f41 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#14aae7', endColorstr='#3945d7', GradientType=0);
    color: white;
}

h2.text-center.pkg-name {
    color: #fff;
    font-size: 32px;
}

img.logo-clr {
    display: none;
}

.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;
    background: #ffffff00;
    font-size: 12px;
    appearance: auto;
}

.form-wrap {
    background: #fff;
    color: #fff;
    padding: 23px 20px;
    border-radius: 5px;
    width: 85%;
    margin: 0 auto;
    border: 1px solid #000;
    position: relative;
    z-index: 9;
}

/* .bnr-inpfild [type=submit] {
    color: #fff;
    border-radius: 22px;
    margin: 0;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'gothamlight';
    border: 0;
    outline: none;
} */
.bnr-inpfild [type=submit] {
    border-radius: 0 !important;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    background: #da1b82;
    margin-right: 19px;
    transition: ease 0.5s;
}

.form-wrap h1 {
    font-size: 17px;
    text-align: center;
    margin: 0px 0 24px 0;
    font-weight: 700;
    text-transform: capitalize;
    color: #ec0d72;
    line-height: 1.4;
}

.form-wrap h1 span {
    display: block;
    color: #000;
    font-size: 22px;
}

.bnr-inpfild .intl-tel-input {
    margin-bottom: 18px;
}

.bnr-inpfild textarea {
    height: 83px;
    resize: none;
    color: #000;
}

section.flexiblefeatures-sec {
    padding: 60px 0 70px;
    background: #f3f5f7;
}

.flexiblefeatures-sec h5 {
    color: #0857c1;
    margin-top: 0;
    font-size: 16px;
    padding: 5px 15px;
    background: #73a9f338;
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 400;
}

.flexiblefeatures-sec h2 {
    text-transform: capitalize;
    color: #000;
    padding: 0 0 20px;
    font-family: 'gothamlight';
    font-size: 48px;
}

.flexiblefeatures-sec p {
    color: #74757a;
    font-size: 16px;
    padding-bottom: 0px;
    line-height: 1.2;
}

.flexiblefeatures-sec ul {
    display: inline-block;
    margin-bottom: 0;
    margin-top: 40px;
}

.flexiblefeatures-sec ul li figure img {
    width: auto;
    margin-right: 15px;
}

.flexiblefeatures-sec ul li figure {
    margin-bottom: 0px;
    width: 20%;
    float: left;
    height: auto;
    margin: 0 10px 0 0;
}

.flexiblefeatures-sec ul li {
    clear: both;
    /* margin-bottom: 30px; */

    width: 100%;
    display: inline-block;
    height: auto;
    padding: 0 0px 40px 0px;
}

.flexiblefeatures-sec ul li .txt-wrap h4 {
    font-size: 18px;
    color: #2c2c2c;
    font-family: 'gothamlight';
    font-weight: 700;
}

.flexiblefeatures-sec ul li .txt-wrap p {
    color: #777;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 300 !important;
    height: 54px;
}

.flexiblefeatures-sec figure img {
    width: 100%;
}

.ap-sec h2,
.ap-sec h3 {
    color: #000;
    padding: 0 0 20px;
    font-family: 'gothamlight';
    font-size: 48px;
    text-align: center;
    padding: 60px 0 10px;
}

.ap-sec p {
    color: #3a3a3a;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.box-boxi.boxiesnghome {
    min-height: 300px;
}

.appr-warp .box-wrap {
    padding: 20px 35px;
    text-align: center;
}

.boxiesng {
    height: 290px;
}

.box-boxi {
    padding: 40px 20px;
    border-radius: 18px;
    min-height: 350px;
    box-shadow: 0px 1px 14px 0px #00000047;
}

.appr-warp .box-wrap figure {
    margin-bottom: 20px;
}

.appr-warp .box-wrap figure img {
    max-width: 76px;
}

.appr-warp .box-wrap h4 {
    color: #2c2c2c;
    font-family: 'gothamlight';
    font-size: 18px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.appr-warp .box-wrap p {
    color: #74757a;
    font-size: 15px;
    line-height: 1.4;
    padding: 10px 18px 0px 0px;
    text-align: left;
}

.list-scroll1 {
    height: 100px;
    overflow-y: scroll;
}

.appr-warp {
    margin: 0 auto;
    width: 85%;
    padding: 0px 0 70px;
}

.list-scroll1::-webkit-scrollbar {
    width: 6px;
    height: 8px;
}

.list-scroll1::-webkit-scrollbar-track-piece {
    background-color: #ffffff;
    -webkit-border-radius: 0px;
    border-left: 1px solid #fff;
}

.boxiesng:hover {
    transform: translateY(-0.625rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.dropdown {
    position: relative;
    display: inline-block;
    padding: 0 0 0;
}

.dropdown {
    padding: 0 0 35px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 170px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 10px 0px;
    z-index: 1;
    transition: all ease-in-out 0.5s;
    width: 220px;
    height: 235px;
}

.dropdown:hover .dropdown-content {
    top: 45px;
    display: block;
}

ul.dropdown-content {
    text-align: left !important;
    position: absolute;
    left: -65px;
    top: 31px !important;
}

ul.dropdown-content li {
    border-bottom: 1px solid #dededed1;
    width: 100%;
    padding: 11px 30px;
    margin: 0 0 0px !important;
    position: relative;
}

ul.dropdown-content li a {
    color: #000 !important;
    /* position: relative; */
}

ul.dropdown-content li a:hover {
    color: #084db5 !important;
    padding: 10px 0px 0px 5px;
    transition: all .4s ease-in-out;
}

ul.dropdown-content li:hover a:after {
    left: -20px;
    transition: all .8s ease-in-out;
    opacity: 1;
    top: 18px;
    bottom: auto;
}

ul.dropdown-content li a:after {
    content: "";
    transition: all .8s ease-in-out;
    content: "";
    background: #0664d1;
    height: 2px;
    width: 17px;
    position: absolute;
    left: -36px;
    top: 18px;
    opacity: 0;
    bottom: auto;
}

.hk_hide {
    display: none;
}

.tabs-web-dsgn li.hk_web_height {
    height: 400px;
    overflow: hidden;
    background-size: cover;
    border-radius: 10px;
}

.tabs-web-dsgn li.hk_web_height:hover {
    background-position: 100% 100%;
    transition: 6s !important;
    transform: none;
}

.tabs-ecom li.hk_web_height {
    height: 400px;
    overflow: hidden;
    background-size: cover;
}

.tabs-ecom li.hk_web_height:hover {
    background-position: 100% 100%;
    transition: 6s !important;
    transform: none;
}

/*--------------lp-css-------------------------------*/
header.lp-header {
    padding: 0 0;
    position: absolute;
    background-image: unset;
}

header.lp-header .logowrp img {
    position: relative;
    top: 20px;
}

header.lp-header .navwrp {
    background: #fff;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 7% 100%);
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}

header.lp-header .navwrp ul {}

header.lp-header .navwrp li a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

header.lp-header .navwrp ul li a.btnwrp {
    padding: 10px 20px;
    border-radius: 20px;
    color: #fff !important;
    font-weight: 500;
    background-color: blueviolet;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    font-size: 15px;
}

.lp-secwrp {
    padding: 14% 0 60px;
    background-image: url(../images/banner-bg-lp.html);
    background-repeat: no-repeat;
    background-size: cover;
}

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

.lp-secwrp .txtwrp h2 {
    color: #fff;
    position: relative;
}

.lp-secwrp .txtwrp h2:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 5px;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    right: 0;
    margin: 0 auto;
}

.lp-secwrp .txtwrp p {
    color: #fff;
    padding: 30px 0 0;
}

.lp-secwrp .txtwrp ul {
    margin: 30px 0 0;
}

.lp-secwrp .txtwrp ul li {
    display: inline-block;
    margin: 0 30px 0;
    font-size: 16px;
    color: #fff;
    position: relative;
}

.lp-secwrp .txtwrp ul li:after {
    content: "\f058";
    position: absolute;
    font-family: 'FontAwesome';
    left: -21px;
    color: #62d43c;
}

.lp-logoswrp {
    background-image: unset;
    padding: 50px 0 0;
    border-top: unset;
    top: 0;
}

.lp-secwrp .imgwrp {
    display: block;
    text-align: center;
}

.lp-secwrp .imgwrp ul {
    margin: 0 0 50px;
    text-align: center;
    display: block;
}

.lp-secwrp .imgwrp ul li {
    display: inline-block;
    padding: 0;
    margin: 0 30px;
}

.lp-secwrp .imgwrp ul li img {
    width: 100%;
}

.lp-secwrp .imgwrp a.btn-main {
    margin: 0 auto;
    text-align: center;
}

.lp-secwrp .imgwrp a.btn-secnd {
    color: #fff;
}

.social-counts {
    background: #fff;
    box-shadow: 3px 5px 8px 1px rgb(132 132 132 / 17%);
    position: relative;
    height: 100px;
    overflow: hidden;
    margin: 0 0 130px;
}

.social-left {
    float: left;
    width: 20%;
    padding: 24px 60px 0px 0;
    background: #fff;
    text-align: left;
    height: 96px;
    position: relative;
    font-size: 15px;
    line-height: 18px;
}

.social-left p {
    background: #fff !important;
    font-weight: 700;
    font-size: 13px;
}

.social-right {
    float: left;
    width: 78%;
    margin: 0 0 0 20px;
}

html {
    scroll-behavior: smooth;
}

.conbowrp .mainpkge ul li {
    position: relative;
}

.conbowrp .mainpkge ul li:before {
    content: "\f00c";
    position: absolute;
    font-family: 'FontAwesome';
    left: -26px;
    top: -4px;
    color: #3cca19;
    font-size: 16px;
}

a.hk_load {
    color: #fff;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
}

a.hk_load:hover {
    color: #07389c;
    border: 2px solid #07389c;
}

.videocustom {
    background-color: #fbfdfa !important;
}

video#myVideo {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.serv-tab {
    padding: 40px 0 70px;
}

.serv-tab .navwrp {}

.serv-tab .navwrp .tabbing-links {
    text-align: center;
    margin: 0 0 30px;
    border-radius: 20px;
    margin: 20px auto 40px;
}

.serv-tab .navwrp .tabbing-links li {
    display: inline-block;
    color: #000;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 10px 40px;
    border-radius: 20px;
    font-weight: 600;
    background: #f3f3f3;
}

.serv-tab .navwrp .tabbing-links li.current {
    border-bottom: 1px solid;
    padding: 10px 40px;
    border-radius: 20px;
    margin-right: 10px;
    color: #fff;
    font-weight: 600;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
}

.serv-tab .imgport {
    width: 95%;
    margin: 0 auto;
    text-align: center;
}

.serv-tab .imgport li {
    display: inline-block;
    width: 32%;
    margin: 0 5px 15px;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
}

.serv-tab .imgport li:hover {
    transform: scale(1.1);
}

.serv-tab .imgport li img {
    width: 100%;
    border-radius: 10px;
}

.serv-tab .imgport li figure {
    margin: 0px;
}

.serv-tab .btnwrp {
    text-align: left;
    display: block;
}

.serv-tab .tabs {
    display: none;
}

.serv-tab .tabs.current {
    display: block;
}

section.service-cetawrp ul.tabs {
    display: none;
}

section.service-cetawrp ul.tabs.current {
    display: block;
}

/* navbar  */
.navbar {}

.navbar .dropdown {
    display: flex;
    align-items: center;
}

.navbar .dropdown a {
    padding: 10px 20px;
}

.navbar .logowrp {}

.navbar .logowrp img {
    width: 191px;
    object-fit: cover;
}

.navbar ul {
    display: flex;
    align-items: center;
}

.navbar ul li {
    padding: 0;
    margin: 0 8px 0;
}

.navbar ul li a {
    padding: 0;
    color: #2a314e;
    font-size: 13px;
    font-family: 'gothamlight';
    font-weight: 600;
    text-transform: uppercase;
}

.navbar ul li a.btnwrp {
    background: #d81c83;
    color: #fff;
    padding: 9px 0 8px;
    border-radius: 19px;
    font-weight: 700;
    width: 144px;
    text-align: center;
}

/* navbar  */
.home-bnnerwrp.servicewrp {
    height: auto;
}

.home-bnnerwrp.servicewrp .txtwrp h1 {
    background-image: unset;
    color: #fff;
    font-weight: 700 !important;
    -webkit-text-fill-color: #fff;
    margin-top: 0;
    padding: 0;
}

.contact-pg {
    padding-top: 10%;
}

.home-bnnerwrp span.overway {
    position: absolute;
    z-index: 1;
    background-color: #00000085;
    width: 100%;
    height: 100%;
    top: 0;
}

.home-bnnerwrp.servicewrp .col-md-7 .txtwrp h2 {
    background-image: unset;
    color: #fff;
    -webkit-text-fill-color: unset;
}

.form-box-main form label.field-txt {
    font-weight: 500;
    font-size: 18px;
    color: #222;
    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;
}

.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 select:focus {
    border-radius: 8px 8px 0px 0px;
}

.form-box-main form select[name="ddlMonth"],
.form-box-main form select[name="ddlDay"],
.form-box-main form select[name="ddlYear"] {
    float: left;
    width: 32.5%;
    margin: 0 1% 0 0;
}

.form-box-main form select[name="ddlYear"] {
    margin: 0;
}

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

.check-list {
    /* float:left; */
    /* margin:0 15px 0 0; */
}

.form-box-main form input[type=checkbox]:not(old),
.form-box-main form input[type=radio]:not(old) {
    width: 20px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
}

.form-box-main form input[type=checkbox]:not(old)+label,
input[type=radio]:not(old)+label {
    display: inline-block;
    margin-left: -28px;
    padding-left: 28px;
    line-height: 24px;
    font-weight: 500;
    font-size: 14px;
    color: #5B6B7F;
}

.form-box-main form input[type=checkbox]:not(old):checked+label {
    background-position: 0 -24px;
}

.form-box-main form input[type=radio]:not(old):checked+label {
    background-position: 0 -48px;
}

.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;
    margin-top: 20px;
    border: none;
    padding: 20px 60px;
    font-size: 16px;
    background-color: #0031c6;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    border-radius: 8px;
    border: 3px solid;
    cursor: pointer;
}

.form-box-main form input[type="submit"]:after {
    content: "\e93a";
    font-family: 'gothamlight' !important;
    font-size: 13px;
    color: white;
    padding-left: 10px;
}

.form-box-main form input[type="submit"]:hover {
    display: inline-block;
    color: #fff;
}

.form-box-main form input::-webkit-input-placeholder {
    color: gray;
    opacity: 1 !important;
}

.form-box-main form input:-moz-placeholder {
    color: gray;
}

.form-box-main form input::-moz-placeholder {
    color: gray;
}

.form-box-main form input:-ms-input-placeholder {
    color: gray;
}

.form-box-main form textarea::-webkit-input-placeholder {
    color: gray;
    opacity: 1 !important;
}

.form-box-main form textarea:-moz-placeholder {
    color: gray;
}

.form-box-main form textarea::-moz-placeholder {
    color: gray;
}

.form-box-main form textarea:-ms-input-placeholder {
    color: gray;
}

.form-box-main form input:focus,
.form-box-main form textarea:focus,
.form-box-main form select:focus,
.form-box-main form option:focus,
.selected-flag {
    outline: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.form-box-main form .intl-tel-input {
    width: 100%;
}

.form-box-main form .intl-tel-input .country-list {
    width: 380px;
}

.form-box-main form .intl-tel-input .country-list .country {
    font-size: 13px;
}

.form-box-main form label.error,
label.error {
    color: red;
    font-style: italic;
    margin-bottom: 0px;
    display: none !important;
}

div.error {
    display: none;
}

input.checkbox {
    border: none
}

input.error {
    border: 1px solid red !important;
}

form.cmxform .gray * {
    color: gray;
}

.mybannerform form {
    margin-bottom: 0;
}

.orderpg header {
    display: none;
}

.orederpg #main-content {
    overflow-x: inherit;
}

.orderpg footer {
    display: none;
}

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

.subscribe-fold {
    padding: 120px 60px 60px 60px;
}

.order-pg {
    padding: 100px 0 120px;
}

/*floating strips css start */
.floatbutton.active {
    right: 0;
    z-index: 9;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.floatbutton {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: fixed;
    right: -370px;
    top: 16%;
    font-size: 0;
    width: 420px;
    /* transform: translateY(-50%); */

    z-index: 9;
}

.floatbutton .clickbutton {
    /* border-radius: 30px 0px 0px 30px; */

    background: #fff0;
    width: 50px;
    z-index: 999;
    height: 270px;
    cursor: pointer;
    box-shadow: -20px 7px 18px -7px rgba(87, 184, 151, 0.09);
    display: inline-block;
    padding-top: 0;
    vertical-align: top;
    background-image: linear-gradient(to right top, #da1b82, #d22289);
    margin-top: 198px;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    font-family: 'gothamlight';
    -ms-box-shadow: 0px 0px 40px #00000026;
    -o-box-shadow: 0px 0px 40px #00000026;
    /* border: 2px solid #ffffff; */
}

.floatbutton .clickbutton .crossplus:before {
    content: "";
    display: none;
    position: absolute;
    width: 20px;
    height: 2px;
    right: 0;
    background: #fbb334;
    z-index: 99;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.floatbutton .clickbutton .crossplus:after {
    content: "";
    display: none;
    position: absolute;
    width: 2px;
    height: 20px;
    right: 0;
    background: #fab334;
    z-index: 99;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.floatbutton .clickbutton .crossplus {
    position: relative;
    display: block;
    transform: rotate(0deg);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: absolute;
    display: block;
    transform: rotate(-90deg);
    -webkit-transition: 0.4s;
    font-size: 16px;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #fff;
    left: -85px;
    white-space: pre;
    bottom: 122px;
    font-weight: bold;
}

.floatbutton .clickbutton .crossplus.rotate {
    /* transform: rotate(45deg); */

    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.floatbutton .clickbutton .crossplus i {
    font-size: 18px;
    color: #f43535;
    margin: 17px 0 0 15px;
}

.banner-form {
    background: #fff;
    padding: 30px;
    position: relative;
    z-index: 9;
    border-radius: 5px 0 0 5px;
    margin: 0;
    width: 370px;
    display: inline-block;
    box-shadow: 0px 0px 30px #0000001f;
}

.banform {}

.ban-form {}

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

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

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

.ban-form input[type="submit"] {
    color: #fff;
    font-weight: 600;
    background: #f43535;
    border-radius: 3px;
    text-align: center;
    background-image: linear-gradient(to right top, #ec0d72, #ec0d72, #ec0d72, #ec0d72, #ec0d72);
    padding: 10px 15px;
    margin: 20px 0 0;
    border: transparent;
}

.ban-form textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    background: white;
    padding: 10px 15px;
    color: gray;
    font-size: 14px;
    border-radius: 3px;
    font-weight: 400;
    height: 120px;
    outline: none !important;
    margin: 15px 0 0px 0;
}

.btns_wrap {
    position: fixed;
    right: -6px;
}

.btns_wrap a:hover {
    text-decoration: none !important;
    right: 0px;
}

.btns_wrap .call_wrap {
    width: 280px;
    position: absolute;
    right: -225px;
    background: #000;
    top: 120px;
    padding: 0;
    /* border-radius: 50px 0px 0px 50px; */

    overflow: hidden;
    box-shadow: 0px 0px 40px #00000026 !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    /* border: 2px solid #ffffff; */
}

.btns_wrap .call_wrap span {
    color: #ffffff;
    font-size: 20px;
    vertical-align: middle;
    /* background: #fff; */

    padding: 15px 20px 15px 15px;
}

.btns_wrap .chat_wrap {
    display: block;
    position: absolute;
    right: -225px;
    width: 280px;
    padding: 0;
    background: #fff0;
    top: 40px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0px 0px 40px #00000026 !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    /* border-radius: 50px 0px 0px 50px; */
    /* border: 2px solid #ffffff; */
}

.btns_wrap .chat_wrap span.icoo,
.btns_wrap .call_wrap span.icoo {
    color: #ffffff;
    background-image: linear-gradient(to right top, #da1b82, #d22289);
    font-size: 18px;
    padding: 18px 20px 16px;
    border-right: 1px solid #ffffff;
    vertical-align: middle;
    display: inline-block;
    /* border-radius: 50px 0px 0px 50px; */

    background-color: transparent;
}

.btns_wrap .chat_wrap span {
    color: #ffffff;
    font-size: 20px;
    vertical-align: middle;
    /* background: #fff; */

    padding: 15px 30px 15px 15px;
}

/*floating strips css end */

/*=========================================popup======================================================*/

/*=========================================popup======================================================*/
.mypopup-wrap.active {
    position: fixed;
    top: 0px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background: #fff;
}

.mypopup-wrap {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    width: 800px;
    height: 600px;
    border-radius: 10px;
    position: absolute;
    left: 0;
    right: 0px;
    top: 10%;
    bottom: 0px;
    margin: auto;
    z-index: 99999;
    overflow: hidden;
}

.mypopup-wrap .mypopup {
    border-radius: 10px;
    font-size: 0px;
    background: #fff;
}

.mypopup-wrap .mypopup .left {
    width: 50%;
    vertical-align: top;
    display: inline-block;
    overflow: hidden;
    background: #386163;
    vertical-align: middle;
}

.mypopup-wrap .mypopup .left figure {
    border-radius: 10px 0px 0px 10px;
    overflow: hidden;
}

.mypopup-wrap .mypopup .left figure img {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    height: 590px;
    object-fit: cover;
}

.mypopup-wrap .mypopup .right {
    width: 50%;
    padding: 19px 20px;
    vertical-align: top;
    display: inline-block;
    vertical-align: middle;
}

.mypopup-wrap .mypopup .right .closebutton {
    position: absolute;
    width: 20px;
    height: 20px;
    /*float: right;*/

    cursor: pointer;
    transform: rotate(45deg);
    right: 20px;
    top: 20px;
}

.mypopup-wrap .mypopup .right .closebutton:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 1px;
    top: 0;
    background: #000;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
}

.mypopup-wrap .mypopup .right .closebutton:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 20px;
    top: 0;
    left: 0;
    background: #000;
    display: block;
    bottom: 0;
    margin: auto;
}

.mypopup-wrap .mypopup .right .mypopup-innerwrap {
    padding-top: 0px;
    padding-left: 30px;
    padding-right: 30px;
}

.mypopup-wrap .mypopup .right .mypopup-innerwrap h3 {
    font-size: 26px;
    line-height: 1;
}

.mypopup-wrap .mypopup .right .mypopup-innerwrap h3 span {
    font-size: 38px;
    display: block;
    font-weight: 900;
    color: #edad0d;
    margin-top: 5px;
    margin-bottom: 10px;
}

.mypopup-innerwrap .form_wrap {
    padding: 20px 15px;
}

.mypopup-innerwrap .form_wrap .hero_form {}

.mypopup-innerwrap .form_wrap .hero_form form {}

.mypopup-innerwrap .form_wrap .hero_form .form-control {
    border-radius: 10px;
    border: 1px solid #b9b8b8;
}

.mypopup-innerwrap .form_wrap .hero_form .form-control:focus {
    border: 1px solid #5d03db;
}

.mypopup-innerwrap .form_wrap .hero_form textarea.form-control {
    color: #000;
}

.mypopup-innerwrap .form_wrap #quoteForm textarea.form-control {
    min-height: 85px;
}

.mypopup-innerwrap .form_wrap .hero_form #quoteSubmit {
    border-radius: 10px;
    min-width: 100%;
}

.mypopup-innerwrap .form_wrap .hero_form .col-md-6 {
    width: 100%;
}

.mypopup-innerwrap .form_wrap .hero_form .col-sm-6 {
    width: 100%;
}

.hero_form .field-mergedleft {
    padding-left: 15px;
}

.hero_form .field-mergedright {
    padding-right: 15px;
}

.mypopup-innerwrap .form_wrap .hero_form .margin-bottom-20 {
    margin-bottom: 10px;
}

.submit:hover {
    background-color: #1f1f1f;
}

.form_wrap .analyzeform form input[type="submit"] {
    width: 100%;
    margin: 0px;
    text-align: center;
    margin-top: 10px;
    border-radius: 4px;
}

.submit {
    border: 0;
    font-family: 'gothamlight';
    font-size: 18px;
    color: #fff;
    line-height: 2;
    padding: 9px 80px;
    outline: none;
    cursor: pointer;
    transition: background-color .3s;
    border-radius: 5px;
    background: #ec0d72 !important;
    /* background-image: linear-gradient(to right top, #0569d7, #042888); */
    /* border-radius: 35px; */

    margin: 22px auto 0;
    width: 90%;
}

.overlay {
    background: #0000006b;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
}

/*=========================================popup======================================================*/

/*=========================================egg-popup======================================================*/
.eggoffer.show {
    position: fixed;
    bottom: 8px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.eggoffer {
    width: 150px;
    cursor: pointer;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: fixed;
    bottom: 10px;
    left: 8px;
    z-index: 999;
    overflow: hidden;
}

.eggoffer .top {
    position: relative;
    z-index: -1;
}

.eggoffer .top figure {
    text-align: center;
}

.eggoffer .top figure img {
    opacity: 1;
    width: 100%;
}

.eggoffer .bottom {
    cursor: pointer;
    padding: 16px 5px;
    border-radius: 5px;
    background: #16a07d;
}

.mypopup-wrap .mypopup .right .mypopup-innerwrap h3:before,
.eggoffer .bottom h3:before {
    display: none;
}

.eggoffer .bottom h3 {
    font-size: 14px;
    margin: 0;
    color: #fff;
}

.eggoffer .bottom span {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    width: 100%;
    padding-top: 6px;
    line-height: 1;
    display: inline-block;
    text-align: center;
    text-shadow: 0 2px 2px #666;
}

.form_wrap .analyzeform form .dtf {
    width: 100%;
}

.form_wrap .analyzeform form input[type="submit"] {
    width: 100%;
    margin: 0px;
    text-align: center;
    margin-top: 10px;
    border-radius: 4px;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
}

.form_wrap .analyzeform form .wrap {
    padding-left: 0px;
}

.form_wrap .analyzeform {
    margin: 0px;
}

.eggoffer .broken {
    display: none;
}

.eggoffer .unbroken {
    display: block;
}

.mypopup-wrap .easter {
    display: none !important;
}

.overlay-bg.vis {
    display: block !important;
}

.analyzeform form input[type="text"],
.analyzeform form input[type="email"],
.analyzeform form input[type="number"],
.analyzeform form input[type="tel"],
.analyzeform form textarea {
    width: 100%;
    margin: 0 0 0 0;
    border: 1px solid #e5e5e5;
    background: white;
    padding: 13px 15px;
    color: gray;
    font-size: 13px;
    /* border-radius: 5px; */

    height: 50px;
    font-weight: 400;
    outline: none !important;
    margin-bottom: 10px;
}

.mypopup-innerwrap h2 {
    font-size: 34px;
    display: block;
}

.mypopup-innerwrap h2 span {
    display: block;
    color: #094cb3;
}

.fancybox-content {
    width: 100% !important;
    height: 100% !important;
}

.mygrid {
    padding: 30px 20px 30px 20px;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    width: 80%;
    margin: 40px auto 150px;
    position: relative;
    border-radius: 8px;
    height: 245px;
}

.cta2 .wrap {}

.cta2 .wrap h6 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 10px;
    text-align: left;
}

.cta2 .wrap h3 {
    text-align: left;
    padding-bottom: 0;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta2 .wrap .gt-strt {
    padding: 10px 30px;
    color: #000;
    font-weight: 700;
    display: inline-block;
    font-size: 18px;
    border-radius: 35px;
    /* FF3.6-15 */

    background: #fff;
    /* Chrome10-25,Safari5.1-6 */

    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border: none;
    float: left;
    margin-right: 20px;
    font-weight: 500;
}

.cta2 .wrap a:hover {
    transform: translateY(-0.625rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.cta-img img {
    position: absolute;
    content: "";
    top: -86px;
    right: 0;
    /* width: 81%; */
}

.wrap .new-cta {
    padding: 10px 30px;
    font-weight: 700;
    display: inline-block;
    font-size: 18px;
    border-radius: 35px;
    background: transparent;
    border: 1px solid #fff !important;
    color: #fff;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border: none;
    float: left;
    margin-right: 20px;
    font-weight: 500;
}

/*=========================================egg-popup======================================================*/
li.dropdown:after {
    content: "\f107";
    color: #fff;
    font-size: 16px;
    font-family: 'FontAwesome';
    font-weight: 900;
}

header .nav-lp ul li a:hover {
    color: #0956c0;
}

h2.tag-best {
    position: relative;
}

h2.tag-best:after {
    content: '';
    bottom: 20px;
    background-image: url(../images/banner-badge02.html);
    left: 480px;
    color: #144bbd;
    height: auto;
    position: absolute;
    width: 250px;
    height: 211px;
    background-repeat: no-repeat;
    background-size: 90%;
    top: 0px;
}

h2.tag-best2 {
    position: relative;
}

h2.tag-best2:after {
    content: '';
    bottom: 20px;
    background-image: url(../images/banner-badge2.html);
    left: 480px;
    color: #144bbd;
    height: auto;
    position: absolute;
    width: 250px;
    height: 211px;
    background-repeat: no-repeat;
    background-size: 90%;
    top: 0px;
}

.brief_form {
    position: relative;
    padding: 60px 0 140px;
}

.brief_form:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/left.html);
    opacity: 0.1;
}

.brief_form:after {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/right.html);
    opacity: 0.1;
}

.brief_form .briefleft {
    height: 1000px;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    background-position: 50%;
    background-color: #f0f6f6;
}

.brief_form .briefleft h1 {
    font-size: 40px;
    font-weight: bold;
    max-width: 70%;
    padding: 30px 30px;
}

.brief_form ul {
    display: flex;
    padding: 0;
    text-align: center;
    margin: 0 0 25px;
}

.brief_form ul li {
    display: inline-block;
    width: 25%;
    text-align: center;
    padding: 20px 0;
    border-right: 1px solid #dadada;
    position: relative;
    color: #4c4c4c;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dfe1e3+0,bec5cc+100 */

    background: #dfe1e3;
    /* Old browsers */

    background: -moz-linear-gradient(top, #dfe1e3 0%, #bec5cc 100%);
    /* FF3.6-15 */

    background: -webkit-linear-gradient(top, #dfe1e3 0%, #bec5cc 100%);
    /* Chrome10-25,Safari5.1-6 */

    background: linear-gradient(to bottom, #dfe1e3 0%, #bec5cc 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    /* filter: progid XImageTransform.Microsoft.gradient(startColorstr='#dfe1e3', endColorstr='#bec5cc', GradientType=0); */
    /* IE6-9 */
}

.brief_form ul li.done {
    display: inline-block;
    width: 25%;
    text-align: center;
    background: #28a745;
    padding: 20px 0;
    border-right: 1px solid #dadada;
    position: relative;
    color: #fff;
}

.brief_form ul li:last-child {
    border-right: 0px;
}

.brief_form ul li i {
    display: block;
    color: #4c4c4c;
    font-size: 28px;
    margin: 0 0 5px;
}

.brief_form ul li.done i {
    color: #fff;
}

.brief_form ul li i.chcked {
    /* position: absolute; */

    top: 0px;
    right: -70px;
    z-index: 1;
    margin: 0 auto;
    left: 0;
    right: 0;
    font-size: 16px;
    display: inline-block;
}

.brief_form ul li.active {
    background: #14aae7;
    background: -moz-linear-gradient(top, #14aae7 0%, #3945d7 100%);
    background: -webkit-linear-gradient(top, #14aae7 0%, #3945d7 100%);
    background: linear-gradient(to bottom, #14aae7 0%, #3945d7 100%);
    /* filter: progid XImageTransform.Microsoft.gradient(startColorstr='#14aae7', endColorstr='#3945d7', GradientType=0); */
}

.brief_form .col-md-12,
.brief_form .col-md-6 {
    margin: 7px 0;
}

.brief_form h2 {
    font-size: 34px;
    font-weight: bold;
    margin: 0;
    padding: 0 0 20px;
    color: #000000;
    text-align: left;
}

.brief_form h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    border-bottom: solid 1px #b2b9c1;
    padding: 0 0 11px;
    color: #484848;
}

.brief_form input[type=text] {
    width: 100%;
    margin: 0 0 10px 0;
    border: 0px;
    border: 1px solid #e3f1f1;
    background: #eff5f5;
    padding: 18px 10px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    height: 50px;
    border-radius: 5px;
}

.brief_form input[type=file] {
    border: 0px;
}

.brief_form textarea {
    width: 100%;
    margin: 0 0 10px 0;
    border: 0px;
    border-bottom: 0px solid #B2B9C1;
    background: #eff5f5;
    padding: 18px 13px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    height: 120px;
    border-radius: 5px;
}

.brief_form .form-group {
    display: inline-block;
    width: 21%;
    margin: 4px 15px;
}

.brief_form .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.brief_form .form-group label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
}

.brief_form .form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #B2B9C1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.brief_form .form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 7px;
    left: 7px;
    width: 6px;
    height: 10px;
    border: solid #86279b;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.brief_form .files {
    background: #eff5f5;
    text-align: center;
    margin: 0px 15px;
    height: 80px;
    padding: 10px 0;
    border-radius: 5px;
}

.brief_form #project-contactwew-us-button {
    padding: 10px 30px;
    border-radius: 4px;
    background: #14aae7;
    background: -moz-linear-gradient(top, #14aae7 0%, #3945d7 100%);
    background: -webkit-linear-gradient(top, #14aae7 0%, #3945d7 100%);
    background: linear-gradient(to bottom, #14aae7 0%, #3945d7 100%);
    /* filter: progid XImageTransform.Microsoft.gradient(startColorstr='#14aae7', endColorstr='#3945d7', GradientType=0); */
    color: #fff;
    margin: 30px 0 0;
}

.seosteps .btnwrp {
    padding: 70px 0 0;
}

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

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

.belowform {
    padding: 170px 0 150px;
}

.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;
}

.row.web-port .scroll-port {
    /* height: 500px; */
}

.free-consult {
    padding: 80px 0 115px 0;
}

.free-consult .sub-head {
    padding: 0px;
}

.free-consult .form {
    margin: 20px 0 0 0;
}

.free-consult h2 {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
}

.free-consult .form input[type="text"],
.free-consult .form input[type=email],
.free-consult .form textarea,
.free-consult .form select {
    width: 100%;
    font-size: 15px;
    color: #767676;
    font-weight: 600;
    border: 0px;
    padding: 13px 24px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-family: 'gothamlight';
    margin-bottom: 14px;
    height: 50px;
}

.free-consult .form textarea {
    margin: 0;
    resize: none;
    height: 196px;
}

.free-consult .form input[type="text"].error,
.free-consult .form input[type=email].error {
    border-color: var(--red);
}

.free-consult .form .interested-in h6 {
    font-size: 15px;
    color: var(--dark);
    font-weight: 600;
    margin: 15px 0;
}

.free-consult .form .cCheckbox {
    background: #fff;
    width: 18px;
    height: 18px;
    border: 1px solid #e1e1e1;
    float: left;
    margin: 1px 12px 0 0;
}

.free-consult .form label {
    margin: 0px 0px 15px 0;
    cursor: pointer;
    font-size: 15px;
    color: #767676;
    font-weight: 600;
    width: 33%;
}

.free-consult .form label.error {
    display: none !important;
}

.free-consult .form label.full {
    width: 100%;
}

.free-consult .form .primary-btn {
    width: 100%;
    margin-top: 0;
    padding: 13px;
    border: 0px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .flexiblefeatures-sec h2 {
        font-size: 30px;
    }

    .appr-warp {
        width: 100%;
    }

    header .navwrp,
    .floatbutton {
        display: none;
    }

    .ap-sec h2,
    .ap-sec h3 {
        font-weight: 700;
        font-size: 26px;
    }

    header {
        padding: 0;
        z-index: 9;
    }

    .top-head {
        /* background: #f3f5f7; */
        /* border-bottom: 1px solid #cbd6e2; */
        padding: 0 0;
        margin: 10px 0;
    }

    header .navtop ul li {
        margin: 0 12px;
    }

    .home-bnnerwrp .imgwrp {
        position: relative;
        display: none;
    }

    .btnwrp {
        padding: 0 0 0;
    }

    header .navtop ul li a {
        font-size: 14px;
    }

    header .navtop ul {
        text-align: center;
    }

    header .navtop ul li a i {
        color: #fff;
    }

    .header-main.showmenu {
        z-index: 9;
    }

    .mobile-nav-btn {
        z-index: 999;
        right: 8%;
        top: 55px;
    }

    .mobile-nav-btn span,
    .mobile-nav-btn span:before,
    .mobile-nav-btn span:after {
        background-color: #fff;
    }

    .home-bnnerwrp {
        padding: 150px 0 50px;
        text-align: center;
    }

    .txtwrp ul li {
        width: 23%;
    }

    .home-bnnerwrp .txtwrp ul li img {
        width: 100%;
    }

    .btn-main,
    .btn-secnd {
        padding: 10px 20px;
        font-size: 18px;
        display: block;
        margin: 0 0 10px;
        text-align: center;
    }

    h2.main-heading {
        color: #000;
        font-size: 36px;
    }

    .secnd-fold .imgwrp {
        margin: 40px 0 0;
    }

    .cta2 .wrap h6 {
        font-size: 20px;
        text-align: center;
    }

    .cta2 .wrap h3 {
        text-align: center;
    }

    .home-bnnerwrp.servicewrp {
        height: auto;
        background-position: 50%;
    }

    .ctawrp {
        padding: 0px 0;
    }

    .pakcgewrp .navwrp .pkgeport li .mainpkge .btnwrp p {
        font-size: 12px;
        color: #fff;
    }

    .pakcgewrp .navwrp .pkgeport li .mainpkge .detailwrp ul li {
        font-size: 14px;
    }

    .pakcgewrp .navwrp .pkgeport li .mainpkge .namwrp h2 {
        font-size: 20px;
    }

    .pakcgewrp .navwrp .pkgeport li .mainpkge .pricewrp h1 {
        font-size: 48px;
    }

    .pakcgewrp .navwrp .pkgeport li .mainpkge .pricewrp h4 {
        font-size: 18px;
    }

    ul.partnerslider li img {
        margin: auto;
    }

    .service-cetawrp .ser-port li .imgwrp img {
        display: none;
    }

    .service-cetawrp ul.tabbing-links li {
        font-size: 14px;
        display: inline-block;
        margin: 6px 5px;
        border: solid 1px #ccc;
        border-radius: 50px;
        padding: 8px 16px;
    }

    .service-cetawrp ul.tabbing-links,
    .service-cetawrp .txtwrp h2 {
        margin-left: 0;
        text-align: center;
    }

    .service-cetawrp .ser-port li .mainwrp .btn-secnd,
    .service-cetawrp .ser-port li .mainwrp .btn-main {
        padding: 15px 15px;
    }

    .service-cetawrp .ser-port li .mainwrp {
        padding: 50px 15px;
        height: auto;
        text-align: center;
    }

    .ctawrp .mainwrp {
        width: 100%;
        padding: 30px 15px 50px;
    }

    .ctawrp .mainwrp .txtwrp h2 {
        font-size: 24px;
    }

    .ctawrp .mainwrp .txtwrp p {
        font-size: 20px;
        width: 90%;
        margin: 0 auto;
    }

    .btn-secnd {
        margin: 0 5px;
    }

    .tabs-web-dsgn li.hk_web_height {
        height: 250px;
    }

    .portfoliowrp {
        padding: 40px 0 50px;
    }

    .portfoliowrp .imgport li {
        width: 45%;
    }

    .portfoliowrp .btnwrp a {
        width: 90%;
        display: block;
        margin: 15px 0 0 17px;
    }

    .pakcgewrp .navwrp .pkgeport li {
        width: 95%;
        margin: 0 10px 20px;
    }

    .conbowrp .pkgehead {
        width: 100%;
        background: #0464d2;
        border-radius: 0px 10px;
        margin-bottom: -30px;
    }

    .cta-img {
        display: none;
    }

    .mygrid {
        width: 90%;
        margin: 0px auto 50px;
        height: auto;
    }

    .cta2 .wrap .gt-strt,
    .wrap .new-cta {
        display: block;
        width: 100%;
        font-size: 18px;
        float: none;
        margin-right: 0px;
        text-align: center;
        margin-bottom: 15px;
    }

    .conbowrp .pkgehead h2 {
        font-size: 23px;
    }

    .conbowrp .mainpkge .imgwrp {
        display: none;
    }

    .conbowrp .pkgehead p {
        font-size: 14px;
    }

    .conbowrp .mainpkge .navwrp h4 {
        font-size: 18px;
    }

    .conbowrp .mainpkge .imgwrp img {
        width: 60%;
        top: -377px;
        left: 140px;
    }

    .testiwrp {
        padding: 50px 0 50px;
    }

    .testiwrp .imgwrp {
        left: 0;
    }

    .testiwrp .imgwrp img {
        margin-bottom: 20px;
    }

    .testiwrp .txtwrp h4,
    .testiwrp .txtwrp p,
    .testiwrp .txtwrp span,
    .testiwrp .txtwrp h5 {
        text-align: center;
    }

    .testiwrp .txtwrp h2 {
        font-size: 30px;
        text-align: center;
    }

    .testiwrp .txtwrp span {
        display: block;
    }

    section.logo-clntwerp h2 {
        font-size: 26px;
    }

    .logo-clntwerp ul li img {
        margin: auto;
    }

    .cta-sndwrp .txtwrp h2 {
        font-size: 26px;
    }

    .cta-sndwrp .txtwrp p,
    section.btmform p {
        font-size: 16px;
    }

    .cta-sndwrp .btnwrp .btn-main {
        width: 90%;
        display: block;
        margin: auto;
    }

    .cta-sndwrp .btnwrp .btn-secnd {
        display: block;
        margin: 10px 20px;
    }

    section.btmform h2 {
        font-size: 26px;
    }

    .btmform .wrapper {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .ver-cta .box {
        right: -213px;
    }

    .field input,
    .field select,
    .field-msg textarea {
        width: 100%;
    }

    .btmform .second-sec-cont h2 {
        font-size: 30px;
    }

    .btmform .wrapper,
    .ver-cta {
        height: 90%;
    }

    footer {
        padding: 80px 0 50px;
    }

    .form-wrap {
        width: 100%;
        margin: 30px auto 40px;
    }

    .secnd-fold {
        margin: -200px 0 0 0;
        padding: 50px 0 40px;
    }

    .secnd-fold h2 {
        font-size: 34px;
        text-align: center;
    }

    .secnd-fold .imgwrp img {
        width: 100%;
    }

    .our-ser-bnnr {
        padding: 170px 0 70px;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h4 {
        color: #000000;
        font-size: 10px;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        font-size: 36px;
    }

    header .navtop ul li.displaynone {
        display: none;
    }

    header .logowrp img {
        position: relative;
        bottom: 0;
        margin: 0 0 10px;
    }

    .service-cetawrp .txtwrp h2:after {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .service-cetawrp .ser-port li .mainwrp p {
        font-size: 16px;
        padding: 10px 0 20px;
    }

    .service-cetawrp {
        padding: 30px 0;
    }

    .pakcgewrp .navwrp ul.tabbing-links li {
        padding: 10px 15px;
    }

    .pakcgewrp .navwrp ul.tabbing-links li.current {
        font-size: inherit;
        padding: 10px 15px;
    }

    .pakcgewrp .navwrp .pkgeport li .mainpkge .detailwrp ul {
        margin: 20px 0 20px;
    }

    .cta-sndwrp {
        padding: 30px 0 30px;
    }

    .sec-left {
        width: 100%;
    }

    .sec-right {
        display: none;
    }

    footer .logowrp {
        padding: 0 0;
    }

    footer .fotrnav {
        margin: 0px 0 0;
        padding: 0 0;
    }

    footer .fotrnav ul {
        margin: 0px 0 0;
    }

    footer .fotrnav ul li a {
        font-size: 14px;
    }

    footer .fotr-btm {
        margin: 15px 0 0;
        text-align: center;
    }

    footer .fotr-btm p {
        font-size: 14px;
        text-align: center;
    }

    footer .fotr-btm ul {
        margin: 0;
        text-align: center;
    }

    footer .fotrnav h4 {
        font-size: 20px;
        margin: 13px 0;
    }

    .second-sec-cont {
        text-align: center;
    }

    .conbowrp .mainpkge .btnwrp .btn-main {
        display: block;
        margin: 0 0 10px;
        text-align: center;
        width: 100%;
        padding: 10px 20px;
        font-size: 17px;
    }

    .conbowrp .mainpkge .btnwrp .btn-secnd {
        display: block;
        margin: 0;
        text-align: center;
        width: 100%;
        padding: 10px 20px;
        font-size: 17px;
    }

    .conbowrp .mainpkge {
        padding: 50px 15px 20px;
    }

    .servicewrp.lppadd {
        padding: 150px 0 160px;
    }

    p.main-pera {
        text-align: center;
    }

    .mobile-nav nav li {
        padding: 0;
    }
}

.terms-pg {
    padding: 200px 0 40px;
}

.terms-pg h1 {
    color: #094cb4;
}

.termspage {
    padding: 0 0 160px;
}

.overlap1:before {
    content: '';
    background: #011038d9;
    display: block;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 99;
}

.m-auto {
    margin: 61px auto !important;
    display: table;
}

.banner2 {
    display: block;
    text-align: center;
    padding: 60px 0 70px;
    /* background-image: url(../imgs/banner.webp); */

    background-repeat: no-repeat;
    background-size: cover;
    background: #141e44;
}

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

p.main-pera {
    color: #fff;
    /* margin-left: -39px; */
}

h6.main-heading.wow.fadeInDown {
    text-align: left;
    font-weight: 900;
    font-size: 20px;
    font-family: 'gothamlight';
}

/* .container.bg {
        position: relative;
        left: -147px;
    } */
.rock-bg {
    display: block;
    text-align: center;
    padding: 180px 0;
    background-image: url(../images/rock-bg.html);
    background-repeat: no-repeat;
    background-size: cover;
}

.input-group.newsletter {
    width: 54%;
}

input.form-control {
    background: transparent;
}

input.form-control::placeholder {
    color: white;
}

h2.h2-box {
    color: white;
    font-size: 22px;
    font-weight: 700;
    font-family: 'gothamlight';
    margin: 0px 0 -10px 17px;
}

.contact-img {
    height: 99%;
    background-image: url(../imgs/phone.webp);
    background-repeat: no-repeat;
    width: 49%;
    object-fit: cover;
    background-size: cover;
    position: relative;
    background-position: 100% 100%;
    left: 5rem;
    transform: rotate(26deg);
}

.contact-1 {
    width: 82%;
    margin-left: 18em !important;
}

.box {
    /* margin-left: 89px; */

    padding: 52px 0 3px 88px;
}

p.h2-box {
    margin-left: 18px;
}

.btmform {
    /* padding: 100px 0 100px;
        background-image: url(../images/contact-herobg.webp);
        background-size: cover;
        background-repeat: no-repeat; */
}

.col-md-4.logo-box {
    background-image: url(../images/footer-bg.html);
    border-bottom: 2px solid white;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    position: relative;
    z-index: 22;
    padding-bottom: 71px;
    bottom: 115px;
}

.row.foo {
    margin-top: -9em;
}

a.btn-main.wow.fadeInDown.btn-main1 {
    padding: 15px 40px;
    border-radius: 35px;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    background: #ffffff;
    /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
}

a.btn-main.wow.fadeInDown.btn-main1:hover {
    padding: 15px 40px;
    border-radius: 35px;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    /* background: #786363; */

    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
}

.logo-clntwerp ul li img {
    margin: 0px auto !important;
}

ul.tabbing-links {
    margin: 0px !important;
}

.pakcgewrp .navwrp2 ul.tabbing-links li {
    color: #fff !important;
}

/* Subheader css */
.top-head .container {
    position: relative;
    height: 40px;
}

.top-head .container:before {
    content: "";
    position: absolute;
    width: 400%;
    height: 46px;
    background-color: #141e44;
    right: 45%;
    clip-path: polygon(0 0, 100% 1%, 99% 142%, 0 100%);
}

/* .top-head .container:after{content: "";position:absolute;margin: -41px -20px;width:40px;height: 61px;transform: rotate(31deg);background-color: #22182a;right: 45%;} */
.top-head div#topbar {
    padding-top: 6px;
}

/* End */
.mainwpp span.about-us-nwpp {
    color: #333;
    font-size: 22px;
    margin: 0 0 10px 0;
    display: block;
}

/* Custom Css */
h2.myh2.wow.fadeInDown:before,
h3.myh2.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: -10px;
}

img#why-us {
    width: 100%;
    margin: 0 0 44px 0;
}

.col-12.col-md-6.whyuss {
    /* padding-left: 422px; */
}

.myyimg {
    float: right;
}

section.ap-sec {
    /* background-image: url(../imgs/services-bg.webp); */

    padding: 48px 0 5px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background: #141e44;
    /*margin: 100px 0 0;*/
}

/* card carosal */
.card.mb-2 {
    background: transparent;
    border: 2px solid white;
    padding: 23px 0;
    color: white !important;
    border-radius: 0px !important;
}

.card.mb-2:hover {
    /* background: white; */
    /* color:black !important; */
}

.card-img-top {
    width: 20%;
    float: left !important;
    display: inline-block;
}

.ap-sec p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 100;
    text-align: left;
}

h4.card-title {
    color: white;
    height: 90px;
}

section.ap-sec ol.carousel-indicators {
    bottom: -60px;
}

section.ap-sec .col-md-4:hover .card.mb-2 {
    background-color: #fff;
    border-top: 3px solid #d50d69;
}

section.ap-sec .col-md-4:hover img.card-img-top {
    filter: invert(1);
}

section.ap-sec .col-md-4:hover h4.card-title {
    color: #000;
}

section.ap-sec .col-md-4:hover p.card-text {
    color: #000 !important;
}

h4.card-title {
    color: white;
    padding: 12px 81px;
}

h2.text-white.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: -11px;
    right: 500px;
}

h2.process-heading.text-center.wow.fadeInDown,
h3.process-heading.text-center.wow.fadeInDown,
h4.process-heading.text-center.wow.fadeInDown {
    color: #ec0d72;
    font-size: 45px;
    text-transform: uppercase;
}

h2.process-heading.text-center.wow.fadeInDown:before,
h3.process-heading.text-center.wow.fadeInDown:before,
h4.process-heading.text-center.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: -20px;
    right: 500px;
}

section.ap-sec h2.text-white.wow.fadeInDown,
section.ap-sec h3.text-white.wow.fadeInDown {
    font-size: 45px;
}

section.ap-sec h2.text-white.wow.fadeInDown:before,
section.ap-sec h3.text-white.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: 54px;
    right: 500px;
}

/* counter */
.counter-box {
    display: block;
    background: #f6f6f6;
    padding: 40px 20px 37px;
    text-align: center
}

.counter-box p {
    margin: 5px 0 0;
    padding: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.counter-box i {
    font-size: 60px;
    margin: 0 0 15px;
    color: #d2d2d2
}

.counter {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #d52087;
    line-height: 28px;
}

.counter-box {
    background: transparent;
    border-right: 2px solid #504f4f82;
}

.counter-box.colored {
    border-left: 2px solid #504f4f82;
}

.counter-box.colored p,
.counter-box.colored i,
.counter-box.colored .counter {
    /* color: #fff; */
}

/* counter ends*/
.myimgg {
    float: right;
}

button.btn-main12 {
    border: none !important;
    font-size: 18px;
    display: flex;
}

button.btn-main12:hover {
    color: #ec0d72;
}

button.btn-main12:before {
    content: "+";
    background-color: #ec0d72;
    width: 100px;
    height: 100%;
    padding: 2px 4px 2px 4px;
    color: white;
    width: 27px;
}

button.btn-main12 p {
    text-align: left;
    margin-left: 10px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'gothambold' !important;
}

div#headingOne {
    border-bottom: 2px solid #efecec;
    padding: 14px 0px;
}

#headingTwo {
    border-bottom: 2px solid #efecec;
    padding: 14px 19px;
}

#headingThree {
    border-bottom: 2px solid #efecec;
    padding: 14px 19px;
}

.card {
    border: none;
}

/* accordion */
button.btn-main12 {
    background-color: transparent !important;
}

div#accordion button:focus {
    outline: none !important;
    outline: none !important;
}

/* portfolio */
.demo {
    background-image: url(../imgs/testimonial-bg.webp);
    padding: 156px 0 0 0;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 63em;
}

.testimonial .pic {
    width: 38%;
    padding: 20px 0;
    margin: 6px 6% 0 2%;
    float: right;
    position: relative;
    z-index: 1;
    height: 306px;
    border-radius: 20px;
}

.testimonial .pic:before,
.testimonial .pic:after {
    content: "";
    width: 130px;
    height: 150px;
    background: #e1c37d;
    position: absolute;
    z-index: -1;
}

.testimonial .pic:before {
    top: 0;
    right: -20px;
}

.testimonial .pic:after {
    bottom: 0;
    left: -20px;
}

.testimonial .pic img {
    width: 29%;
    height: auto;
    border: 3px solid #e1c37d;
    margin: 20px auto;
    display: table;
    border-radius: 56px;
}

.testimonial .testimonial-content {
    width: 53%;
    float: left;
}

.testimonial .title {
    display: block;
    font-size: 45px;
    font-weight: 700;
    color: #141e44;
    margin: 0;
    text-transform: uppercase;
    /* width: 101% !important; */
    /* padding-top: 65px; */

    padding-left: 15px;
}

.testimonial .post {
    display: block;
    font-size: 24px;
    font-weight: 400;
    line-height: 27px;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 25px;
    padding-left: 15px;
}

.testimonial .description {
    font-size: 16px;
    color: #000;
    padding: 0 15px;
    margin: 0;
    position: relative;
}

.testimonial .description:before,
.testimonial .description:after {
    /* font-family: "Font Awesome 4 Free"; */
    /* font-weight: 900; */

    font-size: 17px;
    color: #e1c37d;
    position: relative;
    opacity: 0;
}

.testimonial .description:before {
    content: "\f10d";
    margin-right: 5px;
    top: 0;
    left: 0;
}

.testimonial .description:after {
    content: "\f10e";
    margin-left: 5px;
    position: relative;
    bottom: 0;
    right: 0;
}

.owl-theme .owl-controls {
    width: 67%;
    margin: 0;
    text-align: left;
    position: absolute;
    left: 0;
    bottom: -43px;
}

.owl-theme .owl-controls .owl-buttons div {
    width: 70px;
    height: 90px;
    line-height: 90px;
    background: transparent;
    border-radius: 0;
    opacity: 1;
    position: relative;
}

.owl-prev:before,
.owl-next:before {
    content: "\f177";
    font-family: "fontawesome";
    font-size: 40px;
    font-weight: 900;
    color: #141e44;
    position: absolute;
    top: 0;
    left: 25%;
}

.owl-next:before {
    content: "\f178";
}

.owl-next:after {
    content: " / ";
    font-size: 40px;
    color: #ddd;
    position: absolute;
    top: 0;
    left: -10px;
    display: none;
}

@media only screen and (max-width: 990px) {
    .testimonial {
        text-align: center;
    }

    .testimonial .pic {
        width: 200px;
        margin: 0 auto;
        float: none;
    }

    .testimonial .pic:before,
    .testimonial .pic:after {
        width: 80px;
        height: 100px;
    }

    .testimonial .testimonial-content {
        width: 100%;
        float: none;
    }

    .testimonial .title {
        padding: 15px 0 0 0;
    }

    .testimonial .post {
        padding: 0;
        margin-bottom: 10px;
    }

    .owl-theme .owl-controls {
        width: 100%;
        position: static;
        text-align: center;
    }

    .owl-theme .owl-controls .owl-buttons div {
        height: 50px;
        line-height: 50px;
    }
}

.testimonial .pic:before {
    display: none;
}

.testimonial .pic:after {
    display: none;
}

.demo .pic {
    /* background-image: url(../imgs/client-img-bg.webp); */
    /* background-repeat: no-repeat;
    background-size: 100%;
    height: 63em; */

    padding: 16px 20px !important;
    background: #141e44;
}

.testi-name.text-center.text-white {
    font-size: 25px;
    font-weight: 700;
}

.testi-designation.text-center.text-white {
    font-size: 16px;
}

/* portfolio ends */
.text-center.box-boxi1 {
    padding: 32px 15px;
    /* border-radius: 18px; */
    /* min-height: 286px; */

    box-shadow: 0px 1px 14px 0px #141e4454;
    height: 232px;
    border-radius: 8px;
}

h4.card-heading {
    font-size: 22px;
    color: #141e44;
    font-weight: 700;
}

a.card-sub-heading.text-center {
    font-size: 13px;
}

.sec-left {
    width: 80%;
    /* float: right; */

    margin-left: 72px;
    padding: 49px 0 0px 0 !important;
}

h2.main-heading.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: -20px;
}

p.foo.text-white {
    padding: 15px 0 15px 0;
}

.fotrnav:before {
    content: "";
    background-color: #ffffff6b;
    width: 1px;
    height: 200px;
    position: absolute;
    top: 20px;
    left: -20px;
}

.floatbutton .clickbutton .crossplus {
    color: #ffffff;
}

a.btn-main99 {
    padding: 15px 40px;
    border-radius: 0 !important;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    background: #ec0d72;
    /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */

    margin-right: 19px;
    transition: ease 0.5s;
    font-family: 'gothambold' !important;
}

a.btn-main99:hover {
    background-color: #381a4b !important;
    transition: ease 0.5s;
}

section.process {
    padding: 93px 0 120px 0;
}

section.ap-sec .card.mb-2:hover {
    /* transform: scale(1.2); */

    transition: ease 0.5s;
    padding: 70px 0px;
}

section.ap-sec .controls-top {
    display: none !important;
}

section.ap-sec .card.mb-2 {
    transition: ease 0.5s;
    cursor: pointer;
}

.process span.number-text {
    position: absolute;
    top: -80px;
    left: 50px;
    background: linear-gradient(to left, #cf00c9 0%, #000000 40%, #ce00ff 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 80px;
    z-index: -1;
    display: none;
}

.process .process-card:hover {
    transform: scale(1.1);
    background: #f04391;
    box-shadow: 0 0 3px 1px #fff;
}

.process .process-main-card {
    display: flex;
    justify-content: center;
}

.process .process-card {
    position: relative;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    transition: .3s all ease-in-out;
    background: #fff;
    box-shadow: 0 0 3px 1px #ee2b83;
    width: 250px;
    margin: 0 50px 0 0;
    height: 260px;
}

.process .process-card:hover img {
    filter: brightness(1);
}

.process .process-card:hover h4 {
    color: #fff;
}

.process .process-card:hover p {
    color: #fff;
}

.process .process-card a img {
    margin: 10px 0 10px 0;
    width: 50px;
    height: 50px;
    filter: brightness(0);
}

.process .process-card a h4 {
    color: #141e44;
    font-size: 17px;
    margin: 20px 0 0 0;
}

.process .process-card a p {
    color: #333;
    padding: 0;
    margin: 25px 0 20px 0;
    font-size: 14px;
}

/* landing */
.card.mb-22 {
    background: transparent;
    border: 1px solid black;
    padding: 62px 0;
    color: black !important;
    border-radius: 0px !important;
    cursor: pointer;
}

.card-inner-wrap {
    height: 23.5rem !important;
}

h4.card-titlee {
    color: black;
    padding: 4px 0px 6px 86px;
    font-size: 24px;
}

p.card-textt {
    color: black;
}

section.ap-secc {
    background-image: url(../imgs/apsec-bg.webp);
    padding: 156px 0 0 0;
    background-repeat: no-repeat;
    background-size: 100%;
    /* height: 117em; */
}

section.ap-secc h2.wow.fadeInDown {
    font-size: 45px;
}

section.ap-secc h2.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: -50px;
    right: 500px;
}

/* 
.card.mb-22:before {
    content: url('/wikipedia/assets/imgs/pointer.svg');
    position:absolute;
    width: 50px;
    height: 40px;
    bottom: -41px;
    right: 0px;
    left: 0;
    z-index: -9999;
    margin: 0px auto;
} */
section.ap-secc .card.mb-22:after {
    content: '';
    background-color: #ffffff;
    width: 42px;
    /* height: 22px; */

    height: 1px;
    position: absolute;
    bottom: -2px;
    right: 5px;
    left: 0;
    margin: 0px auto;
    z-index: 1;
}

section.ap-secc .card.mb-22:hover {
    /* background-color: #141e44; */

    background-image: linear-gradient(#141e44, #1B0F24);
    border-top: 3px solid #ec0d72;
}

section.ap-secc .card.mb-22:hover::after {
    background-color: #141e44 !important;
}

section.ap-secc .card.mb-22:hover img.card-img-top {
    filter: invert(1);
}

section.ap-secc .card.mb-22 img.card-img-top {
    /* filter: invert(1); */
}

section.ap-secc .card.mb-22:hover h4.card-titlee {
    color: #fff;
}

section.ap-secc .card.mb-22:hover p.card-textt {
    color: #fff;
}

/* section.ap-secc .card.mb-22:hover::before {
    
    content: url('/wikipedia/assets/imgs/pointerhover.svg');
} */

/* CLIENT LOGO CUSTOM */

/* Slider */
.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/*  */
.slick-slide img {
    filter: brightness(0.8);
}

/* CLIENT LOGO CUSTOM ENDS*/
.our-cus-ser-wrap {
    /* overflow: scroll; */

    height: 460px;
    padding: 15px 0 !important;
}

.our-cus-ser-wrap h4 {
    padding: 1px 0px 10px 76px;
}

p.process-sub-heading {
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    margin: 0 0 100px 0;
}

.faq-intro-para {
    color: #000000;
    font-size: 25px;
    line-height: 50px;
    font-family: 'gothambold' !important;
    font-weight: 700;
}

.card-body.accordion-card {
    padding-left: 0;
    color: #000000 !important;
    font-size: 16px;
    line-height: 24px;
    font-family: 'gothamlight' !important;
}

a.card-sub-heading.text-center {
    font-size: 16px;
    font-family: 'gothamlight' !important;
    color: #000000 !important;
    font-weight: 600;
    line-height: 18px;
}

/* Mobile Responsive Css */
@media (min-width: 300px) and (max-width: 768px) {
    /**/

    section.home-bnnerwrp.servicewrp.wiki-ser-head .form-wrap {
        display: none !important;
    }

    .ap-sec .our-cus-ser-wrap h4 {
        font-size: 23px !important;
    }

    .ap-sec p {
        text-align: center !important;
    }

    /**/

    .service-cetawrp a.btn-main99 {
        font-size: 16px !important;
    }

    /**/

    .ap-sec .our-cus-ser-wrap h4 {
        padding: 8px 0px 0px 0px;
        text-align: center;
    }

    h1.paymentForm {
        FONT-SIZE: 20PX !important;
    }

    .btmform input#free_cons_phone1 {
        width: 100% !important;
    }

    /* For mobile phones: */

    .col-12.col-md-6.whyuss {
        /* padding-left: 0px; */
        width: 100% !important;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 34px 28px;
    }

    .our-ser-bnnr {
        padding: 207px 0 70px;
    }

    section.home-bnnerwrp.servicewrp.wiki-ser-head {
        padding-bottom: 0px !important;
    }

    section.process a.btn-main99.wow.fadeInDown {
        width: 100% !important;
        margin-bottom: 0px !important;
    }

    .card-img-top {
        float: none !important;
        margin: 0px auto;
        display: table;
    }

    .service-carousel-wrap h4 {
        padding: 10px 0 0 !important;
        text-align: center !important;
        font-size: 20px !important;
    }

    section.banner2 a.btn-main.wow.fadeInDown {
        width: 100% !important;
    }

    section.premium-service-section h2 {
        font-size: 30px !important;
        margin-bottom: 10px !important;
    }

    section.premium-service-section h3.premium-service-subhd {
        font-size: 20px !important;
    }

    section.our-ser-bnnr p.main-pera.wow.fadeInDown {
        color: #fff !important;
        font-size: 17px !important;
    }

    section.our-ser-bnnr h2.main-heading.wow.fadeInDown {
        font-size: 22px !important;
    }

    section.banner2 h2.main-heading.wow.fadeInDown {
        font-size: 26px !important;
    }

    section.banner2 p.main-pera.wow.fadeInDown {
        color: #fff !important;
    }

    section.home-bnnerwrp a.btn-main.wow.fadeInDown.btn-main {
        width: 100% !important;
    }

    h2.myh2,
    h3.myh2 {
        font-size: 28px !important;
    }

    p.myp2 {
        font-size: 14px !important;
        padding-bottom: 10px !important;
    }

    section.ap-sec a.btn-main.wow.fadeInDown {
        width: 100%;
    }

    section.process h2.process-heading.text-center.wow.fadeInDown,
    section.process h3.process-heading.text-center.wow.fadeInDown,
    section.process h4.process-heading.text-center.wow.fadeInDown {
        font-size: 35px !important;
    }

    section.banner2 {
        padding-bottom: 20px !important;
    }

    .demo h1.title {
        font-size: 31px !important;
    }

    .mobile-nav-btn {
        z-index: 999;
        right: 8%;
        top: 26px;
        /* width: 100%; */
        position: absolute;
    }

    header .navtop ul li a {
        font-size: 12px;
    }

    header .navtop ul {
        text-align: left;
    }

    .top-head {
        padding: 0 0;
        margin: 0;
        width: 139%;
    }

    h4.wow.fadeInDown:before {
        content: "";
        background-color: #ec0d72;
        width: 100px;
        height: 4px;
        position: absolute;
        top: -11px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h4 {
        color: #ffffff;
        font-size: 12px;
        font-weight: 100 !important;
        margin-top: 32px;
        font-family: 'gothamlight' !important;
    }

    /* .home-bnnerwrp {
      padding: 210px 0 150px;
      background-image: url(/wikipedia/assets/imgs/hero-img.webp) !important;
      background-repeat: no-repeat;
      background-size: cover;
      overflow: hidden;
      height: 59em!important; 
      background-color: #f8f8f8;
  } */

    .clientswrp {
        padding: 61px 0 0 0px !important;
        text-align: center;
        display: block;
        /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
        width: 100%;
        margin: 0 0 -75px 0;
        position: relative;
        /* top: -120px; */
        height: 56vh;
        background: radial-gradient(190% 59% at bottom, transparent 52%, #f8f8f8 51%);
        z-index: -1;
        background-position: 40% 0px !important;
    }

    h2.myh2,
    h3.myh2 {
        font-size: 31px;
        text-align: center;
        font-weight: 700;
        text-transform: uppercase;
        font-family: 'gothambold' !important;
        color: #141e44;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    h2.myh2.wow.fadeInDown:before,
    h3.myh2.wow.fadeInDown:before {
        content: "";
        background-color: #ec0d72;
        width: 100px;
        height: 4px;
        position: absolute;
        top: -20px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }

    p.myp2 {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #000000;
        margin: 0 auto;
        /* width: 100% !important; */
        text-align: center;
    }

    .service-cetawrp {
        padding: 0px 0;
        /* margin: 0 auto; */
    }

    header.header-main {
        width: 100% !important;
    }

    img.lazy.loading {
        width: 100%;
    }

    section.ap-sec {
        padding: 65px 0 4px 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center right;
    }

    section.ap-sec h2.text-white.wow.fadeInDown,
    section.ap-sec h3.text-white.wow.fadeInDown {
        font-size: 36px;
    }

    .ap-sec p {
        color: #ffffff;
        font-size: 13px;
        font-weight: 100;
        text-align: left;
    }

    section.ap-sec ol.carousel-indicators {
        bottom: -26px;
    }

    h2.process-heading.text-center.wow.fadeInDown,
    h3.process-heading.text-center.wow.fadeInDown,
    h4.process-heading.text-center.wow.fadeInDown {
        color: #141e44;
        font-size: 40px;
        text-transform: uppercase;
    }

    section.process {
        padding: 29px 0 70px 0;
    }

    h2.text-white.wow.fadeInDown {
        font-size: 29px;
    }

    h2.text-white.wow.fadeInDown:before {
        content: "" !important;
        background-color: #ec0d72 !important;
        width: 100px !important;
        height: 4px !important;
        position: absolute !important;
        top: -11px !important;
        right: 0 !important;
        left: 0 !important;
        margin: 0 auto !important;
    }

    .counter-box.colored {
        border-left: none;
    }

    .counter-box {
        background: transparent;
        border-right: none;
    }

    .faq-intro-para {
        color: #000000;
        font-size: 18px;
        text-align: center;
        line-height: 17px;
        font-family: 'gothambold' !important;
        font-weight: 700;
    }

    div#accordion {
        box-sizing: border-box;
        padding: 0px 25px 0px 25px;
    }

    section.process img {
        display: none !important;
    }

    section.process {
        padding-bottom: 10px;
    }

    .testimonial .title {
        display: block;
        font-size: 36px;
        font-weight: 700;
        color: #141e44;
        margin: 0;
        text-transform: uppercase;
        padding-left: 15px;
    }

    .testimonial .description {
        font-size: 16px;
        color: #000;
        padding: 26px 15px;
        margin: 0;
        position: relative;
    }

    .testimonial .description {
        font-size: 16px;
        color: #000;
        padding: 26px 15px;
        margin: 0;
        position: relative;
    }

    .sec-left {
        width: 100%;
        padding: 49px 0 0px 0 !important;
        margin: 0 auto;
    }

    .field-msg textarea {
        background-color: #ffffff;
        width: 100% !important;
        padding: 15px 15px;
        border: 0;
        color: #9b9fa6;
        overflow: hidden;
        height: 110px;
        margin: 0 auto;
        border: 2px solid #ec0d72;
        resize: none;
        outline: none;
    }

    h2.main-heading.wow.fadeInDown:before {
        content: "";
        background-color: #ec0d72;
        width: 100px;
        height: 4px;
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    section.btmform h2 {
        font-size: 26px;
        /* margin: 0 auto; */
        text-align: center;
    }

    .testimonial .pic {
        width: 100%;
        margin: 0 auto;
        float: none;
    }

    .field-btn {
        padding: 18px !important;
    }

    .field-msg {
        padding: 5px 5px 5px 5px !important;
        margin: 0 auto !important;
        width: 25.4em !important;
    }

    .btmform {
        z-index: 2;
        position: relative;
        padding: 0px !important;
    }

    footer {
        padding: 160px 0 50px !important;
        /* background-image: url(../imgs/footer-bg.webp); */
        background-repeat: no-repeat;
        background-size: cover;
    }

    a.btn-main99 {
        padding: 15px 40px;
        border-radius: 0 !important;
        color: #ffffff;
        font-weight: 700;
        font-size: 18px;
        background: #ec0d72;
        /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
        margin-right: 19px;
        transition: ease 0.5s;
        font-family: 'gothambold' !important;
        margin: 11px;
    }

    /*  */

    h2.text-white.wow.fadeInDown.xyz:before {
        content: "" !important;
        background-color: #ec0d72 !important;
        width: 100px !important;
        height: 4px !important;
        position: absolute !important;
        top: 43px !important;
        right: 0 !important;
        left: 0 !important;
        margin: 0 auto !important;
    }

    /*  */

    .home-bnnerwrp {
        height: auto !important;
    }

    /* inner  */

    .premium-service-section {
        padding: 5rem 0 3rem 0 !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
    }

    .premium-services-wrap {
        height: auto !important;
    }

    .btnwrp {
        display: flex !important;
        flex-wrap: wrap !important;
        /* justify-content: center !important; */
    }

    h2.main-heading {
        color: #fff;
        font-size: 36px;
        text-align: center;
    }

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

    .submit {
        border: 0;
        font-family: 'gothamlight';
        font-size: 18px;
        color: #fff;
        line-height: 2;
        padding: 7px 31px;
        outline: none;
        cursor: pointer;
        transition: background-color .3s;
        border-radius: 5px;
        background: #ec0d72 !important;
        /* background-image: linear-gradient(to right top, #0569d7, #042888); */
        /* border-radius: 35px; */
        font-family: 'gothambold' !important;
        display: flex;
        /* justify-content: center; */
        margin: 0 auto;
    }
}

p.main-pera {
    color: #000;
    /* margin-left: -39px; */
}

/* Mobile Responsive Css ends*/

/* Ipad Responsive CSs */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .our-cus-ser-wrap {
        height: 440px !important;
    }

    .ap-sec .our-cus-ser-wrap h4 {
        font-size: 18px !important;
    }

    section.ap-sec .card-body {
        padding: 20px 6px !important;
    }

    body .home-bnnerwrp {
        background-position: 66% 0px !important;
    }

    section.home-bnnerwrp h4.wow.fadeInDown::before {
        left: 0px !important;
        right: auto !important;
    }

    section.home-bnnerwrp.servicewrp.wiki-ser-head {
        height: auto !important;
    }

    .home-bnnerwrp .txtwrp p {
        width: 80% !important;
    }

    .form-wrap h1 span {
        font-size: 19px !important;
        line-height: 21px !important;
    }

    .service-carousel-wrap {
        height: auto !important;
    }

    section.ap-sec .btnwrp.mt-7.text-center {
        margin: 30px auto 0 !important;
        display: table !important;
        padding-bottom: 30px !important;
    }

    section.process {
        padding: 60px 0 50px !important;
    }

    section.banner2 {
        padding-bottom: 20px !important;
    }

    .counter-box p {
        font-size: 14px !important;
    }

    .counter-box {
        padding: 40px 0px 39px !important;
    }

    section.service-cetawrp h2.myh2.wow.fadeInDown.mt-15.mb-15,
    section.service-cetawrp h3.myh2.wow.fadeInDown.mt-15.mb-15 {
        text-align: center !important;
    }

    section.service-cetawrp p.faq-intro-para {
        text-align: center !important;
    }

    .demo {
        padding-top: 102px !important;
        height: 59em !important;
    }

    .top-head {
        padding: 0 0;
        margin: 0;
        width: 100%;
        margin-top: 21px;
    }

    .premium-services-wrap {
        height: 51em !important;
    }

    .txtdiv {
        width: 140%;
    }

    .top-head .container:before {
        right: 26% !important;
    }

    .mobile-nav-btn span {
        background-color: #ffffff;
    }

    .mobile-nav-btn span:before,
    .mobile-nav-btn span:after {
        background-color: white;
    }

    header .navwrp {
        /* display: none !important; */
    }

    header .logowrp img {
        padding-top: 11px;
    }

    .home-bnnerwrp {
        background-position: center center;
    }

    .home-bnnerwrp .txtwrp {
        width: 130%;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        font-size: 27px;
    }

    section.home-bnnerwrp a.btn-main.wow.fadeInDown.btn-main {
        padding: 14px 14px;
        font-size: 12px;
        width: auto !important;
    }

    .mobile-nav-btn {
        right: 14%;
        top: 78px;
    }

    .clientswrp {
        height: 29vh !important;
    }

    img.lazy {
        width: 100% !important;
    }

    .our-cus-ser-wrap h4 {
        display: inline-block;
        padding: 9px 0;
        text-align: center;
        font-size: 17px;
        margin: 0 auto;
    }

    .card-img-top {
        width: 29%;
        display: block;
        margin: 0 auto;
        align-items: center;
    }

    .card-img-top {
        width: 29%;
        display: block !important;
    }

    .ap-sec p {
        font-size: 12px !important;
    }

    h2.process-heading.text-center.wow.fadeInDown:before,
    h3.process-heading.text-center.wow.fadeInDown:before,
    h4.process-heading.text-center.wow.fadeInDown:before {
        content: "";
        background-color: #ec0d72;
        width: 100px;
        height: 4px;
        position: absolute;
        top: -20px;
        right: 500px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .demo {
        padding: 156px 0 0 0;
        background-repeat: no-repeat;
        background-size: 100%;
        height: 74em;
        background-size: cover !important;
    }


    .card-body img.card-img-top {
        margin: 0px auto !important;
        display: table !important;
        width: 40% !important;
        float: none !important;
    }

    .our-cus-ser-wrap h4 {
        display: inline-block;
        text-align: center !important;
        width: 100% !important;
    }

    .ap-sec p {
        text-align: center !important;
    }

    .testimonial .pic {
        width: 100%;
        margin: 0 auto;
        float: none;
        background-repeat: no-repeat !important;
        background-size: cover;
    }

    .btmform .col-lg-3 {
        display: none;
    }

    .btmform .col-lg-6 {
        width: 100%;
        min-width: 100%;
    }

    p.main-pera {
        color: #fff;
        text-align: center;
    }

    /* .field {
    padding: 5px 0px 10px 31px;
    display: inline;
} */

    .field-msg {
        padding: 5px 5px 5px 5px !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .fotrnav:before {
        content: "";
        background-color: #ffffff6b;
        width: 1px;
        height: 137px;
        position: absolute;
        top: 20px;
        left: -5px;
    }

    footer .fotrnav ul li a img {
        position: absolute;
        right: 124px;
        bottom: 0;
    }

    footer .fotrnav ul li a {
        color: #fff;
        font-size: 9px;
        transition: all 0.3s ease;
        display: flex;
        line-height: 2;
        margin: 0 auto;
    }

    footer .logowrp p {
        padding: 22px 0 30px;
        font-size: 11px;
        color: #fff;
    }

    .field input,
    .field select {
        background-color: #ffffff;
        width: 49%;
        margin-bottom: 20px;
        padding: 15px 15px;
        order: 0;
        /* border-radius: 35px; */
        color: #9b9fa6;
        border: 1px solid #9b9fa673;
        border: 2px solid #ec0d72;
        outline: none;
        /* box-shadow: 1px 1px 18px 0px rgb(0 0 0 / 20%), 0 2px 25px -5px rgb(0 0 0 / 10%), 1px 5px 1px rgb(0 0 0 / 5%); */
    }

    .submit {
        font-family: 'gothambold' !important;
        margin: 0 auto !important;
        display: flex;
        width: 31%;
    }
}

/* Ipad Responsive CSs  Ends*/

/* laptop Responsive Css */
@media only screen and (min-device-width:1200px) and (max-width:1440px) {
    .home-bnnerwrp {
        background-position: 71% !important;
    }

    .col-12.col-md-6.whyuss {
        padding-left: 61px;
    }

    img#why-us {
        width: 90%;
        margin: 0 0 44px 0;
    }

    p.myp2 {
        width: 91%;
    }

    .demo {
        background-size: cover;
        height: 55em;
    }

    section.btmform a.card-sub-heading.text-center {
        font-size: 13px !important;
    }

    section.btmform .text-center.box-boxi1 {
        padding: 40px 10px !important;
    }

    section.btmform .col-lg-3.col-sm-12.phone-img {
        max-width: 25% !important;
        position: relative;
        left: -80px;
    }
}

section.our-ser-bnnr p.main-pera.wow.fadeInDown {
    color: white;
    text-align: center;
}

.our-ser-bnnr h2.main-heading.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.banner2 h2.main-heading.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* small laptop Responsive Css ends */
@media only screen and (min-device-width:1200px) and (max-width:1440px) {
    .navwrp ul li a.btnwrp {
        right: -2% !important;
        top: 18px !important;
    }

    .navwrp ul {
        margin: 16px 0px !important;
        padding: 5px 0;
        margin-left: -15px !important;
    }

    .sec-right {
        width: 20%;
        position: absolute;
        top: 30px;
        width: 129%;
        height: 95%;
        right: 9px;
        /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
        border-radius: 29px;
    }
}

/* small laptop Responsive Css ends */

/*Desktop Css SB*/
@media only screen and (min-width: 1441px) and (max-width: 1700px) {
    .clientswrp {
        height: 31vh;
    }

    .service-cetawrp .col-12.col-md-6.whyuss {
        padding-left: 68px;
    }

    .service-cetawrp img#why-us {
        width: 89%;
        margin: 0 0 44px 0;
    }

    .demo {
        padding: 156px 0 0 0;
        background-repeat: no-repeat;
        background-size: cover !important;
        height: 63em;
    }

    .btmform .sec-right {
        right: 120px;
    }

    .btmform .sec-right {
        width: 20%;
        position: absolute;
        top: 30px;
        width: 129%;
        height: 95%;
        right: -2px;
        /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
        border-radius: 29px;
    }

    .btmform .contact-img {
        height: 100%;
        background-image: url(../imgs/phone.webp);
        background-repeat: no-repeat;
        /* padding-right: 74px !important; */
        left: -65px;
        position: relative;
    }

    .home-bnnerwrp {
        background-position: center;
    }
}

/**/

/**/
.btmform input#free_cons_phone1 {
    width: 89%;
}

.home-bnnerwrp {
    MARGIN: -22px 0 !important;
}

.preloader .preloader-after,
.preloader .preloader-before {
    background-image: linear-gradient(96deg, #421e57 0%, #290b3a 100%) !IMPORTANT;
}

/*Foam css*/
.order-form section.content.free-consult:before {
    content: '';
    background-image: url('../imgs/land_page/modal_img.webp') !important;
    width: 110% !important;
    background-size: 440px;
    display: inline-block;
    background-repeat: no-repeat;
    position: absolute;
    top: -57px;
    right: 0;
    left: 0;
    height: 543px;
}

h2.text-center.pkg-name {
    color: #000 !important;
}

.free-consult .form input {
    border-color: #54256f !important;
}

.row.justify-content-center h2.text-center.pkg-name {
    display: none !important;
}

section.content.free-consult {
    background-color: #fff !important;
    height: 460px !important;
}

form#ordernow-form {
    padding-top: 2px !important;
}

.free-consult .form .primary-btn {
    background: #ed1272;
}

.order-form .close-icon {
    background-color: #ed1272 !important;
}

/**/
.order-form1 {
    display: none;
}

/**/
@media (min-width: 300px) and (max-width: 768px) {
    .form-banner {
        padding: 25px 10px;
    }

    .thnk h4 {
        font-size: 40px !important;

    }

    .navbar .logowrp img {
        width: 180px;
        object-fit: cover;
    }

    .order-form .free-consult {
        width: 95%;
        margin: 0 auto;
        padding: 110px 0 0;
    }

    .service-cetawrp a.btn-main99 {
        font-size: 15px !important;
        display: table !important;
        margin: 0 auto !important;
    }

    .btmform .field {
        padding: 0 !important;
    }

    .btmform .field-msg {
        width: 100% !important;
        padding: 0 !important;
    }
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {}

@media only screen and (min-width: 1445px) and (max-width: 1599px) {}

@media only screen and (min-width: 1366px) and (max-width: 1444px) {}

@media only screen and (min-width: 1024px) and (max-width: 1399px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .process .process-card {
        margin: 0 50px 41px 0;
        height: 260px;
        width: 90%;
    }

    .field-msg textarea {
        width: 100%;
        border: 2px solid #ec0d72;
    }

    .btmform input#free_cons_phone1 {
        width: 99%;
    }

    .demo .pic {
        background: transparent;
    }

    .btmform h2 {
        text-align: center;
    }

    body .home-bnnerwrp {}

    .home-bnnerwrp {
        padding: 182px 0 23px !important;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        padding: 0;
    }

    .testi-name.text-center.text-white {
        color: #d52087 !important;
    }

    .process .process-main-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .mainwpp span.about-us-nwpp {
        text-align: center;
    }

    h2.myh2.wow.fadeInDown:before,
    h3.myh2.wow.fadeInDown:before {
        top: -12px;
        right: 0;
        top: 0;
        left: 0;
        text-align: center;
        margin: 0 auto;
    }

    h2.myh2,
    h3.myh2 {
        padding: 20px 0;
    }

    p.myp2 {
        width: 100%;
        font-size: 15px;
    }

    .service-cetawrp img {
        width: 100% !important;
        margin: 39px auto 0;
        display: block;
    }

    .service-cetawrp h2 {
        text-align: center !important;
        font-size: 23px;
    }

    .testimonial .pic img {
        width: 19%;
        border-radius: 77px;
    }

    .mainwpp {
        padding: 0 66px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .process .process-card {
        margin: 0 50px 41px 0;
        height: 260px;
        width: 90%;
    }

    .home-bnnerwrp {
        padding: 182px 0 23px !important;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        padding: 0;
    }

    .process .process-main-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .mainwpp span.about-us-nwpp {
        text-align: center;
    }

    h2.myh2.wow.fadeInDown:before,
    h3.myh2.wow.fadeInDown:before {
        top: -12px;
    }

    h2.myh2,
    h3.myh2 {
        padding: 20px 0;
    }

    p.myp2 {
        width: 73%;
    }

    .service-cetawrp img {
        width: 72% !important;
        margin: 39px auto 0;
        display: block;
    }

    .service-cetawrp h2 {
        text-align: center !important;
    }

    .testimonial .pic img {
        width: 19%;
        border-radius: 77px;
    }
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    .process .process-card {
        margin: 0 50px 41px 0;
        height: 260px;
        width: 90%;
    }

    .home-bnnerwrp {
        padding: 182px 0 23px !important;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        padding: 0;
    }

    .process .process-main-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .mainwpp span.about-us-nwpp {
        text-align: center;
    }

    h2.myh2.wow.fadeInDown:before,
    h3.myh2.wow.fadeInDown:before {
        top: -12px;
    }

    h2.myh2,
    h3.myh2 {
        padding: 20px 0;
    }

    p.myp2 {
        width: 73%;
    }

    .service-cetawrp img {
        width: 72% !important;
        margin: 39px auto 0;
        display: block;
    }

    .service-cetawrp h2 {
        text-align: center !important;
    }

    .testimonial .pic img {
        width: 19%;
        border-radius: 77px;
    }

    .home-bnnerwrp .txtwrp p {
        font-size: 13px;
        line-height: 25px;
    }

    .home-bnnerwrp {}

    .order-form section.content.free-consult:before {
        background-size: 340px;
        height: 454px;
    }

    .top-head .container:before {
        width: 100%;
        background-color: #141e44;
        right: 0;
        clip-path: none;
    }

    .top-head {
        width: 100%;
        padding: 20px 0;
    }

    header .logowrp {
        margin: -16px 0;
    }
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    .process .process-card {
        margin: 0 50px 41px 0;
        height: 260px;
        width: 90%;
    }

    .home-bnnerwrp {}

    .home-bnnerwrp {
        padding: 182px 0 23px !important;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        padding: 0;
        font-size: 23px;
    }

    .process .process-main-card {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .mainwpp span.about-us-nwpp {
        text-align: center;
    }

    h2.myh2.wow.fadeInDown:before,
    h3.myh2.wow.fadeInDown:before {
        top: -12px;
    }

    h2.myh2,
    h3.myh2 {
        padding: 20px 0;
    }

    p.myp2 {
        width: 73%;
    }

    .service-cetawrp img {
        width: 72% !important;
        margin: 39px auto 0;
        display: block;
    }

    .service-cetawrp h2 {
        text-align: center !important;
    }

    .testimonial .pic img {
        width: 19%;
        border-radius: 77px;
    }

    .home-bnnerwrp .txtwrp p {
        font-size: 13px;
        line-height: 25px;
    }

    .order-form section.content.free-consult:before {
        background-size: 340px;
        height: 454px;
    }

    .top-head .container:before {
        width: 100%;
        background-color: #141e44;
        right: 0;
        clip-path: none;
    }

    .top-head {
        width: 100%;
        padding: 20px 0;
    }

    header .logowrp {
        margin: -16px 0;
    }

    @font-face {
        font-family: 'gothambold';
        src: url('fonts/gotham-bold-webfont.woff2') format('woff2'), url('fonts/gotham-bold-webfont.woff') format('woff');
        font-weight: normal;
        font-style: normal;
    }

    @font-face {
        font-family: 'gothamlight';
        src: url('fonts/gotham-light-webfont.woff2') format('woff2'), url('fonts/gotham-light-webfont.woff') format('woff');
        font-weight: normal;
        font-style: normal;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    b,
    strong,
    span {
        font-family: 'gothambold' !important;
    }

    p,
    a,
    div,
    input,
    ul,
    li {
        font-family: 'gothamlight' !important;
    }

    #jqcheck {
        background: #fff9d7;
        text-align: center;
        color: #333;
        padding: 10px 0px;
        font-size: 13px;
        font-weight: bold;
        position: fixed;
        z-index: 9991;
        width: 100%;
    }

    * {
        margin: 0px;
        padding: 0px;
        box-sizing: border-box;
    }

    /* 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: #ffffff;
        -webkit-border-radius: 0px;
        border-left: 1px solid #fff;
    }

    ::-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 {
        color: var(--default-color);
        font-size: var(--base-font-size);
        position: relative;
    }

    /* 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);
    }

    .profile_area {
        padding: 122px 0;
    }

    .profile_area h4 {
        color: rgb(20 30 68);
        padding: 0 0 20px;
        font-family: 'gothambold';
        font-size: 28px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        line-height: 40px;
    }

    .profile_area h4 span {
        display: block;
    }

    .pf_crd {
        margin: 11rem 0 0 0;
    }

    .profile_area .nav-pills {
        justify-content: center;
        margin: 61px 0;
    }

    .profile_area .nav-pills .nav-link {
        width: 164px;
        text-align: center;
        padding: 10px 0;
        font-size: 17px;
        font-weight: 600;
        font-family: 'gothamlight';
        color: #e90d71;
    }

    .profile_area .nav-pills .nav-link.active {
        background: #141e44;
        color: #fff;
    }

    .pf_crd .crd_1 {
        background: white;
        border-radius: 7px;
        position: relative;
        text-align: center;
        transition: all 0.4s ease-in-out;
        height: 398px;
        box-shadow: 0px 0px 9px #141e444a;
        cursor: pointer;
        margin: 7rem 0 0;
    }

    .pf_crd .crd_1:hover img {
        transform: rotate(360deg);
    }

    .pf_crd .crd_1:hover {
        transform: scale(1.1);
    }

    .pf_crd .crd_1 .img_area {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .pf_crd .crd_1 .img_area img {
        width: 163px;
        height: 164px;
        border-radius: 50%;
        border: 7px solid #ec0d72;
        transition: all 4s ease-in-out;
    }

    .pf_crd .crd_1 .txt_area {
        padding: 113px 21px 0;
    }

    .pf_crd .crd_1 h5 {
        margin: 0;
        font-size: 24px;
        line-height: 34px;
        color: #141e44;
    }

    .pf_crd .crd_1 p {
        font-size: 14px;
        padding: 25px 0;
    }

    .pf_crd .crd_1 a {
        background: #141e44;
        color: #fff;
        display: block;
        width: 45%;
        margin: 0 auto;
        padding: 11px 0;
        border-radius: 7px;
        font-size: 14px;
        font-family: 'gothamlight';
        font-weight: 800;
        transition: all 0.3s ease-in-out;
    }

    .pf_crd .crd_1 a:hover {
        background-color: #0031c6;
        color: #fff;
    }

    /* 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: 'gothamlight' !important;
        display: none;
        font-size: 13px;
        color: white;
        padding-left: 10px;
        display: none !important;
        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; font-family: 'gothambold'; }
    h1,h2, h3 {font-family: 'gothambold';  font-weight: 900;}
    h4, h5, h6, a, li{font-family: 'gothambold'; padding-bottom: 10px;font-family: 'gothambold';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;
    }

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

    .preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
    }

    .preloader .preloader-after,
    .preloader .preloader-before {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        height: 50%;
        background-image: linear-gradient(96deg, #6254e7 0%, #9289f1 100%);
    }

    .preloader .preloader-before {
        top: 0;
    }

    .preloader .preloader-after {
        bottom: 0;
    }

    .preloader .preloader-block {
        position: absolute;
        top: 0;
        left: 0;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 100%;
    }

    .preloader .preloader-block .title {
        position: absolute;
        left: 0;
        bottom: calc(50% + 16px);
        width: 100%;
        text-align: center;
        z-index: 2;
        font-size: 25px;
        text-transform: uppercase;
        letter-spacing: 8px;
        color: #fff;
    }

    .preloader .preloader-block .percent {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0);
        font-weight: 700;
        letter-spacing: 8px;
        font-size: 24vw;
        color: rgba(255, 255, 255, .14);
        z-index: 1;
    }

    .preloader .preloader-block .loading {
        position: absolute;
        top: calc(50% + 16px);
        left: 0;
        width: 100%;
        text-align: center;
        z-index: 2;
        font-size: 14px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 8px;
        color: #fff;
        -webkit-animation: blink-animation 2.2s linear infinite;
    }

    .preloader .preloader-bar {
        position: absolute;
        z-index: 2;
        top: calc(50% - 1px);
        right: 0;
        width: 100%;
        height: 2px;
        background: rgba(255, 255, 255, .14);
    }

    .preloader .preloader-bar .preloader-progress {
        position: absolute;
        top: 0;
        left: 0;
        right: auto;
        bottom: auto;
        height: 100%;
        width: 0;
        background: #fff;
    }

    @-webkit-keyframes blink-animation {
        0% {
            opacity: 0
        }
    }

    @-moz-keyframes blink-animation {
        0% {
            opacity: 0
        }
    }

    @keyframes blink-animation {
        0% {
            opacity: 0
        }
    }

    .preloader.hidden-main {
        opacity: 0;
        visibility: hidden
    }

    .preloader .preloader-after,
    .preloader .preloader-before {
        transition: .6s ease-in-out
    }

    .hidden .preloader-after {
        transform: translate(0, 100%)
    }

    .hidden .preloader-before {
        transform: translate(0, -100%)
    }

    .loader-width .preloader-progress {
        width: 100% !important
    }

    .preloader .preloader-bar .preloader-progress {
        transition: width 3.2s;
        transition-timing-function: cubic-bezier(.1, .5, 1.3, .1)
    }

    .bubbles_wrap {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        overflow: hidden;
        pointer-events: none
    }

    @-webkit-keyframes animateBubble {
        0% {
            margin-top: 20%
        }

        to {
            margin-top: -30%
        }
    }

    @-moz-keyframes animateBubble {
        0% {
            margin-top: 20%
        }

        to {
            margin-top: -30%
        }
    }

    @keyframes animateBubble {
        0% {
            margin-top: 20%
        }

        to {
            margin-top: -30%
        }
    }

    @-webkit-keyframes sideWays {
        0% {
            margin-left: 0
        }

        to {
            margin-left: 25px
        }
    }

    @-moz-keyframes sideWays {
        0% {
            margin-left: 0
        }

        to {
            margin-left: 25px
        }
    }

    @keyframes sideWays {
        0% {
            margin-left: 0
        }

        to {
            margin-left: 25px
        }
    }

    .x1 {
        -webkit-animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
        animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
        left: 6%;
        top: 45%;
        background: #ffb739
    }

    .x2 {
        -webkit-animation: animateBubble 10s linear infinite, sideWays 4s ease-in-out infinite alternate;
        animation: animateBubble 10s linear infinite, sideWays 4s ease-in-out infinite alternate;
        left: 5%;
        top: 80%;
        background: #fc4fdd
    }

    .x3 {
        -webkit-animation: animateBubble 18s linear infinite, sideWays 2s ease-in-out infinite alternate;
        animation: animateBubble 18s linear infinite, sideWays 2s ease-in-out infinite alternate;
        left: 10%;
        top: 40%;
        background: #5ed5cb
    }

    .x4 {
        -webkit-animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
        animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
        left: 20%;
        top: 0;
        background: #3de4a3
    }

    .x5 {
        -webkit-animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
        animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
        left: 30%;
        top: 50%;
        background: #fc4fb1
    }

    .x6 {
        -webkit-animation: animateBubble 11s linear infinite, sideWays 2s ease-in-out infinite alternate;
        animation: animateBubble 11s linear infinite, sideWays 2s ease-in-out infinite alternate;
        left: 50%;
        top: 0;
        background: #2c4aff
    }

    .x7 {
        -webkit-animation: animateBubble 10s linear infinite, sideWays 2s ease-in-out infinite alternate;
        animation: animateBubble 10s linear infinite, sideWays 2s ease-in-out infinite alternate;
        left: 65%;
        top: 70%;
        background: #ffb739
    }

    .x8 {
        -webkit-animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
        animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
        left: 80%;
        top: 10%;
        background: #8f3de4
    }

    .x9 {
        -webkit-animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
        animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
        left: 90%;
        top: 50%;
        background: #fff339
    }

    .x10 {
        -webkit-animation: animateBubble 16s linear infinite, sideWays 2s ease-in-out infinite alternate;
        animation: animateBubble 16s linear infinite, sideWays 2s ease-in-out infinite alternate;
        left: 80%;
        top: 80%;
        background: #fc4f4f
    }

    .bubble {
        border-radius: 50%;
        box-shadow: none;
        height: 5px;
        position: absolute;
        width: 5px
    }

    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;
        font-family: 'gothambold';
    }

    .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: 'gothamlight' !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);
    }

    .btn-main {
        padding: 15px 40px;
        border-radius: 35px;
        color: #080808;
        font-weight: 500;
        font-size: 16px;
        background: white;
    }

    .btn-main:hover {
        /* background: transparent;
        border: 2px solid white;
        color: white; */
        background: transparent;
        border: 2px solid #008cfa;
        color: #008cfa;
    }

    .btn-secnd {
        padding: 15px 40px;
        /* border-radius: 62px; */
        color: #ec0d72;
        font-weight: 500;
        font-size: 16px;
        border: 1px solid #ec0d72;
        margin: 0 0 0 15px;
    }

    .btn-secnd:hover {
        padding: 15px 40px;
        padding: 15px 40px;
        border-radius: 35px;
        color: #fff !important;
        font-weight: 500;
        background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    }

    .btnwrp {
        padding: 30px 0 85px 0;
        position: relative;
        z-index: 1;
    }

    h2.main-heading {
        color: #000;
        padding: 0 0 20px;
        font-family: 'gothambold';
        font-size: 45px;
        font-weight: 700;
    }

    p.main-pera {
        color: #3a3a3a;
        font-size: 18px;
        font-weight: 500;
    }

    /* header 
    ------------------------------------*/

    .header-main.showmenu ul.dropdown-content li a {
        color: #000 !important;
    }

    ul.dropdown-content li a {}

    .header-main.showmenu {
        background-color: #fff;
        box-shadow: -1px -2px 15px -3px rgb(0 0 0 / 41%);
    }

    header {
        /* padding: 0px 0 20px; */
        position: fixed;
        width: 100%;
        z-index: 99;
    }

    header .logowrp {
        margin: 12px 0;
    }

    header .logowrp img {
        /* position: absolute;
        left: -400px;
        top: -46px;
        height: 123px;
        z-index: 26; */
        width: 100%;
    }

    header .navwrp {
        /* background: white; */
        border-radius: 10px;
        margin: 0px 10px 0px 5px;
        float: left;
    }

    header .navwrp ul {
        margin: 15px 0 0;
        text-align: right;
    }

    header .navwrp ul li {
        display: inline-block;
        margin: 16px 10px;
        margin-bottom: -17px;
    }

    header .navwrp ul li a {
        color: rgb(0 0 0);
        font-size: 15px;
        font-weight: 500;
        transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
        position: relative;
        margin-left: 10px;
    }

    header .navwrp ul li a:hover {
        color: #008CFA;
    }

    header .navwrp ul li a.btnwrp {
        padding: 17px 25px;
        border-radius: 2px;
        color: #ffffff !important;
        font-weight: 500;
        background-color: #ec0d72;
        /* background: #141e44; */
        /* border: 2px solid #ec0d72; */
        text-transform: uppercase;
        font-family: 'gothambold' !important;
        font-size: 16px;
        /* margin-left: 7px !important; */
        border-radius: 4px;
    }

    .service-bg header .logo-clr {
        display: none;
    }

    .service-bg header .logo-bkl {
        display: block;
    }

    .service-bg header.showmenu .logowrp img.logo-clr {
        display: none;
    }

    .service-bg header.showmenu .logowrp img.logo-bkl {
        display: block;
    }

    .hompg header .logowrp img.logo-bkl {
        display: block;
    }

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

    .service-bg header .navwrp ul li a:hover {
        color: #0850b9;
    }

    .home-bnnerwrp .txtwrp {
        z-index: 1;
        position: relative;
    }

    .home-bnnerwrp {
        position: relative;
    }

    .home-bnnerwrp video {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        object-fit: cover;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h4 {
        color: #ffffff;
        font-size: 19px;
        font-weight: 100 !important;
        margin-top: 63px;
        font-family: 'gothamlight' !important;
    }

    h4.wow.fadeInDown:before {
        content: "";
        background-color: #ec0d72;
        width: 100px;
        height: 4px;
        position: absolute;
        top: -20px;
    }



    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        font-size: 60px;
        color: #ffffff;
        font-weight: 700;
        font-weight: 700;
        line-height: 80px;
        padding: 20px 0 23px;
        /* -webkit-background-clip: text; */
        /* -webkit-text-fill-color: transparent; */
        /* background-image: linear-gradient(to right top, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff); */
    }

    .home-bnnerwrp .txtwrp p {
        font-size: 18px;
        color: #ffffff;
        font-weight: 500;
        line-height: 32px;
    }

    .home-bnnerwrp .txtwrp ul {}

    .home-bnnerwrp .txtwrp ul li {
        display: inline-block;
        margin: 0 13px;
    }

    .home-bnnerwrp .txtwrp ul li img {}

    .home-bnnerwrp .imgwrp {
        position: relative;
    }

    .home-bnnerwrp .imgwrp img {
        width: 100%;
        position: absolute;
        left: 157px;
        top: -22px;
    }

    .btn-img {}

    .col-lg-12.row.mb {
        margin-bottom: 15px;
    }

    section.service-featured .col11 h1 {
        font-size: 20px !important;
        padding: 12px 0 6px;
    }

    body .col11:hover {
        background-image: linear-gradient(to right top, #000000, #000000, #000000, #000000, #000000);
        cursor: pointer;
    }

    .col11 {
        background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
        color: white;
        border-radius: 20px;
        width: 370px;
        height: 323px;
        padding: 37px 20px 10px 30px;
        z-index: 9;
    }

    div#second-box {
        position: relative;
        margin: 0px auto;
    }

    div#second-box img {
        position: absolute;
        left: -15%;
        right: 0;
        margin: 0px auto;
        top: -180px;
        z-index: 0;
    }

    div#first-box {
        position: relative;
        left: -90px;
    }

    div#third-box {
        position: relative;
        right: -90px;
    }

    .col12 {
        background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
        color: white;
        border-radius: 20px;
        width: 370px;
        height: 323px;
        padding: 37px 30px;
    }

    .box-p {
        color: white;
        width: 100% !important;
    }

    .myimg {
        position: relative;
        /* left: -168px; */
        right: -176px;
        top: -98px;
    }

    .check-clr {
        color: #008CFA;
    }

    .myimg1 {
        border: 0px;
        outline: none;
        width: 129%;
    }

    h2.myh2,
    h3.myh2 {
        font-size: 45px;
        font-weight: 700;
        text-transform: uppercase;
        font-family: 'gothambold' !important;
        color: #141e44;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    p.myp2 {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #000000;
    }

    .myli {
        line-height: 34px;
    }

    .mainwp {
        position: relative;
        left: 116px;
    }

    .btn-main {
        padding: 15px 40px;
        border-radius: 0 !important;
        color: #000000;
        font-weight: 800;
        font-size: 17px;
        background: #ffffff;
        /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
        margin-right: 19px;
        font-family: 'gothambold' !important;
        text-transform: uppercase;
    }

    .header-main.showmenu {
        background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
        display: none !important;
    }

    .header-main.showmenu .navwrp ul li a {
        color: #020202;
    }

    .hompg .header-main.showmenu .logo-clr {
        display: none;
    }

    .hompg .header-main.showmenu .logo-bkl {
        display: block;
    }

    .header-main.showmenu .navwrp ul li a.btnwrp {
        background-image: unset;
        background-color: #000;
        color: #fff !important;
    }

    header .txtdiv {}

    header .txtdiv h6 {
        color: #000;
        font-size: 18px;
    }

    header .txtdiv span {
        color: #0853bd;
    }

    header .navtop {
        margin: 0 0 0px;
    }

    header .navtop ul {
        margin: 0;
        text-align: right;
        padding: 6px 0;
    }

    header .navtop ul li {
        display: inline-block;
        margin: 0 15px;
        padding: 0;
    }

    header .navtop ul li a {
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
        position: relative;
        padding: 0;
    }

    .top-head {
        /* background: #f3f5f7; */
        /* border-bottom: 1px solid #cbd6e2; */
        padding: 1px 0 0px;
        margin: 19px 0 10px;
    }

    header .navtop ul li a.blink:after {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        background-color: #ec0d72;
        right: -13px;
        top: 8px;
        border-radius: 50%;
    }

    header .navtop ul li a.blink:before {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        background-color: #ec0d72;
        left: -13px;
        top: 8px;
        border-radius: 50%;
    }

    header .navtop ul li a i {
        color: #083da2;
    }

    .navwrp ul li a.btnwrp {
        position: absolute;
        right: -15% !important;
        top: 18px !important;
        padding: 9px 30px !important;
    }

    header .navwrp ul li a {
        margin: 0 2px 34px 10px !important;
        font-weight: 500;
        font-size: 16px;
    }

    .navwrp ul {
        margin: 16px 0px !important;
        padding: 5px 0;
    }

    header.header-main {
        height: 140px !important;
        border-bottom: 1px solid #ffffff63;
        background: white;
    }

    section.clientswrp .txtwrp {
        z-index: 9999;
    }

    .clientswrp {
        padding: 61px 0 0px !important;
        text-align: center;
        display: block;
        /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
        width: 100%;
        margin: 0 0;
        position: relative;
        /* top: -120px; */
        height: 55vh;
        background: radial-gradient(102% 75% at bottom, transparent 52%, #f8f8f8 51%);
        z-index: -1;
        background-position: 40% 0px !important;
    }
}

.clientswrp .txtwrp {}

.clientswrp .txtwrp h4 {
    color: #141e44;
    font-size: 29px;
    font-weight: 700;
    z-index: 9999;
}

.clientswrp .txtwrp h4 span {}

.clientswrp .txtwrp h4 span i {
    color: #ff9406;
}

.clientswrp .txtwrp ul {
    margin: 20px 0 0;
}

.clientswrp .txtwrp ul li {}

.clientswrp .txtwrp ul li img {}

.imgwrp {
    POSITION: relative;
    left: -153px;
}

.service-cetawrp {
    padding: 0 0 27px;
}

.dual {
    color: #ec0d72;
}

.smh {
    color: #000;
    /* padding: 0 0 0px; */

    font-family: 'gothamlight';
    font-size: 20px;
    letter-spacing: 6px;
}

.service-cetawrp .txtwrp {
    display: block;
    /* padding: 0 0 20px;  */
}

.service-cetawrp .txtwrp h2 {
    color: #008CFA;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    /* margin: 0 0 0 30px; */

    font-weight: 700;
}

/* .service-cetawrp .txtwrp h2:after{content: "";position: absolute;width: 100px;height: 2px;background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);bottom: 0;left: 0;} */
.service-cetawrp ul.tabbing-links {}

.service-cetawrp ul.tabbing-links li {
    font-size: 34px;
    color: #8a8484;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
}

.service-cetawrp ul.tabbing-links li.current {
    transform: scale(1.1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
}

.service-cetawrp ul.tabbing-links li:hover {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    transform: scale(1.1);
}

.service-cetawrp .ser-port {}

.service-cetawrp .ser-port li {}

.service-cetawrp .ser-port li .imgwrp {}

.service-cetawrp .ser-port li .imgwrp img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-cetawrp .ser-port li .mainwrp {
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    padding: 60px 40px;
    height: 400px;
}

.service-cetawrp .ser-port li .mainwrp h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    padding: 0 0 5px;
}

.service-cetawrp .ser-port li .mainwrp span {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.service-cetawrp .ser-port li .mainwrp p {
    color: #fff;
    font-size: 18px;
    padding: 20px 0 0;
}

.service-cetawrp .ser-port li .mainwrp .btn-main {
    background-image: unset;
    padding: 15px 25px;
}

.service-cetawrp .ser-port li .mainwrp .btn-secnd {
    color: #fff;
    font-weight: 500;
    padding: 15px 25px;
}

.ctawrp {
    padding: 50px 0;
    text-align: center;
    display: block;
}

.ctawrp .mainwrp {
    background-size: cover;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
    background-image: url(../images/cta-main-bg.html);
    width: 88%;
    margin: 0 auto;
    height: auto;
    text-align: center;
    border-radius: 26px;
    padding: 40px 0 60px;
    background-repeat: no-repeat;
}

.ctawrp .mainwrp .txtwrp {}

.ctawrp .mainwrp .txtwrp h2 {
    color: #fff;
    width: 80%;
    margin: 0 auto;
    font-size: 48px;
}

.ctawrp .mainwrp .txtwrp p {
    color: #fff;
}

.ctawrp .mainwrp .btnwrp .btn-main {
    background-color: #fff;
    background-image: unset;
    color: #000;
}

.ctawrp .mainwrp .btnwrp .btn-secnd {
    color: #fff;
}

.ctawrp:hover .mainwrp {
    transform: scale(1.1);
}

.ctawrp .mainwrp .btnwrp {}

.portfoliowrp {
    padding: 40px 0 70px;
}

.portfoliowrp .navwrp {
    text-align: center;
    margin: 0 auto;
}

.portfoliowrp .navwrp .tabbing-links {
    text-align: center;
    margin: 0 0 30px;
    border-radius: 25px;
    margin: 20px auto 40px;
    width: auto;
    background-color: #f3f0f0;
    padding: 2px 2px;
    display: inline-block;
}

.portfoliowrp .navwrp .tabbing-links li {
    display: inline-block;
    color: #000;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    /* background: #f3f3f3; */
}

.portfoliowrp .navwrp .tabbing-links li.current {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    padding: 10px 40px;
    background: #008cfa;
    border: none;
    vertical-align: bottom;
}

.portfoliowrp .imgport {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.portfoliowrp .imgport li {
    display: inline-block;
    width: 32%;
    margin: 0 5px 15px;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
}

.portfoliowrp .imgport li:hover {
    transform: scale(1.1);
}

.portfoliowrp .imgport li img {
    width: 100%;
    border-radius: 10px;
}

.portfoliowrp .imgport li figure {
    margin: 0px;
}

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

.portfoliowrp .tabs {
    display: none;
}

.portfoliowrp .tabs.current {
    display: block;
}

.pakcgewrp {
    padding: 60px 0;
    background-image: url(../images/packages-bg.html);
    background-repeat: no-repeat;
    background-size: cover;
}

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

.pakcgewrp .txtwrp p {
    color: rgb(0, 0, 0);
    text-align: left;
}

.pakcgewrp .txtwrp h2 {
    color: rgb(0, 0, 0);
    text-align: left;
    font-size: 45px;
    font-family: 'gothamlight';
    font-weight: 700;
}

.pakcgewrp .navwrp {
    text-align: center;
    display: block;
}

.pakcgewrp .navwrp ul.tabbing-links {
    text-align: center;
    margin: 0 0 60px;
    width: auto;
    background-color: #f3f0f0;
    padding: 2px 2px;
    margin: 20px auto 50px;
    border-radius: 25px;
    display: inline-block;
}

.pakcgewrp .navwrp ul.tabbing-links li {
    border-bottom: 1px solid;
    padding: 10px 40px;
    border-radius: 20px;
    color: #000;
    vertical-align: bottom;
    font-weight: 500;
    display: inline-block;
    border: 1px solid;
    cursor: pointer;
    margin: 0 2px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.pakcgewrp .navwrp ul.tabbing-links li.current {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    padding: 10px 40px;
    background: #008cfa;
    border: none;
    vertical-align: bottom;
}

.pakcgewrp .navwrp .pkgeport {
    text-align: center;
}

.pakcgewrp .navwrp .pkgeport li {
    transition: all 200ms ease-in;
    display: inline-block;
    width: 30%;
    border: 2px solid #fff;
    border-radius: 13px;
    padding: 30px 10px;
    margin: 0 10px 50px;
    background: #008cfa;
    /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
}

.pakcgewrp .navwrp .pkgeport li.best-slr {
    position: relative;
    overflow: hidden;
    vertical-align: bottom;
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .btnwrp a.chat-btn {
    color: #000;
}

.pakcgewrp .navwrp2 ul.tabbing-links {}

.pakcgewrp .navwrp2 ul.tabbing-links li {
    width: auto;
}

.pakcgewrp .navwrp2 ul.tabbing-links li.current {}

.pakcgewrp .navwrp2 ul.tabbing-links li:hover {
    box-shadow: 0px 0px 20px 1px #353434a3;
     z-index: 2;
    -webkit-transition: unset;
    -webkit-transform: unset;
    -ms-transition: unset;
    -ms-transform: unset;
    -moz-transition: unset;
    -moz-transform: unset;
    transition: unset;
    transform: unset;
    background-color: unset;
    box-shadow: unset;
}

.pakcgewrp .navwrp2 ul.tabbing-links li.current:hover {
    background-color: #fff;
    color: #000;
}

.pakcgewrp .navwrp .pkgeport li.best-slr:after {
    content: "";
    content: "BEST SELLER";
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    vertical-align: middle;
    padding: 7px 10px;
    text-indent: -15px;
    display: block;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    height: 35px;
    width: 180px;
    background-color: #0457c2;
    position: absolute;
    border: 2px solid #ffffff;
    box-shadow: 2px 1px 7px -1px #ffffff;
    right: -62px;
    top: 23px;
}

.pakcgewrp .navwrp .pkgeport li:hover {
    /* box-shadow: 0px 0px 20px 1px #353434a3; */

    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);
    background-color: #008cfa;
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .namwrp h2 {
    color: rgb(255, 255, 255);
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .namwrp span {
    color: #cacaca;
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .pricewrp h1 {
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */

    color: #fff;
    transform: scale(1.1);
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .pricewrp h4 {
    color: #000;
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .pricewrp h4 span {
    color: #fff;
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .detailwrp ul li {
    color: #000;
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .btnwrp p {
    color: #000;
    color: #b9b9b9;
}

.pakcgewrp .navwrp .pkgeport li:hover .mainpkge .btnwrp a {
    border: 1px solid #000;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge {
    /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */

    background: #008cfa;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .namwrp {
    text-align: left;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .namwrp h2 {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0 10px;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .namwrp span {
    font-size: 16px;
    color: #cacaca;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .pricewrp {}

.pakcgewrp .navwrp .pkgeport li .mainpkge .pricewrp h1 {
    font-weight: 700;
    font-size: 27px;
    color: #fff;
    display: inline-block;
    margin-right: -21px;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .pricewrp h1:hover {
    font-weight: 700;
    font-size: 27px;
    color: #fff;
    display: inline-block;
    margin-right: -21px;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .pricewrp h4 {
    font-size: 22px;
    display: inline-block;
    color: #fff;
    margin: 0 0 0 20px;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .pricewrp h4 span {
    display: block;
    text-decoration: line-through;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .detailwrp {
    margin: 0 33px 0 -10px;
    background: white;
    /* border-bottom-right-radius: 9px; */
    /* border-top-right-radius: 9px; */

    border-radius: 9px;
    position: relative;
    height: 26em;
    right: 5px;
    box-shadow: 0 0 20px 0px #0000001c;
    width: 241px;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .detailwrp ul {
    text-align: left;
    height: 350px;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .detailwrp ul li {
    border: none;
    display: block;
    width: auto;
    padding: 35px;
    position: relative;
    color: #fff;
    font-size: 15px;
    padding: 0 0 2px;
    margin: 0 0 0 20px;
    color: black;
    background: #fff;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .detailwrp ul li:hover {
    transform: unset;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .detailwrp ul li:after {
    content: "\f00c";
    position: absolute;
    font-family: 'FontAwesome';
    left: -20px;
    top: 0;
    color: #0bad00;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .btnwrp {}

.pakcgewrp .navwrp .pkgeport li .mainpkge .btnwrp a {
    padding: 11px 20px;
    border-radius: 20px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    position: relative;
    top: 41px;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .btnwrp p {
    font-size: 14px;
    color: #fff;
    color: #b9b9b9;
    padding: 20px 0 0;
}

.pakcgewrp .btnwrp .btn-main {
    color: #000;
    background-color: #fff;
    background-image: unset;
}

.pakcgewrp .btnwrp .btn-secnd {
    color: #fff;
}

ul.tabs.pkgeport {
    display: none;
}

ul.tabs.pkgeport.current {
    display: block;
}

.pakcgewrp .navwrp .pkgeport li .mainpkge .btnwrp a.chat-btn {
    margin: 0 0 0 10px;
    background-color: unset;
    color: #fff;
    border: 1px solid;
}

.conbowrp {
    padding: 60px 0;
}

.conbowrp .mainpkge {
    display: block;
    background-image: url(../images/combo-bg.html);
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 50px 30px 20px;
    border-radius: 40px;
    box-shadow: 0px 6px 21px 11px rgb(0 0 0 / 8%);
    background-repeat: no-repeat;
    background-size: cover;
}

.conbowrp .mainpkge:before {
    content: "";
    position: absolute;
    background-color: #ffffffd9;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 40px;
}

.conbowrp .pkgehead {
    text-align: center;
    background-image: url(../images/pkge-head.html);
    background-repeat: no-repeat;
    background-size: cover;
    width: 66%;
    margin: 0 auto -20px;
    position: relative;
    z-index: 1;
}

.about_img img {
    width: 95%;
    border-radius: 9px;
    position: relative;
    /* box-shadow: -17px -16px 0px #6750d2e3; */
}

.conbowrp .pkgehead h2 {
    color: #fff;
    padding: 15px 0 0;
}

.conbowrp .pkgehead p {
    color: #fff;
}

.conbowrp .mainpkge .navwrp {}

.conbowrp .mainpkge .navwrp h4 {
    font-size: 20px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    transform: scale(1.1);
    margin: 12px 0 0 14px;
}

.conbowrp .mainpkge .navwrp ul {
    margin: 0 0 0 30px;
}

.conbowrp .mainpkge .navwrp ul li {
    font-size: 14px;
    color: #a09c9ce3;
    font-weight: 300;
    padding: 0 0 3px;
}

.conbowrp .mainpkge .btnwrp {
    padding: 28px 0 0;
}

.conbowrp .mainpkge .btnwrp .btn-main {
    display: block;
    margin: 0 0 13px;
    text-align: center;
    width: 80%;
    padding: 10px 0;
    padding: 15px 40px;
}

.conbowrp .mainpkge .btnwrp .btn-secnd {
    display: block;
    margin: 0;
    text-align: center;
    width: 80%;
    padding: 15px 40px;
}

.conbowrp .mainpkge .imgwrp {
    position: relative;
}

.conbowrp .mainpkge .imgwrp img {
    width: 130%;
    position: absolute;
    top: 140px;
    left: -80px;
}

.testiwrp {
    padding: 100px 0 100px;
    background-image: url(../images/testimonial-bg.html);
    background-size: cover;
    background-repeat: no-repeat;
    height: 47em;
}

.testiwrp .imgwrp {
    display: block;
    text-align: center;
    position: relative;
    left: 94px;
    top: 44px;
}

.testiwrp .imgwrp img {
    width: 50%;
    border-radius: 50%;
    border: 2px solid #fff;
    position: relative;
    margin: 0 auto;
}

.testiwrp .txtwrp {}

.testiwrp .txtwrp h4 {
    font-size: 22px;
    color: #fff;
    text-transform: capitalize;
}

.testiwrp .txtwrp h2 {
    color: #fff;
    font-size: 56px;
    text-transform: capitalize;
}

.testiwrp .txtwrp p {
    color: #fff;
    padding: 0 0 7px;
}

.testiwrp .txtwrp h5 {
    font-size: 24px;
    color: #fff;
    padding: 10px 0 0;
}

.testiwrp .txtwrp span {
    font-size: 18px;
    color: #fff;
}

.testiwrp .txtwrp span {}

.testiwrp .txtwrp span i {
    color: #ffe10b;
    font-size: 15px;
}

.testiwrp .img-anii {}

.testiwrp .img-anii img {
    width: 30% !important;
    position: absolute;
    right: 300px !important;
    margin: -80px auto 0;
    -webkit-animation: tesiMove linear infinite 5s;
    -moz-animation: tesiMove linear infinite 5s;
    -o-animation: tesiMove linear infinite 5s;
    animation: tesiMove linear infinite 4s;
}

@keyframes tesiMove {
    0% {
        transform: rotate(0)
    }

    15% {
        transform: rotate(2deg)
    }

    33% {
        transform: rotate(4deg)
    }

    66% {
        transform: rotate(2deg)
    }

    100% {
        transform: rotate(0)
    }
}

.logo-clntwerp {
    background-image: url(../images/client-icon-bg.html);
    background-size: cover;
    background-repeat: no-repeat;
}

.logo-clntwerp .txtwrp {
    padding: 60px 0;
    height: 40em !important;
    text-align: center;
}

.logo-clntwerp ul {
    margin: 30px 0 0;
}

.logo-clntwerp ul li {}

.logo-clntwerp ul li img {
    width: 40%;
    transition: all 200ms ease-in;
}

.logo-clntwerp ul li img:hover {
    filter: unset;
}

.cta-sndwrp {
    display: block;
    text-align: center;
    padding: 60px 0 70px;
    background-image: url(../images/banner1.html);
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-sndwrp .txtwrp {}

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

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

.cta-sndwrp .btnwrp {}

.cta-sndwrp .btnwrp .btn-main {
    color: #fff;
    border: 1px solid #fff;
}

.cta-sndwrp .btnwrp .btn-secnd {
    margin: 0 20px;
    background-color: #fff;
    border: none;
}

.btm-form {
    padding: 70px 0;
    background-image: url(../images/form-bg.html);
    background-repeat: no-repeat;
    background-size: cover;
}

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

.btm-form .txtwrp p span {
    color: #07379b;
    font-weight: bold;
}

.btm-form .formwrp {
    width: 70%;
    margin: 30px auto 0;
}

.btm-form .formwrp form {}

.btm-form .formwrp form .lable {}

.btm-form .formwrp form .lable input {
    width: 100%;
    height: 50px;
    border-radius: 20px;
    border: 1px solid #818181;
    margin: 0 0 20px 0;
    padding: 0 0 0 15px;
    outline: none;
}

.btm-form .formwrp form .lable textarea {
    width: 100%;
    height: 170px;
    border-radius: 20px;
    border: 1px solid #818181;
    outline: none;
    resize: none;
    padding: 20px 0 0 20px;
}

.btm-form .formwrp form .lable select {
    width: 100%;
    height: 50px;
    border-radius: 20px;
    border: 1px solid #818181;
    margin: 0 0 20px 0;
    padding: 0 0 0 15px;
    outline: none;
}

.btm-form .formwrp form .lable input.btnmain {
    color: #fff;
    font-weight: 600;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    width: 50%;
    margin: 20px auto 0;
    text-align: center;
    display: block;
    border: none;
}

.btn-main:hover {
    background: transparent;
    border: 2px solid #ec0d72;
    color: #ec0d72 !important;
}

footer {
    padding: 160px 0 50px;
    /* background-image: url(../imgs/footer-bg.webp); */

    background-repeat: no-repeat;
    background-size: cover;
    background: #141e44;
}

footer .logowrp {}

footer .logowrp a img {
    width: 65%;
    margin: 12px 0 0;
    /* background: #fff; */
    border-radius: 4px;
    padding: 0 20px;
}

footer .logowrp p {
    padding: 22px 0 30px;
    font-size: 16px;
    color: #fff;
}

footer .logowrp ul {
    margin: 0 0 0 10px;
}

footer .logowrp ul li {
    display: inline-block;
    margin: 0 0px;
    width: 19%;
    transition: all 0.3s ease;
}

footer .logowrp ul li a i {
    height: 35px;
    width: 35px;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px 0 0px 11px;
    box-sizing: border-box;
    transition: 2s all;
}

footer .logowrp ul li a i:hover {
    color: #063395;
}

footer .fotrnav {
    margin: 30px 0 0;
}

footer .fotrnav h4 {
    color: #ec0d72;
    font-size: 18px;
    font-weight: 800;
}

footer .fotrnav ul {
    margin: 20px 0 0;
}

footer .fotrnav ul li {
    display: block;
    padding: 0 0 5px;
}

footer .fotrnav ul li i {
    margin: 0 10px 0 0;
    color: #ec0d72;
}

footer .fotrnav ul li a {
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

footer .fotrnav ul li a:hover {
    color: #e4a12a;
}

footer .fotrnav ul li a img {
    margin: 10px 0 0;
}

footer .fotr-btm {
    margin: 30px 0 0;
}

footer .fotr-btm p {
    color: #fff;
    text-align: left;
    font-size: 14px;
    padding: 0px 0 0;
}

footer .fotr-btm ul {
    margin: 0;
    text-align: right;
}

footer .fotr-btm ul li {
    display: inline-block;
    padding: 0;
    margin: 0 10px 0;
}

footer .fotr-btm ul li a {
    color: #fff;
}

.col-md-12.linewrp {
    background-color: #ec0d72;
}

.secnd-fold {
    padding: 0px 0 40px;
    margin: -90px 0 0 0;
}

.secnd-fold .col-md-6.my-auto {
    text-align: left;
}

.secnd-fold .imgwrp {}

.secnd-fold .imgwrp img {
    width: 120%;
}

.secnd-fold.margnwrp {
    margin: 0;
}

.servicewrp {
    position: relative;
    z-index: 1;
    padding: 220px 0 250px;
}

.servicewrp.lppadd {
    padding: 150px 0 250px;
}

.servicewrp:after {
    content: "";
    position: absolute;
    background-color: #0000000f;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}

.servicewrp .txtwrp h4 {
    color: #fff;
}

.servicewrp .txtwrp h1 {
    color: #fff;
}

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

.servicewrp .btn-secnd {
    color: #fff;
}

.mybanform {
    z-index: 10;
    position: relative;
    padding: 50px 0 0 0;
    text-align: center;
}

.mybanform form {
    position: relative;
    display: inline-block;
}

.mybanform form .wrap {
    font-size: 0;
    width: 100%;
    border-radius: 10px;
    display: block;
    position: relative;
    height: 70px;
}

.mybanform form .wrap .dtf {
    display: inline-block;
    vertical-align: top;
    width: 27%;
}

.round {
    border-radius: 10px 0 0 10px;
}

.mybanform form .wrap .dtf.posrelative {
    width: 17%;
}

.mybanform form .wrap .dtf input[type="text"],
.mybanform form .wrap .dtf input[type="email"],
.mybanform form .wrap .dtf input[type="number"] {
    background: #fff;
    border: 0;
    font-size: 14px;
    height: 70px;
    width: 100%;
    padding: 20px;
    border-right: 1px solid #e8e9eb;
    color: #000;
    outline: none;
}

.mybanform form .wrap .dtf input[type="submit"] {
    font-size: 16px;
    border: 0;
    color: #fff;
    height: 70px !important;
    padding: 20px 48px;
    height: 80px;
    cursor: pointer;
    border-radius: 0 10px 10px 0;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
}

.contact-us-cta__logo-container:after {
    content: "Confidential Engagements";
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

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

.service-bg header .navwrp ul li a {
    color: #fff;
}

.service-bg header.showmenu .navwrp ul li a {
    color: #000;
}

.service-bg header.showmenu .navwrp ul li a.btnwrp {
    color: #fff;
}

.our-ser-bnnr {
    padding: 260px 0 140px;
    background-repeat: no-repeat;
    background-size: cover;
    text-transform: capitalize;
}

.our-ser-bnnr h2 {
    color: #fff;
    padding: 0 0 20px;
}

.our-ser-bnnr p {
    color: #fff;
}

.our-ser-bnnr .txtwrp {}

.our-ser-bnnr .txtwrp ul {
    margin: 0;
}

.our-ser-bnnr .txtwrp ul li {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    width: 35%;
    position: relative;
    padding: 0 0 7px 20px;
}

.our-ser-bnnr .txtwrp ul li:after {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
}

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

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

.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: 12px;
    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: #ffdd65;
    font-size: 16px;
}

.our-testi .mainwrp .imawrp {
    display: inline-block;
    width: 50%;
    float: right;
}

.our-testi .mainwrp .imawrp img {
    width: 50%;
    border-radius: 50%;
    float: right;
}

.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);
}

.whatsapp {
    width: 50px;
    height: 51px;
    color: #fff;
    display: block;
    text-align: center;
    border-radius: 100%;
    font-size: 34px;
    position: fixed;
    bottom: 8%;
    left: 20px;
    z-index: 9999;
    box-shadow: 4px 5px 14px 0px rgb(37 0 22 / 27%);
    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);
}

.whatsapp:hover {
    color: #fff;
}

.whatsapp:focus {
    color: #fff;
}

.whatsapp i {}

@keyframes scrollDownAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes scrollDownAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.btn:link,
.btn:visited {
    text-transform: capitalize;
    text-decoration: none;
    padding: 10px 25px;
    display: inline-block;
    border-radius: 100px;
    transition: all .2s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(7 59 159);
    color: #fff;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-white {
    background-color: #fff;
    color: #fff;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
}

.btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

.btn-white::after {
    background-color: #fff;
}

.btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.btn-animated {
    animation: moveInBottom 5s ease-out;
    animation-fill-mode: backwards;
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

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

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

@keyframes blinker {
    50% {
        color: #fa130d;
    }
}

.btmform {
    z-index: 2;
    position: relative;
    padding: 0 0 120px 0;
}

.btmform .wrapper {
    box-shadow: 1px 1px 18px 0px rgb(0 0 0 / 20%), 0 2px 25px -5px rgb(0 0 0 / 10%), 1px 5px 1px rgb(0 0 0 / 5%);
    height: 95%;
    width: 100%;
    padding: 60px 0 0 30px;
    background: #fff;
    margin: 30px 0 80px 0;
    position: relative;
}

.form-sec {
    height: 500px;
}

.ver-ctaa {
    height: 98%;
    background-repeat: no-repeat;
}

.ver-cta .box {
    width: 50%;
    position: relative;
    display: inline;
    /* transform: rotate(
    90deg); */

    top: 47px;
    left: 48px;
    color: #fff !important;
    /* display: none; */

    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-end;
}

.ver-cta p {
    color: #fff;
    display: inline;
    margin: auto;
    font-size: 17px;
    padding: 0;
}

.ver-cta .icon-call {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    padding-top: 11px;
    margin: 0 25px;
}

.ver-cta .icon-call img {
    margin: auto;
    transform: rotate(-90deg);
}

.ver-cta span {
    color: #ffc800;
    font-size: 21px;
    display: inline;
    margin: auto;
    font-weight: 500;
}

.sec-left {
    width: 100%;
}

.sec-right {
    width: 20%;
    position: absolute;
    top: 30px;
    width: 100%;
    height: 95%;
    right: 9px;
    /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */

    border-radius: 29px;
}

.contact-pg ul li a.highlight {
    color: #6325f6;
    text-decoration: underline;
}

.main-privacy-sec {
    padding: 60px;
}

.main-privacy-sec ul {
    padding: 0px;
}

.srvces-slides .slick-dots {
    text-align: center;
    bottom: -50px;
    right: 4.2%;
}

.srvces-slides .slick-dots li button {
    background-color: #e1e3e4;
    border-radius: 0%;
    height: 10px;
    width: 10px;
}

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

.srvces-slides .slick-dots li.slick-active button {
    background-color: #5a7797;
}

.srvces-slides .li img {
    display: inline-block;
    border-radius: 0%;
    outline: none;
    width: 100%;
}

.banner-cont {
    margin-top: 150px;
    position: relative;
    z-index: 9;
}

.new-margin-cont {
    margin-top: 220px;
}

.banner-img {
    margin-top: 100px;
}

.banner-img img {
    width: 90%;
    transform: scale(1.3);
    margin-left: 50px;
}

.mainbannerslider {
    padding-top: 150px;
}

.mainbannerslider .slick-list {
    overflow: unset;
}

.second-sec-cont {
    position: relative;
    /* z-index: 10; */
    /* margin-bottom:50px; */
    /* padding: 15px; */
}

.main-second-sec {
    padding: 60px 0;
}

.field {
    padding: 5px 0px 10px 5px;
}

.field input,
.field select {
    background-color: #f0f0f0;
    width: 100%;
    padding: 15px 15px;
    border: 0;
    color: #9b9fa6;
}

.banner-img img {
    width: 90%;
    transform: scale(1.3);
    margin-left: 50px;
}

.mainbannerslider {
    padding-top: 150px;
}

.mainbannerslider .slick-list {
    overflow: unset;
}

.second-sec-cont {
    position: relative;
    /* z-index: 10; */
    /* margin-bottom:50px; */
    /* padding: 15px; */
}

.main-second-sec {
    padding: 60px 0;
}

.field {
    padding: 5px 0px 10px 5px;
    display: inline;
}

.field input,
.field select {
    background-color: #ffffff;
    width: 44%;
    margin-bottom: 20px;
    padding: 15px 15px;
    border: 0;
    /* border-radius: 35px; */

    color: #9b9fa6;
    border: 1px solid #9b9fa673;
    border: 2px solid #141e44;
    outline: none;
    /* box-shadow: 1px 1px 18px 0px rgb(0 0 0 / 20%), 0 2px 25px -5px rgb(0 0 0 / 10%), 1px 5px 1px rgb(0 0 0 / 5%); */
}

.whyus {
    background: #4362ff;
    color: #fff;
    padding: 80px 0;
    background-size: cover !important;
    text-align: center;
}

.field-msg {
    padding: 5px 5px 5px 0px;
}

.field-msg textarea {
    background-color: #ffffff;
    width: 90%;
    padding: 15px 15px;
    border: 0;
    color: #9b9fa6;
    overflow: hidden;
    /* border-radius: 15px; */

    height: 110px;
    margin: 0;
    border: 2px solid #141e44;
    resize: none;
    outline: none;
    /* box-shadow: 1px 1px 18px 0px rgb(0 0 0 / 20%), 0 2px 25px -5px rgb(0 0 0 / 10%), 1px 5px 1px rgb(0 0 0 / 5%); */
}

.field-msg textarea:focus {
    border: 0;
}

.field-btn input[type=submit] {
    color: #fff !important;
    font-size: 16px;
    background-color: #4362ff;
    border-radius: 35px !important;
    padding: 15px 50px;
    font-weight: 500;
    display: inline-block;
    border-radius: 22px;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    border: none;
    margin: 10px 0 0;
    width: 90%;
    height: auto;
    padding: 15px 50px;
}

input.form-btn {
    color: #fff !important;
    font-size: 16px;
    background-color: #4362ff;
    border-radius: 35px !important;
    padding: 15px 50px;
    font-weight: 500;
    display: inline-block;
    border-radius: 22px;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    border: none;
    margin: 10px 0 0;
    width: 46% !important;
    height: auto;
    padding: 15px 50px;
}

.btmform .imgwrp i {
    color: #ffffff;
    font-size: 62px;
    padding: 0 0 0 0;
    position: relative;
    left: 92px;
    top: -65px;
}

.btmform .imgwrp {
    background-color: #fff;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    position: relative;
    top: -68px;
    left: -58px;
    margin: -2px 0px;
}

.btmform .second-sec-cont h2 {
    font-size: 32px;
    margin: -15px 0 0;
}

.overlay {
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99998;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: none;
}

.home-logo-clint {
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    top: 0;
}

.order-form {
    position: fixed;
    width: 100%;
    max-width: 420px;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 99999;
    display: none;
    align-items: center;
}

.order-form .close-icon {
    position: absolute;
    left: -15px;
    top: 0;
    font-size: 18px;
    z-index: 99999;
    cursor: pointer;
    color: #fff;
    background: #334ed0;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    text-align: center;
}

.order-form .free-consult {
    position: relative;
    width: 100%;
    z-index: 999999;
    padding: 110px 0 0;
    background-image: url(../images/popup.html);
    background-size: cover;
    background-repeat: no-repeat;
    height: 510px;
}

.order-form .free-consult .form textarea {
    height: 100px;
    margin-top: 0px;
}

.order-form .free-consult .pkg-dt {
    margin-top: 10px;
    margin-bottom: 10px;
}

section.clientswrp h4.wow.fadeInDown::before {
    width: 9% !important;
    margin: 0px auto !important;
    display: table !important;
    left: 0px !important;
    right: 0px !important;
}

.order-form .free-consult .pkg-dt .pkg-price {
    font-weight: 800;
}

/*CAPTCHA*/
.grecaptcha-badge {
    /*   width: 256px;
        height: 60px;
        box-shadow: grey 0px 0px 5px;
        position: fixed;
        left: -187px;
        bottom: 20px;
        transition: all 0.3s ease-in;*/

    display: none;
}

.grecaptcha-badge:hover {
    left: 0px;
    z-index: 999;
}

/* Safari 7.1+ */
_::-webkit-full-page-media,
_:future,
:root .get-a-quote-pg .free-consult .form select {
    color: #a7a7a7;
    background: #f3f5fe;
    -webkit-appearance: none;
}

.free-consult .form input[type="text"],
.free-consult .form input[type=email],
.free-consult .form textarea,
.free-consult .form select {
    width: 100%;
    font-size: 15px;
    color: #767676;
    font-weight: 600;
    border: 0px;
    padding: 13px 24px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-family: 'gothamlight';
    margin-bottom: 14px;
}

.free-consult .form .primary-btn {
    width: 100%;
    margin-top: 0;
    padding: 13px;
    border: 0px;
    cursor: pointer;
}

.primary-btn {
    background: #14aae7;
    background: -moz-linear-gradient(top, #14aae7 0%, #3945d7 100%);
    background: -webkit-linear-gradient(top, #14aae7 0%, #3945d7 100%);
    background: linear-gradient(to bottom, #e88120 0%, #e43f41 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#14aae7', endColorstr='#3945d7', GradientType=0);
    color: white;
}

h2.text-center.pkg-name {
    color: #fff;
    font-size: 32px;
}

img.logo-clr {
    display: none;
}

.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;
    background: #ffffff00;
    font-size: 12px;
    appearance: auto;
}

.form-wrap {
    background: #fff;
    color: #fff;
    padding: 23px 20px;
    border-radius: 5px;
    width: 85%;
    margin: 0 auto;
    border: 1px solid #000;
    position: relative;
    z-index: 9;
}

/* .bnr-inpfild [type=submit] {
        color: #fff;
        border-radius: 22px;
        margin: 0;
        background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
        font-size: 18px;
        font-weight: 500;
        text-transform: capitalize;
        font-family: 'gothamlight';
        border: 0;
        outline: none;
    } */
.bnr-inpfild [type=submit] {
    border-radius: 0 !important;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    background: #da1b82;
    margin-right: 19px;
    transition: ease 0.5s;
}

.form-wrap h1 {
    font-size: 17px;
    text-align: center;
    margin: 0px 0 24px 0;
    font-weight: 700;
    text-transform: capitalize;
    color: #ec0d72;
    line-height: 1.4;
}

.form-wrap h1 span {
    display: block;
    color: #000;
    font-size: 22px;
}

.bnr-inpfild .intl-tel-input {
    margin-bottom: 18px;
}

.bnr-inpfild textarea {
    height: 83px;
    resize: none;
    color: #000;
}

section.flexiblefeatures-sec {
    padding: 60px 0 70px;
    background: #f3f5f7;
}

.flexiblefeatures-sec h5 {
    color: #0857c1;
    margin-top: 0;
    font-size: 16px;
    padding: 5px 15px;
    background: #73a9f338;
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 400;
}

.flexiblefeatures-sec h2 {
    text-transform: capitalize;
    color: #000;
    padding: 0 0 20px;
    font-family: 'gothamlight';
    font-size: 48px;
}

.flexiblefeatures-sec p {
    color: #74757a;
    font-size: 16px;
    padding-bottom: 0px;
    line-height: 1.2;
}

.flexiblefeatures-sec ul {
    display: inline-block;
    margin-bottom: 0;
    margin-top: 40px;
}

.flexiblefeatures-sec ul li figure img {
    width: auto;
    margin-right: 15px;
}

.flexiblefeatures-sec ul li figure {
    margin-bottom: 0px;
    width: 20%;
    float: left;
    height: auto;
    margin: 0 10px 0 0;
}

.flexiblefeatures-sec ul li {
    clear: both;
    /* margin-bottom: 30px; */

    width: 100%;
    display: inline-block;
    height: auto;
    padding: 0 0px 40px 0px;
}

.flexiblefeatures-sec ul li .txt-wrap h4 {
    font-size: 18px;
    color: #2c2c2c;
    font-family: 'gothamlight';
    font-weight: 700;
}

.flexiblefeatures-sec ul li .txt-wrap p {
    color: #777;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 300 !important;
    height: 54px;
}

.flexiblefeatures-sec figure img {
    width: 100%;
}

.ap-sec h2,
.ap-sec h3 {
    color: #000;
    padding: 0 0 20px;
    font-family: 'gothamlight';
    font-size: 48px;
    text-align: center;
    padding: 60px 0 10px;
}

.ap-sec p {
    color: #3a3a3a;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.box-boxi.boxiesnghome {
    min-height: 300px;
}

.appr-warp .box-wrap {
    padding: 20px 35px;
    text-align: center;
}

.boxiesng {
    height: 290px;
}

.box-boxi {
    padding: 40px 20px;
    border-radius: 18px;
    min-height: 350px;
    box-shadow: 0px 1px 14px 0px #00000047;
}

.appr-warp .box-wrap figure {
    margin-bottom: 20px;
}

.appr-warp .box-wrap figure img {
    max-width: 76px;
}

.appr-warp .box-wrap h4 {
    color: #2c2c2c;
    font-family: 'gothamlight';
    font-size: 18px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.appr-warp .box-wrap p {
    color: #74757a;
    font-size: 15px;
    line-height: 1.4;
    padding: 10px 18px 0px 0px;
    text-align: left;
}

.list-scroll1 {
    height: 100px;
    overflow-y: scroll;
}

.appr-warp {
    margin: 0 auto;
    width: 85%;
    padding: 0px 0 70px;
}

.list-scroll1::-webkit-scrollbar {
    width: 6px;
    height: 8px;
}

.list-scroll1::-webkit-scrollbar-track-piece {
    background-color: #ffffff;
    -webkit-border-radius: 0px;
    border-left: 1px solid #fff;
}

.boxiesng:hover {
    transform: translateY(-0.625rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.dropdown {
    position: relative;
    display: inline-block;
    padding: 0 0 0;
}

.dropdown {
    padding: 0 0 35px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 170px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 10px 0px;
    z-index: 1;
    transition: all ease-in-out 0.5s;
    width: 220px;
    height: 235px;
}

.dropdown:hover .dropdown-content {
    top: 45px;
    display: block;
}

ul.dropdown-content {
    text-align: left !important;
    position: absolute;
    left: -65px;
    top: 31px !important;
}

ul.dropdown-content li {
    border-bottom: 1px solid #dededed1;
    width: 100%;
    padding: 11px 30px;
    margin: 0 0 0px !important;
    position: relative;
}

ul.dropdown-content li a {
    color: #000 !important;
    /* position: relative; */
}

ul.dropdown-content li a:hover {
    color: #084db5 !important;
    padding: 10px 0px 0px 5px;
    transition: all .4s ease-in-out;
}

ul.dropdown-content li:hover a:after {
    left: -20px;
    transition: all .8s ease-in-out;
    opacity: 1;
    top: 18px;
    bottom: auto;
}

ul.dropdown-content li a:after {
    content: "";
    transition: all .8s ease-in-out;
    content: "";
    background: #0664d1;
    height: 2px;
    width: 17px;
    position: absolute;
    left: -36px;
    top: 18px;
    opacity: 0;
    bottom: auto;
}

.hk_hide {
    display: none;
}

.tabs-web-dsgn li.hk_web_height {
    height: 400px;
    overflow: hidden;
    background-size: cover;
    border-radius: 10px;
}

.tabs-web-dsgn li.hk_web_height:hover {
    background-position: 100% 100%;
    transition: 6s !important;
    transform: none;
}

.tabs-ecom li.hk_web_height {
    height: 400px;
    overflow: hidden;
    background-size: cover;
}

.tabs-ecom li.hk_web_height:hover {
    background-position: 100% 100%;
    transition: 6s !important;
    transform: none;
}

/*--------------lp-css-------------------------------*/
header.lp-header {
    padding: 0 0;
    position: absolute;
    background-image: unset;
}

header.lp-header .logowrp img {
    position: relative;
    top: 20px;
}

header.lp-header .navwrp {
    background: #fff;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 7% 100%);
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}

header.lp-header .navwrp ul {}

header.lp-header .navwrp li a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

header.lp-header .navwrp ul li a.btnwrp {
    padding: 10px 20px;
    border-radius: 20px;
    color: #fff !important;
    font-weight: 500;
    background-color: blueviolet;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    font-size: 15px;
}

.lp-secwrp {
    padding: 14% 0 60px;
    background-image: url(../images/banner-bg-lp.html);
    background-repeat: no-repeat;
    background-size: cover;
}

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

.lp-secwrp .txtwrp h2 {
    color: #fff;
    position: relative;
}

.lp-secwrp .txtwrp h2:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 5px;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    right: 0;
    margin: 0 auto;
}

.lp-secwrp .txtwrp p {
    color: #fff;
    padding: 30px 0 0;
}

.lp-secwrp .txtwrp ul {
    margin: 30px 0 0;
}

.lp-secwrp .txtwrp ul li {
    display: inline-block;
    margin: 0 30px 0;
    font-size: 16px;
    color: #fff;
    position: relative;
}

.lp-secwrp .txtwrp ul li:after {
    content: "\f058";
    position: absolute;
    font-family: 'FontAwesome';
    left: -21px;
    color: #62d43c;
}

.lp-logoswrp {
    background-image: unset;
    padding: 50px 0 0;
    border-top: unset;
    top: 0;
}

.lp-secwrp .imgwrp {
    display: block;
    text-align: center;
}

.lp-secwrp .imgwrp ul {
    margin: 0 0 50px;
    text-align: center;
    display: block;
}

.lp-secwrp .imgwrp ul li {
    display: inline-block;
    padding: 0;
    margin: 0 30px;
}

.lp-secwrp .imgwrp ul li img {
    width: 100%;
}

.lp-secwrp .imgwrp a.btn-main {
    margin: 0 auto;
    text-align: center;
}

.lp-secwrp .imgwrp a.btn-secnd {
    color: #fff;
}

.social-counts {
    background: #fff;
    box-shadow: 3px 5px 8px 1px rgb(132 132 132 / 17%);
    position: relative;
    height: 100px;
    overflow: hidden;
    margin: 0 0 130px;
}

.social-left {
    float: left;
    width: 20%;
    padding: 24px 60px 0px 0;
    background: #fff;
    text-align: left;
    height: 96px;
    position: relative;
    font-size: 15px;
    line-height: 18px;
}

.social-left p {
    background: #fff !important;
    font-weight: 700;
    font-size: 13px;
}

.social-right {
    float: left;
    width: 78%;
    margin: 0 0 0 20px;
}

html {
    scroll-behavior: smooth;
}

.conbowrp .mainpkge ul li {
    position: relative;
}

.conbowrp .mainpkge ul li:before {
    content: "\f00c";
    position: absolute;
    font-family: 'FontAwesome';
    left: -26px;
    top: -4px;
    color: #3cca19;
    font-size: 16px;
}

a.hk_load {
    color: #fff;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
}

a.hk_load:hover {
    color: #07389c;
    border: 2px solid #07389c;
}

.videocustom {
    background-color: #fbfdfa !important;
}

video#myVideo {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.serv-tab {
    padding: 40px 0 70px;
}

.serv-tab .navwrp {}

.serv-tab .navwrp .tabbing-links {
    text-align: center;
    margin: 0 0 30px;
    border-radius: 20px;
    margin: 20px auto 40px;
}

.serv-tab .navwrp .tabbing-links li {
    display: inline-block;
    color: #000;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 10px 40px;
    border-radius: 20px;
    font-weight: 600;
    background: #f3f3f3;
}

.serv-tab .navwrp .tabbing-links li.current {
    border-bottom: 1px solid;
    padding: 10px 40px;
    border-radius: 20px;
    margin-right: 10px;
    color: #fff;
    font-weight: 600;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
}

.serv-tab .imgport {
    width: 95%;
    margin: 0 auto;
    text-align: center;
}

.serv-tab .imgport li {
    display: inline-block;
    width: 32%;
    margin: 0 5px 15px;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
}

.serv-tab .imgport li:hover {
    transform: scale(1.1);
}

.serv-tab .imgport li img {
    width: 100%;
    border-radius: 10px;
}

.serv-tab .imgport li figure {
    margin: 0px;
}

.serv-tab .btnwrp {
    text-align: left;
    display: block;
}

.serv-tab .tabs {
    display: none;
}

.serv-tab .tabs.current {
    display: block;
}

section.service-cetawrp ul.tabs {
    display: none;
}

section.service-cetawrp ul.tabs.current {
    display: block;
}

.home-bnnerwrp.servicewrp {
    height: auto;
}

.home-bnnerwrp.servicewrp .txtwrp h1 {
    background-image: unset;
    color: #fff;
    -webkit-text-fill-color: #fff;
    padding: 20px 0 20px;
}

.contact-pg {
    padding-top: 10%;
}

.home-bnnerwrp span.overway {
    position: absolute;
    z-index: 1;
    background-color: #00000085;
    width: 100%;
    height: 100%;
    top: 0;
}

.home-bnnerwrp.servicewrp .col-md-7 .txtwrp h2 {
    background-image: unset;
    color: #fff;
    -webkit-text-fill-color: unset;
}

.form-box-main form label.field-txt {
    font-weight: 500;
    font-size: 18px;
    color: #222;
    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;
}

.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 select:focus {
    border-radius: 8px 8px 0px 0px;
}

.form-box-main form select[name="ddlMonth"],
.form-box-main form select[name="ddlDay"],
.form-box-main form select[name="ddlYear"] {
    float: left;
    width: 32.5%;
    margin: 0 1% 0 0;
}

.form-box-main form select[name="ddlYear"] {
    margin: 0;
}

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

.check-list {
    /* float:left; */
    /* margin:0 15px 0 0; */
}

.form-box-main form input[type=checkbox]:not(old),
.form-box-main form input[type=radio]:not(old) {
    width: 20px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
}

.form-box-main form input[type=checkbox]:not(old)+label,
input[type=radio]:not(old)+label {
    display: inline-block;
    margin-left: -28px;
    padding-left: 28px;
    line-height: 24px;
    font-weight: 500;
    font-size: 14px;
    color: #5B6B7F;
}

.form-box-main form input[type=checkbox]:not(old):checked+label {
    background-position: 0 -24px;
}

.form-box-main form input[type=radio]:not(old):checked+label {
    background-position: 0 -48px;
}

.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;
    margin-top: 20px;
    border: none;
    padding: 20px 60px;
    font-size: 16px;
    background-color: #0031c6;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    border-radius: 8px;
    border: 3px solid;
    cursor: pointer;
}

.form-box-main form input[type="submit"]:after {
    content: "\e93a";
    font-family: 'gothamlight' !important;
    font-size: 13px;
    color: white;
    padding-left: 10px;
}

.form-box-main form input[type="submit"]:hover {
    display: inline-block;
    color: #fff;
}

.form-box-main form input::-webkit-input-placeholder {
    color: gray;
    opacity: 1 !important;
}

.form-box-main form input:-moz-placeholder {
    color: gray;
}

.form-box-main form input::-moz-placeholder {
    color: gray;
}

.form-box-main form input:-ms-input-placeholder {
    color: gray;
}

.form-box-main form textarea::-webkit-input-placeholder {
    color: gray;
    opacity: 1 !important;
}

.form-box-main form textarea:-moz-placeholder {
    color: gray;
}

.form-box-main form textarea::-moz-placeholder {
    color: gray;
}

.form-box-main form textarea:-ms-input-placeholder {
    color: gray;
}

.form-box-main form input:focus,
.form-box-main form textarea:focus,
.form-box-main form select:focus,
.form-box-main form option:focus,
.selected-flag {
    outline: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.form-box-main form .intl-tel-input {
    width: 100%;
}

.form-box-main form .intl-tel-input .country-list {
    width: 380px;
}

.form-box-main form .intl-tel-input .country-list .country {
    font-size: 13px;
}

.form-box-main form label.error,
label.error {
    color: red;
    font-style: italic;
    margin-bottom: 0px;
    display: none !important;
}

div.error {
    display: none;
}

input.checkbox {
    border: none
}

input.error {
    border: 1px solid red !important;
}

form.cmxform .gray * {
    color: gray;
}

.mybannerform form {
    margin-bottom: 0;
}

.orderpg header {
    display: none;
}

.orederpg #main-content {
    overflow-x: inherit;
}

.orderpg footer {
    display: none;
}

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

.subscribe-fold {
    padding: 120px 60px 60px 60px;
}

.order-pg {
    padding: 100px 0 120px;
}

/*floating strips css start */
.floatbutton.active {
    right: 0;
    z-index: 9;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.floatbutton {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: fixed;
    right: -370px;
    top: 16%;
    font-size: 0;
    width: 420px;
    /* transform: translateY(-50%); */

    z-index: 9;
}

.floatbutton .clickbutton {
    /* border-radius: 30px 0px 0px 30px; */

    background: #fff0;
    width: 50px;
    z-index: 999;
    height: 270px;
    cursor: pointer;
    box-shadow: -20px 7px 18px -7px rgba(87, 184, 151, 0.09);
    display: inline-block;
    padding-top: 0;
    vertical-align: top;
    background-image: linear-gradient(to right top, #da1b82, #d22289);
    margin-top: 198px;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    font-family: 'gothamlight';
    -ms-box-shadow: 0px 0px 40px #00000026;
    -o-box-shadow: 0px 0px 40px #00000026;
    /* border: 2px solid #ffffff; */
}

.floatbutton .clickbutton .crossplus:before {
    content: "";
    display: none;
    position: absolute;
    width: 20px;
    height: 2px;
    right: 0;
    background: #fbb334;
    z-index: 99;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.floatbutton .clickbutton .crossplus:after {
    content: "";
    display: none;
    position: absolute;
    width: 2px;
    height: 20px;
    right: 0;
    background: #fab334;
    z-index: 99;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.floatbutton .clickbutton .crossplus {
    position: relative;
    display: block;
    transform: rotate(0deg);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: absolute;
    display: block;
    transform: rotate(-90deg);
    -webkit-transition: 0.4s;
    font-size: 16px;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #fff;
    left: -72px;
    white-space: pre;
    bottom: 122px;
    font-weight: bold;
}

.floatbutton .clickbutton .crossplus.rotate {
    /* transform: rotate(45deg); */

    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.floatbutton .clickbutton .crossplus i {
    font-size: 18px;
    color: #f43535;
    margin: 17px 0 0 15px;
}

.banner-form {
    background: #fff;
    padding: 30px;
    position: relative;
    z-index: 9;
    border-radius: 5px 0 0 5px;
    margin: 0;
    width: 370px;
    display: inline-block;
    box-shadow: 0px 0px 30px #0000001f;
}

.banform {}

.ban-form {}

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

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

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

.ban-form input[type="submit"] {
    color: #fff;
    font-weight: 600;
    background: #f43535;
    border-radius: 3px;
    text-align: center;
    background-image: linear-gradient(to right top, #ec0d72, #ec0d72, #ec0d72, #ec0d72, #ec0d72);
    padding: 10px 15px;
    margin: 20px 0 0;
    border: transparent;
}

.ban-form textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    background: white;
    padding: 10px 15px;
    color: gray;
    font-size: 14px;
    border-radius: 3px;
    font-weight: 400;
    height: 120px;
    outline: none !important;
    margin: 15px 0 0px 0;
}

.btns_wrap {
    position: fixed;
    right: -6px;
}

.btns_wrap a:hover {
    text-decoration: none !important;
    right: 0px;
}

.btns_wrap .call_wrap {
    width: 280px;
    position: absolute;
    right: -225px;
    background: #000;
    top: 120px;
    padding: 0;
    /* border-radius: 50px 0px 0px 50px; */

    overflow: hidden;
    box-shadow: 0px 0px 40px #00000026 !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    /* border: 2px solid #ffffff; */
}

.btns_wrap .call_wrap span {
    color: #ffffff;
    font-size: 20px;
    vertical-align: middle;
    /* background: #fff; */

    padding: 15px 20px 15px 15px;
}

.btns_wrap .chat_wrap {
    display: block;
    position: absolute;
    right: -225px;
    width: 280px;
    padding: 0;
    background: #000;
    top: 40px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0px 0px 40px #00000026 !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    /* border-radius: 50px 0px 0px 50px; */
    /* border: 2px solid #ffffff; */
}

.btns_wrap .chat_wrap span.icoo,
.btns_wrap .call_wrap span.icoo {
    color: #ffffff;
    background-image: linear-gradient(to right top, #da1b82, #d22289);
    font-size: 18px;
    padding: 18px 20px 16px;
    border-right: 1px solid #ffffff;
    vertical-align: middle;
    display: inline-block;
    /* border-radius: 50px 0px 0px 50px; */

    background-color: transparent;
}

.btns_wrap .chat_wrap span {
    color: #ffffff;
    font-size: 20px;
    vertical-align: middle;
    /* background: #fff; */

    padding: 15px 30px 15px 15px;
}

/*floating strips css end */

/*=========================================popup======================================================*/

/*=========================================popup======================================================*/
.mypopup-wrap.active {
    position: fixed;
    top: 0px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background: #fff;
}

.mypopup-wrap {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    width: 800px;
    height: 600px;
    border-radius: 10px;
    position: absolute;
    left: 0;
    right: 0px;
    top: 10%;
    bottom: 0px;
    margin: auto;
    z-index: 99999;
    overflow: hidden;
}

.mypopup-wrap .mypopup {
    border-radius: 10px;
    font-size: 0px;
    background: #fff;
}

.mypopup-wrap .mypopup .left {
    width: 50%;
    vertical-align: top;
    display: inline-block;
    overflow: hidden;
    background: #386163;
    vertical-align: middle;
}

.mypopup-wrap .mypopup .left figure {
    border-radius: 10px 0px 0px 10px;
    overflow: hidden;
}

.mypopup-wrap .mypopup .left figure img {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    height: 590px;
    object-fit: cover;
}

.mypopup-wrap .mypopup .right {
    width: 50%;
    padding: 19px 20px;
    vertical-align: top;
    display: inline-block;
    vertical-align: middle;
}

.mypopup-wrap .mypopup .right .closebutton {
    position: absolute;
    width: 20px;
    height: 20px;
    /*float: right;*/

    cursor: pointer;
    transform: rotate(45deg);
    right: 20px;
    top: 20px;
}

.mypopup-wrap .mypopup .right .closebutton:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 1px;
    top: 0;
    background: #000;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
}

.mypopup-wrap .mypopup .right .closebutton:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 20px;
    top: 0;
    left: 0;
    background: #000;
    display: block;
    bottom: 0;
    margin: auto;
}

.mypopup-wrap .mypopup .right .mypopup-innerwrap {
    padding-top: 0px;
    padding-left: 30px;
    padding-right: 30px;
}

.mypopup-wrap .mypopup .right .mypopup-innerwrap h3 {
    font-size: 26px;
    line-height: 1;
}

.mypopup-wrap .mypopup .right .mypopup-innerwrap h3 span {
    font-size: 38px;
    display: block;
    font-weight: 900;
    color: #edad0d;
    margin-top: 5px;
    margin-bottom: 10px;
}

.mypopup-innerwrap .form_wrap {
    padding: 20px 15px;
}

.mypopup-innerwrap .form_wrap .hero_form {}

.mypopup-innerwrap .form_wrap .hero_form form {}

.mypopup-innerwrap .form_wrap .hero_form .form-control {
    border-radius: 10px;
    border: 1px solid #b9b8b8;
}

.mypopup-innerwrap .form_wrap .hero_form .form-control:focus {
    border: 1px solid #5d03db;
}

.mypopup-innerwrap .form_wrap .hero_form textarea.form-control {
    color: #000;
}

.mypopup-innerwrap .form_wrap #quoteForm textarea.form-control {
    min-height: 85px;
}

.mypopup-innerwrap .form_wrap .hero_form #quoteSubmit {
    border-radius: 10px;
    min-width: 100%;
}

.mypopup-innerwrap .form_wrap .hero_form .col-md-6 {
    width: 100%;
}

.mypopup-innerwrap .form_wrap .hero_form .col-sm-6 {
    width: 100%;
}

.hero_form .field-mergedleft {
    padding-left: 15px;
}

.hero_form .field-mergedright {
    padding-right: 15px;
}

.mypopup-innerwrap .form_wrap .hero_form .margin-bottom-20 {
    margin-bottom: 10px;
}

.submit:hover {
    background-color: #1f1f1f;
}

.form_wrap .analyzeform form input[type="submit"] {
    width: 100%;
    margin: 0px;
    text-align: center;
    margin-top: 10px;
    border-radius: 4px;
}

.submit {
    border: 0;
    font-family: 'gothamlight';
    font-size: 18px;
    color: #fff;
    line-height: 2;
    padding: 9px 80px;
    outline: none;
    cursor: pointer;
    transition: background-color .3s;
    border-radius: 5px;
    background: #ec0d72 !important;
    /* background-image: linear-gradient(to right top, #0569d7, #042888); */
    /* border-radius: 35px; */

    margin: 22px auto 0;
    width: 90%;
}

.overlay {
    background: #0000006b;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
}

/*=========================================popup======================================================*/

/*=========================================egg-popup======================================================*/
.eggoffer.show {
    position: fixed;
    bottom: 8px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.eggoffer {
    width: 150px;
    cursor: pointer;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: fixed;
    bottom: 10px;
    left: 8px;
    z-index: 999;
    overflow: hidden;
}

.eggoffer .top {
    position: relative;
    z-index: -1;
}

.eggoffer .top figure {
    text-align: center;
}

.eggoffer .top figure img {
    opacity: 1;
    width: 100%;
}

.eggoffer .bottom {
    cursor: pointer;
    padding: 16px 5px;
    border-radius: 5px;
    background: #16a07d;
}

.mypopup-wrap .mypopup .right .mypopup-innerwrap h3:before,
.eggoffer .bottom h3:before {
    display: none;
}

.eggoffer .bottom h3 {
    font-size: 14px;
    margin: 0;
    color: #fff;
}

.eggoffer .bottom span {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    width: 100%;
    padding-top: 6px;
    line-height: 1;
    display: inline-block;
    text-align: center;
    text-shadow: 0 2px 2px #666;
}

.form_wrap .analyzeform form .dtf {
    width: 100%;
}

.form_wrap .analyzeform form input[type="submit"] {
    width: 100%;
    margin: 0px;
    text-align: center;
    margin-top: 10px;
    border-radius: 4px;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
}

.form_wrap .analyzeform form .wrap {
    padding-left: 0px;
}

.form_wrap .analyzeform {
    margin: 0px;
}

.eggoffer .broken {
    display: none;
}

.eggoffer .unbroken {
    display: block;
}

.mypopup-wrap .easter {
    display: none !important;
}

.overlay-bg.vis {
    display: block !important;
}

.analyzeform form input[type="text"],
.analyzeform form input[type="email"],
.analyzeform form input[type="number"],
.analyzeform form input[type="tel"],
.analyzeform form textarea {
    width: 100%;
    margin: 0 0 0 0;
    border: 1px solid #e5e5e5;
    background: white;
    padding: 13px 15px;
    color: gray;
    font-size: 13px;
    /* border-radius: 5px; */

    height: 50px;
    font-weight: 400;
    outline: none !important;
    margin-bottom: 10px;
}

.mypopup-innerwrap h2 {
    font-size: 34px;
    display: block;
}

.mypopup-innerwrap h2 span {
    display: block;
    color: #094cb3;
}

.fancybox-content {
    width: 100% !important;
    height: 100% !important;
}

.mygrid {
    padding: 30px 20px 30px 20px;
    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
    width: 80%;
    margin: 40px auto 150px;
    position: relative;
    border-radius: 8px;
    height: 245px;
}

.cta2 .wrap {}

.cta2 .wrap h6 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 10px;
    text-align: left;
}

.cta2 .wrap h3 {
    text-align: left;
    padding-bottom: 0;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta2 .wrap .gt-strt {
    padding: 10px 30px;
    color: #000;
    font-weight: 700;
    display: inline-block;
    font-size: 18px;
    border-radius: 35px;
    /* FF3.6-15 */

    background: #fff;
    /* Chrome10-25,Safari5.1-6 */

    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border: none;
    float: left;
    margin-right: 20px;
    font-weight: 500;
}

.cta2 .wrap a:hover {
    transform: translateY(-0.625rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.cta-img img {
    position: absolute;
    content: "";
    top: -86px;
    right: 0;
    /* width: 81%; */
}

.wrap .new-cta {
    padding: 10px 30px;
    font-weight: 700;
    display: inline-block;
    font-size: 18px;
    border-radius: 35px;
    background: transparent;
    border: 1px solid #fff !important;
    color: #fff;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border: none;
    float: left;
    margin-right: 20px;
    font-weight: 500;
}

/*=========================================egg-popup======================================================*/
li.dropdown:after {
    content: "\f107";
    color: #fff;
    font-size: 16px;
    font-family: 'FontAwesome';
    font-weight: 900;
}

header .nav-lp ul li a:hover {
    color: #0956c0;
}

h2.tag-best {
    position: relative;
}

h2.tag-best:after {
    content: '';
    bottom: 20px;
    background-image: url(../images/banner-badge02.html);
    left: 480px;
    color: #144bbd;
    height: auto;
    position: absolute;
    width: 250px;
    height: 211px;
    background-repeat: no-repeat;
    background-size: 90%;
    top: 0px;
}

h2.tag-best2 {
    position: relative;
}

h2.tag-best2:after {
    content: '';
    bottom: 20px;
    background-image: url(../images/banner-badge2.html);
    left: 480px;
    color: #144bbd;
    height: auto;
    position: absolute;
    width: 250px;
    height: 211px;
    background-repeat: no-repeat;
    background-size: 90%;
    top: 0px;
}

.brief_form {
    position: relative;
    padding: 60px 0 140px;
}

.brief_form:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/left.html);
    opacity: 0.1;
}

.brief_form:after {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/right.html);
    opacity: 0.1;
}

.brief_form .briefleft {
    height: 1000px;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    background-position: 50%;
    background-color: #f0f6f6;
}

.brief_form .briefleft h1 {
    font-size: 40px;
    font-weight: bold;
    max-width: 70%;
    padding: 30px 30px;
}

.brief_form ul {
    display: flex;
    padding: 0;
    text-align: center;
    margin: 0 0 25px;
}

.brief_form ul li {
    display: inline-block;
    width: 25%;
    text-align: center;
    padding: 20px 0;
    border-right: 1px solid #dadada;
    position: relative;
    color: #4c4c4c;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dfe1e3+0,bec5cc+100 */

    background: #dfe1e3;
    /* Old browsers */

    background: -moz-linear-gradient(top, #dfe1e3 0%, #bec5cc 100%);
    /* FF3.6-15 */

    background: -webkit-linear-gradient(top, #dfe1e3 0%, #bec5cc 100%);
    /* Chrome10-25,Safari5.1-6 */

    background: linear-gradient(to bottom, #dfe1e3 0%, #bec5cc 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    /* filter: progid XImageTransform.Microsoft.gradient(startColorstr='#dfe1e3', endColorstr='#bec5cc', GradientType=0); */
    /* IE6-9 */
}

.brief_form ul li.done {
    display: inline-block;
    width: 25%;
    text-align: center;
    background: #28a745;
    padding: 20px 0;
    border-right: 1px solid #dadada;
    position: relative;
    color: #fff;
}

.brief_form ul li:last-child {
    border-right: 0px;
}

.brief_form ul li i {
    display: block;
    color: #4c4c4c;
    font-size: 28px;
    margin: 0 0 5px;
}

.brief_form ul li.done i {
    color: #fff;
}

.brief_form ul li i.chcked {
    /* position: absolute; */

    top: 0px;
    right: -70px;
    z-index: 1;
    margin: 0 auto;
    left: 0;
    right: 0;
    font-size: 16px;
    display: inline-block;
}

.brief_form ul li.active {
    background: #14aae7;
    background: -moz-linear-gradient(top, #14aae7 0%, #3945d7 100%);
    background: -webkit-linear-gradient(top, #14aae7 0%, #3945d7 100%);
    background: linear-gradient(to bottom, #14aae7 0%, #3945d7 100%);
    /* filter: progid XImageTransform.Microsoft.gradient(startColorstr='#14aae7', endColorstr='#3945d7', GradientType=0); */
}

.brief_form .col-md-12,
.brief_form .col-md-6 {
    margin: 7px 0;
}

.brief_form h2 {
    font-size: 34px;
    font-weight: bold;
    margin: 0;
    padding: 0 0 20px;
    color: #000000;
    text-align: left;
}

.brief_form h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    border-bottom: solid 1px #b2b9c1;
    padding: 0 0 11px;
    color: #484848;
}

.brief_form input[type=text] {
    width: 100%;
    margin: 0 0 10px 0;
    border: 0px;
    border: 1px solid #e3f1f1;
    background: #eff5f5;
    padding: 18px 10px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    height: 50px;
    border-radius: 5px;
}

.brief_form input[type=file] {
    border: 0px;
}

.brief_form textarea {
    width: 100%;
    margin: 0 0 10px 0;
    border: 0px;
    border-bottom: 0px solid #B2B9C1;
    background: #eff5f5;
    padding: 18px 13px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    height: 120px;
    border-radius: 5px;
}

.brief_form .form-group {
    display: inline-block;
    width: 21%;
    margin: 4px 15px;
}

.brief_form .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.brief_form .form-group label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
}

.brief_form .form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #B2B9C1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.brief_form .form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 7px;
    left: 7px;
    width: 6px;
    height: 10px;
    border: solid #86279b;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.brief_form .files {
    background: #eff5f5;
    text-align: center;
    margin: 0px 15px;
    height: 80px;
    padding: 10px 0;
    border-radius: 5px;
}

.brief_form #project-contactwew-us-button {
    padding: 10px 30px;
    border-radius: 4px;
    background: #14aae7;
    background: -moz-linear-gradient(top, #14aae7 0%, #3945d7 100%);
    background: -webkit-linear-gradient(top, #14aae7 0%, #3945d7 100%);
    background: linear-gradient(to bottom, #14aae7 0%, #3945d7 100%);
    /* filter: progid XImageTransform.Microsoft.gradient(startColorstr='#14aae7', endColorstr='#3945d7', GradientType=0); */
    color: #fff;
    margin: 30px 0 0;
}

.seosteps .btnwrp {
    padding: 70px 0 0;
}

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

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

.belowform {
    padding: 170px 0 150px;
}

.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;
}

.row.web-port .scroll-port {
    /* height: 500px; */
}

.free-consult {
    padding: 80px 0 115px 0;
}

.free-consult .sub-head {
    padding: 0px;
}

.free-consult .form {
    margin: 20px 0 0 0;
}

.free-consult h2 {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
}

.free-consult .form input[type="text"],
.free-consult .form input[type=email],
.free-consult .form textarea,
.free-consult .form select {
    width: 100%;
    font-size: 15px;
    color: #767676;
    font-weight: 600;
    border: 0px;
    padding: 13px 24px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-family: 'gothamlight';
    margin-bottom: 14px;
    height: 50px;
}

.free-consult .form textarea {
    margin: 0;
    resize: none;
    height: 196px;
}

.free-consult .form input[type="text"].error,
.free-consult .form input[type=email].error {
    border-color: var(--red);
}

.free-consult .form .interested-in h6 {
    font-size: 15px;
    color: var(--dark);
    font-weight: 600;
    margin: 15px 0;
}

.free-consult .form .cCheckbox {
    background: #fff;
    width: 18px;
    height: 18px;
    border: 1px solid #e1e1e1;
    float: left;
    margin: 1px 12px 0 0;
}

.free-consult .form label {
    margin: 0px 0px 15px 0;
    cursor: pointer;
    font-size: 15px;
    color: #767676;
    font-weight: 600;
    width: 33%;
}

.free-consult .form label.error {
    display: none !important;
}

.free-consult .form label.full {
    width: 100%;
}

.free-consult .form .primary-btn {
    width: 100%;
    margin-top: 0;
    padding: 13px;
    border: 0px;
    cursor: pointer;
}

.sec-heading {
    font-size: 35px;
    color: #ec0d72;
}

.sec {
    padding-top: 50px;
}

.main-sec h4 {
    font-size: 20px;
    color: black;
}

.main-sec p {
    font-size: 16px;
    font-weight: 400;
    color: black;
}

.services-details-card {
    background: #141e44;
    border-radius: 20px;
    border: 2px solid #141e44;
    padding: 20px;
    color: #ec0d72;
    top: 150px;
    position: sticky;
    z-index: 0;
}

.services-details-card ul {
    padding-left: 10px;
}

.services-details-card ul li {
    padding: 5px 0;
    list-style: disc;
    font-weight: 900;
}

.services-details-card ul li a {
    font-weight: 900;
}

.services-details-card ul li a {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

.form-banner .form-control {
    background-color: transparent;
    margin: 10px 0px;
}

.form-banner input {
    height: 50px;
}

.btn-submit {
    font-size: 18px;
    padding: 5px 20px;
    width: 100%;
    font-weight: bold;
    margin-top: 15px;
}

.cta-btns .btn {
    background-color: white;
    border-radius: 30px;
    padding: 7px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.cta-btns .btn:hover {
    color: black;
}

.cta-sec {
    padding-bottom: 50px;
}

.cta-sec h2 {
    text-transform: capitalize !important;
}

.cta-btns .btn {
    margin-right: 20px;
}

.process .process-card {
    /* height: 309px;   */
}

@media (max-width: 767px) {
    .flexiblefeatures-sec h2 {
        font-size: 30px;
    }

    .appr-warp {
        width: 100%;
    }

    header .navwrp,
    .floatbutton {
        display: none;
    }

    .ap-sec h2,
    .ap-sec h3 {
        font-weight: 700;
        font-size: 26px;
    }

    header {
        padding: 0;
        z-index: 9;
    }

    .top-head {
        /* background: #f3f5f7; */
        /* border-bottom: 1px solid #cbd6e2; */
        padding: 0 0;
        margin: 10px 0;
    }

    header .navtop ul li {
        margin: 0 12px;
    }

    .home-bnnerwrp .imgwrp {
        position: relative;
        display: none;
    }

    .btnwrp {
        padding: 0 0 0;
    }

    header .navtop ul li a {
        font-size: 14px;
    }

    header .navtop ul {
        text-align: center;
    }

    header .navtop ul li a i {
        color: #fff;
    }

    .header-main.showmenu {
        z-index: 9;
    }

    .mobile-nav-btn {
        z-index: 999;
        right: 8%;
        top: 55px;
    }

    .mobile-nav-btn span,
    .mobile-nav-btn span:before,
    .mobile-nav-btn span:after {
        background-color: #fff;
    }

    .home-bnnerwrp {
        padding: 150px 0 50px;
        text-align: center;
    }

    .home-bnnerwrp .txtwrp ul li {
        width: 23%;
    }

    .home-bnnerwrp .txtwrp ul li img {
        width: 100%;
    }

    .btn-main,
    .btn-secnd {
        padding: 10px 12px;
        font-size: 15px;
        display: block;
        margin: 0 0 10px;
        text-align: center;
    }

    h2.main-heading {
        color: #000;
        font-size: 36px;
    }

    .secnd-fold .imgwrp {
        margin: 40px 0 0;
    }

    .cta2 .wrap h6 {
        font-size: 20px;
        text-align: center;
    }

    .cta2 .wrap h3 {
        text-align: center;
    }

    .home-bnnerwrp.servicewrp {
        height: auto;
        background-position: 50%;
    }

    .ctawrp {
        padding: 0px 0;
    }

    .pakcgewrp .navwrp .pkgeport li .mainpkge .btnwrp p {
        font-size: 12px;
        color: #fff;
    }

    .pakcgewrp .navwrp .pkgeport li .mainpkge .detailwrp ul li {
        font-size: 14px;
    }

    .pakcgewrp .navwrp .pkgeport li .mainpkge .namwrp h2 {
        font-size: 20px;
    }

    .pakcgewrp .navwrp .pkgeport li .mainpkge .pricewrp h1 {
        font-size: 48px;
    }

    .pakcgewrp .navwrp .pkgeport li .mainpkge .pricewrp h4 {
        font-size: 18px;
    }

    ul.partnerslider li img {
        margin: auto;
    }

    .service-cetawrp .ser-port li .imgwrp img {
        display: none;
    }

    .service-cetawrp ul.tabbing-links li {
        font-size: 14px;
        display: inline-block;
        margin: 6px 5px;
        border: solid 1px #ccc;
        border-radius: 50px;
        padding: 8px 16px;
    }

    .service-cetawrp ul.tabbing-links,
    .service-cetawrp .txtwrp h2 {
        margin-left: 0;
        text-align: center;
    }

    .service-cetawrp .ser-port li .mainwrp .btn-secnd,
    .service-cetawrp .ser-port li .mainwrp .btn-main {
        padding: 15px 15px;
    }

    .service-cetawrp .ser-port li .mainwrp {
        padding: 50px 15px;
        height: auto;
        text-align: center;
    }

    .ctawrp .mainwrp {
        width: 100%;
        padding: 30px 15px 50px;
    }

    .ctawrp .mainwrp .txtwrp h2 {
        font-size: 24px;
    }

    .ctawrp .mainwrp .txtwrp p {
        font-size: 20px;
        width: 90%;
        margin: 0 auto;
    }

    .btn-secnd {
        margin: 0 5px;
    }

    .tabs-web-dsgn li.hk_web_height {
        height: 250px;
    }

    .portfoliowrp {
        padding: 40px 0 50px;
    }

    .portfoliowrp .imgport li {
        width: 45%;
    }

    .portfoliowrp .btnwrp a {
        width: 90%;
        display: block;
        margin: 15px 0 0 17px;
    }

    .pakcgewrp .navwrp .pkgeport li {
        width: 95%;
        margin: 0 10px 20px;
    }

    .conbowrp .pkgehead {
        width: 100%;
        background: #0464d2;
        border-radius: 0px 10px;
        margin-bottom: -30px;
    }

    .cta-img {
        display: none;
    }

    .mygrid {
        width: 90%;
        margin: 0px auto 50px;
        height: auto;
    }

    .cta2 .wrap .gt-strt,
    .wrap .new-cta {
        display: block;
        width: 100%;
        font-size: 18px;
        float: none;
        margin-right: 0px;
        text-align: center;
        margin-bottom: 15px;
    }

    .conbowrp .pkgehead h2 {
        font-size: 23px;
    }

    .conbowrp .mainpkge .imgwrp {
        display: none;
    }

    .conbowrp .pkgehead p {
        font-size: 14px;
    }

    .conbowrp .mainpkge .navwrp h4 {
        font-size: 18px;
    }

    .conbowrp .mainpkge .imgwrp img {
        width: 60%;
        top: -377px;
        left: 140px;
    }

    .testiwrp {
        padding: 50px 0 50px;
    }

    .testiwrp .imgwrp {
        left: 0;
    }

    .testiwrp .imgwrp img {
        margin-bottom: 20px;
    }

    .testiwrp .txtwrp h4,
    .testiwrp .txtwrp p,
    .testiwrp .txtwrp span,
    .testiwrp .txtwrp h5 {
        text-align: center;
    }

    .testiwrp .txtwrp h2 {
        font-size: 30px;
        text-align: center;
    }

    .testiwrp .txtwrp span {
        display: block;
    }

    section.logo-clntwerp h2 {
        font-size: 26px;
    }

    .logo-clntwerp ul li img {
        margin: auto;
    }

    .cta-sndwrp .txtwrp h2 {
        font-size: 26px;
    }

    .cta-sndwrp .txtwrp p,
    section.btmform p {
        font-size: 16px;
    }

    .cta-sndwrp .btnwrp .btn-main {
        width: 90%;
        display: block;
        margin: auto;
    }

    .cta-sndwrp .btnwrp .btn-secnd {
        display: block;
        margin: 10px 20px;
    }

    section.btmform h2 {
        font-size: 26px;
    }

    .btmform .wrapper {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .ver-cta .box {
        right: -213px;
    }

    .field input,
    .field select,
    .field-msg textarea {
        width: 100%;
    }

    .btmform .second-sec-cont h2 {
        font-size: 30px;
    }

    .btmform .wrapper,
    .ver-cta {
        height: 90%;
    }

    footer {
        padding: 80px 0 50px;
    }

    .form-wrap {
        width: 100%;
        margin: 30px auto 40px;
    }

    .secnd-fold {
        margin: -200px 0 0 0;
        padding: 50px 0 40px;
    }

    .secnd-fold h2 {
        font-size: 34px;
        text-align: center;
    }

    .secnd-fold .imgwrp img {
        width: 100%;
    }

    .our-ser-bnnr {
        padding: 170px 0 70px;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h4 {
        color: #000000;
        font-size: 10px;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        font-size: 36px;
    }

    header .navtop ul li.displaynone {
        display: none;
    }

    header .logowrp img {
        position: relative;
        bottom: 0;
        margin: 0 0 10px;
    }

    .service-cetawrp .txtwrp h2:after {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .service-cetawrp .ser-port li .mainwrp p {
        font-size: 16px;
        padding: 10px 0 20px;
    }

    .service-cetawrp {
        padding: 30px 0;
    }

    .pakcgewrp .navwrp ul.tabbing-links li {
        padding: 10px 15px;
    }

    .pakcgewrp .navwrp ul.tabbing-links li.current {
        font-size: inherit;
        padding: 10px 15px;
    }

    .pakcgewrp .navwrp .pkgeport li .mainpkge .detailwrp ul {
        margin: 20px 0 20px;
    }

    .cta-sndwrp {
        padding: 30px 0 30px;
    }

    .sec-left {
        width: 100%;
    }

    .sec-right {
        display: none;
    }

    footer .logowrp {
        padding: 0 0;
    }

    footer .fotrnav {
        margin: 0px 0 0;
        padding: 0 0;
    }

    footer .fotrnav ul {
        margin: 0px 0 0;
    }

    footer .fotrnav ul li a {
        font-size: 14px;
    }

    footer .fotr-btm {
        margin: 15px 0 0;
        text-align: center;
    }

    footer .fotr-btm p {
        font-size: 14px;
        text-align: center;
    }

    footer .fotr-btm ul {
        margin: 0;
        text-align: center;
    }

    footer .fotrnav h4 {
        font-size: 20px;
        margin: 13px 0;
    }

    .second-sec-cont {
        text-align: center;
    }

    .conbowrp .mainpkge .btnwrp .btn-main {
        display: block;
        margin: 0 0 10px;
        text-align: center;
        width: 100%;
        padding: 10px 20px;
        font-size: 17px;
    }

    .conbowrp .mainpkge .btnwrp .btn-secnd {
        display: block;
        margin: 0;
        text-align: center;
        width: 100%;
        padding: 10px 20px;
        font-size: 17px;
    }

    .conbowrp .mainpkge {
        padding: 50px 15px 20px;
    }

    .servicewrp.lppadd {
        padding: 150px 0 160px;
    }

    p.main-pera {
        text-align: center;
    }

    .mobile-nav nav li {
        padding: 0;
    }

    .home-bnnerwrp {}

    .revers {
        flex-direction: column-reverse;
    }
}

.terms-pg {
    padding: 200px 0 40px;
}

.terms-pg h1 {
    color: #094cb4;
}

.termspage {
    padding: 0 0 160px;
}

.overlap1 {}

.overlap1:before {
    content: '';
    background: #011038d9;
    display: block;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 99;
}

.m-auto {
    margin: 61px auto !important;
    display: table;
}

.banner2 {
    display: block;
    text-align: center;
    padding: 60px 0 70px;
    /* background-image: url(../imgs/banner.webp); */

    background-repeat: no-repeat;
    background-size: cover;
    background: #141e44;
}

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

p.main-pera {
    color: #fff;
    /* margin-left: -39px; */
}

h6.main-heading.wow.fadeInDown {
    text-align: left;
    font-weight: 900;
    font-size: 20px;
    font-family: 'gothamlight';
}

/* .container.bg {
            position: relative;
            left: -147px;
        } */
.rock-bg {
    display: block;
    text-align: center;
    padding: 180px 0;
    background-image: url(../images/rock-bg.html);
    background-repeat: no-repeat;
    background-size: cover;
}

.input-group.newsletter {
    width: 54%;
}

input.form-control {
    background: transparent;
}

input.form-control::placeholder {
    color: white;
}

h2.h2-box {
    color: white;
    font-size: 22px;
    font-weight: 700;
    font-family: 'gothamlight';
    margin: 0px 0 -10px 17px;
}

.contact-img {
    height: 99%;
    background-image: url(../imgs/phone.webp);
    background-repeat: no-repeat;
    width: 49%;
    object-fit: cover;
    background-size: cover;
    position: relative;
    background-position: 100% 100%;
    left: 5rem;
    transform: rotate(26deg);
}

.contact-1 {
    width: 82%;
    margin-left: 18em !important;
}

.box {
    /* margin-left: 89px; */

    padding: 52px 0 3px 88px;
}

p.h2-box {
    margin-left: 18px;
}

.btmform {
    /* padding: 100px 0 100px;
            background-image: url(../images/contact-herobg.webp);
            background-size: cover;
            background-repeat: no-repeat; */
}

.col-md-4.logo-box {
    background-image: url(../images/footer-bg.html);
    border-bottom: 2px solid white;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    position: relative;
    z-index: 22;
    padding-bottom: 71px;
    bottom: 115px;
}

.row.foo {
    margin-top: -9em;
}

a.btn-main.wow.fadeInDown.btn-main1 {
    padding: 15px 40px;
    border-radius: 35px;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    background: #ffffff;
    /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
}

.form-banner {
    background: #2e4087bd;
}

a.btn-main.wow.fadeInDown.btn-main1:hover {
    padding: 15px 40px;
    border-radius: 35px;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    /* background: #786363; */

    background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888);
}

.logo-clntwerp ul li img {
    margin: 0px auto !important;
}

ul.tabbing-links {
    margin: 0px !important;
}

.pakcgewrp .navwrp2 ul.tabbing-links li {
    color: #fff !important;
}

/* Subheader css */
.top-head .container {
    position: relative;
    height: 40px;
}

.top-head .container:before {
    content: "";
    position: absolute;
    width: 400%;
    height: 46px;
    background-color: #141e44;
    right: 45%;
    clip-path: polygon(0 0, 100% 1%, 99% 142%, 0 100%);
}

/* .top-head .container:after{content: "";position:absolute;margin: -41px -20px;width:40px;height: 61px;transform: rotate(31deg);background-color: #22182a;right: 45%;} */
.top-head div#topbar {
    padding-top: 6px;
}

/* End */
.mainwpp span.about-us-nwpp {
    color: #333;
    font-size: 22px;
    margin: 0 0 10px 0;
    display: block;
}

/* Custom Css */
h2.myh2.wow.fadeInDown:before,
h3.myh2.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: -10px;
}

img#why-us {
    width: 100%;
    margin: 0 0 44px 0;
}

.col-12.col-md-6.whyuss {
    /* padding-left: 422px; */
}

.myyimg {
    float: right;
}

section.ap-sec {
    /* background-image: url(../imgs/services-bg.webp); */

    padding: 48px 0 5px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background: #141e44;
    /*margin: 100px 0 0;*/
}

/* card carosal */
.card.mb-2 {
    background: transparent;
    border: 2px solid white;
    padding: 23px 0;
    color: white !important;
    border-radius: 0px !important;
}

.card.mb-2:hover {
    /* background: white; */
    /* color:black !important; */
}

.card-img-top {
    width: 20%;
    float: left !important;
    display: inline-block;
}

.ap-sec p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 100;
    text-align: left;
}

h4.card-title {
    color: white;
    height: 90px;
}

section.ap-sec ol.carousel-indicators {
    bottom: -60px;
}

section.ap-sec .col-md-4:hover .card.mb-2 {
    background-color: #fff;
    border-top: 3px solid #d50d69;
}

section.ap-sec .col-md-4:hover img.card-img-top {
    filter: invert(1);
}

section.ap-sec .col-md-4:hover h4.card-title {
    color: #000;
}

section.ap-sec .col-md-4:hover p.card-text {
    color: #000 !important;
}

h4.card-title {
    color: white;
    padding: 12px 81px;
}
.banner2 h4.text-white {
    font-size: 32px;
    padding-bottom: 15px;
}

h2.text-white.wow.fadeInDown:before,
h4.text-white.wow.fadeInDown:before, 
h3.text-white.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: -11px;
    right: 500px;
}

h2.process-heading.text-center.wow.fadeInDown,
h3.process-heading.text-center.wow.fadeInDown,
h4.process-heading.text-center.wow.fadeInDown {
    color: #ec0d72;
    font-size: 45px;
    text-transform: uppercase;
}

h2.process-heading.text-center.wow.fadeInDown:before,
h3.process-heading.text-center.wow.fadeInDown:before,
h4.process-heading.text-center.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: -20px;
    right: 500px;
}

section.ap-sec h2.text-white.wow.fadeInDown,
section.ap-sec h3.text-white.wow.fadeInDown {
    font-size: 45px;
}

section.ap-sec h2.text-white.wow.fadeInDown:before,
section.ap-sec h3.text-white.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: 54px;
    right: 500px;
}

/* counter */
.counter-box {
    display: block;
    background: #f6f6f6;
    padding: 40px 20px 37px;
    text-align: center
}

.counter-box p {
    margin: 5px 0 0;
    padding: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.counter-box i {
    font-size: 60px;
    margin: 0 0 15px;
    color: #d2d2d2
}

.counter {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #d52087;
    line-height: 28px;
}

.counter-box {
    background: transparent;
    border-right: 2px solid #504f4f82;
}

.counter-box.colored {
    border-left: 2px solid #504f4f82;
}

.counter-box.colored p,
.counter-box.colored i,
.counter-box.colored .counter {
    /* color: #fff; */
}

/* counter ends*/
.myimgg {
    float: right;
}

button.btn-main12 {
    border: none !important;
    font-size: 18px;
    display: flex;
}

button.btn-main12:hover {
    color: #ec0d72;
}

button.btn-main12:before {
    content: "+";
    background-color: #ec0d72;
    width: 100px;
    height: 100%;
    padding: 2px 4px 2px 4px;
    color: white;
    width: 27px;
}

button.btn-main12 p {
    text-align: left;
    margin-left: 10px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'gothambold' !important;
}

div#headingOne {
    border-bottom: 2px solid #efecec;
    padding: 14px 0px;
}

#headingTwo {
    border-bottom: 2px solid #efecec;
    padding: 14px 19px;
}

#headingThree {
    border-bottom: 2px solid #efecec;
    padding: 14px 19px;
}

.card {
    border: none;
}

/* accordion */
button.btn-main12 {
    background-color: transparent !important;
}

div#accordion button:focus {
    outline: none !important;
    outline: none !important;
}

/* portfolio */
.demo {
    background-image: url(../imgs/testimonial-bg.webp);
    padding: 156px 0 0 0;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 63em;
}

.testimonial .pic {
    width: 38%;
    padding: 20px 0;
    margin: 6px 6% 0 2%;
    float: right;
    position: relative;
    z-index: 1;
    height: 306px;
    border-radius: 20px;
}

.testimonial .pic:before,
.testimonial .pic:after {
    content: "";
    width: 130px;
    height: 150px;
    background: #e1c37d;
    position: absolute;
    z-index: -1;
}

.testimonial .pic:before {
    top: 0;
    right: -20px;
}

.testimonial .pic:after {
    bottom: 0;
    left: -20px;
}

.testimonial .pic img {
    width: 115px;
    height: 115px;
    border: 3px solid #e1c37d;
    margin: 20px auto;
    display: table;
    border-radius: 56px;
}

.testimonial .testimonial-content {
    width: 53%;
    float: left;
}

.testimonial .title {
    display: block;
    font-size: 45px;
    font-weight: 700;
    color: #141e44;
    margin: 0;
    text-transform: uppercase;
    /* width: 101% !important; */
    /* padding-top: 65px; */

    padding-left: 15px;
}

.testimonial .post {
    display: block;
    font-size: 24px;
    font-weight: 400;
    line-height: 27px;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 25px;
    padding-left: 15px;
}

.testimonial .description {
    font-size: 16px;
    color: #000;
    padding: 0 15px;
    margin: 0;
    position: relative;
}

.testimonial .description:before,
.testimonial .description:after {
    /* font-family: "Font Awesome 4 Free"; */
    /* font-weight: 900; */

    font-size: 17px;
    color: #e1c37d;
    position: relative;
    opacity: 0;
}

.testimonial .description:before {
    content: "\f10d";
    margin-right: 5px;
    top: 0;
    left: 0;
}

.testimonial .description:after {
    content: "\f10e";
    margin-left: 5px;
    position: relative;
    bottom: 0;
    right: 0;
}

.owl-theme .owl-controls {
    width: 67%;
    margin: 0;
    text-align: left;
    position: absolute;
    left: 0;
    bottom: -83px;
}

.owl-theme .owl-controls .owl-buttons div {
    width: 70px;
    height: 90px;
    line-height: 90px;
    background: transparent;
    border-radius: 0;
    opacity: 1;
    position: relative;
}

.owl-prev:before,
.owl-next:before {
    content: "\f177";
    font-family: "fontawesome";
    font-size: 40px;
    font-weight: 900;
    color: #141e44;
    position: absolute;
    top: 0;
    left: 25%;
}

.owl-next:before {
    content: "\f178";
}

.owl-next:after {
    content: " / ";
    font-size: 40px;
    color: #ddd;
    position: absolute;
    top: 0;
    left: -10px;
    display: none;
}

.why-choose h4 {
    color: white;
}

.why-choose h2,
.why-choose h3 {
    color: white;
    text-align: left;
    padding-top: 0;
}

section.home-bnnerwrp .form-banner .form-control {
    color: white;
    border: 2px solid #707070;
    color: #1A1A1A;
}

section.home-bnnerwrp .form-banner textarea::placeholder {
    color: #707070;
}

@media only screen and (max-width: 990px) {
    .testimonial {
        text-align: center;
    }

    .testimonial .pic {
        width: 200px;
        margin: 0 auto;
        float: none;
    }

    .testimonial .pic:before,
    .testimonial .pic:after {
        width: 80px;
        height: 100px;
    }

    .testimonial .testimonial-content {
        width: 100%;
        float: none;
    }

    .testimonial .title {
        padding: 15px 0 0 0;
    }

    .testimonial .post {
        padding: 0;
        margin-bottom: 10px;
    }

    .owl-theme .owl-controls {
        width: 100%;
        position: static;
        text-align: center;
    }

    .owl-theme .owl-controls .owl-buttons div {
        height: 50px;
        line-height: 50px;
    }
}

.testimonial .pic:before {
    display: none;
}

.testimonial .pic:after {
    display: none;
}

.demo .pic {
    /* background-image: url(../imgs/client-img-bg.webp); */
    /* background-repeat: no-repeat;
        background-size: 100%;
        height: 63em; */

    padding: 16px 20px !important;
    background: #141e44;
}

.testi-name.text-center.text-white {
    font-size: 25px;
    font-weight: 700;
}

.testi-designation.text-center.text-white {
    font-size: 16px;
}

/* portfolio ends */
.text-center.box-boxi1 {
    padding: 32px 15px;
    /* border-radius: 18px; */
    /* min-height: 286px; */

    box-shadow: 0px 1px 14px 0px #141e4454;
    height: 232px;
    border-radius: 8px;
}

h4.card-heading {
    font-size: 22px;
    color: #141e44;
    font-weight: 700;
}

a.card-sub-heading.text-center {
    font-size: 13px;
}

.sec-left {
    width: 80%;
    /* float: right; */

    margin-left: 72px;
    padding: 49px 0 0px 0 !important;
}

h2.main-heading.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: -20px;
}

p.foo.text-white {
    padding: 15px 0 15px 0;
}

.fotrnav:before {
    content: "";
    background-color: #ffffff6b;
    width: 1px;
    height: 200px;
    position: absolute;
    top: 20px;
    left: -20px;
}

.floatbutton .clickbutton .crossplus {
    color: #ffffff;
}

a.btn-main99 {
    padding: 15px 40px;
    border-radius: 0 !important;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    background: #ec0d72;
    /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */

    margin-right: 19px;
    transition: ease 0.5s;
    font-family: 'gothambold' !important;
}

a.btn-main99:hover {
    background-color: #381a4b !important;
    transition: ease 0.5s;
}

section.process {
    padding: 93px 0 120px 0;
}

section.ap-sec .card.mb-2:hover {
    /* transform: scale(1.2); */

    transition: ease 0.5s;
    padding: 70px 0px;
}

section.ap-sec .controls-top {
    display: none !important;
}

section.ap-sec .card.mb-2 {
    transition: ease 0.5s;
    cursor: pointer;
}

.process span.number-text {
    position: absolute;
    top: -80px;
    left: 50px;
    background: linear-gradient(to left, #cf00c9 0%, #000000 40%, #ce00ff 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 80px;
    z-index: -1;
    display: none;
}

.process .process-card:hover {
    transform: scale(1.1);
    background: #f04391;
    box-shadow: 0 0 3px 1px #fff;
}

.process .process-main-card {
    display: flex;
    justify-content: center;
}

.process .process-card {
    position: relative;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    transition: .3s all ease-in-out;
    background: #fff;
    box-shadow: 0 0 3px 1px #ee2b83;
    width: 250px;
    margin: 0 50px 0 0;
    height: 260px;
}

.process .process-card:hover img {
    filter: brightness(1);
}

.process .process-card:hover h4 {
    color: #fff;
}

.process .process-card:hover p {
    color: #fff;
}

.process .process-card a img {
    margin: 10px 0 10px 0;
    width: 50px;
    height: 50px;
    filter: brightness(0);
}

.process .process-card a h4 {
    color: #141e44;
    font-size: 17px;
    margin: 20px 0 0 0;
}

.process .process-card a p {
    color: #333;
    padding: 0;
    margin: 25px 0 20px 0;
    font-size: 14px;
}

/* landing */
.card.mb-22 {
    background: transparent;
    border: 1px solid black;
    padding: 62px 0;
    color: black !important;
    border-radius: 0px !important;
    cursor: pointer;
}

.card-inner-wrap {
    height: 23.5rem !important;
}

h4.card-titlee {
    color: black;
    padding: 4px 0px 6px 86px;
    font-size: 24px;
}

p.card-textt {
    color: black;
}

section.ap-secc {
    background-image: url(../imgs/apsec-bg.webp);
    padding: 156px 0 0 0;
    background-repeat: no-repeat;
    background-size: 100%;
    /* height: 117em; */
}

section.ap-secc h2.wow.fadeInDown {
    font-size: 45px;
}

section.ap-secc h2.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: -50px;
    right: 500px;
}

/* 
    .card.mb-22:before {
        content: url('/wikipedia/assets/imgs/pointer.svg');
        position:absolute;
        width: 50px;
        height: 40px;
        bottom: -41px;
        right: 0px;
        left: 0;
        z-index: -9999;
        margin: 0px auto;
    } */
section.ap-secc .card.mb-22:after {
    content: '';
    background-color: #ffffff;
    width: 42px;
    /* height: 22px; */

    height: 1px;
    position: absolute;
    bottom: -2px;
    right: 5px;
    left: 0;
    margin: 0px auto;
    z-index: 1;
}

section.ap-secc .card.mb-22:hover {
    /* background-color: #141e44; */

    background-image: linear-gradient(#141e44, #1B0F24);
    border-top: 3px solid #ec0d72;
}

section.ap-secc .card.mb-22:hover::after {
    background-color: #141e44 !important;
}

section.ap-secc .card.mb-22:hover img.card-img-top {
    filter: invert(1);
}

section.ap-secc .card.mb-22 img.card-img-top {
    /* filter: invert(1); */
}

section.ap-secc .card.mb-22:hover h4.card-titlee {
    color: #fff;
}

section.ap-secc .card.mb-22:hover p.card-textt {
    color: #fff;
}

/* section.ap-secc .card.mb-22:hover::before {
        
        content: url('/wikipedia/assets/imgs/pointerhover.svg');
    } */

/* CLIENT LOGO CUSTOM */

/* Slider */
.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/*  */
.slick-slide img {
    filter: brightness(0.8);
}

/* CLIENT LOGO CUSTOM ENDS*/
.our-cus-ser-wrap {
    /* overflow: scroll; */

    height: 460px;
    padding: 15px 0 !important;
}

.our-cus-ser-wrap h4 {
    padding: 1px 0px 10px 76px;
}

p.process-sub-heading {
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    margin: 0 0 100px 0;
}

.faq-intro-para {
    color: #000000;
    font-size: 25px;
    line-height: 50px;
    font-family: 'gothambold' !important;
    font-weight: 700;
}

.card-body.accordion-card {
    padding-left: 0;
    color: #000000 !important;
    font-size: 16px;
    line-height: 24px;
    font-family: 'gothamlight' !important;
}

a.card-sub-heading.text-center {
    font-size: 16px;
    font-family: 'gothamlight' !important;
    color: #000000 !important;
    font-weight: 600;
    line-height: 18px;
}

.wiki-partner-sec {
    padding-top: 70px;
    padding-bottom: 70px;
}

.ap-sec.why-choose {
    margin: 0;
}

.cta-sec {
    background: #dcdcdc;
    padding-top: 50px;
}

.inner-ser-banner {
    height: 100% !important;
}

.inner-ser-banner h4.wow.fadeInDown:before {
    display: none;
}

.inner-ser-banner .txtwrp h4 {
    font-size: 35px !important;
    margin-top: 0;
}

.inner-ser-banner {
    padding-top: 274px;
    padding-bottom: 100px;
}

.form-banner {
    border: 3px solid #ec0d72;
    padding: 28px;
    border-radius: 40px;
    padding-left: 22px;
    padding-right: 22px;
}


.form-banner {
    position: relative;
    z-index: 1;
}

.form-banner form.control {
    padding-left: 15px;
    background: transparent !important;
    border: 0px;
    height: 45px;
    color: #000;
    font-size: 14px;
    border-radius: 22px;
    z-index: 10;
    position: relative;
    margin-bottom: 20px;
}

.cta-sec p {
    margin-bottom: 0;
}

.inner-ser-banner {
    padding-right: 50px !important;
    padding-left: 50px !important;
}

/* Mobile Responsive Css */
@media (min-width: 300px) and (max-width: 768px) {
    /**/

    section.home-bnnerwrp.servicewrp.wiki-ser-head .form-wrap {
        display: none !important;
    }

    .ap-sec .our-cus-ser-wrap h4 {
        font-size: 23px !important;
    }

    .ap-sec p {
        text-align: center !important;
    }

    /**/

    .service-cetawrp a.btn-main99 {
        font-size: 16px !important;
    }

    /**/

    .ap-sec .our-cus-ser-wrap h4 {
        padding: 8px 0px 0px 0px;
        text-align: center;
    }

    h1.paymentForm {
        FONT-SIZE: 20PX !important;
    }

    .btmform input#free_cons_phone1 {
        width: 100% !important;
    }

    /* For mobile phones: */

    .col-12.col-md-6.whyuss {
        /* padding-left: 0px; */
        width: 100% !important;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 34px 28px;
    }

    .our-ser-bnnr {
        padding: 207px 0 70px;
    }

    section.home-bnnerwrp.servicewrp.wiki-ser-head {
        padding-bottom: 0px !important;
    }

    section.process a.btn-main99.wow.fadeInDown {
        width: 100% !important;
        margin-bottom: 0px !important;
    }

    .card-img-top {
        float: none !important;
        margin: 0px auto;
        display: table;
    }

    .service-carousel-wrap h4 {
        padding: 10px 0 0 !important;
        text-align: center !important;
        font-size: 20px !important;
    }

    section.banner2 a.btn-main.wow.fadeInDown {
        width: 100% !important;
    }

    section.premium-service-section h2 {
        font-size: 30px !important;
        margin-bottom: 10px !important;
    }

    section.premium-service-section h3.premium-service-subhd {
        font-size: 20px !important;
    }

    section.our-ser-bnnr p.main-pera.wow.fadeInDown {
        color: #fff !important;
        font-size: 17px !important;
    }

    section.our-ser-bnnr h2.main-heading.wow.fadeInDown {
        font-size: 22px !important;
    }

    section.banner2 h2.main-heading.wow.fadeInDown {
        font-size: 26px !important;
    }

    section.banner2 p.main-pera.wow.fadeInDown {
        color: #fff !important;
    }

    section.home-bnnerwrp a.btn-main.wow.fadeInDown.btn-main {
        width: 100% !important;
    }

    h2.myh2,
    h3.myh2 {
        font-size: 28px !important;
    }

    p.myp2 {
        font-size: 14px !important;
        padding-bottom: 10px !important;
    }

    section.ap-sec a.btn-main.wow.fadeInDown {
        width: 100%;
    }

    section.process h2.process-heading.text-center.wow.fadeInDown,
    section.process h3.process-heading.text-center.wow.fadeInDown,
    section.process h4.process-heading.text-center.wow.fadeInDown {
        font-size: 35px !important;
    }

    section.banner2 {
        padding-bottom: 20px !important;
    }

    .demo h1.title {
        font-size: 31px !important;
    }

    .mobile-nav-btn {
        z-index: 999;
        right: 8%;
        top: 26px;
        /* width: 100%; */
        position: absolute;
    }

    header .navtop ul li a {
        font-size: 12px;
    }

    header .navtop ul {
        text-align: left;
    }

    .top-head {
        padding: 0 0;
        margin: 0;
        width: 139%;
    }

    h4.wow.fadeInDown:before {
        content: "";
        background-color: #ec0d72;
        width: 100px;
        height: 4px;
        position: absolute;
        top: -11px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h4 {
        color: #ffffff;
        font-size: 12px;
        font-weight: 100 !important;
        margin-top: 88px;
        font-family: 'gothamlight' !important;
    }

    /* .home-bnnerwrp {
          padding: 210px 0 150px;
          background-image: url(/wikipedia/assets/imgs/hero-img.webp) !important;
          background-repeat: no-repeat;
          background-size: cover;
          overflow: hidden;
          height: 59em!important; 
          background-color: #f8f8f8;
      } */

    .clientswrp {
        padding: 61px 0 0 0px !important;
        text-align: center;
        display: block;
        /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
        width: 100%;
        margin: 0 0 -75px 0;
        position: relative;
        /* top: -120px; */
        height: 56vh;
        background: radial-gradient(190% 59% at bottom, transparent 52%, #f8f8f8 51%);
        z-index: -1;
        background-position: 40% 0px !important;
    }

    h2.myh2,
    h3.myh2 {
        font-size: 31px;
        text-align: center;
        font-weight: 700;
        text-transform: uppercase;
        font-family: 'gothambold' !important;
        color: #141e44;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    h2.myh2.wow.fadeInDown:before,
    h3.myh2.wow.fadeInDown:before {
        content: "";
        background-color: #ec0d72;
        width: 100px;
        height: 4px;
        position: absolute;
        top: -20px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }

    p.myp2 {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #000000;
        margin: 0 auto;
        /* width: 100% !important; */
        text-align: center;
    }

    .service-cetawrp {
        padding: 0px 0;
        /* margin: 0 auto; */
    }

    header.header-main {
        width: 100% !important;
    }

    img.lazy.loading {
        width: 100%;
    }

    section.ap-sec {
        padding: 65px 0 4px 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center right;
    }

    section.ap-sec h2.text-white.wow.fadeInDown,
    section.ap-sec h3.text-white.wow.fadeInDown {
        font-size: 36px;
    }

    .ap-sec p {
        color: #ffffff;
        font-size: 13px;
        font-weight: 100;
        text-align: left;
    }

    section.ap-sec ol.carousel-indicators {
        bottom: -26px;
    }

    h2.process-heading.text-center.wow.fadeInDown,
    h3.process-heading.text-center.wow.fadeInDown,
    h4.process-heading.text-center.wow.fadeInDown {
        color: #141e44;
        font-size: 40px;
        text-transform: uppercase;
    }

    section.process {
        padding: 29px 0 70px 0;
    }

    h2.text-white.wow.fadeInDown {
        font-size: 29px;
    }

    h2.text-white.wow.fadeInDown:before {
        content: "" !important;
        background-color: #ec0d72 !important;
        width: 100px !important;
        height: 4px !important;
        position: absolute !important;
        top: -11px !important;
        right: 0 !important;
        left: 0 !important;
        margin: 0 auto !important;
    }

    .counter-box.colored {
        border-left: none;
    }

    .counter-box {
        background: transparent;
        border-right: none;
    }

    .faq-intro-para {
        color: #000000;
        font-size: 18px;
        text-align: center;
        line-height: 17px;
        font-family: 'gothambold' !important;
        font-weight: 700;
    }

    div#accordion {
        box-sizing: border-box;
        padding: 0px 25px 0px 25px;
    }

    section.process img {
        display: none !important;
    }

    section.process {
        padding-bottom: 10px;
    }

    .testimonial .title {
        display: block;
        font-size: 36px;
        font-weight: 700;
        color: #141e44;
        margin: 0;
        text-transform: uppercase;
        padding-left: 15px;
    }

    .testimonial .description {
        font-size: 16px;
        color: #000;
        padding: 26px 15px;
        margin: 0;
        position: relative;
    }

    .testimonial .description {
        font-size: 16px;
        color: #000;
        padding: 26px 15px;
        margin: 0;
        position: relative;
    }

    .sec-left {
        width: 100%;
        padding: 49px 0 0px 0 !important;
        margin: 0 auto;
    }

    .field-msg textarea {
        background-color: #ffffff;
        width: 100% !important;
        padding: 15px 15px;
        border: 0;
        color: #9b9fa6;
        overflow: hidden;
        height: 110px;
        margin: 0 auto;
        border: 2px solid #ec0d72;
        resize: none;
        outline: none;
    }

    h2.main-heading.wow.fadeInDown:before {
        content: "";
        background-color: #ec0d72;
        width: 100px;
        height: 4px;
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    section.btmform h2 {
        font-size: 26px;
        /* margin: 0 auto; */
        text-align: center;
    }

    .testimonial .pic {
        width: 100%;
        margin: 0 auto;
        float: none;
    }

    .field-btn {
        padding: 18px !important;
    }

    .field-msg {
        padding: 5px 5px 5px 5px !important;
        margin: 0 auto !important;
        width: 25.4em !important;
    }

    .btmform {
        z-index: 2;
        position: relative;
        padding: 0px !important;
    }

    footer {
        padding: 160px 0 50px !important;
        /* background-image: url(../imgs/footer-bg.webp); */
        background-repeat: no-repeat;
        background-size: cover;
    }

    a.btn-main99 {
        padding: 15px 40px;
        border-radius: 0 !important;
        color: #ffffff;
        font-weight: 700;
        font-size: 18px;
        background: #ec0d72;
        /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
        margin-right: 19px;
        transition: ease 0.5s;
        font-family: 'gothambold' !important;
        margin: 11px;
    }

    /*  */

    h2.text-white.wow.fadeInDown.xyz:before {
        content: "" !important;
        background-color: #ec0d72 !important;
        width: 100px !important;
        height: 4px !important;
        position: absolute !important;
        top: 43px !important;
        right: 0 !important;
        left: 0 !important;
        margin: 0 auto !important;
    }

    /*  */

    .home-bnnerwrp {
        height: auto !important;
    }

    /* inner  */

    .premium-service-section {
        padding: 5rem 0 3rem 0 !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
    }

    .premium-services-wrap {
        height: auto !important;
    }

    .btnwrp {
        display: flex !important;
        flex-wrap: wrap !important;
        /* justify-content: center !important; */
    }

    h2.main-heading {
        color: #fff;
        font-size: 36px;
        text-align: center;
    }

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

    .submit {
        border: 0;
        font-family: 'gothamlight';
        font-size: 18px;
        color: #fff;
        line-height: 2;
        padding: 7px 31px;
        outline: none;
        cursor: pointer;
        transition: background-color .3s;
        border-radius: 5px;
        background: #ec0d72 !important;
        /* background-image: linear-gradient(to right top, #0569d7, #042888); */
        /* border-radius: 35px; */
        font-family: 'gothambold' !important;
        display: flex;
        /* justify-content: center; */
        margin: 0 auto;
    }
}

p.main-pera {
    color: #000;
    /* margin-left: -39px; */
}

/* Mobile Responsive Css ends*/

/* Ipad Responsive CSs */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .our-cus-ser-wrap {
        height: 440px !important;
    }

    .ap-sec .our-cus-ser-wrap h4 {
        font-size: 18px !important;
    }

    section.ap-sec .card-body {
        padding: 20px 6px !important;
    }

    body .home-bnnerwrp {
        background-position: 66% 0px !important;
    }

    section.home-bnnerwrp h4.wow.fadeInDown::before {
        left: 0px !important;
        right: auto !important;
    }

    section.home-bnnerwrp.servicewrp.wiki-ser-head {
        height: auto !important;
    }

    .home-bnnerwrp .txtwrp p {
        width: 80% !important;
    }

    .form-wrap h1 span {
        font-size: 19px !important;
        line-height: 21px !important;
    }

    .service-carousel-wrap {
        height: auto !important;
    }

    section.ap-sec .btnwrp.mt-7.text-center {
        margin: 30px auto 0 !important;
        display: table !important;
        padding-bottom: 30px !important;
    }

    section.process {
        padding: 60px 0 50px !important;
    }

    section.banner2 {
        padding-bottom: 20px !important;
    }

    .counter-box p {
        font-size: 14px !important;
    }

    .counter-box {
        padding: 40px 0px 39px !important;
    }

    section.service-cetawrp h2.myh2.wow.fadeInDown.mt-15.mb-15,
    section.service-cetawrp h3.myh2.wow.fadeInDown.mt-15.mb-15 {
        text-align: center !important;
    }

    section.service-cetawrp p.faq-intro-para {
        text-align: center !important;
    }

    .demo {
        padding-top: 102px !important;
        height: 59em !important;
    }

    .top-head {
        padding: 0 0;
        margin: 0;
        width: 100%;
        margin-top: 21px;
    }

    .premium-services-wrap {
        height: 51em !important;
    }

    .txtdiv {
        width: 140%;
    }

    .top-head .container:before {
        right: 26% !important;
    }

    .mobile-nav-btn span {
        background-color: #ffffff;
    }

    .mobile-nav-btn span:before,
    .mobile-nav-btn span:after {
        background-color: white;
    }

    header .navwrp {
        /* display: none !important; */
    }

    header .logowrp img {
        padding-top: 11px;
    }

    .home-bnnerwrp {
        background-position: center center;
    }

    .home-bnnerwrp .txtwrp {
        width: 100%;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        font-size: 27px;
    }

    section.home-bnnerwrp a.btn-main.wow.fadeInDown.btn-main {
        padding: 14px 14px;
        font-size: 12px;
        width: auto !important;
    }

    .mobile-nav-btn {
        right: 14%;
        top: 78px;
    }

    .clientswrp {
        height: 29vh !important;
    }

    img.lazy {
        width: 100% !important;
    }

    .our-cus-ser-wrap h4 {
        display: inline-block;
        padding: 9px 0;
        text-align: center;
        font-size: 17px;
        margin: 0 auto;
    }

    .card-img-top {
        width: 29%;
        display: block;
        margin: 0 auto;
        align-items: center;
    }

    .card-img-top {
        width: 29%;
        display: block !important;
    }

    .ap-sec p {
        font-size: 12px !important;
    }

    h2.process-heading.text-center.wow.fadeInDown:before,
    h3.process-heading.text-center.wow.fadeInDown:before,
    h4.process-heading.text-center.wow.fadeInDown:before {
        content: "";
        background-color: #ec0d72;
        width: 100px;
        height: 4px;
        position: absolute;
        top: -20px;
        right: 500px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .demo {
        padding: 156px 0 0 0;
        background-repeat: no-repeat;
        background-size: 100%;
        height: 74em;
        background-size: cover !important;
    }

    .home-bnnerwrp {}

    .card-body img.card-img-top {
        margin: 0px auto !important;
        display: table !important;
        width: 40% !important;
        float: none !important;
    }

    .our-cus-ser-wrap h4 {
        display: inline-block;
        text-align: center !important;
        width: 100% !important;
    }

    .ap-sec p {
        text-align: center !important;
    }

    .testimonial .pic {
        width: 100%;
        margin: 0 auto;
        float: none;
        background-repeat: no-repeat !important;
        background-size: cover;
    }

    .btmform .col-lg-3 {
        display: none;
    }

    .btmform .col-lg-6 {
        width: 100%;
        min-width: 100%;
    }

    p.main-pera {
        color: #fff;
        text-align: center;
    }

    /* .field {
        padding: 5px 0px 10px 31px;
        display: inline;
    } */

    .field-msg {
        padding: 5px 5px 5px 5px !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .fotrnav:before {
        content: "";
        background-color: #ffffff6b;
        width: 1px;
        height: 137px;
        position: absolute;
        top: 20px;
        left: -5px;
    }

    footer .fotrnav ul li a img {
        position: absolute;
        right: 124px;
        bottom: 0;
    }

    footer .fotrnav ul li a {
        color: #fff;
        font-size: 9px;
        transition: all 0.3s ease;
        display: flex;
        line-height: 2;
        margin: 0 auto;
    }

    footer .logowrp p {
        padding: 22px 0 30px;
        font-size: 11px;
        color: #fff;
    }

    .field input,
    .field select {
        background-color: #ffffff;
        width: 49%;
        margin-bottom: 20px;
        padding: 15px 15px;
        order: 0;
        /* border-radius: 35px; */
        color: #9b9fa6;
        border: 1px solid #9b9fa673;
        border: 2px solid #ec0d72;
        outline: none;
        /* box-shadow: 1px 1px 18px 0px rgb(0 0 0 / 20%), 0 2px 25px -5px rgb(0 0 0 / 10%), 1px 5px 1px rgb(0 0 0 / 5%); */
    }

    .submit {
        font-family: 'gothambold' !important;
        margin: 0 auto !important;
        display: flex;
        width: 31%;
    }
}

/* Ipad Responsive CSs  Ends*/

/* laptop Responsive Css */
@media only screen and (min-width:1200px) and (max-width:1600px) {
    .process .process-card {
        width: 237px !important;
        margin: 0 20px 0 0 !important;
        height: 284px;
    }
}

@media only screen and (min-width:1200px) and (max-width:1440px) {
    .home-bnnerwrp {
        background-position: 71% !important;
    }

    .col-12.col-md-6.whyuss {
        padding-left: 61px;
    }

    img#why-us {
        width: 90%;
        margin: 0 0 44px 0;
    }

    p.myp2 {
        width: 91%;
    }

    .demo {
        background-size: cover;
        height: 55em;
    }

    section.btmform a.card-sub-heading.text-center {
        font-size: 13px !important;
    }

    section.btmform .text-center.box-boxi1 {
        padding: 40px 10px !important;
    }

    section.btmform .col-lg-3.col-sm-12.phone-img {
        max-width: 25% !important;
        position: relative;
        left: -80px;
    }

}

section.our-ser-bnnr p.main-pera.wow.fadeInDown {
    color: white;
    text-align: center;
}

.our-ser-bnnr h2.main-heading.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.banner2 h2.main-heading.wow.fadeInDown:before {
    content: "";
    background-color: #ec0d72;
    width: 100px;
    height: 4px;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* small laptop Responsive Css ends */
@media only screen and (min-device-width:1200px) and (max-width:1440px) {
    .navwrp ul li a.btnwrp {
        right: -2% !important;
        top: 18px !important;
    }

    .navwrp ul {
        margin: 16px 0px !important;
        padding: 5px 0;
        margin-left: -15px !important;
    }

    .sec-right {
        width: 20%;
        position: absolute;
        top: 30px;
        width: 129%;
        height: 95%;
        right: 9px;
        /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
        border-radius: 29px;
    }
}

/* small laptop Responsive Css ends */

/*Desktop Css SB*/
@media only screen and (min-width: 1441px) and (max-width: 1700px) {
    .clientswrp {
        height: 31vh;
    }

    .service-cetawrp .col-12.col-md-6.whyuss {
        padding-left: 68px;
    }

    .service-cetawrp img#why-us {
        width: 89%;
        margin: 0 0 44px 0;
    }

    .demo {
        padding: 156px 0 0 0;
        background-repeat: no-repeat;
        background-size: cover !important;
        height: 63em;
    }

    .btmform .sec-right {
        right: 120px;
    }

    .btmform .sec-right {
        width: 20%;
        position: absolute;
        top: 30px;
        width: 129%;
        height: 95%;
        right: -2px;
        /* background-image: linear-gradient(to right top, #0569d7, #0858c3, #0948af, #07389c, #042888); */
        border-radius: 29px;
    }

    .btmform .contact-img {
        height: 100%;
        background-image: url(../imgs/phone.webp);
        background-repeat: no-repeat;
        /* padding-right: 74px !important; */
        left: -65px;
        position: relative;
    }

    .home-bnnerwrp {
        background-position: center;
    }
}

/**/

/**/
.btmform input#free_cons_phone1 {
    width: 89%;
}

.home-bnnerwrp {
    MARGIN: -22px 0 !important;
}

.preloader .preloader-after,
.preloader .preloader-before {
    background-image: linear-gradient(96deg, #421e57 0%, #290b3a 100%) !IMPORTANT;
}

/*Foam css*/
.order-form section.content.free-consult:before {
    content: '';
    background-image: url('../imgs/land_page/modal_img.webp') !important;
    width: 110% !important;
    background-size: 440px;
    display: inline-block;
    background-repeat: no-repeat;
    position: absolute;
    top: -57px;
    right: 0;
    left: 0;
    height: 543px;
}

h2.text-center.pkg-name {
    color: #000 !important;
}

.free-consult .form input {
    border-color: #54256f !important;
}

.row.justify-content-center h2.text-center.pkg-name {
    display: none !important;
}

section.content.free-consult {
    background-color: #fff !important;
    height: 460px !important;
}

form#ordernow-form {
    padding-top: 2px !important;
}

.free-consult .form .primary-btn {
    background: #ed1272;
}

.order-form .close-icon {
    background-color: #ed1272 !important;
}

/**/
.order-form1 {
    display: none;
}

.inner-ser-banner .txtwrp h4 {
    font-size: 50px !important;
}

.process-card p {
    height: 100px !important;
    overflow: auto;
    margin-bottom: 20px;
}

.process .process-card {
    height: 310px;
}

.process .process-card p::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #ec0d72 !important;
    border: 1px solid #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

.why-choose-list li {
    font-size: 16px;
    color: white;
    padding-top: 10px;
    list-style: disc;
}

/**/
@media (min-width: 300px) and (max-width: 768px) {
    .service-cetawrp a.btn-main99 {
        font-size: 15px !important;
        display: table !important;
        margin: 0 auto !important;
    }

    .btmform .field {
        padding: 0 !important;
    }

    .btmform .field-msg {
        width: 100% !important;
        padding: 0 !important;
    }
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {}

@media only screen and (min-width: 1445px) and (max-width: 1599px) {}

@media only screen and (min-width: 1366px) and (max-width: 1444px) {}

@media only screen and (min-width: 1024px) and (max-width: 1399px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .process .process-card {
        margin: 0 50px 41px 0;
        height: 260px;
        width: 90%;
    }

    .home-bnnerwrp .txtwrp {
        width: 100%;
    }

    section.home-bnnerwrp h4.wow.fadeInDown::before {
        left: 0px !important;
        right: 0 !important;
        top: 71px;
        margin: 0 auto;
    }

    .field-msg textarea {
        width: 100%;
        border: 2px solid #ec0d72;
    }

    .btmform input#free_cons_phone1 {
        width: 99%;
    }

    .demo .pic {
        background: transparent;
    }

    .btmform h2 {
        text-align: center;
    }

    body .home-bnnerwrp {}

    .home-bnnerwrp {
        padding: 182px 0 23px !important;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        padding: 0;
    }

    .testi-name.text-center.text-white {
        color: #d52087 !important;
    }

    .process .process-main-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .mainwpp span.about-us-nwpp {
        text-align: center;
    }

    h2.myh2.wow.fadeInDown:before,
    h3.myh2.wow.fadeInDown:before {
        top: -12px;
        right: 0;
        top: 0;
        left: 0;
        text-align: center;
        margin: 0 auto;
    }

    h2.myh2,
    h3.myh2 {
        padding: 20px 0;
    }

    p.myp2 {
        width: 100%;
        font-size: 15px;
    }

    .service-cetawrp img {
        width: 100% !important;
        margin: 39px auto 0;
        display: block;
    }

    .service-cetawrp h2 {
        text-align: center !important;
        font-size: 23px;
    }

    .testimonial .pic img {
        width: 19%;
        border-radius: 77px;
    }

    .mainwpp {
        padding: 0 66px;
    }

    .navwrp ul li a.btnwrp {
        position: absolute;
        right: -4% !important;
        top: 31px !important;
        padding: 5px 6px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .process .process-card {
        margin: 0 50px 41px 0;
        height: 260px;
        width: 90%;
    }

    header .navwrp {
        display: none !important;
    }

    .home-bnnerwrp {
        padding: 182px 0 23px !important;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        padding: 0;
    }

    .process .process-main-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .mainwpp span.about-us-nwpp {
        text-align: center;
    }

    h2.myh2.wow.fadeInDown:before,
    h3.myh2.wow.fadeInDown:before {
        top: -12px;
    }

    h2.myh2,
    h3.myh2 {
        padding: 20px 0;
    }

    p.myp2 {
        width: 73%;
    }

    .service-cetawrp img {
        width: 72% !important;
        margin: 39px auto 0;
        display: block;
    }

    .service-cetawrp h2 {
        text-align: center !important;
    }

    .testimonial .pic img {
        width: 19%;
        border-radius: 77px;
    }

    .navbar ul li {
        padding: 6px 0;
    }

    .navbar ul li a.btnwrp {
        padding: 9px 23px 6px;
        width: 100%;
    }
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    .process .process-card {
        margin: 0 50px 41px 0;
        height: 260px;
        width: 90%;
    }

    .home-bnnerwrp {
        padding: 182px 0 23px !important;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        padding: 0;
    }

    .process .process-main-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .mainwpp span.about-us-nwpp {
        text-align: center;
    }

    h2.myh2.wow.fadeInDown:before,
    h3.myh2.wow.fadeInDown:before {
        top: -12px;
    }

    h2.myh2,
    h3.myh2 {
        padding: 20px 0;
    }

    p.myp2 {
        width: 73%;
    }

    .service-cetawrp img {
        width: 72% !important;
        margin: 39px auto 0;
        display: block;
    }

    .service-cetawrp h2 {
        text-align: center !important;
    }

    .testimonial .pic img {
        width: 19%;
        border-radius: 77px;
    }

    .home-bnnerwrp .txtwrp p {
        font-size: 13px;
        line-height: 25px;
    }

    .home-bnnerwrp {}

    .order-form section.content.free-consult:before {
        background-size: 340px;
        height: 454px;
    }

    .top-head .container:before {
        width: 100%;
        background-color: #141e44;
        right: 0;
        clip-path: none;
    }

    .top-head {
        width: 100%;
        padding: 20px 0;
    }

    header .logowrp {
        margin: -16px 0;
    }

    p.process-sub-heading {
        margin: 12px 0;
    }

    footer {
        text-align: center;
    }

    .submit {
        width: 72%;
    }

    .navbar ul li {
        padding: 6px 0;
    }

    .navbar ul li a.btnwrp {
        align-items: center;
        justify-content: center;
    }
}

@media only screen and (min-width: 1600px) {
    .inner-ser-banner {
        padding-right: 100px !important;
        padding-left: 100px !important;
    }

}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    .process .process-card {
        margin: 0 50px 41px 0;
        height: 186px;
        width: 90%;
    }

    .navbar ul li {
        padding: 6px 0;
    }

    .home-bnnerwrp {}

    .home-bnnerwrp {
        padding: 180px 0 22px !important;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        padding: 0;
        font-size: 23px;
    }

    .process .process-main-card {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .mainwpp span.about-us-nwpp {
        text-align: center;
    }

    h2.myh2.wow.fadeInDown:before,
    h3.myh2.wow.fadeInDown:before {
        top: -12px;
    }

    h2.myh2,
    h3.myh2 {
        padding: 20px 0;
    }

    p.myp2 {
        width: 73%;
    }

    .service-cetawrp img {
        width: 72% !important;
        margin: 39px auto 0;
        display: block;
    }

    .service-cetawrp h2 {
        text-align: center !important;
    }

    .testimonial .pic img {
        width: 45%;
        border-radius: 77px;
    }

    .home-bnnerwrp .txtwrp p {
        font-size: 13px;
        line-height: 25px;
    }

    .order-form section.content.free-consult:before {
        background-size: 340px;
        height: 454px;
    }

    .top-head .container:before {
        width: 100%;
        background-color: #141e44;
        right: 0;
        clip-path: none;
    }

    .top-head {
        width: 100%;
        padding: 20px 0;
    }

    header .logowrp {
        margin: -16px 0;
    }

    p.process-sub-heading {
        margin: 12px 0;
    }

    footer {
        text-align: center;
    }

    .submit {
        width: 72%;
    }

    .navbar ul {
        background: white;
        position: relative;
        left: 0;
        top: 30px;
    }

    .navbar ul li a.btnwrp {
        align-items: center;
        justify-content: center;
    }
}






@media only screen and (max-width: 767px) {
    .process .process-card {
        width: 100%;
        height: auto;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h4 {
        margin-top: 40px;
    }

    .inner-ser-banner .txtwrp h4 {
        font-size: 25px !important;
    }

    .home-bnnerwrp {
        /* padding: 184px 30 23px; */
        height: auto !important;
    }
}

.our-cus-ser-wrap {
    height: 350px;
}

@media only screen and (max-width: 991px) {
    .navbar .dropdown {
        display: grid;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .navbar .dropdown a {
        text-align: center;
    }

    header .navtop {
        width: 110% !important;
    }
}

.banner-brands {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.banner-brands img {
    width: 130px;
    height: 40px;
    object-fit: contain;
    margin: 0 10px 0;
}


.form-banner {
    background: #fff;
    border: 2px solid #fff;
    padding: 25px 25px;
    border-radius: 20px;
    width: 75%;
    margin: 0 auto;
}

.form-banner h2 {
    color: #1A1A1A;
    font-size: 30px;
    font-weight: bold;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0px;
    z-index: 1;
    padding: 0;
}

.form-banner span {
    color: #ec0d72;
    font-size: 34px;
}

.form-group-select h4 {
    color: #707070;
    font-size: 18px;
    line-height: 24px;
    margin: 0px 0 10px;
}

.form-banner .form-group-select .form-check-flex .form-check {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.form-banner .form-group-select .form-check-flex .form-check .form-check-input {
    background-color: #FFFFFF;
    border: 2px solid #707070;
    outline: none;
    box-shadow: none;
    margin: 0 0px 0 0;
    cursor: pointer;
}

.form-banner .form-group-select .form-check-flex .form-check .form-check-input:checked[type=checkbox] {
    background-color: #ec0d72;
    border: 2px solid #ec0d72;
}

.form-banner .form-group-select .form-check-flex .form-check .form-check-label {
    font-family: 'gothambold' !important;
    color: #262626;
    font-size: 14px;
    margin: 0 0 0 17px;
}

.form-banner input.form-control::placehoder {
    color: #707070 !important;
}

.form-banner .form-control::placeholder {
    color: #000 !important;
}

.form-banner {
    position: relative;
    z-index: 1;
}

.form-banner button.btn-submit {
    background: #ec0d72;
    color: #fff;
    font-weight: 800;
    padding: 10px 10px;
}

.home-bnnerwrp {
    padding: 195px 140px 25px !important;
}

.home-bnnerwrp::after {
    opacity: 0 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
    color: white;
    color: white;
    text-align: center;
    padding: 5px 0px 5px 0px;
    width: 91%;
}

.service-featured {
    padding: 156px 0;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 117em;
    background-image: url('../images/section-featured.webp');
}

.home-bnnerwrp {
    background-image: url('../images/banner-img.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 195px 0 25px;
    overflow: hidden;
    /* z-index: -9999; */
    background-color: #f8f8f8;
    position: relative;
}

.home-bnnerwrp::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #141e44bd;
}

header .navtop {
    width: 107% !important;
}

@media (max-width: 767px) {
    .form-banner {
        margin-top: 30px;
    }

    .home-bnnerwrp {
        height: 100rem !important;
    }

    section.home-bnnerwrp .form-banner h2 {
        padding: 0 !important;
    }
}

.sections-gray {
    background: #f2f5f5;
    padding: 100px 0;
}

.cta-sec {
    background: #dcdcdc;
    padding-top: 50px;
}

.cta-sec p.process-sub-heading {
    margin: 0 !important;
}

.form-banner {
    background: #fff;
    border: 2px solid #fff;
    padding: 25px 25px;
    border-radius: 20px;
    width: 75%;
    margin: 0 auto;
}

.form-banner h2 {
    color: #1A1A1A;
    font-size: 30px;
    font-weight: bold;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0px;
    z-index: 1;
    padding: 0;
}

.form-banner span {
    color: #ec0d72;
    font-size: 34px;
}

.form-group-select h4 {
    color: #707070;
    font-size: 18px;
    line-height: 24px;
    margin: 0px 0 10px;
}

.form-banner .form-group-select .form-check-flex .form-check {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.form-banner .form-group-select .form-check-flex .form-check .form-check-input {
    background-color: #FFFFFF;
    border: 2px solid #707070;
    outline: none;
    box-shadow: none;
    margin: 0 0px 0 0;
    cursor: pointer;
}

.form-banner .form-group-select .form-check-flex .form-check .form-check-input:checked[type=checkbox] {
    background-color: #ec0d72;
    border: 2px solid #ec0d72;
}

.form-banner .form-group-select .form-check-flex .form-check .form-check-label {
    font-family: 'gothambold' !important;
    color: #262626;
    font-size: 14px;
    margin: 0 0 0 17px;
}

.form-banner input.form-control::placehoder {
    color: #707070 !important;
}

.form-banner .form-control::placeholder {
    color: #000 !important;
}

.form-banner {
    position: relative;
    z-index: 1;
}

.form-banner button.btn-submit {
    background: #ec0d72;
    color: #fff;
    font-weight: 800;
    padding: 10px 10px;
}

.home-bnnerwrp {
    padding: 195px 140px 25px !important;
}

.home-bnnerwrp::after {
    opacity: 0 !important;
}

@media only screen and (min-width: 1300px) and (max-width: 1444px) {
    .home-bnnerwrp {
        padding: 195px 120px 25px !important;
    }

    .form-banner {
        width: 90% !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1299px) {
    .home-bnnerwrp {
        padding: 195px 100px 25px !important;
    }

    .form-banner {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1299px) {
    .home-bnnerwrp {
        padding: 195px 75px 25px !important;
    }

    .form-banner {
        width: 100% !important;
    }
}

@media only screen and (min-width: 991px) and (max-width: 1199px) {
    .home-bnnerwrp {
        padding: 195px 50px 25px !important;
    }

    .form-banner {
        width: 100% !important;
    }

    .home-bnnerwrp .txtwrp h2 {
        font-size: 38px;
        line-height: 50px;

    }
}

@media only screen and (min-width: 768px) and (max-width: 990px) {
    .home-bnnerwrp {
        padding: 195px 30px 25px !important;
    }

    .form-banner {
        width: 100% !important;
    }

    .home-bnnerwrp .txtwrp h2 {
        font-size: 38px;
        line-height: 50px;

    }

    .form-banner h2 {
        font-size: 22px;
    }

    .form-banner span {
        font-size: 22px;
    }

    .banner-brands img {
        width: 100px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 767px) {
    .home-bnnerwrp {
        padding: 195px 30px 25px !important;
    }

    .form-banner {
        width: 100% !important;
    }

    .home-bnnerwrp .txtwrp h2 {
        font-size: 30px;
        line-height: 35px;
    }

    .form-banner h2 {
        font-size: 22px;
    }

    .form-banner span {
        font-size: 22px;
    }

    .banner-brands {
        margin: 20px 0 !important;
        justify-content: center;
    }

    .banner-brands img {
        width: 100px;
    }
}

/* ----------------------------------------------- */








@media only screen and (min-width: 1300px) and (max-width: 1444px) {
    .home-bnnerwrp {
        padding: 195px 120px 25px !important;
    }

    .form-banner {
        width: 90% !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1299px) {
    .home-bnnerwrp {
        padding: 195px 100px 25px !important;
    }

    .form-banner {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1299px) {
    .home-bnnerwrp {
        padding: 195px 75px 25px !important;
    }

    .form-banner {
        width: 100% !important;
    }
}

@media only screen and (min-width: 991px) and (max-width: 1199px) {
    .home-bnnerwrp {
        padding: 195px 50px 25px !important;
    }

    .form-banner {
        width: 100% !important;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        font-size: 38px;
        line-height: 50px;

    }
}

@media only screen and (min-width: 768px) and (max-width: 990px) {
    .home-bnnerwrp {
        padding: 195px 30px 25px !important;
    }

    .form-banner {
        width: 100% !important;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        font-size: 38px;
        line-height: 50px;

    }

    .form-banner h2 {
        font-size: 22px;
    }

    .form-banner span {
        font-size: 22px;
    }

    .banner-brands img {
        width: 100px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 767px) {
    .home-bnnerwrp {
        padding: 195px 30px 25px !important;
    }

    .form-banner {
        width: 100% !important;
    }

    .home-bnnerwrp .txtwrp h1,
    .home-bnnerwrp .txtwrp h2 {
        font-size: 38px;
        line-height: 50px;

    }

    .form-banner h2 {
        font-size: 22px;
    }

    .form-banner span {
        font-size: 22px;
    }

    .banner-brands {
        margin: 20px 0 !important;
        justify-content: center;
    }

    .banner-brands img {
        width: 100px;
    }
}

.sec-subheading{
    font-size: 1.25rem;
}