/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
  ## Links
  ## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
  ## Posts and pages
  ## Comments
# Infinite scroll
# Media
  ## Captions
  ## Galleries
## Bootstrap Sameheight
## Miscellaneous
## Font Fix Screen
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg {
  display: block;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp,
tt,
var {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
p {
  margin-bottom: 1.5em;
}
dfn,
cite,
em {
  font-style: italic;
}
cite {
  font-weight: 600;
}
blockquote {
  margin: 0 1.5em 20px;
  border-color: #111111;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}
big {
  font-size: 125%;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}
body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
ul,
ol {
  margin: 0 0 1em 1em;
  padding-left: 20px;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
dt {
  font-weight: bold;
  margin-bottom: 10px;
}
dd {
  margin: 0 1.5em 1.5em;
}
img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}
figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px 0;
  width: 100%;
}
table th,
table td {
  border: 1px solid #dedede;
  padding: 5px;
  text-align: center;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background-color: #111111;
  border: medium none;
  color: #fff;
  padding: 2px 15px;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  background-color: #000;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
}
select {
  border: 1px solid #ccc;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}
textarea {
  width: 100%;
}
form.post-password-form label > input {
  background: #f8f8f8;
  border: 1px solid #dcdcdc;
  padding: 10px 8px;  
}
form.post-password-form input {
  padding: 11px 15px;
  font-weight: 700;
}
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a:link,
a:visited {
  transition: all 0.3s ease 0s;
  text-decoration: none;
}
a:hover,
a:focus,
a:active {
  text-decoration: none;
}
a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
}
body {
  font-family: 'Roboto',sans-serif;
}

/*-------------------------------------------------------------
                CUSTOM CSSS START  
--------------------------------------------------------------*/
header#masthead {
  padding: 5px 0;
}
.secBanner {
  height: 100vh;
  background-color: transparent;
  background-image: linear-gradient(281deg, rgb(200 49 112) 0%, rgb(216 32 154) 69%, rgb(200 49 112) 100%) !important;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
header#masthead {
  position: absolute;
  top: 0;
  z-index: 9;
  width: 100%;
  background: #fff;
}
.home header#masthead {
    background: transparent;
   padding: 12px 0;
}
.navbar-brand img {
    width: 150px;
    filter: brightness(1.2);
}
div#navbarNav {
  justify-content: flex-end;
}
.navbar-expand-lg .navbar-nav .nav-link {
  display: block;
  text-decoration: none;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  transition: all 0.3s ease-out 0s;
  color: #fff;
  padding: 10px 00;
  text-transform: capitalize;
  font-family: 'Roboto', sans-serif;
  position: relative;
}
.navbar-expand-lg .navbar-nav li:not(.btn-nav) .nav-link:after {
  content: '';
  height: 3px;
  width: 0%;
  background: #cf3573;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.4s ease-in-out !important;
}
.navbar-expand-lg .navbar-nav li:not(.btn-nav) .nav-link:hover:after {
  width: 100%;
}
.navbar-expand-lg .navbar-nav .nav-item {
  margin: 0 18px;
}
.navbar-expand-lg .navbar-nav .btn-nav .nav-link {
  background: linear-gradient(281deg, rgb(200 49 112) 0%, rgb(216 32 154) 69%, rgb(200 49 112) 100%) !important;
  border: 2px solid #cf3573 !important;
  color: #fff;
  padding: 8px 15px;
  position: relative;
  z-index: 2;
  padding: 11px 40px 11px 15px;
  border-radius: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0.125rem solid;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
ul.navbar-nav {
  align-items: center;
}
.navbar-expand-lg .navbar-nav .nav-item:last-child {
  margin-right: 0;
  margin-left: 60px;
}
.navbar-expand-lg .navbar-nav .btn-nav .nav-link .icon {
  position: absolute;
  right: 15px;
  top: 11px;
  transition: all 0.5s ease-in-out !important;
}
.navbar-expand-lg .navbar-nav .btn-nav .nav-link:hover {
  background: transparent;
}
.navbar-expand-lg .navbar-nav .btn-nav .nav-link:hover .icon {
  right: 10px;
}
.navbar-expand-lg .navbar-nav .nav-item.have-child ul.sub-dropdown {
  left: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 60px;
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  transition: all 0.3s ease-out 0s;
  z-index: 10;
  padding: 20px 0;
  width: 240px;
  text-align: left;
  background-color: #ffffff;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 0 2.1875rem 0 rgb(0 0 0 / 10%);
  box-shadow: 0 0 2.1875rem 0 rgb(0 0 0 / 10%);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  list-style: none;
  margin: 0;
}
.navbar-expand-lg .navbar-nav .nav-item.have-child {
  position: relative;
}
.navbar-expand-lg .navbar-nav .nav-item.have-child:hover >  ul.sub-dropdown{
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
ul.sub-dropdown li a {
  position: relative;
  display: inline-block;
  color: #4c4b4b;
  text-transform: inherit;
  margin: 4px 15px;
  padding: 0;
  font-weight: 500;
  font-size: 14px;
  z-index: 2;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -ms-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}
ul.sub-dropdown li {
  display: block;
  border-bottom: none;
  border-left: none;
  transition: all 0.3s ease-out 0s;
  margin-bottom: 10px;
}
ul.sub-dropdown li a:before {
  position: absolute;
  z-index: 1;
  content: "";
  background-color: #cf3573;
  height: 1px;
  width: 0;
  right: 0;
  left: inherit;
  bottom: 0;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
ul.sub-dropdown li a:hover:before {
  background-color: #cf3573;
  width: 100%;
  left: 0;
  right: inherit;
}
ul.sub-dropdown li a:hover {
  color: #cf3573;
}
ul.sub-dropdown li:last-child {
  margin: 0;
}
.navbar-expand-lg .navbar-nav .nav-item.have-child:before {
  content: '';
  height: 40px;
  width: 100%;
  background: transparent;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.bannerContent h1 {
  color: #fff;
  line-height: 56px;
  letter-spacing: -2px;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 20px;
  font-family: 'Poppins';
}
.bannerContent p {
  line-height: 27px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
  font-family: 'Roboto';
}
.btns .btn-custom {
  padding: 11px 25px;
  color: #fff;
  border: 2px solid #fff;
  min-width: 148px;
  font-size: 17px;
  font-weight: 500;
  font-family: "Roboto";
  margin-right: 10px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out !important;
}
.btns .btn-custom.btn-with-arrow .icon {
  margin-left: 10px;
}
.btns .btn-custom.btn-with-arrow {
  border-color: #cf3573;
}
.btns .btn-custom:hover {
  background: #cf3573;
  color: #fff;
  border-color: transparent;
}
div#bannerSlider .bannerVector img {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
div#bannerSlider.owl-carousel .owl-item,
div#bannerSlider.owl-carousel .owl-item .item {
  height: 100%;
}
div#bannerSlider,div#bannerSlider.owl-carousel .owl-stage-outer,div#bannerSlider.owl-carousel .owl-stage {
  height: 100%;
}
.secBanner .container-fluid {
  height: 100%;
}
div#bannerSlider.owl-carousel .owl-item .item {
  display: flex;
  position: relative;
  padding: 0 17%;
  align-items: center;
}
.bannerContent {
  /* padding-right: 40%; */
}
.brands-icon .images {
  display: flex;
  align-items: center;
}
.brands-icon .images img {
  width: auto;
  max-height: 52px;
  margin-right: 40px;
}
.brands-icon {
  position: absolute;
  bottom: 70px;
  display: none;
}
.navbar-brand img {
}
.navbar-brand {
  padding: 0;
  width: 320px;
  margin: 0;
}
.about {padding-top: 80px;padding-bottom: 50px;}
h2.ft-poppins {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
}
.clr-green {
  color: #fd5555;
}
.about h4 {
  font-size: 18px;
  color: #000;
  font-style: italic;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 20px;
}
p {
  color: #000000;
  font-size: 15px;
  line-height: 26px;
}
.btn-arrow.btn {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  padding: 12px 45px 12px 23px;
  border-radius: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  min-width: 150px;
}
.btn-arrow.btn:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  right: inherit;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 4px;
  background: linear-gradient(281deg, rgb(200 49 112) 0%, rgb(229 54 156) 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.btn-arrow.btn:hover:before {
  opacity: 1;
  visibility: visible;
}
.btn-arrow.btn:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  right: inherit;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 4px;
    background: #c83170;
    background-image: linear-gradient(281deg, rgb(200 49 112) 0%, rgb(216 32 154) 69%, rgb(200 49 112) 100%) !important;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.btn-arrow.btn:hover {
  color: #fff;
}
.btn-arrow.btn:hover:after {
  opacity: 0;
  visibility: hidden;
}
.btn-arrow.btn .icon {
  position: absolute;
  right: 20px;
  top: 13px;
  transition: all 0.5s ease-in-out !important;
}
.btn-arrow.btn:hover .icon {
  right: 12px;
}
.secOffer {
  padding-top: 70px;
  padding-bottom: 50px;
}
.offerBox {
  padding: 2.5rem 2.1875rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 2.1875rem 0 rgb(0 0 0 / 7%);
  box-shadow: 0 0 2.1875rem 0 rgb(0 0 0 / 7%);
  border-radius: 0.25rem;
  position: relative;
  z-index: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  height: 100%;
}
.offerBox .pic img {height: 70px; filter: hue-rotate(298deg);  }
.offerBox .pic {
  margin-bottom: 20px;
}
.offerBox h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.offerBox .btn-link {
  color: #f551c1;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out !important;
}
.offerBox .btn-link:hover {
  color: #41e0e9;
}
.offerBox:hover {
  background-color: #fafafa;
}
.how-it-works {
  padding-top: 13px;
  padding-bottom: 70px;
}
.how-it-works .infoBox {
  position: relative;
  padding-left: 180px;
  margin-bottom: 60px;
  min-height: 160px;
}
.how-it-works .infoBox .pic {
  position: absolute;
  left: 0;
  top: -10px;
  height: 160px;
  width: 160px;
  background: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 2.1875rem 0 rgb(119 119 120 / 13%);
  transition: all 0.5s ease-in-out !important;
}
.how-it-works .infoBox:hover .pic {
  background: #36BAFE;
}
.how-it-works .infoBox:nth-last-child(2):hover .pic {
  background: #FF3838;
}
.how-it-works .infoBox:last-child:hover .pic {
  background: #FF930E;
}
.how-it-works .infoBox:hover .pic img {
  filter: brightness(0) invert(1);
}
.how-it-works .infoBox .pic img {
  transition: all 0.5s ease-in-out !important;
}
.how-it-works .infoBox h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 34px;
  font-family: 'Poppins',sans-serif;
}
.how-it-works .infoBox:last-child {
  margin-bottom: 0;
}
.owl-dots {
  display: none;
}
ul.custom-list {
  padding: 0;
  list-style: none;
  margin: 0;
}
ul.custom-list li {
  padding-left: 34px;
  position: relative;
  margin: 16px 0;
  font-size: 16px;
  color: #000;
  line-height: 30px;
}
ul.custom-list li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #38bbc7;
}
.team-work .seperator {
  text-align: center;
  padding: 40px 0 90px;
  position: relative;
  display: flex;
  justify-content: center;
}
.bg-gradient {
  background-color: transparent;
  background-image: linear-gradient(281deg, rgb(200 49 112) 0%, rgb(216 32 154) 69%, rgb(200 49 112) 100%) !important;
}
.team-work {
  padding-top: 80px;
  padding-bottom: 80px;
}
.team-work .seperator .icon {
  color: #f4731f;
  font-size: 44px;
  transform: rotate(155deg);
  position: absolute;
  left: 20%;
  bottom: 30px;
      filter: hue-rotate(318deg) contrast(1.8) contrast(1.5);
}
.team-work .row {
  align-items: center;
}
section.secBrands {
  background: #F8FBFE;
  padding: 80px 0 50px;
}
.brand-images ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.brand-images ul li {
  max-width: 20%;
  flex: 50%;
  text-align: center;
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter.bg-gradient {
  padding: 100px 0;
}
.secCta {
  padding: 80px 0 80px 0;
}
.clr-white {
  color: #fff;
}
.secCta.bg-gradient {
  background-image: linear-gradient(98deg, #3abbb1  0%, #12998f 100%) !important;
}
.secCta .btns .btn-custom.btn-with-arrow {
  background: linear-gradient(260deg,#c31c62 0,#ef3783 100%);
  border-color: #cf3573;
}
.secCta .btns .btn-custom.btn-with-arrow:hover {
  background: transparent;
  border-color: #fff;
}
.secCta .row {
  align-items: center;
}
.team-work h2.ft-poppins.text-center {
  margin-top: 60px;
  margin-bottom: 0;
}
.testBox {
  text-align: center;
}
.testBox .info .pic {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.testBox .info .pic img {
  height: 100%;
  object-fit: cover;
}
.testBox .info {display: inline-block;padding-left: 70px;position: relative;min-height: 60px;}
.testBox .info h3 {
  line-height: 1.2;
  color: #1d2124;
  font-size: 1.125rem;
  font-family: 'Poppins';
  font-weight: 600;
  margin-bottom: 3px;
}
.testBox .info h5 {
  font-size: 14px;
  color: #aaaaaa;
  margin: 0;
  font-weight: 400;
}
.testBox .txt p {
  font-size: 18px;
  padding: 0 16%;
}
.testBox .txt {
  margin-bottom: 40px;
}
.testimonials {
  padding: 95px 0 40px 0;
}
.testimonials .owl-nav button {
  position: absolute;
  top: 30%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  height: 3.275rem;
  width: 3.275rem;
  border-radius: 2.8125rem;
  border: 0.0625rem solid #d9d9d9;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border: 1px solid #ddd !important;
  color: #cfcdcd !important;
}
.testimonials .owl-nav button.owl-prev {
  left: -5rem;
}
.testimonials .owl-nav button.owl-next {
  right: -5rem;
}
div#testimonilaSlider:hover .owl-nav button.owl-prev {
  left: 0;
}
div#testimonilaSlider:hover .owl-nav button.owl-next {
  right: 0;
}
div#testimonilaSlider:hover .owl-nav button {
  opacity: 1;
  visibility: visible;
}
.testBox .quote-icon {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0.1;
}
.testBox .quote-icon img {
  width: auto;
  margin: 0 auto;
}
.testimonials .owl-nav button:hover {
  background: #38bbc7;
  color: #fff !important;
  border-color: #38bbc7 !important;
}
.getQuote {
  padding: 75px 0px 055px 0px;
}
.getQuote .row {
  align-items: center;
}
.quote-form .input-field .form-control,
.est-form .form-control {
  height: 57px;
  color: #111111;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  padding: 0 22px;
  box-shadow: none;
  outline: none;
  font-family: 'Poppins',sans-serif;
  font-size: 14px;
  transition: all 0.3s ease-in-out !important;
}
.quote-form .input-field .form-control::placeholder,
.est-form .form-control::placeholder {
  color: #c1bebe;
}
.quote-form .input-field {
  margin-bottom: 15px;
}
.quote-form .input-field .form-control:focus,
.est-form .form-control:focus {
  border-color: #36aec1;
}
.quote-form .input-field .btn-submit {
  background: transparent !important;
  color: #ffff;
  font-weight: 500;
  border: none !important;
}
.quote-form .input-field .btn-submit:hover {
  background: #000;
}
.counter .count-title.count-number {
  color: #ffffff;
  font-size: 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.625rem;
  line-height: 1;
  z-index: 3;
  position: relative;
}
.counter .count-text {
  font-size: 1.375rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 0px;
  position: relative;
  font-family: 'Poppins';
}
.ft-logo img {
    width: 150px;
}
div#footer_widget {
  padding: 100px 0 70px;
  background: #f8fbfe;
}
div#footer_widget .widget h3 {
  margin-top: 0;
  color: #1d2124;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
div#footer_widget .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
div#footer_widget .widget .menu ul li {
  margin-bottom: 18px;
}
div#footer_widget .widget ul li a {
  color: #000;
  text-decoration: none;
  padding-left: 15px;
  position: relative;
  transition: all 0.5s ease-in-out !important;
  font-size: 14px;
}
div#footer_widget .widget ul li a:before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: -1px;
  color: #3c3d3d;
}
div#footer_widget .widget .menu ul li a:hover {
  padding-left: 30px;
}
.social-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.social-list ul li {
  margin-right: 20px;
}
.social-list ul li a {
  color: #cf3573;
  transition: all 0.3s ease-in-out !important;
  font-size: 18px;
}
.social-list ul li a:hover {
  color: #cf3573;
}
div#footer_widget .col-12:last-child .widget {
  margin-bottom: 20px;
}
div#footer_widget .col-12:last-child .widget:last-child {
  margin: 0;
}
div#footer_widget .col-12:last-child .widget:last-child li {
  margin-bottom: 10px;
}
.ft-logo {
  margin-bottom: 30px;
  padding-right: 80px;
}
.site-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer_colophon {
  padding: 16px 0;
  background: linear-gradient(98deg, #3abbb1  0%, #12998f 100%) !important;
}
.site-info p {
  margin: 0;
  color: #fff;
}
.site-info p a {
  color: #fff;
  text-decoration: none;
}
.ctn.text-center {
  margin-bottom: 50px;
}
.ctn.text-center p {
  width: 60%;
  margin: 0 auto;
}
.vc_head {
  position: relative;
  padding-bottom: 40px;
  z-index: 1;
}
.vc_head:after {
  content: '';
  width: 50px;
  height: 30px;
  background: url(../images/rocket-vector.png);
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  background-position: center;
  margin: auto;
  filter: hue-rotate(297deg);
}
.vc_head:before {
  content: '';
  width: 20%;
  height: 2px;
  border: 1px dashed #38bbc7;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  margin: auto;
  z-index: -1;
}
.how-it-works .row {
  align-items: center;
}
.pd-left {
  padding-right: 60px;
  padding-left: 18%;
}
.portfolio {
  background: linear-gradient(281deg, rgba(67,224,221,1) 0%, rgba(51,167,188,1) 69%, rgba(75,90,142,1) 100%) !important;
  height: 600px;
  position: relative;
  overflow: hidden;
}
.port-cont h2 {
  color: #fff;
}
.port-cont p {
  color: #fff;
  padding-right: 21%;
  font-size: 16px;
}
.port-cont h5.ft-poppins {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}
div#portfolioSlider .item {
  display: flex;
  align-items: center;
  height: 100%;
}
.port-cont .btn-discuss.btn {
  background: linear-gradient(281deg, rgb(200 49 112) 0%, rgb(216 32 154) 69%, rgb(200 49 112) 100%) !important;
  border-radius: 20px;
  color: #fff;
  font-size: 15px;
  display: inline-block;
  padding: 8px 22px;
  margin-top: 40px;
  transition: all 0.3s ease-in-out !important;
  position: relative;
  border: none;
}
.port-cont .btn-discuss.btn:hover {
  padding-right: 40px;
}
.port-cont .btn-discuss.btn:after {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  font-size: 14px;
  position: absolute;
  right: 18px;
  top: 10px;
  color: #fff;
  transition: all 0.3s ease-in-out !important;
  opacity: 0;
  visibility: hidden;
}
.port-cont .btn-discuss.btn:hover:after {
  opacity: 1;
  visibility: visible;
}
div#portfolioSlider .owl-stage, div#portfolioSlider .owl-item,
div#portfolioSlider ,div#portfolioSlider .owl-stage-outer, 
.portfolio .container {
  height: 100%;
}
.portVector {
  height: 100%;
  display: flex;
  align-items: center;
}
.view-portfolio {position: absolute;top: 0;right: -70px;bottom: 0;}
.view-portfolio .btn-custom {
  background: linear-gradient(281deg, rgb(200 49 112) 0%, rgb(216 32 154) 69%, rgb(200 49 112) 100%) !important;
  color: #fff;
  display: flex;
  height: 100%;
  align-items: center;
}
.view-portfolio .btn-custom .txt {
  transform: rotate(90deg);
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  right: 30px;
}
.secOffer .col-sm-12.col-md-4 {
  margin-top: 50px;
}
.secOffer .ctn.text-center {
  margin: 0;
}
.fixed .navbar-brand img.white-logo,
body:not(.home) .navbar-brand img.white-logo {
  display: none;
}
.fixed .navbar-expand-lg .navbar-nav .nav-link,
body:not(.home) .navbar-expand-lg .navbar-nav .nav-link {
  color: #000;
}
.fixed .navbar-expand-lg .navbar-nav .btn-nav .nav-link:hover, body:not(.home) .navbar-expand-lg .navbar-nav .btn-nav .nav-link {
  color: #cf3573;
}
body:not(.home) .navbar-expand-lg .navbar-nav .btn-nav .nav-link:hover {
  color: #cf3573;
}
.navbar-brand img.dark-logo {
  display: none;
}
.fixed .navbar-brand img.dark-logo,
body:not(.home) .navbar-brand img.dark-logo {
  display: block;
}
body:not(.home) {
  padding-top: 95px;
}
.innerBanner {
  position: relative;
  height: 682px;
  padding: 30px 0;
}
.bg_video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: -1;
}
.bg_video iframe {
  height: 100%;
}
.innerBanner .row {
  align-items: center;
}
.innerBanner .banner-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-left: 14%;
  margin-top:30px;
}
.innerBanner .banner-form input.form-control {
    height: 46px;
    padding: 0 12px;
}
.innerBanner .banner-form  textarea.form-control {
    padding: 12px 12px;
    height: 80px;
}
.innerBanner .banner-form label.chota_fnt {
    font-size: 13px;
    height: 70px;
    overflow: hidden;
    overflow-y: scroll;
}
.innerbannerContent h2 {
  font-size: 39px;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0px;
}
.innerbannerContent h4 {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  line-height: 28px;
}
.innerBanner .btns .btn-custom.btn-with-arrow {
  background: #cf3573;
  border-color: #cf3573;
  border-radius: 4px;
  color: #000;
}
.innerBanner .btns .btn-custom.btn-with-arrow:hover {
  background: transparent;
  color: #000;
}
.innerbannerContent {
  padding-bottom: 50px;
}
.innerBanner .banner-form h2 {
  font-size: 28px;
}
.innerBanner .brands-icon {
  position: absolute;
  bottom: 50px;
  display: none;
}
.benefitBox {
  background: #fff;
  text-align: center;
  padding: 40px 30px;
  box-shadow: 0 2px 35px 0 rgb(179 179 179 / 22%);
  border-radius: 4px;
  min-height: 240px;
  transition: all 0.5s ease-in-out !important;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
}
.benefitBox .pic {
  width: 96px;
  height: 100px;
  overflow: hidden;
  border-radius: 100%;
  margin: 0 auto 15px;
}
.secBenefits {
  padding: 80px 0 50px;
  background: #F8FBFE;
}
.secBenefits .col-sm-12.col-md-3 {
  margin-bottom: 30px;
}
.benefitBox p {
  margin: 0;
  transition: all 0.5s ease-in-out !important;
}
.benefitBox:hover {
  box-shadow: 0 3px 40px 0 rgb(179 179 179 / 80%);
}
.benefitBox .pic img {
   filter: hue-rotate(298deg); 
}
.benefitBox:before {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(281deg, rgb(200 49 112) 0%, rgb(216 32 154) 69%, rgb(200 49 112) 100%) !important;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out !important;
}
.benefitBox:hover:before {
  opacity: 1;
  visibility: visible;
}
.benefitBox:hover p {
  color: #fff;
}
.benefitBox h4 {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: all 0.5s ease-in-out !important;
}
.wide-range .benefitBox {
  height: auto;
  background: #f6f7fb;
  box-shadow: none;
}
.wide-range {
  background: #fff;
  padding-bottom: 0;
}
.benefitBox:hover h4 {
  color: #fff;
}
body:not(.home) .secCta:not(.innerCta) {
  display: none;
}
.bg_video video {
  height: 100%;
  object-fit: cover;
}
.nbr-list ol li {
  font-size: 15px;
  line-height: 32px;
  margin: 10px 0;
  color: #000;
}
.techBox {
  padding: 2.5rem 2.1875rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 2.1875rem 0 rgb(0 0 0 / 7%);
  box-shadow: 0 0 2.1875rem 0 rgb(0 0 0 / 7%);
  border-radius: 0.25rem;
  margin-top: 1.875rem;
  position: relative;
  z-index: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-align: center;
}
.techBox .pic {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.techBox p {
  margin: 0;
  font-weight: 600;
}
.techBox:hover {
  box-shadow: 0 3px 40px 0 rgb(179 179 179 / 80%);
}
body:not(.home) .offerBox p {
  margin: 0;
}
.bg-orange.secOffer {
  background: #F3F3F3;
}
.technology .ctn.text-center.mt-70 {
  margin: 0;
}
section.technology {
  padding-bottom: 20px;
}
.bg-Gray {
  background: #f4f4f4;
}
.bg-Gray.technology {
  padding-top: 1px;
}
.brand_not .testimonials {
  background: #f8fbfe;
}
.brand_not 
.secBrands {
  display: none;
}
.brand_not .wide-range {
  padding-bottom: 40px;
}
.team-work p strong {
  color: #444444;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins';
}
.why-tap .innerBanner {
  display: flex;
  align-items: center;
}
.about h4.clr-red {
  color: #000;
  font-style: normal;
  font-weight: 500;
}
.why-tap .how-it-works .infoBox .pic {
  height: 60px;
  width: 60px;
  padding: 15px;
}
.why-tap .how-it-works .infoBox .pic img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.why-tap .how-it-works .infoBox {
  padding-left: 80px;
}
.why-tap .how-it-works .infoBox:nth-last-child(3) {
  margin-top: 40px;
}
.how-it-works .row {
  align-items: flex-start;
}
.how-it-works h4.clr-green.text-center {
  font-size: 16px;
  letter-spacing: 2px;
}
.why-tap .how-it-works {
  background: #F6FAFF;
  padding-top: 70px;
  padding-bottom: 70px;
}
.secExperience {
  padding: 40px 0;
  overflow: hidden;
}
.secExperience .custom-list li {
  color: #fff;
}
.secExperience .custom-list li:before {
  color: #fff;
}
.secExperience .custom-list {
  column-count: 2;
}
.popup_init {
  height: 100%;
  width: 100%;
  background-size: 100% !important;
  margin-left: -30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup_init .play-icon {
  background: #36aec1;
  height: 120px;
  width: 120px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 44px;
}
.secExperience .pd-right {
  padding: 40px 0;
  padding-right: 17%;
  padding-left: 20px;
}
.why-tap .secBrands,
.why-tap .getQuote {
  display: none;
}
.secExperience .custom-list li:before {
  content: '\f058';
}
.bgWhite {
  background: #fff;
}
.why-tap .benefitBox {
  height: auto;
  padding: 40px 15px;
}
.benefitBox h3 {
  font-size: 22px;
  font-weight: 600;
  transition: all 0.3s ease-in-out !IMPORTANT;
}
.benefitBox:hover h3 {
  color: #fff;
}
section.secFaq {
  padding: 100px 0;
}
.secFaq .accordion-button {
  background: #ffffff;
  border: none;
  font-weight: 500;
  font-size: 1.125rem;
  color: #1d2124;
  padding: 1.5625rem 3.75rem 1.875rem 3.75rem;
  box-shadow: none;
  outline: none;
  text-transform: uppercase;
  line-height: 1.4;
}
.secFaq .accordion-item {
  border: none;
  border-bottom: 0.0625rem solid #f4f4f4;
}
div#accordionExample {
  box-shadow: 0 0 2.1875rem 0 rgb(0 0 0 / 6%);
}
.accordion-button::after {
  right: 40px;
  position: absolute;
}
.secFaq .accordion-body {
  padding: 0 5rem .5625rem 3.75rem;
  transition: all 0.3s ease-in-out !important;
}
.secFaq .show .accordion-body {
  background-color: #f9fbfe;
}
.secFaq .accordion-button[aria-expanded="true"] {
  background: #f9fbfe;
}
body.faq .secBrands,body.faq .getQuote,
.pg-contact .secBrands,.pg-contact .getQuote,
.pg-estimate .secBrands,.pg-estimate .getQuote {
  display: none;
}
.pg-contact .innerBanner {
  display: flex;
  align-items: center;
}
.pg-contact .innerBanner h2 {
  margin: 0;
}
.pg-contact .innerBanner .innerbannerContent {
  padding: 0;
}
.nav-tabs {
  border: none;
}
.nav-tabs a {
  background: #fff;
  position: relative;
  padding: 20px 25px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  color: #36aac0;
  width: 49%;
  text-align: center;
  border: 1px solid #36aac0;
}
.nav-tabs a.active,.nav-tabs a:hover {
  background: #36aac0;
  color: #fff;
}
.ct-content p.location {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  color: #000;
  position: relative;
  padding-left: 20px;
}
.ct-content p.location:before {
  content: '';
  height: 14px;
  width: 14px;
  border-radius: 100%;
  background: #fd5555;
  position: absolute;
  left: 0;
  top: 7px;
}
.ct-content .phone a {
  color: #fd5555;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Poppins';
}
.ct-content .email a {
  color: #cf3573;
  font-family: 'Poppins';
  font-weight: 500;
}
.ct-content p {
  font-weight: 500;
  margin-bottom: 16px;
}
.ct-content {
  padding-top: 30px;
}
.ct-content h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}
.contact-us .pic img:not(.active) {
  display: none;
}
.ct-content p.location:not(.active) {
  display: none;
}
.contact-us {
  padding-top: 80px;
}
.pg-estimate .innerBanner {
  height: auto;
  padding: 100px 0;
}
.pg-estimate .innerBanner .innerbannerContent{
  padding: 0;
}
.pg-estimate .innerBanner .innerbannerContent h4 {
  margin: 0;
}
section.estimate {
  padding: 80px 0;
}
.est-form .input-field {
  margin-bottom: 20px;
}
.est-form h4.ft-poppins {
  margin-bottom: 20px;
  font-size: 20px;
  color: #444;
}
.input-field.input-radio label {
  display: block;
  margin: 13px 0;
  font-weight: 500;
  position: relative;
  padding-left: 30px;
  color: #444;
}
.input-field.input-radio input {
  width: 0;
  height: 0;
}
.input-field.input-radio input:before {
  content: '';
  height: 20px;
  width: 20px;
  border: 1px solid #4e4a4a;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 5px;
}
.input-field.input-radio input:after {
  content: '';
  height: 18px;
  width: 18px;
  border: 4px solid #fff;
  background: #36aac0;
  border-radius: 100%;
  position: absolute;
  left: 1px;
  top: 6px;
  opacity: 0;
  visibility: hidden;
}
.input-field.input-radio input:checked:before {
  border-color: #36aac0;
}
.input-field.input-radio input:checked:after {
  opacity: 1;
  visibility: visible;
}
.est-form textarea.form-control {
  height: 150px;
  padding: 18px 22px;
  resize: none;
}
.input-field.input-checkbox input {
  width: 0;
  height: 0;
}
.input-field.input-checkbox input:before {
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  position: absolute;
  left: 0;
  top: 4px;
}
.input-field.input-checkbox label {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  color: #444;
  font-size: 18px;
}
.input-field.input-checkbox input:after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #36aac0;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}
.input-field.input-checkbox input:checked:after {
  opacity: 1;
  visibility: visible;
}
.input-field.input-checkbox input:checked:before {
  opacity: 0;
  visibility: hidden;
}
.input-field.input-submit input[type="submit"] {
  background: #cf3573;
  padding: 12px 24px;
  font-size: 16px;
  font-family: "Poppins";
  font-weight: 500;
  border-radius: 4px;
  padding-right: 50px;
  transition: all 0.3s ease-in-out !important;
}
.input-field.input-submit {
  position: relative;
  margin-bottom: 0;
  margin-top: 20px;
  z-index: 1;
}
.input-field.input-submit:before {
  content: '\f30b';
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  color: #fff;
  position: absolute;
  left: 29%;
  top: 14px;
  pointer-events: none;
}
.input-field.input-submit input[type="submit"]:hover {
  background: #000;
}
.est-form .input-field .input_col3 {
  display: block;
  column-count: 3;
}
.est-form .input-field .input_col3 label {
  font-size: 16px;
} 
.est-form {
  padding: 50px 100px 50px 100px;
  background-color: transparent;
  background-image: linear-gradient(180deg, #FAFAFA 0%, #FAFAFA 100%);
  border-radius: 19px 19px 19px 19px;
}
.pg-portfolio .getQuote {
  display: none;
}
.pg-portfolio .secBrands {
  display: none;
}
.pg-portfolio .innerBanner {
  padding: 100px 0;
  height: auto;
  margin-top: 15px;
}
.pg-portfolio .innerBanner .innerbannerContent {
  padding: 0;
}
.pg-portfolio .innerBanner .innerbannerContent h4 {
  margin: 0;
}
.input-field.inputfile-box {
  background: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  height: 182px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.inputfile-box input {
  color: #878787;
}
.inputfile-box input::-webkit-file-upload-button {
  background: #cf3573;
  border: 2px solid #cf3573;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  outline: none;
  padding: 10px 25px;
    width:100%;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.inputfile-box input::-webkit-file-upload-button:hover {
  background: #36aec1;
  border: 2px solid #36aec1;
  color: #fff;
}
.input-field.inputfile-box label {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins';
}
.secBanner .bg_video:before,
.bg_video:before{
  content: '';
  height: 100%;
  width: 100%;
  background: rgb(0 0 0 / 62%);
  position: absolute;
  left: 0;
  top: 0;
}
.fixed .navbar-expand-lg .navbar-nav .btn-nav .nav-link {
  color: #fff;
}
.btns .btn-custom.btn-with-arrow:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.secCta.bg-gradient h3 {
  font-size: 22px;
  line-height: 1.4;
}
.quote-form .input-field.input-submit:before {
  content: '';
  height: 100%;
  width: 100%;
  background:linear-gradient(281deg, rgb(200 49 112) 0%, rgb(216 32 154) 69%, rgb(200 49 112) 100%) !important;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out !important;
  border-radius: 5px;
}
.quote-form .input-field.input-submit:after {
  content: '';
  height: 100%;
  width: 100%;
  background: linear-gradient(281deg, rgb(200 49 112) 0%, rgb(216 32 154) 69%, rgb(200 49 112) 100%) !important;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px;
  transition: all 0.3s ease-in-out !important;
}
.quote-form .input-field.input-submit:hover:before {
  opacity: 1;
  visibility: visible;
}
.quote-form .input-field.input-submit:hover:after {
  opacity: 0;
  visibility: hidden;
}
body:not(.home) .navbar-expand-lg .navbar-nav .btn-nav .nav-link {
  color: #fff;
}
.container-fluid .ctn.text-center p {
  width: 45%;
}
.quote-form .input-field textarea.form-control {
  height: 84px;
  padding: 18px 20px;
  resize: none;
} 
.offerBox:hover {
  transform: translateY(-10px);
}
.sec-portfolio {
    padding-bottom: 80px;
}
div#portfolioSlider .item .port-cont {
    max-width: 50%;
}
div#portfolioSlider .item .portVector {
    max-width: 50%;
}
header#masthead .container {
    max-width: 90%;
}
.sec_infoText {
    padding: 80px 0 60px; 
}
.sec_infoText h3 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}
.sec_infoText p a {
    color: #cf3573;
    text-decoration: underline;
}
.why-tap .benefitBox .pic {
    box-shadow: 0px 0px 8px 2px rgb(249 244 244);
}
.why-tap .benefitBox:hover .pic {
    box-shadow: none;
}
.our-brands {
    background: #181818;
    padding: 20px 0;
}
.brand-list .owl-nav,.brand-list .owl-dots {
    display: none;
}
.brand-list .bdBox {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 30px;
}
.brand-list .bdBox img {
    height: 100%;
    object-fit: contain;
}
.our-brands .row {align-items: center;}
.our-brands h3 {
    font-size: 35px;
    color: #fff;
    margin: 0;
    text-align: center;
}
.our-brands h3 span {
    display: block;
    font-size: 44px;
    font-weight: 800;
    color: #c83170;
}
.brand-list {
    border-left: 2px solid #272727;
}
.brand-list .bdBox a {
    box-shadow: none;
    outline: none;
}
/*-------------------------------------------------------------
                CUSTOM CSSS END  
--------------------------------------------------------------*/








/*CSS buttons*/
.sec-portfolio .grid {
  width: 100%;
  max-width: 1100px;
  margin: auto;
}
.sec-portfolio .button-group {
  margin: 80px auto;
  display: table;
}
.sec-portfolio .button {
  padding: 10px 25px;
  border-radius: 5px;
  border: 0;
  color: #333;
  cursor: pointer;
  background-color: transparent;
  margin: 0 7px;
  font-weight: 500;
}
.sec-portfolio .button:hover {
  background-color: #36aec1;
  color: #fff;
}
.sec-portfolio .button.is-checked {
  background: #fd5555;
  color: #fff;
}
.sec-portfolio .element-item {
  background-color: #fff;
  padding: 0;
  margin: 10px;
  width: calc(33% - 20px);
  display: inline-block;
  height: 320px;
  border-radius: 6px;
  overflow: hidden;
}
.sec-portfolio .item-image {
  width: 100%;
  background-size: cover;
  height: 100%;
}
.sec-portfolio .item-title {
  padding: 10px;
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  background: rgb(255 255 255 / 72%);
  display: flex;
  align-items: center;
  color: #36aac0;
  justify-content: center;
  font-family: "Poppins";
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out !important;
  border: 6px solid #36aec1;
}
.sec-portfolio .element-item:hover .item-title {
  opacity: 1;
  visibility: visible;
  font-size: 65px;
}




.ft-poppins {
  font-family: 'Poppins',sans-serif;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.align-center {
  align-items: center;
}
.text-right {
  text-align: right;
}
.ftw-bold {
  font-weight: 700;
}
.ftw-light {
  font-weight: 400 !important;
}
.mt-70 {
  margin-top: 70px !important;
}
.scrollToTop {
  overflow: hidden;
  position: fixed;
  height: 2.5rem;
  width: 2.5rem;
  line-height: 2.5rem;
  border-radius: 0.25rem;
  right: 1rem;
  bottom: 0;
  text-align: center;
  z-index: 9999;
  background-color: #36aac0;
  display: block;
  font-size: 1rem;
  color: #ffffff !important;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  -o-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  opacity: 0;
  visibility: hidden;
}
.scrollToTop.show {
  bottom: 2.5rem;
  opacity: 1;
  visibility: visible;
}
.scrollToTop svg {
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.scrollToTop:hover svg, 
.scrollToTop:focus svg {
  -webkit-animation: toBottomFromTop 0.5s forwards;
  animation: toBottomFromTop 0.5s forwards;
}
@-webkit-keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
        transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
        transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1200px;
  }
}

.pg-content {
  overflow: hidden;
}

header#masthead.fixed {
  background: #fff;
  box-shadow: 0px 3px 6px #0000000F;
  padding: 5px 0;
  position: fixed;
  animation: headerAnimation linear forwards .5s;
  width: 100%;
  z-index: 9;
}
@keyframes headerAnimation{
  from{
    transform: translateY(-100px);
  }
  to{
    transform: translateY(0);
  }
}


@media screen and (max-width: 1601px) {
  div#bannerSlider.owl-carousel .owl-item .item {
    padding: 0 15%;
  }
  /*.getQuote h2.ft-poppins br {*/
  /*  display: none;*/
  /*}*/
  .getQuote h2.ft-poppins {
    font-size: 28px;
  }
  .pd-left {
    padding-left: 15%;
  }
  .pd-right {
    padding-right: 15% !important;
  }
  h2.ft-poppins {
   font-size: 32px;
  }
}

@media screen and (max-width: 1601px) {
  div#bannerSlider.owl-carousel .owl-item .item {
    padding: 0 10%;
  }
  .pd-left {
    padding-left: 10%;
  } 
  .pd-right {
    padding-right: 10% !important;
  }
  .bannerContent h1 {
    font-size: 48px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 1367px) {
  div#bannerSlider .bannerVector img {
    width: 35%;
  }
  div#bannerSlider.owl-carousel .owl-item .item {
    padding: 0 8%;
  }
  .pd-left {
    padding-left: 8%;
  } 
  .pd-right {
    padding-right: 8% !important;
  }
  .input-field.input-submit:before {
      left: 31%;
  }
}

@media screen and (max-width: 1290px) {
    .navbar-expand-lg .navbar-nav .nav-item {
        margin: 0 14px;
    }
    .ctn.text-center p br {
        display: none;
    }
    .bannerContent h1 {
        font-size: 44px;
    }
  div#bannerSlider .bannerVector img {
    width: 35%;
  }
  div#bannerSlider.owl-carousel .owl-item .item {
    padding: 0 5%;
  }
  .pd-left {
    padding-left: 5%;
  } 
  .pd-right {
    padding-right: 5% !important;
  }
  .team-work .seperator .icon {
    left: 18.5%;
  }
}

@media screen and (max-width: 1100px) {
    .input-field.input-submit:before {
      left: 35%;
  }
  .navbar-brand {
    width: 24%;
  }
  .navbar-expand-lg .navbar-nav .nav-item {
    margin: 0 11px;
  }
  .navbar-expand-lg .navbar-nav .nav-item:first-child {
    margin-left: 0;
  }
  .navbar-expand-lg .navbar-nav .nav-item:last-child {
    margin-left: 20px;
  }
  .navbar-expand-lg .navbar-nav {
    margin: 0;
    width: 100%;
    justify-content: flex-end;
  }
  .bannerContent h1 {
    font-size: 38px;
  }
  .bannerContent p {
    font-size: 17px;
    line-height: 26px;
  }
  h2.ft-poppins {
    font-size: 32px;
    line-height: 1.3;
  }
  .about h4 {
    font-size: 16px;
    line-height: 24px;
  }
  .offerBox h4 {
    font-size: 17px;
  }
  .offerBox p {
    font-size: 14px;
    line-height: 26px;
  }
  .counter .count-text {
    font-size: 16px;
  }
  .portVector {
    padding-right: 11%;
  }
  .view-portfolio .btn-custom .txt {
    font-size: 24px;
  }
  div#footer_widget .widget ul li {
    font-size: 14px;
  }
  div#footer_widget .widget h3 {
    font-size: 18px;
  }
  .how-it-works .infoBox h4 {
    font-size: 20px;
    line-height: 28px;
  }
  p {
    line-height: 26px;
  }
  .innerBanner .banner-form h2 br {
    display: none;
  }
  .innerBanner .banner-form h2 {
    font-size: 20px;
  }
  .quote-form .input-field .form-control, .est-form .form-control {
    height: 52px;
  }
  .benefitBox {
    padding: 40px 20px;
    box-shadow: 0 2px 35px 0 rgb(239 239 239 / 22%);
  }
  .team-work .seperator .icon {
    left: 12.5%;
  }
  .innerbannerContent h4 {
    line-height: 1.3;
    font-size: 17px;
  }
  .sec-portfolio .element-item {
    height: 310px;
  }
}

@media screen and (max-width: 1100px) and (min-width: 950px) {
  .navbar-expand-lg .navbar-nav .nav-item {
    margin: 0 9px;
  }
  .input-field.input-submit input[type="submit"] {
    font-size: 16px;
  }
  .quote-form .input-field .form-control, .est-form .form-control {
    font-size: 14px;
  }
}

@media screen and (max-width: 960px) {
    body.pg-content:not(.pg-estimate) .input-field.input-submit input[type="submit"] {
        padding: 0;
        font-size: 14px;
    }
  .container-fluid .ctn.text-center p {
      width: 75%;
  }
  div#navbarNav.collapse:not(.show) {
    display: block !important;
    height: 100vh !important;
    transform: translateX(-100%);
  }
  div#navbarNav {
    display: block;
    height: 100vh !important;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    transform: none;
    width: 50%;
    transition: all 0.4s ease-in-out !important;
  }
  div#navbarNav.collapsing {
    display: block !important;
  }
  ul.navbar-nav {
    padding: 30px 20px;
    background: #119289;
    height: 100%;
    display: block;
  }
  button.navbar-toggler {
    padding: 12px;
    background: #119289;
    border: 2px solid #119289;
    box-shadow: none !important;
    outline: none !important;
  }
  button.navbar-toggler span {
    filter: invert(1);
  }
  .navbar-expand-lg .navbar-nav .nav-item {
    display: block;
    width: 100%;
    margin: 0;
    padding: 14px 22px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1px;
    position: relative;
  }
  .navbar-expand-lg .navbar-nav .nav-item.btn-nav {
    margin: 0;
  }
  .navbar-expand-lg .navbar-nav .nav-link:after {
    display: none;
  }
  .navbar-expand-lg .navbar-nav .nav-link:hover {
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    font-size: 16px;
    display: inline;
  }
  .navbar-expand-lg .navbar-nav .nav-item.have-child ul.sub-dropdown {
    position: relative;
    top: auto !important;
    left: auto !important;
    display: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .navbar-expand-lg .navbar-nav .nav-item.have-child:hover > ul.sub-dropdown {
    margin: 10px 0;
  }
  .navbar-expand-lg .navbar-nav .nav-item.have-child:hover > ul.sub-dropdown {
  transform: none;
  opacity: 1;
  visibility: visible;
  }
  .about .row {
    align-items: center;
  }
  .secOffer .col-sm-12.col-md-4 {
    max-width: 50%;
    flex: 50%;
  }
  .ctn.text-center p {
    width: 100%;
  }
  .fixed .navbar-expand-lg .navbar-nav .nav-link, 
  body:not(.home) .navbar-expand-lg .navbar-nav .nav-link {
    color: #fff;
  }
  div#bannerSlider.owl-carousel .owl-item .item {
    padding: 0 15px;
    align-items: flex-end;
  }
  div#bannerSlider .bannerVector img {
    width: 80%;
    z-index: -1;
    top: -16%;
    left: 0;
    margin: auto;
    pointer-events: none;
  }
  .navbar-brand {
    width: 50%;
  }
  .bannerContent {
    padding: 40px;
    margin-bottom: 10%;
  }
  .secCta h3.ft-poppins {
    font-size: 22px;
    line-height: 1.3;
  }
  .secCta .btns .btn-custom.btn-with-arrow {
    margin: 0;
  }
  .secCta .btns .btn-custom {
    font-size: 15px;
  }
  div#footer_widget .col-12:nth-last-child(2),div#footer_widget .col-12:last-child {
    margin-top: 40px;
  }
  .how-it-works .col-sm-12.col-md-7,.how-it-works .col-sm-12.col-md-5 {
    max-width: 100%;
    flex: 100%;
  }
  .how-it-works .img-fluid {
    margin-top: 50px;
  }
  .navbar-expand-lg .navbar-nav .nav-item:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: #fff;
    position: absolute;
    left: 0;
    top: 16px;
  }
  .navbar-expand-lg .navbar-nav .nav-item.have-child:before {
    content: '\2b';
    font-family: 'Font Awesome 5 Free';
    color: #fff;
    position: absolute;
    right: 10px;
    top: 10px;
    left: auto;
    width: auto;
    height: auto;
    bottom: auto;
    font-size: 24px;
  }
  .navbar-expand-lg .navbar-nav .nav-item:last-child {
    border: none;
    padding: 0;
    padding-top: 14px;
  }
  .navbar-expand-lg .navbar-nav .nav-item:last-child:after {
    display: none;
  }
  .innerBanner .banner-form {
    margin-left: 0%;
  }
  .innerBanner .brands-icon {
    position: relative;
    bottom: -60px;
  }
  .innerBanner .brands-icon .images {
    display: block;
  }
  .innerBanner .brands-icon .images img {
    margin: 10px;
  }
  .secBenefits .col-sm-12.col-md-3 {
    max-width: 100%;
    flex: 100%;
    width: 100%;
    margin: 0;
  }
  .team-work .seperator .icon {
    left: 0;
  }
  h2.ft-poppins br {
    display: none;
  }
  .secExperience .custom-list li {
    font-size: 14px;
    margin: 10px 0;
  }
  .secExperience p {
    font-size: 14px;
    line-height: 24px;
  }
  .popup_init {
    background-size: cover !important;
  }
  .innerBanner {
    height: auto;
  }
  h2.ft-poppins br {
    display: none;
  }
  .getQuote h2.ft-poppins {
    font-size: 24px;
  }
  h2.ft-poppins {
    font-size: 24px;
  }
  .est-form {
    padding: 50px;
  }
  .est-form h4.ft-poppins {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
  }
  .input-field.input-submit:before {
    left: 48%;
  }
}

@media screen and (max-width: 940px) and (min-width: 768px) {
    .secBanner .col-sm-12.col-md-7 {
        max-width: 100%;
        flex: 100%;
    }
    .ctn.text-center p br {
        display: none;
    }
    .counter.bg-gradient .container {
        max-width: 100%;
        padding: 0 3%;
    }
    .secCta h3.ft-poppins br {
        display: none;
    }
    .secCta h3.ft-poppins {
        font-size: 18px;
    }
    body:not(.pg-estimate) .input-field.input-submit input[type="submit"] {
        font-size: 16px;
    }
    .quote-form .input-field .form-control, .est-form .form-control {font-size: 14px;padding: 0 18px;}
    .port-cont p {
        padding: 0;
    }
    .brand-images ul li {
        max-width: 100%;
    }
    .brand-images ul .owl-nav,
    .secOffer .row .owl-nav,
    .secBenefits .owl-nav, .technology .row .owl-nav {
        display: none;
    }
    .brand-images ul .owl-dots .owl-dot,
    .secOffer .row .owl-dots .owl-dot,
    .secBenefits .owl-dots .owl-dot,
    .technology .row .owl-dots .owl-dot {
        width: 14px;
        height: 3px;
        background: #cf3573;
        margin: 0 4px;
        border-radius: 4px;
        transition: all 0.3s ease-in-out !important;
    }
    .brand-images ul .owl-dots,
    .secOffer .row .owl-dots,
    .secBenefits .owl-dots,
    .technology .row .owl-dots {
        display: block;
        text-align: center;
    }
    .brand-images ul .owl-dots .owl-dot.active,
    .secBenefits .owl-dots .owl-dot.active,
    .secOffer .row .owl-dots .owl-dot.active,
    .technology .row .owl-dots .owl-dot.active{
        width: 44px;
    }
  .secBenefits .owl-item {
      padding: 20px 10px;
  }
  .testBox .txt p {
    padding: 0 7%;
  }
  section.technology .col-sm-12.col-md-3 {
        max-width: 100%;
        flex: 100%;
        width: 100%;
    }
    .techBox img {
        width: auto !important;
    }
    .techBox .pic {
        margin-bottom: 15px;
    }
    .technology .owl-item {
        padding: 30px 10px;
    }
    .techBox {
        box-shadow: 0 0 5rem 0 rgb(215 215 215 / 26%);
        border: 1px solid #eaeaea;
    }
    .secBenefits .col-sm-12.col-md-4.wow.fadeIn {
        width: 100%;
    }
    .secBenefits.bgWhite .benefitBox {
        box-shadow: 0 2px 35px 0 rgb(207 207 207 / 22%);
        border: 1px solid #ededed;
    }
    .why-tap .how-it-works .col-sm-12 {
        max-width: 100%;
        flex: 100%;
    }
    .secExperience .pd-right {
        padding: 0;
    }
}


@media screen and (max-width: 767px) {
    .brand-images ul .owl-nav,
    .secOffer .row .owl-nav,
    .secBenefits .owl-nav, .technology .row .owl-nav {
        display: none;
    }
    .brand-images ul .owl-dots .owl-dot,
    .secOffer .row .owl-dots .owl-dot,
    .secBenefits .owl-dots .owl-dot,
    .technology .row .owl-dots .owl-dot {
        width: 14px;
        height: 3px;
        background: #cf3573;
        margin: 0 4px;
        border-radius: 4px;
        transition: all 0.3s ease-in-out !important;
    }
    .brand-images ul .owl-dots,
    .secOffer .row .owl-dots,
    .secBenefits .owl-dots,
    .technology .row .owl-dots {
        display: block;
        text-align: center;
    }
    .brand-images ul .owl-dots .owl-dot.active,
    .secBenefits .owl-dots .owl-dot.active,
    .secOffer .row .owl-dots .owl-dot.active,
    .technology .row .owl-dots .owl-dot.active{
        width: 44px;
    }
    section.technology .col-sm-12.col-md-3 {
        max-width: 100%;
        flex: 100%;
        width: 100%;
        padding: 0 3px;
    }
    .techBox img {
        width: auto !important;
    }
    .techBox .pic {
        margin-bottom: 15px;
    }
    .technology .owl-item {
        padding: 30px 10px;
    }
    .pg-contact .quote-form {
        padding: 0 10%;
        margin-bottom: 40px;
    }
    .techBox {
        box-shadow: 0 0 5rem 0 rgb(215 215 215 / 26%);
        border: 1px solid #eaeaea;
    }
    .secBenefits .col-sm-12.col-md-4.wow.fadeIn {
        width: 100%;
    }
    .secBenefits.bgWhite .benefitBox {
        box-shadow: 0 2px 35px 0 rgb(207 207 207 / 22%);
        border: 1px solid #ededed;
    }
    .navbar-brand {
        width: 80%;
    }
    .bannerContent {
        padding: 0;
    }
    .brand-images ul .owl-nav,
    .secOffer .row .owl-nav {
    display: none;
}
.brand-images ul .owl-dots .owl-dot,
.secOffer .row .owl-dots .owl-dot {
    width: 14px;
    height: 3px;
    background: #cf3573;
    margin: 0 4px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out !important;
}
.brand-images ul .owl-dots,
.secOffer .row .owl-dots {
    display: block;
    text-align: center;
}
.brand-images ul .owl-dots .owl-dot.active,
.secOffer .row .owl-dot.active {
    width: 44px;
}
    div#portfolioSlider .item .portVector,
    div#portfolioSlider .item .port-cont{
        max-width: 100%;
    }
    .bannerContent h1 {
    font-size: 34px;
}
.btns .btn-custom {
    font-size: 16px;
    padding: 9px 15px;
}
    .ctn.text-center p br {
    display: none;
}
    .secOffer .row .owl-item {
    padding: 30px 10px;
}
.secOffer .col-sm-12.col-md-4 {
    max-width: 100%;
    flex: 100%;
    margin: 0 auto;
}
.container-fluid .ctn.text-center p {
    width: 85%;
}
  .team-work .seperator .icon {
    left: -15px;
  }
  .about .img {
    margin-bottom: 40px;
  }
  .offerBox {
    padding: 30px 20px;
    margin-bottom: 0;
  }
  .team-work .seperator svg.dash-right,
  .team-work .seperator svg.dash-right > * {
    /* width: 100% !important; */
  }
  .team-work .seperator .icon {
    left: -13px;
  }
  .team-work .row:nth-child(3) .img {
    margin-bottom: 40px;
  }
  div#portfolioSlider .item .port-cont {
    background: rgb(0 0 0 / 85%);
    padding: 40px;
    margin-right: 40px;
  }
  .portVector {
    position: absolute;
    top: 0;
    z-index: -1;
  }
  .port-cont p {
    padding-right: 0;
  }
  .testBox .txt p {
    padding: 0;
  }
  div#testimonilaSlider:hover .owl-nav button.owl-prev {
    left: -60px;
  }
  div#testimonilaSlider:hover .owl-nav button.owl-next {
    right: -60px;
  }
  .brand-images ul li {
    max-width: 100%;
  }
  .brand-images ul {
    justify-content: center;
  }
  .secCta h3 {
    text-align: center;
    margin-bottom: 30px;
  }
  .secCta .btns {
    text-align: center;
  }
  .secCta {
    padding: 60px 0;
  }
  .site-info p {
    font-size: 13px;
  }
  .how-it-works .infoBox .pic {
    width: 120px;
    height: 120px;
    padding: 30px;
  }
  .how-it-works .infoBox {
    padding-left: 140px;
  }
  .how-it-works .img-fluid {
    padding: 0 20%;
  }
  .counter .count-text {font-size: 14px;}
  .counter .count-title.count-number {
    font-size: 26px;
  }
  .counter.bg-gradient {
    padding: 60px 0;
  }
  .innerBanner .banner-form {
    margin-top: 20px;
  }
  .innerBanner .brands-icon {
    bottom: auto;
    margin-top: 30px;
  }
  .innerbannerContent h4 {
    margin-bottom: 10px;
  }
  .innerbannerContent {
    padding-bottom: 0;
  }
  .innerBanner {
    padding: 60px 0;
  }
  .benefitBox p {
    font-size: 13px;
    line-height: 22px;
  }
  .benefitBox .pic {
    width: 70px;
    height: 70px;
  }
  .secBenefits .col-sm-12.col-md-3 {
    margin-bottom: 20px;
  }
  .technology .col-sm-12.col-md-3 {
    max-width: 50%;
    flex: 50%;
  }
  .why-tap .secBenefits .col-sm-12.col-md-4 {
    margin-top: 20px;
  }
  .why-tap .benefitBox {
    padding: 40px;
  }
  .why-tap .how-it-works .img-fluid {
    margin: 40px 0;
  }
  .popup_init {
    height: 540px;
  }
  .secFaq .accordion-button {
    line-height: 1.4;
  }
  .contact-us .pic {
    margin-bottom: 30px;
  }
  .input-field.input-submit:before {
    left: 68%;
  }
  .est-form .input-field .input_col3 {
    column-count: auto;
  }
  .sec-portfolio .button {
    margin: 10px 2px;
  }
  .sec-portfolio .button-group {
    margin: 40px 0;
  }
  .sec-portfolio .element-item {
    height: 190px;
  }
  .sec-portfolio .item-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 440px) {
    div#footer_widget .col-12:nth-child(2),div#footer_widget .col-12:nth-child(3) {
    display: none;
}
div#navbarNav {
    width: 70%;
}
body:not(.pg-estimate) .input-field.input-submit input[type="submit"] {
    font-size: 14px;
}
    .secOffer .row .owl-item {
    padding: 30px 40px 20px;
}
  .secBanner .btns .btn-custom {
    width: 80%;
    margin: 10px auto;
  }
  .secBanner .btns {
    /* text-align: center; */
  }
  .container-fluid .ctn.text-center p {
    width: 100%;
  }
  .secOffer .col-sm-12.col-md-4 {
    /* max-width: 90%; */
    /* flex: 100%; */
    /* margin: 0 auto 20px; */
  }
  .how-it-works .img-fluid {
    padding: 0 10%;
  }
  .view-portfolio {
    position: relative;
    top: -70px;
    bottom: auto;
    right: auto;
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
  }
  .view-portfolio .btn-custom .txt {
    transform: none;
    right: auto;
    font-size: 16px;
  }
  .view-portfolio .btn-custom {
    padding: 10px;
    text-align: center;
    display: block;
  }
  div#portfolioSlider .item .port-cont {
    margin: 0;
  }
  div#footer_widget .col-12:nth-child(2) {
    margin-top: 40px;
  }
  .ft-logo img {
    width: 150px;
}
  .site-info {
    display: block;
    text-align: center;
  }
  div#testimonilaSlider:hover .owl-nav button.owl-prev {
    left: 0;
  }
  div#testimonilaSlider:hover .owl-nav button.owl-next {
    right: 0;
  }
  .testimonials .owl-nav button {
    top: auto;
  }
  br {
    display: none;
  }
  .pd-left {
    padding-left: 15px;
    padding-right: 20px;
  }
  .team-work .seperator {
    padding: 40px 0;
  }
  .bannerContent {
    padding: 0;
    text-align: center;
  }
  .bannerContent h1 {
    font-size: 27px;
  }
  .secBanner .btns .btn-custom {
    font-size: 15px;
    margin: 10px 0;
    width: auto;
  }
  .brands-icon .images {
    display: block;
    column-count: 1;
  }
  .brands-icon .images img {margin: 20px;}
  .secBanner .brands-icon.wow.fadeInUp {
    bottom: 40px;
    left: 0;
    right: 0;
  }
  div#bannerSlider.owl-carousel .owl-item .item {
    padding: 0;
  }
  .secOffer .col-sm-12.col-md-4:first-child {
    margin-top: 20px;
  }
  .secBenefits .col-sm-12.col-md-3 {
    max-width: 90%;
    flex: 100%;
    margin: 0 auto 20px;
  }
  .benefitBox p {
    font-size: 15px;
  }
  .benefitBox {
    padding: 40px;
    height: auto;
  }
  .benefitBox .pic {
    width: 80px;
    height: 90px;
  }
  .sec-portfolio .element-item {
    width: 44%;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    height: 192px;
    display: inline-block;
  }
  .contact-us .pic {
    height: 450px;
    overflow: hidden;
  }
  .contact-us .pic img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  .input-field.input-submit:before {
    left: auto;
    right: 8%;
    top: 12px;
  }
  .col {
    flex: 50%;
    margin: 10px 0;
  }
  div#footer_widget {
    padding: 70px 0 40px;
  }
  .innerBanner .banner-form h2 {
    font-size: 20px;
  }
  div#portfolioSlider .item {
  }
  .testBox .txt p {
     font-size: 15px;
     line-height: 24px;
  }
  button.navbar-toggler {
      padding: 8px;
  }
  div#portfolioSlider .item .port-cont h2.ft-poppins {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 600;
    }
    .port-cont p {
        font-size: 14px;
        line-height: 22px;
    }
    .port-cont h5.ft-poppins {
        font-size: 16px;
        margin: 0;
    }
    .port-cont .btn-discuss.btn {
        font-size: 14px;
        margin-top: 10px;
    }
    .innerbannerContent h4 {
        font-weight: 400;
        font-size: 15px;
    }
    .secFaq .accordion-button {
        font-size: 15px;
    }
    .pg-estimate .input-field.input-radio label {
        font-size: 13px;
    }
    .est-form h4.ft-poppins {
        font-size: 16px;
    }
    .pg-estimate .input-field.input-checkbox label {
        font-size: 13px;
    }
    .pg-estimate .input-field.input-submit input[type="submit"] {
        font-size: 15px;
        width: 100%;
    }
    .inputfile-box input {
        width: 75%;
    }
    .navbar-brand {
        width: 70%;
    }
    header#masthead .container {
        max-width: 100%;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 14px;
    }
}

@media screen and (max-width: 380px) {
  div#bannerSlider .bannerVector img {
    width: 100%;
    top: -19%;
  }
  .bannerContent {
    text-align: center;
  }
  .technology .col-sm-12.col-md-3 {
    max-width: 90%;
    flex: 100%;
    margin: 0 auto;
  }
  .sec-portfolio .element-item {
    width: 100%;
    margin: 10px 0;
    height: 360px;
  }
  .secExperience .custom-list {
    column-count: auto;
  }
  .est-form {
    padding: 40px 15px;
  }
  .bannerContent h1 {
        font-size: 23px;
        font-weight: 600;
    }
    .bannerContent p {
        font-size: 14px;
        line-height: 22px;
    }
    .secBanner .brands-icon.wow.fadeInUp {
        left: 0;
    }
    .brands-icon .images {
        column-count: 1;
    }
    .secOffer .row .owl-item {
        padding: 30px 30px 20px;
    }
    .how-it-works .infoBox {
        padding: 0;
        text-align: center;
    }
    .how-it-works .infoBox .pic {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto 20px;
    }
    ul.sub-dropdown li a {
        font-size: 12px;
    }
    .navbar-expand-lg .navbar-nav .nav-item.have-child ul.sub-dropdown {
        width: 220px;
    }
    div#navbarNav {
        width: 75%;
    }
    .secCta h3.ft-poppins {
        font-size: 16px;
    }
    .why-tap .how-it-works .infoBox {
        padding: 0;
    }
    .getQuote h2.ft-poppins {
        font-size: 21px;
    }
    .form__head {
        font-size: 18px !important;
    }
}

@media screen and (max-width: 340px) {
    .brands-icon .images img {
        margin: 7px;
    }
    .bannerContent {
        padding: 0;
    }
    .bannerContent h1 {
        font-size: 20px;
        line-height: 1.4;
    }
    .bannerContent p {
        font-size: 13px;
    }
    .secCta .btns .btn-custom {
        font-size: 13px;
        margin: 0;
        min-width: inherit;
        padding: 8px 15px;
    }
    .navbar-expand-lg .navbar-nav .nav-item {
        padding: 14px;
    }
    .navbar-expand-lg .navbar-nav {
        padding: 20px 10px;
    }
    .navbar-expand-lg .navbar-nav .nav-item.have-child ul.sub-dropdown {
        width: 200px;
        margin-top: 10px;
        padding: 10px 0;
    }
}

@media only screen and (max-width:1367px){
    .getQuote h2.ft-poppins br{
        display: block !important;
    }
    .thanku_sec{
     background-color: #cf3573;
     height: 70vh !important;
     color:#fff;
 }
}
 .getQuote h2.ft-poppins br{
     display:none;
 }
 span.plus{
     font-size: 29px;
     color: #fff;
 }
 .form__head{
     font-size:25px;
 }
 .offerBox p{
     font-size:14px;
 }
 .thanku_sec{
     background-color: #cf3573;
     height: 53vh;
     color:#fff;
 }
 .thanku_sec h1{
     font-size: 45px;
    font-weight: 700;
 }
 .thanku_sec p{
     color:#fff;
 }
 .thanku_sec .head{
     padding-top: 14%;
 }
 .custom_li_style{
     padding-top: 18px;
 }
 ul.custom-list li.custom_li_style:before{
         top: 18px;
 }
 
.element-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

label.chota_fnt {
    font-size: 13px;
}
label.chota_fnt a {
    color: #ce2b7f;
    text-decoration: underline;
}