/*----------------------------------------------
*
* [Default Stylesheet]
*
* Theme    : Leverage
* Version  : 2.0
* Author   : Codings
* Support  : codings.dev
* 
----------------------------------------------*/

/*----------------------------------------------

[ALL CONTENTS]

1. Root
2. Button
3. Effects

----------------------------------------------*/

/*----------------------------------------------
1. Root
----------------------------------------------*/

/* #region Root */

:root {
  --h1-font: 'Gilroy', sans-serif;
  --h1-size: 6rem;
  --h1-weight: 900;

  --h2-font: 'Poppins', sans-serif;
  --h2-size: 3rem;
  --h2-weight: 600;

  --p-font: 'Poppins', sans-serif;
  --p-size: 1rem;
  --p-weight: 400;

  --header-bg-color: #111111;
  --nav-brand-height: 35px;
  --nav-item-color: #f5f5f5;
  --top-nav-item-color: #f5f5f5;
  --hero-bg-color: #111111;
  --footer-brand-height: 80px;

  --primary-color: #dd1e4b;
  --secondary-color: #E0040B;

  --white-color: #f9f9f9;
  --black-color: #040402;
  --dark-grey-color: #191919;

  --primary-t-color: #2f323a;
  --secondary-t-color: #f5f5f5;
  --primary-p-color: #6f6f6f;
  --secondary-p-color: #8e8e8e;
  --primary-b-color: #f5f5f5;
  --primary-l-color: rgba(0, 0, 0, .25);
  --secondary-l-color: rgba(255, 255, 255, 0.25);

  --valid-color: #007a4d;
  --invalid-color: #e34f4f;

  --primary-bg-color: #f5f5f5;
  --primary-bg-color-2: #eeeeee;
  --primary-bg-color-3: #e5e5e5;

  --secondary-bg-color: #040402;
  --secondary-bg-color-2: #111111;
  --secondary-bg-color-3: #191919;

  --card-bg-color: #f5f5f5;

  --footer-bg-color: #111111;
}

/* #endregion Root */

/*----------------------------------------------
2. Button
----------------------------------------------*/
::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: #e8e8e8
}

::-webkit-scrollbar-thumb:hover {
  background: #fb5496
}

::-webkit-scrollbar-thumb {
  background-image: -webkit-linear-gradient(45deg, #ffbd84, #ff1f8e);
  background-image: -o-linear-gradient(45deg, #ffbd84, #ff1f8e);
  background-image: linear-gradient(45deg, #ffbd84, #ff1f8e)
}

/* #region Button */

.primary-button,
.primary-button:visited,
.primary-button:active {
  position: relative;
  z-index: 2;
  padding: 10px 25px;
  background-color: var(--primary-color);
  border-radius: 2px;
  color: var(--primary-b-color);
  font-weight: 400;
  border-radius: 25px;
}

.primary-button:hover,
.primary-button:focus {
  background-color: var(--primary-color);
  background-image: -webkit-linear-gradient(45deg, var(--secondary-color) 15%, var(--primary-color) 65%);
  background-image: linear-gradient(45deg, var(--secondary-color) 15%, var(--primary-color) 65%);
  color: var(--primary-b-color);
}

.dark-button,
.dark-button:visited,
.dark-button:active {
  position: relative;
  z-index: 2;
  padding: 10px 25px;
  background-color: var(--hero-bg-color);
  border-radius: 0;
  color: var(--white-color);
  font-weight: 400;
}

.dark-button:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background-image: -webkit-linear-gradient(45deg, var(--secondary-color) 15%, var(--primary-color) 65%);
  background-image: linear-gradient(45deg, var(--secondary-color) 15%, var(--primary-color) 65%);
}

.dark-button:after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 2px;
  left: 2px;
  bottom: 0;
  right: 0;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 0;
  background-color: inherit;
}

.dark-button.inherit:after {
  background-color: inherit;
}

.dark-button:hover,
.dark-button:focus,
.dark-button:hover:after,
.dark-button:focus:after {
  background-color: var(--primary-color) !important;
  background-image: -webkit-linear-gradient(45deg, var(--secondary-color) 15%, var(--primary-color) 65%) !important;
  ;
  background-image: linear-gradient(45deg, var(--secondary-color) 15%, var(--primary-color) 65%) !important;
  ;
  color: var(--white-color) !important;
  ;
}

footer .dark-button {
  background-color: var(--footer-bg-color);
}

/* #endregion Button */

/*----------------------------------------------
3. Effect
----------------------------------------------*/

/* #region Effect */

.effect-static-text {
  background-image: -webkit-linear-gradient(45deg, var(--secondary-color) 15%, var(--primary-color) 65%);
  background-image: linear-gradient(45deg, var(--secondary-color) 15%, var(--primary-color) 65%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.effect-static-text i {
  -webkit-text-fill-color: var(--primary-color);
}

.effect-motion-text,
.effect-motion-hover:hover {
  background-image: linear-gradient(to right, var(--primary-color) 20%, var(--primary-t-color) 40%, var(--primary-t-color) 60%, var(--primary-color) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: effect 1s linear infinite;
  animation: effect 1s linear infinite;
}

.effect-motion-text i,
.effect-motion-hover:hover i {
  -webkit-text-fill-color: var(--primary-color);
}

.effect-static-bg {
  background-image: -webkit-linear-gradient(45deg, var(--secondary-color) 15%, var(--primary-color) 65%);
  background-image: linear-gradient(45deg, var(--secondary-color) 15%, var(--primary-color) 65%);
}

.effect-motion-bg {
  background-image: -webkit-linear-gradient(45deg, var(--secondary-color) 15%, var(--primary-color) 65%);
  background-image: linear-gradient(45deg, var(--secondary-color) 15%, var(--primary-color) 65%);
  background-size: 200% auto;
  -webkit-animation: effect 1s linear infinite;
  animation: effect 1s linear infinite;
}

/* #endregion Effect */

.horn {
  background: #2b263a;
}

.horn-left {
  left: -259px;
  top: -10px;
}

.horn-right {
  top: -1px;
  right: -160px;
}

.horn-text {
  font-size: 45px;
  line-height: 72px;
  text-align: center;
  transform: rotate(343deg);
  font-weight: 900;
  /* font-family: 'Bebas Neue', cursive; */
}

.horn-text span {
  font-size: 50px;
  line-height: 20px;
}

.clr-red {
  color: #e00004;
}

.clr-blu {
  color: #062a60 !important;
}

.clr-blu-light {
  color: #444e60;
}

.btn-gradient {
  background-image: linear-gradient(to right, #e50000, #8d0010);
  border-radius: 30px;
  border: 2px solid #e50000;
  color: white;
}
.btn-gradient1 {

  border-radius: 30px;
  border: 2px solid #e50000;
  color: white;
}
.btn-gradient1:hover {
  background-image: linear-gradient(to right, #e50000, #8d0010);
  color: white;
}
.btn-gradient img {
  width: unset !important;
}

.btn-gradient:hover {
  border: 2px solid #e50000;
  opacity: 0.8;
  color: white;
  background-image: unset;
  background-color: #e50000 !important;
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.75);
  transition: all .5s ease-in-out;
}

.btn-gradient img {
  filter: brightness(0) invert();
}

.banner-padding {
  padding-top: 83px;
  padding-bottom: 83px;
}

.banner-padding h3 {
  font-size: 50px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8);
  font-style: italic;
}

.banner-padding h4 {
  font-size: 32px;
  font-weight: 500;
}

.banner-padding h4 span {
  font-size: 65px;
  font-style: italic;
  color: #e50000;
  font-weight: 700;
}

.banner-right {
  margin-top: 53px;
}

.hero-heading {
  font-size: 55px;
  font-weight: bold;
  margin: 75px 0px 0px 0px;
  line-height: 65px;
  font-family: 'Poppins', sans-serif;
}

.sub-hero-heading {
  font-size: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  line-height: 50px;
}

.online {
  margin-right: 10px;
}

.online a:hover {
  text-decoration: none;
}

.online em {
  display: block;
  color: black;
  white-space: pre;
  font-size: 11px;
  font-weight: 600;
  font-style: normal;
  white-space: nowrap;
}

.online span {
  font-size: 13px;
  color: #ec1c24;
  font-weight: 700;
  line-height: 1.2;
}

.first-navitem span,
.secound-navitem span {
  padding-left: 15px;
}

.ws-p {
  white-space: pre;
}

.mn-w-100 {
  min-width: 100px;
}

.fa-circle {
  color: #27ab40;
  font-size: 7px;
  padding-left: 5px;
}

.hero-section {
  overflow: hidden;
}

.round-div {
  height: 350px;
  width: 350px;
  background: #e00004;
  border-radius: 50%;
  bottom: 0px;
  right: -200px;
}

/* 3 packages */
/* Features Logo Packages  Start*/
#packages {
  padding: 2rem 0rem;
}

#packages .pakages-design-wrapper h2 {
  text-transform: initial;
  font-size: 40px;

}

#packages .pakages-design-wrapper p {
  padding-top: 10px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding-bottom: 18px;
  line-height: normal;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  margin: 0px 0px;
  transition: .3s ease;
  min-height: 400px;
}

.card:hover {
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0px 0px 20px -2px rgb(0 0 0 / 40%);
}

.card-button a {
  text-transform: uppercase;
}

.card:hover .label {
  background-color: #a300bb;
}

.card:hover .card-footer-bottom a {
  color: black;
}

.card:hover .card-footer-bottom p {
  color: black;
}

.card .card-title {
  font-weight: 700;
  font-size: 20px;
  font-weight: bold;
  font-family: sans-serif;
  color: black;
}

.card .card-text {
  font-weight: 400;
  font-size: 16px;
  color: #662bff;
}

/* .card-body{
padding: 2rem;
} */
.label {
  width: 7rem;
  height: 4rem;
  background-color: black;
  font-size: 16px;
  padding: 8px 0px 0px 13px;
  color: #fff;
  flex-direction: column;
  align-items: center;
  display: flex;
  clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 15% 100%, 0% 50%, 15% 0%);
  justify-content: center;
}

.label h5 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2px;
  text-transform: uppercase;
}

.label h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: line-through;
}

.card_body {
  display: flex;
  align-items: center;
  padding: 2rem;
  justify-content: space-between;
}

.card .seperator {
  background: #dfdfdf;
  width: 90%;
  height: 1px;
  position: relative;
  left: 5%;
}

.card .price h2 {
  color: red;
  font-size: 32px;
  font-weight: 600;
  font-family: sans-serif;
}

.card-body-content {
  overflow-y: scroll;
  max-height: 310px;
  height: 310px;
  padding: 10px 10px;
  border-right: 1px solid #dfdfdf;
  background-color: #f3f3f3;
}

.card-body-content ul {
  margin: 0;
  padding: 0;
}

.card-body-content ul li {
  font-size: 14px;
  list-style-type: none;
  line-height: 1.8;
}

.card-body-content ul li i.fa {
  color: red;
  padding-right: 7px;
}

.card-body-content h3 {
  padding: 10px 0px;
}

.card_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
  flex-wrap: nowrap;
}

.btn-tab {
  border: 1px solid #a300bb !important;
  text-transform: uppercase;
}

.btn-tab:hover {
  background-color: #fc560a !important;
  border: 1px solid #fc560a !important;
}

.btn.btn-default {
  background-color: #fc560a;
  border: 1px solid #fff;
  padding: 8px 18px;
  border-radius: 17px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.btn.btn-default:hover {
  background-color: #a300bb;
  border: 1px solid #a300bb;
}

.banner-btn:hover {
  background-color: #a300bb !important;
  border: 1px solid #a300bb !important;
}

.live-chat a:hover {
  color: #616161;
  text-decoration: none;
}

.live-chat h4:hover {
  color: #018f41;
}

.live-chat h6:hover {
  color: #018f41;
}

.live-chat .fa {
  color: #018f41;
}

.live-chat h6 {
  color: #616161;
  font-size: 12px;
}

.live-chat h4 {
  color: #575757;
  font-size: 13px;
}

.card-footer-bottom {
  padding: 0px 20px;
  background-color: #f3f3f3;
  justify-content: space-between;
  flex-wrap: nowrap;
  display: flex;
  align-items: center;
  align-items: center;
}

.card-footer-bottom p {
  font-size: 12px;
  font-weight: 500;
  color: gray;
}

.card-footer-bottom a {
  font-size: 12px;
  color: gray;
}

.card-footer-bottom a:hover {
  color: black;
  text-decoration: none;
}

/* Features Logo Packages  End*/

[type=button],
[type=reset],
[type=submit],
button {
  display: none;
}

/* services */
.pad-tb {
  padding-top: 100px;
  padding-bottom: 100px
}

.pr--100 {
  padding-right: 100px
}

.pl--100 {
  padding-left: 100px
}

.pl--50 {
  padding-left: 50px
}

.pr--50 {
  padding-right: 50px
}

.mr15 {
  margin-right: 15px
}

html .pl5 {
  padding-left: 5px !important
}

.pt0 {
  padding-top: 0
}

.pm0 {
  padding-bottom: 0
}

.mt0 {
  margin-top: 0
}

.mb0 {
  margin-bottom: 0
}

.mt10 {
  margin-top: 10px
}

.ml10 {
  margin-left: 10px
}

.mt20 {
  margin-top: 20px
}

.mt30 {
  margin-top: 30px
}

.mt40 {
  margin-top: 40px
}

.mt50 {
  margin-top: 50px
}

.mt60 {
  margin-top: 60px
}

.mt70 {
  margin-top: 70px
}

.mt80 {
  margin-top: 80px
}

.mt90 {
  margin-top: 90px
}

.mt100 {
  margin-top: 100px
}

.mb10 {
  margin-bottom: 10px
}

.mb20 {
  margin-bottom: 20px
}

.mb25 {
  margin-bottom: 25px
}

.mb30 {
  margin-bottom: 30px
}

.mb40 {
  margin-bottom: 40px
}

.mb50 {
  margin-bottom: 50px
}

.mb60 {
  margin-bottom: 60px
}

.mb70 {
  margin-bottom: 70px
}

.mb80 {
  margin-bottom: 80px
}

.mb90 {
  margin-bottom: 90px
}

.mb100 {
  margin-bottom: 100px
}

.m0 {
  margin: 0 !important
}

.p0 {
  padding: 0 !important
}

.pt10 {
  padding-top: 10px
}

.pt20 {
  padding-top: 20px
}

.pt30 {
  padding-top: 30px
}

.pt40 {
  padding-top: 40px
}

.pt50 {
  padding-top: 50px
}

.pt60 {
  padding-top: 60px
}

.pt70 {
  padding-top: 70px
}

.pt80 {
  padding-top: 80px
}

.pt90 {
  padding-top: 90px
}

.pt100 {
  padding-top: 100px
}

.pt110 {
  padding-top: 110px
}

.pt120 {
  padding-top: 120px
}

.pt130 {
  padding-top: 130px
}

.pt140 {
  padding-top: 140px
}

.pb10 {
  padding-bottom: 10px
}

.pb20 {
  padding-bottom: 20px
}

.pb30 {
  padding-bottom: 30px
}

.pb40 {
  padding-bottom: 40px
}

.pb50 {
  padding-bottom: 50px
}

.pb60 {
  padding-bottom: 60px
}

.pb70 {
  padding-bottom: 70px
}

.pb80 {
  padding-bottom: 80px
}

.pb90 {
  padding-bottom: 90px
}

.pb100 {
  padding-bottom: 100px
}

.pb110 {
  padding-bottom: 110px
}

.pb120 {
  padding-bottom: 120px
}

.pb130 {
  padding-bottom: 130px
}

.pb140 {
  padding-bottom: 140px
}

.common-heading {
  padding: 0;
  text-align: center;
  position: relative;
  /* z-index: 10; */
}

#services .service_list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  clear: both;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  background-color: #dd1e4b;
  background-image: -moz-linear-gradient(145deg, #0039e4, #04dbf1);
  background-image: -webkit-linear-gradient(145deg, #0039e4, #04dbf1);
  background-image: linear-gradient(145deg, #dd1e4b, #583250);
  box-shadow: 30px 30px 65px 0px #e00004;
  -webkit-box-shadow: 30px 30px 65px 0px #e000041f;
  -moz-box-shadow: 30px 30px 65px 0px rgba(2, 156, 236, 0.3);
}

#services .service_list li {
  display: inline-block;
  width: 33.333%;
}

#services .service_list li .item_content {
  padding: 45px 30px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

#services .service_list li:nth-child(3) .item_content,
#services .service_list li:nth-child(6) .item_content {
  border-right: 0px !important;
}

#services .service_list li:nth-child(4) .item_content,
#services .service_list li:nth-child(5) .item_content,
#services .service_list li:nth-child(6) .item_content {
  border-bottom: 0px !important;
}

#services .service_list li .item_content h4 {
  margin: 15px auto;
  color: inherit;
}

#services .service_list li .item_content p {
  line-height: 1.5;
  color: inherit;
}

#services .service_list li .item_content:hover {
  background-color: #fff;
  color: #333;
}

.bg-btn7 {

  background: -moz-linear-gradient(-45deg, #fc00c7 0, #1c4efd 54%, #00aded 100%);
  background: #dd1e4b !important;

  color: white !important;
}

.btn-main {
  font-size: 16px;
  font-weight: 400;
  font-family: Poppins, sans-serif;
  padding: 18px 32px;
  line-height: 56px;
  text-align: center;
  outline: 0;
  color: #fff;
  background-color: #f5f4f4;
  border: none;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  display: inline-block;
  position: relative;
  -webkit-box-shadow: 0 10px 15px 0 rgba(233, 30, 99, .15);
  box-shadow: 0 10px 15px 0 rgba(233, 30, 99, .15);
}

/* Testimonials */
blockquote,
q {
  display: block;
  margin: 2rem 0;
  quotes: none;
  quotes: none;
  font-style: italic;
  padding: 1rem 1.5rem;

  text-align: center;
}

.main_body .ourpartners_new #testimonials_carousel .carousel-item blockquote {
  border-left: none;
  margin: 40px auto;
  width: 80%;
  color: #fff;
  font-size: 17px !important;
  line-height: 25px;
}

.main_body .ourpartners_new #testimonials_carousel .carousel-item blockquote img {
  width: 40px;
  margin: 0 auto 25px;
}

.main_body .ourpartners_new .partners_logos ul {
  margin: 40px auto 0;
  padding: 0;
  display: inline-block;
  text-align: center;
}

.main_body .ourpartners_new #testimonials_carousel .carousel-item blockquote img {
  width: 40px;
  margin: 0 auto 25px;
}

/* Testimonials */
.img-responsive {
  width: 40px !important;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  position: relative;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: 20px;
}

small {
  font-weight: bold;
}


@media screen and (min-width:992px) and (max-width:1199px) {
  #services .service_list li .item_content {
    padding: 25px 10px
  }

  #services .service_list li .item_content h4 {
    font-size: 18px
  }
}




@media only screen and (max-width:1150px) {
 

  .service-sec-list h5 {
    font-size: 15px;
    line-height: 24px
  }

  .-service-list li a {
    font-size: 11px
  }

  .-service-list li {
    padding: 0 3px
  }

 
}

@media only screen and (max-width:991px) {
  .cta-left-img {
    display: none;
  }
  .cta-left-img { 
    display: none;
  }
  .popup-modal1 .modal-dialog {
    min-height: 100%;
    margin: 0 0 0 auto;
    background: #fff
  }

  .popup-modal1 .modal-content {
    border: 0
  }

  .card-stats .statistics {
    padding: 15px
  }

  .pr--100 {
    padding-right: 0
  }

  .pl--100 {
    padding-left: 0
  }

  .pl--50 {
    padding-left: 0
  }

  .pr--50 {
    padding-right: 0
  }

  .dg-hero-img0 {
    transform: translateZ(0);
    margin-top: 30px
  }

  #testinomials {
    padding-bottom: 0
  }

  #testinomials .row.mt60 {
    margin-top: 0
  }

  #testinomials .testimonial-card {
    text-align: center !important
  }

  #testinomials .testimonial-card .-client-details- {
    display: block !important
  }

  #testinomials #testimonials-avatar {
    text-align: center;
    margin-top: 15px
  }

  .dot-c1 {
    width: 45px;
    height: 45px;
    margin: 5px
  }

  .div-portfolio- {
    padding: 30px 20px
  }

  .itm-media-object {
    text-align: left
  }

  .ag-dg2 {
    border-radius: 8px 8px 50px 8px;
    right: 0
  }

  .ag-dg1 {
    border-radius: 8px 8px 8px 50px;
    left: 0
  }

  .shpdez2 {
    width: 60px;
    height: 60px
  }

  .img-block-ca2 .abt-ca2 {
    border-radius: 50px 00px 50px 0;
    position: relative;
    z-index: 5;
    width: 90%
  }

  .img-block,
  .service-sec-brp,
  .service-sec-list {
    margin-top: 30px
  }

  .posiqut {
    opacity: .2;
    top: 0
  }

  .tcd {
    padding: 40px 30px;
    border-radius: 40px 8px 8px 8px;
    margin-top: 30px
  }

  .pl50 {
    padding-left: 0 !important
  }

  .div-item-info {
    text-align: center;
    margin-top: 30px
  }

  .minimal-portfolio,
  .testinomial-section-app {
    text-align: center
  }

  .client-logoset {
    padding: 0 15px
  }

  .about-sec-app .text-l {
    text-align: center !important
  }

  .cta-card {
    text-align: center
  }

  .onloadpage .pre-text- {
    width: 88%
  }

  .video-intro-pp {
    margin-top: 20px;
    text-align: center
  }

  .-content-sec,
  .content-sec {
    display: block !important
  }

  .mr25 {
    margin-right: 0
  }

  .mobile-app- {
    text-align: center
  }

  .hero-heading-sec2 h1 {
    font-size: 40px;
    line-height: 50px
  }

  .sctxt {
    font-size: 40px
  }

  .portfolio-block {
    padding: 20px;
    display: block
  }

  .portfolio-item-info {
    width: 100%;
    padding-right: 0
  }

  .portfolio-item-image {
    width: 100%;
    text-align: center;
    margin-top: 30px
  }

  .portfolio-item-info .reviews-card {
    padding: 20px
  }

  .header-heading .title- {
    text-align: center
  }

  .servie-key-points {
    margin-top: 30px
  }

  .servie-key-points h4 {
    text-align: center
  }

  .service-desc- {
    text-align: center
  }

  .m-mt50 {
    margin-top: 50px
  }

  .m-mt30 {
    margin-top: 30px
  }

  .lead-gen-client .clients-logo {
    max-height: max-content;
    min-height: auto;
    padding: 30px 10px
  }

  .main-header.sticky {
    height: 65px
  }

  .main-header.sticky .dsk-logo {
    line-height: 65px
  }

  .main-header.sticky .nav-brand img {
    max-height: 55px
  }

  .footer-badges- {
    margin-top: 20px
  }

  .footer-brands {
    text-align: center
  }

  .ftr-brand-pp .btn-main {
    width: max-content;
    margin: 20px 0 0 0;
    display: block
  }

  .review-icons a {
    margin-top: 30px
  }

  .review-ref {
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center
  }

  .service-sec-brp p {
    font-size: 15px;
    line-height: 24px
  }

  .m-mb30 {
    margin-bottom: 30px
  }

  .mt30- {
    margin-top: 0
  }

  .m-t-c,
  .text-l {
    text-align: center !important
  }

  .col-lg-3-cus {
    width: 50%
  }

  .col-lg-6-cus {
    width: 50%
  }

  .hero-service-cards {
    margin-top: 40px
  }

  .hero-content-sec {
    display: block;
    text-align: center;
    margin-top: 40px
  }

  .title-hero-oth p {
    font-size: 20px;
    margin: 20px 0 0 0
  }

  .hero-heading-sec>p {
    color: #fff000;
    font-size: 18px;
    max-width: 100%;
    margin: 20px 0
  }

  .end-footer-,
  .footer-link--,
  .hero-heading-sec {
    text-align: center
  }

  .hero-heading-sec h2 span {
    display: inline-block
  }

  .hero-card-web {
    padding-top: 150px;
    padding-bottom: 100px;
    height: auto
  }

  .breadcrumb-area {
    padding: 120px 0 60px 0
  }

  .common-heading h2,
  .common-heading h4,
  .common-heading>span,
  .header-heading p,
  .image-block,
  .single-image {
    text-align: center
  }

  .single-image {
    margin: 30px auto 0;
    display: block
  }

  .lead-intro- {
    margin: 30px auto 0;
    display: block
  }

  .portfolio-section:before {
    height: 300px
  }

  .wide-block:after {
    background-size: 150px;
    background-position: right bottom;
    opacity: .6
  }

  .block-space- {
    max-width: 70%
  }

  .wide-block {
    padding: 20px
  }

  .navbar .mobile-menu {
    display: inline-block
  }

  .mobile-none {
    display: none
  }

  .navbar-light .navbar-toggler {
    color: #000;
    border-color: transparent
  }

  .custom-btn {
    padding: 0 25px !important;
    line-height: 42px
  }

  .header-heading h1 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 1.2;
    text-align: center
  }

  .header-heading p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px
  }

  .btn-main {
    width: max-content;
    margin: 0 auto;
    display: block
  }

  .hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
    height: auto
  }

  .image-block {
    margin-bottom: 30px
  }

  .pad-tb {
    padding-top: 80px;
    padding-bottom: 80px
  }

  .user- {
    margin: 0 auto;
    display: table
  }

  .opl ul li,
  .statistics {
    margin-bottom: 30px
  }

  .statistics {
    text-align: left
  }

  .about-agency p,
  .about-image,
  .block-1 .small,
  .block-1 .statnumb,
  .case-study1 p,
  .case-study3 p,
  .common-heading.pp,
  .email-subs,
  .filter-menu,
  .in-stats .statistics,
  .office-text,
  .service p,
  .testimonial-card .t-text {
    text-align: center
  }

  .small {
    margin-top: 0
  }

  .small .statistics span {
    color: #050748
  }

  .statistics-img {
    width: 80px;
    height: 80px
  }

  .small .statistics-img {
    width: 80px;
    height: 80px
  }

  .icon-set,
  .opl ul li {
    width: 33.333%
  }

  .small .statistics span,
  .statistics span {
    font-size: 35px
  }

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

  .testinomial-section {
    background-size: 0
  }

  .img-design,
  .testimonial-card .t-text,
  .work-card-set {
    margin-top: 40px
  }

  .testinomial-section .owl-carousel .owl-dots {
    position: relative;
    width: 100%;
    text-align: center
  }

  .pl25 {
    padding-left: 0 !important
  }

  .client-thumbs {
    margin: 30px auto 0;
    display: table
  }

  .enquire-image {
    margin-top: 30px
  }

  .office-card {
    margin-bottom: 60px
  }

  .office-text p {
    padding: 0;
    margin: 0 0 20px
  }

  .email-subs p {
    margin-bottom: 30px
  }

  .footer-social-media-icons a {
    margin: 0 10px
  }

  .footer-svg {
    margin: -3px 0 0
  }

  .block-1 .small {
    margin-top: 50px
  }

  .in-stats .statistics {
    margin-bottom: 0;
    display: inline-block
  }

  .block-1 .statnumb {
    margin: 0
  }

  .in-stats .statistics span {
    font-size: 35px;
    color: #ff1f8e
  }

  .about-image {
    margin-bottom: 30px
  }

  .ps-block {
    padding: 0;
    margin: 30px 0 0
  }

  .contact-details {
    margin-top: 60px
  }

  .filter-menu,
  .m-mt30 {
    margin-top: 30px
  }

  .showin-mobile {
    display: block
  }

  .fl-hero {
    background-position: center center, center center;
    background-size: 0, cover;
    background-repeat: no-repeat, no-repeat
  }

  .active-dark .fl-hero {
    background: url(../images/hero/freelancer.html), url(../images/shape/hero-shape.html), #101010;
    background-position: center center, center center;
    background-size: 0, cover;
    background-repeat: no-repeat, no-repeat
  }

  .counter-facts {
    margin: 60px 0 0 0;
    text-align: center
  }

  .s-block {
    padding: 50px 15px
  }

  .mmt30 {
    margin-top: 30px
  }

  .singl-heripic {
    margin-top: 30px
  }

  .itm-media-object h4 {
    text-align: left
  }

  .lead-gen-client .clients-logo {
    margin: 0 10px
  }
}

@media only screen and (min-width:768px) {
  .hidden-md {
    display: none
  }
}

@media only screen and (max-width:767px) {
  .hidden-arrow {
    display: none !important;
  }
  .hero-section a {
    margin-top: 10px
  }

  .dsk-logo {
    line-height: 60px
  }

  #topbar .col-md-6 {
    text-align: center !important
  }

  .main-header #topbar a {
    padding: 8px 10px 2px
  }

  #about .btn-main,
  #clients_section .btn-main,
  #order_btn_wrap .btn-main {
    margin: 0 auto 10px !important
  }

  .psforgt {
    margin-top: 10px;
    display: block;
    text-align: center
  }

  .social-btnnxx {
    display: flex
  }

  .login-form-div {
    max-width: 100%;
    margin: 0 15px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px
  }

  .hero-digital-agency-1 .header-heading h1 {
    font-size: 40px;
    line-height: 50px
  }

  .video-review+.video-review {
    margin-top: 30px
  }

  .video-testimonial {
    display: block
  }

  .mr15 {
    margin-right: 0
  }

  .itm-media-object .media .img-ab- {
    width: 55px
  }

  .-content-sec .title-hero-oth p {
    margin: 20px 0 0 0
  }

  .app-hero-bnr,
  .img-hro {
    margin-top: 30px
  }

  .niwax {
    transform: translate3d(0, 0, 0) !important
  }

  .shape-c1,
  .shape-c2,
  .shape-c3 {
    opacity: .3
  }

  .apppg li p {
    font-size: 15px
  }

  .industry-workfor {
    padding: 15px;
    display: block;
    text-align: center;
    margin: 0 auto 15px
  }

  .industry-workfor img {
    width: 45px
  }

  .industry-workfor h6 {
    margin: 5px 0 0 0;
    font-size: 14px;
    line-height: 20px
  }

  .light-bgs {
    padding: 30px 0
  }

  .s-block-content-large {
    margin: 0;
    width: 100%;
    text-align: center
  }

  .s-card-icon-large {
    width: 150px;
    margin: 0 auto 20px
  }

  .wide-sblock {
    display: block;
    text-align: left;
    padding: 30px 20px
  }

  .s-block-content {
    margin: 0;
    text-align: center
  }

  .footer-link-v2 a {
    padding: 14px 0
  }

  .clients-logo {
    padding: 60px 15px
  }

  .cta-call a {
    font-size: 20px
  }

  .itm-media-object .media-body {
    margin-left: 15px
  }

  .badges-content p {
    padding: 0 0
  }

  .footer-badges- li a img {
    width: 100%
  }

  .service-sec-list h5 {
    font-size: 18px;
    line-height: 28px
  }

  .-service-list li a {
    font-size: 13px
  }

  .skyline-img {
    text-align: center
  }

  .-cta-btn p {
    margin: 0 0 30px 0;
    font-size: 25px;
    line-height: 35px
  }

  .free-cta-title {
    display: block
  }

  .col-lg-6-cus {
    width: 100%;
    text-align: center
  }

  .col-lg-3-cus {
    width: 100%;
    text-align: center
  }

  .service-slide {
    max-width: initial
  }

  .about-freelance p {
    text-align: center
  }

  .about-lead-gen p {
    text-align: center
  }

  .why-choos-lg p {
    text-align: center
  }

  .why-choos-lg .media-body p {
    text-align: left
  }

  .follow-label h6 {
    margin: 0 0 10px 0
  }

  .follow-label {
    display: block;
    text-align: center
  }

  .follow-label h6:after {
    content: none
  }

  .follow-label a {
    font-size: 20px
  }

  .tabs-layout .nav-tabs .nav-link {
    padding: 12px 35px;
    margin: 0 auto 10px
  }

  .tabs-layout .nav-tabs .nav-item {
    margin-bottom: 5px;
    display: contents
  }

  .about-statistics .statistics,
  .form-blog {
    margin-bottom: 30px
  }

  .order1 {
    order: 1
  }

  .order2 {
    order: 2
  }

  .pad-tb {
    padding-top: 60px;
    padding-bottom: 60px
  }

  .icon-set,
  .opl ul li {
    width: 50%
  }

  .shape-a1 {
    bottom: -130px;
    left: -50px
  }

  .shape-a2 {
    bottom: -30px;
    right: -70px
  }

  .portfolio-meta {
    margin-top: 30px
  }

  .pr25 {
    padding-right: 0 !important
  }

  .form-blog {
    background: #fafafb;
    padding: 30px 15px
  }

  #services .service_list li .item_content {
    padding: 30px 15px;
    border-right: 0 !important
  }

  #services .service_list li {
    width: 100%
  }

  #services .service_list li:nth-child(4) .item_content,
  #services .service_list li:nth-child(5) .item_content,
  #services .service_list li:nth-child(6) .item_content {
    border-bottom: 1px solid rgba(255, 255, 255, .3) !important
  }

  .seals_area .seals_lits li {
    display: block;
    width: 100%;
    transform: unset !important
  }

  .seals_area .seals_lits li .box_content {
    padding: 30px 15px
  }
}

@media (min-width:576px) {
  .modal-dialog {
    max-width: 400px;
    margin: 1.75rem auto
  }
}

@media (max-width:580px) {
  .ftr-brand-pp .btn-main {
    width: max-content;
    margin: 20px auto 0;
    display: block
  }

  .ftr-brand-pp {
    text-align: center
  }
}

@media only screen and (max-width:520px) {
  .service-point-2 li {
    float: none;
    width: 100%
  }

  .hero-heading-sec h2 {
    font-size: 35px;
    line-height: 45px
  }

  .footer-badges- {
    display: flow-root;
    justify-content: space-between
  }

  .footer-badges- li {
    display: block;
    width: 50%;
    float: left;
    padding: 0 6px
  }

  .m-pad {
    padding: 0
  }

  .main-header {
    padding: 0 15px
  }

  .title-serv-c {
    text-align: center
  }

  .author-block .media,
  .contact-details .media {
    display: block
  }

  h1 {
    font-size: 32px;
    line-height: 42px
  }

  .bread-title h2,
  h2 {
    font-size: 26px;
    line-height: 36px
  }

  h3 {
    font-size: 24px;
    line-height: 34px
  }

  h4 {
    font-size: 20px;
    line-height: 30px
  }

  h5 {
    font-size: 18px;
    line-height: 26px
  }

  h6 {
    font-size: 16px;
    line-height: 24px
  }

  .small .statistics span,
  .statistics span {
    font-size: 30px
  }

  .custom-control label {
    font-size: 12px
  }

  .contact-details .media-body {
    padding: 0;
    margin: 20px 0 0
  }

  .shape-a1 {
    bottom: -130px;
    left: -150px
  }

  .filters .filter-menu li {
    padding: 20px 12px;
    margin-bottom: 6px
  }

  .comments-block .user-info h5 span {
    font-size: 15px;
    text-align: left;
    float: none;
    color: #6a6a8e;
    display: block;
    padding: 5px 0 0
  }

  .author-block .user-info {
    margin: 15px 0 0
  }

  .replied {
    padding-left: 0
  }

  .client-logoset>ul li {
    width: 33%
  }

  .client-logoset>ul li:nth-last-child(1) {
    display: none
  }

  .about-dg-ca2 img {
    margin-bottom: 20px
  }
}

@media only screen and (max-width:350px) {
  .header-heading h1 {
    font-size: 30px;
    line-height: 40px
  }

  h2 {
    font-size: 24px;
    line-height: 32px
  }

  .info-card a {
    font-size: 16px
  }

  .custom-btn {
    padding: 0 14px !important;
    line-height: 42px
  }

  .filters .filter-menu li {
    font-size: 12px
  }

  .case-study4 .card-stats .statistics {
    padding: 10px
  }

  .case-study4 .statistics h3 {
    font-size: 15px;
    margin: 10px 0 0
  }
}

@media only screen and (max-width:767px) {
  .hidden-xs {
    display: block
  }

  .rpb-cart-table table tr td.rpbrs-titl::before {
    content: attr(data-title) ": ";
    font-weight: 700;
    float: left
  }

  .rpb-cart-table table tr td {
    display: block;
    text-align: right !important
  }

  .rpb-cart-table table thead {
    display: none
  }

  .rpb-cart-table table .product-thumbnail {
    display: none
  }

  .cart-pg-coupon button,
  .cart-pg-coupon input {
    width: 48%
  }

  .update-cart button {
    width: 100%
  }

  .post-info a.btn-main {
    width: max-content;
    margin: 10px 0 0 0;
    display: block
  }
}

@media only screen and (max-width:520px) {
  .btn-grp a+a {
    margin-top: 15px
  }

  .btn-grp a {
    width: 100%;
    margin: 0
  }

  .custom-control label {
    font-size: 12px;
    padding: 0 0 0 8px;
    text-indent: 1px;
    line-height: 16px
  }
}

.cta-left-img {

  left: 2px;
  top: 9px;
}
.cta-left-img {
  
  left: 2px;
  top: 7px;
}

.hidden-arrow {
  margin-left: 220px;
}