/* @import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,700,900|Open+Sans:300,400,600,700'); */


#jqcheck {
    background: #fff9d7;
    text-align: center;
    color: #333;
    padding: 10px 0px;
    font-size: 13px;
    font-weight: bold;
    position: fixed;
    z-index: 9991;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

* {
    margin: 0px;
    padding: 0px;
}

/* text selection color */
::-moz-selection {
    background: var(--primary-color);
    color: var(--theme-white);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--theme-white);
    text-shadow: none;
}

/* browser scroller style */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    background-color: #ecedf1;
    -webkit-border-radius: 0px;
    border-left: 1px solid #888;
}

::-webkit-scrollbar-thumb:vertical {
    -webkit-border-radius: 0px;
    background: var(--primary-color);
}


@media screen and (-webkit-min-device-pixel-ratio:0) {
    select {
        -webkit-appearance: none !important;
        line-height: 28px !important;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--default-color);
    font-size: var(--base-font-size);
    position: relative;
}
.lng-mobile{
    display: none ;
}
/* font family */
.ff-primary {
    font-family: 'Poppins', sans-serif;
}

.ff-secondary {
    font-family: 'Poppins', sans-serif;
}

/* font colors */
.fc-primary {
    color: var(--primary-color);
}

.fc-secondary {
    color: var(--secondary-color);
}

.fc-dark {
    color: var(--theme-dark);
}

.fc-lite {
    color: var(--theme-lite);
}

/* buttons */
.primary-btn,
.secondary-btn {
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 8px 15px;
    position: relative;
    display: table;
    border-radius: 3px;
}

.primary-btn:after,
.secondary-btn:after {
    content: "\e957";
    font-family: 'icomoon' !important;
    font-size: 13px;
    color: white;
    padding-left: 10px;
    display: table-cell;
    vertical-align: middle;
}

.primary-btn {
    background: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background: var(--primary-color-dark);
    color: white;
}

.secondary-btn {
    background: var(--secondary-color);
    color: white;
}

.secondary-btn:hover {
    background: var(--secondary-color-dark);
    color: white;
}

.banner-btn {
    text-transform: capitalize;
    display: inline-block;
    transform: translateY(0rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #fff !important;
    background-color: transparent;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #fff !important;
}


.secpad-100 {
    padding: 100px 0;
}


.sm-btn {
    font-size: 14px;
}

.md-btn {
    font-size: 16px;
}

.lg-btn {
    font-size: 18px;
}

.xl-btn {
    font-size: 20px;
}

/* headings */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p {
    margin: 0;
    padding: 0;
}

h1,
.h1,
h2,
.h2 {
    font-family: 'Poppins', sans-serif;
}

h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: 'Poppins', sans-serif;
    padding-bottom: 10px;
    color: var(--theme-dark);
}

h2,
.h2 {
    font-size: 6.7vmin;
}

h3,
.h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
}

h4,
.h4 {
    font-size: var(--font-size-h4);
}

h5,
.h5 {
    font-size: var(--font-size-h5);
}

h6,
.h6 {
    font-size: var(--font-size-h6);
}

p {
    /*font-size: var(--base-font-size);*/
}

p {
    font-weight: 400;
    line-height: 1.4;
    padding: 0 0 20px;
    margin: 0px;
    /* color: #687087; */
}

/*** theme sections padding ***/
.sec-padding-100 {
    padding: 100px 0;
}

.sec-padding-90 {
    padding: 90px 0;
}

.sec-padding-80 {
    padding: 80px 0;
}

.sec-padding-70 {
    padding: 70px 0;
}

.sec-padding-60 {
    padding: 60px 0;
}

.sec-padding-xlarge {
    padding: 50px 0;
}

.sec-padding-large {
    padding: 40px 0;
}

.sec-padding-medium {
    padding: 30px 0;
}

.sec-padding-small {
    padding: 25px 0;
}

.sec-padding-xsmall {
    padding: 10px 0;
}

/*** theme sections margin ***/
.sec-margin-100 {
    margin: 100px 0;
}

.sec-margin-90 {
    margin: 90px 0;
}

.sec-margin-80 {
    margin: 80px 0;
}

.sec-margin-70 {
    margin: 70px 0;
}

.sec-margin-60 {
    margin: 60px 0;
}

.sec-margin-xlarge {
    margin: 50px 0;
}

.sec-margin-large {
    margin: 40px 0;
}

.sec-margin-medium {
    margin: 30px 0;
}

.sec-margin-small {
    margin: 25px 0;
}

.sec-margin-xsmall {
    margin: 10px 0;
}

.btnwrp a {
    display: inline-block;
}

/*** 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;
}

.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(to right, #cb568a, #b10655);
}

.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
}


.tt-uppercase {
    text-transform: uppercase;
}

.tt-capitalize {
    text-transform: capitalize;
}



p strong {
    color: black;
}

p span {
    color: black;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

img {
    border: 0px;
    outline: none;
}

/*img { max-width: 100%;  }*/
ul,
li {
    list-style-type: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

h2,
.h2 {
    /* color: #171717; */
    line-height: 1.2;
    font-weight: 700;
    padding: 0 0 15px 0;
    position: relative;
    letter-spacing: -1px;
}

h2 span,
.h2 span {
    color: var(--primary-color);
}

a {
    text-decoration: none;
}

.list-simple {
    list-style: none;
    margin: 0 0 15px 0;
    width: 100%;
    display: inline-block;
}

.list-simple li {
    color: var(--default-color);
    padding: 0 0 10px 16px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

.list-simple li:before {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 13px;
    color: var(--secondary-color);
    content: "\e93a";
    font-family: 'icomoon' !important;
}

/*** morefull block link ***/
.moreFull {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-indent: -9999px;
}

/*** transition ***/
.transition {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*** scale with transition ***/
.scale-with-transition {
    -webkit-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}


/*---------------------------------------------
                HEADER CSS
----------------------------------------------*/
a.nav-link.live-chat:hover img {
    filter: grayscale(100%) brightness(226%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(0.7);
    transition: 0.5s;
}

a.nav-link.live-chat,
a.nav-link.free-quote {
    text-transform: uppercase;
}

header {
    position: fixed;
    top: 10px;
    width: 100%;
    z-index: 999;
}

header h1 {
    color: #407d6e;
}

div.banner-sec {
    background-image: url(../images/home-banner-bg.png);
    background-repeat: no-repeat;
    background-position: top right;
    padding-bottom: 60px;
    padding-top: 120px;
}

nav.navbar {
    padding-left: 0;
    padding-right: 0;
    padding: 5px 10px;
}

header .row .col-12 {
    background: #fff;
    border-radius: 50px;
    box-shadow: 1px 14px 33px 0px #00000040;
    padding-right: 0px;
    padding-left: 9px;
}

header .navbar img.logo {
    width: 140px;
    margin: 5px 10px;
    filter: brightness(80.5) invert(301);
}

header ul.navbar-nav li a {
    font-size: 14px;
    color: #000;
}

.ftr-cntc {
    padding-top: 4%;
}

div#contact-page footer {
    padding-top: 4%;
}

header ul.navbar-nav li a.nav-link.live-chat {
    background-color: #6e0014;
    border-radius: 30px;
    color: #ffffff !important;
    padding: 10px 20px 10px 20px;
    animation: pulse 2s infinite;
}
a.nav-link.newcomplain {
    background: #6e0014;
    color: #fff;
    border-radius: 50px;
}

header ul.navbar-nav li a.nav-link.live-chat img {
    filter: hue-rotate(58deg);
    filter: brightness(0) invert(1);
}


@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

header ul.navbar-nav li a.nav-link.free-quote {
    border-radius: 30px;
    padding: 10px 15px 10px 15px;
    margin-left: 8px;
    color: #fff !important;
    background: #6e0014;
    /* fallback for old browsers */
    background: #6e0014;
    /* Chrome 10-25, Safari 5.1-6 */
    background: #6e0014;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

header ul.navbar-nav li a:hover {
    color: #00203f !important;
}

div.banner-sec:before {
    content: url(images/home-banner-bg.html);
    position: absolute;
    top: 0;
}

header .menu-row {
    padding-top: 10px;
}

li.nav-item.active.ser:hover .dropdown {
    display: block;
}

li.nav-item.active.ser .dropdown {
    display: none;
    position: absolute;
    z-index: 1;
    background: #fff;
    width: 630px;
    padding: 50px 30px 30px 100px;
    margin: 5px 0 0 0;
    border-radius: 5px;
    column-count: 2;
}

li.nav-item.active.ser .dropdown a {
    font-size: 13px;
}

.dropdown a {
    display: flex;
    /* padding-bottom: 10px; */
}

.dropdown ul li {
    list-style: none;
    margin-bottom: 43px;
    margin-top: 0;
}

.dropdown ul li:nth-child(1)::before {
    content: "";
    display: inline-block;
    background: url(../images/menu01.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 25px;
    top: 32px;
    /*background-color: #cee5d8;*/
    filter: hue-rotate(41deg);
    border-radius: 50px;
    padding: 30px;
    background-position: center;
}

.dropdown ul li:nth-child(2)::before {
    content: "";
    display: inline-block;
    background: url(../images/menu02.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 25px;
    top: 95px;
    /*background-color: #cee5d8;*/
    filter: hue-rotate(41deg);
    border-radius: 50px;
    padding: 30px;
    background-position: center;
}

.dropdown ul li:nth-child(3)::before {
    content: "";
    display: inline-block;
    background: url(../images/menu03.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 25px;
    top: 155px;
    /*background-color: #cee5d8;*/
    filter: hue-rotate(41deg);
    border-radius: 50px;
    padding: 30px;
    background-position: center;
}

.dropdown ul li:nth-child(4)::before {
    content: "";
    display: inline-block;
    background: url(../images/menu04.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 25px;
    top: 212px;
    /*background-color: #cee5d8;*/
    filter: hue-rotate(41deg);
    border-radius: 50px;
    padding: 30px;
    background-position: center;
}

.dropdown ul li:nth-child(5)::before {
    content: "";
    display: inline-block;
    background: url(../images/menu05.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 25px;
    top: 280px;
    /*background-color: #cee5d8;*/
    filter: hue-rotate(41deg);
    border-radius: 50px;
    padding: 30px;
    background-position: center;
}

.dropdown ul li:nth-child(6)::before {
    content: "";
    display: inline-block;
    background: url(../images/cor-buil.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 25px;
    top: 340px;
    /*background-color: #cee5d8;*/
    filter: hue-rotate(41deg);
    border-radius: 50px;
    padding: 30px;
    background-position: center;
}

.dropdown ul li:nth-child(7)::before {
    content: "";
    display: inline-block;
    background: url(../images/menu07.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 285px;
    top: 24px;
    /*background-color: #cee5d8;*/
    filter: hue-rotate(41deg);
    border-radius: 50px;
    padding: 30px;
    background-position: center;
}

.dropdown ul li:nth-child(8)::before {
    content: "";
    display: inline-block;
    background: url(../images/menu08.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 285px;
    top: 92px;
    /*background-color: #cee5d8;*/
    filter: hue-rotate(41deg);
    border-radius: 50px;
    padding: 30px;
    background-position: center;
}

.dropdown ul li:nth-child(9)::before {
    content: "";
    display: inline-block;
    background: url(../images/menu010.png);

    background-repeat: no-repeat;
    position: absolute;
    left: 285px;
    top: 156px;
    /*background-color: #cee5d8;*/
    filter: hue-rotate(41deg);
    border-radius: 50px;
    padding: 30px;
    background-position: center;
}

.dropdown ul li:nth-child(10)::before {
    content: "";
    display: inline-block;
    background: url(../images/web-main.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 285px;
    top: 213px;
    filter: hue-rotate(41deg);
    border-radius: 50px;
    padding: 30px;
    background-position: center;
}

.dropdown ul li:nth-child(11)::before {
    content: "";
    display: inline-block;
    background: url(../images/menu09.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 285px;
    top: 283px;
    /*background-color: #cee5d8;*/
    filter: hue-rotate(41deg);
    border-radius: 50px;
    padding: 30px;
    background-position: center;
}

.dropdown ul li:nth-child(12)::before {
    content: "";
    display: inline-block;
    background: url(../images/video-ani.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 285px;
    top: 342px;
    /*background-color: #cee5d8;*/
    filter: hue-rotate(41deg);
    border-radius: 50px;
    padding: 30px;
    background-position: center;
}

.dropdown ul li:nth-child(13)::before {
    content: "";
    display: inline-block;
    background: url(../images/web-main.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 285px;
    top: 388px;
    /*background-color: #cee5d8;*/
    filter: hue-rotate(41deg);
    border-radius: 50px;
    padding: 30px;
    background-position: center;
}

.navbar-expand-lg .navbar-nav .nav-item {
    padding-left: 18px !important;
}

header a.phn-icon {
    font-size: 16px !important;
    font-weight: bold;
    color: #6e0014 !important;
}

.popupform h2 {
    font-size: 28px;
    color: #6e0014;
    font-weight: 700;
    padding-left: 15px;
    border-left: #6e0014 6px solid;
    margin-bottom: 12px;
    line-height: 35px;
    margin-top: 0;
}

.popupform h2+p {
    line-height: 19px;
    font-size: 14px;
    margin-bottom: 12px;
}

.popupform ul {
    margin: 0;
}

.popupform ul li {
    text-align: center;
    position: relative;
    width: 100%;
    margin: 8px 0px;
    display: inline-block;
}

.popupform ul li i {
    position: absolute;
    top: 15px;
    left: 14px;
    color: #6e0014;
}

.popupform ul li input[type="text"],
.popupform ul li input[type="email"],
.popupform ul li textarea {
    background: #ffffff;
    border: #adadad 1px solid;
    padding: 10px 10px 10px 34px;
    width: 100%;
    border-radius: 6px;
    font-size: 14px;
    color: #000;
    box-shadow: none !important;
    outline: none 0px !important;
}

.popupform ul li textarea {
    height: 120px;
    resize: none;
}

.popupform ul li input[type="submit"] {
    background: #6e0014;
    background: #6e0014;
    background: #6e0014;
    color: #fff;
    font-size: 18px;
    border: #2a3db6 1px solid;
    text-transform: uppercase;
    font-weight: 600;
    padding: 9px 10px;
    letter-spacing: 1px;
    outline: 0px none;
    border-radius: 50px;
    width: 195px;
}

div#popupform {
    padding: 0 10% 5%;
}

/* header 
------------------------------------*/


@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: #6e0014;
    }
}


.upr-heading {
    color: #6e0014;
    font-size: 20px;
}

.main-heading {
    color: #222;
    font-size: 38px;
    padding: 0 0 20px;
    font-weight: 600;
}

.main-pera {
    color: #777;
    font-size: 16px;
    font-weight: 400;
}

.btn-1 {
    background: #6e0014;
    padding: 13px 35px;
    color: #fff;
    font-size: 16px;
    border: 2px solid;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
    border-radius: 7px;
  
}

.btn-1:hover {
    background: unset;
    background: #46000d;
    /* fallback for old browsers */
    background: #46000d;
    /* Chrome 10-25, Safari 5.1-6 */
    background: #46000d;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border: 2px solid;
    color: #FFF;
}

.btn-2 {
    background: #b1065500;
    padding: 13px 35px;
    color: #6e0014;
    font-size: 16px;
    border-radius: 7px;
    margin: 0 0 0 20px;
    border: 2px solid;
    font-weight: 500;
    transition: all 2s;
}

.btn-2:hover {
    background: #4b000e;
    color: #fff !important;
}




.home-bnerwrp {
    background-image: url(../images/home-banner-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0 50px;
    background-position: initial;
    overflow: hidden;
    position: relative;

}

.trustpilot-widget {
    padding: 50px 0 0;
}

.home-bnerwrp .txtwrp {
    display: block;
    margin: 140px 0 0;
}

.home-bnerwrp .txtwrp h4 {
    color: #6e0014;
    font-size: 22px;
}

.home-bnerwrp .txtwrp h1 {
    color: #000;
    font-size: 43px;
    padding: 0 0 20px;
}

.home-bnerwrp .txtwrp p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.home-bnerwrp .txtwrp ul {
    margin: 0 0 0px 0px;
}

.home-bnerwrp .txtwrp ul li {
    display: inline-block;
    color: #000;
    width: 49%;
    padding: 0 0 8px;
    font-size: 16px;
    position: relative;
    padding-left: 20px;
}

.home-bnerwrp .txtwrp ul li:after {
    content: "\f00c";
    position: absolute;
    font-family: 'FontAwesome';
    left: -0px;
    top: 0;
    color: #6e0014;
}

.home-bnerwrp .imgmain {}

.home-bnerwrp .imgmain ul {
    margin: 0;
}

.home-bnerwrp .imgmain ul li {
    display: inline-block;
    margin: 0 35px 0 0;
    vertical-align: middle;
}

.home-bnerwrp .imgmain ul li img {}

.home-bnerwrp .btnwrp {
    padding: 5px 0 0;
}

.home-bnerwrp .imgwrp {
    position: relative;
}

.home-bnerwrp .imgwrp img {
    width: 125%;
    position: absolute;
    top: 80px;
    left: -70px;
}

.home-bnerwrp .imgwrp img.img-exta {
    top: -50px;
    width: 160%;
    left: -200px;
    right: auto;
}

.servicswrp {
    padding: 70px 0;
}

.servicswrp .txtwrp {
    display: block;
    text-align: center;
}

.servicswrp .navwrp {}

.servicswrp .navwrp ul {
    margin: 10px 0 40px;
    text-align: center;
    display: block;
}

.servicswrp .navwrp ul li {
    display: inline-block;
    margin: 0 15px;
    padding: 12px 15px;
    color: #b10655;
    font-size: 15px;
    border-radius: 7px;
    font-weight: 500;
    border: 1px solid;
    cursor: pointer;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
}

.servicswrp .navwrp ul li.current {
    background: #b10655;
    color: #fff;
}

.servicswrp .ser-port {
    border: 1px solid #b10655;
    width: 85%;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 6px;
    background: #fff6f6;
}

.servicswrp .txtdiv ul {}

.servicswrp .txtdiv ul li {
    color: #777;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    width: 47%;
    padding: 0 0 7px;
}

.servicswrp .txtdiv ul li span {
    color: #b10655;
    margin: 0 5px 0 0;
}

.servicswrp .btnwrp {
    padding: 30px 0 0;
}

.servicswrp .imgwrp img {
    width: 100%;
}

.tabs {
    display: none;
}

.tabs.current {
    display: block;
}

.pkagwerp {
    padding: 70px 0;
    background-image: url(../images/DDbanner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.pkagwerp .txtwrp {
    display: block;
    text-align: center;
}

.pkagwerp .navwrp {}

.pkagwerp .navwrp ul {
    margin: 0 0 50px;
    display: block;
    text-align: center;
}

.pkagwerp .navwrp ul li {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 15px;
    color: #b10655;
    font-size: 15px;
    border-radius: 7px;
    font-weight: 500;
    border: 1px solid;
    cursor: pointer;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
}

.pkagwerp .navwrp ul li.current {
    background: #b10655;
    color: #fff;
}

.pkagwerp .pakge-box {
    transition: all 200ms ease-in;
    padding: 30px 20px 50px;
    border: 1px solid;
    border-radius: 7px;
}

.pkagwerp .pakge-box:hover {
    box-shadow: 0px 0px 20px 1px #d2d2d2;
    z-index: 2;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.05);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.05);
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.05);
    transition: all 200ms ease-in;
    transform: scale(1.05);
    border: 1px solid #124874;
}

.pkagwerp .pakge-box .pkge-name {}

.pkagwerp .pakge-box .pkge-name h4 {
    color: #000;
    font-size: 26px;
    font-weight: 500;
}

.pkagwerp .pakge-box .pkge-name h2 {
    font-size: 44px;
    color: #124874;
}

.pkagwerp .pakge-box .pkge-name h2 span {
    font-size: 29px;
    text-decoration: line-through;
}

.pkagwerp .pakge-box .pkge-name p {
    font-size: 13px;
    display: none;
}

.pkagwerp .pakge-box .detailwrp {}

.pkagwerp .pakge-box .detailwrp ul {
    height: 230px;
}

.pkagwerp .pakge-box .detailwrp ul li {
    position: relative;
    padding: 0 0 2px 25px;
    font-size: 14px;
}

.pkagwerp .pakge-box .detailwrp ul li.heading {
    font-size: 18px;
    color: #1c5861;
    padding: 7px 0 10px 0px;
    font-weight: 500;
}

.pkagwerp .pakge-box .detailwrp ul li.heading:after {
    display: none;
}

.pkagwerp .pakge-box .detailwrp ul li:after {
    content: "\f00c";
    position: absolute;
    font-family: 'FontAwesome';
    left: 0;
    color: #124874;
    top: 0;
}

.pkagwerp .pakge-box .btnwrp {
    display: block;
    text-align: center;
}

.pkagwerp .pakge-box .btnwrp .btn-1 {
    padding: 13px 13px;
    font-size: 15px;
}

.pkagwerp .pakge-box .btnwrp .btn-2 {
    padding: 12px 13px;
    font-size: 15px;
}

.pkagwerp .pakge-box .pakgedetail {
    display: block;
    text-align: center;
    padding: 0 0 30px;
}

.pkagwerp .pakge-box .pakgedetail a {
    color: #afa0a0;
    font-size: 14px;
    text-decoration: underline;
}

.pkagwerp .btndiv {
    display: block;
    text-align: center;
    padding: 55px 0 0;
}


.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 / 4%);
    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;
}

.conbowrp .pkgehead h2 {
    color: #fff;
    padding: 15px 0 0;
}

.conbowrp .pkgehead p {
    color: #fff;
}

.conbowrp .mainpkge .navwrp {}

.conbowrp .mainpkge .navwrp h4 {
    font-size: 20px;
    transform: scale(1.1);
    margin: 12px 0 0 14px;
    color: #b10655;
}

.conbowrp .mainpkge .navwrp ul {
    margin: 0 0 0 30px;
}

.conbowrp .mainpkge .navwrp ul li {
    font-size: 14px;
    color: #a09c9ce3;
    font-weight: 300;
    position: relative;
    padding: 0 0 3px;
}

.conbowrp .mainpkge .navwrp ul li:after {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: -22px;
    color: #34ca03b0;
}

.conbowrp .mainpkge .btnwrp {
    padding: 28px 0 0;
}

.conbowrp .mainpkge .btnwrp .btn-1 {
    display: block;
    margin: 0 0 13px;
    text-align: center;
    width: 80%;
    padding: 10px 0;
    padding: 15px 30px;
}

.conbowrp .mainpkge .btnwrp .btn-2 {
    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;
}



.portfoliowrp {
    padding: 70px 0;
    background: #f9f9f9;
}

.portfoliowrp .txtwrp {
    display: block;
    text-align: center;
}

.portfoliowrp .navwrp {
    display: block;
    text-align: center;
    padding: 0 0 50px;
}

.portfoliowrp .navwrp ul {
    margin: 0;
    display: block;
    text-align: center;
}

.portfoliowrp .navwrp ul li {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 15px;
    color: #000000;
    font-size: 15px;
    border-radius: 7px;
    font-weight: 500;
    border: 1px solid;
    cursor: pointer;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
}

.portfoliowrp .navwrp ul li.current {
    background: #6e0014;
    color: #fff;
}

.portfoliowrp .port-box {}

.portfoliowrp .port-box ul {
    margin: 0;
    display: block;
    text-align: center;
}

.portfoliowrp .port-box ul li {
    display: inline-block;
    width: 24%;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
    box-shadow: -1px -2px 15px -3px rgb(0 0 0 / 16%);
    border-radius: 20px;
    margin: 0 4px 0;
}

.portfoliowrp .port-box ul li:hover {
    background-color: #fff;
}

.portfoliowrp .port-box ul li:hover {
    transform: scale(1.1);
}

.portfoliowrp .port-box ul li img {
    width: 340px;
    height: 310px;
    object-fit: cover;
    border-radius: 15px;
}

.portfoliowrp .btnwrp {
    display: block;
    text-align: center;
    padding: 50px 0 0;
}


.testimonialwrp {
    padding: 50px 0 70px;
    background: #d4cbcb47;
}

.testimonialwrp .txtwrp {
    display: block;
    text-align: center;
}

.testimonialwrp .mainwrp {
    padding: 30px 20px;
    border: 1px solid #b10655;
    border-radius: 10px;
    margin: 30px 0 0;
    background: #fff;
}

.testimonialwrp .mainwrp .imgwrp {}

.testimonialwrp .mainwrp .imgwrp img {
    margin: 0 0 20px;
}

.testimonialwrp .mainwrp .txtdiv p {
    font-size: 15px;
}

.testimonialwrp .mainwrp .txtdiv span {}

.testimonialwrp .mainwrp .txtdiv span i {
    color: #e49d1b;
}

.testimonialwrp .mainwrp .txtdiv h4 {
    color: #b10655;
    font-size: 22px;
}

.testimonialwrp .mainwrp .txtdiv h4 span {
    display: block;
    font-size: 18px;
    color: #222;
    line-height: 1.5;
}


.worldwrp {
    padding: 70px 0;
    background: #f9f0f070;
}

.worldwrp .txtwrp {
    display: block;
    text-align: center;
}

.worldwrp .imgwrp {
    display: block;
    text-align: center;
    padding: 30px 0 0;
}

.worldwrp .imgwrp img {
    width: 40%;
    filter: grayscale(1);
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
}

.worldwrp .imgwrp img:hover {
    filter: unset;
}

.worldwrp .imgwrp:hover span {
    color: #b10655;
    font-weight: 500;
}

.contactwrp {
    padding: 70px 0;
}

.contactwrp .imgwrp img {
    width: 100%;
}

.worldwrp .imgwrp span {
    display: block;
    padding: 10px 0 0;
    width: 40%;
    margin: 0 auto;
    text-align: center;
    font-size: 13px;
    text-transform: capitalize;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
}

.form-box-main form label.field-txt {
    font-weight: 500;
    font-size: 18px;
    color: #5B6B7F;
    margin: 0 0 5px;
    width: 100%;
    display: block;
    padding: 10px 0px 0;
}

.form-box-main form label.field-txt span {
    color: #e60303;
}

.form-box-main form input[type="text"],
.form-box-main form input[type="email"],
.form-box-main form input[type="number"],
.form-box-main form input[type="tel"],
.form-box-main form textarea {
    width: 100%;
    margin: 0 0 0 0;
    border: 1px solid #B2B9C1;
    background: white;
    padding: 18px 15px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    height: 55px;
    border-radius: 8px;
}

.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;
    background: #6e0014;
    background: #6e0014;
    background: linear-gradient(to right, #000000, #6e0014);
    margin-top: 20px;
    border: none;
    padding: 20px 60px;
    font-size: 16px;
    border-radius: 8px;
    border: 3px solid;
    cursor: pointer;
}

.form-box-main form input[type="submit"]:after {
    content: "\e93a";
    font-family: 'icomoon' !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;
}



footer {
    background-color: #1b1b1b;
    padding: 230px 0 60px;
}

footer .logowrp {}

footer .logowrp ul {
    margin: 0;
    display: block;
}

footer .logowrp ul li {
    display: inline-block;
    margin-right: 20px;
}

footer .logowrp ul li a {
    color: #fff;
    font-size: 17px;
}

footer .logowrp ul li a i {
    background: #6e0014;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    padding: 12px 3px 0 0;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

footer .logowrp img {
    width: 70%;
    margin: 0 0 30px;
}

footer .logowrp p {
    color: #fff;
    font-size: 15px;
}

footer .navwrp {}

footer .navwrp h4 {
    color: #fff;
    padding: 0 0 30px;
    font-size: 24px;
    position: relative;
}

footer .navwrp h4:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    background: #6e0014;
    bottom: 20px;
    left: 0;
}

footer .navwrp ul {}

footer .navwrp ul li {
    display: block;
    padding: 0 0 3px;
}

footer .navwrp ul li a {
    color: #fff;
    font-size: 15px;
}

footer .navwrp ul li img {
    margin: 20px 0 0;
    width: 100%;
}

.ftr-btm {
    background: #000;
    padding: 20px 0;
}

.ftr-btm .txtwrp {}

.ftr-btm .txtwrp p {
    padding: 0;
    color: #fff;
    font-size: 16px;
}

.ftr-btm .txtwrp ul {
    margin: 0;
    text-align: start;
    display: block;
}
.ftr-btm .txtwrp ul li:first-child {
    margin-left: 0 !important;
}
.txtwrp {
    text-align: right;
}
.ftr-btm .txtwrp ul li {
    display: inline-block !important;
    margin: 0 0 0 30px !important;
}

.ftr-btm .txtwrp ul li a {
    color: #fff;
}

.col-md-12.map-irame iframe {
    width: 100%;
}



.img-container {
    background-image: url(../images/iphonex.html);
    margin: 0px auto 0;
    padding-top: 60px;
    background-repeat: no-repeat;
    padding-left: 18px;
    padding-right: 18px;
    width: 339px;
    height: 686px;
}

.img-container figure.abs {
    right: 0;
    top: 40px;
    position: absolute;
    z-index: 9;
    left: 0;
    text-align: center;
}

.img-container .cs-slider img {
    height: 647px;
    position: relative;
    z-index: 11;
}

.img-container .cs-slide {
    position: relative;
    z-index: 11;
}

.bg-mbl {
    position: relative;
    z-index: 11;
}

.bg-mbl:after {
    content: "";
    background-image: url(../images/circle.html);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
    top: 145px;
}


.clintwrp {
    background: #6e0014;
    /* fallback for old browsers */
    background: #6e0014;
    /* Chrome 10-25, Safari 5.1-6 */
    background: #6e0014;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding: 40px 0 30px;
}

section.home_cta {
    box-shadow: 0px 0px 40px #00000026;
    -webkit-box-shadow: 0px 0px 40px #00000026;
    -ms-box-shadow: 0px 0px 40px #00000026;
    -o-box-shadow: 0px 0px 40px #00000026;
    padding: 50px 0;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    margin-top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/cta-bg.jpg);
}

.home_cta_left h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;

}

.cta_inner a.with_bg {
    background: white;
    color: #e5453e;
}

.cta_inner h1.custom_size {
    line-height: 46px;
    color: white;
    padding-top: 0;
    font-size: 34px;
}

.home_cta_left img {
    width: 100%;
}

section.home_cta .btn_hk_primary {
    margin-top: 50px;
}

section.home_cta p {
    color: white;
    font-size: 15px;
    width: 470px;
    margin-top: 10px;
    padding: 0 0 50px;
}

section.home_cta a.btn.btn-primary.hk_wth_bg_yellow {
    background: white;
    color: black;
    border: 1px solid #fff;
}

.home_cta_left.laps {
    background-image: url(../images/planing-laptop.html);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 385px;
}

img.rotates {
    position: absolute;
    width: 56%;
    left: 0;
    top: 50px;
    right: 0;
    margin: 0 auto;
}

.filepond--progress-indicator svg {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite
}

.home_cta .imgwrp {
    position: relative;
}

.cta_inner .row {
    align-items: center;
}

.package-ideal .col-md-6 {
    float: left;
}

.home_cta .imgwrp img {
    width: 120%;
}

.home_cta .btn-2 {
    color: #fff;
}







@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@-webkit-keyframes shake {

    10%,
    90% {
        -webkit-transform: translateX(-.0625em);
        transform: translateX(-.0625em)
    }

    20%,
    80% {
        -webkit-transform: translateX(.125em);
        transform: translateX(.125em)
    }

    30%,
    50%,
    70% {
        -webkit-transform: translateX(-.25em);
        transform: translateX(-.25em)
    }

    40%,
    60% {
        -webkit-transform: translateX(.25em);
        transform: translateX(.25em)
    }
}

@keyframes shake {

    10%,
    90% {
        -webkit-transform: translateX(-.0625em);
        transform: translateX(-.0625em)
    }

    20%,
    80% {
        -webkit-transform: translateX(.125em);
        transform: translateX(.125em)
    }

    30%,
    50%,
    70% {
        -webkit-transform: translateX(-.25em);
        transform: translateX(-.25em)
    }

    40%,
    60% {
        -webkit-transform: translateX(.25em);
        transform: translateX(.25em)
    }
}

@-webkit-keyframes fall {
    0% {
        opacity: 0;
        -webkit-transform: scale(.5);
        transform: scale(.5);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    70% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}


.countrwrp {
    padding: 70px 0 70px;
    display: block;
    /* text-align: center; */
    background-image: url(../images/banner-perce.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: left;
}

.countrwrp .txtwrp {}

.countrwrp .mainwrp {
    box-shadow: #10101026 -15px 15px 17px 0px;
    margin: 11px 0;
    background: #fff;
    padding: 10px;
    text-align: CENTER;
}

.countrwrp .mainwrp span {
    color: #6e0014;
    font-size: 48px;
    font-weight: 600;
}

.countrwrp .mainwrp h6 {
    font-size: 22px;
}


.btmform {
    z-index: 2;
    position: relative;
    padding: 60px 0 0;
    margin: 0 0 -130px;
}

.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-cta .box {
    width: 500px;
    position: absolute;
    display: flex;
    transform: rotate(90deg);
    right: -120px;
    top: 245px;
    display: none;
}

.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: 20%;
    height: 95%;
    right: 9px;
    background-image: url(../images/form.png);
}

.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;
}

.field input,
.field select {
    background-color: #f0f0f0;
    width: 100%;
    padding: 15px 15px;
    border: 0;
    border-radius: 35px;
    color: #9b9fa6;
    border: 1px solid #9b9fa673;
    border: 1px solid #9b9fa640;
    outline: none;
}

.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: #f0f0f0;
    width: 90%;
    padding: 15px 15px;
    border: 0;
    color: #9b9fa6;
    overflow: hidden;
    border-radius: 15px;
    height: 193px;
    margin: 0;
    border: 1px solid #9b9fa640;
    resize: none;
    outline: none;
}

.field-msg textarea:focus {
    border: 0;
}

.field-btn input[type=submit] {
    color: #fff !important;
    font-size: 16px;
    background-color: #6e0014;
    border-radius: 35px !important;
    padding: 15px 50px;
    font-weight: 500;
    display: inline-block;
    border-radius: 22px;
    border: none;
    margin: 10px 0 0;
    width: 90%;
    height: auto;
    padding: 15px 50px;
}

.btmform .imgwrp i {
    color: #075ac6;
    font-size: 30px;
    padding: 8px 0 0 11px;
}

.btmform .imgwrp {
    background-color: #fff;
    border-radius: 50%;
    height: 45px;
    width: 45px;
}

.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;
}

.order-form .free-consult .pkg-dt .pkg-price {
    font-weight: 800;
}

.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;
    background: linear-gradient(to right, #6e0014, #000000);
    padding: 40px 20px 40px;
    border-radius: 5px;
    width: 75%;
    margin: 120px auto 0;
    position: relative;
    z-index: 9;
    float: right;
}

.bnr-inpfild [type=submit] {
    color: #fff;
    border-radius: 8px;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    border: 0;
    outline: none;
    background: #6e0014;
    /* fallback for old browsers */
    background: #6e0014;
    /* Chrome 10-25, Safari 5.1-6 */
    background: #6e0014;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    /* background-image: linear-gradient(to bottom, #b10655 , #5f042e); */
    height: 50px;
}

.form-wrap h1 {
    font-size: 22px;
    text-align: right;
    margin: 0px 0 24px 0;
    font-weight: 400;
    text-transform: capitalize;
    color: #fff;
    line-height: 1.4;
    padding: 0 0 10px;
}

.form-wrap h1 span {
    display: block;
    color: #fff;
    font-size: 32px;
    line-height: 0.5;
    padding: 10px 0 0;
    font-weight: 700;
}

.bnr-inpfild .intl-tel-input {
    margin-bottom: 18px;
}

.bnr-inpfild textarea {
    height: 100px;
    resize: none;
    color: #000;
}

section.flexiblefeatures-sec {
    padding: 160px 0 0px;
    background: #f3f5f7;
    /* margin: 0 0 -90px; */
}

.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;
}

.bnr-inpfild input,
.bnr-inpfild textarea,
.bnr-inpfild select {
    width: 100%;
    padding: 10px;
    margin: 0px 0 18px 0;
    border-radius: 6px;
    border: 1px solid #dad4d4;
    color: #333;
    height: 47px;
    font-size: 16px !important;
    border-color: #ffffff5e;
    background: #ffffff00;
    appearance: auto;
    color: #fff;
    outline: none;
}

.bnr-inpfild ::placeholder {
    color: #fff;
}

.service-pg .home-bnerwrp .txtwrp h1 {
    color: #fff;
}

.service-pg .home-bnerwrp .txtwrp p {
    color: #fff;
}

.service-pg .home-bnerwrp .txtwrp ul li {
    color: #fff;
}

.service-pg header .navwrp ul li a {
    color: #fff;
}

.service-pg header .upr-navwrp ul li a {
    color: #fff;
}

.secndwrp {
    padding: 50px 0 50px;
}

.secndwrp .btnwrp {
    padding: 30px 0 0;
    display: block;
}

.secndwrp .imgwrp {}

.secndwrp .imgwrp img {
    width: 100%;
}



.logo-bnner {
    padding: 80px 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    position: relative;
}

.logo-bnner .txt-container {
    margin: 0 0 50px;
}

.logo-bnner .txt-container h2 {
    position: relative;
    z-index: 1;
    font-size: 52px;
    font-weight: 600;
}

.logo-bnner .txt-container p {
    position: relative;
    z-index: 1;
    color: #000;
    font-size: 18px;
    font-weight: 500;
}

.logo-bnner .txt-container li {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    display: inline-block;
}

.logo-bnner h4 {
    color: #124874 !important;
    margin: 0 !important;
}

.logo-bnner .btnwrp {
    display: block;
    padding: 20px 0 0;
}




.testiwrp {
    padding: 0 0 50px;
}

.testiwrp .slick-slide {
    height: 350px;
}

.testiwrp .txtwrp {
    display: block;
    text-align: center;
    padding: 70px 0 0;
}

.testiwrp .imgwrp {
    display: block;
    text-align: center;
}.testiwrp .imgwrp img {
    width: 80%;
}
.testiwrp .txtdiv h6 {
    color: #6e0014;
    font-size: 26px;
}

.testiwrp .txtdiv h4 {
    font-size: 42px;
    text-transform: capitalize;
}
.testiwrp .txtdiv p {
    margin: 0;
    font-size: 16px;
    width: 90%;
}
.testiwrp .txtdiv span {
    color: #ded026;
    display: block;
}
.testiwrp .txtdiv h5 {
    color: #777;
    display: block;
    padding: 20px 0 0;
    line-height: 1.5;
    font-size: 16px;
}
.testiwrp .txtdiv h5 span {
    color: #3a3434;
}
.servicewrp {
    position: relative;
}

.servicewrp .overly {
    background: #000000b8;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.about-snd img {
    width: 120%;
}

.overly {
    /* background: rgb(0 0 0 / 70%); */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}


section.professional {
    padding-top: 3%;
    padding-bottom: 2%;
    text-align: center;
}

section.professional .primary_main i {
    background: #f3f3f5;
}

section.professional .primary_main h2 {
    width: 100%;
    margin: auto;
    color: #222;
    font-size: 38px;
    padding: 0 0 20px;
    font-weight: 600;
}

.prof_box {
    width: 220px;
    border-right: 1px solid #d2d2d2;
    transition: 0.5s;
    margin: 50px 0 0;
}

.prof_box:last-child {
    border: none;
}

.prof_box img {
    width: 55px;
    margin-bottom: 30px;
}

.prof_box p {
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
    text-transform: uppercase;
    color: #000;
}

.hk_bor {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px 0px;
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.info_part h4 {
    font-size: 18px;
    color: #b10655;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 15px;
}

.info_part p {
    font-size: 18px;
    color: #505050;
    font-weight: 600;
    text-align: left;
    width: 260px;
    margin-top: 20px;
}

.info_part i {
    font-size: 60px;
    color: #b10655;
    margin-right: 20px;
}

.info_part a {
    color: #2a2a2a;
    font-size: 22px;
}

.info_part {
    text-align: left;
}

.freee {
    display: inline-block;
}

.icoo {
    display: inline-block;
}

section.testi {
    background-image: url(../images/testi_bg.html);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    background-attachment: fixed;
    background-position: top;
    padding-top: 3%;
    padding-bottom: 4%;
    margin-top: 2%;
    margin-bottom: 3%;
}

section.testi .primary_main {
    text-align: center;
}

section.testi .primary_main h2 {
    color: white;
}

section.testi .primary_main p {
    color: #ffffff;
}

section.testi hr.line_white {
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}


section.two_part {
    padding: 65px 0px;
}

.info_two_inner {
    background: white;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;
    width: 430px;
    margin: auto;
    -webkit-box-shadow: -1px 6px 24px -9px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -1px 6px 24px -9px rgba(0, 0, 0, 0.75);
    box-shadow: -1px 6px 24px -9px rgba(0, 0, 0, 0.3);
    border-radius: 7px;
}

.info_two_inner i {
    color: #1d5961;
    font-size: 50px;
    margin-bottom: 23px;
}

.info_two_inner h3 {
    color: black;
    font-size: 22px;
}

.info_two_inner p {
    color: black;
    font-size: 17px;
    line-height: 30px;
    padding-bottom: 0;
}

.info_two_inner button {
    width: 70%;
    margin: auto;
    background: #6e0014;
    background: #6e0014;
    background: #6e0014;
    border: 1px solid;
    margin: 13px 0 0;
    padding: 15px 0;
}

ul.custom_drop li {
    margin-bottom: 13px;
}

ul.custom_drop li a {
    color: white;
    font-size: 16px !important;
    padding: 0px 35px;
}



/*floating strips css start */
.floatbutton.active {
    right: 0;
    z-index: 11;
    -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: #fff;
    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: #6e0014;
    margin-top: 198px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    -ms-box-shadow: 0px 0px 40px #00000026;
    -o-box-shadow: 0px 0px 40px #00000026;
    /* border: 1px solid #07379a; */
    transition: all 500ms;
}

.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: -79px;
    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, #0569d7, #0858c3, #0948af, #07389c, #042888);
    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: #fff;
    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;
}

.btns_wrap .call_wrap span {
    color: #333;
    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: #fff;
    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;
}

.btns_wrap .chat_wrap span.icoo,
.btns_wrap .call_wrap span.icoo {
    color: #fff;
    background: #6e0014;
    font-size: 18px;
    padding: 18px 20px 16px;
    border-right: 1px solid #ded9d9;
    vertical-align: middle;
    display: inline-block;
    border-radius: 50px 0px 0px 50px;
}



.btns_wrap .chat_wrap span {
    color: #333;
    font-size: 20px;
    vertical-align: middle;
    background: #fff;
    padding: 15px 30px 15px 15px;
}

/*floating strips css end */



.srv-info-sec {
    padding: 0;
}

.srv-info-sec p {
    margin-bottom: 25px;
}

.srv-info-sec .srv-info-wrap {
    position: relative;
    z-index: 1;
    height: 0;
    padding-top: 100%;
}

.srv-info-sec .srv-info-wrap:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 10%;
    top: 10%;
    width: 80%;
    height: 80%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 2px dashed #6e0014;
}

.srv-info-sec .srv-info-wrap .srv-item-ico {
    position: absolute;
    z-index: 1;
    width: 18%;
    height: 18%;
    font-size: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    box-shadow: #10101026 -15px 15px 17px 0px;
    border: 2px solid #fff;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    transition: all .3s ease-in;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-info-sec .srv-info-wrap .srv-item-ico:after {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 100%;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    transition: all .3s ease-in;
    opacity: 0;
    z-index: -1;
}

.srv-info-sec .srv-info-wrap .srv-item-ico:hover:after,
.srv-info-sec .srv-info-wrap .srv-item-ico.active:after {
    opacity: 1;
    background: #6e0014;
}

.srv-info-sec .srv-info-wrap .srv-item-ico.active i {
    opacity: 0;
}

.srv-info-sec .srv-info-wrap .srv-item-ico.active i+i {
    background: -webkit-linear-gradient(#fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
}

.srv-info-sec .srv-info-wrap .srv-item-ico i {
    font-size: 45px;
    -webkit-background-clip: text;
    -webkit-text-fill-color:
        transparent;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    transition: all .3s ease-in;
    position: absolute;
    background-image: #6e0014;
}

.srv-info-sec .srv-info-wrap .srv-item-ico i {
    opacity: 1;
}

.srv-info-sec .srv-info-wrap .srv-item-ico i+i {
    opacity: 0;
}

.srv-info-sec .srv-info-wrap .srv-item-ico i img {
    width: 45px;
}

.srv-info-sec .srv-info-wrap .ico-one {
    right: 10%;
    top: 17%;
}

.srv-info-sec .srv-info-wrap .ico-two {
    right: 0%;
    top: 36%;
}

.srv-info-sec .srv-info-wrap .ico-three {
    right: 8%;
    bottom: 27%;
}

.srv-info-sec .srv-info-wrap .ico-three-alt {
    right: 0%;
    left: 0%;
    bottom: 3%;
    margin: auto;
}

.srv-info-sec .srv-info-wrap .ico-four {
    right: 17%;
    bottom: 8%;
}

.srv-info-sec .srv-info-wrap .srv-item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 25%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    -moz-transition: all .6s;
    transition: all .6s;
}

.srv-info-sec .srv-info-wrap .srv-item-content.active {
    opacity: 1;
    visibility: visible;
}

.srv-info-sec .srv-info-wrap .srv-item-content h5 {
    font-size: 16px;
    color: #124874;
    text-transform: uppercase;
    font-weight: 700;
}

.srv-info-sec .srv-info-wrap .srv-item-content h3 {
    font-size: 24px;
    color: var(--dark);
    font-weight: 700;
}

.srv-info-sec .srv-info-wrap .srv-item-content p {
    font-size: 16px;
    margin: 0px;
}

.services-pg .packages-sec {
    padding: 91px 0 110px 0;
}

.services-pg .packages-sec h2 {
    margin-bottom: 3px;
}

.services-pg .packages-sec .sub-head {
    margin-bottom: 22px;
}

.services-pg .packages-sec .bx {
    margin: 20px 0;
}

.services-pg .packages-sec .bx .info h5 {
    font-size: 20px;
    border: 0px;
    padding: 0px;
    font-weight: 700;
    color: var(--orange);
    text-transform: capitalize;
}

.services-pg .packages-sec .bx p {
    font-size: 14px;
    color: var(--dark);
    font-weight: 400;
    margin-bottom: 0px;
}

.services-pg .packages-sec .bx p a {
    font-size: 14px;
    color: var(--orange);
    font-weight: 700;
}

.srv-details {
    margin: 48px 0 0 0;
    padding: 88px 0;
}

.srv-details .info-box {
    position: relative;
    z-index: 1;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    -moz-transition: all .6s;
    transition: all .6s;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 30px;
    margin: 8px 0;
}

.srv-details .info-box:hover {
    box-shadow: 7px 5px 30px 0 rgba(72, 73, 121, 0.15);
    background-color: var(--white);
    border-color: transparent;
}

.srv-details .info-box figure {
    max-width: 39px;
}

.srv-details .info-box figure img {
    width: 100%;
}

.srv-details .info-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.srv-details .info-box p {
    font-size: 16px;
    margin-bottom: 0;
}

.srv-details .srv-details-list {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.srv-details .srv-details-list li {
    font-size: 20px;
    color: var(--dark);
    font-weight: 700;
    width: 33%;
    float: left;
    margin: 15px 0;
    display: inline-block;
    vertical-align: middle;
}

.srv-details .srv-details-list li figure {
    width: 50px;
    float: left;
    margin: -9px 15px 0 0;
}

.srv-details .srv-details-list li figure img {
    width: 100%;
}

.icon-branding-requirment-3:before {
    content: "\e902";
}

.icon-branding-requirment-1:before {
    content: "\e900";
}

.icon-branding-requirment-2:before {
    content: "\e901";
}

.icon-branding-requirment-4:before {
    content: "\e903";
}


.our-place-order {
    background: url(../images/our-placeorder.webp) repeat center center;
    width: 100%;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.our-place-order h2 {
    margin: 0;
}

.mic-img {
    position: absolute;
    max-width: 35% !important;
    left: -110px;
    bottom: -30px;
}

.our-place-order .container:after {
    content: '';
    background: url(../images/place-telephone.png) no-repeat;
    height: 216px;
    width: 212px;
    position: absolute;
    right: 20%;
    top: 60px;
}

.our-place-order:after {
    content: '';
    background: url(../images/place-oder-after.html) no-repeat;
    height: 275px;
    width: 217px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.our-place-order p a {
    font-size: 34px;
    color: #124874;
    font-weight: 300;
}

.btn-block {
    padding: 20px 0 30px;
}

.tabs {
    display: none;
}

.tabs.current {
    display: block;
}



.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;
}

.object2 {
    position: absolute;
    right: -50%;
    bottom: -40%;
    width: 100%;
    -webkit-transform: translate(-40%, -30%);
    transform: translate(-40%, -30%);
    animation-name: spinner5;
    animation-duration: 15s;
    animation-iteration-count: infinite;
}

.main-services-banner-sec {
    overflow: hidden;
    padding: 80px 0 80px 0;
    position: relative;
    z-index: 9;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    background-position: center;
}

.object3 {
    position: absolute;
    right: -50%;
    bottom: -40%;
    width: 100%;
    -webkit-transform: translate(-40%, -30%);
    transform: translate(-40%, -30%);
    animation-name: spinner5;
    animation-duration: 15s;
    animation-iteration-count: infinite;
}

.main-services-banner-sec .txtwrp {
    margin: 90px 0 0;
}



.flexiblefeatures-sec {
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 70px;
    background-image: url(../images/SEO_bg_img_01.html);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.flexiblefeatures-sec h5 {
    color: #00a8ff;
    margin-top: 90px;
    font-size: 16px;
    padding: 5px 15px;
    background: #e5f6fe;
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 400;
}

.flexiblefeatures-sec ul {
    display: inline-block;
    margin-bottom: 0;
    margin-top: 100px;
}

.flexiblefeatures-sec ul.mgtop10 {
    margin-top: 10px;
}

.cntr-cntn {}

.cntr-cntn h2 {
    width: 75%;
    margin: 0 auto;
}

.cntr-cntn p {
    width: 85%;
    margin: 0 auto;
    font-size: 16px;
}

.lng-frm-blgs {}

.lng-frm-blgs p {
    padding-bottom: 40px;
}

.bannerBullets.bullets li {
    margin: 0px;
}

.flexiblefeatures-sec ul li {
    clear: both;
    margin-bottom: 60px;
    width: 100%;
    display: inline-block;
}

.flexiblefeatures-sec ul li figure {
    margin-bottom: 0px;
    width: 20%;
    float: left;
}

.flexiblefeatures-sec ul li figure img {
    width: 80px;
    height: auto;
    margin: -40px 0 0;
    filter: hue-rotate(65deg);
}

.flexiblefeatures-sec ul li .txt-wrap {
    width: 100%;
    /*float: right;*/
    padding-right: 13px;
}

.flexiblefeatures-sec ul li .txt-wrap h4 {
    font-size: 20px;
    color: #2c2c2c;
    font-weight: 700;
    margin-right: 78px;
    text-align: right;
}

.flexiblefeatures-sec ul li .txt-wrap p {
    color: #74757a;
    font-size: 13px;
    line-height: 1.4;
    display: inline-block;
    width: 75%;
    text-align: right;
}

.flexiblefeatures-sec figure {}

.flexiblefeatures-sec figure img {
    width: 100%;
}

.flexiblefeatures-sec .btnwrap {
    padding-left: 20%;
}

.flexiblefeatures-sec .btnwrap a {
    color: #f96331;
    font-size: 18px;
}

.flexiblefeatures-sec .btnwrap a .xicon {
    font-size: 16px;
    margin-left: 10px;
}

.finesttestimonial {
    padding: 60px 0;
}

.finesttestimonial .testwrap {}

.finesttestimonial .testwrap .cir h3 {
    font-size: 36px;
    color: #fff;
}

.finesttestimonial .testwrap .cir {
    text-align: center;
    width: 90px;
    padding-top: 24px;
    position: relative;
    height: 90px;
    margin: 0 auto 35px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 25px #00000017;
    background: #dd4026;
    background: -moz-linear-gradient(left, #dd4026 0%, #f4a332 100%);
    background: -webkit-linear-gradient(left, #dd4026 0%, #f4a332 100%);
    background: linear-gradient(to right, #dd4026 0%, #f4a332 100%);
}

.finesttestimonial .testwrap .item {
    padding-top: 20px;
    position: relative;
}

.finesttestimonial .testwrap .item:before {
    position: absolute;
    background-image: url(../images/quoteimg.html);
    background-repeat: no-repeat;
    width: 390px;
    height: 288px;
    text-align: center;
    background-position: top center;
    top: 20px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    content: "";
}

.finesttestimonial .testwrap .cir img {
    border-radius: 50%;
    background: #fff;
    box-shadow: 0px 0px 25px #00000017;
}

.finesttestimonial .testwrap .wrap {
    text-align: center;
}

.finesttestimonial .testwrap .wrap h5 {
    color: #f96331;
    font-size: 18px;
}

.finesttestimonial .testwrap .wrap h6 {
    color: #2c2c2c;
    font-size: 18px;
    padding-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--secondary-font-family);
}

.finesttestimonial .testwrap .wrap h5 span {
    font-size: 14px;
    color: #000;
    opacity: 0.6;
    display: block;
    margin-top: 10px;
}

.what-we-offer {
    text-align: center;
}

.flexiblefeatures-sec ul li figure {
    margin-bottom: 0px;
    width: 20%;
    float: right;
    display: inline-block;
}

.offer-sec .btnwrp {
    display: block;
    text-align: center;
    margin: -120px 0 0;
}

.txt-wrap figure img {
    display: inline-block;
}

.cntr-book {
    margin-top: 40px;
    margin-left: -45px;
}

.second-fold li {
    padding-bottom: 20px;
}

.cntr-book img {
    margin: 0 0 0 30px;
    width: 90%;
    height: auto;
    filter: hue-rotate(62deg);
}

.get_quote {
    background-color: #2e2e2e;
    z-index: 0;
    position: relative;
    padding: 40px 40px;
}

.gray_bg h3 {
    color: #fff;
    margin: 0 0 10px;
    font-size: 30px;
}

.field-mergedright {
    padding-right: 10px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
    float: left;
}

.step-form select.form-control:not([size]):not([multiple]) {
    height: 50px !important;
}

.get_quote .form-control {
    border: 1px solid #6b6b6b;
    background-color: transparent;
    height: 50px;
    color: #6b6b6b;
     font-size: 14px;
    text-transform: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    border-radius: 50px !important;
    color: #9e9e9e;
}

.get_quote textarea.form-control {
    resize: none;
    min-height: 105px;
    padding-top: 14px;
    border-radius: 15px !important;
}

.get_quote .form-control {
    border: 1px solid #6b6b6b;
    background-color: transparent;
    height: 39px;
    color: #6b6b6b;
    font-size: 14px;
    text-transform: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    border-radius: 50px !important;
    color: #9e9e9e;
}

.get_quote p {
    text-align: center;
    color: #8a8a8a;
    margin-bottom: 0;
    padding: 0;
}

.get_quote .btn-fill {
    height: 50px;
    padding: 18px 15px;
}

.btn-fill {
    background: #6e0014;
    background: #6e0014;
    background: #6e0014;
    color: #fff !important;
    text-decoration: none;
    height: 45px;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Circular Std';
    display: inline-block;
    padding: 15px 15px;
    outline: 0;
    border: none;
    min-width: 175px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 50px;
    line-height: 15px;
}

div#myModal {
    z-index: 9999;
}

.modal-dialog {
    pointer-events: all !important;
}

.modal-dialog {
    max-width: 650px;
}

p.text-center.grey {
    color: #fff;
    font-size: 14px;
    padding: 0;
    margin: 0 0 20px 0;
    line-height: 22px;
}

.first-fold li:last-child {
    margin-bottom: 0;
}

.second-fold {}

.second-fold .fold-1 {}

.fold-1 h4 {
    margin-left: 90px;
    font-size: 20px;
    color: #2c2c2c;
    font-family: var(--secondary-font-family);
    font-weight: 700;
}
.fold-1 p {
    margin-left: 90px;
    color: #74757a;
    line-height: 1.4;
    font-size: 13px;
}
.second-fold .fold-1 figure {
    float: left;
    margin-top: 31px;
}
.whatsapp {
    height: 51px;
    display: block;
    text-align: center;
    border-radius: 100%;
    font-size: 34px;
    bottom: 1%;
    left: 20px;
    z-index: 9999;
    padding: 0px;
    animation: scrollDownAnimation .5s ease infinite alternate;
    -webkit-animation: scrollDownAnimation .5s ease infinite alternate;
    background: -moz-linear-gradient(left, #ea018e 0%, #9b2c92 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ea018e', endColorstr='#9b2c92', GradientType=1);
}

@keyframes scrollDownAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes scrollDownAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}


.terms-blk h4 {
    color: #000 !important;
    font-size: 32px;
    text-transform: none;
    line-height: 1.2;
    -webkit-background-clip: text;
}

section.terms-sec {
    padding: 80px 0
}

.terms-blk p {
    line-height: 1.6;
    font-size: 17px;
    font-weight: 500;
    padding-top: 15px
}

.terms-blk ul li {
    line-height: 30px;
    font-size: 16px;
    color: #000
}

.special-packg-sec .imgwrp {
    position: relative;
}

.special-packg-sec .imgwrp img {
    width: 130%;
    position: absolute;
    left: -20px;
    top: -170px;
}


.tecnoglywrp {
    background-image: url(../images/account-orbs.svg);
    padding: 0px 0 40px;
    font-size: 0;
    background-position: -24px 110px;
    background-repeat: no-repeat;
    background-size: 47%;
    margin: 60px 0 0px;
}

.tecnoglywrp .txtwrp {
    display: block;
    text-align: center;
}

.tecnoglywrp .imgwrp {}

.tecnoglywrp .imgwrp img {
    margin-top: -27px;
    float: right;
    width: 110%;
    margin-right: 40px;
}

.tecnoglywrp .txtdiv {
    margin: 80px 0 0;
}

.tecnoglywrp .txtdiv ul {}

.tecnoglywrp .txtdiv ul li {
    font-size: 16px;
    position: relative;
    display: inline-block;
    width: 50%;
    padding: 0 0 0px 20px;
}

.tecnoglywrp .txtdiv ul li:after {
    content: "\f105";
    font-family: 'FontAwesome' !important;
    color: #b10655;
    position: absolute;
    left: 0px;
    top: -4px;
    font-size: 19px;
}

.tecnoglywrp .btnwrp {
    padding: 30px 0 0;
    display: block;
}




.main-combpwrp {
    background-image: url(../images/combo-bg-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
}

.main-combpwrp .txtwrp {
    display: block;
    text-align: left;
}

.main-combpwrp .txtwrp .upr-heading {
    color: #ffffff;
}

.main-combpwrp .txtwrp .main-heading {
    color: #fff;
}

.main-combpwrp {
    overflow: hidden;
}

.main-combpwrp .mainwrp {
    display: block;
    padding: 20px 0 0;
}

.main-combpwrp .mainwrp h4 {
    color: #f9eded;
    font-size: 20px;
}

.main-combpwrp .mainwrp ul {
    margin: 5px 0 20px;
}

.main-combpwrp .mainwrp ul li {
    font-size: 14px;
    color: #ffffff;
    position: relative;
    padding: 0 0 0 15px;
}

.main-combpwrp .mainwrp ul li:after {
    content: "\f054";
    position: absolute;
    font-family: 'FontAwesome';
    left: 0;
    color: #ffffff;
}

.main-combpwrp .imgwrp {
    position: relative;
}

.main-combpwrp .imgwrp img {
    width: 170%;
    position: absolute;
    left: -80px;
    top: -120px;
}

.main-combpwrp .btnwrp {}

.main-combpwrp .btnwrp h3 {
    color: #ffffff;
    font-size: 42px;
    padding: 0 0 35px 0px;
}

.main-combpwrp .btnwrp h3 span {
    display: block;
    font-size: 18px;
    color: #ffffff;
    text-decoration: line-through;
}

.main-combpwrp .btnwrp a {
    background: #6e0014;
    padding: 12px 45px;
    color: #ffffff;
    font-size: 15px;
    border-radius: 7px;
    transition: all 500ms;
}

.main-combpwrp .btnwrp a:hover {
    background-color: #44000c;
}

.offerwrp {
    background-image: url(../images/custom-pkg-bg.png);
    padding: 40px 0;
    background-size: cover;
}

.offerwrp h4 {
    color: #fff;
    font-size: 42px;
    font-weight: 600;
}

.offerwrp h4 span {
    display: block;
    font-size: 32px;
    font-weight: 400;
}

.offerwrp .btn-1 {
    background: #fff;
    color: #000;
    font-weight: 500;
    padding: 15px 20px;
}

.offerwrp .btn-2 {
    padding: 15px 20px;
    color: #fff;
    font-weight: 500;
}


.digital-marketing {}

.digital-marketing .animate {}

.digital-marketing .animate img {
    width: 100%;
    margin: 100px 0 0 40px;
}

.digital-marketing .imgbox {}

.digital-bnr .imgbox img {
    width: 100%;
}

.digital-bnr .imgbox .hvrimg {
    width: 93%;
    position: relative;
    top: 40px;
    left: 20px;
}


.contact-pg .home-bnerwrp {
    padding: 40px 0 60px;
}



.main-pg .lgo-lit {
    display: none;
}

.service-pg header .logowrp img.lgo-drk {
    display: none;
}

.service-pg .header-main.showmenu img.lgo-drk {
    display: block;
}

.service-pg .header-main.showmenu img.lgo-lit {
    display: none;
}

.home-bnerwrp .btn-2 {
    color: #fff;
}

.mainfrm .imgform {
    position: absolute;
    top: 20px;
    left: 10px;
}

.mainfrm textarea {
    height: 110px;
    border: 1px solid #fffefe94;
}

.mainfrm input {
    border: 1px solid #fffefe94;
}

.slick-dots li button:before {
    background: #6e0014 !important;
}

.home-bnerwrp .btn-2 {
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
    color: #6e0014;
}

.orderformwrp {
    padding: 0px 0 210px;
}

.ordrtop {
    padding: 30px 0;
}

.ordrtop .logowrp {}

.ordrtop .logowrp img {
    width: 30%;
}

.ordrtop .croxwrp {
    display: block;
    text-align: right;
}

.ordrtop .croxwrp a i {
    font-size: 32px;
    color: #000;
}



.subscribe-fold {
    padding: 170px 0 50px;
}

.subscribe-fold .myheading {
    position: relative;
    padding-bottom: 40px;
    font-size: 44px;
    color: #160c28;
    line-height: 1.1em;
    margin-bottom: 30px;
    padding: 0px;
}

.subscribe-fold .mytext {
    text-align: left;
    margin: 0 0 30px;
    padding: 0px;
    font-size: 14px;
    line-height: 20px;
    width: 75%;
}

.subs-pac {
    box-shadow: 0 3px 30px #0000001f;
    display: block;
    width: 100%;
    text-align: center;
    height: 505px;
    margin: 0 0 60px;
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border-radius: 10px;
    padding: 75px 0 0;
}

.subscribe-fold h3 {
    font-size: 24px;
    margin: 0;
    font-weight: 400;
    position: relative;
    text-transform: capitalize;
    font-weight: 800;
    width: 80%;
    margin: 0 auto 20px;
    text-align: center;
    color: #000;
}

.subs-pac h6 {
    color: #b10655;
    font-size: 40px;
    font-weight: 700;
    display: inline-block;
    line-height: 0.9;
    margin: 30px 0 0;
    position: relative;
    padding: 0 20px;
}

.subs-pac h6 span.old {
    position: absolute;
    right: 0;
    left: 0;
    top: -30px;
    text-decoration: line-through;
    font-weight: bold;
    margin: 0;
    font-size: 16px;
}

.subs-pac h6 span {
    font-size: 16px;
    color: #687087;
    display: inline-block;
    margin: 30px 0 0;
    padding: 0;
    position: relative;
    line-height: 1.3;
}

.subs-pac h6 span {
    font-size: 16px;
    color: #000;
    display: inline-block;
    margin: 30px 0 0;
    padding: 0;
    position: relative;
    line-height: 1.3;
}

.subs-pac a.ordrrrr {
    text-align: center;
    margin: 30px auto 0;
    border: none;
    padding: 14px 60px;
    color: #ffffff;
    box-shadow: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    background: #b10655;
    font-family: var(--heading-font-family);
}

/*.subs-pac a.ordrrrr{transition: 0.5s ease-in-out;}
.subs-pac a.ordrrrr:hover{ transform: scale(1.1,1.1); }*/
.subs-pac .actions {
    border-top: 1px solid #eeeeee;
    padding: 0px 0;
    margin: 40px 0 0;
    position: relative;
}

.subs-pac .actions a.chatbtn {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 0px;
    display: inline-block;
    color: #000000;
    margin: 0px;
}

.subs-pac .actions a.numberbtn {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 0px;
    color: #000000;
    display: inline-block;
    margin: 0px;
}

.subscribe-fold .table-packages .head {
    width: 100%;
}

.subscribe-fold .table-packages .head h5 {
    text-align: left;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    display: inline-block;
    color: #160c28;
}

.subscribe-fold .table-packages .body ul li {
    text-align: left;
    padding: 14px 0 14px 0px;
    border-bottom: 1px solid #eaeaea;
    width: 95%;
    list-style: none;
    margin-left: 0;
    position: relative;
    font-size: 16px;
}

.subscribe-fold .table-packages .body ul li:after {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 15px;
    color: #b10655;
}

.subscribe-fold .table-packages .body ul li h6 {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.subscribe-fold .table-packages .body ul li span.tick {
    font-size: 20px;
    color: #b10655;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 30px;
    height: 32px;
    line-height: 1.6;
    float: right;
}

.subscribe-fold .table-packages .body ul li span.tick:before {
    font-family: "fontawesome";
    content: "\f00c";
    position: absolute;
    top: -20px;
}

.subscribe-fold .table-packages .body .subscription-list {
    height: 430px;
    margin-top: 20px;
    padding: 0;
}

.subs-pac.bronze:hover {
    background: #b10655;
}

.subs-pac.bronze:hover h6 {
    color: #fff;
}

.subs-pac.bronze:hover h3 {
    color: #fff;
}

.subs-pac.bronze:hover .old {
    color: #fff;
}

.subs-pac.bronze:hover span {
    color: #fff;
}

.subs-pac.bronze:hover .ordrrrr {
    background-color: #fff;
    color: #000;
}

.subs-pac.bronze:hover .chatbtn,
.subs-pac.bronze:hover .numberbtn {
    color: #fff;
}

.subs-pac.bronze:hover .chatbtn,
.subs-pac.bronze:hover .numberbtn {
    color: #fff;
}

.detail-pg .lgo-lit {
    display: none;
}

.detail-pg footer {
    padding: 80px 0 60px;
}

.subscribe-fold .txtdiv {
    padding: 0 0 40px;
}

.subscribe-fold .table-packages .body ul li.heading {
    color: #b10655;
    font-weight: 600;
    font-size: 20px;
}

.subscribe-fold .table-packages .body ul li.heading:after {
    display: none;
}


.thnkyoywrp {
    padding: 250px 0 70px;
    display: block;
    text-align: center;
}

.thnkyoywrp .btnwrp {
    padding: 30px 0 0px;
}

.thnkyou-pg header .logowrp img.lgo-lit {
    display: none;
}

.thnkyou-pg footer {
    padding: 70px 0 60px;
}

.intl-tel-input {
    width: 100% !important;
}

.bnr-inpfild .intl-tel-input {
    width: 100% !important;
}

.intl-tel-input .country-list .flag-box,
.intl-tel-input .country-list .country-name {
    color: #777 !important;
}

.our-place-order .main-pera {
    font-size: 15px;
}

.intl-tel-input .selected-flag .iti-arrow {
    right: 0 !important;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
    border-radius: 20px 0px 0px 20px !important;
}

.floatbutton .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
    border-radius: 0px !important;
}

/* .serwrper .btn-2 {
    color: #fff !important;
} */

.main-combpwrp .mainwrp ul li, .main-combpwrp .mainwrp h4, .main-combpwrp .txtwrp .main-heading, .main-combpwrp .txtwrp .upr-heading, .main-combpwrp .btnwrp h3, .main-combpwrp .btnwrp h3 span, .main-combpwrp .mainwrp ul li::after

{

	color: #000;

}

.main-combpwrp {

  background-image: none;


}
.temswrp {
    padding: 190px 0 50px;
    background: #f5f3f3;
}

.temswrp p strong {
    font-size: 26px;
}

.temswrp h2 {
    color: #ae0653;
    text-align: center;
    text-align: left;
    padding: 0 0 70px;
    padding: 0 0 110px;
    display: block;
}

.conditions-pg header .logowrp img.lgo-lit {
    display: none;
}

.conditions-pg header {
    background: #fff;
    padding: 20px 0 30px;
}


.cookiealert {
    position: fixed;
    bottom: 65px;
    left: 0;
    width: 100%;
    margin: 0 !important;
    opacity: 0;
    border-radius: 0;
    background: #212327;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    z-index: 999;
}


/*Internet Package CSS Start*/
section.internet-package * {
    font-family: Montserrat, sans-serif !important
}

section.internet-package {
    background-position: center center;
    background-size: cover;
    padding: 80px 0;
    background: linear-gradient(to right, #6e0014, #000000);
    background-repeat: no-repeat;
}

.internet-txt {
    color: #fff;
    text-align: center
}

.internet-txt h4 {
    font-size: 25px;
    text-transform: uppercase;
    color: #fff;
}

.internet-txt h3 {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}

.internet-txt p {
    font-size: 25px;
    line-height: 30px;
    color: #fff
}

.internet-tab .tab {
    border: 1px solid #ccc;
    background: #f1f1f1;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 40px 0
}

.internet-tab .tab button {
    border: none;
    outline: 0;
    cursor: pointer;
    padding: 13px 14px;
    transition: .3s;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    flex-wrap: nowrap
}

.internet-tab .tab button:hover {
    background: #49000d;
    color: #fff
}

.internet-tab .tab button.active {
    position: relative;
    color: #fff !important;
    background: #6e0014;
}

.internet-tab .tab button.active::before {
    filter: hue-rotate(198deg);
    content: "";
    position: absolute;
    background: url(../images/packages-after.png) no-repeat center center/cover;
    width: 17px;
    height: 14px;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%)
}

.internet-tab .tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none
}

.package-ideal {
    background-color: #fff;
    padding: 15px 12px 4px;
    margin-top: -10px;
    border-radius: 14px;
    float: left;
    width: 100%;
    transform: scale(.9);
    box-shadow: 0 0 1px 2px #f5f4f4;
    height: 100%;
}

.pckg-cntr {
    transform: scale(1.1)
}

.package-ideal h2 {
    font-size: 29px;
    font-weight: 700;
    color: #000 !important;
    min-height: 70px
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    display: none
}

.internet-package .owl-nav {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    width: 100%
}

.internet-package .owl-nav button.owl-prev {
    left: -40px;
    position: absolute
}

.internet-package .owl-nav button.owl-next {
    right: -40px;
    position: absolute
}

.package-ideal p {
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 700
}

.package-ideal ul {
    padding: 0;
    position: relative
}

.scrollbar {
    margin-left: 0;
    float: left;
    height: 200px;
    overflow-y: scroll;
    margin-bottom: 0;
    width: 100%;
    overflow-x: hidden;
    background: 0 0
}

.force-overflow {
    min-height: 200px
}

#style-3::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #f5f5f5
}

#style-3::-webkit-scrollbar {
    width: 6px;
    background-color: #6e0014;
}

#style-3::-webkit-scrollbar-thumb {
    background-color: #6e0014;
}

.package-ideal ul li {
    list-style: none;
    font-size: 14px;
    border-top: 1px solid #eef0f0;
    padding: 5px 0;
    color: #4b4b4b;
    font-weight: 700
}

.drop-img {
    border: 1px solid #6b6b6b;
    background-color: transparent;
    height: 50px;
    color: #6b6b6b;
    text-transform: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    border-radius: 50px;
    display: flex;
    align-items: center
}

.drop-img input {
    width: 100%;
    padding-left: 20px
}

.package-ideal ul li i {
    margin-right: 7px;
    color: #6d0014;
    font-family: FontAwesome !important
}

.internet-package .owl-nav button {
    border: 0;
    height: 30px;
    width: 30px;
    background: #fff !important;
    line-height: 20px !important;
    border-radius: 50% !important;
    color: #124974 !important;
    font-size: 27px !important;
    transition: .5s
}

.internet-package .owl-nav button:focus {
    outline: 0
}

.internet-package .owl-nav button span {
    position: relative;
    top: -1px
}

.internet-package .owl-nav button:hover {
    background: #2b6664 !important;
    color: #fff !important;
    transition: .5s
}

.package-ideal h1 {
    position: relative;
    color: #4f4f4f;
    font-weight: 600;
    font-size: 20px;
    margin: 20px 0 30px;
    position: relative;
    top: 13px;
}

.package-ideal h1 span {
    z-index: 999;
    position: absolute;
    right: 41px;
    top: 10px;
    color: #fff;
    font-size: 27px;
}

.package-ideal h1 span del {
    z-index: 999;
    position: absolute;
    right: 60px;
    top: -27px;
    color: #fff;
    font-size: 13px;
}

.about-snd .txtwrp h2 {
    font-size: 30px;
}

.package-ideal h1 span small {
    position: absolute;
    left: -32px;
    font-size: 19px;
    color: #fff;
    z-index: 999;
    top: -31px;
    font-weight: 600;
}

a.btn-1 i {
    margin-right: 5px;
}

.package-ideal h1::before {
    content: '';
    background: url(../images/span-img-logos.png);
    position: absolute;
    width: 61%;
    height: 52px;
    background-repeat: no-repeat;
    background-position: center left;
    top: -30px;
    left: 153px;
}

.package-ideal h4 {
    font-size: 16px;
    color: #680013;
    font-weight: 700;
    padding-top: 30px;
}

.order-live h3 {
    font-size: 14px;
    margin-bottom: 0;
    padding-top: 8px;
}

.order-live {
    position: relative;
}

.order-btn {
    text-align: center;
    display: inline-block;
}

.order-live h5 {
    padding-top: 0;
}

.order-live h3 {
    padding-bottom: 0;
    padding-top: 21px;
}

.package-ideal h5 {
    color: #6b0013;
    font-weight: 700;
    font-size: 16px;
    border-top: 1px solid #eef0f0;
    border-bottom: 1px solid #eef0f0;
    padding: 10px 0;
}

.order-live::before {
    content: '';
    position: absolute;
    border-left: 3px solid #f3f3f3;
    height: 49px;
    left: -16px;
}

.col-md-12.order-btn button {
    background: #6e0014;
    color: #fff;
    font-weight: 600;
    outline: 0;
    border: none;
    padding: 8px 24px;
    border-radius: 25px;
    margin: 18px 0;
    border: 1px solid transparent;
    transition: all 500ms;
}

.col-md-12.order-btn button:hover {
    background-color: #fa130d;
}

/*Internet Package CSS End*/

.cokwrp {
    opacity: 1;
}

.cokwrp .mowrp {
    margin: 0 20px 0 20px;
    color: #ae0653;
    font-weight: 600;
}

.cokwrp .cookiealert-container {
    color: #fff;
}

.form-box-main form input[type=checkbox]:not(old)+label,
input[type=radio]:not(old)+label {
    font-size: 11px;
}

.orderformwrp .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
    border-radius: 0px !important;
}


.web-pg .form-wrap {
    background: #000000b8;
}

.form-wrap select option {
    color: #000;
}

.form-wrap select:after {
    content: "";
}

.floatbutton .clickbutton:hover {
    background: #fa130d;
}

.btns_wrap .call_wrap:hover .icoo {
    background: #fa130d;
}

.btns_wrap .chat_wrap:hover .icoo {
    background: #fa130d;
}

.btns_wrap .chat_wrap .icoo,
.btns_wrap .call_wrap .icoo {
    transition: all 500ms;
}

.srv-info-sec .srv-info-wrap .srv-item-ico i {
    color: #6e0014;
    fill: #6e0014;
    -webkit-text-fill-color: #6e0014;
}


.field-btn input[type="submit"] {
    transition: all 500ms;
}

.field-btn input[type="submit"]:hover {
    background: #fa130d;
}

footer .logowrp ul li a i {
    transition: all 500ms;
}

footer .logowrp ul li a i:hover {
    background: #fa130d;
}

#trust-sec2 {
    background-color: #fff;
    padding: 23px 0;
    border-top: 2px solid #3a010b;
    border-bottom: 3px solid #6e0014;
}

#trust-sec2 ul.ser li {
    display: inline-block;
    width: 19%;
    text-align: center;
}

#trust-sec2 ul.ser li img {
    height: 40px;
    object-fit: contain;
}

#trust-sec2 ul.ser {
    margin-bottom: 0px;
}

.banner-slider.slick-slider .slick-list {
    height: 770px !important;
}



.lgos-sctn {

    padding: 30px 0 0
}



.lgos-sctn ul {

    text-align: center;

    margin: 0
}



.lgos-sctn ul li {

    display: inline-block;

    padding: 0 30px
}


.testi-heading h2 {

    font-size: 44px;

    color: #160c28;

    line-height: 1.1em;

    margin-bottom: 30px;

    padding: 0
}



.testi-heading p {

    text-align: center;

    padding-bottom: 40px
}



/*Choose Sec Css*/
section.why-choose-sec {
    padding: 50px 0;
}

.why-choose-sec .main-heading h2 {
    font-size: 44px;
    font-weight: 700;
    color: #160c28;
    line-height: 1;
    padding-bottom: 30px;
}

.why-choose-sec .main-heading p {
    color: #160c28;
    line-height: 1.7;
    padding: 0;
    font-size: 18px;
}

.choose-box {
    background: #F8F8F8;
    border-radius: 8px;
    padding: 45px;
    height: 100%;
    transition: ease 0.5s;
}

.choose-box img {
    display: block;
    margin-bottom: 25px;
    max-width: 18%;
}

.choose-box h3 {
    font-size: 24px;
    line-height: 30px;
    color: #242424;
    margin-bottom: 5px;
}

.choose-box p {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: #797979;
}

.webcta {

    padding: 60px 0 60px;

    background-color: #3d60a6;

}



.webcta h3 {

    color: #fff;

    font-size: 30px
}



.webcta p {

    font-size: 18px;

    color: #fff
}



.webcta .btnwrap {

    padding-top: 28px
}



.cstmwebdesgn .webcta .btn-black {

    background: #ff000000;

    border: 1px solid #fff
}



.btn-black {

    text-align: center;

    border-radius: 10px;

    background-color: #6e0014;

    padding: 14px 20px;

    color: #fff;

    display: inline-block;

    width: 200px;

    font-size: 16px;

    font-weight: 400;

    margin-right: 20px;

    -webkit-transition: .4s;

    -moz-transition: .4s;

    -o-transition: .4s;

    transition: .4s;

    text-transform: capitalize;

    box-shadow: inset 0 0 #fff;

    transition: all 0.3s ease-out;

}

.btn-black:hover {

    box-shadow: inset 12em 0 #fff;

    cursor: pointer;

    color: #000;

}


.btn-red {

    text-align: center;
    border-radius: 10px;
    padding: 14px 20px;
    color: #fff;
    border: 1px solid #6e0014;
    display: inline-block;
    width: 200px;
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    background: #6e0014;
    transition: .4s;
    box-shadow: inset 0 0 #fff;
    transition: all 0.3s ease-out;

}

.btn-red:hover {

    box-shadow: inset -12em 0 #ffff;
    cursor: pointer;
    color: #000;
    border-color: #fff !important;

}

.upr-heading {
    line-height: 1;
    font-size: 22px;
    margin-bottom: 0;
    padding-bottom: 30px;
    /* text-align: center; */
    text-transform: uppercase;
}

.cstmwebdesgn section.qualities {

    padding: 50px 0;

    border-bottom: 1px solid #f1f1f1
}



.cstmwebdesgn section.qualities .quality-img {

    text-align: center;

    padding: 0 0;

    display: inline-block
}



.cstmwebdesgn .quality h4 {

    font-size: 16px;

    line-height: 22px;

    padding-top: 5px;

    color: #2e2e2e
}



.cstmwebdesgn section.qualities p {

    font-size: 16px;

    line-height: 1.4;

    text-align: center;

    padding-bottom: 25px
}



.cstmwebdesgn .has-border {

    border-right: 1px solid #3d60a6
}



.cstmwebdesgn .icon-Constant-Client-Coordination {

    background-image: url(../images/constant-client-coordination.png);

    background-size: 100% auto;

    background-position: center;

    width: 59px;

    height: 46px;

    display: inline-block
}



.cstmwebdesgn .icon-Customer-Satisfaction {

    background-image: url(../images/customer-satisfaction.png);

    background-size: 100% auto;

    background-position: center;

    width: 59px;

    height: 46px;

    display: inline-block
}



.cstmwebdesgn .icon-Ownership-Rights {

    background-image: url(../images/ownership-rights.png);

    background-size: 100% auto;

    background-position: center;

    width: 59px;

    height: 46px;

    display: inline-block
}



.cstmwebdesgn .icon-Secure-Money-Back-Guarantee {

    background-image: url(../images/secure-money-back-Guarantee.png);

    background-size: 100% auto;

    background-position: center;

    width: 59px;

    height: 46px;

    display: inline-block
}



.cstmwebdesgn .icon-Industry-Proven-Professionals {

    background-image: url(../images/industry-proven-professionals.png);

    background-size: 100% auto;

    background-position: center;

    width: 59px;

    height: 46px;

    display: inline-block
}



.cstmwebdesgn section.call-actions {

    border: 1px solid #3d60a6 !important;

    margin-top: 30px;

    padding: 10px 75px 10px 20px;

    background: #3d60a6;

    border-radius: 20px
}



.cstmwebdesgn section.call-actions h2 {

    font-size: 16px;

    margin: 0;

    line-height: 22px;

    text-transform: capitalize;

    padding: 20px 0 0 30px;

    color: #fff
}



.cstmwebdesgn section.call-actions span.phone {

    font-size: 36px;

    float: left;

    color: #fff;

    margin-left: 15px;

    margin-top: 25px
}



.cstmwebdesgn .phone-div {

    padding-left: 48px
}



.cstmwebdesgn section.call-actions span.mail {

    font-size: 36px;

    float: left;

    color: #fff;

    margin-left: 15px;

    margin-top: 25px
}



.cstmwebdesgn section.call-actions h3 span {

    display: block;

    font-size: 18px;

    color: #fff
}



.cstmwebdesgn section.call-actions .phone-div h3 {

    padding-left: 55px;

    color: #fff
}



.cstmwebdesgn section.call-actions h3 {
    font-size: 22px;
    margin-top: 23px;
    padding-left: 65px;
    color: #fff;
    line-height: 30px;
}

.row.quick-contact-slider.sensation-slider {
    justify-content: center;
    align-items: center;

}
.tsti-lgos{
    padding: 20px 0;
}

.row.quick-contact-slider.sensation-slider .col {
    width: 100%;
    text-align: center;
    min-width: 20%;
}


.tsti-lgos ul li {

    padding: 0 14px
}



.tsti-lgos ul li figure img {

    width: 110px;
    height: 70px;
    object-fit: scale-down;
    filter: contrast(0);

}

.tsti-lgos ul li:hover figure img {
    filter: contrast(1);
    cursor: pointer;
}

.gveplns p{
    margin-top: 30px;
}

.gveplns p,
.gveplns a {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    padding: 0 30px 0 30px;
    text-align: center;
}



.gveplns a {

    text-decoration: underline;

    color: #6e0014;

}


.cta-fold {

    padding: 50px 0 50px 0;

}



.cta-fold h2 {

    color: #160c28;

    font-size: 18px;

    text-transform: capitalize
}

/*Services Section Begin*/

.services_sec_main{
    padding: 60px 0 ;
    position: relative;
  }
  
  .webhead_content h2 {
      color: #000;
      font-size: 40px;
      font-weight: 600;
      padding-bottom: 20px;
      text-align: center !important;
      margin-bottom: 20px;
  }
  
  .webhead_content p {
      font-size: 17px;
      line-height: 30px;
      text-align: center;
  }
  
  
  .webhead_content .waving-line:after {
      left: 46%;
      transform: translate(-30%, 50%);
  }
  
  .services_sec_main:before {
    content: '';
    /*background: url(../images/services-vector01.png);*/
    width: 780px;
    height: 450px;
    position: absolute;
    top: 0;
    right: 0;
    background-repeat: no-repeat;}
  
  .services_sec_main:after {
    content: '';
    /*background: url(../images/services-vector02.png);*/
    width: 780px;
    height: 334px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    z-index: -1;
    }
  
  .Service_box {
      box-shadow: 2px 2px 17px rgb(0 0 0 / 8%);
      border-radius: 20px;
      padding: 30px 30px 40px 30px;
      transition: 0.4s ease-in-out;
      position: relative;
      z-index: 9999;
      margin-top: 30px;
      min-height: 280px;
      margin-bottom: 30px;
  }
  
  .Service_box h2 {
      font-size: 19px;
      font-weight: 600;
      line-height: 23px;
  
  }
  
  .Service_box p {
      font-size: 15px;
      line-height: 25px;
      margin-bottom: 0;
  }
  
  .Service_box span {
      padding-bottom: 10px;
      display: block;
  }
  
  .Service_box:hover h2.waving-line:after {
      filter: brightness(0) invert(10);
  }
  
  .Service_box:hover {
    background: linear-gradient(to right, #60a1e0 0, #124974 100%) !important;
      -webkit-box-shadow: 0 10px 15px 0 rgb(39 39 255/20%) !important;
      box-shadow: 0 10px 15px 0 rgb(39 39 255/20%);
      transform: scale(1.1);
      color: #ffffff;
      cursor: pointer;
  }
  
  .Service_box:hover span img {
      filter: brightness(0) invert(1);
  }
  
 
  
  
  
  .slick-slide{
        margin-right: 0;
  }
  
  .Service_box span img {
      width: auto;
  }
  .slick-dots li button:before{
    font-size: 46px;
}



  /*Services Section End*/

 


.cta-fold h2 strong {

    border-bottom: solid 2px #6e0014;

    padding-bottom: 7px;

    display: inline-block;

    margin-bottom: 15px
}



.cta-fold p {

    font-size: 44px;

    color: #160c28;

    line-height: 1.1em;

    margin-bottom: 30px;

    padding: 0;

    font-weight: 700;

    font-family: var(--heading-font-family)
}


.bottom-form {

    padding: 60px 0;

    position: relative;

    z-index: 9;

    background: #fff
}



.bottom-form .txtwrap h2 {

    text-align: left
}



.bottom-form .txtwrap figure {

    margin: 20px 0 30px
}



.bottom-form .txtwrap p {

    font-size: 20px;

    line-height: 1.4;

    padding-bottom: 0;

    color: #000019
}



.bot-form form label.error {

    display: none !important
}



.bot-form form input.error {

    border: 1px solid red !important
}



.bot-form form input[type=email],

.bot-form form input[type=number],

.bot-form form input[type=tel],

.bot-form form input[type=text],

.bot-form form select,

.bot-form form textarea {

    width: 100%;

    margin: 0;

    border: 1px solid #cbcbcb;

    background: #fff;

    padding: 14px 40px 14px 16px;

    color: #535353;

    font-size: 16px;

    border-radius: 10px;

    height: 55px;

    font-weight: 400;

    outline: 0 !important
}



.bot-form form .intl-tel-input {

    width: 100%
}



.bot-form form .intl-tel-input.separate-dial-code .selected-dial-code {

    padding-left: 27px
}



.bot-form form .fldset {

    margin-bottom: 20px
}



.bot-form form input[type=submit] {

    cursor: pointer
}



.bot-form form textarea {

    width: 100%;

    margin: 0;

    padding: 14px 16px;

    height: 130px;

    resize: none
}



.bot-form form .finput:focus {

    outline: 0 !important
}



.slct-field:after {

    content: "\f107";

    position: absolute;

    right: 33px;

    top: 17px;

    font-family: fontawesome;

    color: #999;

    font-size: 16px
}



.intl-tel-input .country-list .country {

    font-size: 14px
}

.bot-form h2 {
    font-size: 34px;
    color: #160c28;
    line-height: 1.1em;
    margin-bottom: 30px;
    padding: 0;
}

.offerwrp .btn-1:hover {
    background: #fa130d;
    color: #FFF;
}

.package-ideal.best-seller::before {
    content: "";
    position: absolute;
    right: -30px;
    top: -20px;
    background-image: url('../images/best_sellr.png');
    width: 80px;
    height: 80px;
    background-size: contain;
}

.package-ideal.best-seller>h2 {
    padding-right: 40px;
}






@keyframes scrollDownAnimation {

    from {

        transform: translateY(0)
    }



    to {

        transform: translateY(-10px)
    }

}



@-webkit-keyframes scrollDownAnimation {

    from {

        transform: translateY(0)
    }



    to {

        transform: translateY(-10px)
    }

}




















/* new css tab  */
.tab-menu {
    margin-top:34px;
}
.tab-menu ul {
    margin:0;
    padding:0;
    list-style:none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 3px;
    justify-content: center;
}
.tab-menu ul li {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    /* flex-grow: 1; */
    max-width: 40%;
    text-align:center;
}
.tab-menu ul li a {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.44px;
    font-family: 'Oswald';
    font-weight:bold;
    display:inline-block;
    padding: 10px 0px;
    width: 100px;
    display:block;
    text-decoration:none;
    transition:0.5s all;
    background: #000000;
    border: 2px solid #000000;
    border-bottom: 0;
}
.tab-menu ul li a:hover {
    background: #000;
    color:#fff;
    /* text-decoration:none; */
    border-color: transparent;
}
.tab-menu ul li a.active {
    background: linear-gradient(to top, #6e0014, #606060);
    color: #fff;
    text-decoration:none;
    border-color: transparent;
}
.tab-box {
    display:none;
}
.tab-teaser {
    max-width:800px;
    width:100%;
    margin:0 auto;
    font-family: 'Oswald';
}
.tab-main-box {
    margin-top: 30px;
}
div#tab-1 {
    width: 91%;
}
div#tab-2 {
    width: 91%;
}
div#tab-3 {
    width: 91%;
}


/* blogs style start */


/*TERMS & PRIVACY PAGES START*/
section.our-banner.about-banner {
    background: #000;
    min-height: 340px;
    padding-top: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffff;
}
.passion {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 114px;
}
.passion a {
    color: #6c0012;
    text-decoration: underline !important;
}
/*TERMS & PRIVACY PAGES END*/




@media only screen and (max-width: 767px) {


    #trust-sec2 ul.ser li {
        width: 100%;
        margin: 10px 0px;
    }

    .banner-slider.slick-slider .slick-list {
        height: 600px !important;
    }

}



@media only screen and (max-width: 1199px) {


   .internet-tab .tab button{
    padding: 13px 12px;
    font-size: 13px;
    }

    .navbar-expand-lg .navbar-nav .nav-item {
        padding-left: 13px !important;
    }
    header ul.navbar-nav li a{
        font-size: 12px;
    }
    header ul.navbar-nav li a.nav-link.live-chat {
        font-size: 8px;
        padding: 10px 12px !important;
    }

}
