.pre-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 999999999;
}

.pre-loader-wrap {
    display: flex;
    align-items: center;
    height: 100vh;
    justify-content: center;
}

.pre-loader-content-box {
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 15px;
}

.pre-loader-logo {
    margin-bottom: 20px;
}

.pre-loader-text {
    font-size: 50px;
    line-height: 1.3;
    color: #202122;
    font-weight: 700;
}

.pre-loader-icon {
    margin: 40px 0 0;
}

.newtons-cradle {
    width: 100px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.newtons-cradle div {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #d10000;
}

.newtons-cradle div:nth-of-type(1) {
    transform: translateX(-100%);
    animation: left-swing 0.5s ease-in alternate infinite;
}

.newtons-cradle div:nth-of-type(3) {
    transform: translateX(-95%);
    animation: right-swing 0.5s ease-out alternate infinite;
}

@keyframes left-swing {

    100%,
    50% {
        transform: translateX(95%);
    }
}

@keyframes right-swing {
    50% {
        transform: translateX(-95%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media(min-width: 767px) {
    .fl-visible-mobile {
        display: none;
    }

    .fl-visible-desktop-medium {
        display: block;
    }
}

@media (max-width: 1199px) {
    .pre-loader-content-box {
        max-width: 750px;
    }

    .pre-loader-text {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .pre-loader-text {
        font-size: 24px;
    }

    .fl-visible-desktop-medium {
        display: none;
    }
}

body {
    font-family: Montserrat, sans-serif;
    margin: 0;
    padding: 0;
    color: #202122;
    font-size: 14px;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.container {
    width: 100% !important;
    max-width: 1170px;
    margin: 0 auto;
}

.container-2 {
    width: 100% !important;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    color: #fff;
    cursor: pointer;
}

a:active,
a:focus,
a:hover {
    outline: 0;
    text-decoration: none;
}

a:hover {
    color: #d10000;
}

ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    display: inline;
}

p {

    color: #222;
    line-height: 28px;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.clearfix {
    clear: both;
}

.mt-0 {
    margin-top: 0 !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.ml-70 {
    margin-left: 70px !important;
}

.mr-70 {
    margin-right: 70px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.ml-80 {
    margin-left: 80px !important;
}

.mr-80 {
    margin-right: 80px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.ml-90 {
    margin-left: 90px !important;
}

.mr-90 {
    margin-right: 90px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.ml-100 {
    margin-left: 100px !important;
}

.mr-100 {
    margin-right: 100px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.my-25 {
    margin-block: 25px;
}

.mb-20{
    margin-bottom: 20px;
}
.mt-20 {
    margin-top: 20px;
}
.pt-0 {
    padding-top: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pl-80 {
    padding-left: 80px !important;
}

.pr-80 {
    padding-right: 80px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pl-90 {
    padding-left: 90px !important;
}

.pr-90 {
    padding-right: 90px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pl-100 {
    padding-left: 100px !important;
}

.pr-100 {
    padding-right: 100px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.padding-60 {
    padding: 60px 0;
}

.padding-40 {
    padding: 40px 0;
}

.padding-120-60 {
    padding: 120px 0 60px;
}

.padding-6030 {
    padding: 60px 0 30px;
}

.padding-60-00 {
    padding: 60px 0 0;
}

.padding-00-60 {
    padding: 0 0 60px;
}

.padding-00-30 {
    padding: 0 0 30px;
}

.o-hidden {
    overflow: hidden;
}

.o-visible {
    overflow: visible;
}

.z-index1 {
    z-index: 1;
}

.z-index2 {
    z-index: 2;
}

.z-index3 {
    z-index: 3;
}

.z-index4 {
    z-index: 4;
}

.z-index5 {
    z-index: 5;
}

.z-index6 {
    z-index: 6;
}

.z-index7 {
    z-index: 7;
}

.z-index8 {
    z-index: 8;
}

.z-index9 {
    z-index: 9;
}

.z-index10 {
    z-index: 10;
}

.opacity-01 {
    opacity: 0.1 !important;
}

.opacity-015 {
    opacity: 0.15 !important;
}

.opacity-02 {
    opacity: 0.2 !important;
}

.opacity-025 {
    opacity: 0.25 !important;
}

.opacity-03 {
    opacity: 0.3 !important;
}

.opacity-035 {
    opacity: 0.35 !important;
}

.opacity-04 {
    opacity: 0.4 !important;
}

.opacity-045 {
    opacity: 0.45 !important;
}

.opacity-05 {
    opacity: 0.5 !important;
}

.opacity-055 {
    opacity: 0.55 !important;
}

.opacity-06 {
    opacity: 0.6 !important;
}

.opacity-065 {
    opacity: 0.65 !important;
}

.opacity-07 {
    opacity: 0.7 !important;
}

.opacity-075 {
    opacity: 0.75 !important;
}

.opacity-08 {
    opacity: 0.8 !important;
}

.opacity-085 {
    opacity: 0.85 !important;
}

.opacity-09 {
    opacity: 0.9 !important;
}

.opacity-095 {
    opacity: 0.95 !important;
}

.opacity-1 {
    opacity: 1 !important;
}

.p-absolute {
    position: absolute;
}

.p-relative {
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    width: 100%;
    height: 100%;
}

.btn-custome {
    background: #d10000 !important;
    box-shadow: 0 3px 10px 0 rgba(236, 115, 35, 0.2) !important;
    color: #fff !important;
    padding: 15px 25px;
    border-radius: 5px !important;
    line-height: 1;
    font-size: 14px;
    display: inline-flex;
    position: relative;
    border: none;
}

.btn-custome:focus,
.btn-custome:hover {
    background: #343535 !important;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15) !important;
}

.btn-custome.btn-lg {
    padding: 15px 40px;
    font-size: 20px;
}

.nitro-offscreen .color-purple {
    font-size: 60px;
    margin-bottom: 30px;
    color: #d10000;
}

.btn-custome-small {
    padding: 10px 20px;
}

::-webkit-input-placeholder {
    opacity: 1;
}

::-moz-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

:-moz-placeholder {
    opacity: 1;
}

.rounded10 {
    border-radius: 10px !important;
}

.box-shadow {
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
}

.m-height-450 .mhbox {
    min-height: 450px;
}

.m-height-380 .mhbox {
    min-height: 380px;
}

.m-height-340 .mhbox {
    min-height: 340px;
}

.m-height-320 .mhbox {
    min-height: 320px;
}

.m-height-300 .mhbox {
    min-height: 300px;
}

.m-height-280 .mhbox {
    min-height: 280px;
}

.m-height-260 .mhbox {
    min-height: 260px;
}

.m-height-240 .mhbox {
    min-height: 240px;
}

.m-height-220 .mhbox {
    min-height: 220px;
}

.m-height-170 .mhbox {
    min-height: 170px;
}

.m-height-150 .mhbox {
    min-height: 150px;
}

.m-height-130 .mhbox {
    min-height: 130px;
}

body.overflow-hidden {
    overflow: hidden;
}

.waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    vertical-align: middle;
    z-index: 1;
    will-change: opacity, transform;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.waves-effect .waves-ripple {
    position: absolute;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    -ms-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    pointer-events: none;
}

.waves-effect.waves-light .waves-ripple {
    background-color: rgba(255, 255, 255, 0.45);
}

.waves-effect.waves-red .waves-ripple {
    background-color: rgba(244, 67, 54, 0.7);
}

.waves-effect.waves-yellow .waves-ripple {
    background-color: rgba(255, 235, 59, 0.7);
}

.waves-effect.waves-orange .waves-ripple {
    background-color: rgba(255, 152, 0, 0.7);
}

.waves-effect.waves-purple .waves-ripple {
    background-color: rgba(156, 39, 176, 0.7);
}

.waves-effect.waves-green .waves-ripple {
    background-color: rgba(76, 175, 80, 0.7);
}

.waves-effect.waves-teal .waves-ripple {
    background-color: rgba(0, 150, 136, 0.7);
}

.waves-notransition {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
}

.waves-circle {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%);
}

.waves-input-wrapper {
    border-radius: 0.2em;
    vertical-align: bottom;
}

.waves-input-wrapper .waves-button-input {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

.waves-circle {
    text-align: center;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%;
    -webkit-mask-image: none;
}

.waves-block {
    display: block;
}

a.waves-effect .waves-ripple {
    z-index: -1;
}

.title {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.title span {
    font-size: 16px;
    font-weight: 500;
    color: #d10000;
}

.title p {
    margin: 15px auto 0;
    text-align: justify;
}

.title h2 {
    font-size: 34px;
    line-height: 1.3;
    margin: 0;
    color: #202122;
}

.title.white_title span {
    background: #fff;
}

.title.white_title {
    position: relative;
    z-index: 9;
}

.title.white_title p {
    color: #fff;
}

.title.white_title h2 {
    -webkit-text-fill-color: #fff;
    margin-top: 5px;
}

.title2 {
    width: 100%;
    float: left;
}

.title2 p {
    font: 500 16px/20px Lora;
    margin: 0;
    color: #333;
}

.title2 h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 36px;
    margin: 3px 0 20px;
    position: relative;
    padding-bottom: 10px;
}

section {
    width: 100%;
}

header.white-bg {
    top: -51px;
    transition: all 0.3s ease;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    z-index: 99999;
}

.mobile_menu {
    display: none;
}

#share_btn {
    font-size: 22px;
    display: none;
    position: absolute;
    right: 15px;
    top: 13px;
    z-index: 999;
    color: #202122 !important;
    cursor: pointer;
}

#estimate-mobile-btn {
    position: absolute;
    right: 15px;
    top: 8px;
    z-index: 999;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50px;
    display: none;
}

#estimate-mobile-btn .fas {
    margin: 0 4px 0 0;
    font-size: 15px;
}

#top {
    width: 100%;
    background: #202122;
    padding: 6px 0;
}

.header_social {
    display: inline-block;
}

.header_contact {
    display: inline-block;
    color: #fff;
    font-size: 14px;
}

.header_contact li {
    padding: 0 25px;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.header_contact li:last-child {
    border: none;
}

.header_social li a {
    width: 33px;
    height: 33px;
    background: #0d0d0e;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    margin: 1px;
    color: #fff;
    font-size: 14px;
}

.header_social li:last-child a {
    margin-right: 0;
}

.header_social li a span {
    font-size: 0;
}

#top p {
    margin: 0 10px 0 0;
    color: #fff;
}

.header_contact li:first-child {
    padding-left: 0;
}

.header_contact li:first-child:before {
    content: "";
    width: 1px;
    height: 8px;
    background: #fff;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.header_contact li a {
    font-size: 13px;
}

.header_contact li i {
    color: #d10000;
    font-size: 24px;
    margin-right: 10px;
}

.header_social li a:hover {
    background: #fff;
    color: #000;
}

.main-navbar-wrap {
    position: relative;
    -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;
}

.navbar-header {
    padding: 8px 0;
}

.main-navbar {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    border-radius: 0 0 5px 5px;
    background: #fff;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
    -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;
}

.main-navbar-wrap.fullwidth {
    max-width: 100%;
    border-radius: 0;
    background-color: #fff;
}

.main-navbar-wrap.fullwidth .main-navbar {
    box-shadow: none;
}

nav.navbar {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    position: static;
    padding: 0 15px;
    min-height: inherit;
    border: 0;
}

.navbar-header img {
    width: 140px !important;
}

.navbar-nav {
    flex-direction: row;
    align-items: center;
}

.main-navbar .navbar-nav>li {
    padding: 0 12px;
    line-height: 88px;
    position: relative;
    display: inline-block;
}

.main-navbar .navbar-nav>li.megamenumain {
    position: static;
}

.main-navbar .navbar-nav>li:last-child {
    padding-right: 0;
    line-height: inherit;
    display: inline-flex;
    vertical-align: middle;
}

.main-navbar .navbar-nav>li:last-child a {
    line-height: 1;
}

.main-navbar .navbar-nav>li:first-child {
    padding-left: 0;
}

.main-navbar .navbar-nav>li>a {
    color: #333;
    font-weight: 500;
}

.main-navbar .navbar-nav>li.active>a,
.main-navbar .navbar-nav>li>a:hover {
    color: #d10000;
}

.sub-menu-normal {
    display: none;
    position: absolute;
    top: 99%;
    background-color: #fff;
    width: 240px;
    left: 0;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
    -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.15);
}

.sub-menu-normal>li {
    display: block;
    line-height: 1;
    padding: 12px 20px;
}

.sub-menu-normal>li>a {
    color: #202122;
    position: relative;
    padding-left: 15px;
}

.sub-menu-normal>li>a:before {
    content: "\f105";
    color: #202122;
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
    -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;
}

.sub-menu-normal>li>a:focus,
.sub-menu-normal>li>a:hover {
    color: #d10000;
    padding-left: 20px;
}

.sub-menu-normal>li>a:focus:before,
.sub-menu-normal>li>a:hover:before {
    left: 5px;
    color: #d10000;
}

.sub-menu-wrap {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #fff;
    -webkit-box-shadow: inset 0 5px 10px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 5px 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}

.sub-menu {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
}

.sub-menu>li {
    width: 25%;
    float: left;
    line-height: 1;
}

.mainmenuicon {
    padding-right: 10px;
}

.mainmenuicon svg {
    width: 60px;
    height: 60px;
    fill: #202122;
    -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;
}

.mainmenuicon svg circle,
.mainmenuicon svg ellipse,
.mainmenuicon svg line,
.mainmenuicon svg path,
.mainmenuicon svg polygon,
.mainmenuicon svg rect {
    fill: #202122;
}

.sub-menu>li>a {
    display: flex;
    align-items: center;
    color: #202122;
    font-size: 18px;
    padding: 20px 10px 20px 15px;
    font-weight: 500;
    border-bottom: 1px solid #202122;
    transition: inherit;
}

.solution-menu .sub-menu>li>a {
    pointer-events: none;
}

.sub-menu>li.active>a,
.sub-menu>li>a:hover {
    color: #fff;
    background-color: #d10000;
    border-bottom: 1px solid #d10000;
}

.sub-menu>li.active>a .mainmenuicon svg circle,
.sub-menu>li.active>a .mainmenuicon svg ellipse,
.sub-menu>li.active>a .mainmenuicon svg line,
.sub-menu>li.active>a .mainmenuicon svg path,
.sub-menu>li.active>a .mainmenuicon svg polygon,
.sub-menu>li.active>a .mainmenuicon svg rect,
.sub-menu>li>a:hover .mainmenuicon svg circle,
.sub-menu>li>a:hover .mainmenuicon svg ellipse,
.sub-menu>li>a:hover .mainmenuicon svg line,
.sub-menu>li>a:hover .mainmenuicon svg path,
.sub-menu>li>a:hover .mainmenuicon svg polygon,
.sub-menu>li>a:hover .mainmenuicon svg rect {
    fill: #fff;
}

.sub-level2 {
    padding: 10px 20px;
}

.sub-level2>li {
    display: block;
    padding: 10px 0;
    line-height: 1.3;
}

.submenuicon {
    padding-right: 15px;
}

.submenuicon svg {
    width: 30px;
    height: 30px;
    -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;
}

.sub-level2>li>a {
    color: #202122;
    font-size: 14px;
    display: flex;
    align-items: center;
    -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;
}

.sub-level2>li>a:hover {
    color: #d10000;
}

.sub-level2>li>a .submenuicon svg circle,
.sub-level2>li>a .submenuicon svg ellipse,
.sub-level2>li>a .submenuicon svg line,
.sub-level2>li>a .submenuicon svg path,
.sub-level2>li>a .submenuicon svg polygon,
.sub-level2>li>a .submenuicon svg rect {
    fill: #202122;
}

.sub-level2>li>a:hover .submenuicon svg circle,
.sub-level2>li>a:hover .submenuicon svg ellipse,
.sub-level2>li>a:hover .submenuicon svg line,
.sub-level2>li>a:hover .submenuicon svg path,
.sub-level2>li>a:hover .submenuicon svg polygon,
.sub-level2>li>a:hover .submenuicon svg rect {
    fill: #d10000;
}

.megactasection {
    background-color: #202122;
    padding: 25px 25px;
    display: flex;
}

.megactapwrap {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
}

.megatext {
    display: inline-flex;
    align-items: center;
}

.megatext .big {
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    padding-right: 10px;
}

.megatext span {
    font-size: 28px;
    color: #d10000;
    font-weight: 400;
    padding: 0 5px;
}

.megatext a {
    font-size: 22px;
    font-weight: 500;
}

.megactasection .or {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

.megactasection .btn-custome {
    border: 0;
    padding: 23px 35px;
    font-size: 18px;
}

.cd-primary-nav .see-all a {
    color: #e56f22;
}

.cd-primary-nav a .icon {
    width: 22px;
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}

.cd-primary-nav a .icon svg circle,
.cd-primary-nav a .icon svg ellipse,
.cd-primary-nav a .icon svg line,
.cd-primary-nav a .icon svg path,
.cd-primary-nav a .icon svg polygon,
.cd-primary-nav a .icon svg rect {
    fill: #fff;
}

.cd-primary-nav a:hover .icon svg circle,
.cd-primary-nav a:hover .icon svg ellipse,
.cd-primary-nav a:hover .icon svg line,
.cd-primary-nav a:hover .icon svg path,
.cd-primary-nav a:hover .icon svg polygon,
.cd-primary-nav a:hover .icon svg rect {
    fill: #d10000;
}

.cd-primary-nav a.estimate_btn:hover {
    color: #e97223 !important;
}

.accessible-megamenu {
    position: static;
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.accessible-megamenu h2,
.accessible-megamenu h3,
.accessible-megamenu h4 {
    font-size: 1em;
    display: inline;
    margin: 0;
    padding: 0;
    line-height: inherit;
}

.accessible-megamenu .accessible-megamenu-top-nav-item {
    position: relative;
}

.accessible-megamenu .accessible-megamenu-top-nav-item a[aria-expanded] {
    position: relative;
    text-decoration: none;
    z-index: inherit;
}

.accessible-megamenu .accessible-megamenu-top-nav-item a[aria-expanded]:focus,
.accessible-megamenu .accessible-megamenu-top-nav-item a[aria-expanded]:hover {
    outline-offset: -1px;
}

.accessible-megamenu .accessible-megamenu-top-nav-item a[aria-expanded].open,
.accessible-megamenu .accessible-megamenu-top-nav-item a[aria-expanded]:focus,
.accessible-megamenu .accessible-megamenu-top-nav-item a[aria-expanded]:hover {
    margin-left: 0;
    z-index: 1002;
}

.accessible-megamenu .accessible-megamenu-top-nav-item a[aria-expanded].open {
    padding-bottom: 2px;
}

.accessible-megamenu .accessible-megamenu-top-nav-item:first-child a[aria-expanded] {
    border-bottom-left-radius: 3px;
}

.accessible-megamenu .accessible-megamenu-top-nav-item:first-child a[aria-expanded].open {
    border-bottom-left-radius: 0;
    border-left: 1px solid #b3b3b3;
    border-left-color: rgba(0, 0, 0, 0.3);
    left: -1px;
    margin-right: -1px;
}

.accessible-megamenu .accessible-megamenu-panel {
    position: absolute;
    display: block;
    left: 0;
    margin: 0;
    line-height: normal;
    cursor: default;
    visibility: hidden;
    top: -9999em;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity 250ms ease 250ms, max-height 0.5s ease, visibility 0s linear 0.5s, top 0s linear 0.5s;
    -moz-transition: opacity 250ms ease 250ms, max-height 0.5s ease, visibility 0s linear 0.5s, top 0s linear 0.5s;
    -ms-transition: opacity 250ms ease 250ms, max-height 0.5s ease, visibility 0s linear 0.5s, top 0s linear 0.5s;
    -o-transition: opacity 250ms ease 250ms, max-height 0.5s ease, visibility 0s linear 0.5s, top 0s linear 0.5s;
    transition: opacity 250ms ease 250ms, max-height 0.5s ease, visibility 0s linear 0.5s, top 0s linear 0.5s;
}

.accessible-megamenu .accessible-megamenu-panel.open {
    visibility: visible;
    top: 88px;
    max-height: 600px;
    opacity: 1;
    z-index: 1001;
    -webkit-transition: opacity 250ms ease, max-height 0.5s ease, visibility 0s linear 0s, top 0s linear 0s;
    -moz-transition: opacity 250ms ease, max-height 0.5s ease, visibility 0s linear 0s, top 0s linear 0s;
    -ms-transition: opacity 250ms ease, max-height 0.5s ease, visibility 0s linear 0s, top 0s linear 0s;
    -o-transition: opacity 250ms ease, max-height 0.5s ease, visibility 0s linear 0s, top 0s linear 0s;
    transition: opacity 250ms ease, max-height 0.5s ease, visibility 0s linear 0s, top 0s linear 0s;
}

.accessible-megamenu .accessible-megamenu-panel.cols-4 {
    width: 100%;
}

.accessible-megamenu .accessible-megamenu-panel.cols-4>ol>li {
    width: 22%;
}

.accessible-megamenu .accessible-megamenu-panel.cols-4b {
    width: 878px;
    left: -6.462em;
    border-top-left-radius: 3px;
}

.accessible-megamenu .accessible-megamenu-panel.cols-4b>ol>li {
    width: 22%;
}

.accessible-megamenu .accessible-megamenu-panel.cols-3 {
    width: 724px;
}

.accessible-megamenu .accessible-megamenu-panel.cols-3>ol>li {
    width: 30%;
}

.accessible-megamenu .accessible-megamenu-panel.cols-1 {
    width: 615px;
}

.accessible-megamenu .accessible-megamenu-panel.cols-1>ol>li {
    width: auto;
}

.accessible-megamenu .accessible-megamenu-panel ol {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.accessible-megamenu .accessible-megamenu-panel ol>li {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.accessible-megamenu .accessible-megamenu-panel>ol>li {
    float: left;
    display: block;
    margin-right: 1em;
    margin-bottom: 1em;
    padding-left: 1em;
    border-left: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: inset 1px 0 0 #fff;
}

.accessible-megamenu .accessible-megamenu-panel>ol>li:first-of-type {
    padding-left: 0;
    border-left: none;
    box-shadow: none;
}

.accessible-megamenu .accessible-megamenu-panel>p {
    color: #454545;
    font-size: 1.2em;
    line-height: 1.1em;
}

.accessible-megamenu .accessible-megamenu-panel>ol>li>h3>a {
    font-weight: 700;
    color: #454545;
    font-size: 1.2em;
    margin-bottom: 6px;
    padding-top: 0.4em;
    padding-bottom: 0;
    line-height: 1.1em;
}

.accessible-megamenu .accessible-megamenu-panel ol ol>li>a {
    width: auto;
    text-indent: -2.333em;
    padding-left: 2.333em;
}

.accessible-megamenu .accessible-megamenu-panel hr {
    border-width: 1px 0;
    border-style: solid;
    border-top-color: rgba(0, 0, 0, 0.3);
    border-bottom-color: #fff;
}

.top-left-part a {
    display: flex;
    align-items: center;
}

.top-left-part a:hover {
    opacity: 0.8;
    color: #fff;
}

.top-left-part .star {
    line-height: 1;
    padding: 0 10px;
}

.top-left-part .star+strong {
    padding-right: 5px;
    font-weight: 600;
}

.top-right-part span {
    color: #fff;
}

.top-right-part .or {
    padding: 0 10px;
}

.top-right-part a {
    margin-left: 10px;
}

.top-right-part .head-requet-btn {
    padding: 6px 15px 6px 10px;
    margin-left: 0;
    background-color: #343535;
    border-radius: 30px;
}

.top-right-part .head-requet-btn img {
    margin-right: 10px;
    border-radius: 30px;
}

.top-right-part .head-requet-btn:hover {
    background-color: #d10000;
    color: #fff;
}

.estimate_btn {
    background: #d10000;
    box-shadow: 0 3px 10px 0 rgba(236, 115, 35, 0.2);
    color: #fff !important;
    padding: 15px 25px;
    border-radius: 5px;
    line-height: 1;
    vertical-align: unset;
    font-size: 14px;
    display: inline-flex;
    position: relative;
}

.estimate_btn:focus,
.estimate_btn:hover {
    background: #343535;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.get_quote {
    position: fixed;
    right: -50px;
    top: 200px;
    background: #d10000;
    z-index: 1001;
    font-size: 18px;
    color: #fff !important;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px 5px 0 0;
    letter-spacing: 1px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    cursor: pointer;
}

.get_quote:focus,
.get_quote:hover {
    background: #343535;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.banner {
    margin-top: 50px;
    position: relative;
    z-index: 9;
    min-height: 800px;
    overflow: hidden;
}

.tenc-intro-main__wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #d10000, rgb(51 116 160 / 72%) 40%, rgb(29 115 174 / 51%) 70%, rgb(0 0 0 / 62%));
    z-index: 999;
}

.tenc-intro-main__wrapper h1 {
    font-size: 60px;
    color: #fff;
    margin: 0 0 30px;
}

.font-semibold {
    font-weight: 600;
}

.tenc-intro-main__wrapper h2 {
    font-size: 36px;
    color: #fff;
    margin: 0 0 30px;
    font-weight: 500;
}

.tenc-intro-main__wrapper p {
    color: #fff;
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 50px;
}

.tenc-intro-main__wrapper a {
    background: #343535 !important;
    margin-right: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.tenc-intro-main__wrapper .or {
    color: #ffff;
    font-size: 20px;
    margin: 0 10px 12px 0;
    vertical-align: middle;
    display: inline-block;
}

.video {
    max-height: 800px;
    min-height: 800px;
}

.video video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto !important;
    height: auto !important;
    z-index: 0;
}

.video .mejs__overlay-button {
    display: none;
}

.video img {
    width: 100%;
    height: 100%;
    min-height: 800px;
    object-fit: cover;
}

#carouselExampleSlidesOnly {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
}

#carouselExampleSlidesOnly .carousel-inner {
    height: 100%;
}

#carouselExampleSlidesOnly .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

#carouselExampleSlidesOnly .carousel-caption h1 {
    font-size: 48px;
    margin-bottom: 30px;
    width: 100%;
}

#carouselExampleSlidesOnly .carousel-caption p {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
    width: 100%;
}

#carouselExampleSlidesOnly .carousel-caption .btn-custome {
    font-size: 18px;
    padding: 12px 25px;
}

#carouselExampleSlidesOnly .carousel-caption .btn-custome:focus,
#carouselExampleSlidesOnly .carousel-caption .btn-custome:hover {
    background: #fff !important;
    color: #000 !important;
}

#carouselExampleSlidesOnly .carousel-inner .carousel-item {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
}

#carouselExampleSlidesOnly .carousel-inner .carousel-item.active {
    display: flex;
}

.scrollmobilebanner .bannerfixedimagewidth {
    bottom: -200px;
    position: relative;
}

.bannerfixedscrollimagewrap {
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
}

.bannerfixedscrollimagewrap>img {
    position: relative;
    z-index: 1;
}

.scrollbannerinnerimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    padding: 5% 6% 5%;
    overflow: hidden;
    border-radius: 70px;
}

.scrollmobilebanner.active .scrollbannerinnerimg img {
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-name: bannermobilescroll;
    animation-name: bannermobilescroll;
    -webkit-animation-timing-function: cubic-bezier(1, 0.01, 0.305, 0.9);
    animation-timing-function: cubic-bezier(1, 0.01, 0.305, 0.9);
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

@keyframes bannermobilescroll {
    10% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-29%);
        -ms-transform: translateY(-32%);
        transform: translateY(-32%);
    }

    90% {
        -webkit-transform: translateY(calc(-100% + 30vw));
        -ms-transform: translateY(calc(-100% + 30vw));
        transform: translateY(calc(-100% + 30vw));
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes bannermobilescroll {
    10% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-29%);
        -ms-transform: translateY(-32%);
        transform: translateY(-32%);
    }

    90% {
        -webkit-transform: translateY(calc(-100% + 30vw));
        -ms-transform: translateY(calc(-100% + 30vw));
        transform: translateY(calc(-100% + 30vw));
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.brand-logo {
    position: relative;
    margin-top: -60px;
    z-index: 9;
}

.brands_logo {
    width: 100%;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    padding: 10px 0;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
}

.brands_logo {
    visibility: visible;
    opacity: 1;
}

.brands_logo .owl-item {
    float: left;
    padding: 10px 20px;
}

.brands_logo .slick-slide {
    padding: 10px 20px;
}

.brands_logo img {
    display: block;
    margin: 0 auto;
}

.brands_logo .owl-nav {
    display: none;
}

.brands_logo div {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.about {
    padding: 60px 0;
    position: relative;
}

.about-bg-section {
    position: absolute;
    left: 0;
    top: -74px;
    bottom: 0;
    height: calc(100% + 74px);
    width: 25.0133%;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-bg-section:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(248, 249, 250, 0.5);
    z-index: 1;
}

.about-bg-section .container {
    position: relative;
    z-index: 1;
}

.video-area-wrapper {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.video-area-wrapper img {
    width: 100%;
    object-fit: cover;
    max-width: 100%;
    margin: 0 auto;
}

.about .video-area-wrapper img {
    border: 10px solid #fff;
    border-radius: 30px;
}

.video-area-wrapper .hover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 1;
    display: flex;
    line-height: 1;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-color: #fff;
    border-radius: 50%;
    color: #d10000;
}

.video-play-btn:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    -webkit-animation: pulse-border 1.5s infinite;
    animation: pulse-border 1.5s infinite;
    z-index: -1;
}

.about .title {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 30px;
}

.about .title h2 {
    font-weight: 600;
}

.about .title:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 10px;
    background-color: #d10000;
}

.about h3 {
    font-weight: 500;
    font-size: 28px;
}

.about p {
    margin-bottom: 25px;
    color: #222;
    font-size: 17px;
}

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

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 0;
    }
}

@-moz-keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 0;
    }
}

@-o-keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 0;
    }
}

.counter-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
}

.about .counter-section {
    padding-left: 110px;
}

.counter-section li {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    position: relative;
}

.counter-section li:last-child:before {
    background: 0 0;
}

.counter-section li img {
    width: 50px;
    margin-right: 20px;
}

.counter_text {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.counter_text p {
    width: 100%;
    margin: 0;
}

.counter_text i {
    margin-left: 5px;
}

.counter_text .counter {
    font-size: 36px;
    color: #202122;
    font-weight: 600;
}

/* .counter-section li:before {
    content: "";
    width: 1px;
    height: 60%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #dddfe1;
} */

.services-tabs {
    width: 100%;
}

#servicesTab {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 100px;
    padding: 25px 35px;
    margin-bottom: 60px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
}

#servicesTab li {
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid #dddfe1;
}

#servicesTab li svg {
    width: 50px;
    margin-bottom: 10px;
}

#servicesTab li a {
    color: #202122;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#servicesTab li:last-child {
    border-right: none;
}

#servicesTab li a.active,
#servicesTab li a:hover {
    color: #d10000;
}

#servicesTab li a.active svg circle,
#servicesTab li a.active svg ellipse,
#servicesTab li a.active svg line,
#servicesTab li a.active svg path,
#servicesTab li a.active svg polygon,
#servicesTab li a.active svg rect,
#servicesTab li a:hover svg circle,
#servicesTab li a:hover svg ellipse,
#servicesTab li a:hover svg line,
#servicesTab li a:hover svg path,
#servicesTab li a:hover svg polygon,
#servicesTab li a:hover svg rect {
    fill: #d10000;
}

#servicesTab li a svg circle,
#servicesTab li a svg ellipse,
#servicesTab li a svg path,
#servicesTab li a svg polygon,
#servicesTab li a svg rect {
    transition: all 0.3s ease;
}

.servicesTabContent_text {
    width: 100%;
}

.servicesTabContent_text h3 {
    font-size: 30px;
    margin: 0;
}

.servicesTabContent_text h3 a {
    color: #d10000;
}

.servicesTabContent_text h3 a:hover {
    color: #202122;
}

.servicesTabContent_text span {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.servicesTabContent_text span.or {
    margin: 0 10px 15px 0;
}

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

.servicesTabContent_text ul li {
    display: inline-flex;
    padding-right: 10px;
    padding-bottom: 15px;
}

.servicesTabContent_text ul li a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    padding: 14px;
}

.servicesTabContent_text ul li a:hover {
    background: #d10000;
}

.servicesTabContent_text ul li a svg circle,
.servicesTabContent_text ul li a svg ellipse,
.servicesTabContent_text ul li a svg path,
.servicesTabContent_text ul li a svg polygon,
.servicesTabContent_text ul li a svg rect {
    transition: all 0.3s ease;
}

.servicesTabContent_text ul li a:hover svg circle,
.servicesTabContent_text ul li a:hover svg ellipse,
.servicesTabContent_text ul li a:hover svg path,
.servicesTabContent_text ul li a:hover svg polygon,
.servicesTabContent_text ul li a:hover svg rect {
    fill: #fff;
}

.servicesTabContent_text ul li a.btn-custome {
    width: auto;
    border-radius: 5px;
    height: auto;
    padding: 18px 15px;
    background: #d10000;
}

.solutions-box {
    width: 100%;
    border-radius: 10px;
    padding: 15px 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eff0f0;
    min-height: 320px;
}

.solutions-box-icon {
    width: 75px;
    height: 75px;
    background: #fff;
    border-radius: 7px;
    padding: 15px;
    transition: all 0.3s ease;
    background-color: #f7f7f7;
    border-radius: 100%;
}

.solutions-box h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    font-weight: 500;
}

.solutions-box-icon svg {
    width: 45px;
    height: 45px;
}

.solutions-box-icon svg circle,
.solutions-box-icon svg ellipse,
.solutions-box-icon svg line,
.solutions-box-icon svg path,
.solutions-box-icon svg polygon,
.solutions-box-icon svg rect {
    transition: all 0.3s ease;
    fill: #d10000;
}

.solutions-box:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px 10px 0 0;
}

.solutions-box:hover .solutions-box-icon {
    background: #eb7223;
}

.solutions-box:hover .solutions-box-icon svg circle,
.solutions-box:hover .solutions-box-icon svg ellipse,
.solutions-box:hover .solutions-box-icon svg line,
.solutions-box:hover .solutions-box-icon svg path,
.solutions-box:hover .solutions-box-icon svg polygon,
.solutions-box:hover .solutions-box-icon svg rect {
    fill: #fff;
}

.solutions-box .btn-custome {
    opacity: 0;
    visibility: hidden;
}

.solutions-box:hover .btn-custome {
    opacity: 1;
    visibility: visible;
}

.why-choose-box {
    width: 100%;
    background: #fff;
    border: 1px solid #ecedee;
    border-radius: 10px;
    text-align: center;
    padding: 20px 10px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    min-height: 250px;
}

.why-choose-box svg {
    width: 70px;
    height: 70px;
    background: #fff;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    padding: 10px;
    transition: all 0.3s ease;
}

.why-choose-box svg circle,
.why-choose-box svg ellipse,
.why-choose-box svg line,
.why-choose-box svg path,
.why-choose-box svg polygon,
.why-choose-box svg rect {
    transition: all 0.3s ease;
}

.why-choose-box h5 {
    font-size: 18px;
    margin: 15px 0 10px;
    transition: all 0.3s ease;
}

.why-choose-box p {
    margin: 0;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    color: #6a6d6f;
    transition: all 0.3s ease;
}

.why-choose-box:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.why-choose-box:hover svg circle,
.why-choose-box:hover svg ellipse,
.why-choose-box:hover svg line,
.why-choose-box:hover svg path,
.why-choose-box:hover svg polygon,
.why-choose-box:hover svg rect {
    fill: #fff;
}

.why-choose-box:hover svg {
    background: #d10000;
}

.callouts {
    padding: 25px;
    border: 1px solid #ecedee;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    position: relative;
}

.callouts span {
    font-size: 24px;
    font-weight: 600;
}

#callouts-type .typed {
    color: #d10000;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}

.callouts-separate {
    max-width: 1170px;
    margin: 50px auto;
}

.callouts-separate-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.Feature-slider {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 10px;
}

.Feature-slider .item {
    padding: 0 15px;
}

.process-box {
    width: 100%;
    border: 1px solid #dddfe1;
    border-radius: 10px;
    padding: 0 10px 10px 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 260px;
    margin-bottom: 40px;
}

.process-box h4 {
    font-size: 16px;
    margin: 10px 0;
}

.process-box li {
    width: 100%;
    display: flex;
    font-size: 12px;
    color: #6a6d6f;
    font-weight: 500;
    margin: 3px 0;
}

.process-box li>i {
    font-size: 12px;
    position: static;
    background: 0 0;
    width: auto;
    height: auto;
    color: #6a6d6f;
    border-radius: 0;
    margin-right: 5px;
    align-items: flex-start;
    line-height: 1.5;
}

.process-box-icon {
    width: 95px;
    height: 95px;
    position: relative;
    top: 0;
    left: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    margin: 0 0 20px;
}

.process-box-icon:before {
    content: "";
    width: 150%;
    height: 150%;
    background: #dddfe1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-30%, -30%);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.process-box-icon svg {
    width: 50px;
}

.process-box-icon svg circle,
.process-box-icon svg ellipse,
.process-box-icon svg line,
.process-box-icon svg path,
.process-box-icon svg polygon,
.process-box-icon svg rect {
    fill: #202122;
    transition: all 0.3s ease;
}

.process-box:hover .process-box-icon svg circle,
.process-box:hover .process-box-icon svg ellipse,
.process-box:hover .process-box-icon svg line,
.process-box:hover .process-box-icon svg path,
.process-box:hover .process-box-icon svg polygon,
.process-box:hover .process-box-icon svg rect {
    fill: #fff;
}

.process-box:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-color: #fff;
}

.process-box:hover .process-box-icon:before {
    background: #d10000;
    opacity: 1;
}

.process-items {
    padding-right: 20px;
    padding-left: 20px;
    position: relative;
}

.process-items:first-child {
    padding-left: 15px;
}

.process-items i {
    background: #dddfe1;
    color: #202122;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: 50px;
}

.process-items:before {
    content: "";
    width: 40px;
    height: 1px;
    background: #dddfe1;
    position: absolute;
    right: -20px;
    top: 60px;
}

.process-items:nth-child(4):before {
    left: 50px;
    top: auto;
    bottom: 0;
    width: 1px;
    height: 42px;
}

.process-items:nth-child(4) i {
    top: auto;
    bottom: 10px;
    left: 40px;
}

.process-items:nth-child(7):before {
    background: #fff;
}

.process-slider {
    margin-left: -7px;
    margin-right: -7px;
    margin-bottom: 15px;
}

.process-slider .item {
    padding: 0 7px;
}

.testimonials_left {
    width: 470px;
    height: 470px;
    position: relative;
    margin: 50px auto;
}

.testimonials_circle {
    width: 100%;
    height: 470px;
    position: relative;
    border-radius: 50%;
    z-index: 1;
}

.testimonials_circle:before {
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid #e2e3e5;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
}

.testimonials_circle li {
    width: 75px;
    height: 75px;
    position: absolute;
}

.testimonials_circle li a {
    width: 73px;
    height: 73px;
    overflow: hidden;
    border-radius: 50%;
    display: block;
    border: 1px solid #e2e3e5;
}

.testimonials_circle li a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.testimonials_circle li i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #6a6d6f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 10px);
}

.testimonials_circle li:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translate(-50%, -40%);
}

.testimonials_circle li:nth-child(2) {
    top: 0;
    right: 0;
    transform: translate(-40%, 50%);
}

.testimonials_circle li:nth-child(3) {
    top: 50%;
    right: 0;
    transform: translate(40%, -50%);
}

.testimonials_circle li:nth-child(4) {
    bottom: 0;
    right: 0;
    transform: translate(-40%, -50%);
}

.testimonials_circle li:nth-child(5) {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 40%);
}

.testimonials_circle li:nth-child(6) {
    bottom: 0;
    left: 0;
    transform: translate(40%, -50%);
}

.testimonials_circle li:nth-child(7) {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.testimonials_circle li:nth-child(8) {
    top: 0;
    left: 0;
    transform: translate(40%, 50%);
}

.testimonials_privew {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #d10000;
    border-radius: 50%;
    padding: 10px;
}

.testimonials_privew>div {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #d10000;
    box-shadow: 0 2px 17px rgba(0, 0, 0, 0.15);
}

.testimonials_privew>div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials_privew i {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 40px;
    height: 40px;
    background: #d10000;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(-50%, 20px);
}

.testimonials_text_box {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    border: 1px solid #e2e3e5;
    z-index: 1;
}

.testimonials_text_slider {
    overflow: hidden;
    padding-left: 30px;
}

.testimonials_text_slider .owl-item {
    float: left;
}

.testimonials_text_box i {
    font-size: 54px;
    margin-bottom: 20px;
    opacity: 0.2;
}

.testimonials_text_box strong {
    color: #d10000;
    font-size: 18px;
    font-weight: 600;
}

.owl-theme .owl-nav {
    display: none;
}

.testimonials_text_box span {
    font-size: 16px;
}

.testimonials-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    width: 50px;
    display: none;
}

.testimonials-arrow:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: -8px;
    left: -46px;
    background: #dddfe1;
    transform: rotate(-32deg);
}

.testimonials-arrow:after {
    content: "";
    width: 90%;
    height: 1px;
    position: absolute;
    bottom: -13px;
    left: -44px;
    background: #dddfe1;
    transform: rotate(20deg);
}

.testimonials_text .owl-dots {
    bottom: -30px;
}

.testimonials_text_slider .owl-dot span {
    display: none !important;
}

.testimonials_video_box .video-area-wrapper {
    height: 270px;
}

.testimonials_video_box .video-area-wrapper img {
    width: 100%;
    height: 100%;
}

.portfolio-slider-section {
    display: block;
}

.innerbanner.portfoliobanner {
    min-height: 600px;
}

.innerbanner.portfoliobanner .video {
    min-height: 600px;
    max-height: 600px;
}

.innerbanner.portfoliobanner .video img {
    min-height: 600px;
}

.portfolio-slider {
    width: 100%;
    position: relative;
    padding: 0 15px 20px !important;
    overflow: hidden;
}

.portfolio-slider .item {
    padding: 0 15px;
}

.slick-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.slick-dots li {
    display: inline-block;
    vertical-align: top;
}

.slick-dots button {
    width: 12px;
    height: 12px;
    background: #c8c8c8;
    opacity: 1;
    font-size: 0;
    border: none;
    border-radius: 50%;
    margin: 0 5px;
    outline: 0;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background-color: #d10000;
}

.portfolio-figure {
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f9fafa;
    border-radius: 10px;
    text-align: center;
    position: relative;
    min-height: 510px;
}

.portfolio-title {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
}

.portfolio-figure .img-fluid {
    height: 510px;
    object-fit: cover;
    margin: 0 auto;
}

.portfolio-slider .owl-item {
    display: inline-block;
}

.portfolio-figure-caption {
    width: 100%;
    background: #d10000;
    padding: 20px;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
}

.portfolio-figure-caption h3 {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.portfolio-figure-caption p {
    color: #fff;
}

.portfolio-figure-caption a {
    display: inline-block;
    border: 1px solid #fff;
    padding: 8px 20px;
    border-radius: 5px;
}

.portfolio-figure-caption a:hover {
    background: #fff;
    box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.2);
}

.portfolio-figure:before {
    content: "";
    width: 100%;
    height: 0;
    background: #202122;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.portfolio-figure:hover:before {
    height: 100%;
}

.portfolio-figure:hover .portfolio-figure-caption {
    transform: translateY(0);
}

.portfolio-slider .owl-nav {
    display: none;
}

.portfolio-slider .owl-dots {
    text-align: center;
    bottom: -20px;
}

.owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: #6a6d6f;
    opacity: 0.2;
    border: none;
    border-radius: 50%;
    margin: 5px;
    outline: 0;
    cursor: pointer;
}

.owl-dots .owl-dot.active {
    background: #d10000;
    opacity: 1;
}

.owl-item {
    float: left;
}

.owl-nav {
    display: none;
}

.owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.portfolio-figure.whitetext h3,
.portfolio-figure.whitetext p {
    color: #fff;
}

.greenshadebg {
    background-color: #84a34b;
}

.pinkshadebg {
    background-color: #5a354a;
}

.blueshadebg {
    background-color: #161a34;
}

.fantasybg {
    background-color: #0a2241;
}

.cluedbg {
    background-color: #e60b8d;
}

.blobbg {
    background-color: #41a943;
}

.adanibg {
    background-color: #006d9f;
}

.client-logo li {
    width: 100%;
    text-align: center;
    border-right: 1px solid #dddfe1;
    padding: 5px;
}

.client-logo li:last-child {
    border-right: none;
}

.call_shedule_text {
    width: 100%;
}

.call_shedule_text ul {
    display: flex;
    align-items: center;
    margin-top: 25px;
    width: 100%;
}

.call_shedule_text ul li {
    margin-right: 18px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
}

.call_shedule_text ul li span {
    margin-right: 15px;
}

.orange-text {
    color: #d10000;
}

.call-icon-bg a {
    width: 50px;
    height: 50px;
    overflow: hidden;
    display: inline-flex;
    background: #d10000;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    padding: 13px;
}

.call-icon-bg a:hover {
    background-color: #343535;
}

.call-icon-bg svg {
    width: 100%;
}

.call_shedule_text ul li a {
    color: #202122;
}

.call_shedule_text ul li a:hover {
    color: #d10000;
}

.call_shedule_text h4 {
    margin-bottom: 20px;
    font-size: 28px;
}

.call_shedule_img {
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    float: right;
    border: 1px solid #dddfe1;
    position: relative;
    margin: 20px 25px 20px 0;
}

.call_shedule_img img {
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    width: 300px;
}

.call_shedule_img:before {
    content: "";
    width: 115%;
    height: 115%;
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid #d10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

#technologies_tabs {
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

#technologies_tabs li {
    padding: 0 30px;
    border-right: 1px solid #e0e2e3;
}

#technologies_tabs li a {
    color: #6a6d6f;
    font-weight: 500;
}

#technologies_tabs li a.active,
#technologies_tabs li a:hover {
    color: #d10000;
}

#technologies_tabs li:last-child {
    border-right: 0;
}

.technologies_icons li {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(221, 223, 225, 0.5);
    border-radius: 10px;
    margin: 5px;
    transition: all 0.5s ease;
}

.technologies_icons li:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.technologies_icons li img {
    margin: 0 auto;
}

.blog_box {
    width: 100%;
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #e2e3e5;
    overflow: hidden;
    border-radius: 10px;
}

.blog_box_img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog_box-caption {
    padding: 0 12px 20px;
    position: relative;
    min-height: 310px;
}

.blog_box-caption ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -25px;
    margin-bottom: 25px;
}

.blog_author_img {
    width: 72px;
    height: 72px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    margin-top: -20px;
}

.blog_box-caption ul li {
    padding-top: 20px;
    color: #6a6d6f;
    margin-right: 7px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.blog_box-caption ul li a {
    color: #6a6d6f;
}

.blog_box-caption ul li a:hover {
    color: #d10000;
}

.blog_box-caption ul li i {
    margin-right: 5px;
    font-size: 16px;
    line-height: 1;
}

.blog_box-caption h4 {
    font-size: 18px;
    line-height: 1.3;
    margin: 10px 0;
}

.blog_box-caption h4 a {
    color: #202122;
}

.blog_box-caption h4 a:hover {
    color: #d10000;
}

.blog_box:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.blog_box-caption .btn-custome {
    position: absolute;
    bottom: 15px;
    left: 12px;
}

.blog-slider .owl-dots {
    text-align: center;
}

.blog-slider {
    padding: 0 0 20px;
}

.blog-slider {
    margin-left: -8px;
    margin-right: -8px;
}

.blog-slider .item {
    padding: 0 8px;
}

.blog-slider .item .blog-post_content {
    min-height: 220px;
}

.blog-slider .item .blog-post {
    margin-bottom: 10px;
}

.blog-post {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
}

.blog-post_wrapper {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog-post_media {
    position: relative;
    margin-bottom: 28px;
}

.blog-post_media_part {
    position: relative;
}

.blog-post_meta-categories {
    position: absolute;
    bottom: -11px;
    left: 30px;
    z-index: 3;
    margin-bottom: 0;
}

.blog-post_meta-categories span {
    display: inline-block;
}

.blog-post_meta-categories a {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 22px;
    padding: 0 11px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
}

.blog-post_content {
    padding: 0 20px 18px 20px;
}

.blog-post_title {
    font-size: 24px;
    line-height: 36px;
    height: 54px;
    overflow: hidden;
}

.blog-post_text {
    height: 100px;
    overflow: hidden;
}

.blog-post_title a {
    font-size: 20px;
    line-height: 28px;
    color: #202122;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post_text p {
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 21px;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post_meta-wrap {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.meta-wrapper {
    display: flex;
    align-items: center;
}

.meta-wrapper>span {
    margin-right: 5px;
}

.author_post img {
    margin-right: 6px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
}

.author_post a {
    color: #d10000;
    position: relative;
}

.author_post a:after {
    position: absolute;
    z-index: 1;
    display: block;
    bottom: 0;
    content: "";
    border-bottom: 1px solid;
    width: 100%;
    right: auto;
    left: 0;
    -webkit-transition: width 0.3s linear 0s, right 0s linear 0.3s, left 0s linear 0.3s;
    -o-transition: width 0.3s linear 0s, right 0s linear 0.3s, left 0s linear 0.3s;
    -moz-transition: width 0.3s linear 0s, right 0s linear 0.3s, left 0s linear 0.3s;
    transition: width 0.3s linear 0s, right 0s linear 0.3s, left 0s linear 0.3s;
}

.meta-wrapper span:after {
    content: "";
    margin: -2px 0 0 13px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    width: 4px;
    height: 4px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #343535;
}

.date_post {
    color: #9a9a9a;
    margin-right: 0;
}

.meta-wrapper .date_post:after {
    display: none;
}

.blog-post_info-wrap a {
    color: #b6b6b6;
}

.blog-post_info-wrap a:hover {
    color: #d10000;
    transform: translateX(5px);
}

.author_post a:hover:after {
    width: 0;
    right: 0;
    left: auto;
}

.blog-post_feature-link {
    display: block;
}

.blog-post_title a:hover {
    color: #d10000;
}

.blog-post_feature-link:before {
    opacity: 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 2;
    background-color: rgba(40, 40, 40, 0.5);
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    width: 100%;
    height: 100%;
}

.blog-post_media_part:hover .blog-post_feature-link:before {
    opacity: 1;
}

.hire_small_box_link {
    width: 100%;
    float: left;
    background: #d10000;
    text-align: center;
    padding: 10px;
    margin-bottom: 35px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.hire_small_box_link span {
    float: left;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    text-align: left;
    padding: 7px 0;
}

.hire_small_box_link a {
    font-size: 20px;
    text-transform: uppercase;
    display: block;
    padding: 5px 0;
    color: #fff;
    font-weight: 700;
}

.hire_small_box_link .hire_small_box_btn {
    float: right;
    background: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
}

.hire_small_box_link .hire_small_box_btn:hover {
    background-color: #202122;
    color: #fff;
}

.hire_small_box_link3 {
    width: 100%;
    float: left;
    background: #d10000;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 80px;
    margin-bottom: 35px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.hire_small_box_link3 p {
    background: #fff;
    color: #202122;
    width: 100%;
    max-width: 150px;
    min-height: 80px;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0 50px 50px 0;
    line-height: 29px;
    margin-bottom: 0 !important;
}

.hire_small_box_link3 a {
    color: #fff !important;
    padding-left: 10px;
    padding-right: 10px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
}

.hire_small_box_link3 a:focus,
.hire_small_box_link3 a:hover {
    text-decoration: underline !important;
}

.contact_top_rating {
    width: 100%;
    text-align: center;
    border: 1px solid #dddfe1;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact_top_rating a {
    color: #ff3d2e;
    display: block;
    padding: 20px 20px 10px;
}

.contact_top_rating span {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0;
    line-height: 1;
}

.contact_top_rating img {
    margin-bottom: 5px;
}

.contact_top_rating strong {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0 0;
    color: #202122;
    font-size: 24px;
    line-height: 1;
}

.contact_top_rating:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.contact_rating {
    width: 100%;
}

.contact_rating li {
    width: 100%;
    float: left;
    background: #fff;
    border: 1px solid #dddfe1;
    border-radius: 10px;
    overflow: hidden;
    height: 95px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.work_logo {
    padding: 10px 20px;
    position: relative;
    max-width: 280px;
    min-width: 280px;
}

.top_rating_img {
    position: absolute;
    top: 0;
    right: 5px;
    margin: 0 !important;
}

.work_rating {
    background: #fbfcfc;
    padding: 22.5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 1px solid #dddfe1;
    transition: all 0.3s ease;
}

.work_rating img {
    width: 50px;
    margin-right: 10px;
}

.rating_text {
    text-align: center;
}

.rating_text p {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 3px;
}

.rating_text strong {
    margin: 0;
    color: #222;
    font-weight: 800;
}

.user_rating {
    width: 100%;
    float: left;
    color: #fff;
    overflow: auto;
    padding-top: 13px;
}

.user_rating img {
    float: left;
    margin-right: 20px;
    width: 60px;
    margin-top: -12px;
}

.contact_rating li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ff3d2e;
}

.contact_rating li:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.bootstrap-select .dropdown-toggle .filter-option {
    font-size: 14px;
    padding: 12px 15px;
    height: 44px;
}

textarea.form-control {
    resize: none;
}

.form-control:focus {
    border-color: #d10000;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(236, 115, 35, 0.2);
}

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

.contact-custome-btn {
    font-size: 16px;
    margin-top: 10px;
    padding: 17px 30px;
}

.contact-custome-btn i {
    margin-right: 10px;
    display: none;
}

#schedule_a_call .form-group label {
    display: block;
    margin: 0;
    font-size: 0;
}

#request_the_quote .form-group label {
    display: block;
    margin: 0;
    font-size: 0;
    height: 0;
    width: 0;
}

.phone-field .con-num .iti.iti--allow-dropdown {
    display: block;
}

.hire_box {
    width: 100%;
    background: #fff;
    border: 1px solid #e0e2e4;
    border-radius: 10px;
    padding: 15px 15px;
    text-align: center;
    font-size: 16px;
    min-height: 250px;
}

.hire_box span {
    margin-top: 15px;
    display: block;
    color: #6a6d6f;
}

.footer_box {
    width: 100%;
}

.footer_box ul {
    width: 100%;
}

.footer_box ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    width: 100%;
}

.footer_box ul li:last-child {
    margin-bottom: 0;
}

.footer_box ul li:after {
    content: "";
    min-height: inherit;
    font-size: 0;
}

.footer_box ul li i {
    min-width: 24px;
    width: 24px;
    margin-right: 10px;
    position: relative;
    top: 2px;
}

.footer_box ul li i svg {
    width: 100%;
}

.footer_box ul li p {
    color: #6a6d6f;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.footer_box ul li a {
    color: #6a6d6f;
    font-size: 15px;
    line-height: 2;
}

.footer_box h5 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer_box ul li a:hover {
    color: #d10000;
}

main {
    margin-bottom: 800px;
    background-color: #fff;
}

.footer-main {
    position: fixed;
    background-color: #202122;
    height: 800px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.foot-center-col {
    padding: 70px 15px 35px;
    border-right: 1px solid rgba(245, 133, 31, 0.3);
}

.foot-center-col:nth-child(1) {
    border-right: 0;
}

.foot-center-col:nth-child(3) .foot-menu {
    padding-left: 15px;
}

.foot-center-col h4 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 22px;
}

.foot-menu ul li {
    margin-bottom: 12px;
    display: block;
}

.foot-menu ul li:last-child {
    margin-bottom: 0;
}

.foot-menu ul li a {
    color: #cecece;
}

.foot-menu ul li a:hover {
    color: #d10000;
}

.foot-exp-wrap {
    padding-left: 15px;
}

.foot-exp-char {
    width: 140px;
}

.foot-exp-text-wrap {
    width: calc(100% - 160px);
    margin-left: 20px;
}

.foot-exp-text-button {
    background-color: #2b2c2d;
    text-transform: uppercase;
    text-align: center;
    padding: 13px 10px;
}

.foot-exp-text-button .exp {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #d10000;
    line-height: 1.1;
}

.foot-exp-text-button .indus {
    display: block;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
}

.foot-exp-text-wrap .btn-custome {
    font-size: 16px;
}

.foot-social {
    margin-top: 20px;
}

.foot-social .header_social li {
    margin-left: 11px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: auto;
}

.foot-social .header_social li:first-child {
    margin-left: 0;
}

.foot-social .header_social li.social-share a,
.foot-social .header_social li.social-share a:hover {
    background-color: #d10000;
    color: #fff;
    position: relative;
}

.foot-social .header_social li.social-share:before {
    content: " ";
    top: -20px;
    left: -20px;
    background-color: #d10000;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    position: absolute;
    opacity: 0.6;
    -webkit-animation: pulse2 1.8s ease-out;
    animation: pulse2 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse2 {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }

    25% {
        -webkit-transform: scale(0.3);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(0.6);
        opacity: 0.6;
    }

    75% {
        -webkit-transform: scale(0.9);
        opacity: 0.3;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes pulse2 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    25% {
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0.6;
    }

    75% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.3;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.foot-social .header_social li.social-share .icon {
    width: 40px;
    height: 40px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
    -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;
    background-color: #d10000;
    color: #fff;
    border: 1px solid #d10000;
}

.foot-social .header_social li.social-share .icon:last-child {
    margin-right: 0;
}

.foot-social .header_social li.social-share .icon span {
    position: absolute;
    top: -20px;
    font-size: 14px;
}

.foot-social .header_social li.social-share .icon:hover {
    background: 0 0;
    color: #d10000;
    border: 1px solid #d10000;
}

.foot-social .header_social .social-share-fixed {
    position: absolute;
    white-space: nowrap;
    top: -17px;
    transform: translateX(-100%);
    padding-right: 10px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -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;
    background-color: rgba(43, 44, 45, 0.8);
    padding: 28px 10px 10px;
    border-radius: 10px;
    left: -20px;
}

.foot-social .header_social.active .social-share-fixed {
    opacity: 1;
    visibility: visible;
}

.foot-social .header_social li a {
    margin: 0;
    border: 1px solid #d10000;
    color: #d10000;
    background-color: transparent;
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.foot-social .header_social li a:hover {
    background-color: #d10000;
    color: #202122;
}

.footer-main hr {
    border-top: 1px solid rgba(245, 133, 31, 0.3);
    margin: 0;
}

.footer-center {
    padding: 30px 0 0;
}

.footer-center-top-content p {
    color: #fff;
    font-size: 18px;
}

.footer-center-top-content p img {
    margin-right: 10px;
    vertical-align: top;
}

.footer-center-top-content span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
}

.footer-center-top-market {
    padding: 30px 0;
}

.footer-center-market-list .item {
    margin-right: 10px;
}

.footer-center-market-list .item:last-child {
    margin-right: 0;
}

.footer-center-market-list .item img {
    width: auto;
    height: 135px;
    object-fit: cover;
}

.footer-center-top-market .btn-custome {
    font-size: 16px;
    color: #d10000 !important;
    background-color: transparent !important;
    border: 1px solid #d10000 !important;
    font-weight: 500;
    box-shadow: none !important;
}

.footer-center-top-market .btn-custome:hover {
    color: #fff !important;
    background-color: #d10000 !important;
    border: 1px solid #d10000 !important;
}

#footer-bottom {
    padding: 30px 0;
}

.foot-link {
    margin-bottom: 10px;
}

.foot-link li {
    position: relative;
    margin: 0 0 0 10px;
    padding: 0 0 0 10px;
}

.foot-link li:before {
    content: "|";
    display: block;
    position: absolute;
    left: -5px;
    top: 0;
    margin: 0;
    color: #fff;
    line-height: 18px;
}

.foot-link li:first-child {
    margin: 0;
    padding: 0;
}

.foot-link li:first-child:before {
    display: none;
}

.foot-link li a {
    color: #fff;
}

.foot-link li a:hover {
    color: #d10000;
}

#footer-bottom p {
    color: #fff;
    margin: 0;
}

.scroll-top {
    bottom: 35px;
    color: #fff !important;
    display: none;
    font-size: 26px;
    padding: 12px 9px;
    position: fixed;
    left: 20px;
    height: 52px;
    text-align: center;
    width: 52px;
    background: #d10000;
    border-radius: 6px;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.4);
    z-index: 990;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.scroll-top:after {
    content: "";
    width: 2px;
    height: 25px;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: -50px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-left: -2px;
}

.scroll-top:hover:after {
    bottom: 8px;
}

.scroll-top:hover:before {
    top: -8px;
    position: relative;
    color: #fff;
    font-size: 30px;
}

.scroll-top:before {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 0;
    left: -1px;
}

.scroll-top:hover {
    -webkit-box-shadow: 0 25px 55px 0 rgba(0, 0, 0, 0.21), 0 16px 28px 0 rgba(0, 0, 0, 0.22);
    box-shadow: 0 25px 55px 0 rgba(0, 0, 0, 0.21), 0 16px 28px 0 rgba(0, 0, 0, 0.22);
}

#contact_popup {
    width: 100%;
    float: left;
    position: fixed;
    top: 0;
    height: 100%;
    overflow: auto;
    z-index: 99999999;
    background: #f3f3f3;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    visibility: hidden;
    opacity: 0;
}

.popup_form {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.popup_form h4 {
    color: #d10000;
    font-size: 5vw;
    line-height: 1.04444em;
    margin-bottom: 35px;
    margin-left: 10px;
}

.popup_form .text-color {
    color: #343535;
}

#popup_close,
.solution_app_popup_close {
    color: #d10000;
    font-size: 36px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

#popup_close:hover,
.solution_app_popup_close:hover {
    color: #343535;
}

.popup_form .form-control {
    border: none !important;
    background: #fff;
}

.popup_show {
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
}

#request_the_quote .form-group {
    margin-bottom: 30px;
    position: relative;
}

#request_the_quote .form-group .help-block {
    position: absolute;
    bottom: -30px;
    left: 20px;
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 10px !important;
    z-index: 992;
    opacity: 1;
    border-radius: 10px;
    background: #202122;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    color: #fff;
    padding: 12px 20px;
}

.cookiealert.show {
    opacity: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}

.cookiealert a {
    color: #d10000;
}

.cookiealert a:hover {
    color: #fff;
}

.cookiealert button {
    vertical-align: baseline;
    width: 130px;
    padding: 3px 5px;
    font-size: 16px;
    background-color: #d10000;
    color: #fff;
    font-weight: 500;
}

.cookiealert button:hover {
    background-color: #fff;
    color: #202122;
}

.cookiealert-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.cookiealert-img {
    width: 60px;
}

.cookiealert-img span {
    font-size: 35px;
}

.cookiealert-text {
    width: calc(100% - 200px);
    padding: 0 10px;
}

.cookiealert-text p {
    margin: 0;
    color: #fff;
}

.cookiealert-text .que {
    font-size: 18px;
    padding-bottom: 2px;
}

.cookiealert-text .que span {
    display: none;
}

.cookiealert-buttons {
    width: 140px;
}

.hire-team-sticky-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto 10px !important;
    z-index: 993;
    opacity: 1;
    border-radius: 10px;
    background: #d10000;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    color: #fff;
    padding: 15px 20px;
}

.hire-team-sticky-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hire-team-sticky-icon {
    width: 80px;
}

.hire-team-sticky-content {
    width: calc(100% - 310px);
    padding: 0 20px;
}

.hire-team-sticky-content .ttl1 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.hire-team-sticky-content .ttl2 {
    font-size: 14px;
}

.hire-team-sticky-btn {
    width: 230px;
}

.hire-team-sticky-btn-wrap .btn {
    background-color: #fff;
    color: #d10000;
    font-weight: 500;
    padding: 6px 15px;
    position: relative;
}

.hire-team-sticky-btn-wrap .btn:before {
    content: "";
    display: block;
    position: absolute;
    left: 177px;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 34px;
    background-color: #fff;
    pointer-events: none;
}

.hire-team-sticky-btn-wrap .btn:focus,
.hire-team-sticky-btn-wrap .btn:hover {
    background-color: #202122;
    color: #fff;
}

.hire-team-sticky-btn-wrap .close {
    position: relative;
    top: 0;
    right: 0;
    opacity: 1;
    text-shadow: none;
    color: #fff;
    background: #343535;
    border-radius: 100%;
    font-size: 16px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

.hire-team-sticky-btn-wrap .close:not(:disabled):not(.disabled):focus,
.hire-team-sticky-btn-wrap .close:not(:disabled):not(.disabled):hover {
    opacity: 1;
    color: #fff;
}

#drift-widget-container {
    z-index: 991 !important;
}

.head-contact-info {
    display: none;
}

.top-review-bar .container {
    max-width: 1380px;
    width: 100%;
}

.head-call-back-sidebar-background {
    z-index: 999999;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(27, 32, 34, 0.8);
    opacity: 0;
    visibility: hidden;
}

.head-call-back-sidebar-background.open {
    opacity: 1;
    visibility: visible;
}

.head-call-back-sidebar {
    position: fixed;
    left: -430px;
    top: 0;
    bottom: 0;
    width: 430px;
    height: 100%;
    z-index: 99999999;
    background-color: #fff;
    padding: 70px 30px;
    opacity: 0;
    visibility: hidden;
    -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;
}

.head-call-back-sidebar.open {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.head-call-back-box img {
    width: 120px;
    border-radius: 100%;
    height: 120px;
    object-fit: cover;
}

.head-call-back-content {
    width: calc(100% - 150px);
    margin-left: 20px;
}

.head-call-back-content-title {
    font-size: 18px;
    font-weight: 500;
    color: #d10000;
}

.head-call-back-content p {
    margin-bottom: 0;
}

.head-call-form-section {
    margin-top: 40px;
}

.head-call-form-section .form-group label {
    display: block;
    margin: 0;
}

.head-call-back-sidebar .close {
    position: absolute;
    right: 30px;
    top: 30px;
}

.head-call-back-sidebar .bootstrap-select>.dropdown-toggle {
    font-size: 14px;
    padding: 11px 15px;
    color: #6a6d6f;
}

.featured-in-section {
    position: relative;
}

.featured-in-section .container {
    position: relative;
}

.featured-in-image-box {
    height: 110px;
    background-color: #fdfefe;
    position: relative;
    padding: 5px 10px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    -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;
}

.featured-in-image-box img {
    align-self: center;
    -ms-flex: 1;
}

.featured-in-image-box:hover {
    -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
}

.featured-in-image-box:before {
    content: "";
    display: block;
    position: absolute;
    width: 37px;
    height: 12px;
    right: -37px;
    top: 50%;
    margin-top: -6px;
    background: url(assets/frameworks/public/images/about-us/featured-in-bg-pattern.png) no-repeat center center;
}

.featured-in-section .row>div:last-child .featured-in-image-box:before,
.featured-in-section .row>div:nth-child(4n + 0) .featured-in-image-box:before {
    display: none;
}

.our-award-section .item {
    padding: 0 15px;
}

.our-award-section .item img {
    height: 170px;
}

.aboutusbanner .tenc-intro-main__wrapper h1 span {
    display: block;
    padding-bottom: 10px;
    color: #d10000;
    text-transform: uppercase;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .types-of-ar-platform-box {
        height: 190px;
    }

    .footer_box ul li {
        display: block;
    }

    .footer_box ul li p {
        width: calc(100% - 30px);
    }

    .footer_box ul li i svg {
        width: auto;
    }

    .blog-post_title {
        height: auto;
        overflow: visible;
    }
}

img.lazywithloader {
    display: block;
    background-image: url(https://www.intelivita.co.uk/assets/frameworks/public/images/loading.gif);
    background-repeat: no-repeat;
    background-position: center center;
}

img.lazywithloader.loadsuccessfully {
    background-image: none;
}

@media (min-width: 2100px) {
    .about-bg-section {
        width: 28%;
    }
}

@media (min-width: 2400px) {
    .about-bg-section {
        width: 30%;
    }
}

@media (max-width: 1800px) {
    .about-bg-section {
        width: 21%;
    }
}

@media (max-width: 1600px) {
    .home .tenc-intro-main__wrapper h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .banner-main__wrapper h1,
    .tenc-intro-main__wrapper h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .innerbanner h1,
    .innerbanner h1.f-40 {
        font-size: 36px;
    }

    .tenc-intro-main__wrapper h2 {
        font-size: 32px;
    }

    .banner-main__wrapper p,
    .innerbanner p {
        font-size: 17px;
    }

    .tenc-intro-main__wrapper .banner_deveploment_main a {
        font-size: 17px;
    }

    .banner {
        min-height: 650px;
    }

    .video {
        max-height: 650px;
        min-height: 650px;
    }

    .about-bg-section {
        width: 18%;
    }

    .about h3 {
        font-size: 26px;
    }

    .scrollmobilebanner .bannerfixedimagewidth {
        bottom: -100px;
    }

    .bannerfixedscrollimagewrap {
        width: 300px;
    }

    main {
        margin-bottom: 610px;
    }

    .footer-main {
        height: 610px;
    }

    .foot-center-col {
        padding: 35px 15px 30px;
    }

    .foot-center-col h4 {
        margin-bottom: 15px;
    }

    .foot-menu ul li {
        margin-bottom: 8px;
    }

    .foot-exp-text-button {
        margin-bottom: 15px !important;
    }

    .foot-exp-text-wrap .btn-custome {
        font-size: 14px;
    }

    .foot-exp-char {
        width: 100px;
    }

    .footer-center-market-list .item img {
        height: 125px;
    }

    .foot-exp-text-wrap {
        width: calc(100% - 120px);
    }

    .foot-exp-text-button .exp {
        font-size: 36px;
    }

    .foot-exp-text-button .indus {
        font-size: 22px;
    }

    .foot-social {
        margin-top: 15px;
    }

    .footer-center {
        padding: 20px 0 0;
    }

    .footer-center-top-market {
        padding: 10px 0;
    }

    #footer-bottom {
        padding: 15px 0;
    }

    .bannerfixedimagewidth {
        width: 36%;
    }

    .bannerfixedimagewidth.landscape {
        width: 40%;
    }

    .portfolio-title h3 {
        font-size: 24px;
    }

    .portfolio-preview-thumb img.portrait {
        height: 550px;
        margin: 0 auto;
        display: block;
    }

    .thank-you-v3 .founder-image {
        width: 580px;
    }

    .banner.height668 {
        min-height: 625px;
    }

    .banner.height668 .video {
        min-height: 625px;
        max-height: 625px;
    }
}

@media (max-width: 1500px) {
    .container-2 {
        max-width: 1170px;
    }

    .service-web-inner:before {
        top: 60px;
        height: calc(100% - 90px);
        width: 35%;
    }

    .portfolio-preview-thumb img.portrait {
        height: 500px;
        margin: 0 auto;
        display: block;
    }

    .portfolio-preview-main-logo-text .appname {
        font-size: 34px;
    }

    .portfolio-preview-main-logo-text .moreaboutapp {
        font-size: 22px;
    }

    .banner.height668 {
        min-height: 560px;
    }

    .banner.height668 .video {
        min-height: 560px;
        max-height: 560px;
    }

    .our-history-detail-image {
        margin-left: 45px;
    }

    .similar-app-white-main .similar-app-content-wrap {
        padding: 20px 40px;
    }

    .similar-app-white-main:before {
        height: 75%;
        top: 13%;
    }

    .write-us-banner h1 {
        font-size: 36px;
    }

    .write-for-us-cta .container {
        padding: 60px 15px;
    }

    .write-for-us-cta h3 {
        font-size: 32px;
    }
}

@media (max-width: 1440px) {
    .megatext .big {
        font-size: 28px;
    }

    .megatext span {
        font-size: 24px;
    }

    .megatext a {
        font-size: 20px;
    }

    .sub-menu>li>a {
        font-size: 15px;
        padding: 15px 10px 15px 15px;
    }

    .sub-level2>li {
        padding: 7px 0;
    }

    .submenuicon svg {
        width: 27px;
        height: 27px;
    }

    .mainmenuicon svg {
        width: 43px;
        height: 43px;
    }

    .megactasection {
        padding: 13px 15px;
    }

    .megactasection .or {
        font-size: 20px;
    }

    .megactasection .btn-custome {
        padding: 15px 20px;
        font-size: 17px;
    }

    .home .tenc-intro-main__wrapper h1 {
        font-size: 40px;
    }

    .banner-main__wrapper h1,
    .tenc-intro-main__wrapper h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .tenc-intro-main__wrapper p {
        font-size: 20px;
    }

    .innerbanner h1,
    .innerbanner h1.f-40 {
        font-size: 32px;
    }

    .tenc-intro-main__wrapper h2 {
        font-size: 28px;
    }

    .banner-main__wrapper p,
    .innerbanner p {
        font-size: 15px;
    }

    .tenc-intro-main__wrapper .banner_deveploment_main a {
        font-size: 15px;
        margin-right: 0;
    }

    .banner_deveploment_main .author_text h1 {
        font-size: 38px;
    }

    .banner {
        min-height: 540px;
    }

    .video {
        max-height: 540px;
        min-height: 540px;
    }

    .tenc-intro-main__wrapper p {
        margin-bottom: 20px;
    }

    .innerbannerform textarea.form-control {
        height: 75px;
    }

    .innerbannerform {
        padding: 20px 20px;
    }

    .about-bg-section {
        width: 15%;
    }

    .scrollmobilebanner .bannerfixedimagewidth {
        bottom: -160px;
    }

    .bannerfixedscrollimagewrap {
        width: 280px;
    }

    main {
        margin-bottom: 580px;
    }

    .footer-main {
        height: 580px;
    }

    .foot-center-col {
        padding: 25px 15px 15px;
    }

    .foot-center-col h4 {
        margin-bottom: 15px;
    }

    .bannerfixedimagewidth {
        width: 29%;
    }

    .bannerfixedimagewidth.landscape {
        width: 33%;
    }

    .similar-app-content-wrap {
        padding: 30px 30px;
    }

    .similar-app-image-wid {
        width: 50%;
    }

    .similar-app-content h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .similar-app-content p {
        margin-bottom: 20px;
    }

    .error-message h2 {
        font-size: 45px;
    }

    .error-message {
        padding: 60px 0;
    }

    .thank-you-v3 .founder-image {
        width: 540px;
    }

    .write-for-us-main h2 {
        font-size: 24px;
    }
}

@media (max-width: 1360px) {
    .about-bg-section {
        width: 12%;
    }

    .uiux-design-process-content-image.left-image:before {
        left: 20px;
    }

    .uiux-design-process-content-image.right-image:before {
        right: 20px;
    }

    .scrollmobilebanner .bannerfixedimagewidth {
        margin-right: 60px;
        bottom: -220px;
    }

    .bannerfixedscrollimagewrap {
        width: 300px;
    }
}

@media (max-width: 1169px) {
    .nav-is-visible main {
        transform: translateX(0);
    }
}

@media (max-width: 1199px) {
    .title h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    .breadcrumb {
        bottom: 70px;
    }

    .main-navbar .navbar-nav>li {
        padding: 0 5px;
    }

    .about-bg-section {
        width: 120px;
    }

    .about h3 {
        font-size: 24px;
    }

    .testimonials_circle li:nth-child(2) {
        transform: translate(-30%, 40%);
    }

    .testimonials_circle li:nth-child(3) {
        transform: translate(46%, -50%);
    }

    .testimonials_circle li:nth-child(4) {
        transform: translate(-30%, -40%);
    }

    .testimonials_circle li:nth-child(6) {
        transform: translate(30%, -40%);
    }

    .testimonials_circle li:nth-child(7) {
        transform: translate(-46%, -50%);
    }

    .testimonials_circle li:nth-child(8) {
        transform: translate(30%, 40%);
    }

    .hire_box {
        min-height: inherit;
    }

    .hire_box span {
        min-height: 50px;
    }

    .sub-menu>li>a {
        font-size: 14px;
        padding: 15px 10px 15px 10px;
    }

    .mainmenuicon svg {
        width: 40px;
        height: 40px;
    }

    .sub-level2>li>a {
        font-size: 13px;
    }

    .submenuicon svg {
        width: 25px;
        height: 25px;
    }

    .megactasection {
        padding: 15px 15px;
    }

    .megatext .big {
        font-size: 22px;
    }

    .megatext span {
        font-size: 20px;
    }

    .megatext a {
        font-size: 18px;
    }

    .megactasection .or {
        font-size: 18px;
    }

    .megactasection .btn-custome {
        padding: 17px 30px;
        font-size: 16px;
    }

    .top-left-part a,
    .top-right-part span {
        font-size: 11px;
    }

    .top-right-part a {
        font-size: 11px;
    }

    .solutions-box {
        min-height: 350px;
    }

    .m-height-450 .mhbox {
        min-height: 490px;
    }

    .m-height-380 .mhbox {
        min-height: 420px;
    }

    .m-height-340 .mhbox {
        min-height: 400px;
    }

    .m-height-320 .mhbox {
        min-height: 360px;
    }

    .m-height-300 .mhbox {
        min-height: 330px;
    }

    .m-height-280 .mhbox {
        min-height: 320px;
    }

    .m-height-260 .mhbox {
        min-height: 300px;
    }

    .m-height-240 .mhbox {
        min-height: 270px;
    }

    .m-height-220 .mhbox {
        min-height: 240px;
    }

    .m-height-170 .mhbox {
        min-height: 190px;
    }

    .m-height-130 .mhbox {
        min-height: 145px;
    }

    .service-main-content h2 {
        font-size: 24px;
    }

    .what-we-offer-main-listing .row {
        padding-top: 60px;
    }

    .what-we-offer-main-listing-title h2,
    .what-we-offer-main-listing-title h3 {
        font-size: 26px;
    }

    .web-why-choose-main-box {
        min-height: 360px;
    }

    .web-why-go-content h3 {
        font-size: 26px;
    }

    .ar-services-detail-icon {
        margin-bottom: 20px;
    }

    .ar-services-detail-content h5 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .ar-services-list-section {
        padding-top: 50px;
    }

    .ar-why-choose-content-box {
        min-height: 330px;
    }

    .meet-the-team-content h2 {
        font-size: 28px;
    }

    .about-leadership-title {
        font-size: 24px;
    }

    .about-leadership-image {
        min-height: 450px;
    }

    .our-award-section .item {
        padding: 0 10px;
    }

    .our-award-section .item img {
        height: 155px;
    }

    .mission-n-vision-box {
        min-height: 425px;
    }

    .our-core-value-box {
        min-height: 350px;
    }

    .our-process-content {
        padding: 30px 25px;
    }

    .our-process-content-box .number {
        font-size: 50px;
    }

    .our-work-process-slider-section .progressbar .holder .bar {
        max-width: 900px;
    }

    .our-work-process-slider-section .progressbar .holder .labels .label-item a {
        font-size: 14px;
    }

    .mvp-what-we-offer-box {
        min-height: 510px;
    }

    .mvp-process-dev-box {
        min-height: 410px;
    }

    .mvp-why-choose-dev-box-wrap {
        padding: 30px 20px 30px 65px;
    }

    .mvp-why-choose-dev-icon {
        width: 100px;
        height: 100px;
    }

    .mvp-why-choose-dev-content {
        width: calc(100% - 115px);
    }

    .mvp-why-choose-dev-icon svg {
        width: 48px;
        height: 48px;
    }

    .game-service-offer-box {
        min-height: 400px;
    }

    .game-what-we-offer-box {
        min-height: 300px;
    }

    .best-game-dev-company-box {
        min-height: 270px;
    }

    .blog-list-desc h2 {
        font-size: 24px;
    }

    .blog-sidebar-box {
        padding: 25px 20px;
    }

    .blog-sidebar-box h3 {
        font-size: 22px;
    }

    .blog-detail-content h2 {
        font-size: 20px;
    }

    .blog-detail-content h3 {
        font-size: 18px;
    }

    .blog-detail-content p {
        font-size: 16px;
    }

    .blockquote p,
    blockquote p {
        font-size: 18px;
    }

    .blog-sidebar-box .header_social li a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .blog-detail-image {
        height: auto;
    }

    .rel-post-box {
        min-height: 510px;
    }

    .rel-post-info-box {
        padding: 0 15px 10px;
    }

    .rel-post-date {
        padding-top: 8px;
        padding-bottom: 5px;
    }

    .pagination li a,
    .pagination li a[rel="next"],
    .pagination li a[rel="prev"] {
        padding: 13px 17px;
    }

    .game-experties-inner-box {
        min-height: 360px;
    }

    .our-expert-build-box {
        padding: 15px 20px;
    }

    main {
        margin-bottom: 0;
    }

    .footer-main {
        height: auto;
        position: relative;
        z-index: inherit;
    }

    .footer_box h5 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .foot-center-col {
        padding: 30px 15px;
    }

    .foot-center-col:nth-child(1) {
        padding: 0 15px 30px;
    }

    .foot-exp-wrap {
        border-top: 1px solid rgba(245, 133, 31, 0.3);
        padding-top: 30px;
        padding-left: 0;
    }

    .foot-exp-box {
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
    }

    .foot-exp-text-button .exp {
        font-size: 36px;
    }

    .foot-exp-text-button .indus {
        font-size: 22px;
    }

    .foot-center-col:nth-child(3) .foot-menu {
        padding-left: 0;
    }

    .footer-center-market-list .item {
        margin-right: 15px;
    }

    .footer-center-market-list .item img {
        height: 110px;
    }

    .ins-msg-content-wrap .contentrow img {
        margin-left: -90px;
    }

    .ins-msg-app-panels-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .why-you-invest-box {
        min-height: 270px;
    }

    .real-time-app-content .top {
        font-size: 22px;
    }

    .real-time-app-content h4 {
        font-size: 30px;
    }

    .faq-list-title a {
        font-size: 16px;
    }

    .similar-app-image-wid img {
        width: 63%;
    }

    .fitness .similar-app-image-wid .img1 {
        width: 70%;
    }

    .fitness .similar-app-image-wid .img2 {
        width: 56%;
    }

    .similar-app-white-main:before {
        height: 80%;
        top: 10%;
    }

    .why-erp-main .game-service-offer-box {
        min-height: 315px;
    }

    .custom-erp-main .game-what-we-offer-box {
        min-height: 375px;
    }

    .invest-erp-main .why-you-invest-box {
        min-height: 350px;
    }

    .why-crm-main .game-service-offer-box {
        min-height: 390px;
    }

    .technology-box li {
        min-height: 240px;
    }

    .uiux-service-content {
        min-height: 300px;
    }

    .uiux-service-content h3 {
        font-size: 18px;
    }

    .uiux-design-process-content-image.left-image:before {
        left: 10px;
    }

    .uiux-design-process-content-image.right-image:before {
        right: 10px;
    }

    .uiux-design-process-content-image:after {
        width: 51%;
        height: 320px;
        background-size: contain;
    }

    .uiux-design-process-content .number {
        font-size: 36px;
    }

    .uiux-design-process-content h5 {
        font-size: 22px;
    }

    .contact-form-main {
        margin-top: -90px;
    }

    .schedule-meeting-content h3 {
        font-size: 20px;
    }

    .schedule-meeting-content h4 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .contact-follow-us-section {
        padding: 20px 0 0;
    }

    .schedule-meeting-content {
        padding: 0 15px 30px;
    }

    .map-tabs-nav {
        width: 40%;
    }

    .map-tabs-iframe {
        width: 60%;
    }

    .map-tabs-nav li h4 {
        right: 20px;
        bottom: 20px;
        margin: 0;
        font-size: 22px;
    }

    .solution-we-offer-content {
        max-width: 340px;
    }

    .similar-app-option3-main .fixedimage {
        max-width: 80%;
        float: left;
    }

    .similar-app-option3-main .fixedimage .img2 {
        left: 42%;
        top: 100px;
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -o-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    .similar-app-option3-main:hover .fixedimage .img2 {
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -o-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    .similar-app-option3-main .content-logo-name .mainname {
        font-size: 28px;
    }

    .similar-app-option3-main .content-logo-name .subname {
        font-size: 16px;
    }

    .types-of-social-media-box {
        min-height: 355px;
    }

    .our-process-step-listing .our-process-step-row:nth-child(odd) .our-process-image-box {
        margin-left: 25px;
    }

    .our-process-step-listing .our-process-step-row:nth-child(even) .our-process-image-box {
        margin-right: 25px;
    }

    .advantage-of-real-estate-main .web-why-choose-us-inner-box {
        min-height: 310px;
    }

    .real-estate-type-main .game-what-we-offer-box {
        min-height: 360px;
    }

    .error-main {
        align-items: center !important;
    }

    .thank-you-process-step-box .step-arrow {
        padding-left: 60px;
    }

    .thank-you-founder-img {
        margin: 0 25px -40px 20px;
    }

    .privacy-policy h2 {
        font-size: 26px;
    }

    .privacy-policy h3 {
        font-size: 22px;
    }

    .tideway-box {
        min-height: 400px;
    }

    .custom-cms-main .game-what-we-offer-box {
        min-height: 425px;
    }

    .thank-you-v3 .content h2 {
        font-size: 45px;
    }

    .thank-you-v3 .content p {
        font-size: 20px;
    }

    .thank-you-v3 .bglightorange {
        margin-top: 40px;
        font-size: 20px;
    }

    .thank-you-v3 .bglightorange span {
        font-size: 32px;
    }

    .thank-you-v3 .messagetext {
        font-size: 20px;
    }

    .chatbot-adv-box {
        min-height: 250px;
    }

    .chatbot-platform-box {
        min-height: 245px;
    }

    .portfolio-preview-main-logo-text .appname {
        font-size: 30px;
    }

    .portfolio-preview-main-logo-text .moreaboutapp {
        font-size: 20px;
    }

    .hire-team-sticky-content .ttl1 {
        font-size: 18px;
    }

    .write-us-banner {
        padding: 100px 0;
    }

    .write-us-banner h1 {
        font-size: 30px;
    }

    .write-us-banner p {
        font-size: 18px;
    }

    .write-for-us-cta .container {
        padding: 50px 15px;
        max-width: 800px;
    }

    .write-for-us-cta h3 {
        font-size: 28px;
    }

    .cta.fullwidth .cd-headline span {
        font-size: 22px;
    }

    .cta.fullwidth:before {
        width: calc(50% - 150px);
    }

    .cta.fullwidth .btn-col:before {
        left: 110px;
    }
}

@media (max-width: 1024px) {
    header {
        top: 0 !important;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        z-index: 9999999;
        box-shadow: 0 1px 11px -2px rgba(0, 0, 0, 0.5);
    }

    .navbar-brand>img {
        height: 40px;
        display: inline-block;
    }

    header.white-bg .navbar {
        padding: 0;
        margin-bottom: 0;
    }

    .mobile_menu {
        display: block;
        z-index: 99999999;
    }

    .navbar-collapse.collapse,
    .navbar-toggle {
        display: none !important;
    }

    .navbar-header>a {
        float: none;
        width: 250px;
        display: inline-block;
        padding: 2px 0;
        margin: 0 auto;
    }

    .navbar-header {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .navbar-header>a>img {
        height: 50px;
    }

    #share_btn {
        display: block;
    }

    #top {
        width: 220px;
        position: fixed;
        right: -220px;
        top: 50px;
        background: #fff;
        transition: all 0.5s ease;
        z-index: -99;
        box-shadow: -3px 4px 10px 0 rgba(0, 0, 0, 0.3);
        overflow: auto;
        height: 100vh;
    }

    #top .d-flex {
        display: block !important;
    }

    #top p {
        display: none;
    }

    #estimate-mobile-btn {
        display: block;
    }

    .show_top {
        right: 0 !important;
    }

    .header_contact {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        color: #000;
        margin-bottom: -5px;
    }

    .header_contact li {
        width: 100%;
        float: left;
        border-right: none;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        padding: 10px 0;
        font-size: 16px;
    }

    .header_contact li a {
        color: #000;
    }

    .header_social {
        width: 100%;
        text-align: center;
    }

    .header_social li a {
        opacity: 1;
        width: 35px;
        height: 35px;
        margin: 5px 0;
        font-size: 16px;
    }

    .header_social li a span {
        font-size: 16px;
        position: absolute;
        left: 50px;
        font-family: Arial, Montserrat;
        color: #000;
        margin-left: 10px;
    }

    .header_social li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        display: inline-flex;
    }

    .megamenu,
    .navbar-nav {
        display: none;
    }

    .main-navbar {
        padding: 3px 0;
        border-radius: 0;
    }

    nav.navbar {
        padding: 0;
    }

    #rev_slider h1 .tp-caption {
        font-size: 28px !important;
        line-height: 1.1 !important;
    }

    #servicesTab {
        padding: 25px 10px;
    }

    #servicesTab li {
        padding: 0;
    }

    .process-box {
        min-height: 280px;
    }

    .testimonials_left {
        width: 100%;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonials_circle {
        height: 400px;
        width: 400px;
    }

    #technologies_tabs li {
        padding: 0 10px;
        font-size: 13px;
    }

    .call_shedule_img {
        margin: 10px auto 50px;
        float: none;
    }

    .blog_box-caption {
        padding: 0 7px 20px;
    }

    .blog_author_img {
        width: 60px;
        height: 60px;
    }

    .blog_box-caption ul li {
        font-size: 12px;
    }

    .blog_box-caption h4 {
        font-size: 16px;
    }

    .work_logo {
        width: 230px;
        min-width: auto;
        padding: 10px 15px;
    }

    .work_rating {
        padding: 22px 5px;
    }

    #footer_bottom .header_social {
        text-align: right;
    }

    #footer_bottom .header_social li {
        width: auto;
        border: none;
        margin: 0 2px;
    }

    .mobile_app_service_box {
        min-height: 500px;
    }

    .tenc-intro-main__wrapper>.container {
        margin-top: -70px;
    }

    .blog-slider .item .blog-post_content {
        padding: 0 12px 18px 12px;
    }

    .blog-slider .author_post a {
        font-size: 12px;
    }

    .blog-slider .date_post {
        font-size: 12px;
    }

    .bannerfixedscrollimagewrap {
        width: 320px;
    }

    .scrollmobilebanner .bannerfixedimagewidth {
        bottom: -180px;
    }

    @keyframes bannermobilescroll {
        10% {
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }

        50% {
            -webkit-transform: translateY(-29%);
            -ms-transform: translateY(-32%);
            transform: translateY(-32%);
        }

        90% {
            -webkit-transform: translateY(calc(-100% + 40vw));
            -ms-transform: translateY(calc(-100% + 40vw));
            transform: translateY(calc(-100% + 40vw));
        }

        100% {
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }
    }

    @-webkit-keyframes bannermobilescroll {
        10% {
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }

        50% {
            -webkit-transform: translateY(-29%);
            -ms-transform: translateY(-32%);
            transform: translateY(-32%);
        }

        90% {
            -webkit-transform: translateY(calc(-100% + 40vw));
            -ms-transform: translateY(calc(-100% + 40vw));
            transform: translateY(calc(-100% + 40vw));
        }

        100% {
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }
    }

    .head-call-back-sidebar {
        left: 0;
        width: 100%;
    }

    .head-call-back-sidebar-main {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .web-why-choose-main-box {
        min-height: 380px;
    }

    .what-we-offer-main-slider-section {
        display: none !important;
    }

    .what-we-offer-main-slider-section+div {
        height: 0 !important;
    }

    .what-we-offer-main-listing .row:first-child {
        padding-top: 0;
    }

    .portfolio-preview-box {
        padding: 60px 0;
    }

    .portfolio-listing-box:hover {
        background-color: #fff;
    }

    .portfolio-listing-box:hover .portfolio-listing-icon svg * {
        fill: #202122;
    }

    .portfolio-listing-box:hover .portfolio-listing-icon span {
        color: #202122;
    }

    .portfolio-listing-box.current {
        background-color: #d10000;
    }

    .portfolio-listing-box.current .portfolio-listing-icon svg * {
        fill: #fff;
    }

    .portfolio-listing-box.current .portfolio-listing-icon span {
        color: #fff;
    }

    .portfolio-preview-box.section {
        height: auto !important;
        position: relative !important;
        top: 0 !important;
        min-height: 100vh;
        transform: inherit !important;
    }

    .portfolio-preview-wrap {
        height: auto !important;
    }

    .our-work-process-slider-section {
        display: none !important;
    }

    .our-work-process-slider-section+div {
        height: 0 !important;
    }

    .our-work-process-section .title {
        margin-bottom: 40px;
    }

    .bannerfixedimagewidth {
        width: 36%;
    }

    .bannerfixedimagewidth.landscape {
        width: 40%;
    }

    .similar-app-slider {
        padding-bottom: 0;
    }

    .similar-app-slider .slick-arrow {
        position: absolute;
        bottom: 50px;
        border: 0;
        background: 0 0;
        cursor: pointer;
        z-index: 1;
        font-family: "Font Awesome 5 Free";
        font-size: 0;
        font-weight: 900;
        width: 40px;
        height: 40px;
        background: #d10000;
        color: #fff;
        border-radius: 5px;
        outline: 0 !important;
    }

    .similar-app-slider .slick-arrow.slick-next {
        right: 44%;
    }

    .similar-app-slider .slick-arrow.slick-prev {
        left: 44%;
    }

    .similar-app-slider .slick-arrow:before {
        font-size: 18px;
    }

    .similar-app-slider .slick-arrow.slick-next:before {
        content: "\f105";
    }

    .similar-app-slider .slick-arrow.slick-prev:before {
        content: "\f104";
    }

    .similar-app-slider .slick-arrow:hover {
        background-color: #202122;
    }

    .head-contact-info {
        display: block;
    }

    .type-of-ar-list-item:hover .type-of-ar-list-icon {
        background-color: inherit;
        box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    }

    .type-of-ar-list-item:hover .type-of-ar-list-icon svg path {
        fill: inherit;
    }

    .type-of-ar-list-item:hover .type-of-ar-list-box h4 {
        color: inherit;
    }

    .type-of-ar-list-item.slick-current .type-of-ar-list-icon {
        background-color: #d10000;
        box-shadow: none;
    }

    .type-of-ar-list-item.slick-current .type-of-ar-list-icon svg path {
        fill: #fff;
    }

    .type-of-ar-list-item.slick-current .type-of-ar-list-box h4 {
        color: #d10000;
    }

    .thank-you-banner {
        min-height: 240px !important;
    }

    .cookiealert,
    .hire-team-sticky-section {
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .web-app-sev-lang-collapse .tab_list {
        display: flex;
        max-width: 470px;
        float: right;
        flex-wrap: wrap;
    }

    .web-app-sev-lang-collapse .card {
        border: none;
    }

    .web-app-sev-lang-collapse .card .card-header {
        display: none;
    }

    .web-app-sev-lang-collapse .card .collapse {
        display: block;
    }
}

@media (max-width: 991px) {
    .title h2 {
        font-size: 26px;
    }

    .h4,
    h4 {
        font-size: 20px;
    }

    h3 {
        font-size: 22px;
    }

    .about,
    .padding-60 {
        padding: 50px 0;
    }

    .padding-120-60 {
        padding: 110px 0 50px;
    }

    .padding-6030 {
        padding: 50px 0 20px;
    }

    .padding-00-30 {
        padding: 0 0 20px;
    }

    .padding-60-00 {
        padding: 50px 0 0;
    }

    .padding-00-60 {
        padding: 0 0 50px;
    }

    .title {
        margin-bottom: 40px;
    }

    .about-video-img {
        margin: 0 30px 50px;
    }

    .about-video-img img {
        width: 90%;
    }

    .counter-section li {
        width: 50%;
        padding: 20px 20px;
    }

    .counter-section {
        flex-wrap: wrap;
    }

    #servicesTab li {
        padding: 20px 5px;
    }

    .servicesTabContent_text {
        margin-top: 50px;
    }

    .technologies_icons {
        flex-wrap: wrap;
        justify-content: center !important;
    }

    .technologies_icons li {
        min-width: 100px;
    }

    .technologies_icons {
        flex-wrap: wrap;
        justify-content: center !important;
    }

    .process-items:before {
        display: none;
    }

    .process-items i {
        display: none;
    }

    .process-items {
        padding: 0 15px;
    }

    .about {
        overflow: hidden;
    }

    #footer_bottom .header_social {
        text-align: center;
        margin-bottom: 10px;
    }

    #rev_slider .tp-caption {
        max-width: 500px !important;
        width: 100%;
        min-width: 500px !important;
    }

    #rev_slider .tp-caption>br {
        display: none;
    }

    .app-service-tab-text {
        margin-top: 10px;
        text-align: center;
    }

    .app-service-tab-content img {
        display: inline-block;
    }

    .app-service-tab-content .order-lg-1 {
        text-align: center;
    }

    .banner-2 {
        min-height: inherit;
    }

    .banner-2 .video img {
        min-height: 1000px;
    }

    .banner-2 .banner-main__wrapper {
        align-items: flex-start;
        position: relative;
        padding: 50px 0 110px;
    }

    .video {
        min-height: inherit;
        max-height: inherit;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
    }

    .testimonials_text_slider {
        padding-left: 0;
    }

    .process-box {
        min-height: 260px;
    }

    .tenc-intro-main__wrapper>.container {
        margin-top: 0;
    }

    .about .video-area-wrapper {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }

    .about-bg-section {
        display: none !important;
    }

    .about .counter-section {
        padding-left: 0;
    }

    .about h3 {
        font-size: 22px;
    }

    .why-choose-box {
        min-height: 265px;
    }

    .hire-team-sticky-section {
        max-width: 100%;
        padding: 15px 10px;
    }

    .hire-team-sticky-btn-wrap .close {
        top: -15px;
        right: 0;
        position: absolute;
    }

    .hire-team-sticky-icon {
        width: 50px;
    }

    .hire-team-sticky-content {
        width: calc(100% - 220px);
        padding: 0 15px;
    }

    .hire-team-sticky-content .ttl1 {
        font-size: 14px;
    }

    .hire-team-sticky-content .ttl2 {
        font-size: 12px;
    }

    .hire-team-sticky-btn {
        width: 170px;
    }

    .hire-team-sticky-btn-wrap .btn:before {
        display: none;
    }

    .bannerfixedscrollimagewrap {
        width: 80%;
    }

    .scrollmobilebanner .bannerfixedimagewidth {
        text-align: center;
        bottom: 0;
        margin: 30px auto 30px !important;
    }

    @keyframes bannermobilescroll {
        10% {
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }

        50% {
            -webkit-transform: translateY(-22%);
            -ms-transform: translateY(-25%);
            transform: translateY(-25%);
        }

        90% {
            -webkit-transform: translateY(calc(-50% + 40vw));
            -ms-transform: translateY(calc(-50% + 40vw));
            transform: translateY(calc(-50% + 40vw));
        }

        100% {
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }
    }

    @-webkit-keyframes bannermobilescroll {
        10% {
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }

        50% {
            -webkit-transform: translateY(-22%);
            -ms-transform: translateY(-25%);
            transform: translateY(-25%);
        }

        90% {
            -webkit-transform: translateY(calc(-50% + 40vw));
            -ms-transform: translateY(calc(-50% + 40vw));
            transform: translateY(calc(-50% + 40vw));
        }

        100% {
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }
    }

    .solutions-box {
        min-height: 285px;
    }

    .m-height-450 .mhbox {
        min-height: 450px;
    }

    .m-height-340 .mhbox {
        min-height: 470px;
    }

    .m-height-320 .mhbox {
        min-height: 340px;
    }

    .m-height-240 .mhbox {
        min-height: 330px;
    }

    .m-height-220 .mhbox {
        min-height: 260px;
    }

    .m-height-170 .mhbox {
        min-height: 240px;
    }

    .m-height-130 .mhbox {
        min-height: 185px;
    }

    .innerbanner {
        min-height: inherit;
    }

    .innerbanner .video {
        min-height: inherit;
        max-height: inherit;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
    }

    .innerbanner .tenc-intro-main__wrapper {
        position: relative;
        padding: 50px 0 110px;
    }

    .innerbanner h1,
    .innerbanner h1.f-40 {
        font-size: 26px;
    }

    .home .tenc-intro-main__wrapper h1 {
        font-size: 36px;
    }

    .banner-main__wrapper h1,
    .tenc-intro-main__wrapper h1 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .tenc-intro-main__wrapper p {
        font-size: 16px;
    }

    .tenc-intro-main__wrapper a {
        font-size: 16px;
        padding: 12px 20px;
    }

    .tenc-intro-main__wrapper .or {
        font-size: 18px;
    }

    .tenc-intro-main__wrapper h2 {
        font-size: 24px;
        margin: 0 0 20px;
    }

    .innerbanner .tenc-intro-main__wrapper p {
        font-size: 15px;
    }

    .innerbanner .breadcrumb {
        bottom: 70px;
    }

    .breadcrumb.no-company-logo {
        bottom: 20px;
    }

    .banner_deveploment_main .author_img_box {
        margin-right: 5%;
    }

    .banner_deveploment_main .author_text h1 {
        font-size: 30px;
    }

    .banner_deveploment_main .author_text small {
        font-size: 18px;
    }

    .blogauthore .breadcrumb {
        bottom: 30px;
    }

    .banner_deveploment_main .center-item {
        padding-top: 30px;
    }

    .innerbanner .tenc-intro-main__wrapper {
        display: block;
    }

    .bannerfixedimage {
        position: relative;
    }

    .bannerfixedimagewidth,
    .bannerfixedimagewidth.landscape {
        float: none;
        margin: 30px auto -60px;
    }

    .what-we-offer-main-listing .row:first-child {
        padding-top: 0;
    }

    .what-we-offer-main-listing .row:last-child {
        padding-bottom: 30px;
    }

    .what-we-offer-main-listing-title h2,
    .what-we-offer-main-listing-title h3 {
        font-size: 24px;
    }

    .what-we-offer-main-listing-img {
        margin-right: 0;
    }

    .what-we-offer-main-slider-section.scroll-to-fixed-fixed+div {
        height: 0 !important;
    }

    .web-app-sev-lang-collapse .left-col {
        display: none;
    }

    .web-app-sev-lang-collapse .right-col {
        max-width: 100%;
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
    }

    .web-app-sev-lang-collapse .content_wrapper {
        max-width: 100%;
    }

    .web-app-sev-lang-collapse .tab_wrapper>ul {
        display: none;
    }

    .web-app-sev-lang-collapse .accordian_header {
        font-size: 20px;
        font-weight: 500;
        padding: 15px 45px 15px 25px;
        display: none;
        -webkit-box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
        -moz-box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
        box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
        border-radius: 5px;
    }

    .web-app-sev-lang-collapse .accordian_header+.accordian_header {
        display: block;
    }

    .web-app-sev-lang-collapse .accordian_header.active {
        color: #fff;
        background-color: #f5851f;
    }

    .web-app-sev-lang-collapse .tab_content h3 {
        font-size: 26px;
    }

    .web-app-sev-lang-collapse .accordian_header+.accordian_header {
        cursor: pointer;
        position: relative;
    }

    .web-why-choose-us-main {
        padding: 95px 0 20px;
    }

    .web-why-choose-main-box {
        padding: 25px 20px;
        min-height: 340px;
    }

    .service-web-inner:before {
        display: none;
    }

    .callouts-separate.webdevinner {
        margin: 50px auto 0;
    }

    .web-why-go-content h3 {
        font-size: 24px;
    }

    .type-of-ar-title {
        font-size: 22px;
    }

    .types-of-ar-platform-section {
        padding-top: 90px;
    }

    .types-of-ar-platform-box {
        min-height: 210px;
    }

    .ar-why-choose-content-box {
        min-height: 280px;
    }

    .callouts-separate+.ar-why-choose-us-section {
        padding-top: 100px;
    }

    .banner.height668 {
        min-height: inherit;
    }

    .banner.height668 .video {
        min-height: inherit;
        max-height: inherit;
    }

    .innerbanner.height668 .tenc-intro-main__wrapper {
        padding: 50px 0 50px;
    }

    .portfolio-preview-content-box {
        margin-bottom: 30px;
        text-align: center;
    }

    .portfolio-preview-thumb {
        text-align: center;
    }

    .portfolio-preview-content-box .button-wrap {
        justify-content: center;
    }

    .portfolio-preview-box {
        padding: 50px 0;
    }

    .portfolio-preview-main-logo {
        justify-content: center;
    }

    .option1.portfolio-listing-section {
        position: relative;
        top: 0;
    }

    .option1.portfolio-listing-section>.container {
        padding: 0;
    }

    .option1.portfolio-listing-section .d-flex {
        border-radius: 0;
    }

    .portfolio-preview-main-logo-text .appname {
        font-size: 28px;
    }

    .portfolio-preview-main-logo-text .moreaboutapp {
        font-size: 20px;
    }

    .about-us-review-section {
        padding: 0 0 20px;
    }

    .about-us-review-section .counter-section {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }

    .about-leadership-image {
        min-height: 350px;
    }

    .about-leadership-content {
        padding: 20px 20px;
    }

    .about-leadership-title {
        font-size: 22px;
    }

    .mission-n-vision-box {
        padding: 25px 25px;
    }

    .our-core-value-box {
        min-height: 270px;
    }

    .our-history-detail-image {
        margin: 30px 0 30px 30px;
    }

    .our-history-detail-box {
        padding: 30px 20px;
    }

    .our-history-detail-num {
        font-size: 40px;
    }

    .our-history-detail-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .our-history-detail-icon svg {
        width: 90px;
        height: 90px;
    }

    .our-history-detail-box-title-wrap {
        padding-right: 100px;
    }

    .our-history-progress-bottom {
        margin-top: 30px;
    }

    .our-work-process-section .title {
        margin-bottom: 40px;
    }

    .our-process-step-row {
        padding: 50px 0 80px 0;
    }

    .our-process-step-row .position-static {
        margin-left: 0 !important;
    }

    .our-process-step-row:nth-child(even) .position-static {
        margin-right: 0 !important;
    }

    .our-process-step-row:nth-child(even) .our-process-content-box .number {
        left: 40px;
        right: inherit;
    }

    .our-process-content {
        padding: 30px 25px;
    }

    .our-process-content h3 {
        font-size: 24px;
        margin-bottom: 12px;
        padding-left: 55px;
    }

    .our-process-content-box .number {
        z-index: 1;
        left: 40px;
        right: inherit;
        font-size: 40px;
        top: 24px;
    }

    .our-process-image-box {
        max-width: 570px;
        width: 100%;
        margin: 0 auto;
    }

    .our-process-step-listing .our-process-step-row:nth-child(even) .our-process-image-box {
        margin: 0 auto;
    }

    .our-process-step-listing .our-process-step-row:nth-child(odd) .our-process-image-box {
        margin: 0 auto;
    }

    .our-process-step-row .position-static {
        margin-bottom: 40px;
    }

    .mvp-what-we-offer-box {
        min-height: 530px;
    }

    .mvp-process-dev-section {
        padding-bottom: 10px;
    }

    .mvp-process-dev-box-wrap:before {
        display: none;
    }

    .mvp-process-dev-box:after {
        display: none;
    }

    .mvp-process-dev-box {
        margin: 0 0 50px;
        min-height: 390px;
    }

    .mvp-process-dev-section .title {
        margin-bottom: 40px;
    }

    .mvp-process-dev-box-wrap .row>div:nth-child(4) .mvp-process-dev-box:before,
    .mvp-process-dev-box-wrap .row>div:nth-child(5) .mvp-process-dev-box:before,
    .mvp-process-dev-box-wrap .row>div:nth-child(6) .mvp-process-dev-box:before {
        left: inherit;
        top: inherit;
        right: 40px;
        bottom: -27px;
        transform: inherit;
    }

    .mvp-why-choose-dev-section .col-right {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mvp-why-choose-dev-box-wrap {
        padding: 20px 15px;
    }

    .game-service-offer-box {
        margin: 50px 0 30px;
        min-height: 360px;
    }

    .game-what-we-offer-box {
        min-height: 365px;
    }

    .best-game-dev-company-box {
        min-height: 230px;
    }

    #blog {
        margin-top: -50px;
    }

    .innerbanner.blog {
        min-height: inherit;
    }

    .innerbanner.blog .video {
        min-height: inherit;
        max-height: inherit;
    }

    .innerbanner.blog .video img {
        min-height: inherit;
    }

    .blog-list-desc h2 {
        font-size: 22px;
    }

    .blog-banner-profile {
        margin: 40px auto 20px;
    }

    .blog-detail-banner-box .author-name a,
    .blog-detail-banner-box .blog-category a,
    .blog-detail-banner-box .blog-date {
        font-size: 16px;
        padding: 0;
    }

    .blog-detail-image {
        margin-bottom: 40px;
    }

    .blog-detail-content h2 {
        font-size: 18px;
    }

    .subscribe-section {
        padding: 30px 30px 20px;
    }

    .about-blog-author-section {
        margin: 50px 0;
    }

    .subscribe-text span {
        font-size: 24px;
    }

    .subscribe-content-box {
        margin-bottom: 30px;
    }

    .rel-post-box {
        min-height: 480px;
    }

    .our-expert-build-box {
        padding: 20px 20px;
    }

    .our-expert-build-content {
        width: 100%;
    }

    .foot-social {
        margin-top: 30px;
    }

    .foot-social .header_social .social-share-fixed {
        transform: translateY(-100%);
        white-space: normal;
        padding: 10px 40px 10px 10px;
    }

    .foot-social .header_social li.social-share .icon {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .foot-social .header_social li.social-share .icon span {
        top: inherit;
        transform: translateX(100%);
        right: -5px;
    }

    .footer-center-market-list {
        justify-content: center;
        padding-bottom: 0;
    }

    .footer-center-market-list .item {
        margin: 0 7px 20px;
    }

    .foot-vat-no {
        margin-bottom: 10px;
    }

    .footer_box h5 {
        font-size: 22px;
    }

    .foot-center-col h4 {
        font-size: 22px;
    }

    .game-why-us-inner-image {
        margin-bottom: 30px;
    }

    .bannerfixedimagewidth {
        width: 41%;
    }

    .bannerfixedimagewidth.landscape {
        width: 50%;
    }

    .ins-msg-content-wrap {
        padding: 30px 25px 20px 0;
        margin-bottom: 25px;
    }

    .ins-msg-content-wrap .contentrow img {
        margin-left: 25px;
        width: 180px;
    }

    .ins-msg-content-wrap .tab_content_wrap {
        width: calc(100% - 205px);
    }

    .ins-msg-tab-wrap .tab_list li {
        padding: 15px 15px;
    }

    .ins-msg-tab-wrap .tab_list_title_icon {
        width: 30px;
        height: 30px;
    }

    .ins-msg-tab-wrap .tab_list_title {
        width: calc(100% - 50px);
        font-size: 15px;
    }

    .similar-app-image {
        position: relative;
        top: 0;
        padding: 0 15px 40px;
    }

    .similar-app-image-wid {
        width: auto;
        margin: 0 auto;
    }

    .similar-app-image-wid img {
        display: none;
        margin: 0 auto;
        width: auto;
    }

    .similar-app-main:before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .similar-app-content-wrap:before {
        display: none;
    }

    .similar-app-content-wrap {
        min-height: inherit;
        padding: 40px 0;
    }

    .why-you-invest-main .mt-50 {
        margin-top: 0 !important;
    }

    .why-you-invest-box {
        min-height: 260px;
    }

    .real-time-app-main {
        padding: 30px 0;
    }

    .real-time-app-main>.container>.row {
        align-items: center;
    }

    .real-time-app-icon {
        width: 100%;
        margin: 0 auto;
    }

    .real-time-app-content {
        margin-right: 20px;
    }

    .real-time-app-content .top {
        font-size: 18px;
    }

    .real-time-app-content h4 {
        font-size: 22px;
    }

    .real-time-app-content .bottom {
        font-size: 16px;
    }

    .car-wash-process-box {
        margin: 0 0 50px 0;
    }

    .car-wash-process-box-wrap .wow:nth-child(3) .car-wash-process-box .bt.arrow {
        top: calc(100% + 15px);
        right: 0;
        line-height: 1;
        left: 0;
        width: 50px;
        text-align: center;
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .car-wash-process-box-wrap .wow:nth-child(4) .car-wash-process-box .down.arrow {
        top: 35px;
        right: inherit;
        line-height: 1;
        left: -31px;
        width: 31px;
        text-align: center;
        transform: rotate(180deg);
    }

    .car-wash-process-box-wrap .wow:last-child .car-wash-process-box .bb.arrow {
        display: block;
        left: -31px;
        right: inherit;
    }

    .car-wash-process-box-wrap .wow:nth-child(7) .car-wash-process-box .rotate.arrow {
        top: calc(100% + 15px);
        right: 30px;
        line-height: 1;
        left: inherit;
        bottom: inherit;
        width: 50px;
        text-align: center;
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .car-wash-process-box-wrap .wow:nth-child(6) .car-wash-process-box .rotate.arrow {
        transform: inherit;
    }

    .car-wash-process-box-wrap .wow:nth-child(5) .car-wash-process-box .rotate.arrow {
        display: none;
    }

    .car-wash-feature-tab-content {
        margin-top: 50px;
    }

    .other-demand-app-icon {
        margin: 0 auto 30px;
    }

    .other-demand-app-box a {
        padding: 30px 15px;
    }

    .similar-app-white-main:before {
        display: none;
    }

    .similar-app-white-main .similar-app-image {
        padding: 30px 15px 0;
    }

    .similar-app-white-main .similar-app-content-wrap {
        padding: 0;
    }

    .why-erp-main .game-service-offer-box {
        min-height: 295px;
    }

    .custom-erp-main .game-what-we-offer-box {
        min-height: 355px;
    }

    .invest-erp-main .why-you-invest-box {
        min-height: 310px;
    }

    .why-crm-main .game-service-offer-box {
        min-height: 340px;
    }

    .technology-box li {
        min-height: 240px;
    }

    .what-we-offer-main-listing .row.technology-box {
        padding-top: 50px;
        padding-bottom: 0;
    }

    .uiux-service-content {
        min-height: inherit;
        margin: -50px 15px 0;
        padding: 25px 15px;
    }

    .uiux-service-box {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }

    .uiux-design-process-list .row {
        margin-bottom: 30px;
    }

    .uiux-design-process-content .number {
        margin-bottom: 15px;
        font-size: 30px;
    }

    .uiux-design-process-content {
        margin-bottom: 30px;
        padding-top: 0;
    }

    .uiux-design-process-content h5 {
        font-size: 20px;
    }

    .uiux-design-process-list>.row:nth-child(odd) .uiux-design-process-content {
        margin-top: 0;
    }

    .uiux-design-process-list>.row:nth-child(even) .uiux-design-process-content-image {
        margin-top: 0;
    }

    .uiux-design-process-content-image:after {
        display: none;
    }

    .uiux-design-process-content-image:before {
        display: none;
    }

    .uiux-design-process-content-image {
        display: inline-block;
    }

    .uiux-design-process-list>.row:last-child {
        margin-bottom: 0;
    }

    .tideway-box {
        min-height: 520px;
    }

    .tideway-logo {
        top: 20px;
    }

    .tideway-top {
        display: block !important;
        margin-bottom: 25px;
    }

    .tideway-client-info {
        width: 100%;
        margin: 0;
        padding: 20px 0 0 0;
    }

    .tideway-client-info .name {
        margin-bottom: 10px;
    }

    .contact-info-icon {
        width: 80px;
        height: 80px;
    }

    .contact-info-icon svg {
        width: 40px;
        height: 40px;
    }

    .contact-info-box {
        padding: 30px 8px;
        min-height: 150px;
    }

    .solution-we-offer-image {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .solution-we-offer-image img {
        width: 100%;
    }

    .solution-we-offer-content {
        max-width: 340px;
        width: 100%;
        position: relative;
        transform: inherit;
        float: none;
        display: block;
        margin: -30px auto 0;
        padding: 25px 15px;
    }

    .solution-we-offer-box:hover .solution-we-offer-image {
        left: 0;
    }

    .similar-app-option3-main .fixed-col {
        position: relative;
    }

    .similar-app-option3-main .fixedimage {
        position: relative;
        width: 100%;
        float: none;
        max-width: 100%;
        padding: 0 15px;
        text-align: center;
    }

    .similar-app-option3-main .fixedimage img {
        margin: 0 auto;
    }

    .similar-app-option3-main .content-box {
        max-width: 100%;
        padding: 30px 15px;
        min-height: inherit;
    }

    .similar-app-option3-main {
        padding-top: 0 !important;
    }

    .similar-app-option3-main .content-logo-name .mainname {
        font-size: 30px;
    }

    .similar-app-option3-main .fixedimage .d-lg-none {
        display: block !important;
    }

    .similar-app-slider .slick-arrow {
        bottom: 31px;
    }

    .similar-app-slider .slick-arrow.slick-next {
        right: 42%;
    }

    .similar-app-slider .slick-arrow.slick-prev {
        left: 42%;
    }

    .similar-app-slider {
        background-color: #f8f9fa !important;
    }

    .similar-app-option3-main .bg-light {
        background-color: transparent !important;
        box-shadow: none;
    }

    .similar-app-slider .slick-dots {
        top: inherit;
        transform: translateX(-50%);
        left: 50%;
        right: inherit;
        margin-top: 0;
        bottom: 30px;
    }

    .similar-app-slider .slick-dots li {
        display: inline-block;
        vertical-align: middle;
    }

    .types-of-social-media-box {
        min-height: 310px;
    }

    .detail-feature-tab-content .servicesTabContent_text {
        margin-top: 30px;
    }

    .detail-feature-tab #servicesTab {
        margin-bottom: 50px;
    }

    .advantage-of-real-estate-main .web-why-choose-us-inner-box {
        min-height: 270px;
    }

    .real-estate-type-main .game-what-we-offer-box {
        min-height: 340px;
    }

    .error-main {
        display: block !important;
        padding-top: 80px;
    }

    .error-img {
        margin: 0 auto;
    }

    .error-message {
        width: 100% !important;
        padding: 60px 0 30px;
    }

    .error-message p {
        font-size: 16px;
    }

    .error-service-list-wrap {
        margin-top: 30px;
    }

    .error-message h2 {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .error-service-list-item a {
        padding: 10px 5px;
    }

    .thank-you-banner {
        min-height: 250px !important;
    }

    .thank-you-founder-img {
        max-width: 200px;
        margin: 0 25px -40px 12px;
    }

    .thank-you-founder-img img {
        width: 200px;
        height: 200px;
    }

    .thank-you-founder-text p {
        font-size: 15px;
    }

    .thank-you-founder-text h2 {
        font-size: 16px;
    }

    .thank-you-founder-text h3 {
        font-size: 22px;
    }

    .thank-you-founder-text {
        padding-top: 10px;
    }

    .thank-you-process-section h2 {
        font-size: 22px;
    }

    .thank-you-process-box {
        padding-bottom: 80px;
    }

    .thank-you-process-step-icon {
        width: 80px;
        height: 71px;
        background-size: cover;
    }

    .thank-you-process-step-section h2 {
        font-size: 22px;
    }

    .thank-you-process-step-icon span svg {
        width: 31px;
        height: 31px;
    }

    .thank-you-process-step-box .num {
        font-size: 20px;
    }

    .thank-you-process-step-box .step-name {
        font-size: 14px;
        min-height: 40px;
    }

    .thank-you-process-step-box .step-arrow {
        padding-left: 50px;
    }

    .thank-you-process-step-box:nth-child(even) {
        padding-top: 6px;
    }

    .privacy-policy h2 {
        font-size: 24px;
    }

    .privacy-policy h3 {
        font-size: 20px;
    }

    .custom-cms-main .game-what-we-offer-box {
        min-height: 385px;
    }

    .thank-you-v3 {
        padding-top: 80px;
    }

    .thank-you-v3 .container {
        display: block !important;
    }

    .thank-you-v3 .founder-image {
        max-width: 350px;
        width: 100%;
        order: 1;
        margin: 0 auto 30px;
    }

    .thank-you-v3 .content {
        width: 100%;
    }

    .thank-you-v3 .content h2 {
        font-size: 35px;
    }

    .thank-you-v3 .bglightorange {
        margin-top: 30px;
    }

    .chatbot-adv-box {
        min-height: 300px;
    }

    .chatbot-platform-box {
        min-height: 265px;
        padding: 25px 25px;
    }

    .write-us-banner {
        padding: 80px 0;
    }

    .write-us-banner h1 {
        font-size: 24px;
        margin: 0 0 20px;
    }

    .write-us-banner p {
        font-size: 16px;
    }

    .write-for-us-main h2 {
        font-size: 22px;
    }

    .write-for-us-main .row {
        margin-bottom: 30px;
    }

    .write-for-us-main .row:nth-child(odd) .col-lg-7 {
        order: 1;
    }

    .write-for-us-main .row:nth-child(odd) .col-lg-5 {
        order: 2;
    }

    .write-for-us-cta .container {
        padding: 50px 15px;
        max-width: 680px;
    }

    .write-for-us-cta h3 {
        font-size: 26px;
    }

    .write-for-us-cta .btn-custome {
        font-size: 14px;
    }

    .business-solution-slide ul li {
        width: 100%;
        margin-bottom: 30px;
    }

    .business-solution-slide ul li:last-child {
        margin-bottom: 0;
    }

    .business-solution-slide ul li.active {
        width: 100%;
    }

    .business-solution-slide ul li .content {
        height: auto;
        padding: 30px 20px 10px;
    }

    .business-solution-slide ul li.active .content {
        padding: 30px 20px;
    }

    .cta.fullwidth .btn-col {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
        padding: 40px 35px;
    }

    .cta.fullwidth .cd-headline span {
        font-size: 20px;
    }

    .cta.fullwidth:before {
        width: calc(50% - 100px);
    }

    .cta.fullwidth .btn-col:before {
        left: 60px;
    }
}

@media (max-width: 800px) {
    .bannerfixedimagewidth {
        width: 50%;
    }
}

@media (max-height: 800px) {
    .thank-you-banner {
        min-height: 330px;
    }

    .thank-you-founder-img {
        max-width: 190px;
    }

    .thank-you-founder-img img {
        width: 190px;
        height: 190px;
    }

    .thank-you-founder-text h2 {
        font-size: 24px;
    }

    .thank-you-founder-text h3 {
        font-size: 30px;
    }

    .thank-you-process-section {
        padding: 70px 0 20px;
    }

    .thank-you-process-section h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .thank-you-process-box {
        padding-bottom: 10px;
    }

    .thank-you-process-image {
        max-width: 360px;
    }

    .thank-you-process-content {
        max-width: 340px;
    }

    .thank-you-process-content p {
        font-size: 14px;
    }

    .thank-you-process-step-section {
        padding: 40px 0 20px;
    }

    .thank-you-process-step-section h2 {
        font-size: 24px;
        padding-bottom: 0;
    }

    .thank-you-process-step-icon {
        width: 120px;
        height: 101px;
        background-size: cover;
    }

    .thank-you-process-step-icon span svg {
        width: 40px;
        height: 40px;
    }

    .thank-you-process-step-box .num {
        font-size: 28px;
    }

    .thank-you-process-step-box .step-name {
        font-size: 16px;
        min-height: 50px;
    }

    .thank-you-process-step-box:nth-child(even) {
        padding-top: 21px;
    }
}

@media (max-height: 768px) {
    .error-img {
        width: 40%;
    }

    .error-message {
        width: 60%;
        padding: 40px 0;
    }

    .error-service-list-wrap {
        margin-top: 50px;
    }

    .thank-you-banner {
        min-height: 300px;
    }

    .thank-you-founder-img {
        max-width: 170px;
    }

    .thank-you-founder-img img {
        width: 170px;
        height: 170px;
    }

    .thank-you-founder-text h2 {
        font-size: 22px;
    }

    .thank-you-founder-text h3 {
        font-size: 26px;
    }

    .thank-you-process-section {
        padding: 70px 0 20px;
    }

    .thank-you-process-section h2 {
        font-size: 22px;
    }

    .thank-you-process-image {
        max-width: 320px;
    }

    .thank-you-process-content {
        max-width: 300px;
        padding: 10px 10px;
    }

    .thank-you-process-box {
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {

    . .about,
    .padding-60 {
        padding: 40px 0;
    }

    .padding-120-60 {
        padding: 40px 0;
    }

    .padding-6030 {
        padding: 40px 0 10px;
    }

    .padding-00-30 {
        padding: 0 0 10px;
    }

    .padding-60-00 {
        padding: 40px 0 10px;
    }

    .padding-00-60 {
        padding: 0 0 40px;
    }

    body {
        overflow-x: hidden;
    }

    .banner {
        min-height: 550px;
    }

    .banner-2 {
        min-height: inherit;
    }

    .banner_contactForm {
        padding: 20px 15px;
    }

    .video {
        max-height: 550px;
        min-height: 550px;
    }

    .video video {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .video img {
        min-height: 550px;
    }

    .fl-visible-mobile {
        display: block;
    }

    .td-style .btn-custome {
        font-size: 18px !important;
    }

    .btn-custome {
        font-size: 14px !important;
    }

    #carouselExampleSlidesOnly .carousel-caption h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    #carouselExampleSlidesOnly .carousel-caption p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    #carouselExampleSlidesOnly .carousel-caption p br {
        display: none;
    }

    .home .tenc-intro-main__wrapper h1 {
        font-size: 28px;
    }

    .innerbanner h1,
    .innerbanner h1.f-40,
    .tenc-intro-main__wrapper h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .tenc-intro-main__wrapper h2 {
        font-size: 20px;
    }

    .tenc-intro-main__wrapper p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .innerbanner .tenc-intro-main__wrapper p {
        font-size: 14px;
    }

    h3 {
        font-size: 20px;
    }

    .counter-section li {
        padding: 10px 0 10px 20px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .counter-section li:nth-child(1),
    .counter-section li:nth-child(3) {
        padding-left: 5px;
    }

    .counter-section {
        margin-top: 10px;
    }

    .counter-section li img {
        width: 50px;
    }

    .counter_text p {
        font-size: 12px;
    }

    .counter-section li:nth-child(2):before {
        display: none;
    }

    #servicesTab {
        padding: 5px 0 10px;
    }

    #servicesTab li {
        padding: 0;
        width: auto;
        margin: 10px 0 0;
        border: none;
    }

    #servicesTab li a {
        font-size: 10px;
        word-break: break-all;
        width: 55px;
        position: relative;
        z-index: 1;
    }

    #servicesTab li svg {
        width: 25px;
        margin: 0;
    }

    #servicesTab li a span>span {
        display: none;
    }

    #servicesTab li a span.w-100 {
        margin-top: 10px;
    }

    #servicesTab li a.active:before,
    #servicesTab li a:hover:before {
        background: #202122;
    }

    .counter_text .counter {
        font-size: 28px;
    }

    .title span {
        font-size: 14px;
    }

    .title h2 {
        font-size: 20px;
    }

    .servicesTabContent_text h3 {
        font-size: 24px;
    }

    .servicesTabContent_text span {
        font-size: 16px;
    }

    .servicesTabContent_text ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .servicesTabContent_text ul li {
        padding: 10px 10px;
    }

    .servicesTabContent_text ul li a.btn-custome {
        margin: 0;
    }

    .portfolio-slider {
        padding: 0 0 20px !important;
    }

    .testimonials_circle {
        height: 0;
        visibility: hidden;
        opacity: 0;
        width: 0;
    }

    .testimonials_left {
        width: 100%;
        height: 200px;
        margin: 0 0 30px;
    }

    .testimonials_text_slider {
        padding-left: 0;
        overflow: visible;
    }

    .testimonials_text_box:before {
        top: -25px;
        left: 50%;
        transform: translate(-50%, 0);
        border-top: none;
        border-right: 20px solid transparent;
        border-bottom: 25px solid #fff;
        border-left: 20px solid transparent;
    }

    .testimonials-arrow {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
    }

    .testimonials_text_box {
        padding: 15px;
    }

    .testimonials-arrow:before {
        transform: rotate(134deg);
        width: 32px;
        left: -1px;
        top: -13px;
        z-index: 999;
    }

    .testimonials-arrow:after {
        transform: rotate(50deg);
        width: 30px;
        left: 42%;
        top: -13px;
        z-index: 999;
    }

    .call_shedule_img {
        max-width: 250px;
    }

    .call_shedule_img img {
        height: 250px;
        width: 250px;
    }

    .call_shedule_text h4 {
        font-size: 24px;
    }

    .call_shedule_text ul {
        flex-wrap: wrap;
        justify-content: center;
        flex-flow: column-reverse;
    }

    .call_shedule_text ul li {
        margin: 5px 0;
    }

    #technologies_tabs li {
        margin: 5px 0;
    }

    .testimonials_text {
        overflow: hidden;
        padding-top: 25px;
    }

    .technologies_icons li {
        width: 80px;
        min-width: 80px;
        margin: 5px 5px;
        height: 80px;
    }

    .blog_author_img {
        width: 50px;
        height: 50px;
    }

    .blog_box-caption .btn-custome {
        position: static;
    }

    .blog_box-caption {
        min-height: auto;
    }

    .blog_box-caption ul {
        margin-top: -20px;
    }

    .get_quote {
        font-size: 14px;
        padding: 5px 10px;
        right: -35px;
    }

    .work_rating img {
        width: 40px;
        margin-right: 5px;
    }

    .work_logo {
        width: auto;
        height: 95px;
    }

    .work_rating {
        padding: 0 5px;
        width: 150px;
        height: 95px;
    }

    .rating_text {
        font-size: 10px;
    }

    .rating_text strong {
        width: 100%;
        float: left;
    }

    .contact-custome-btn {
        font-size: 18px;
        padding: 15px 30px;
        width: 100%;
    }

    .hire_box {
        margin-bottom: 20px;
        padding: 15px 8px;
        font-size: 12px;
    }

    .callouts-separate {
        margin: 0 0 40px;
        flex-wrap: wrap;
        justify-content: center !important;
        position: relative;
    }

    .callouts span {
        font-size: 18px;
        text-align: center;
        margin-bottom: 10px;
        margin-right: 5px;
    }

    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .scroll-top:hover:before {
        font-size: 24px;
    }

    .scroll-top:after {
        height: 20px;
    }

    .about-video-img:before {
        display: none;
    }

    .about-video-img {
        margin: 0 0 20px;
    }

    #intelGrecaptchaFooter {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .app_service_box span {
        font-size: 14px;
    }

    .app-why-box {
        min-height: auto;
    }

    .app-service-tab-box {
        width: 150px;
        height: 150px;
        padding: 10px 10px;
    }

    .app-service-tab-text h3 {
        font-size: 20px;
    }

    .app-service-tab-box span {
        font-size: 12px;
    }

    .banner-main__wrapper h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .banner-main__wrapper p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .banner-btn .btn {
        padding: 10px 10px;
        font-size: 14px;
    }

    .brands_logo div {
        -ms-flex: 0 0 33.3333%;
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .banner-main__wrapper {
        display: block;
        padding-top: 30px;
    }

    .breadcrumb li {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .about-icon-slider a {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .mobile_app_service_box {
        min-height: auto;
    }

    .mobile_app_service_box .btn-custome {
        position: static;
    }

    #callouts-type .typed {
        font-size: 18px;
    }

    #contact_popup {
        display: block;
        padding: 10px 0 !important;
    }

    .popup_form {
        margin: 25px auto;
    }

    .popup_form {
        margin: 0 auto;
        float: left;
        width: 100%;
        padding: 0 15px;
    }

    .popup_form h4 {
        font-size: 24px;
        margin: 0 0 20px 0;
        line-height: 28px;
    }

    #popup_close {
        font-size: 24px;
        top: 15px;
    }

    #request_the_quote .form-group {
        margin-bottom: 15px;
    }

    .blog-slider .item .blog-post_content {
        min-height: inherit;
    }

    .blog-post_title {
        height: 50px;
    }

    .blog-post_title a {
        font-size: 18px;
        line-height: 24px;
    }

    .blog-slider .item .blog-post {
        max-width: 390px;
        width: 100%;
        margin: 0 auto 10px;
    }

    .about h3 {
        font-size: 18px;
    }

    #estimate-mobile-btn {
        top: 5px;
        padding: 9px 13px;
        border-radius: 100%;
    }

    #estimate-mobile-btn .fas {
        margin: 0;
        font-size: 22px;
    }

    #estimate-mobile-btn span {
        display: none;
    }

    .head-call-form-section {
        margin-top: 20px;
    }

    .solutions-box {
        min-height: 340px;
    }

    .banner_deveploment_main .center-item {
        display: block;
    }

    .hire_box {
        min-height: inherit;
    }

    .hire_box span {
        min-height: 40px;
    }

    .btn-custome.btn-lg {
        padding: 15px 25px;
    }

    .hire-col {
        padding: 0 10px;
    }

    .hire-col .row>div {
        padding: 0 5px;
    }

    .footer_box {
        margin-bottom: 30px;
    }

    .footer_box h5 {
        font-size: 22px;
    }

    .footer_box_img {
        margin-bottom: 0 !important;
        width: 50%;
        float: left;
    }

    .footer_box_add {
        width: 50%;
        float: left;
        padding-left: 15px;
    }

    .footer_box ul li {
        margin-bottom: 10px;
    }

    .footer-center-market-list .item img {
        height: auto;
    }

    footer .title+.row>div:last-child .footer_box {
        margin-bottom: 0;
    }

    .hire-team-sticky-section {
        display: none !important;
    }

    .cookiealert {
        margin-bottom: 0 !important;
        border-radius: 0;
        text-align: center;
    }

    .cookiealert-img {
        display: none;
    }

    .cookiealert-container {
        display: block;
    }

    .cookiealert-text p {
        font-size: 13px;
    }

    .cookiealert-text .que {
        font-size: 16px;
    }

    .cookiealert-text .que span {
        display: inline-block;
    }

    .cookiealert-text {
        width: 100%;
        padding: 0;
    }

    .cookiealert-buttons {
        padding-top: 10px;
        margin: 0 auto;
    }

    .m-height-450 .mhbox {
        min-height: inherit;
    }

    .m-height-380 .mhbox {
        min-height: 380px;
    }

    .m-height-340 .mhbox {
        min-height: 450px;
    }

    .m-height-320 .mhbox {
        min-height: 430px;
    }

    .m-height-280 .mhbox {
        min-height: 280px;
    }

    .m-height-260 .mhbox {
        min-height: 260px;
    }

    .m-height-240 .mhbox {
        min-height: 300px;
    }

    .m-height-220 .mhbox {
        min-height: 240px;
    }

    .m-height-170 .mhbox {
        min-height: inherit;
    }

    .innerbannerform {
        padding: 25px 15px 15px;
    }

    .innerbanner {
        position: relative;
        min-height: inherit;
    }

    .innerbanner:before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(32, 33, 34, 0.8);
        z-index: 1;
    }

    .innerbanner .tenc-intro-main__wrapper {
        padding: 40px 0 110px;
        background-color: transparent;
    }

    .banner-2 .banner-main__wrapper {
        padding: 50px 0 110px;
    }

    .service-main-content h2 {
        font-size: 22px;
    }

    .service-main-content h2:before {
        width: 40%;
    }

    .what-we-offer-main-listing-title .number {
        font-size: 60px;
        line-height: 45px;
    }

    .what-we-offer-main-listing-title .number span {
        line-height: 25px;
    }

    .what-we-offer-main-listing-title h2,
    .what-we-offer-main-listing-title h3 {
        font-size: 20px;
    }

    .what-we-offer-main-listing-img:before {
        left: 10px;
        top: 10px;
    }

    .what-we-offer-main-listing .row {
        padding-top: 50px;
    }

    .what-we-offer-main-listing .row:last-child {
        padding-bottom: 10px;
    }

    .web-app-sev-lang-collapse .accordian_header {
        font-size: 16px;
        padding: 15px 45px 15px 15px;
    }

    .web-app-sev-lang-collapse .tab_content img {
        width: 150px;
    }

    .web-app-sev-lang-collapse .tab_content h3 {
        font-size: 24px;
    }

    .web-why-choose-us-main {
        padding: 40px 0 10px;
    }

    .web-why-choose-main-box {
        min-height: 300px;
    }

    .web-why-choose-main-box h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .callouts-separate.graybgoption {
        bottom: 0;
    }

    .web-why-choose-us-inner-box {
        text-align: center;
        padding: 15px 15px 20px;
    }

    .web-why-choose-inner-icon {
        float: none;
        margin: -52px auto 15px;
    }

    .web-why-choose-us-inner-box h5 {
        width: 100%;
        padding: 0;
        float: none;
    }

    .web-why-go-content h3 {
        font-size: 20px;
    }

    .web-why-go-content p {
        font-size: 15px;
    }

    .type-of-ar-title {
        font-size: 20px;
    }

    .types-of-ar-platform-box {
        max-width: 350px;
        width: 100%;
        margin: 0 auto;
    }

    .ar-services-detail-content {
        max-width: 580px;
        width: 100%;
        margin: 0 auto 20px;
        text-align: center;
    }

    .ar-services-list-section {
        padding-top: 40px;
    }

    .ar-why-choose-content-box {
        text-align: center;
        padding: 20px 15px;
        min-height: inherit;
    }

    .ar-why-choose-content-box.mt-50 {
        margin-top: 0 !important;
    }

    .ar-why-choose-us-title {
        font-size: 18px;
    }

    .callouts-separate+.ar-why-choose-us-section {
        padding-top: 40px;
    }

    .portfolio-listing-section>.container {
        padding: 0;
    }

    .portfolio-listing-section>.container>div {
        justify-content: center;
    }

    .portfolio-listing-box {
        border-bottom: 0;
        border-right: 0;
    }

    .option1 .portfolio-listing-box {
        display: table;
        height: 112px;
    }

    .portfolio-listing-icon {
        min-height: inherit;
        padding: 15px 10px;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
    }

    .portfolio-listing-box:nth-child(4) {
        border-left: 0;
    }

    .portfolio-preview-content-box h3 {
        font-size: 20px;
    }

    .portfolio-preview-box {
        padding: 40px 0;
    }

    .portfolio-listing-icon svg {
        width: 30px;
        height: 30px;
    }

    .portfolio-listing-icon span {
        font-size: 14px;
        margin-top: 10px;
    }

    .portfolio-listing-box:first-child {
        border-left: 0;
    }

    .portfolio-preview-box.section {
        min-height: inherit;
    }

    .portfolio-preview-main-logo-text .appname {
        font-size: 22px;
    }

    .portfolio-preview-main-logo-text .moreaboutapp {
        font-size: 16px;
    }

    .portfolio-preview-main-logo img {
        width: 100px;
    }

    .portfolio-preview-main-logo img.landscape {
        width: 140px;
    }

    .portfolio-preview-thumb-main>img {
        opacity: 1;
    }

    .portfolio-preview-thumb-sep,
    .portfolio-preview-thumb-sep-opt2 {
        display: none;
    }

    .portfolio-preview-thumb-sep.one:hover {
        -webkit-transform: scale(1) translateX(0);
        -moz-transform: scale(1) translateX(0);
        -o-transform: scale(1) translateX(0);
        -ms-transform: scale(1) translateX(0);
        transform: scale(1) translateX(0);
        z-index: 1;
    }

    .portfolio-preview-thumb-sep.one:hover+.two,
    .portfolio-preview-thumb-sep.one:hover+.two+.three {
        -webkit-transform: scale(1) translateX(0);
        -moz-transform: scale(1) translateX(0);
        -o-transform: scale(1) translateX(0);
        -ms-transform: scale(1) translateX(0);
        transform: scale(1) translateX(0);
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    .portfolio-preview-thumb-sep-opt2.one:hover {
        -webkit-transform: scale(1) translateX(0);
        -moz-transform: scale(1) translateX(0);
        -o-transform: scale(1) translateX(0);
        -ms-transform: scale(1) translateX(0);
        transform: scale(1) translateX(0);
        z-index: 1;
    }

    .portfolio-preview-thumb-sep-opt2.one:hover+.two,
    .portfolio-preview-thumb-sep-opt2.one:hover+.two+.three {
        -webkit-transform: scale(1) translateX(0);
        -moz-transform: scale(1) translateX(0);
        -o-transform: scale(1) translateX(0);
        -ms-transform: scale(1) translateX(0);
        transform: scale(1) translateX(0);
    }

    .meet-the-team-content h2 {
        font-size: 22px;
    }

    .about-us-review-section {
        padding: 0 0 10px;
    }

    .about-us-review-section .counter-section li {
        padding: 0 5px;
    }

    .about-leadership-image {
        margin: 0 0 50px;
        min-height: 330px;
    }

    .about-leadership-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .about-leadership-content-wrap:before {
        top: -15px;
        bottom: 15px;
        left: 0;
        right: 0;
    }

    .about-leadership-content-wrap:after {
        top: -50px;
        left: 50%;
        margin-left: -32px;
        margin-top: 0;
        transform: rotate(270deg);
    }

    .about-us-review-section .counter-image {
        width: 80px;
        height: 80px;
        line-height: 80px;
    }

    .about-us-review-section .counter-section li img {
        width: 40px;
    }

    .mission-n-vision-box h3 {
        font-size: 22px;
    }

    .our-core-value-box {
        min-height: 310px;
    }

    .our-history-detail-num {
        font-size: 30px;
    }

    .our-history-detail-title {
        font-size: 18px;
    }

    .our-history-detail-icon svg {
        width: 60px;
        height: 60px;
    }

    .our-history-detail-box-title-wrap {
        padding-right: 70px;
    }

    .our-history-progress-bottom {
        margin-top: 20px;
    }

    .featured-in-section .row>div:nth-child(4n + 0) .featured-in-image-box:before {
        display: block;
    }

    .featured-in-section .row>div:nth-child(2n + 0) .featured-in-image-box:before {
        display: none;
    }

    .our-award-section .item {
        width: 50%;
        text-align: center;
    }

    .our-history-detail-image {
        margin: 30px 10px 30px 40px;
    }

    .mission-n-vision-box {
        min-height: inherit;
    }

    .our-process-content h3 {
        padding-left: 0;
    }

    .our-process-step-row {
        padding: 30px 0 70px 0;
    }

    .our-process-content-box .number {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 10px;
    }

    .our-process-step-row:nth-child(even) .our-process-content-box .number {
        left: 0;
        top: 0;
    }

    .mvp-process-dev-box {
        min-height: inherit;
        padding: 20px 15px;
    }

    .mvp-process-dev-icon {
        margin-bottom: 20px;
    }

    .mvp-process-dev-icon svg {
        width: 60px;
        height: 60px;
    }

    .mvp-why-choose-dev-section .col-right.mb-40 {
        margin-bottom: 0 !important;
    }

    .game-service-offer-box {
        margin: 50px 0 30px;
        min-height: inherit;
        padding: 30px 15px;
    }

    .game-service-offer-icon {
        margin: -86px 0 20px;
    }

    .game-what-we-offer-box {
        min-height: inherit;
        padding: 30px 15px;
    }

    .mt-b-0 {
        margin-top: 0 !important;
    }

    .best-game-dev-company-box {
        min-height: 290px;
    }

    .blog-list-image {
        height: auto;
        padding: 5px;
    }

    .blog-list-desc h2 {
        font-size: 18px;
    }

    #blog .pagination {
        display: block;
        text-align: center;
        margin-top: 50px;
    }

    .pagination li {
        display: inline-block;
        vertical-align: top;
    }

    .pagination li:first-child,
    .pagination li:last-child {
        display: block;
    }

    .pagination li a {
        padding: 12px 15px;
        display: inline-block;
        vertical-align: top;
    }

    .pagination li a[rel="next"],
    .pagination li a[rel="prev"] {
        padding: 12px 15px;
    }

    .blog-detail-banner-box {
        display: block !important;
    }

    .blog-detail-banner-box>div,
    .blog-detail-banner-box>span {
        display: inline-block;
        vertical-align: top;
        margin-bottom: 10px;
    }

    .blog-detail-banner-box .divider {
        margin-bottom: 10px;
    }

    .blog-banner-profile {
        margin: 20px auto;
    }

    .blog-detail-banner-box .author-name a,
    .blog-detail-banner-box .blog-category a,
    .blog-detail-banner-box .blog-date {
        font-size: 14px;
        padding: 0;
    }

    .blog-detail-image {
        height: auto;
        margin-bottom: 30px;
    }

    .blog-detail-content h2 {
        font-size: 18px;
    }

    .blog-detail-content p {
        font-size: 15px;
    }

    .blog-detail-content ul li {
        font-size: 15px;
    }

    .blockquote,
    blockquote {
        padding-left: 30px;
        margin-bottom: 30px;
    }

    .blockquote,
    .blockquote p,
    blockquote,
    blockquote p {
        font-size: 16px;
    }

    .blog-social-box-wrap {
        display: block !important;
    }

    .blog-social-box-wrap>div {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .blog-social-share {
        margin-right: 20px;
    }

    .blog-social-share li a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .blog-social-share span {
        margin-right: 10px;
    }

    .blog-next-prev-btn span {
        font-size: 14px;
        width: calc(100% - 40px);
    }

    .blog-next-prev-btn .icon {
        width: 40px;
    }

    .blog-next-prev-btn small {
        padding: 0 40px;
    }

    .blog-next-prev-btn .icon svg {
        width: 22px;
        height: 22px;
    }

    .blog-next-prev-section {
        display: block !important;
    }

    .blog-next-prev-btn.prev-btn {
        margin-bottom: 30px;
    }

    .blog-next-prev-btn.next-btn {
        margin: 0 0 0 auto;
    }

    .subscribe-section {
        padding: 25px 15px;
    }

    .about-blog-author-section {
        margin: 40px 0;
    }

    .subscribe-icon svg {
        width: 50px;
        height: 50px;
    }

    .subscribe-text span {
        font-size: 18px;
    }

    .subscribe-form .form-control {
        font-size: 14px;
    }

    .about-blog-author-section {
        padding: 25px 15px;
    }

    .about-blog-author-image {
        width: 90px;
        height: 90px;
    }

    .about-blog-author-info {
        width: calc(100% - 90px);
    }

    .rel-post-box {
        max-width: 390px;
        width: 100%;
        margin: 0 auto;
        min-height: inherit;
    }

    .hire_small_box_link {
        padding: 10px 15px 17px 15px !important;
    }

    .hire_small_box_link span {
        font-size: 16px;
        text-align: center;
        width: 100%;
    }

    .hire_small_box_link .hire_small_box_btn {
        float: none;
        display: inline-block;
    }

    .banner_deveploment_main .center-item {
        padding-top: 0;
    }

    .banner_deveploment_main .author_img_box {
        margin: 0 auto 30px;
        height: 230px;
        max-width: 230px;
        min-width: 230px;
    }

    .banner_deveploment_main .author_text h1 {
        font-size: 24px;
    }

    .hire_small_box_link3 a {
        font-size: 15px;
        line-height: 1.3;
    }

    .blog-detail-cta-section {
        padding: 20px 20px;
    }

    .blog-detail-cta-content {
        width: calc(100% - 140px);
    }

    .blog-detail-cta-img {
        width: 130px;
        height: 130px;
    }

    .blog-detail-content iframe {
        max-width: 100%;
        height: 297px;
    }

    .blog-detail-content .orangebox {
        padding: 25px 20px 30px;
    }

    .blog-detail-content .orangebox p {
        font-size: 18px;
    }

    .blog-detail-content .estimate_btn {
        font-size: 15px;
    }

    .game-experties-inner-box {
        min-height: 330px;
        padding: 30px 15px;
    }

    .our-expert-build-box {
        padding: 20px 15px;
    }

    .game-why-us-inner-box:before {
        left: 36px;
    }

    .game-why-us-inner-icon {
        width: 60px;
        height: 60px;
    }

    .game-why-us-inner-icon svg {
        width: 30px;
        height: 30px;
    }

    .game-why-us-inner-content {
        width: calc(100% - 70px);
        margin-left: 10px;
    }

    .game-why-us-inner-content h3 {
        font-size: 18px;
    }

    .bannerfixedimagewidth {
        display: none;
    }

    .ins-msg-app-panels-content h3 {
        font-size: 20px;
    }

    .ins-msg-content-wrap {
        padding: 0 0;
    }

    .ins-msg-content-wrap .accordian_header {
        display: block;
    }

    .ins-msg-content-wrap .contentrow {
        display: block !important;
        clear: both;
    }

    .ins-msg-content-wrap .contentrow img {
        margin-left: 0;
        display: none;
    }

    .ins-msg-content-wrap .contentrow.active img {
        display: none;
    }

    .ins-msg-content-wrap .contentrow .tab_content img {
        display: block;
    }

    .ins-msg-content-wrap .contentrow.active .tab_content img {
        display: block;
    }

    .ins-msg-content-wrap .tab_content {
        margin: 0;
        padding: 20px 20px 20px;
    }

    .ins-msg-content-wrap .contentrow .tab_content img {
        display: block;
        float: left;
        margin: 0 15px 20px 0;
    }

    .ins-msg-content-wrap .accordian_header {
        margin: 0;
    }

    .ins-msg-content-wrap .accordian_header:before {
        display: none;
    }

    .ins-msg-content-wrap .accordian_header .arrow {
        float: right;
        display: inline-block;
        width: 12px;
        height: 12px;
        position: absolute;
        border-radius: 2px;
        transform: rotate(-135deg);
        border-top: 3px solid #202122;
        border-left: 3px solid #202122;
        right: 20px;
        top: 50%;
        margin-top: -6px;
    }

    .ins-msg-content-wrap .accordian_header.active {
        background-color: #f5851f;
        color: #fff;
    }

    .ins-msg-content-wrap .accordian_header.active .arrow {
        transform: rotate(45deg);
        border-top: 3px solid #fff;
        border-left: 3px solid #fff;
    }

    .ins-msg-content-wrap .tab_content_wrap {
        width: 100%;
    }

    .ins-msg-content-wrap .accordian_header {
        font-size: 16px;
        font-weight: 500;
        padding: 15px 45px 15px 25px;
        display: block;
        -webkit-box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
        -moz-box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
        box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
        border-radius: 5px;
        cursor: pointer;
    }

    .ins-msg-content-wrap .tab_inner_content {
        padding: 100px 0 0;
    }

    .similar-app-content h2 {
        font-size: 20px;
    }

    .why-you-invest-box {
        min-height: 305px;
        padding: 25px 15px;
    }

    .why-you-invest-box h5 {
        padding-left: 85px;
    }

    .real-time-app-icon {
        width: 150px;
        margin: 0 auto 30px;
    }

    .real-time-app-content-box {
        justify-content: center !important;
    }

    .real-time-app-content .top {
        font-size: 16px;
    }

    .real-time-app-content h4 {
        font-size: 20px;
    }

    .real-time-app-content .bottom {
        font-size: 15px;
    }

    .faq-list-title a {
        font-size: 14px;
    }

    .faq-list-title span {
        width: 22px;
        height: 22px;
    }

    .faq-list-wrap.option2 .faq-list-title span {
        right: 15px;
        margin-top: -11px;
    }

    .faq-list-wrap.option2 .faq-list-title a {
        padding: 15px 45px 15px 15px;
    }

    .faq-list-wrap.option2 .faq-list-content {
        padding: 0 20px;
        margin: 20px 0;
    }

    .faq-list-wrap.option2 .faq-list-content:before {
        left: 10px;
    }

    .car-wash-feature-tab {
        display: none !important;
    }

    .car-wash-feature-tab-content {
        margin-top: 40px;
    }

    .car-wash-feature-tab-content .service-we-offer-web-inner {
        display: none;
    }

    .car-wash-feature-tab-content .service-we-offer-web-inner .mb-30 {
        float: left;
    }

    .service-we-offer-web-inner .hide {
        display: block;
    }

    .car-wash-feature-tab-content.tab-content>.tab-pane {
        display: block;
    }

    .car-wash-feature-tab-content .fade:not(.show) {
        opacity: 1;
    }

    .car-wash-feature-tab-content .show-all-button {
        margin-bottom: 50px;
        margin-top: 10px !important;
        display: none;
    }

    .car-wash-feature-tab-content-box {
        display: block;
        position: relative;
        padding: 10px 40px 10px 15px;
        cursor: pointer;
    }

    .car-wash-feature-tab-content-box:before {
        content: "";
        display: block;
        width: 12px;
        height: 12px;
        position: absolute;
        border-radius: 2px;
        transform: rotate(-135deg);
        border-top: 3px solid #fff;
        border-left: 3px solid #fff;
        right: 20px;
        top: 50%;
        margin-top: -6px;
    }

    .car-wash-feature-tab-content-box.active:before {
        transform: rotate(45deg);
    }

    .car-wash-process-box {
        margin: 0 0 40px 0;
    }

    .car-wash-process-box .bt.arrow {
        top: 50%;
        margin-top: -10px;
        bottom: inherit;
    }

    .car-wash-process-box-wrap .wow:nth-child(2) .car-wash-process-box .bb.arrow {
        top: calc(100% + 10px);
        right: 0;
        line-height: 1;
        left: 0;
        bottom: inherit;
        width: 40px;
        text-align: center;
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .car-wash-process-box-wrap .wow:nth-child(3) .car-wash-process-box .bt.arrow {
        top: inherit;
        bottom: inherit;
        right: inherit;
        line-height: 1;
        left: -31px;
        width: 30px;
        text-align: center;
        margin: 0 auto;
        transform: rotate(180deg);
    }

    .car-wash-process-box-wrap .wow:nth-child(4) .car-wash-process-box .down.arrow {
        top: calc(100% + 10px);
        right: 0;
        line-height: 1;
        left: 0;
        bottom: inherit;
        width: 40px;
        text-align: center;
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .car-wash-process-box-wrap .wow:nth-child(6) .car-wash-process-box .rotate.arrow {
        transform: rotate(180deg);
        left: -31px;
    }

    .car-wash-process-box-wrap .wow:nth-child(7) .car-wash-process-box .rotate.arrow {
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        width: 40px;
    }

    .car-wash-process-box-wrap .wow:last-child .car-wash-process-box .bb.arrow {
        left: 100%;
        right: inherit;
        top: 50%;
        margin-top: -10px;
        transform: inherit;
    }

    .car-wash-advantage-main .m-height-130 .mhbox {
        min-height: inherit;
    }

    .fitness-tab-panel:before {
        display: none;
    }

    .fitness-app-overlay-content-box:nth-child(3),
    .fitness-app-overlay-content-box:nth-child(4) {
        border-bottom: 0;
    }

    .fitness-app-overlay-content-box {
        padding: 15px 5px;
        width: 50%;
        float: left;
        display: block;
        border-bottom: 1px solid #ecedee;
    }

    .fitness-app-overlay-content-box span {
        font-size: 14px;
    }

    .fitness-app-overlay-content {
        position: relative;
        border-radius: 0;
        clear: both;
        display: inline-block;
    }

    .ideal-business-box:nth-child(3n + 0) {
        border-right: 1px solid #ecedee;
    }

    .ideal-business-box:nth-child(2n + 0) {
        border-right: 0;
    }

    .ideal-business-box:nth-child(4) {
        border-bottom: 1px solid #ecedee;
    }

    .why-erp-main .game-service-offer-box {
        min-height: inherit;
    }

    .custom-erp-main .game-what-we-offer-box {
        min-height: inherit;
    }

    .invest-erp-main .why-you-invest-box {
        min-height: inherit;
    }

    .why-crm-main .game-service-offer-box {
        min-height: inherit;
    }

    .technology-box li {
        min-height: 200px;
    }

    .what-we-offer-main-listing .row.technology-box {
        padding-top: 50px;
        padding-bottom: 0;
    }

    .uiux-service-icon {
        width: 70px;
        height: 70px;
        right: 20px;
        top: -35px;
    }

    .uiux-service-content {
        margin: -25px 10px 0;
    }

    .uiux-service-content h3 {
        padding-right: 80px;
    }

    .uiux-design-process-content .number {
        font-size: 28px;
    }

    .uiux-design-process-content h5 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .tideway-box {
        padding: 20px 15px;
        min-height: inherit;
    }

    .tideway-image {
        width: 110px;
        height: 110px;
    }

    .video-inner-top-content {
        padding: 20px 0 30px;
    }

    .video-inner-top-content span {
        margin-bottom: 20px;
    }

    .schedule-meeting-content-description {
        min-height: inherit;
    }

    .contact-info-box {
        margin: 0 auto 30px;
        max-width: 400px;
        width: 100%;
    }

    .contact-follow-us-section {
        padding-top: 0;
    }

    .contact-follow-us-section .header_social {
        padding: 20px 10px 10px;
    }

    .contact-follow-us-section .header_social li {
        margin: 0 5px 10px;
    }

    .contact-follow-us-section .header_social li a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .contact-map-main {
        display: block !important;
    }

    .map-tabs-nav {
        width: 100%;
    }

    .map-tabs-nav li {
        width: 33.33%;
        float: left;
    }

    .map-tabs-nav li h4 {
        font-size: 16px;
        bottom: 15px;
    }

    .map-tabs-nav li img {
        min-height: 120px;
        object-fit: cover;
    }

    .map-tabs-iframe {
        width: 100%;
    }

    .mapiframe {
        position: relative;
    }

    .mapiframe iframe {
        min-height: 250px;
    }

    .contact-info-main:after {
        height: 77px;
    }

    .contact-form-box {
        padding: 25px 15px 10px;
    }

    .similar-app-option3-main .content-logo {
        width: 90px;
    }

    .similar-app-option3-main .content-logo-name {
        width: calc(100% - 110px);
        margin-left: 20px;
    }

    .similar-app-option3-main .content-logo-name .mainname {
        font-size: 24px;
    }

    .similar-app-option3-main .content-logo-name .subname {
        font-size: 16px;
    }

    .similar-app-slider .slick-arrow {
        bottom: 22px;
    }

    .similar-app-slider .slick-arrow.slick-next {
        right: 40%;
    }

    .similar-app-slider .slick-arrow.slick-prev {
        left: 40%;
    }

    .similar-app-slider .slick-dots {
        max-width: 290px;
        width: 100%;
        margin: 0 auto;
        transform: inherit;
        left: 0;
        right: 0;
        text-align: center;
    }

    .types-of-social-media-box {
        min-height: inherit;
    }

    .types-of-social-media-platform {
        padding: 20px 15px 15px;
    }

    .types-of-social-media-platform ul li img {
        width: 50px;
    }

    .types-of-social-media-content {
        padding: 25px 15px;
    }

    .detail-feature-tab-section {
        padding: 0 15px 30px;
    }

    .detail-feature-tab #servicesTab {
        margin-bottom: 30px;
    }

    .detail-feature-tab #servicesTab li {
        min-width: inherit;
    }

    .detail-feature-tab #servicesTab li a {
        width: auto;
        font-size: 14px;
        padding: 10px 20px;
    }

    .detail-feature-tab #servicesTab li a span>span {
        display: block;
    }

    .detail-feature-tab #servicesTab li svg {
        width: 40px;
        display: none;
    }

    .detail-feature-tab #servicesTab li a span.w-100 {
        margin: 0;
    }

    .detail-feature-tab-content h3 {
        font-size: 20px;
    }

    .detail-feature-tab-content .servicesTabContent_text ul li {
        padding: 0 0 0 25px;
    }

    .head-call-back-sidebar {
        padding: 70px 20px;
    }

    .head-call-back-box img {
        width: 80px;
        height: 80px;
    }

    .head-call-back-content {
        width: calc(100% - 100px);
    }

    .advantage-of-real-estate-main .web-why-choose-us-inner-box {
        text-align: left;
        min-height: 350px;
    }

    .real-estate-type-main .game-what-we-offer-box {
        min-height: 400px;
    }

    .error-img {
        max-width: 400px;
        width: 100%;
    }

    .error-service-list {
        flex-wrap: wrap;
    }

    .error-service-list-item {
        width: calc(25% - 10px);
        margin-bottom: 20px;
    }

    .error-service-list-item a {
        min-height: 125px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .error-service-list-icon {
        width: 100%;
    }

    .error-message {
        width: 100%;
        padding: 40px 0 20px;
    }

    .error-message h2 {
        font-size: 30px;
    }

    .error-service-list-wrap h3 {
        font-size: 18px;
    }

    .error-service-list-wrap {
        margin-top: 30px;
    }

    .thank-you-banner {
        min-height: inherit !important;
        padding: 80px 0 30px;
    }

    .thank-you-msg-box {
        display: block !important;
    }

    .thank-you-founder-img {
        margin: 0 auto;
        max-width: 180px;
    }

    .thank-you-founder-img img {
        width: 180px;
        height: 180px;
    }

    .thank-you-founder-text {
        width: 100%;
        text-align: center;
        padding-top: 40px;
    }

    .thank-you-founder-text h3 {
        font-size: 20px;
    }

    .thank-you-process-section {
        padding: 40px 0 0;
    }

    .thank-you-process-section h2 {
        font-size: 20px;
    }

    .thank-you-process-box {
        padding-bottom: 0;
        max-width: 450px;
        width: 100%;
        margin: 0 auto 30px;
    }

    .thank-you-process-image {
        max-width: 100% !important;
    }

    .thank-you-process-content {
        max-width: 100% !important;
        position: relative;
        margin-top: -15px;
        display: inline-block;
    }

    .thank-you-process-step-section {
        padding: 40px 0 20px;
    }

    .thank-you-process-steps {
        justify-content: center;
    }

    .thank-you-process-step-box {
        width: 33.33%;
        margin-bottom: 30px;
        display: flex;
        flex-wrap: wrap;
    }

    .thank-you-process-step-box .num {
        flex: 0 0 100%;
        max-width: 100%;
        order: 0;
    }

    .thank-you-process-step-box .step-arrow {
        display: none;
    }

    .thank-you-process-step-box .step-name {
        min-height: inherit;
        font-size: 16px;
        flex: 0 0 100%;
        max-width: 100%;
        order: 2;
    }

    .thank-you-process-step-box:nth-child(even) {
        padding-top: 0;
    }

    .thank-you-process-step-icon {
        margin: 15px auto;
        order: 1;
    }

    .thank-you-process-step-box:nth-child(1) {
        order: 0;
    }

    .thank-you-process-step-box:nth-child(2) {
        order: 1;
    }

    .thank-you-process-step-box:nth-child(3) {
        order: 2;
    }

    .thank-you-process-step-box:nth-child(4) {
        order: 5;
    }

    .thank-you-process-step-box:nth-child(5) {
        order: 4;
    }

    .thank-you-process-step-box:nth-child(6) {
        order: 3;
    }

    .thank-you-process-step-box:nth-child(7) {
        order: 6;
    }

    .thank-you-process-step-box .num {
        font-size: 20px !important;
    }

    .thank-you-process-step-icon {
        width: 100px !important;
        height: 91px !important;
    }

    .thank-you-process-step-icon span svg {
        width: 30px;
        height: 30px;
    }

    .privacy-policy h2 {
        font-size: 20px;
    }

    .privacy-policy h3 {
        font-size: 18px;
    }

    .custom-cms-main .game-what-we-offer-box {
        min-height: inherit;
    }

    .thank-you-v3 .content h2 {
        font-size: 30px;
    }

    .thank-you-v3 .bglightorange {
        font-size: 16px;
    }

    .thank-you-v3 .bglightorange span {
        font-size: 24px;
    }

    .thank-you-v3 .content {
        margin-bottom: 30px;
    }

    .chatbot-platform-box {
        min-height: inherit;
        padding: 25px 15px;
    }

    .write-us-banner {
        padding: 60px 0;
    }

    .write-us-banner h1 {
        font-size: 22px;
    }

    .write-for-us-main h2 {
        font-size: 22px;
    }

    .write-for-us-main p,
    .write-for-us-main ul li {
        font-size: 15px;
    }

    .write-for-us-main ul li {
        margin-bottom: 5px;
    }

    .write-for-us-cta h3 {
        font-size: 24px;
    }

    .cta.fullwidth .btn-col:before,
    .cta.fullwidth:before {
        display: none;
    }

    .cta.fullwidth .btn-col {
        -ms-flex-pack: center !important;
        justify-content: center !important;
        padding: 0 15px 30px;
    }

    .cta.fullwidth .cd-headline {
        text-align: center;
        padding: 30px 0;
    }

    .cta.fullwidth .cd-headline.slide span {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .our-process-step-listing .our-process-step-row:nth-child(odd) .our-process-image-box {
        margin-left: 25px;
        width: calc(100% - 25px);
    }

    .our-process-step-listing .our-process-step-row:nth-child(even) .our-process-image-box {
        margin-right: 25px;
        width: calc(100% - 25px);
    }

    .our-process-image-box:before {
        top: 28px;
    }

    .thank-you-process-step-box {
        width: 50%;
    }

    .thank-you-process-step-box:nth-child(1) {
        order: 0;
    }

    .thank-you-process-step-box:nth-child(2) {
        order: 1;
    }

    .thank-you-process-step-box:nth-child(3) {
        order: 4;
    }

    .thank-you-process-step-box:nth-child(4) {
        order: 3;
    }

    .thank-you-process-step-box:nth-child(5) {
        order: 5;
    }

    .thank-you-process-step-box:nth-child(6) {
        order: 6;
    }

    .thank-you-process-step-box:nth-child(7) {
        order: 7;
    }
}

@media (max-width: 600px) {
    .rel-post-box {
        min-height: inherit;
    }
}

@media (max-width: 575px) {
    .solutions-box {
        min-height: inherit;
    }

    .blog-slider .item .blog-post_content {
        padding: 0 5px 18px 5px;
    }

    .blog-slider .item .blog-post_content .blog-post_text,
    .blog-slider .item .blog-post_content .blog-post_title {
        padding: 0 10px;
    }

    .blog-slider .item .blog-post_content .author_post a {
        font-size: 12px;
    }

    .blog-slider .item .blog-post_content .meta-wrapper .date_post {
        font-size: 12px;
    }

    .solutions-box {
        min-height: inherit;
    }

    .m-height-380 .mhbox {
        min-height: inherit;
    }

    .m-height-340 .mhbox {
        min-height: inherit;
    }

    .m-height-320 .mhbox {
        min-height: inherit;
    }

    .m-height-300 .mhbox {
        min-height: inherit;
    }

    .m-height-280 .mhbox {
        min-height: inherit;
    }

    .m-height-260 .mhbox {
        min-height: inherit;
    }

    .m-height-240 .mhbox {
        min-height: inherit;
    }

    .m-height-220 .mhbox {
        min-height: inherit;
    }

    .innerbanner .submitbar .d-inline-flex:first-child {
        padding-right: 10px;
    }

    .innerbanner .submitbar .d-inline-flex {
        margin: 10px 0 !important;
    }

    .web-why-choose-main-box {
        min-height: inherit;
    }

    .service-we-offer-web-inner .web-why-choose-main-box {
        padding: 20px 15px;
    }

    .web-advtanges-box {
        padding: 20px 15px;
    }

    .callouts-separate.webdevinner {
        margin: 40px auto 0;
    }

    .option1 .web-why-choose-main-icon {
        margin: -70px auto 15px;
    }

    .about-us-review-section .counter-section {
        align-items: flex-start;
    }

    .about-us-review-section .counter-image {
        margin: 0 auto 15px;
    }

    .about-us-review-section .counter-section li img {
        width: 40px;
    }

    .about-us-review-section .counter_text {
        width: 100%;
        padding: 0;
        justify-content: center;
        text-align: center;
    }

    .about-us-review-section .counter_text .counter {
        font-size: 24px;
    }

    .our-core-value-box {
        min-height: inherit;
    }

    .featured-in-image-box:before {
        display: none !important;
    }

    .mvp-what-we-offer-box {
        min-height: inherit;
    }

    .mvp-why-choose-dev-box {
        display: block;
        text-align: center;
        padding: 20px 25px;
    }

    .mvp-why-choose-dev-icon {
        margin: 0 auto 15px;
    }

    .mvp-why-choose-dev-content {
        width: 100%;
        margin: 0;
    }

    .best-game-dev-company-box {
        min-height: inherit;
        padding: 30px 15px;
    }

    .best-game-dev-company-icon {
        width: 70px;
        height: 70px;
    }

    .best-game-dev-company-icon svg {
        width: 45px;
    }

    .best-game-dev-company-box h5 {
        margin-bottom: 20px;
    }

    .blog-list-info-box.d-flex {
        display: block !important;
    }

    .blog-list-author-image {
        width: 60px;
        height: 60px;
    }

    .blog-list-author-image-wrap,
    .blog-list-date {
        display: inline-flex !important;
    }

    .blog-list-date+.divider {
        display: none;
    }

    .blog-list-category {
        display: block;
        margin-top: 10px;
    }

    .blog-detail-content iframe {
        max-width: 100%;
        height: 250px;
    }

    .game-experties-inner-box {
        min-height: inherit;
    }

    .footer_box_img {
        width: 100%;
        display: block;
        float: none;
        margin-bottom: 25px !important;
        text-align: center;
    }

    .footer_box_add {
        max-width: 370px;
        width: 100%;
        display: block;
        float: none;
        padding: 0;
        text-align: left;
        margin: 0 auto;
    }

    .footer_box h5 {
        font-size: 20px;
    }

    .footer_box ul li {
        justify-content: flex-start;
    }

    .footer-top {
        padding-top: 30px;
    }

    .foot-center-col {
        padding: 0 15px 30px;
    }

    .foot-center-col:nth-child(1) {
        padding: 0 15px 20px;
    }

    .foot-exp-char {
        width: 100px;
    }

    .foot-exp-text-wrap {
        width: calc(100% - 120px);
    }

    .foot-exp-text-button .exp {
        font-size: 24px;
    }

    .foot-exp-text-button .indus {
        font-size: 18px;
    }

    .foot-social .header_social li {
        margin-bottom: 10px;
    }

    .footer-center-market-list {
        display: block !important;
        text-align: center;
    }

    .footer-center-market-list .item {
        width: 48%;
        margin: 0 0 30px;
        padding: 0 10px;
        float: none;
        text-align: center;
        display: inline-block;
        vertical-align: top;
    }

    .footer-center-market-list .item:nth-child(2n + 1) {
        clear: both;
    }

    .footer-center-market-list .item img {
        height: 145px;
    }

    .ins-msg-content-wrap .accordian_header {
        font-size: 16px;
    }

    .ins-msg-content-wrap .contentrow .tab_content img {
        display: block;
        float: none;
        margin: 0 auto 20px;
    }

    .ins-msg-content-wrap .tab_inner_content {
        padding: 0;
    }

    .why-you-invest-box {
        min-height: inherit;
    }

    .real-time-app-content-box {
        display: block !important;
    }

    .real-time-app-content {
        margin-right: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .real-time-app-button {
        text-align: center;
    }

    .car-wash-process-box-wrap .wow .car-wash-process-box .arrow {
        top: calc(100% + 10px) !important;
        right: 0 !important;
        line-height: 1;
        left: 0 !important;
        bottom: inherit !important;
        width: 40px !important;
        text-align: center;
        margin: 0 auto !important;
        transform: rotate(90deg) !important;
    }

    .key-features-box {
        padding: 30px 15px;
        min-height: inherit;
    }

    .fitness-tab-content .service-we-offer-web-inner .web-why-choose-main-box {
        padding: 0 15px 20px;
    }

    .ideal-business-box {
        border-right: 0 !important;
    }

    .ideal-business-box:nth-child(5) {
        border-bottom: 1px solid #ecedee;
    }

    .uiux-app-design-icon {
        width: 75px;
        height: 75px;
    }

    .uiux-app-design-icon svg {
        width: 45px;
        height: 45px;
    }

    .uiux-app-design-content {
        width: calc(100% - 95px);
    }

    .uiux-app-design-content h4 {
        font-size: 18px;
    }

    .similar-app-option3-main .content-description ul li {
        width: 100%;
        float: none;
        padding-right: 0;
        display: block;
    }

    .similar-app-slider .slick-arrow.slick-next {
        right: 35%;
    }

    .similar-app-slider .slick-arrow.slick-prev {
        left: 35%;
    }

    .detail-feature-tab-content ul li {
        width: 100%;
        float: none;
        padding-right: 0;
        display: block;
        padding: 0 0 0 25px;
    }

    .portfolio-preview-thumb img.portrait {
        height: auto;
        width: 95%;
    }

    .advantage-of-real-estate-main .web-why-choose-us-inner-box {
        text-align: center;
        min-height: inherit;
    }

    .advantage-of-real-estate-main .web-why-choose-us-inner-box {
        min-height: inherit;
    }

    .advantage-of-real-estate-main .web-why-choose-us-inner-box h5 {
        width: 100%;
    }

    .advantage-of-real-estate-main .web-why-choose-inner-icon {
        float: none;
    }

    .real-estate-type-main .game-what-we-offer-box {
        min-height: inherit;
    }

    .error-service-list-item {
        width: calc(33.33% - 10px);
        margin-bottom: 20px;
    }

    .chatbot-adv-box {
        min-height: inherit;
        padding: 0 15px 30px;
    }
}

@media (max-width: 480px) {
    .app-service-tab {
        padding: 0 20px !important;
    }

    #rev_slider .tp-caption {
        max-width: 300px !important;
        width: 100%;
        min-width: 300px !important;
    }

    .our-award-section .item {
        width: 100%;
        text-align: center;
    }

    .our-award-section .item:last-child .mb-30 {
        margin-bottom: 0 !important;
    }

    .our-award-section .item img {
        height: auto;
    }

    .portfolio-listing-icon {
        padding: 5px 5px;
    }

    .portfolio-listing-icon svg {
        width: 25px;
        height: 25px;
    }

    .portfolio-listing-icon span {
        font-size: 12px;
    }

    .blog-list-author-image {
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }

    .blog-list-author-image-wrap a {
        display: inline-block;
        vertical-align: middle;
    }

    .blog-list-date {
        margin-top: 0;
    }

    .blog-list-info-box .divider {
        margin: 0 5px;
    }

    .blog-detail-cta-section {
        padding: 20px 20px;
    }

    .blog-detail-cta-content {
        width: 100%;
        order: 2;
        margin-right: 0;
    }

    .blog-detail-cta-img {
        width: 130px;
        height: 130px;
        order: 1;
        margin-bottom: 20px;
    }

    .error-service-list-item {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media (max-width: 414px) {
    .ar-services-list-box {
        padding: 30px 10px;
        min-height: auto;
    }

    .ar-services-list-icon {
        margin-bottom: 10px;
    }

    .ar-services-list-title {
        min-height: auto;
    }

    .about-blog-author-section {
        display: block !important;
    }

    .about-blog-author-image {
        margin: 0 auto 20px;
    }

    .about-blog-author-info {
        width: 100%;
        text-align: center;
    }

    .app_service_option1 .col-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .our-expert-build-box {
        display: block !important;
    }

    .our-expert-build-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .foot-center-col h4 {
        font-size: 20px;
    }

    .foot-exp-char {
        width: 80px;
    }

    .foot-exp-text-wrap {
        width: calc(100% - 90px);
        margin-left: 10px;
    }

    .foot-exp-text-button .exp {
        font-size: 22px;
    }

    .foot-exp-text-button .indus {
        font-size: 16px;
    }

    .foot-exp-text-wrap .btn-custome.btn-lg {
        padding: 15px 20px;
    }

    .footer-center-market-list .item {
        width: 100%;
        display: block;
        float: none;
    }

    .footer-center-market-list .item img {
        height: auto;
    }

    .thank-you-process-step-box {
        width: 100%;
    }

    .thank-you-process-step-box:nth-child(1) {
        order: 0;
    }

    .thank-you-process-step-box:nth-child(2) {
        order: 1;
    }

    .thank-you-process-step-box:nth-child(3) {
        order: 2;
    }

    .thank-you-process-step-box:nth-child(4) {
        order: 3;
    }

    .thank-you-process-step-box:nth-child(5) {
        order: 4;
    }

    .thank-you-process-step-box:nth-child(6) {
        order: 5;
    }

    .thank-you-process-step-box:nth-child(7) {
        order: 6;
    }
}

@media (max-width: 400px) {
    .game-experties-main .col-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .game-experties-box {
        max-width: 220px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 360px) {
    .blog-list-author-date {
        display: block !important;
    }

    .blog-list-info-box .divider {
        display: none;
    }

    .blog-list-author-image-wrap,
    .blog-list-date {
        display: block !important;
    }

    .blog-list-date {
        margin-top: 10px;
    }
}





/*-------------------------------------------------my own css--------------------------------------*/

.about h2 {
    font-family: 'Poppins-Thin';
    font-weight: 100;
    font-size: 83px;
    line-height: 1;
    margin-bottom: 50px;
    color: #3e3d4e;
}

.about h2 strong {
    font-family: 'Poppins-ExtraBold', sans-serif;
    display: block;
}

.about {
    background: url(../images/footer/middle-hang-bg.png) top center no-repeat;
    text-align: center;
    padding-top: 190px;
    font-size: 18px;
    font-weight: 300;
    margin: 50px 0px;
}

.about .btn-readmore {
    background-image: linear-gradient(#1a8ecd, #1278bb);
    color: #fff;
    display: block;
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    text-shadow: 0 4px 2px rgb(0 0 0 / 50%);
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    font-family: 'Poppins-Black';
    border: 0;
    padding: 3px 30px;
}

.responsive-device .columnn img {
    padding: 30px;
}

.responsive-device {
    margin: 80px 0;
}

.responsive-device h2 strong {
    font-family: 'Poppins-ExtraBold', sans-serif;
    display: block;
}

.responsive-device h2 {
    font-family: 'Poppins-Thin';
    font-weight: 100;
    font-size: 110px;
    line-height: 1;
    margin-bottom: 50px;
    color: #3e3d4e;
}

.available h2 strong {
    font-family: 'Poppins-ExtraBold', sans-serif;
    display: block;
}

.seo_service {
    display: inline-block;

    vertical-align: top;
    width: 100%;
    text-align: center;
}

.seo_service ul {
    margin: 35px 0 0;
    padding: 0;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}


.seo_service ul li {
    line-height: 23px;
}

.seo_service ul li {
    border: 1px solid #dfdfdf;
    border-top: none;
    border-left: none;
    display: inline-block;
    list-style: outside none none;
    margin: 0;
    padding: 0 25px 35px;
    vertical-align: top;
    width: 33.3%;
    float: left;
    height: 490px;
}

.seo_service ul li .icon {
    width: 170px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 6px;
}

.seo_service ul li .title a {
    color: #d10000;
}

.seo_service ul li .title {
    color: #222;
    display: inline-block;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: .5px;
    line-height: normal;
    overflow: hidden;
    vertical-align: top;
    width: 100%;
    margin-top: 15px;
}

.seo_service ul li .title {
    margin-bottom: 20px;
}

.seo_service ul li .pra_text {
    color: #222;
    height: 90px;
    margin-bottom: 24px;
    overflow: hidden;
    height: 200px;

}

.seo_service ul li a.gettop_ranking {
    background: #d10000 none repeat scroll 0 0;
    border-radius: 100px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    height: 42px;
    line-height: 42px;
    vertical-align: top;
    overflow: hidden;
    width: 230px;
    transition: all .5s ease;
    display: inline-block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    text-transform: uppercase;
}

.seo_service ul li:nth-child(4n),
.seo_service ul li:nth-child(5n),
.seo_service ul li:nth-child(6n) {
    padding-top: 40px;
}

.content-middle {
    background: #f0f0f1;
    padding: 35px 0;
    text-align: center;
}


#block-views-our-clients-block h2 {
    font-size: 54px;
    line-height: 1;
    color: #3e3d4e;
    text-align: center;
    font-family: 'Poppins-ExtraLight';

    font-weight: 100;
}

#block-views-our-clients-block h2 b {
    font-family: 'Poppins-Bold';
}

.our-clients-logos {
    display: table-cell;
    text-align: center;
}

.our-clients-logo {
    display: table;
    table-layout: fixed;
    width: 100%;
    text-align: center;
}

.ourclients {
    display: table-cell;
    vertical-align: middle;
    height: 110px;
}

.ourclients img {
    display: inline-block;
}

.ourclients img {
    filter: grayscale(100%);
    opacity: .5;
}

#footer-bottom .page-header {
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    margin-top: 20px;
}

#footer-bottom .page-header:after {
    position: relative;
    top: 1.5rem;
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #d10000;
}

#footer-bottom .quick-links ul.menu li a {
    border-bottom: 1px solid #70707099;
    padding: 10px 0px;
    width: 80%;
}

.footer-copyright p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.footer-copyright {
    text-align: center;
    background: #232323;
    color: #fff;
    padding: 12px;
}

#footer-bottom {
    background: #000;
    padding: 30px 0 40px;
    position: relative;
    overflow: hidden;
}

.tar-position1 {
    position: absolute;
    width: 690px;
    left: -80px;
    top: 0;
    overflow: hidden;
    opacity: 0.6;
    -ms-transform: rotate(20deg);
    transform: rotate(146deg);
}

.tar-position {
    position: absolute;
    width: 580px;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.5;
    -ms-transform: rotate(20deg);
    transform: rotate(60deg);
}

.section-title {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
}

.section-title h1 {
    display: inline-block;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000000;
    margin: 0 0 5px;
    position: relative;
}

.section-title h1:before {
    content: '';
    left: 0;
    position: absolute;
    height: 2px;
    right: 32%;
    background-color: #febd01;
    bottom: 0px;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}


.main .servicesTab {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #fff; */
    /* border-radius: 100px; */
    padding: 25px 35px;
    margin-bottom: 60px;
    /* box-shadow: 0 5px 8px 0 rgb(0 0 0 / 27%); */
    flex-wrap: wrap;
    /* width: 85%; */
    margin: 0 auto;
    gap: 10px;
}

.main {
    padding: 50px 0;
}

.main h1 {
    font-size: 42px;
    color: #333;
    font-weight: 700;
}

.main p {
    font-size: 18px;
    color: #687074;
    width: 100%;
    margin: 15px auto;
}


.main .servicesTab li {
    text-align: center;
    padding: 0 10px;
    /* border-right: 1px solid #dddfe1; */
    /* width: 210px; */
    font-size: 18px;
    padding: 10px 15px;
    background-color: #dddfe1;
    cursor: pointer;
}

.main .servicesTab li img {
    margin-bottom: 7px;
}

.main .servicesTab li span {
    width: 100%;
    font-weight: 500;
}

.main .servicesTab li a {
    color: #202122;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mytitle h2 strong {
    font-family: 'Poppins-ExtraBold', sans-serif;
    display: block;
}

.mytitle h2 {
    font-family: 'Poppins-Thin';
    font-weight: 100;
    font-size: 83px;
    line-height: 1;
    margin-bottom: 50px;
    color: #3e3d4e;
}


.main ul li svg {
    width: 50px;
    margin-bottom: 10px;
}

.main .servicesTab li:last-child {
    border: none;
}

.main .servicesTab li:hover svg path {
    fill: #d10000;
    -webkit-transition: all .3s ease-in-out;
}

.main .servicesTab li:hover {
    color: #d10000;
}


.servicesTab li span.active {
    color: #d10000;
    /* font-weight: bold; */
}


.main ul li:last-of-type {
    margin-right: 0;
}
.images>img{
    max-height: 300px;
    min-height: 300px;
  }

/*.main ul li:nth-of-type(3),
.main ul li:nth-of-type(4),
.main ul li:nth-of-type(5){
    flex-grow: 2
}*/

.main .port {
    overflow: hidden;
    padding: 40px;
}

.main .port .col-md-4 {
    margin-top: 15px;
    float: left;
    transition: all 5s ease-in-out
}


.main .port .images .port-inside-one p:hover {
    color: #d10000;
}

.col-md-6.col-lg-6.col-xl-4.images {
    margin-top: 15px;
}
.main .port .images .port-inside-one p {
    font-size: 14px;
    margin: 0;
    margin-top: -6px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.main .port .images .port-inside-one a {color:#d10000;}
.main .port .images .port-inside-one {
    width:100%;
    text-align: left;
        font-size: 16px;
    font-weight: bold;
}

.main .port .images .port-nw-two {
    margin-bottom: 21px;
}

.main .port .images .port-nw-one {
    margin: 0;
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
    width: 100%;
    justify-content: space-between !important;
    display: flex;
}

.main {
    background: #f8f7f5;
}

.main .port .images .iporfolio img {
    right: 20px;
    position: absolute;
    z-index: 1;
    width: 6%;
    top: 27px;
}

.main .port .images .port-btm-part {
    background: #fff;
    padding: 20px 25px;
    position: relative;
    border-bottom: #f3f1f0 solid 1px;
}


.main .port .images {
    float: left;
}

.main .port img {
    width: 100%
}


/*--------------our pricing css-----------*/

.fl-row-content-wrap {
    padding: 20px;
}

.fl-row-content-wrap {
    margin: 0px;
}

.fl-row-content-wrap {
    position: relative;
}

.fl-node-5ef4cfcce2393 .fl-row-content {
    max-width: 100vw;
}

.fl-node-5ef4cfcd59a0c {
    width: 100%;
}

.fl-col-content {
    padding: 0px;
}

.fl-col-content {
    padding: 0px;
}

.fl-module-content {
    margin: 20px 0px;
}

.fl-module-uabb-table .table-data {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.uabb-table {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    zoom: 1;
}

.uabb-table .uabb-table-element-box {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
}

.uabb-table {
    overflow: visible !important;
}

.uabb-table .uabb-table-wrapper {
    height: 100%;
    text-align: center;
    position: relative;
}

.fl-module-uabb-table .uabb-table-wrapper .uabb-table-inner-wrap {
    border-collapse: collapse;
    margin: 0;
}

.uabb-table table {
    border: none;
}

.uabb-table-inner-wrap {
    width: 100%;
}

.fl-node-5ee8f233a8547 .uabb-table-inner-wrap .uabb-table-header .table-header-th,
.fl-node-5ee8f233a8547 div.table-header-th {
    border: 0px solid #000;
    padding: 15px;
}

.fl-node-5ee8f233a8547 .uabb-table-wrapper .table-header-th,
.fl-node-5ee8f233a8547 .uabb-table-wrapper div.table-header-th {
    font-weight: 600;
    font-size: 26px;
    text-align: center;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-1 {
    background-color: #428bca;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-1 {
    color: #fff;
}

.uabb-table .uabb-table-header .table-header-th {
    overflow-wrap: normal;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-4 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-5 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-6 {
    background-color: #235b86;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-6 {
    color: #fff;

}

.uabb-table .uabb-table-header .table-header-th {
    vertical-align: middle;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-7 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-8 {
    background-color: #235b86;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-8 {
    color: #fff;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-9 {
    background-color: #235b86;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-9 {
    color: #fff;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-10 {
    background-color: #f15c28;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-10 {
    color: #fff;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-11 {
    color: #fff;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-11 {
    background-color: #235b86;
}


.fl-node-5ee8f233a8547 .uabb-table-features .table-body-0 {
    background-color: #232320;
    text-align: right;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-0 .content-text {
    color: #fff;
}

.fl-node-5ee8f233a8547 .uabb-table-inner-wrap .uabb-table-features .table-body-td {
    border: 0px solid #000;
    padding: 15px;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-1 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-2 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-3 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-4 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-wrapper .table-body-td {
    text-align: center;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-5 {
    background-color: #444;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-5 {
    color: #fff;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-6 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-7 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-8 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-9 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-10 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-11 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-12 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-13 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-14 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-16 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-17 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-18 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-19 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-20 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-21 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-22 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-23 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-24 {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .ccc {
    background-color: #f2f2f2;
}

.fl-node-5ee8f233a8547 .uabb-table-features .black {
    background-color: #232320;
    color: #fff;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-10 {
    background-color: #232320;
    color: #fff;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-15 {
    background-color: #444;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-15 {
    color: #fff;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-20 {
    background-color: #444;
}

.fl-node-5ee8f233a8547 .uabb-table-features .table-body-20 {
    color: #fff;
}

.fl-node-5ee8f233a8547 .uabb-table-header .table-heading-3 {
    background-color: #232320;
}

.td-style .content-text .fa {
    font-weight: 900;
    font-size: 21.5px;
}

.td-style .content-text {
    font-size: 15.5px;
    font-weight: 500;
}

.fl-module-content .td-style .content-text {
    font-size: 17px;
    font-weight: 500;
}

.td-style .btn-custome:hover {
    transform: scale(1.2)
}

.td-style .btn-custome {
    background: #d10000 !important;
    box-shadow: 0 3px 10px 0 rgb(236 115 35 / 20%) !important;
    color: #fff !important;
    padding: 15px 25px;
    border-radius: 5px !important;
    line-height: 1;
    font-size: 18px !important;
    display: inline-flex;
    position: relative;
    border: none;
}

.fl-module-content {
    margin: 20px 0px;
}

.uabb-table .uabb-table-wrapper {
    height: 100%;
    text-align: center;
    position: relative;
}


.fl-node-5f986e268bcb2 .uabb-table-inner-wrap .uabb-table-header .table-header-th {
    border: 0px solid #000;
    padding: 15px;
}

.fl-node-5f986e268bcb2 .uabb-table-wrapper .table-header-th {
    font-weight: 500;
    font-size: 26px;
    text-align: center;
}

.fl-node-5f986e268bcb2 .uabb-table-header .table-heading-0 {
    background-color: #f2f2f2;
}

.fl-node-5f986e268bcb2 .uabb-table-header .table-heading-1 {
    background-color: #235b86;
    color: white;
}

tbody {
    border-bottom: 1px solid #eee;
}

.fl-node-5f986e268bcb2 .uabb-table-features .tbody-row {
    background: #f2f2f2;
}

.fl-node-5f986e268bcb2 .uabb-table-inner-wrap .uabb-table-features .table-body-td {
    border: 0px solid #000;
    padding: 15px;
}

.fl-node-5f987037980e2 .uabb-table-inner-wrap .uabb-table-header .table-header-th {
    border: 0px solid #000;
    padding: 15px;
}

.fl-node-5f987037980e2 .uabb-table-header .table-heading-0 {
    background-color: #f2f2f2;
}

.fl-node-5f987037980e2 .uabb-table-wrapper .table-header-th {

    font-weight: 500;
    font-size: 26px;
    text-align: center;
}

.fl-node-5f987037980e2 .uabb-table-header .table-heading-1 {
    background-color: #235b86;
    color: #fff;
}

.fl-node-5f987037980e2 .uabb-table-inner-wrap .uabb-table-features .table-body-td {
    border: 0px solid #000;
    padding: 15px;
}

.fl-node-5f987037980e2 .uabb-table-features .tbody-row {
    background-color: #f2f2f2;
}

.fl-node-5f987128f41d5 .uabb-table-features .tbody-row {
    background-color: #f2f2f2;
}

.fl-node-5f987128f41d5 .uabb-table-inner-wrap .uabb-table-header .table-header-th {
    border: 0px solid #000;
    padding: 15px;
}

.fl-node-5f987128f41d5 .uabb-table-wrapper .table-header-th {

    font-weight: 500;
    font-size: 26px;
    text-align: center;
}

.fl-node-5f987128f41d5 .uabb-table-header .table-heading-0 {
    background-color: #428bca;
    color: #fff;
}

.fl-node-5f987128f41d5 .uabb-table-header .table-heading-2 {
    background-color: #f15c28;
    color: #fff;
}

.fl-node-5f987128f41d5 .uabb-table-inner-wrap .uabb-table-features .table-body-td {
    border: 0px solid #000;
    padding: 15px;
}

.fl-node-5f987128f41d5 .uabb-table-header .table-heading-1 {
    background-color: #f2f2f2;
}

.fl-node-5f98720befde4 .uabb-table-inner-wrap .uabb-table-header .table-header-th {
    border: 0px solid #000;
    padding: 15px;
}

.fl-node-5f98720befde4 .uabb-table-wrapper .table-header-th {

    font-weight: 500;
    font-size: 26px;
    text-align: center;
}

.fl-node-5f98720befde4 .uabb-table-header .table-heading-0 {
    background-color: #f2f2f2;
}

.fl-node-5f98720befde4 .uabb-table-header .table-heading-1 {
    background-color: #235b86;
    color: #fff;
}

.fl-node-5f98720befde4 .uabb-table-inner-wrap .uabb-table-features .table-body-td {
    border: 0px solid #000;
    padding: 15px;
}

.uabb-table-features {
    background-color: #f2f2f2;
}

.ctabtn a:hover {
    transform: scale(1.2)
}

.ctabtn a {
    padding: 12px 24px;
    font-weight: 600 !important;
    font-size: 24px !important;
    line-height: 30px !important;
    text-transform: uppercase !important;
    background: #d10000;
    color: #fff !important;
    border: 1px solid #d10000;
    transition: 200ms;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.clear {
    clear: both;
}

.p-17 {

    line-height: 28px;
    font-size: 17px;

}

.fl-heading {
    font-size: 28px;
    text-align: center;
    font-weight: 500;
    margin: 22px 0px;
}

.our_price {
    padding: 10px 0px;
}

.our_price .grey {
    background-color: #f2f2f2;
}

.our_price .our_content {
    padding: 0px 20px;
}

.our_price .our_content p {
    font-size: 17px;
}

.our_price .our_content p i {
    margin-right: 10px;
}

.our_price .col {
    padding: 0;
}

.our_price .flex {
    display: flex;
}



.app_development_1 p {
    font-size: 17px;
    line-height: 28px;
}

.app_development_1 .servicesTabContent_text h3 {
    font-size: 22px;
}

.app_development_3 p {
    font-size: 17px;
    line-height: 28px;
}

.app_development_3 .servicesTabContent_text h3 {
    font-size: 22px;
}

.app_development_3 .ios-t {
    font-size: 22px;
    color: #3c3950;
    font-weight: 500;
    margin: 0 auto;
}

.app_development_3 .single-service h4 {
    font-size: 17px;
    /* font-weight: 600; */
    margin: 10px 0 8px;
    color: #3c3950;
}

.app_development_3 .single-service {
    border: 1px solid #ccc;
    margin-bottom: 30px;
    padding: 24px 25px;
    min-height: 322px;
}

.app_development_2 p {
    padding: 10px 0;
    margin: 0;
    font-size: 20px;
}

.about_3 .team-intro>div {
    height: 100%;
    background: #d10000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about_3 .team-intro .team-desc {
    position: relative;
    bottom: 0;
}

.about_3 p {
    color: #fff;
}

.about_3 .team-intro h2 {
    font-size: 3rem;
    color: #fff;
}

.mytitle span {
    font-size: 16px;
    font-weight: 500;
    color: #d10000;
}

.about_3 .member .m-role {
    font-size: 17px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: -5px;
    margin-left: 2px;
    color: #707070;
    margin-top: 7px;
}

.about_3 .member .m-name {
    margin-top: 0.5rem;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 0.2rem;
    color: #000;
}

.about_3 .team-intro {
    position: relative;
}


/* phone css start*/
.contact-number {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999999;
}

.hotline-phone-ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 110px;
    height: 110px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

.hotline-phone-ring-circle {
    width: 110px;
    height: 110px;
    top: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid #1564a7;
    -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0.5;
}

.hotline-phone-ring-circle-fill {
    width: 80px;
    height: 80px;
    top: 16px;
    left: 15px;
    position: absolute;
    background-color: rgba(21, 100, 167, 0.7);
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.hotline-phone-ring-img-circle {
    background-color: #1564a7;
    width: 50px;
    height: 50px;
    top: 31px;
    left: 31px;
    position: absolute;
    background-size: 20px;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotline-phone-ring-img-circle .pps-btn-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.hotline-phone-ring-img-circle .pps-btn-img img {
    width: 33px;
    height: 33px;
}

.hotline-bar {
    position: absolute;
    height: 45px;
    line-height: 40px;
    border-radius: 3px;
    padding: 0px 15px 0px 45px;
    background-size: 100%;
    cursor: pointer;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    z-index: 9;
    border-radius: 50px !important;
    left: 42px;
    bottom: 31px;
}

.hotline-bar>a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    text-indent: 32px;
    letter-spacing: 1px;
    display: block;
    line-height: 45px;
    font-family: Arial;
}

.hotline-bar>a:hover,
.hotline-bar>a:active {
    color: #fff;
}

@-webkit-keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.5) skew(1deg);
        -webkit-opacity: 0.1;
    }

    30% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        -webkit-opacity: 0.5;
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: 0.1;
    }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.6;
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.6;
    }

    100% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.6;
    }
}

@-webkit-keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

.seo-services .col-md-4 {
    margin-top: 30px;
}


.bg-purple {
    background-color: #d10000;
}

.row-margin-top {
    margin-top: 100px;
}

.row-spacing {
    padding-top: 70px;
    padding-bottom: 70px;
}

.container-sm {
    max-width: 1400px;
}

.top-tagline {
    padding-bottom: 40px;
}

.text-center {
    text-align: center !important;
}

.color-white {
    color: #fff;
}

.color-white {
    color: #fff;
}

.industries_trust>div:not(:last-child) {
    border-right: 1px solid #fff;
}

.industries_trust .industry_trust {
    margin: 20px 22px;
}


.logos-listing {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    padding: 0;
    margin-bottom: 0;
    margin: 0 auto;
}

ul.logos-listing.seo-tool li {
    width: calc(100% / 6);
}

.logos-listing li {
    display: inline-block;
    vertical-align: middle;
    margin: 14px;
    width: calc(100% / 8);
}

ul.logos-listing.seo-tool li img {
    max-width: 200px !important;
}

.logos-listing li img {
    max-width: 100%;
    opacity: .55;
    filter: grayscale(100%);
    -ms-filter: grayscale(100%);
}

.logos-listing li:hover img {
    filter: grayscale(0);
    -ms-filter: grayscale(0);
    opacity: 1;
}

.last-version ul li {
    padding: 18px 0px;
    /* padding-left: 26px; */
    list-style: none;
    position: relative;
    font-family: "Roboto";
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 17px;
    border-top: 1px solid #dbdbdb;
    line-height: 27px
}

.client-logo li img {
    transition: all ease .2s;
}

.client-logo li img:hover {
    transform: translateY(-8px);
}

.service-we-offer-web-inner .web-why-choose-main-icon i {
    font-size: 40px;
    line-height: 100px;
    color: #d10000;
}

@media (max-width: 440px) {
    .main .port .images .port-btm-part {
        background: #fff;
        padding: 5px 5px;
        position: relative;
        border-bottom: #f3f1f0 solid 1px;
    }

    .main .port .images .port-inside-one {
        width: 35%;
        float: left;
    }

    .main ul li svg {
        width: 30px;
        margin-bottom: 10px;
    }

    .main .servicesTab {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .main .servicesTab {
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 8px;
        padding: 10px 5px;
        margin-bottom: 60px;
        box-shadow: 0 5px 8px 0 rgb(0 0 0 / 27%);

    }

    .main .servicesTab li:nth-child(3) {
        border: none;
    }

    .main .servicesTab li:nth-child(6) {
        border: none;
    }

    .main .servicesTab li {
        text-align: center;
        padding: 0px 13px;
        border-right: 1px solid #dddfe1;
        width: 50%;
        height: 100px;
    }

    .about-us-inner .about-card {
        padding: 47px 27px !important;

        width: 100% !important;
    }

    .mytitle h2 {
        font-family: 'Poppins-Thin';
        font-weight: 100;
        font-size: 35px !important;
        line-height: 1;
        margin-bottom: 15px;
        color: #3e3d4e;
    }

    .mytitle h2 strong {
        font-family: 'Poppins-ExtraBold', sans-serif;
        display: block;
        font-size: 25px !important;
        margin-top: 5px !important;
    }

    .seo_service ul li {
        border: none;
        border-top: none;
        border-left: none;
        display: inline-block;
        list-style: outside none none;
        margin: 0;
        padding: 0 5px 35px;
        vertical-align: top;
        width: 100%;
        float: left;
        height: auto;
    }

    .about-us-inner {
        float: left;
        width: 100%;
        display: block;
        box-shadow: 0px 1px #f7f7f7;
    }

    .about-us-inner h2.about-us-heading {
        color: #fff;
        text-shadow: 1px 6px #000000b0;
        font-size: 35px;
        font-weight: 500;
    }

    .seo_service ul li .pra_text p {
        text-align: left;
    }

    #block-views-our-clients-block h2 {
        font-size: 40px;
        line-height: 1;
        color: #3e3d4e;
        text-align: center;
        font-family: 'Poppins-ExtraLight';
        font-weight: 100;
    }

    .col-xs-6 {
        width: 50%;
        float: left;
    }

    .about-card .about-card-card-top img {
        float: right;
        width: 80px;
    }

    .responsive-device {
        margin: 0px 0;
    }

    .km-works-block ul li i {
        background: #d10000;
        width: 17px;
        border-radius: 100%;
        height: 17px;
        line-height: 17px;
        vertical-align: middle;
        text-align: center;
        color: white;
        margin-right: 10px;
        font-size: 14px;
    }

    .km-works-block ul li {
        padding: 15px 0px;
        padding-left: 0px;
        list-style: none;
        position: relative;
        font-family: "Roboto";
        -webkit-box-flex: 0;
        -ms-flex: 0 0 1000%;
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 16px;
        border-top: 1px solid #dbdbdb;
        line-height: 27px;
    }

    .client-logo li {
        width: 50% !important;
        text-align: center !important;
        border-right: 1px solid #ffffff !important;
        padding: 15px !important;
        float: left;
    }

    .industries_trust>div:not(:last-child) {
        border-right: 1px solid #d10000;
        border-bottom: 1px solid #d10000;
    }

    ul.logos-listing.seo-tool li img {
        max-width: 150px !important;
        padding-left: 25px;
    }

    ul.logos-listing.seo-tool li {
        width: calc(100% / 3);
    }

    contact-form-main .padding-0 {
        padding: 11px !important;
    }

    .get-posi {
        color: #fff;
        position: absolute;
        z-index: 9999;
        bottom: 270px;
        left: 46px;
    }

    .our-core-value-icon {
        width: 90px;
        height: 90px;
        line-height: 90px;
        text-align: center;
        border: 1px solid #dddfe1;
        margin-bottom: 20px;
        -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;
        margin: 0 auto;
    }

    .our-core-value-box h3,
    .our-core-value-box h5 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .overlay .popup-img {
        padding: 70px 10px !important;
    }


    .overlay .closebtn {
        position: absolute !important;
        top: 32px !important;
        right: -5px !important;
        font-size: 35px !important;
    }
}

.ready-banner p {
    color: #fff;
    font-size: 20px;
    margin-top: 3rem;
    font-weight: 300;
}

.readytogrow-cover {
    position: absolute;
    bottom: 0;
}

.seo-img {
    z-index: 1;
    position: relative;
}

#proposal_form {
    position: relative;
}

.ready-banner .enteryourwebsite-input {
    width: 50%;
    transition: all 0.3s;
}

#proposal5.error {
    left: 0;
}

.btn-proposal:hover {
    background: skyblue;
    ;
    color: #fff;
}

.btn-proposal {
    background: #d10000 url(web/assets/images/white-next-arrow.svg) no-repeat;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #fff;
    padding: 12px 50px;
    border: none !important;
    font-weight: 500;
    font-size: 20px;
    margin-left: 1.2rem;
    border-radius: 0.3rem;
    display: inline-block;
    background-position: 89% center;
    transition: all .3s;
    cursor: pointer;
}

.error {
    color: #f44336;
    font-size: 11px;
    font-weight: 500;
    position: absolute;
    bottom: -17px;
}

.ready-banner .enteryourwebsite-input {
    color: rgb(255 255 255);
    background-color: #25282c;
    width: 50%;
    padding: 10px 11px;
    border: 0.1rem solid rgb(255 255 255 / 30%);
    font-weight: 500;
    border-radius: 0.3rem;
    font-size: 20px;
}

.ready-banner h2 {
    color: white;
    margin-bottom: 1.5rem;
    line-height: 2.5rem;
    margin-top: 2rem;
}
}

@media (max-width: 768px) {
    .hotline-bar {
        display: none;
    }
}

.hotline-phone-ring-circle {
    border-color: #1785c6
}

.hotline-phone-ring-circle-fill,
.hotline-phone-ring-img-circle,
.hotline-bar {
    background: #1785c6;
    background: -webkit-linear-gradient(45deg, #1279bc 0%, #1d95d3 100%);
    background: linear-gradient(45deg, #1279bc 0%, #1d95d3 100%);
}

/* phone css end*/



@-webkit-keyframes walk {
    100% {
        background-position: 0 -2376px;
    }
}

@keyframes walk {
    100% {
        background-position: 0 -2376px;
    }
}

@-webkit-keyframes bk {
    100% {
        background-position: 200% 0;
    }
}

@keyframes bk {
    100% {
        background-position: 200% 0;
    }
}

@media screen and (max-width: 600px) {
    .container {
        width: 100%;
        margin-top: 0;
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotation {
    from {
        -o-transform: rotate(0);
    }

    to {
        -o-transform: rotate(360deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.box {
    align-self: flex-end;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    background-color: #f44336;
    height: 200px;
    margin: 0 auto 0 auto;
    transform-origin: bottom;
    width: 200px;
}

@keyframes bounce-2 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes bounce-3 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0);
    }
}

.contact-banner {
    position: relative;
    background-image: url(../../../../assets/images/thanks.jpg);
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
}

.padding-0 {
    padding: 0 !important;
}

.get-posi {
    left: 94px;
}

.updtd-h2-two {
    font-size: 60px;
    color: #fff;
    text-align: center;
    margin: 0;
}

.get-posi {
    color: #fff;
    position: absolute;
    z-index: 99;
    bottom: 40px;
    left: 126px;
}

.updtd-h1-two {

    font-size: 60px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 15px;
}

.most-out {
    margin: 50px auto;
    background: #d10000;
    width: 100%;
    height: 560px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

.bk {
    background: url(../../../../assets/images/cloud.svg);
    -webkit-animation: bk 20s -5s linear infinite;
    animation: bk 20s -5s linear infinite;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.mid {
    background: url(../../../../assets/images/tree-one.svg);
    /* background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/57786/midground.svg); */
    -webkit-animation: bk 60s -5s linear infinite;
    animation: bk 60s -5s linear infinite;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background-repeat: repeat;
}

.cycle-out {
    position: relative;
    width: 400px;
    margin: auto;
    top: 160px;
}

svg:not(:root) {
    overflow: hidden;
}

.back-tire {
    position: absolute;
    left: 33px;
    bottom: 27px;
}

.tire {
    -webkit-animation: rotation 1000ms infinite linear;
    -moz-animation: rotation 1000ms infinite linear;
    -o-animation: rotation 1000ms infinite linear;
    animation: rotation 1000ms infinite linear;
    transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
}

.rim {
    -webkit-animation: rotation 500ms infinite linear;
    -moz-animation: rotation 500ms infinite linear;
    -o-animation: rotation 500ms infinite linear;
    animation: rotation 500ms infinite linear;
    transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
}

.front-tire {
    position: absolute;
    top: 172px;
    right: 62px;
    bottom: 0;
}

svg:not(:root) {
    overflow: hidden;
}

.get-spc-right {
    background: #fff;
    margin-top: -70px;
    border-radius: 5px 5px 5px 5px;
    margin-top: -103px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 35px;
    padding-bottom: 35px;
    box-shadow: 0px 30px 50px 0px rgb(144 142 142);
    margin-right: -15px;
    position: relative;
    z-index: 9999;
}

.request-address-two {
    font-size: 18px;
    color: #333;
    margin: 0;
    margin-bottom: 15px;
    font-weight: 700;
}

.total-cycle {
    position: relative;
}

.rqst-br {
    padding-bottom: 10px;
    font-size: 14px;
    border-bottom: 1px dashed #9b9b9c;
}

.bounce-2 {
    animation-name: bounce-2;
    animation-timing-function: ease;
}

.box {
    align-self: flex-end;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    background-color: #F44336;
    height: 200px;
    margin: 0 auto 0 auto;
    transform-origin: bottom;
    width: 200px;
}

.about-us {
    float: left;
    width: 100%;
}

.about-us-inner {
    float: left;
    width: 100%;
    display: flex;
    box-shadow: 0px 1px #f7f7f7;
}

.about-us-inner .about-card:first-child {
    background: #2f2f39;
    color: #fff;
    padding: 59px 20px;
    padding-left: 30px;
}

.about-card .btn-custome.btn-lg {
    padding: 15px 20px;
}

.about-card .foot-exp-wrap {
    padding-left: 15px;
    margin: 0px;
}

.about-card .foot-exp-text-button .indus {
    font-size: 15px;
}

.about-card .foot-exp-text-button .exp {
    font-size:1.2rem;
    margin-bottom: 10px;
}

.about-us-inner .about-card {
    width: 25%;
    padding: 59px 40px;
}

h2.about-us-heading {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 6px #000000b0;
    padding-left: 20px;
}

.about-us-inner .about-card:first-child p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

.about-us-inner .about-card:first-child p span {
    border: 1px solid #fff;
    padding: 10px 12px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 23px;
    float: left;
    margin-right: 0;
    margin-right: 7px;
    margin-top: 1px;
}

.cosultation-box {
    background-color: #202122;
    padding: 30px 10px;
    text-align: center;
}

.cosultation-box h3 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 500;
    color: #fff;
    font-family: ' Montserrat', sans-serif;
    margin-bottom: 10px;
}

.cosultation-box p {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
}

.cosultation-box img {
    width: 100px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    width: 150px;
    border-radius: 100%;
    height: 150px;
    object-fit: cover;
}

.cosultation-box a {
    background-color: #fbd642;
    color: #203350;
    font-size: 16px;
    line-height: 25px;
    padding: 12px 40px !important;
    border-radius: 50px;
    display: inline-block;
    margin: 0 auto;
    box-shadow: 0 3px 7px 0 rgba(12, 151, 250, .14);
}

.about-us-inner .about-card {
    width: 25%;
    padding: 59px 30px;
}

.about-us-inner .about-card {
    background: transparent;
}

.about-card-card-top {
    float: left;
    width: 100%;
}

.about-card .about-card-card-top h2 {
    font-size: 26px;
    font-weight: 300;
    color: #3c3950;
    float: left;
    text-transform: uppercase;
}

.about-card .about-card-card-top h2 strong {
    float: left;
    width: 100%;
    font-weight: 600;
}

.about-card .about-card-card-top img {
    float: right;
    width: 85px;
}

.about-card-card-botom {
    float: left;
    width: 100%;
    margin-top: 20px;
}

.about-card-card-botom p {

    font-size: 16px;
    font-weight: 300;
}

@media only screen and (max-width: 640px) .about-us-inner {
    display: initial;
}

}

@media only screen and (max-width: 991px) .about-us-inner {
    display: initial;
}

@media screen and (max-width: 440px) .about-us-inner .about-card:first-child {
    padding: 47px 9px;
    padding-left: 30px;
}

@media only screen and (max-width: 560px) .about-us-inner .about-card:first-child {
    padding: 16px 20px;
}

@media only screen and (max-width: 1199px) .about-us-inner .about-card:first-child {
    padding: 29px 20px;
}

.about-us-inner .about-card:first-child {
    background: #2f2f39;
    color: #fff;
    padding: 59px 20px;
    padding-left: 30px;
}

@media screen and (max-width: 440px) .about-us-inner .about-card {
    padding: 47px 27px;
    max-height: 280px;
    min-height: 179px;
    border-bottom: 1px solid #c5c5c5;
    width: 100%;
}

@media screen and (max-width: 440px) .about-us-inner .about-card {
    padding: 47px 27px;
    max-height: 280px;
    min-height: 280px;
}

@media only screen and (max-width: 560px) .about-us-inner .about-card {
    min-height: 288px;
}

@media only screen and (max-width: 640px) .about-us-inner .about-card {
    width: 50%;
    padding: 19px 20px;
    float: left;
    min-height: 268px;
}

@media only screen and (max-width: 991px) .about-us-inner .about-card {
    width: 50%;
    padding: 19px 20px;
    float: left;
    min-height: 220px;
}

@media only screen and (max-width: 1199px) .about-us-inner .about-card {
    width: 25%;
    padding: 39px 20px;
}



.pulse {
    animation: pulse-animation 2s infinite;
}


@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.9);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.km-works-block ul {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: auto;
    width: 100%;
    justify-content: center;
    max-width: 1040px;
}

.km-works-block ul li i {
    background: #d10000;
    width: 25px;
    border-radius: 100%;
    height: 25px;
    line-height: 25px;
    vertical-align: middle;
    text-align: center;
    color: white;
    margin-right: 10px;
}

.km-works-block .btn-custome:hover {
    transform: scale(1.2);
}

.km-works-block .color-blue {
    font-weight: 500;
}

.km-works-block ul li {
    padding: 18px 10px;
    padding-left: 26px;
    list-style: none;
    position: relative;
    font-family: "Roboto";
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    border-top: 1px solid #dbdbdb;
    line-height: 27px;
}

.trust-seo-rank .title h2 {
    color: #d10000;
}

.trust-seo-rank .btn-custome {
    margin: 0 auto;
}

.trust-seo-rank .btn-custome:hover {
    transform: scale(1.2);
}



.seo-services h4 {
    text-align: Center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.seo-services .col-xl-4 {
    margin-top: 20px;
}

.seo-services .icon-box img {
    width: 40px;
}

.seo-services .icon-box {
    padding-top: 0px;
    text-align: center;
}


.seo-services .hexagon {
    width: 70px;
    height: 70px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    line-height: 70px;
    -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;
    margin: 20px auto 25px;
}

.seo-services .col-md-4 {
    margin-top: 30px;
}

.seo-services .inner-div h4:hover {
    color: #d10000;
}

.seo-services .inner-div:hover {
    -webkit-box-shadow: 0 3px 10px 0 rgba(236, 115, 35, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(236, 115, 35, 0.15);
    box-shadow: 0 3px 10px 0 rgba(236, 115, 35, 0.15);
    border: 0;
    border-bottom: 5px solid #d10000;
}

.seo-services .inner-div {
    padding: 10px 35px;
    position: relative;
    border-bottom: 5px solid #ecedee;
    -webkit-box-shadow: 0 5px 10px 0 rgba(72, 73, 121, 0.15);
    -moz-box-shadow: 0 5px 10px 0 rgba(72, 73, 121, 0.15);
    box-shadow: 0 5px 10px 0 rgba(72, 73, 121, 0.15);
    border: 0;
    border-bottom: 5px solid transparent;
    background: #fff;
    border-radius: 10px !important;
    margin: 10px 20px;
}

.bg-purple {
    background-color: #d10000;
}

.row-margin-top {
    margin-top: 100px;
}

.row-spacing {
    padding-top: 70px;
    padding-bottom: 70px;
}

.container-sm {
    max-width: 1400px;
}

.top-tagline {
    padding-bottom: 40px;
}

.text-center {
    text-align: center !important;
}

.color-white {
    color: #fff;
}

.color-white {
    color: #fff;
}

.industries_trust>div:not(:last-child) {
    border-right: 1px solid #ffffff5c;
}

.industries_trust .industry_trust {
    margin: 20px 22px;
}

.industries_trust .industry_trust span {
    margin-top: 20px !important;
    display: inline-block;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}

.logos-listing {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    padding: 0;
    margin-bottom: 0;
    margin: 0 auto;
}

ul.logos-listing.seo-tool li {
    width: calc(100% / 6);
}

.logos-listing li {
    display: inline-block;
    vertical-align: middle;
    margin: 14px;
    width: calc(100% / 8);
}

ul.logos-listing.seo-tool li img {
    max-width: 200px !important;
}

.logos-listing li img {
    max-width: 100%;
    opacity: .55;
    filter: grayscale(100%);
    -ms-filter: grayscale(100%);
}

.logos-listing li:hover img {
    filter: grayscale(0);
    -ms-filter: grayscale(0);
    opacity: 1;
}

.last-version ul li {
    padding: 18px 0px;
    /* padding-left: 26px; */
    list-style: none;
    position: relative;
    font-family: "Roboto";
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 17px;
    border-top: 1px solid #dbdbdb;
    line-height: 27px
}

.client-logo li img {
    transition: all ease .2s;
}

.client-logo li img:hover {
    transform: translateY(-8px);
}

.service-we-offer-web-inner .web-why-choose-main-icon i {
    font-size: 40px;
    line-height: 100px;
    color: #d10000;
}


.inner-banner {
    position: relative;
}

.new-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
}

.text-center {
    text-align: center !important;
}

.inner-banner img {
    width: 100%;
    object-fit: cover;
}

.caption-new-2 {
    text-align: center;
    position: absolute;
    top: 120px;
    left: 70px;
    padding: 20px;
    color: #fff;
}

.caption-new-2 p {
    font-size: 18px !important;
    margin-bottom: 40px;
    font-weight: 500 !important;
    color: #fff;
}

.inner-banner a {
    border: 1px solid #343535;
    color: #fff;
    margin-top: 20px;
    padding: 11px 34px;
    text-transform: uppercase;
    font-size: 20px;
    transition: var(--animation-time);
    font-weight: 600;
    margin-right: 10px;
    background: #343535;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 1px 5px 9px #8080806b;
    box-shadow: 1px 5px 9px #8080806b;
    border-radius: 6px;
}

.get-a-quote {
    border: 1px solid #d10000 !important;
    color: #fff !important;
    margin-top: 20px !important;
    padding: 11px 34px !important;
    text-transform: uppercase !important;
    font-size: 20px !important;
    transition: var(--animation-time) !important;
    font-weight: 600 !important;
    margin-right: 10px !important;
    background: #d10000 !important;
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
    -webkit-box-shadow: 1px 5px 9px #8080806b !important;
    box-shadow: 1px 5px 9px #8080806b !important;
    border-radius: 6px !important;
}

.get-a-quote:hover {
    border: 2px solid #d10000 !important;
    color: #d10000 !important;
    background: 0 0 !important;
}

.inner-banner a:hover {
    text-decoration: none;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

element.style {}

.inner-services-wraper .btn-wrap {
    font-size: 20px;
    font-weight: 700;
}

.inner-services-wraper .btn-wrap {
    background: #d10000;
    color: #fff;
    display: block;
    padding: 10px;
    font-size: 21px;
    font-weight: 300;
    text-decoration: none;
    margin-bottom: 30px;
    border-radius: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    display: inline-block;
}

.caption-new-2 {
    text-align: center;
    position: absolute;
    top: 120px;
    left: 70px;
    padding: 20px;
    color: #000;
}

.caption-new-2 p {
    font-size: 18px !important;
    margin-bottom: 40px;
    font-weight: 500 !important;
    color: #000;
}

.inner-services-wraper .inner-wraper ul li {
    list-style-type: none;
    font-size: 16px;
    margin: 15px 0 5px;
    color: #000;
    font-weight: 300;
}

.inner-wraper ul li {
    line-height: 1.7em;
}

.inner-services-wraper .inner-wraper ul li i {
    color: #d10000;
    padding-left: 10px;
    padding-right: 10px;
}

.faqmain-holder {
    padding-top: 100px;
    padding-bottom: 10px;
}

.faq-title-holder h3 {
    text-transform: none;
    font-size: 59px;
}

.faq-title-holder span {
    color: #d10000;
}

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

.faqs-tabs-holder .panel {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid #dedede;
    border-radius: 0;
    display: none;
    background: 0 0;
}

.faqs-tabs-holder .panel-heading {
    padding: 15px 0;
}

.panel-title {
    margin-top: 0;
    font-size: 16px;
}

.faq-title-holder h6 {
    font-size: 13px;
    font-weight: 300;
}

.faqs-tabs-holder h4.panel-title a:hover {
    color: #d10000;
}

.faq-title-holder h6:before {
    background: #4571ff;
}

h6:before {
    display: inline-block;
    height: 4px;
    width: 41px;
    background: #e80101;
    content: "";
    margin-right: 19px;
}

.faqs-tabs-holder h4.panel-title a {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    line-height: 30px;
}

.faqs-tabs-holder .panel-body {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    border: none !important;
    padding-left: 0;
}

.panel-title>a.collapsed:before {
    background: url(../../../images/faq-before.png);
    height: 15px;
    width: 15px;
}

.faqs-tabs-holder>a {
    color: #e80101;
    font-size: 18px;
    text-transform: capitalize;
    text-decoration: none;
}

@media (max-width: 440px) {
    .top-tagline .color-white {
        color: #fff;
        font-size: 25px;
        font-weight: 300;
        line-height: 35px;
    }

    .main .port .images .port-btm-part {
        background: #fff;
        padding: 5px 5px;
        position: relative;
        border-bottom: #f3f1f0 solid 1px;
    }

    .main .port .images .port-inside-one {
        width: 35%;
        float: left;
    }

    .main ul li svg {
        width: 30px;
        margin-bottom: 10px;
    }

    .main .servicesTab {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .main .servicesTab {
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 8px;
        padding: 10px 5px;
        margin-bottom: 60px;
        box-shadow: 0 5px 8px 0 rgb(0 0 0 / 27%);

    }

    .main .servicesTab li:nth-child(3) {
        border: none;
    }

    .main .servicesTab li:nth-child(6) {
        border: none;
    }

    .main .servicesTab li {
        text-align: center;
        padding: 0px 4px;
        border-right: 1px solid #dddfe1;
        width: 30%;
        height: 100px;
        font-size: 12px;
        line-height: 12px;
        margin-bottom: 0px;
    }

    .about-us-inner .about-card {
        padding: 47px 27px !important;

        width: 100% !important;
    }

    .mytitle h2 {
        font-family: 'Poppins-Thin';
        font-weight: 100;
        font-size: 35px !important;
        line-height: 1;
        margin-bottom: 15px;
        color: #3e3d4e;
    }

    .mytitle h2 strong {
        font-family: 'Poppins-ExtraBold', sans-serif;
        display: block;
        font-size: 25px !important;
        margin-top: 5px !important;
    }

    .seo_service ul li {
        border: none;
        border-top: none;
        border-left: none;
        display: inline-block;
        list-style: outside none none;
        margin: 0;
        padding: 0 5px 35px;
        vertical-align: top;
        width: 100%;
        float: left;
        height: auto;
    }

    .about-us-inner {
        float: left;
        width: 100%;
        display: block;
        box-shadow: 0px 1px #f7f7f7;
    }

    .about-us-inner h2.about-us-heading {
        color: #fff;
        text-shadow: 1px 6px #000000b0;
        font-size: 35px;
        font-weight: 500;
    }

    .seo_service ul li .pra_text p {
        text-align: left;
    }

    #block-views-our-clients-block h2 {
        font-size: 40px;
        line-height: 1;
        color: #3e3d4e;
        text-align: center;
        font-family: 'Poppins-ExtraLight';
        font-weight: 100;
    }

    .col-xs-6 {
        width: 50%;
        float: left;
    }

    .about-card .about-card-card-top img {
        float: right;
        width: 80px;
    }

    .responsive-device {
        margin: 0px 0;
    }

    .km-works-block ul li i {
        background: #d10000;
        width: 17px;
        border-radius: 100%;
        height: 17px;
        line-height: 17px;
        vertical-align: middle;
        text-align: center;
        color: white;
        margin-right: 10px;
        font-size: 14px;
    }

    .km-works-block ul li {
        padding: 15px 0px;
        padding-left: 0px;
        list-style: none;
        position: relative;
        font-family: "Roboto";
        -webkit-box-flex: 0;
        -ms-flex: 0 0 1000%;
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 16px;
        border-top: 1px solid #dbdbdb;
        line-height: 27px;
    }

    .client-logo li {
        width: 50% !important;
        text-align: center !important;
        border-right: 1px solid #ffffff !important;
        padding: 15px !important;
        float: left;
    }

    .industries_trust>div:not(:last-child) {
        border-right: 1px solid #d10000;
        border-bottom: 1px solid #d10000;
    }

    ul.logos-listing.seo-tool li img {
        max-width: 150px !important;
        padding-left: 25px;
    }

    ul.logos-listing.seo-tool li {
        width: calc(100% / 3);
    }

    contact-form-main .padding-0 {
        padding: 11px !important;
    }

    .get-posi {
        color: #fff;
        position: absolute;
        z-index: 99;
        bottom: 270px;
        left: 46px;
    }

    .our-core-value-icon {
        width: 90px;
        height: 90px;
        line-height: 90px;
        text-align: center;
        border: 1px solid #dddfe1;
        margin-bottom: 20px;
        -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;
        margin: 0 auto;
    }

    .our-core-value-box h3,
    .our-core-value-box h5 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .overlay .popup-img {
        padding: 70px 10px !important;
    }


    .overlay .closebtn {
        position: absolute !important;
        top: 62px !important;
        right: 35px !important;
        font-size: 45px !important;
    }

    .inner-banner {
        position: relative;
        margin-top: 70px;
    }

    .inner-banner figure {
        display: none;
    }

    .caption-new-2 {
        top: 15px;
        left: 0;
    }

    .inner-banner h1 {
        font-size: 21px;
    }
}


.ready-banner p {
    color: #fff;
    font-size: 20px;
    margin-top: 3rem;
    font-weight: 300;
}

.readytogrow-cover {
    position: absolute;
    bottom: 0;
}

.seo-img {
    z-index: 1;
    position: relative;
}

#proposal_form {
    position: relative;
}

.ready-banner .enteryourwebsite-input {
    width: 50%;
    transition: all 0.3s;
}

#proposal5.error {
    left: 0;
}

.btn-proposal:hover {
    background: skyblue;
    ;
    color: #fff;
}

.btn-proposal {
    background: #d10000 url(web/assets/images/white-next-arrow.svg) no-repeat;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #fff;
    padding: 12px 50px;
    border: none !important;
    font-weight: 500;
    font-size: 20px;
    margin-left: 1.2rem;
    border-radius: 0.3rem;
    display: inline-block;
    background-position: 89% center;
    transition: all .3s;
    cursor: pointer;
}

.error {
    color: #f44336;
    font-size: 11px;
    font-weight: 500;
    position: absolute;
    bottom: -17px;
}

.ready-banner .enteryourwebsite-input {
    color: rgb(255 255 255);
    background-color: #25282c;
    width: 50%;
    padding: 10px 11px;
    border: 0.1rem solid rgb(255 255 255 / 30%);
    font-weight: 500;
    border-radius: 0.3rem;
    font-size: 20px;
}

.ready-banner h2 {
    color: white;
    margin-bottom: 1.5rem;
    line-height: 2.5rem;
    margin-top: 2rem;
}
}

.ready-left {
    padding-bottom: 13rem;
}

.ready-banner {
    background: #25282c;
    padding-bottom: 0 !important;
}

@-webkit-keyframes snowflakes-fall {
    0% {
        top: -10%;
    }

    100% {
        top: 100%;
    }
}

@-webkit-keyframes snowflakes-shake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes snowflakes-fall {
    0% {
        top: -10%;
    }

    100% {
        top: 100%;
    }
}

@keyframes snowflakes-shake {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(80px);
    }

    100% {
        transform: translateX(0);
    }
}

.snowflake {
    position: fixed;
    top: -10%;
    z-index: 9999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    -webkit-animation-name: snowflakes-fall, snowflakes-shake;
    -webkit-animation-duration: 10s, 3s;
    -webkit-animation-timing-function: linear, ease-in-out;
    -webkit-animation-iteration-count: infinite, infinite;
    -webkit-animation-play-state: running, running;
    animation-name: snowflakes-fall, snowflakes-shake;
    animation-duration: 10s, 3s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
    animation-play-state: running, running;
}

.snowflake:nth-of-type(0) {
    left: 1%;
    -webkit-animation-delay: 0s, 0s;
    animation-delay: 0s, 0s;
}

.snowflake:nth-of-type(1) {
    left: 10%;
    -webkit-animation-delay: 1s, 1s;
    animation-delay: 1s, 1s;
}

.snowflake:nth-of-type(2) {
    left: 20%;
    -webkit-animation-delay: 6s, 0.5s;
    animation-delay: 6s, 0.5s;
}

.snowflake:nth-of-type(3) {
    left: 30%;
    -webkit-animation-delay: 4s, 2s;
    animation-delay: 4s, 2s;
}

.snowflake:nth-of-type(4) {
    left: 40%;
    -webkit-animation-delay: 2s, 2s;
    animation-delay: 2s, 2s;
}

.snowflake:nth-of-type(5) {
    left: 50%;
    -webkit-animation-delay: 8s, 3s;
    animation-delay: 8s, 3s;
}

.snowflake:nth-of-type(6) {
    left: 60%;
    -webkit-animation-delay: 6s, 2s;
    animation-delay: 6s, 2s;
}

.snowflake:nth-of-type(7) {
    left: 70%;
    -webkit-animation-delay: 2.5s, 1s;
    animation-delay: 2.5s, 1s;
}

.snowflake:nth-of-type(8) {
    left: 80%;
    -webkit-animation-delay: 1s, 0s;
    animation-delay: 1s, 0s;
}

.snowflake:nth-of-type(9) {
    left: 90%;
    -webkit-animation-delay: 3s, 1.5s;
    animation-delay: 3s, 1.5s;
}

.snowflake {
    text-shadow: 0 0 5px #d10000 !important;
    color: #fff;
}


.snowflake {
    text-shadow: 0 0 5px #d10000 !important;
    color: #fff;
}

.snowflake {
    position: fixed;
    top: -10%;
    z-index: 99;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    -webkit-animation-name: snowflakes-fall, snowflakes-shake;
    -webkit-animation-duration: 10s, 3s;
    -webkit-animation-timing-function: linear, ease-in-out;
    -webkit-animation-iteration-count: infinite, infinite;
    -webkit-animation-play-state: running, running;
    animation-name: snowflakes-fall, snowflakes-shake;
    animation-duration: 10s, 3s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
    animation-play-state: running, running;
}

@keyframes slide {
    0% {
        transform: translate3d(0, 0, 0)
    }

    100% {
        transform: translate3d(1920px, 0, 0)
    }
}

.slide-chirstmas-img {
    animation: slide 30s linear infinite;
    float: left;
    margin-top: 0;
    float: left;
    position: fixed;
    overflow: hidden;
    left: 0;
    bottom: 0;
    z-index: 999;
    border: 0;
    outline: 0;
    border: none;
}

.slide-chirstmas-img img {
    width: 160px;
    border: 0;
    outline: 0;
    border: none;
    -moz-outline-style: none;
}

.slide-bell-img {
    margin-top: 0;
    float: left;
    position: fixed;
    overflow: hidden;
    right: 20px;
    top: 50px;
    z-index: 99;
    outline: 0;
    border: none;
    -moz-outline-style: none;
}

.btm-header {
    background-size: cover;
    position: relative;
    height: 100vh;
    overflow: hidden;
    float: left;
    width: 100%;
    margin-top: 50px;
}

.background-image {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100vh;
    background-size: 56% 100%;
    z-index: 99;
    background-repeat: no-repeat;
}

.btm-header-l {
    height: 100vh;
    width: 50%;
    float: left;
    background: 0 0;
    z-index: 99;
    padding-left: 9.375%;
    position: absolute;
}

.btm-header-l img.front-bg {
    width: 135%;
    position: initial;
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
}

.leftskew2 {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: -150px;
    transform: skew(15deg, 0deg);
}

.banner-content {
    position: absolute;
    top: 50%;
    padding: 40px 0 0;
    transform: translate(0, -50%);
    padding: 0;
    left: 200px;
}

.btm-header-l h1 {
    font-size: 53px;
    color: #fff;
    font-weight: 100;
    z-index: 999;
    text-transform: uppercase;
    font-family: 'Poppins-Thin';

}

.btm-header-l h1 span {
    font-size: 50px;
    color: #fff;
    font-weight: 500;
    font-family: 'Poppins-Bold';
}

.slide-content {
    float: left;
    width: 100%;
    position: relative;
    height: 75px;
}

.btm-header-l p {
    color: #d80000;
    z-index: 999;
    font-size: 25px;
    font-family: 'poppins';
    background: #ffffff;
    padding: 4px;
    border-left: 4px solid #333;
}

.item-1 {
    animation-name: anim-1;
}

.item-2 {
    animation-name: anim-2;
}

.item-3 {
    animation-name: anim-3;
}

.item-4 {
    animation-name: anim-4;
}

.item-1,
.item-2,
.item-3,
.item-4 {
    position: absolute;
    display: block;
    top: 10px;
    animation-duration: 20s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    width: 100%;
}

.banner-content h4 {
       font-size: 17px;
    text-transform: capitalize;
    color: #fff;
    font-weight: normal;
    line-height: 30px;
}

.btm-header-l button {
    background: #fff !important;
    padding: 15px 30px;
    color: #000;
    border-radius: 50px;
    border: 0;
    font-size: 16px;
    font-weight: 600;
    margin-right: 15px;
    margin-bottom: 15px;
}

.slide-content {
    float: left;
    width: 100%;
    position: relative;
    height: 90px;
}

@keyframes anim-1 {

    0%,
    4.3% {
        left: -100%;
        opacity: 0;
    }

    15%,
    4.3% {
        left: 0;
        opacity: 1;
    }

    100%,
    20.33% {
        left: 110%;
        opacity: 0;
    }
}

@keyframes anim-2 {

    0%,
    20.33% {
        left: -100%;
        opacity: 0;
    }

    25.63%,
    38.29% {
        left: 0;
        opacity: 1;
    }

    100%,
    46.66% {
        left: 110%;
        opacity: 0;
    }
}

@keyframes anim-3 {

    0%,
    46.66% {
        left: -100%;
        opacity: 0;
    }

    50.96%,
    65.62% {
        left: 0;
        opacity: 1;
    }

    100%,
    73.62% {
        left: 110%;
        opacity: 0;
    }
}

@keyframes anim-4 {

    0%,
    73.66% {
        left: -100%;
        opacity: 0;
    }

    84.96%,
    91.62% {
        left: 0;
        opacity: 1;
    }

    100% {
        left: 110%;
        opacity: 0;
    }
}

@keyframes backgroundScroll {
    from {
        background-position: center 0;
    }

    to {
        background-position: center -1000px;
    }
}

@-webkit-keyframes backgroundScroll {
    from {
        background-position: center 0;
    }

    to {
        background-position: center -1000px;
    }
}

.box .btm-header-r {
    height: 100vh;
    width: 65%;
    float: right;
}

.btm-header-r {
    height: 100vh;
    background: #f7f7f7;
    padding-top: 40px;
    overflow: hidden;
    padding: 60px 0 120px;
    background: url(https://sp-ao.shortpixel.ai/client/q_lossy,ret_img/https://enacteservices.com/wp-content/themes/twentytwenty/images/all-mobile-app1.jpg) center top #111;
    background-size: auto;
    -webkit-animation: backgroundScroll 60s linear infinite;
    animation: backgroundScroll 60s linear infinite;
    animation-direction: normal;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    background-size: contain;
}


@media only screen and (max-width:1440px) {
    .btm-header-l img {
        float: right;
        position: relative;
        right: -96px;
        top: -4px;
    }

    .btm-header-l {
        padding-left: 7.375%;
    }

    .banner-content {
        left: 100px !important;
    }

    .btm-header-l button {
        padding: 12px 20px;
        font-size: 14px;
        margin-right: 2px;
    }
}




@media only screen and (max-width:767px) {
    .btm-header-l h1 {
        font-size: 45px;
        color: #fff;
        font-weight: 100;
        z-index: 999;
        text-transform: uppercase;
        font-family: 'Poppins-Thin';
    }

    .btm-header-l h1 span {
        font-size: 46px;
        color: #fff;
        font-weight: 500;
        font-family: 'Poppins-Bold';
    }

    .slide-content .arrow-slide {
        margin-bottom: 20px
    }

    .slide-bell-img img {
        width: 111px;
    }

    .slide-bell-img {
        margin-top: 0;
        float: left;
        position: fixed;
        overflow: hidden;
        right: 0px;
        top: 0px;
        z-index: 99;
        outline: 0;
        border: none;
        -moz-outline-style: none;
    }

    .btm-header {
        background-size: cover;
        position: relative;
        height: 65vh;
        overflow: hidden;
        float: left;
        width: 100%;
        margin-top: 70px;
    }

    .banner-content {
        left: 20px !important;
    }

    .banner-content h4 {
        text-transform: uppercase;
        color: #fff;
        font-size: 16px;
    }

    .banner-content {
        position: absolute;
        top: 35%;
    }

    .btm-header-r {
        height: 65vh;
        background: #f7f7f7;
        padding-top: 40px;
        overflow: initial;
        padding: 60px 0 120px;
        background: linear-gradient(rgb(64 63 63 / 60%), rgb(0 0 0 / 50%)), url(https://sp-ao.shortpixel.ai/client/q_lossy,ret_img/https://enacteservices.com/wp-content/themes/twentytwenty/images/all-mobile-app1.jpg);
        background-size: auto;
        -webkit-animation: backgroundScroll 60s linear infinite;
        animation: backgroundScroll 60s linear infinite;
        animation-direction: normal;
        animation-direction: alternate;
        -webkit-animation-direction: alternate;
        background-size: contain;
    }

    .btm-header-l img.front-bg {
        width: 135%;
        position: initial;
        position: absolute;
        left: 0px;
        top: 0px;
        height: 65vh;
    }

    .btm-header-l {
        height: 100vh;
        width: 50%;
        float: left;
        background: 0 0;
        position: relative;
        z-index: 99;
        padding-left: 9.375%;
    }

    .ready-banner {
        display: none;
    }
}


/*-------------------------------website package css------------------------*/

.banner {
    background: #0a0126;
    padding: 0px 0 120px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner .desc h3 {
    margin: 0;
    color: #fff;
    font-size: 31px;
    font-weight: 600;
    background: #e80101;
    text-transform: uppercase;
    padding: 3px 25px;
    display: inline-block;
    letter-spacing: 2px;
}

.banner .desc {
    padding-top: 70px;
}

.banner .desc h1 {
    color: #fff;
    font-weight: 700;
    font-size: 64px;
    line-height: 70px;
}

.banner .desc h1 span {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
}

.banner .desc p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 26px;
    max-width: 60%;
    margin: 10px 0 50px;
    display: block;
}

.banner .desc a.yl {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background: #e80101;
    border: 1px solid #e80101;
    padding: 9px 15px;
    display: inline-block;
    text-transform: uppercase;
    width: 170px;
    text-align: center;
    margin-right: 10px;
    transition: all ease-out .6s;
}

.banner .desc a.wt {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background: #000;
    border: 1px solid #fff;
    padding: 9px 15px;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    width: 170px;
    transition: all ease-out .6s;
    margin-top: 10px;
}

.banner .desc a.wt:hover {
    background: #e80101;
    border: 1px solid #e80101;
    transition: all ease-out .6s;
    color: #fff;
}

.banner .desc img.rev {
    margin-top: 70px;
}

.side-form {
    background: #fff;
    padding: 30px;
    position: relative;
    z-index: 99999 !important;
    border-radius: 5px;
    margin: 0;
    width: 370px;
    display: inline-block;
    box-shadow: 0 0 30px #0000001f;
    right: -420px;
    position: fixed;
    top: 18%;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.side-form .clickfunc {
    position: absolute;
    background: #e80101;
    width: 50px;
    height: 220px;
    cursor: pointer;
    left: -50px;
    top: 110px;
}

side-form .clickfunc a.closeform {
    position: absolute;
    display: block;
    transform: rotate(-90deg);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    left: -50px;
    white-space: pre;
    top: 100px;
    color: #fff;
    z-index: 9999;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

section.banner h3 {
    font-size: 25px;
    letter-spacing: 1px;
    margin: 0 0 15px;
    line-height: 41px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif !important;
}

.side-form h3 {
    color: #141315;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.side-form input,
.side-form textarea {
    color: #b7b7b7;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #b6b6b6;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

section.banner h3 strong {
    display: block;
}

section.banner h3 i {
    font-style: normal;
}

section.banner h3 span {
    display: block;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.banner-form select,
.banner-form input {
    width: 100%;
    padding: 7px 17px;
    margin-bottom: 10px;
    outline: none;
    background: #f4f4f4;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    height: 43px;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid #ebe5e5;
    color: #a79e9e;
}

.banner-form textarea {
    min-height: 80px;
    width: 100%;
    padding: 10px 17px;
    margin-bottom: 10px;
    outline: none;
    font-size: 13px;
    line-height: normal;
    color: #000;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid #ebe5e5;
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
}

.banner-form input[type="button"] {
    border: none;
    box-shadow: none;
    padding: 10px 40px;
    border-radius: 5px;
    text-transform: capitalize;
    font-weight: 700;
    outline: none;
    letter-spacing: 1px;
    font-size: 14px;
    width: auto;
    margin: 0 auto !important;
    display: block !important;
    color: #fff;
    font-weight: 500;
    background: #e80101 !important;
    border-radius: 100px;
    float: left;
    cursor: pointer;
}

.banner-form {
    position: relative;
    width: 92%;
    float: left;
}

.banner-form:before {
    position: absolute;
    top: 30px;
    left: 40px;
    width: 96%;
    height: 467px;
    background: #e80101;
    border-radius: 15px;
    z-index: 0;
    content: "";
}

.border-left {
    border-left: 1px solid #dee2e6 !important;
}

.border-right {
    border-right: 1px solid #dee2e6 !important;
}

.banner-form form {
    width: 92%;
    background: #fff;
    color: #000;
    position: relative;
    box-shadow: #0000003b 0 11px 92px;
    float: right;
    border-radius: 15px;
    z-index: 4;
    margin-top: 43px;
    text-align: left;
    padding: 20px;
}

.banner-form form:before {
    content: "LIMITED TIME OFFER";
    background: #e80101;
    padding: 5px 20px;
    font-size: 12px;
    color: #fff;
    transform: rotate(-90deg);
    position: absolute;
    left: -110px;
    top: 110px;
    letter-spacing: 2px;
}

section.packages {
    position: relative;
}

.packages {
    padding: 60px 0;
}

section.packages .ob-1 {
    bottom: 60px;
    left: 0;
}

section.packages .vect {
    position: absolute;
}

section.packages .ob-2 {
    top: 70px;
    left: 0;
}

section.packages .ob-3 {
    right: 5%;
    bottom: 30px;
}

section.packages .ob-4 {
    top: 60px;
    right: 0;
}

section.packages .ob-5 {
    left: 10%;
    top: 40%;
}

section.packages #pckge-1 {
    display: flex;
}

section.packages .tab-content {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
}

section.packages .col-md-4 {
    margin: 20px 4px;
    float: none;
    display: inline-block;
    width: 32%;
    padding: 0;
    background: #e9e9e9;
    border-radius: 15px;
    max-width: 32%;
    flex: 0 0 32%;
    overflow: hidden;
}

.titlebox {
    color: #fff;
    background: #252222;
    padding: 30px 20px 50px;
    border-radius: 14px;
    position: relative;
    top: -10px;
    background: #e80101;
}

.titlebox h4 {
    display: inline-block;
    width: 51%;
    float: left;
    margin: 0 11px 0 0;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

section.packages .titlebox h4+p {
    width: auto;
    text-align: left;
    margin: inherit;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
}

section.packages [class^="col-md-4"]>div.pkgbox {
    padding: 20px 20px 0;
    border-radius: 14px;
    box-sizing: border-box;
    text-align: left;
    width: 96%;
    background: #fff;
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    transition: all .2s ease-in;
    float: right;
    position: relative;
    margin-top: -40px;
    margin-bottom: 10px;
    padding-bottom: 20px;
}

section.packages [class^="col-md-4"]>div.pkgbox .pricebox {
    position: relative;
    text-align: left;
    margin-bottom: 10px;
}

section.packages [class^="col-md-4"]>div.pkgbox .pricebox sup {
    font-size: 40px;
    font-weight: 600;
    position: relative;
    color: #e80101;
    top: -1px;
}

section.packages [class^="col-md-4"]>div.pkgbox .pricebox h3 {
    display: inline-block;
    font-size: 41px;
    margin: 0;
    font-weight: 700;
    color: #e80101;
    padding-right: 10px;
}

.package-off {
    background-color: #000;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0px;
    padding: 5px 10px 5px 30px;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    display: inline-flex;
    flex-direction: column;
    /* width: 150px; */
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.package-off strike {
    position: initial;
    right: initial;
    color: #fff;
}

section.packages [class^="col-md-4"]>div.pkgbox ul {
    margin-bottom: 11px;
    margin-top: 5px;
    padding: 0;
}

.scrollbar {
    margin-left: 0;
    float: left;
    height: 250px;
    width: 100%;
    overflow-y: scroll;
    margin-bottom: 15px;
}

section.packages [class^="col-md-4"]>div.pkgbox ul li {
    font-size: 13px;
    color: #000;
    font-weight: 500;
    padding-left: 23px;
    position: relative;
    margin-bottom: 9px;
    line-height: 17px;
    list-style: none;
    display: block;
}

section.packages [class^="col-md-4"]>div.pkgbox ul li:before {
    content: "⚉";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 7px;
    top: 5px;
    position: absolute;
    left: 0;
    content: \f00c;
    color: #e80101;
    font-size: 15px;
    top: 1px;
}

.red-text {
    color: #e80101;
}

.packages .up-desc {
    margin-bottom: 60px;
}

.packages .up-desc h3 {
    margin: 0 0 15px;
    color: #e80101;
    font-weight: 700;
    font-size: 36px;
}

.packages .up-desc p {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    width: auto;
    text-align: left;
}

.packages .up-btn {
    margin-top: 60px;
}

section.packages a.chat {
    display: inline-block;
    vertical-align: middle;
}

.packages .up-btn a {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    margin-right: 20px;
    vertical-align: middle;
}

.packages .up-btn a img {
    vertical-align: middle;
    padding-left: 5px;
    left: 0;
    position: relative;
    transition: all ease.5s;
}

.packages .up-btn a {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    margin-right: 20px;
    vertical-align: middle;
}

a.vm-btn {
    display: inline-block;
    text-align: center;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin-left: -20px;
    width: 100%;
    position: relative;
    padding-top: 30px;
    cursor: context-menu;
}

a.vm-btn:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 1px;
    background: #ddd;
}

section.packages a.grad-btn {
    display: inline-block;
    margin: 10px 0 0;
    border-radius: 100px;
    border: 1px solid #e80101;
    margin-right: 0;
    display: inline-block;
    color: #fff;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 9px 33px;
    font-size: 15px;
    background: #fa6d34;
    background: -moz-linear-gradient(left, #fa6d34 0%, #f95e48 100%);
    background: -webkit-linear-gradient(left, #fa6d34 0%, #f95e48 100%);
    background: linear-gradient(to right, #e80101 0%, #e80101 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fa6d34', endColorstr='#f95e48', GradientType=1);
}

section.packages a.chat {
    display: inline-block;
    vertical-align: middle;
}

section.packages a.chat span {
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 17px;
    padding-left: 20px;
}

section.packages a.chat span small {
    display: block;
    font-size: 10px;
    color: #8a8a8a;
    font-weight: 600;
}

.sec-testi {
    position: relative;
    background: #fff8f8;
    padding: 60px 0 0;
}

.sec-testi .ob-1 {
    top: 50px;
}

.sec-testi .vect {
    position: absolute;
}

.sec-testi .ob-1 img {
    width: 100%;
    height: 900px;
}

.sec-testi .ob-2 {
    bottom: 300px;
    right: 0;
}

.sec-testi .ob-3 {
    right: 0;
    top: 90px;
}

.sec-testi .ob-4 {
    top: -20px;
    right: 290px;
    transform: scale(.7);
}

.sec-testi .ob-5 {
    bottom: -130px;
}

.sec-testi .ob-5 img {
    width: 60%;
}

.sec-testi .up-desc {
    padding-left: 50px;
    margin-bottom: 80px;
}

.sec-testi .up-desc h4 {
    margin: 0;
    color: #000;
    font-size: 26px;
    font-weight: 500;
}

.sec-testi .up-desc h3 {
    margin: 0 0 15px;
    color: #e80101;
    font-weight: 700;
    font-size: 36px;
}

.sec-testi .up-desc p {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 25px;
}

.sec-testi .up-desc p strong {
    display: block;
    font-weight: 700;
    color: #e80101;
    font-size: 24px;
}

.sec-testi .up-desc a {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    margin-right: 20px;
    vertical-align: middle;
}

.sec-testi .up-desc a img {
    vertical-align: middle;
    padding-left: 5px;
    transition: all ease.5s;
    left: 0;
    position: relative;
}

.services {
    padding: 80px 0;
    background: #fff7f8
}

.services .up-desc {
    margin-bottom: 60px
}

.services .up-desc h2 {
    margin: 0 0 15px;
    color: #e80101;
    font-weight: 700;
    font-size: 32px
}

.services .up-desc p {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    max-width: 60%
}

.services .up-desc p strong {
    color: #e80101
}

.services .tab-content {
    display: none
}

.services #servtab-1 {
    display: block
}

.services ul.serv-menu {
    padding: 0;
    margin: 0 0 50px;
    text-align: center
}

.services ul.serv-menu li {
    list-style: none;
    display: inline-block;
    margin: 0 3px 15px
}

.services ul.serv-menu li:hover a,
.services ul.serv-menu li.current a {
    background: #e80101;
    color: #fff;
    border-color: #e80101;
    transition: all ease .5s
}

.services ul.serv-menu li a {
    color: #e80101;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid #e80101;
    background: #fff7f8;
    padding: 8px;
    width: auto;
    display: block;
    transition: all ease .5s;
    min-width: 200px
}

.services .lf .inr {
    margin-bottom: 35px
}

.services .lf .inr h4 {
    margin: 10px 0;
    color: #e80101;
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600
}

.services .lf .inr p {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px
}

.services .lf .inr ul {
    padding: 0;
    margin: 0
}

.services .lf .inr ul li {
    position: relative;
    list-style: none;
    margin: 6px 0
}

.services .lf .inr ul li::before {
    content: "\2022";
    color: #e20b0b;
    font-weight: 900;
    width: 1em;
    margin-left: -1em;
    position: absolute
}

.services .lf .inr ul li p {
    margin: 0
}

.services .lf a.chat {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background: #e80101;
    border: 1px solid #e80101;
    text-transform: uppercase;
    padding: 10px;
    display: inline-block;
    width: 220px;
    text-align: center
}

.services .rt {
    text-align: right;
    margin-top: 50px
}

.services .rt img {
    width: auto;
    max-width: 100%
}

.packages .up-desc p strong {
    color: #e80101;
}

@media screen and (min-width: 100px) and (max-width: 500px) {
    .faq-title-holder h3 {
        font-size: 27px;
    }

    .services .lf .inr ul {
        text-align: left;
        padding-left: 20px;
    }

    .services .lf .inr p {
        font-size: 14px;
        line-height: 22px;
    }

    .services .up-desc p {
        color: #000;
        font-size: 18px;
        font-weight: 500;
        line-height: 26px;
        max-width: 100%
    }

    .up-desc {
        margin-bottom: 0 !important;
        text-align: center;
    }

    .services .up-desc h2 {
        margin: 0 0 5px;
        font-size: 18px;
    }

    .services {
        overflow: hidden;
        text-align: center;
        padding: 50px 0;
        padding-left: 10px;
        padding-right: 10px;
    }

    .services ul.serv-menu li {
        margin: 0 0 8px 0;
    }

    .services ul.serv-menu li a {
        font-size: 11px;
        min-width: auto;
    }

    .sec-testi .up-desc a {
        font-size: 18px;
        display: block;
        margin: 0;
    }

    .up-desc p {
        font-size: 15px !important;
        line-height: 22px !important;
    }

    .sec-testi .up-desc {
        padding-left: 0px;
        margin-bottom: 80px;
    }

    .sec-testi .vect {
        display: none;
    }

    .sec-testi {
        padding: 40px 0;
    }

    section.packages .col-md-4 {
        margin: 20px 4px;
        float: none;
        display: inline-block;
        width: 32%;
        padding: 0;
        background: #e9e9e9;
        border-radius: 15px;
        max-width: 95%;
        flex: 0 0 95%;
        overflow: hidden;
    }

    section.packages a.chat,
    section.packages a.chat {
        font-size: 18px;
        display: block;
        margin: 0;
    }

    .up-btn {
        margin-top: 0 !important;
        margin-bottom: 40px !important;
        text-align: center;
    }

    .packages .up-desc p {
        text-align: center;
        font-size: 15px !important;
        line-height: 22px !important;
    }

    .up-desc h3 {
        margin: 0 0 10px !important;
        font-size: 26px !important;
    }

    .up-desc {
        margin-bottom: 0 !important;
        text-align: center;
    }

    section.packages {
        text-align: center;
    }

    section.packages .vect {
        display: none;
    }

    .banner {
        margin-top: 0px;
        position: relative;
        z-index: 9;
        min-height: 800px;
        overflow: hidden;
    }

    .banner-form form:before {
        display: none;
    }

    section.banner h3 {
        font-size: 16px;
        line-height: 28px;
    }

    section.banner h3 span {
        font-size: 30px;
    }

    section.banner h3 {
        font-size: 16px;
        line-height: 28px;
    }

    .banner-form form {
        width: 100%;
    }

    .banner-form:before {
        height: 440px;
        width: 100%;
        left: 10px;
    }

    .banner-form {
        width: 100%;
        margin-top: 30px;
    }

    .banner .desc h3 {
        font-size: 18px;
        padding: 0px 6px;
        line-height: 30px;
    }

    .banner .desc h1 {
        margin: 10px 0 0;
        font-size: 32px;
        line-height: 30px;
    }

    .banner .desc h1 span {
        font-size: 20px;
        line-height: 32px;
    }

    .banner .desc p {
        font-size: 14px;
        line-height: 20px;
        max-width: 100%;
        margin: 10px 0 30px;
    }

    .desc a.yl {
        font-size: 12px;
        width: auto;
    }

    .banner .desc a.wt {
        font-size: 12px;
        width: auto;
    }

    .banner {
        padding: 90px 0 0px;
    }

    .banner .desc {
        padding-top: 30px;
    }

    section.packages a.grad-btn {
        padding: 6px 22px;
        font-size: 12px;
        margin-top: 0;
    }

    section.packages .col-md-4 a.chat {
        display: inline-block !important;
        vertical-align: middle;
    }
}


/*-----------------------------------------------------------------------------*/
/*--------------/////////-home portfolio sectiom-\\\\\\\\\\-----------------------------*/
/*-------------------------------------------------------------------------------*/
.body-color {
    transition: .3s ease;
}

.panel {
    display: flex;
    justify-content: space-around;
    align-items: center;

}

.black-part {
    transition: .3s ease;
}

.white-part {
    transition: .3s ease;
}

.web-part {
    width: 100%;
}

.grow-banner {
    position: relative;
}

.padding-130 {
    padding: 9rem 0;
}

.web-part:before {
    width: 56rem;
    height: 56rem;
    background: rgb(0 0 0 / 9%) !important;
    right: 28rem;
    z-index: 0;
    left: inherit;
    top: 21rem;
}

.position-relative {
    position: relative !important;
}

.grow-banner:before {
    width: 40rem;
    height: 40rem;
    background: var(--light-pink-brown);
    border-radius: 100%;
    position: absolute;
    content: "";
    left: -32rem;
    bottom: 0;
    top: 30rem;
    animation: circle 10s linear 0s infinite alternate;
    -webkit-animation: circle 10s linear 0s infinite alternate;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.web-part .color-titles {
    font-size: 3.8rem;
    width: 100%;
    margin-bottom: 5rem;
    display: inline-block;
}

.portfolioproject-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.portfolioproject-name h2 {
    font-size: 6.4rem;
    color: #fff;
    font-weight: 500;
    flex: none;
}

.portfolioproject-name p {
    margin-left: 5rem !important;
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    line-height: 26px;
    max-width: 500px;
    margin: 0;
}

.seeportfolio-btn {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    transition: all .3s;
    background-position: 97% center !important;
    background-repeat: no-repeat !important;
    background: url(https://dyrnr2qlz9456.cloudfront.net/video/arrow-hoverSVG.svg);
    padding-right: 3rem;
}

.web-part .web-screen {
    overflow: hidden;
    width: calc(95% - 0rem);
    background: rgb(255 255 255 / 0%);
    padding: 1.6rem;
    -webkit-box-shadow: inset 0.1rem 0.1rem 0.8rem 0.1rem rgb(0 0 0 / 29%), 0 0.6rem 1.5rem -0.1rem rgb(0 0 0 / 32%);
    -moz-box-shadow: inset .1rem .1rem .8rem .1rem rgb(0 0 0 / 29%), 0 .6rem 1.5rem -.1rem rgb(0 0 0 / 32%);
    box-shadow: inset 0.1rem 0.1rem 0.8rem 0.1rem rgb(0 0 0 / 29%), 0 0.6rem 1.5rem -0.1rem rgb(0 0 0 / 32%);
    border-radius: 2.2rem;
    z-index: 9999;
    min-height: 400px !important;
}

.webscreen-imgslideup {
    padding: 0 !important;
}

.webscreen-imgslideup .frameupdown-slide {
    margin: 1.6rem;
    overflow: hidden;
    max-height:350px;
}

.web-screen img {
    max-width: 100%;
    position: relative;
    transition: top 30s cubic-bezier(0, 0, .93, .76);
    cursor: pointer;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.web-part .mobile-screen {
    width: calc(103% - 0rem);
    background: rgb(255 255 255 / 0%);
    padding: 1.6rem;
    -webkit-box-shadow: inset 0.1rem 0.1rem 0.8rem 0.1rem rgb(0 0 0 / 29%), 0 0.6rem 1.5rem -0.1rem rgb(0 0 0 / 32%);
    -moz-box-shadow: inset .1rem .1rem .8rem .1rem rgb(0 0 0 / 29%), 0 .6rem 1.5rem -.1rem rgb(0 0 0 / 32%);
    box-shadow: inset 0.1rem 0.1rem 0.8rem 0.1rem rgb(0 0 0 / 29%), 0 0.6rem 1.5rem -0.1rem rgb(0 0 0 / 32%);
    border-radius: 2.2rem;
    z-index: 2;
}

.color-yellow {
    background-color: #f8ce04;
}

.color-violet {
    background-color: #005a77;
}

.color-indigo {
    background-color: #ec1c24;
}

.color-blue {
    background-color: #06324f;
}

.color-purple {
    background-color: #6b59a6;
}

.push-canvas.pushed-left,
.push-canvas.pushed-left .push-nav.fixed {
    left: -100%;
    transition: all 0.5s ease-out;
}

.push-canvas.pushed-right,
.push-canvas.pushed-right .push-nav.fixed {
    left: 100%;
}

.mobile-show .navbar-push.navbar-push-left {
    right: -100%;
}

.mobile-show .navbar-push.navbar-push-right {
    left: -100%;
}

.mobile-show .navbar-push.navbar-push-right.in {
    left: 0;
}

.mobile-show .navbar-push.navbar-push-left.in {
    right: 0;
}

.mobile-show .navbar-push {
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    height: 100%;
    position: fixed;
    width: 100%;
    top: 0;
}

.web-part:before {
    width: 46rem;
    height: 46rem;
    background: rgb(0 0 0 / 9%) !important;
    right: 18rem;
    z-index: 0;
    left: inherit;
    top: 21rem;
}

.body-color {
    transition: background-color 2s ease;
}

@keyframes circle {
    0% {
        transform: translateX(-100px);
        rotate: 0deg;
        -webkit-transform: translateX(-100px);
        -moz-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        -o-transform: translateX(-100px);
    }

    100% {
        transform: translateY(-100px);
        rotate: 180deg;
        -webkit-transform: translateY(-100px);
        -moz-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
    }
}

@media only screen and (max-width: 1440px) {
    .portfolioproject-name h2 {
        font-size: 48px;
    }

}


@media only screen and (max-width: 990px) {
    .portfolioproject-name p {
        margin-left: 0rem !important;
        margin-top: 2rem;
        margin-bottom: 1rem;
        max-width: 100% !important;
    }

    .portfolioproject-name {
        display: block;
    }

    .portfolioproject-name {
        text-align: center;
    }

    .projectabout {
        display: block;
    }
}

@media only screen and (max-width: 767px) and (min-width: 320px) {
    .portfolioproject-name h2 {
        font-size: 2.5rem;
    }

    .portfolioproject-name p {
        margin: 1rem 0 0rem 0 !important;
        font-size: 15px;
        line-height: 21px;
    }

    .seeportfolio-btn {
        font-size: 14px;
        padding-right: 2rem;
    }

    .webscreen-imgslideup {
        display: none;
    }

    #web-screen3 {
        display: none;
    }

    .web-part .mobile-screen,
    .web-part .web-screen {
        padding: 0.6rem;
        border-radius: 2rem;
    }

    .padding-130 {
        padding: 4rem 0;
    }
}


/*-----------------------------------------------------------------------------*/
/*--------------/////////-home portfolio sectiom-\\\\\\\\\\-----------------------------*/
/*-------------------------------------------------------------------------------*/




.padding_top {
    padding-top: 80px;
}

.padding-right-40 {
    padding-right: 40px;
}

.affored-package h2 {
    margin-bottom: 42px;
    text-align: center;
}

.jennaFntsm {
    font-family: "Have Heart One", sans-serif;
    font-size: 55px;
    font-weight: 400;
}

.padding-left-40 {
    padding-left: 40px;
}

.headiing_div {
    margin-left: 0;
    border-left: 1px solid #d3d4d7;
}

.affored-package p.white-text {
    color: #fff !important;
}

.font-white-trans {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 52px;
}

.line-height-cust {
    line-height: 3px;
    font-family: cursive;
    font-size: 29px;
    color: #ff5b2e;
}

.affored-package-list {
    margin-top: -1.5em;
}

.padding_bottom {
    padding-bottom: 80px;
}

.affored-package-list {
    background: #fff;
}

.affored-package-list .thumbnail {
    background: 0 0;
    border: 0;
    padding: 5px;
    margin-bottom: 0;
}

.package-common {
    padding: 30px 0px;
    text-align: center;
    margin-right: 0;
    position: relative;
}

.package-online {
    background: #fbbe00;
}

.package-common {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.package-common h5 {
    font-weight: 700;
    margin-top: 0;
}

.package-common h5 {
    font-size: 18px;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-text-stroke: 1px transparent;
}

.package-common h3 {
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 33px;
    color: #000;
}

.package-common>p {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 0;
    min-height: 70px;
    font-weight: 600;
    color: #000;
}

.package-common h2 {
    font-size: 50px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 700;
}

.newbtn {
    padding: 18px 63px 18px 35px;
    color: #fff;
    font-size: 15px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    position: relative;
    background: #242424;
    border: none;
    line-height: .8em;
    text-transform: uppercase;
}

.pkg-btn:after {
    top: 19px;
}



.arrowrgt::after {
    background: url(../img/tosmall-icon.png) no-repeat;
    position: absolute;
    content: "";
    width: 16px;
    display: inline-block;
    height: 10px;
    top: 21px;
    right: 39px;
    transition: .3s linear;
}

.redesign-inner.package-inner {
    height: 750px;
    overflow-y: scroll;
}

.newbtn:hover {
    background: #ff5b2e;
    color: #fff;
}

.package-business {
    background: #d10000;
}

.package-ultimate {
    background: #00ba6c;
}

.package-google {
    background: #5caeca;
}

.package-inner li:nth-child(odd) {
    background: #dfe4ec;
}

.package-inner li {
    text-align: left;
    padding: 10px 10px;
    min-height: inherit;
    background: 0 0;
    color: #333;
    line-height: 30px;
    transition-duration: .3s;
    margin-bottom: 1px;
    display: block;
}

.package-inner li:nth-child(2n) {
    background: #d5d9e3;
}

.package-inner li p {
    width: 85%;
    padding-left: 0;
    padding-right: 14px;
    font-size: 16px;
    font-weight: 100;
}

.package-inner li img {
    display: block;
    margin: 0 auto;
}

.redesign-inner li p {
    margin: 0;
    vertical-align: middle;
    display: inline-block;
}

.package-inner li span {
    background: url(../img/sprite-images.webp) -353px -755px no-repeat;
    height: 25px;
    width: 25px;
    display: inline-block;
    vertical-align: middle;
}

.list-inner-affored:hover .package-inner li:nth-child(odd) {
    background: #fff;
}

.package-common-popular {
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding-left: 0;
    width: 100%;
    z-index: -1;
}

.package-common-popular li {
    background: #fff;
    padding: 5px 15px;
}

.package-common-popular li span {
    background-position: -355px -688px;
}

.package-common-popular li p {
    width: 84%;
    color: #a90000;
    font-size: 24px;
    padding-left: 0;
}

.redesign-inner li p {
    margin: 0;
    vertical-align: middle;
    display: inline-block;
}



/*checkout css*/
#container #secure-checkout {}

#secure-checkout .gray-btn a {
    width: auto;
    height: 31px;
    display: block;
    color: #808080;
    background-image: -webkit-linear-gradient(top, #FDFDFD, #ECECEC);
    background-image: -moz-linear-gradient(top, #FDFDFD, #ECECEC);
    background-image: -ms-linear-gradient(top, #FDFDFD, #ECECEC);
    background-image: -o-linear-gradient(top, #FDFDFD, #ECECEC);
    border: 1px solid #D8D8D8;
    -moz-border-radius: 32px;
    -webkit-border-radius: 32px;
    border-radius: 32px;
}

.gray-btn .button-right,
.gray-btn .button-left {
    width: 14px;
    height: 31px;
    float: left;
}

#secure-checkout .gray-btn {
    height: 31px;
}

.bar {
    height: 5px;
    width: 90px;
    background: #eee;
    margin: 20px auto;
    position: relative;
    border-radius: 30px;
    animation-name: MOVE-BG;
}

.bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: -2.7px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #d10000;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
}

@keyframes MOVE-BG {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(88px);
        transform: translateX(88px)
    }
}

.shape-scale-abt {
    position: absolute;
    right: 20%;
    top: -30%;
    opacity: .3;
    z-index: -1;
    -webkit-animation: animationShapeOne 50s infinite linear;
    animation: animationShapeOne 50s infinite linear;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1;
}

.shape-line-abt {
    position: absolute;
    right: 70%;
    top: 0%;
    opacity: .5;
    z-index: -1;
    -webkit-animation: rotated 20s infinite linear;
    animation: rotated 20s infinite linear;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1;
}


@keyframes animationShapeOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg)
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg)
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg)
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg)
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg)
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg)
    }
}

@-webkit-keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}


.mobile-dev-process {
    padding: 40px 0;
}

.mobile-dev-process .app-process-box {
    background: linear-gradient(to bottom, #f9f9f9 0%, #efefef 100%);
    height: 260px;
    position: relative;
    padding: 50px 40px;
    margin: 0px 50px 20px 0px;
}

.app-process-box:before {
    content: "";
    position: absolute;
    background-color: #fbd642;
    border-radius: 50%;
    bottom: -80px;
    margin: 0 auto;
    width: 20px;
    height: 20px;
    background-color: #d10000;
    border-radius: 50%;
    z-index: 1;
}

.mobile-dev-process .app-process-box img.process-number {
    left: -25px;
    position: absolute;
    top: 40px;
}

.app-process-box .process-icon {
    position: absolute;
    right: -40px;
    top: -50px;
    background-color: #d10000;
    padding: 25px;
    border-radius: 60px;
}

.mobile-dev-process .app-process-box .process-icon svg {
    width: 45px;
    height: 45px;
}

.app-process-box .process-content {
    padding: 0;
}

.app-process-box h4 {
    font-size: 22px;
    line-height: 32px;
    font-family: inherit;
    font-weight: 500;
    color: #333;
}

.ps-3 {
    padding-left: 1rem !important;
}

.mobile-dev-process .app-process-box .process-content li {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
}

.mobile-dev-process .app-process-box li {
    letter-spacing: .5px;
}

.app-devlopment-border {
    border-bottom: 1px solid #333;
    margin: 50px 50px 90px 10px;
}

.mobile-dev-process .app-process-box.removebefore:before {
    display: none
}

.mobile-dev-process .app-process-box:after {
    right: -226px;
    bottom: 60px;
}

.app-process-box:after {
    content: "";
    border: 1px dashed #000;
    width: 56%;
    position: absolute;
    right: -181px;
}

.business-cases-section .col-12.last .app-process-box:after {
    display: none
}

.foot-exp-wrap {
    padding-left: 15px;
}

.foot-exp-char {
    width: 100px;
}

.foot-exp-text-wrap {
    width: calc(100% - 120px);
    margin-left: 20px;
}

.foot-exp-text-button {
    margin-bottom: 15px !important;
}

.foot-exp-text-button {
    background-color: #2b2c2d;
    text-transform: uppercase;
    text-align: center;
    padding: 13px 10px;
}

.foot-exp-text-button .exp {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #ec7323;
    line-height: 1.1;
    font-size: 36px;
}

.foot-exp-text-button .indus {
    display: block;
    font-size: 30px;
    font-weight: 500;
    font-size: 22px;
    color: #fff;
    line-height: 1.1;
}

.innerbanner .tenc-intro-main__wrapper h1 span {
    display: block;
    padding-bottom: 10px;
    color: #d10000;
    text-transform: uppercase;
}

.app-why-box-icon.number {
    margin: 0 auto;
    width: 70px;
    height: 70px;
    background: #fff;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    padding: 10px;
    transition: all 0.3s ease;
    font-size: 36px;
    font-weight: 900;
}

.iphone .our-history-detail-num {
    font-size: 25px;
}

@media only screen and (max-width: 767px) and (min-width: 320px) {
    .web-part .mobile-screen, .web-part .web-screen {
        /* padding: 0.6rem; */
        border-radius: 2rem;
        min-height: 200px !important;
    }
        #web-screen3 {
        display: block;
    }
    .webscreen-imgslideup {
        display: block;
    }
    
    .webscreen-imgslideup .frameupdown-slide{
        height: 160px;
    }
    button.carousel-control-next, button.carousel-control-prev {
    width: 40px !important;
    height: 30px !important;
    background-color: transparent;
    border: none;
    margin-top: 25px;
   }
   button.carousel-control-prev {
       left: 38% !important;
       
   }
   button.carousel-control-next {
       right: 38% !important;
   }
   .about-us-inner .about-card {
       width: 25%;
       padding: 20px 30px;
   }
   .service-section .web-why-choose-inner-icon {
    margin-top: 12% !important;
    left: 0% !important;
}
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;opacity: 1 !important;
  border-bottom:none;
    
    cursor: pointer !important;

}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
    right:0;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

