/*Main Css */
:root {
    --primary: #007BFF;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
    --font-heading: "Archivo" , sans-serif;
    --font-accent: "Inter" , sans-serif;
    --font-body: "Inter" , sans-serif;
    --icon: "Font Awesome 6 Pro", sans-serif;
}
::selection {
    background: #007BFF;
    color: #fff;
    text-shadow: none;
}
::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}
::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: #007BFF;
}

/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1440px;
}

html{overflow-x: hidden;}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #92969F;
    background: #000;
}
body.inner-header {
    padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    display: block;
    font-weight: 600;
    color: #FFF;
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

span {
    display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
    font-family: var(--font-body);
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}

/* Padding Classes */
.pad-zero {
    padding: 0px;
}
.pad-l-zero {
    padding-left: 0px;
}
.pad-r-zero {
    padding-right: 0px;
}
.ovr-hiddn {
    overflow: hidden;
}
.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.overlay {
    display: none;
}
.overlay.active {
    display: block;
}

/* Heading Classes */
.hding-1 h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
}
.highlighted {
    color: #ff5e14;
}

/* Custom Slick Css */
.slick-list {
    margin: 0 -15px;
}
.slick-slide {
    margin: 0 15px;
}
.slick-dots {
    padding: 50px 0 0;
    text-align: center;
}
.slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}
.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}
.slick-dots li button {
    height: 8px;
    width: 30px;
    border-radius: 100px;
    padding: 0px;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}
.slick-dots li.slick-active button {
    background: #B6B9FC;
    width: 55px;
}

/*header css*/
header {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    position: relative;
    background: transparent;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
}
.menuWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-block;
}
.logo img {
    display: block;
}
.header-wrapper {
    border-radius: 20px;
    border: 1px solid rgba(244, 246, 248, 0.20);
    background: #0A192F;
    padding: 15px 20px;
}
.main-header {
    padding-top: 40px;
}

/* Hamburger Menu */
.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}
.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--primary);
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}
.menu-Bar span:nth-child(1) {
    top: 0;
}
.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}
.menu-Bar span:nth-child(3) {
    top: 16px;
}
.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}
.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}
.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

/* Menu Css */
.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}
.menu > li  {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 35px;
}
.menu > li > a {
    display: block;
    color: #9E9E9E;
    font-family: Archivo;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.8;
    border-bottom: 3px solid transparent;
    padding: 0 0 4px 0;
}
.menu > li > a:hover {
    color: #fff;
    border-bottom: 3px solid #fff;
}
.menu li.active a {
  color: #fff !important; /* active link ko white karo */
  border-bottom: 3px solid #fff;
}
.header-btn {
    background: var(--primary);
    color: white !important;
    padding: 16px 30px !important;
    border-radius: 10px;
    font-weight: 400 !important;
}
.header-btn:hover{
    transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
    color: var(--primary);
}

@keyframes scale-display {
    0% {
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
  }
  @keyframes scale-display--reversed {
    0% {
      display: inline-flex;
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
    99% {
      display: inline-flex;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      display: none;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
  }

/* Menu Dropdown CSS */
.has-child {
    position: relative;
    z-index: 1;
}
.dropdown {
    position: absolute;
    background: white;
    /* padding: 1rem; */
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
}

@keyframes slide{
    0% {
      height: 0;
    }
    100% {
      height: auto;
    }
}
.dropdown .dropdown {
    left: 100%;
    top: 0;
}
.dropdown ul li a {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    padding: 10px 20px;
}
.dropdown li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.chev.rotate {
    transform: rotate(180deg);
}
.chev {
    transition: .5s ease;
}
/* Dropdown CSS*/

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }
    100% {
        top: 115px;
        opacity: 0;
    }
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }
    100% {
        top: 40px;
        opacity: 1;
    }
}

/* Main Banner CSS */
.mainBanner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.banner-content {
    padding: 146.12px 0 139.33px;
}
h1.banner-heading {
    font-size: 70px;
    line-height: normal;
    margin-bottom: 20px;
    margin-right: -44px;
}
span.sub-heading {
    border-radius: 40px;
    border: 1px solid rgba(0, 201, 167, 0.30);
    background: rgba(0, 201, 167, 0.10);
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px; /* 185.714% */
    letter-spacing: 0.28px;
    padding: 5px 16px;
    margin-bottom: 21px;
}
p.banner-text {
    color: var(--Text, #92969F);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: 0.36px;
    max-width: 100%;
    padding-bottom: 20px;
}
.past-client{
    margin-top: 41px;
}
.banner-img {
    text-align: end;
}


/* -------------------------counter CSS------------------------  */
section.sec-counter {
    background: linear-gradient(180deg, #030C16 0%, rgba(3, 12, 22, 0.45) 50.9%, rgba(3, 12, 22, 0.00) 100%);
    padding: 67.56px 0 120.32px;
}
ul#counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
}
.counter-wrapper .counter {
    display: flex;
    align-items: center;
    gap: 20px;
}
.counter-wrapper .counter span.count {
    font-weight: 700;
    font-size: 45px;
    color: #fff;
}
ul#counter li .counter>div {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 58px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.16px;
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
}
ul#counter li {
    background-repeat: no-repeat;
    background-position: center;
    /* width: 100%; */
    padding: 0rem;
    text-align: start;
    line-height: 28px;
    display: flex;
    align-items: start;
    justify-content: start;
}
ul#counter li .counter span.text {
    color: var(--Text, #92969F);
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px; /* 130% */
    letter-spacing: 0.4px;
    text-align: left;
    width: 121px;
}
/* -------------------------counter CSS------------------------  */


.V-portfolio-image img {
    border-radius: 18.484px;
    border: 0.462px solid rgba(255, 255, 255, 0.30);
    opacity: 0.4;
    background: #0A0A0A;
    mix-blend-mode: luminosity;
    padding: 9.24px;
    width: 100%;
}
.V-portfolio-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24.41px;
}
.vertical-portfolio-slider {
    margin-top: 40px;
}
section.sec-1 {
    margin-top: -10%;
}





.timeline {
  overflow-y: scroll;
  height: 600px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-top: 0;
}
.timeline-line {
  position: absolute;
  left: 14.3vw;
  top: 22px;
  bottom: 0;
  height: 521px;
  border-left: 2px dashed #ffffff29;
}
.timeline-step {
  position: relative;
  margin: 16px 0 60px 35px;
  font-size: 14px;
  color: #fff;
}
.timeline-step::before {
  content: attr(data-step);
  left: -40px;
  font-weight: bold;
  color: #ffffff2e;
  transition: color 0.3s;
}
.timeline-step.active::before {
  color: #fff;
}
.portfolio-wrapper {
  margin-top: 0rem;
}
.portfolio-set {
  padding: 0px 0 40px 40px;
  border-bottom: 1px solid #ffffff29;
  margin-top: -22px;
}
.portfolio-image-active {
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: #0A0A0A;
    padding: 20px;
    height: 100%;
    overflow: hidden;
}
.portfolio-set.active .sec-heading h3 {
  color: #fff;
  opacity: 1;
  font-size: 48px;
}
.timeline-section {
  padding: 0 0 65px;
  margin-top: -6%;
}
.scroll-wrap {
  overflow-y: scroll;
  height: 628px;
  scrollbar-width: none; 
  -ms-overflow-style: none;  
}
.scroll-wrap::-webkit-scrollbar {
  display: none; 
}
.timeline-step svg {
    margin-left: -54px;
    margin-top: -2px;
}
.timeline-step::after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: -14px;
    height: 2px;
    width: 10px;
    background: #616161;
}
.timeline-step.active::after {
    background: #fff;
}
.portfolio-image-active img {
    transition: opacity 0.3s ease-in-out;
    height: 100%;
}
.portfolio-set.active .sec-heading p {
    opacity: 1;
}
.portfolio-set .btn-wrap {
  display: none;
}
.portfolio-set.active .btn-wrap {
  display: flex; /* ya block, aapke layout ke hisaab se */
  gap: 10px;     /* spacing if needed */
}
a.arrow-btn {
    position: absolute;
    /* top: calc(25% - 58px); */
    z-index: 1;
    font-size: 30px;
    color: #535353;
    box-shadow: 0px 1.32566px 14px rgba(0, 0, 0, 0.08);
    font-weight: 600;
}
a.arrow-btn.up {
    top: 44%;
    right: -44px;
}
a.arrow-btn.down {
    bottom: 44%;
    right: -44px;
}
a.arrow-btn.up:before{
    content: "";
    display: block;
    position: absolute;
    width: 36.141px;
    height: 36.141px;
    flex-shrink: 0;
    border-radius: 36.141px;
    border: 1.488px solid #535353;
    background: transparent;
    top: -16px;
    left: -6px;
    z-index: -1;
}
a.arrow-btn.down:before{
    content: "";
    display: block;
    position: absolute;
    width: 36.141px;
    height: 36.141px;
    flex-shrink: 0;
    border-radius: 36.141px;
    border: 1.488px solid #535353;
    background: transparent;
    bottom: -16px;
    left: -6px;
    z-index: -1;
}


















/* -------banner-slider------- */
.slider-container {
  position: relative;
  margin-top: -43%;
  margin-left: 8%;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12px;
  overflow: hidden;
  transform: rotateX(0deg) rotateY(-30deg) rotateZ(2deg);
  opacity: 0;
  transition: all 1s ease;
  flex-shrink: 0;
}
.slide img {
  flex-shrink: 0;
  width: 381.007px;
  height: 644.961px;
  flex-shrink: 0;
}
.slide.active {
  opacity: 1;
  transform: rotateX(0deg) rotateY(-30deg) rotateZ(-2deg) translateZ(0px);
  z-index: 3;
  top: 0;
}
.slide.prev {
  opacity: 1;
  transform: rotateX(0deg) rotateY(-30deg) rotateZ(-2deg) translateZ(-200px);
  z-index: 2;
  top: -64px;
}
.slide.prev2 {
  opacity: 1;
  transform: rotateX(0deg) rotateY(-30deg) rotateZ(-1deg) translateZ(-400px);
  z-index: 1;
  top: 0px;
}
.slide.prev3 {
  opacity: 1;
  transform: rotateX(0deg) rotateY(-30deg) rotateZ(0deg) translateZ(-550px);
  z-index: 0;
  top: -62px;
}
/* --------banner-slider------- */

/* section-2 */
ul.overview-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: #2B2B2B;
    inline-size: fit-content;
    margin: 30px auto 50px;
    padding: 7px;
}
ul.overview-nav a {
    padding: 12px 20px;
    font-weight: 400;
    font-size: 14px;
    border: 1px solid #2B2B2B;
    border-radius: 5px;
    color: #fff;
    border-radius: 45px;
}
ul.overview-nav li.active a {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary) !important;
}


img.leftline-vector {
    position: absolute;
    top: -13vw;
    left: 0;
    opacity: 0.2;
}
img.rightline-vector {
    position: absolute;
    top: -13vw;
    right: 0;
    opacity: 0.2;
    z-index: -1;
}
/* section-2 */


/* section-3 */
ul.steps-nav {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 57px;
    margin-bottom: 50px;
    margin: 20.06px auto 78px;
}
ul.steps-nav a {
    padding: 10.39px 30.54px 10.39px 58.65px;
    font-weight: 500;
    font-size: 19px;
    color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    gap: 12.04px;
    border-radius: 70px;
    border: 1px solid rgba(0, 201, 167, 0.20);
}
ul.steps-nav li.active a {
    background: #002B27;
    color: #fff;
    border-color: #002B27 !important;
}
ul.steps-nav a span {
    border-radius: 58.635px;
    background: #002B27;
    width: 62.598px;
    height: 62.557px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -90px;
    color: #FFF;
    text-align: center;
    font-size: 23.454px;
    font-weight: 600;
    line-height: normal;
}
ul.steps-nav li.active a span{
    background: var(--primary);
    color: #fff;
    border-color: var(--primary) !important;
}
.sec-heading h3 {
    color: #FFF;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    /* opacity: 0.4; */
}
.sec-heading h3 span {
    color: #007BFF;
}
.list-steps li {
    color: var(--Text, #92969F);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    border-bottom: 1px solid rgba(217, 217, 217, 0.30);
    max-width: fit-content;
    padding: 13px 0;
    position: relative;
    display: flex;
}
.list-steps li:before {
    content: "";
    font-family: var(--icon);
    content: "\f00c";
    font-weight: 600;
    /* height: 23px; */
    color: #ffffff;
    margin-right: 12px;
    border-radius: 41px;
    background: var(--primary);
    padding: 0px 6px;
    font-size: 13px;
}
.mobileapp-list li {
    color: var(--Text, #92969F);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    border-bottom: 1px solid rgba(217, 217, 217, 0.30);
    padding: 13px 0;
    position: relative;
    display: inline-block;
    width: 49%;
    vertical-align: middle;
}
.mobileapp-list li:before{
    content: "";
    font-family: var(--icon);
    content: "\f00c";
    font-weight: 600;
    color: #ffffff;
    margin-right: 12px;
    border-radius: 41px;
    background: var(--primary);
    padding: 5px 6px;
    font-size: 13px;
}
.mobileapp-list li:nth-child(3) {
    border-bottom: 0;
}
.list-steps li.last {
    border-bottom: 0;
}
.step-wrapper{
    position: relative;
    padding: 27px;
}
.step-wrapper:before{
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    /* background-image: url(../images/step-bg.png); */
    background-repeat: no-repeat;
    top: 76px;
    left: 0;
    background-size: contain;
    z-index: -1;
    /* padding: 20px; */
}
section.sec-3 {
    background-position: center;
    background-repeat: no-repeat;
    padding: 155px 0 195px;
}
/* section-3 */

/* section-4 */
section.sec-4 {
    padding: 125px 0 0;
}
.process-card h3 {
    color: #FFF;
    font-size: 26px;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 14px;
}
.process-card p {
    color: var(--Text, #92969F);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: 0.36px;
}
.process-card span {
    background: linear-gradient(180deg, #313131 0%, #0D0C0F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: Archivo;
    font-size: 193.378px;
    font-weight: 600;
    line-height: normal;
}
.process-card {
    text-align: center;
    padding: 30px;
}
.process-wrap {
    position: relative;
    background-position: top;
    background-repeat: no-repeat;
    background-size: inherit;
    margin-top: 16%;
    padding: 0% 0 20%;
}
.process-card.card-one {
    margin-left: -104px;
    padding: 75px;
    margin-top: -51px;
}
.process-card.card-three {
    margin-top: 54px;
    margin-left: 30px;
}
.process-card.card-three h3 {
    margin-top: 71px;
}
.process-card.card-two {
    margin-top: -46%;
    padding: 50px;
}
.process-card.card-two h3 {
    margin-top: 120px;
}
/* section-4 */

/* section-5 */
section.sec-5 {
    padding: 0 0 100px;
}
.testi-card {
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(217, 217, 217, 0.30);
    background: #0C0C0D;
    margin-bottom: 4px;
    height: 303px;
}
.testi-card .top span.name {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    text-transform: capitalize;
    display: block;
}
.testi-card .top span.des {
    color: var(--Content, #92969F);
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.7;
}
.testi-card .bottom p {
     /* 133.333% */
     opacity: 0.8;
     padding-top: 11.81px;
     color: #FFF;
     font-size: 16px;
     font-weight: 400;
     line-height: 26px; /* 162.5% */
     letter-spacing: 0.32px;
}
.bottom {
    /* margin-top: 20px; */
    border-radius: 0;
    /* background: #000; */
    padding: 24.43px 15.49px;
}
.top-detail {
    display: flex;
    align-items: center;
    gap: 10px;
}
.testi-card .top {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding: 22.5px 12px 10.5px;
}
img.left-gradient {
    position: absolute;
    top: 0;
    left: -2px;
    z-index: 99;
    width: 17%;
    height: 100%;
}
img.right-gradient {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
    width: 17%;
    height: 100%;
}
.design-card-list .slick-slide,
.design-card-list-2 .slick-slide {
    margin: 0 10px;
}
.design-card-list-2 {
    direction: rtl;
}
.design-card-list,
.design-card-list-2 {
    padding-bottom: 2rem;
}
.design-card-list li,
.design-card-list-2 li {
    position: relative;
    display: flex !important;
    justify-content: center;
}
ul.design-card-list.slick-initialized.slick-slider {
    margin-top: 50px;
}
.design-card-list-2 {
    direction: rtl !important;
}

.design-card-list-2 .slick-track {
    direction: ltr !important;
}

.design-card-list-2 .slick-slide {
    float: right !important;
}

/* section-5 */


/* packages */
.pckg-sec{
    background: #f5f5f5;
}
.pkg-list  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:2rem;
    margin-top: 2rem;
}

.pckg {
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: space-between;
    position: relative;
    transition: 0.3s;
    box-shadow: -10px 14px 30px rgb(0 0 0 / 7%);
    border-radius: 22px;
    border: 1px solid transparent;
    height: 100%;
    border-radius: 16px 16px 24px 24px;
    border: 1px solid #17191B;
    display: flex;
    /* background-image: url(../images/banner/pckg-bg.webp); */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* overflow: hidden; */
}
.pckg:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 2vw;
    background: #ffffff;
    width: 93px;
    height: 2px;
    flex-shrink: 0;
    border-radius: 1px;
}
.pckg .btn-wrap a{
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}
.pckg .btn-wrap .btn-norm{
    color: var(--primary);
    transition: .5s ease;
}
.pckg .btn-wrap .btn-norm:hover{
    transform: scale(1.03);
}
.pckg .upper .title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 1rem;
    color: #fff;
}
.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
.pckg .upper p {
    font-size: 16px;
    line-height: 26px;
    color: #92969F;
    padding-top: 14px;
    text-align: center;
}
.pckg .upper .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1.5rem 0;
}
.pckg .upper .price .amount {
    font-weight: 700;
    font-size: 51px;
    line-height: 40px;
    color: #fff;
    font-family: Archivo;
}
.pckg .upper .price .uspto {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: red;
}
.pckg .upper {
    padding: 24px;
    background-image: url(../images/banner/pckg-bg.webp);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}
.pckg .bottom .includes {
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: #111827;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
}
.pckg .bottom ul li {
   position: relative;
   display: flex;
   color: #92969F;
   font-size: 18px;
   font-weight: 500;
   line-height: 24px; /* 133.333% */
}
.pckg .bottom ul {
    margin: 1rem 0 2rem;
    overflow-y: auto;
    /* max-height: 179px; */
    padding-right: 10px;
    height: 254px;
    /* overflow-y: scroll; */
}
.bottom span {
   color: #FFF;
   font-family: Archivo;
   font-size: 22.88px;
   font-weight: 600;
   line-height: 27px; /* 118.007% */
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 12px;
}
.pckg .bottom ul li::before {
    content: "";
    font-family: var(--icon);
    content: "\f00c";
    font-weight: 600;
    height: 23px;
    color: #ffffff;
    margin-right: 12px;
    border-radius: 41px;
    background: #2B2D32;
    padding: 0px 6px;
    font-size: 13px;
}
.pckg .btn-wrap {
    flex-direction: column;
    margin: 0;
}
.pckg-btn a {
    color: #92969F;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 24px; /* 165.517% */
    text-align: center;
    margin: 0 auto;
}
.pckg-btn {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: space-between;
    border-top: 2px solid #131315;
    padding: 19.66px 0;
    margin: 0 24px 0;
    position: relative;
}
.pckg-btn:before {
    content: "";
    display: block;
    position: absolute;
    background: #131315;
    top: 0;
    left: 0;
    right: 0;
    width: 2px;
    height: 63.76px;
    margin: 0 auto;
}
.pckg .bottom {
    background: linear-gradient(180deg, #131315 0%, #000 100%);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12);
    padding: 24px 24px 10px;
    border-top: 1px solid #1D1D20;
}
.pckg .bottom ul li.green-check:before {
    color: #fff;
    background: #07A721;
}
/* packages */

/* Sec Headings */
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    font-size: 48px;
    line-height: normal;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    margin: 1rem 0;
    color: var(--Text, #92969F);
    font-size: 18px;
    line-height: 26px; /* 144.444% */
    letter-spacing: 0.36px;
    /* opacity: 0.4; */
}
.sec-heading .sub-heading {
    color: #FFF;
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px; /* 185.714% */
    letter-spacing: 0.28px;
    margin-bottom: 16px;
}
/* Sec Headings */

/* sections */
section {
    padding: 4rem 0;
    position: relative;
}
.padding-2{
    padding: 1rem 0;
}
/* sections */ 

/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    /* margin: 1rem 0; */
}
.btn-wrap .theme-btn {
    padding: 20px 32px;
    color: white;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid var(--primary);
    transition: .5s ease;
    border-radius: 13px;
    background: #007BFF;
    box-shadow: 0 -1px 34px 0 rgba(0, 123, 255, 0.45);
}
.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: #007BFF;
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
/* Theme Buttons */

/* Country Code */
.newcountrycode {
    position: relative;
    display: flex;
    align-items: center;
    /* padding-left: 40px; */
    border: 1px solid #ddd;
    height: 45px;
    border-radius: 5px;
}
.newcountrycode select {
    width: 56px;
    border: 0;
    padding: 0px 19px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    background: transparent;
}
.newcountrycode .countrycode {
    width: 70px;
    border: 0;
    background: #f9f9f9;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    margin: 0 10px;
}
.newcountrycode .phone-field {
    width: 100%;
}
.newcountrycode input {
    border: 0;
}
/* Country Code */




/* -------------------------contact us-------------------------- */
.input-field1 label {
    padding-left: 0;
    padding-bottom: 8px;
    color: var(--Text, #92969F);
    font-size: 16.811px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.8;
}
.input-field1 input, .input-field1 textarea {
    cursor: pointer;
    height: 55px;
    width: 100%;
    font-size: 16px;
    color: #222222;
    padding: 15px 14px;
    outline: none !important;
    text-transform: capitalize;
    margin-bottom: 18px;
    background-color: transparent;
    border-radius: 6.004px;
    border: 1.201px solid #D9D9D9;
    opacity: 0.2;
}
.input-field1 textarea {
    height: 184.922px;
}
.send {
    /* text-align: left; */
    padding-top: 10px;
}
.send input[type="submit"] {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    transition: .4s ease;
    text-transform: capitalize;
    width: 100%;
    border: 0;
    border-radius: 13px;
    background: #007BFF;
    box-shadow: 0 -1px 34px 0 rgba(0, 123, 255, 0.45);
    display: flex;
    padding: 20px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.contact-wrapper {
    border-radius: 24.016px;
    border: 1.201px solid rgba(217, 217, 217, 0.20);
    display: flex;
    padding: 24.016px 25.217px 23.997px 23.732px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 23.059px;
    align-self: stretch;
    margin-bottom: 24px;
}
.sec-heading h4 {
    color: #FFF;
    font-size: 28.819px;
    font-weight: 600;
     /* 129.167% */
    letter-spacing: 0.576px;
    text-transform: capitalize;
}
.contact-card {
    border-radius: 14.958px;
    border: 0.997px solid rgba(40, 40, 40, 0.36);
    background: #171717;
    display: flex;
    padding: 19.944px 28.819px;
    align-items: center;
    gap: 9.972px;
}
.contact-card h3 {
    color: #FFF;
    font-size: 23.932px;
    font-weight: 600;
    line-height: normal;
}
.contact-card a {
    color: #FFF;
    font-size: 15.955px;
    font-weight: 400;
    line-height: 23.932px; /* 150% */
    opacity: 0.67;
}
form {
    margin-top: 26px;
}
.contact-detail {
    display: flex;
    gap: 14.41px;
}
.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    margin-bottom: 15px;
    width: 100%;
}
.checkbox-wrap input {
    margin-top: 4px;
    width: auto !important;
}
.checkbox-wrap label {
    color: var(--Text, #92969F);
    font-size: 15.811px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.819px; /* 171.429% */
    letter-spacing: -0.168px;
}
.contact-wrapper .sec-heading p {
    margin: 0;
    padding: 16px 0 0;
}
.checkbox-wrap label a {
    color: #fff;
}
.bordertop {
    border-top: 1px solid #ffffff24;
    padding-top: 120px;
}
section.contactus-sec {
    padding: 0 0 120px;
}
/* -------------------------contact us-------------------------- */

/* popup */
.overlay {
    background-color: rgb(197 197 197 / 32%);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999;
    display: none;
    backdrop-filter: blur(10px);
  }
  .popupmain {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    /* background: #fff; */
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    display: none;
    /* border-radius: 8px; */
    max-height: 90vh;
  }
  .mmpopup {
    background: url("../images/popup-bg.webp");
    background-size: cover;
    background-position: center;
    border-radius: 33px;
    border: 5px solid #fff;
    padding: 12px;
  }
  .mmpopup .popup-content {
    padding: 50px 40px;
    width: 100%;
    max-width: 500px;
    border-radius: 29px;
    background: #fff;
    box-shadow: 0px 4px 52.4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(33.75px);
    overflow: hidden;
  }
  .mmpopup .formpop {
    width: 100%;
    margin-top: 40px;
  }
  .mmpopup .form-text {
    color: #000;
    font-family: var(--font-body);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 20px;
  }
  .mmpopup .form-text a {
    color: #659640;
    font-weight: 700;
  }
  .mmpopup .form-text a:hover {
    color: var(--secondary);
  }
  .mmpopup .form-group-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    align-items: center;
    gap: 0;
    column-gap: 20px;
    margin-bottom: 30px;
    width: 100%;
  }
  .mmpopup .fld-input {
    height: 50px;
    width: 100%;
    /* margin-bottom: 9px; */
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #d1d5db;
    overflow: hidden;
  }
  .mmpopup .centercont h3 {
    font-size: 38px;
    color: #141515;
    margin-bottom: 10px;
  }
  .mmpopup .centercont h4 {
    font-size: 20px;
    color: #566060;
    margin-bottom: 15px;
  }
  .mmpopup .centercont h4 span {
    color: #86cb92;
  }
  .mmpopup .centercont p {
    color: #333;
    font-size: 14px;
    margin-bottom: 120px;
    line-height: 20px;
  }
  .closeico {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 100px;
  }
  .closeico i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
  }
  .closeico1 {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
  }
  .closeico1 i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
  }
  .mmpopup .centercont p {
    margin-bottom: 10px;
    line-height: 23px;
    color: #565656;
    max-width: 390px;
    margin: auto;
    display: block;
    position: relative;
  }
  .mmpopup .centercont ul {
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding: 27px 49px 27px 24px;
    background: #fff;
    border-radius: 10px;
    margin-right: 20px;
  }
  .mmpopup .centercont ul li {
    display: block;
    font-size: 15px;
    color: #000;
    padding-bottom: 12px;
  }
  .mmpopup .centercont ul li.last {
    padding-bottom: 0;
  }
  .mmpopup .centercont ul li i {
    color: #ff533e;
    border: 1px solid;
    border-radius: 100px;
    margin-right: 8px;
    font-size: 10px;
    padding: 3px;
  }
  .mmpopup .centercont h4 {
    font-size: 35px;
    color: #659640;
  }
  .mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    color: #0085ff;
  }
  .mmpopup .centercont h3 span {
    color: #000;
    font-family: var(--font-body);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
  }
  .mmpopup .centercont h4 span {
    font-weight: 700;
    color: #000;
    font-size: 60px;
  }
  .fld-input {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(218 217 217);
    border-radius: 5px;
    background-color: #fff;
    width: 354px;
    height: 66px;
    margin-bottom: 20px;
  }
  .fld-input input {
    width: 100%;
    height: 100%;
    padding: 0 24px;
    font-size: 16px;
    letter-spacing: 0.2px;
    background: #eeeeee;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none;
    font-family: "Inter";
  }
  .fld-input input::placeholder {
    color: #737373;
    font-weight: 400;
  }
  .fld-btn button {
    border: 0;
  }
  .form-group field input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}
.form-group input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
    font-size: 16px;
    width: 100%;
}
.fld-btn button.banner-btn {
    border: 4px solid var(--primary);
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 40px;
    border-radius: 5px;
    background: var(--primary);
    box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
}
.fld-btn.packageformsubmit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* popup */

/* ---------------------------footer------------------------------- */
footer {
    padding: 80px 0 40px;
    background: linear-gradient(95deg, #161616 -6.13%, #000 117.07%);
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff29;
    padding: 16px 0;
}
.copyright p,.copyright a {
    color: white;
    font-size: 14px;
    opacity: 0.7;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-sec p {
    color: #fff;
    line-height: 1.5;
    font-size: 14px;
    padding-top: 33px;
    opacity: 0.7;
    max-width: 80%;
}
.footer-hdng h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 1px solid #ffffff45;
    width: 96.488px;
    padding: 0 0 10px 0;
}
.f-menu li a {
    color: #ffffffb0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
}
.footer-hdng p {
    color: #fff;
    line-height: normal;
    padding-bottom: 16px;
}
.hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hours p {
    color: #fff;
    font-size: 16px;
}
.f-menu li a i {
    color: var(--white);
    margin-right: 10px;
}
.f-menu li {
    line-height: 2;
}
.copyright-sec {
    background: linear-gradient(95deg, #161616 -6.13%, #000 117.07%);
}
.footer-sec:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 60px;
    background: #ffffff30;
    width: 1px;
    height: 205px;
}
.footer-sec {
    position: relative;
}
ul.f-menu:before {
    content: "";
    display: block;
    position: absolute;
    top: -36px;
    right: 42px;
    background: #ffffff30;
    width: 1px;
    height: 205px;
}
ul.f-menu {
    position: relative;
}
ul.f-menu.last:before {
    display: none;
}
/* ----------------------------------footer---------------------- */


/* 404 */
.error-text {
    font-size: 96px;
    line-height: 68px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.error-heading {
    font-weight: 500;
    font-size: 44px;
    line-height: 68px;
    color: #fff;
}
.error-image {
    margin-top: 100px;
}
.thankyou-text{
    font-size: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
}
/* 404 */

/* terms */
.terms ul {
    line-height: 25px;
    font-size: 16px;
    color: #333;
}
.terms ul li {
    margin-bottom: 1rem;
}
.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}
.terms h4 {
    font-size: 24px;
    margin: 2rem 0 1rem;
}
.terms p {
    margin-bottom: 1rem;
    color: #fff;
    opacity: 0.7;
}
ul.ul-list li {
    color: #fff;
    list-style: disc;
    margin-left: 20px;
    opacity: 0.7;
}
/* terms */


/* inner-pages */

.banner-content.inner-page h1.banner-heading {
    color: #FFF;
    font-size: 56px;
    font-weight: 600;
    line-height: normal;
    margin-right: 0;
}
.logos {
    margin-top: 24px;
}
.card-wrapper {
    border-radius: 30px;
    border: 1px solid rgba(217, 217, 217, 0.30);
    background: rgba(255, 255, 255, 0.04);
    padding: 50px 20px;
    height: 100%;
}
section.action-sec {
    padding: 140px 0 138px;
    background-position: center;
    background-repeat: no-repeat;
}
.sec-heading a {
    color: var(--Text, #92969F);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: 0.36px;
    padding: 11px;
    border-top: 1px solid #ffffff57;
    border-bottom: 1px solid #ffffff57;
}
.bottom-line {
    border-bottom: 1px solid #ffffff2e;
    padding-bottom: 120px;
}
.brand-work-wrapper {
    border-radius: 29.071px;
    border: 0.969px solid rgba(217, 217, 217, 0.30);
    display: flex;
    padding: 0 22.288px 0 22.29px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.brandwork-card {
    text-align: center;
    padding: 50px;
    position: relative;
}
.brandwork-card p {
    color: var(--Text, #92969F);
    font-size: 19.381px;
    font-weight: 400;
    line-height: 25.195px;
    letter-spacing: 0.388px;
    padding-top: 20px;
}
section.brandwork-sec {
    padding: 1rem 0 112px;
}
.borderbottom {
    position: relative;
}
.borderbottom:before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #ffffff3d;
    top: 11vw;
    left: 0;
}
.brandwork-card:after {
    content: "";
    display: block;
    position: absolute;
    top: 3vw;
    right: 0;
    background: #ffffff45;
    width: 0.969px;
    height: 122.942px;
}
.brandwork-card.last:after {
    display: none;
}
.banner-content.inner-page p.banner-text {
    max-width: 100%;
}


/* innerpage banner slider */

.slider-container-two {
  position: relative;
  margin-top: -32%;
  margin-left: 18%;
}
.slide-two {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12px;
  overflow: hidden;
  transform: rotateX(0deg) rotateY(-30deg) rotateZ(2deg);
  opacity: 0;
  transition: all 1s ease;
  flex-shrink: 0;
}
.slide-two img {
    width: 359.351px;
    height: 466.452px;
    flex-shrink: 0;
}
.slide-two.active-two {
  opacity: 1;
  transform: rotateX(0deg) rotateY(-30deg) rotateZ(-2deg) translateZ(0px);
  z-index: 2;
  top: 0;
}
.slide-two.prev-two {
  opacity: 1;
  transform: rotateX(0deg) rotateY(-30deg) rotateZ(-1deg) translateZ(-200px);
  z-index: 1;
  top: -64px;
}
ul.list-steps.mobileapp-list {
    display: inline-block;
    vertical-align: middle;
}
ul.list-steps.mobileapp-list li {
    max-width: none;
}
.step-image {
    text-align: center;
}
.wedo-card {
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: #0A0A0A;
    padding: 40px;
    margin-top: 20.39px;
}
.wedo-card h3 {
    color: #FFF;
    font-size: 26px;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 14px;
}
.wedo-card p {
    color: var(--Text, #92969F);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: 0.36px;
}
.wedo-card.wedo-card-flex {
    display: flex;
    /* align-items: baseline; */
    gap: 34px;
}
.wedo-card.wedo-card-flex .wedo-image {
    flex-shrink: 0;
    width: 235.42px;
}
.wedo-card.wedo-card-flex .wedo-image2 {
    flex-shrink: 0;
    width: 196.906px;
}
.wedo-image.wedo-image3 {
    flex-shrink: 0;
    width: 339.488px;
    margin: 0 auto;
    margin-right: 0;
}
.margintop {
    margin-top: 73px;
}
section.wedo-sec {
    padding: 0 0 100px;
}
.portfolio-card {
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: #0A0A0A;
    display: flex;
    padding: 20px 20px 26px 20px;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}
.portfolio-card span {
    color: var(--Text, #92969F);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
    letter-spacing: 0.32px;
    padding-top: 28px;
}
.portfolio-card h3 {
    color: #FFF;
    font-size: 26px;
    font-weight: 600;
    line-height: normal;
}
.portfolio-card p {
    color: var(--Text, #92969F);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: 0.36px;
}


ul.steps-nav li.active {
    border-radius: 26px 26px 0 0;
    padding: 30px 24px 38px 44px;
    border: 1px solid rgba(217, 217, 217, 0.15);
    background: #0A0A0A;
    border-bottom: 0;
    margin-bottom: -1px;
    z-index: 1;
}
.port-content {
    border: 1px solid rgba(217, 217, 217, 0.15);
    background: #0A0A0A;
    border-radius: 0 0 26px 26px;
    margin-top: -78px;
    padding: 41px 26px;
}
ul.list-steps.logodesign-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
ul.list-steps.logodesign-list li {
    width: 70%;
    max-width: none;
}
.logo-design-image {
    width: 100%;
    height: 100%;
}
.logo-design-image img {
    width: 100%;
    height: 100%;
}



















@media (max-width: 1440px) {
    .menu > li {
        padding: 0 0 0 20px;
    }
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 60px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 17px;
        line-height: 28px;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 40px;
        line-height: 52px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
        font-size: 12px;
    }
    .copyright {
        gap: 12px;
    }
    .main-header {
        padding-top: 0;
    }
    ul#counter {
        gap: 2rem;
    }
    ul#counter li .counter>div {
        font-size: 36px;
        gap: 0rem;
        flex-direction: column;
    }
    ul#counter li .counter span.text {
        font-size: 16px;
        line-height: 18px;
        width: auto;
    }
    section.sec-counter {
        padding: 24px;
    }
    .tubelight-image {
        display: none;
    }
    .V-portfolio-image {
        gap: 12.41px;
    }
    .V-portfolio-image img {
        opacity: 1;
    }
    .vertical-portfolio-slider {
        margin-bottom: 20px;
    }
    ul.overview-nav a {
        text-align: center;
    }
    ul.overview-nav {
        border-radius: 22px;
    }
    section.sec-3 {
        padding: 40px 0;
        background-image: none !important;
    }
    ul.steps-nav {
        align-items: center;
        margin: 45.06px auto 50px;
        gap: 53px;
    }
    ul.steps-nav li.active {
        padding: 12px 12px 20px 12px;
    }
    ul.steps-nav a {
        padding: 3.39px 20.54px 3.39px 60.65px;
        font-weight: 500;
        font-size: 14px;
    }
    ul.steps-nav a span {
        width: 46.598px;
        height: 46.557px;
        margin-left: -55px;
        font-size: 14.454px;
    }
    .port-content {
        margin-top: -32px;
    }
    .sec-heading h3 {
        font-size: 28px;
        line-height: 36px;
    }
    .step-wrapper {
        padding: 0;
    }
    .list-steps li {
        padding: 8px 0;
        display: flex;
        align-items: baseline;
        gap: 10px;
    }
    br {
        display: none;
    }
    .process-card.card-one {
        margin-left: 86px;
        padding: 0;
        margin-top: -82px;
    }
    .process-card.card-two {
        margin-top: -30%;
        padding: 17px;
    }
    .process-card.card-three {
        margin-top: -18px;
        margin-left: -92px;
        padding: 65px;
    }
    .process-card h3 {
        font-size: 24px;
    }
    .process-card span {
        font-size: 110.378px;
    }
    .process-wrap {
        background-size: contain;
        margin-top: 10%;
        padding: 0% 0 0%;
    }
    .process-card p {
        font-size: 16px;
        line-height: 28px;
    }
    .process-card.card-two h3 {
        margin-top: 98px;
    }
    img.left-gradient, img.right-gradient{
        display: none;
    }
    .testi-card .bottom p {
        font-size: 14px;
        line-height: 22px;
    }
    .footer-sec:before, ul.f-menu:before{
        display: none;
    }
    .footer-sec p {
        padding-top: 0;
        max-width: 100%;
        padding: 20px 0 0px;
    }
    .footer-hdng h4 {
        margin-bottom: 6px;
    }
    .footer-hdng {
        padding-top: 20px;
    }
    footer {
        padding: 40px 0 40px;
    }
    .f-menu li {
        line-height: 1.6;
    }
    section.sec-1 {
        margin-top: 0;
    }
    .banner-content.inner-page h1.banner-heading {
        font-size: 38px;
        line-height: 48px;
        margin-right: 0;
    }
    .card-wrapper {
        padding: 20px 20px;
    }
    .card-wrapper {
        margin-top: 1rem;
    }
    .bottom-line {
        padding-bottom: 60px;
    }
    .borderbottom:before {
        top: 16vw;
    }
    .brandwork-card p {
        font-size: 14.381px;
        line-height: 22.195px;
    }
    section.brandwork-sec {
        padding: 40px 0;
    }
    .bordertop {
        padding-top: 60px;
    }
    .input-field1 label {
        font-size: 14.811px;
    }
    .input-field1 input, .input-field1 textarea {
        height: 50px;
        font-size: 14px;
        padding: 4px 4px;
        margin-bottom: 12px;
    }
    .input-field1 textarea {
        height: 118.922px;
    }
    .checkbox-wrap label {
        font-size: 12.811px;
        line-height: 20.819px;
    }
    .sec-heading h4 {
        font-size: 24.819px;
        line-height: 30px;
    }
    .contact-wrapper {
        margin-top: 2rem;
        padding: 20px;
    }
    .contact-card {
        padding: 10px;
    }
    .contact-card h3 {
        font-size: 16.932px;
    }
    .contact-card a {
        font-size: 12.955px;
        line-height: 22.932px;
    }
    section.contactus-sec {
        padding: 0 0 40px;
    }
    .wedo-card {
        padding: 20px;
    }
    .wedo-card p {
        font-size: 16px;
    }
    .wedo-card.wedo-card-flex {
        gap: 14px;
    }
    section.wedo-sec {
        padding: 0 0 40px;
    }
    .terms h4 {
        font-size: 18px;
    }
    .terms p {
        font-size: 14px;
        line-height: 22px;
    }
    .error-text {
        font-size: 50px;
        line-height: 46px;
        margin-bottom: 0.5rem;
    }
    .error-heading {
        font-size: 22px;
        line-height: 30px;
    }
    .thankyou-text {
        font-size: 14px;
        line-height: 22px;
        margin-top: 10px;
    }
    .pckg {
        background-size: cover;
        overflow: hidden;
    }
    .pckg-btn:before{
        display: none;
    }
    .process-card {
        padding: 30px;
    }
    .pckg .upper {
        padding: 14px;
    }
    .pckg .bottom {
        padding: 14px 14px 10px;
    }
    .slide img {
        width: 216.007px;
        height: 435.961px;
    }
    .slider-container {
        margin-left: 15%;
        margin-top: -30%;
    }
    .slide-two img {
        width: 250.351px;
        height: 314.452px;
    }
    .slider-container-two {
        margin-left: 0%;
    }
    .past-client {
        margin-top: 20px;
        max-width: 36%;
    }
    .testi-card .top span.name {
        font-size: 14px;
    }
    .testi-card .top {
        padding: 12.5px 5px 10.5px;
    }
    .portfolio-set img {
        width: 100%;
        height: auto;
    }
    .portfolio-set {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 0.5rem;
    }
    .timeline-section {
        margin-top: 0;
        padding: 65px 0;
    }
    .btn-wrap .theme-btn {
        padding: 20px 12px;
    }
    .timeline-line {
        left: 2.6vw;
        top: 89px;
    }


}

@media (max-width: 1200px) {
    header{
        padding: 1rem 0;
    }
    .btns{
        margin: 1.5rem 0;
    }
    ul.menu.btns li {
        border-bottom: 0;
    }
    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
    }
    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        /* padding: 0; */
        padding: 1rem;
        font-weight: 500;
    }
    .form-head .form-heading{
        white-space: normal;
        font-size: 20px;
    }
    .form-head{
        padding: 1rem;
    }
    .btn-normal{
        padding: 10px 8px;
    }
    .sub-menu a {
        color: #333 !important;
        margin-bottom: 0 !important;
    }
    .sub-menu {
        left: auto !important;
        padding-top: 16px;
        top: 24px;
    }
    a.header-btn {
        padding: 15px 20px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        gap: 5px !important;
        align-items: center;
    }
    .menuWrap .menu:first-child{
        padding-left: 0;
        width: 100%;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .menu-Bar {
        display: block;
        top: 0px;
        right: 28px;
    }
    .menuWrap.open {
        display: flex;
        left: 0px;
    }
    .menuWrap {
        position: fixed;
        left: -210%;
        /* right: 0; */
        top: 0;
        bottom: 0;
        margin: auto;
        background: #011122;
        height: 100vh;
        display: flex;
        align-items: center;
        /* justify-content: center; */
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 3;
        width: 70%;
        overflow-y: auto;
        box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    }
    ul.menu > li  {
        display: flex;
        justify-content: center;
        gap: 5px;
        border-bottom: 1px solid #ddd;
        padding: 0;
        flex-direction: column;
    }
    ul.menu > li > a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding-right: 0px;
        margin-right: 0px;
        color: #fff;
        font-size: 15px;
        text-transform: capitalize;
    }
    .container {
        position: relative;
    }
    header .main-header ul.menu>li > a {
        color: #fff;
        width: 100%;
        text-align: left;
        margin: 0;
        display: flex;
        justify-content: space-between;
        padding: 1rem;
    }
    header .main-header ul.menu>li > a:before {
        display: none;
    }
    .menu > li > a:hover {
        border-bottom: 0px solid #fff;
    }
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 60px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 17px;
        line-height: 28px;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 40px;
        line-height: 52px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
        font-size: 12px;
    }
    .copyright {
        gap: 12px;
    }
    .main-header {
        padding-top: 0;
    }
    ul#counter {
        gap: 2rem;
    }
    ul#counter li .counter>div {
        font-size: 36px;
        gap: 0rem;
        flex-direction: column;
    }
    ul#counter li .counter span.text {
        font-size: 16px;
        line-height: 18px;
        width: auto;
    }
    section.sec-counter {
        padding: 24px;
    }
    .tubelight-image {
        display: none;
    }
    .V-portfolio-image {
        gap: 12.41px;
    }
    .V-portfolio-image img {
        opacity: 1;
    }
    .vertical-portfolio-slider {
        margin-bottom: 20px;
    }
    ul.overview-nav a {
        text-align: center;
    }
    ul.overview-nav {
        border-radius: 22px;
    }
    section.sec-3 {
        padding: 40px 0;
        background-image: none !important;
    }
    ul.steps-nav {
        align-items: center;
        margin: 45.06px auto 50px;
        gap: 6px;
    }
    
    ul.steps-nav a {
        padding: 3.39px 20.54px 3.39px 60.65px;
        font-weight: 500;
        font-size: 14px;
    }
    ul.steps-nav a span {
        width: 46.598px;
        height: 46.557px;
        margin-left: -55px;
        font-size: 14.454px;
    }
    
    .sec-heading h3 {
        font-size: 28px;
        line-height: 36px;
    }
    .step-wrapper {
        padding: 0;
    }
    .list-steps li {
        padding: 8px 0;
        display: flex;
        align-items: baseline;
        gap: 10px;
    }
    br {
        display: none;
    }
    .process-card.card-one {
        margin-left: 86px;
        padding: 0;
        margin-top: -82px;
    }
    .process-card.card-two {
        margin-top: -30%;
        padding: 17px;
    }
    .process-card.card-three {
        margin-top: -18px;
        margin-left: -92px;
        padding: 65px;
    }
    .process-card h3 {
        font-size: 24px;
    }
    .process-card span {
        font-size: 110.378px;
    }
    .process-wrap {
        background-size: contain;
        margin-top: 10%;
        padding: 0% 0 0%;
    }
    .process-card p {
        font-size: 16px;
        line-height: 28px;
    }
    .process-card.card-two h3 {
        margin-top: 98px;
    }
    img.left-gradient, img.right-gradient{
        display: none;
    }
    .testi-card .bottom p {
        font-size: 14px;
        line-height: 22px;
    }
    .footer-sec:before, ul.f-menu:before{
        display: none;
    }
    .footer-sec p {
        padding-top: 0;
        max-width: 100%;
        padding: 20px 0 0px;
    }
    .footer-hdng h4 {
        margin-bottom: 6px;
    }
    .footer-hdng {
        padding-top: 20px;
    }
    footer {
        padding: 40px 0 40px;
    }
    .f-menu li {
        line-height: 1.6;
    }
    section.sec-1 {
        margin-top: 0;
    }
    .banner-content.inner-page h1.banner-heading {
        font-size: 38px;
        line-height: 48px;
        margin-right: 0;
    }
    .card-wrapper {
        padding: 20px 20px;
    }
    .card-wrapper {
        margin-top: 1rem;
    }
    .bottom-line {
        padding-bottom: 60px;
    }
    .borderbottom:before {
        top: 16vw;
    }
    .brandwork-card p {
        font-size: 14.381px;
        line-height: 22.195px;
    }
    section.brandwork-sec {
        padding: 40px 0;
    }
    .bordertop {
        padding-top: 60px;
    }
    .input-field1 label {
        font-size: 14.811px;
    }
    .input-field1 input, .input-field1 textarea {
        height: 50px;
        font-size: 14px;
        padding: 4px 4px;
        margin-bottom: 12px;
    }
    .input-field1 textarea {
        height: 118.922px;
    }
    .checkbox-wrap label {
        font-size: 12.811px;
        line-height: 20.819px;
    }
    .sec-heading h4 {
        font-size: 24.819px;
        line-height: 30px;
    }
    .contact-wrapper {
        margin-top: 2rem;
        padding: 20px;
    }
    .contact-card {
        padding: 10px;
    }
    .contact-card h3 {
        font-size: 16.932px;
    }
    .contact-card a {
        font-size: 12.955px;
        line-height: 22.932px;
    }
    section.contactus-sec {
        padding: 0 0 40px;
    }
    .wedo-card {
        padding: 20px;
    }
    .wedo-card p {
        font-size: 16px;
    }
    .wedo-card.wedo-card-flex {
        gap: 14px;
    }
    section.wedo-sec {
        padding: 0 0 40px;
    }
    .terms h4 {
        font-size: 18px;
    }
    .terms p {
        font-size: 14px;
        line-height: 22px;
    }
    .error-text {
        font-size: 50px;
        line-height: 46px;
        margin-bottom: 0.5rem;
    }
    .error-heading {
        font-size: 22px;
        line-height: 30px;
    }
    .thankyou-text {
        font-size: 14px;
        line-height: 22px;
        margin-top: 10px;
    }
    .pckg {
        background-size: cover;
    }
    .process-card {
        padding: 30px;
    }
    .pckg .upper {
        padding: 14px;
    }
    .pckg .bottom {
        padding: 14px 14px 10px;
    }
    .slide img {
        width: 216.007px;
        height: 435.961px;
    }
    .slider-container {
        margin-left: 0%;
    }
    .slide-two img {
        width: 250.351px;
        height: 314.452px;
    }
    .slider-container-two {
        margin-left: 0%;
    }
    .past-client {
        margin-top: 20px;
        max-width: 36%;
    }
    .testi-card .top span.name {
        font-size: 14px;
    }
    .testi-card .top {
        padding: 12.5px 5px 10.5px;
    }
    .portfolio-set img {
        width: 100%;
        height: auto;
    }
    .portfolio-set {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 0.5rem;
    }
    .timeline-section {
        margin-top: 0;
        padding: 65px 0;
    }
    .scroll-wrap {
        height: 529px;
    }
    .btn-wrap .theme-btn {
       padding: 10px 12px;
       font-size: 14px;
    }
    .timeline-line {
        left: 3vw;
    }
    .portfolio-set.active .sec-heading h3 {
        font-size: 28px;
    }
    .timeline-step {
        margin: 16px 0 24px 35px;
    }
    .timeline {
        height: 508px;
    }
    .timeline-line {
        height: 474px;
    }






}

@media (max-width : 1199px) {
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 60px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 17px;
        line-height: 28px;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 40px;
        line-height: 52px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
        font-size: 12px;
    }
    .copyright {
        gap: 12px;
    }
    .main-header {
        padding-top: 0;
    }
    ul#counter {
        gap: 2rem;
    }
    ul#counter li .counter>div {
        font-size: 36px;
        gap: 0rem;
        flex-direction: column;
    }
    ul#counter li .counter span.text {
        font-size: 16px;
        line-height: 18px;
        width: auto;
    }
    section.sec-counter {
        padding: 24px;
    }
    .tubelight-image {
        display: none;
    }
    .V-portfolio-image {
        gap: 12.41px;
    }
    .V-portfolio-image img {
        opacity: 1;
    }
    .vertical-portfolio-slider {
        margin-bottom: 20px;
    }
    ul.overview-nav a {
        text-align: center;
    }
    ul.overview-nav {
        border-radius: 22px;
    }
    section.sec-3 {
        padding: 40px 0;
        background-image: none !important;
    }
    ul.steps-nav {
        align-items: center;
        margin: 45.06px auto 50px;
        gap: 6px;
    }
    
    ul.steps-nav a {
        padding: 3.39px 20.54px 3.39px 60.65px;
        font-weight: 500;
        font-size: 14px;
    }
    ul.steps-nav a span {
        width: 46.598px;
        height: 46.557px;
        margin-left: -55px;
        font-size: 14.454px;
    }
    
    .sec-heading h3 {
        font-size: 28px;
        line-height: 36px;
    }
    .step-wrapper {
        padding: 0;
    }
    .list-steps li {
        padding: 8px 0;
        display: flex;
        align-items: baseline;
        gap: 10px;
    }
    br {
        display: none;
    }
    .process-card.card-one {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
    }
    .process-card.card-one {
        margin-left: 0;
        padding: 0;
        margin-top: 0;
    }
    .process-card.card-two {
        margin-top: 0;
        padding: 0;
    }
    .process-card.card-three {
        margin-top: 0;
        margin-left: 0;
    }
    .process-card h3 {
        font-size: 24px;
    }
    .process-card span {
        font-size: 100.378px;
    }
    .process-wrap {
        background-image: none !important;
        margin-top: 0;
        padding: 0;
    }
    .process-card p {
        font-size: 16px;
        line-height: 28px;
    }
    .process-card.card-two h3 {
        margin-top: 0;
    }
    .process-card.card-three h3 {
        margin-top: 0;
    }
    img.left-gradient, img.right-gradient{
        display: none;
    }
    .testi-card .bottom p {
        font-size: 14px;
        line-height: 22px;
    }
    .footer-sec:before, ul.f-menu:before{
        display: none;
    }
    .footer-sec p {
        padding-top: 0;
        max-width: 100%;
        padding: 20px 0 0px;
    }
    .footer-hdng h4 {
        margin-bottom: 6px;
    }
    .footer-hdng {
        padding-top: 20px;
    }
    footer {
        padding: 40px 0 40px;
    }
    .f-menu li {
        line-height: 1.6;
    }
    section.sec-1 {
        margin-top: 0;
    }
    .banner-content.inner-page h1.banner-heading {
        font-size: 38px;
        line-height: 48px;
        margin-right: 0;
    }
    .card-wrapper {
        padding: 20px 20px;
    }
    .card-wrapper {
        margin-top: 1rem;
    }
    .bottom-line {
        padding-bottom: 60px;
    }
    .borderbottom:before {
        top: 16vw;
    }
    .brandwork-card p {
        font-size: 14.381px;
        line-height: 22.195px;
    }
    section.brandwork-sec {
        padding: 40px 0;
    }
    .bordertop {
        padding-top: 60px;
    }
    .input-field1 label {
        font-size: 14.811px;
    }
    .input-field1 input, .input-field1 textarea {
        height: 50px;
        font-size: 14px;
        padding: 4px 4px;
        margin-bottom: 12px;
    }
    .input-field1 textarea {
        height: 118.922px;
    }
    .checkbox-wrap label {
        font-size: 12.811px;
        line-height: 20.819px;
    }
    .sec-heading h4 {
        font-size: 24.819px;
        line-height: 30px;
    }
    .contact-wrapper {
        margin-top: 2rem;
        padding: 20px;
    }
    .contact-card {
        padding: 10px;
    }
    .contact-card h3 {
        font-size: 16.932px;
    }
    .contact-card a {
        font-size: 12.955px;
        line-height: 22.932px;
    }
    section.contactus-sec {
        padding: 0 0 40px;
    }
    .wedo-card {
        padding: 20px;
    }
    .wedo-card p {
        font-size: 16px;
    }
    .wedo-card.wedo-card-flex {
        gap: 14px;
    }
    section.wedo-sec {
        padding: 0 0 40px;
    }
    .terms h4 {
        font-size: 18px;
    }
    .terms p {
        font-size: 14px;
        line-height: 22px;
    }
    .error-text {
        font-size: 50px;
        line-height: 46px;
        margin-bottom: 0.5rem;
    }
    .error-heading {
        font-size: 22px;
        line-height: 30px;
    }
    .thankyou-text {
        font-size: 14px;
        line-height: 22px;
        margin-top: 10px;
    }
    .pckg {
        background-size: cover;
    }
    .process-card {
        padding: 0;
    }
    .pckg .upper {
        padding: 14px;
    }
    .pckg .bottom {
        padding: 14px 14px 10px;
    }
    .slide img {
        width: 216.007px;
        height: 435.961px;
    }
    .slider-container {
        margin-left: 0%;
    }
    .slide-two img {
        width: 250.351px;
        height: 314.452px;
    }
    .slider-container-two {
        margin-left: 0%;
    }
    .past-client {
        margin-top: 20px;
        max-width: 36%;
    }
    .testi-card .top span.name {
        font-size: 14px;
    }
    .testi-card .top {
        padding: 12.5px 5px 10.5px;
    }
    .portfolio-set img {
        width: 100%;
        height: auto;
    }
    .portfolio-set {
        padding: 8px 0 40px 40px;
    }
    .timeline-section {
        margin-top: 0;
        padding: 65px 0;
    }
    .scroll-wrap {
        height: 529px;
    }
    .btn-wrap .theme-btn {
        padding: 20px 12px;
    }
    .scroll-wrap {
        height: 529px;
    }
    .btn-wrap .theme-btn {
       padding: 10px 12px;
       font-size: 14px;
    }
    .timeline-line {
        left: 3vw;
    }
    .portfolio-set.active .sec-heading h3 {
        font-size: 28px;
    }
    .timeline-step {
        margin: 16px 0 24px 35px;
    }
    .timeline {
        height: 508px;
    }
    .timeline-line {
        height: 474px;
    }


    
}

@media (max-width : 1023px){
    .btn-wrap .theme-btn {
        font-size: 16px;
    }
    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }
}

@media (max-width : 992px) {
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 60px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 17px;
        line-height: 28px;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 38px;
        line-height: 50px;
    }
    .sec-heading p {
        font-size: 14px;
        line-height: 22px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
        font-size: 12px;
    }
    .copyright {
        gap: 12px;
    }
    .main-header {
        padding-top: 0;
    }
    ul#counter {
        gap: 2rem;
    }
    ul#counter li .counter>div {
        font-size: 36px;
        gap: 0rem;
        flex-direction: column;
    }
    ul#counter li .counter span.text {
        font-size: 16px;
        line-height: 18px;
        width: auto;
    }
    section.sec-counter {
        padding: 24px;
    }
    .tubelight-image {
        display: none;
    }
    .V-portfolio-image {
        gap: 12.41px;
    }
    .V-portfolio-image img {
        opacity: 1;
    }
    .vertical-portfolio-slider {
        margin-bottom: 20px;
    }
    section {
        padding: 2rem 0;
        position: relative;
    }
    ul.overview-nav a {
        text-align: center;
    }
    ul.overview-nav {
        border-radius: 22px;
    }
    .pckg .upper .title {
        font-size: 22px;
        line-height: 22px;
    }
    .pckg .upper .price .amount {
        font-size: 40px;
        line-height: 24px;
    }
    .bottom span {
        font-size: 16.88px;
        line-height: 20px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 22px;
    }
    .pckg .bottom ul li::before {
        font-size: 13px;
    }
    .pckg-btn {
        gap: 0rem;
        padding: 14px;
    }
    section.sec-3 {
        padding: 40px 0;
        background-image: none !important;
    }
    ul.steps-nav {
        align-items: center;
        margin: 0;
        gap: 6px;
        margin-bottom: 2rem;
    }
    
    ul.steps-nav a {
        padding: 3.39px 20.54px 3.39px 60.65px;
        font-weight: 500;
        font-size: 14px;
    }
    ul.steps-nav a span {
        width: 46.598px;
        height: 46.557px;
        margin-left: -55px;
        font-size: 14.454px;
    }
    .sec-heading h3 {
        font-size: 28px;
        line-height: 36px;
    }
    .step-wrapper {
        padding: 0;
    }
    .list-steps li {
        padding: 8px 0;
        display: flex;
        align-items: baseline;
        gap: 10px;
    }
    section.sec-4 {
        padding: 40px 0;
    }
    br {
        display: none;
    }
    .process-card.card-one {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
    }
    .process-card.card-one {
        margin-left: 0;
        padding: 0;
        margin-top: 0;
    }
    .process-card.card-two {
        margin-top: 0;
        padding: 0;
    }
    .process-card.card-three {
        margin-top: 0;
        margin-left: 0;
        padding: 0px;
    }
    .process-card h3 {
        font-size: 20px;
    }
    .process-card span {
        font-size: 100.378px;
    }
    section.sec-5 {
        padding: 0 0 20px;
    }
    .process-wrap {
        background-image: none !important;
        margin-top: 0;
        padding: 0;
    }
    .process-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .process-card.card-two h3 {
        margin-top: 0;
    }
    .process-card.card-three h3 {
        margin-top: 0;
    }
    img.left-gradient, img.right-gradient{
        display: none;
    }
    .testi-card .bottom p {
        font-size: 14px;
        line-height: 22px;
    }
    .footer-sec:before, ul.f-menu:before{
        display: none;
    }
    .footer-sec p {
        padding-top: 0;
        max-width: 100%;
        padding: 20px 0 0px;
    }
    .footer-hdng h4 {
        margin-bottom: 6px;
    }
    .footer-hdng {
        padding-top: 20px;
    }
    footer {
        padding: 40px 0 40px;
    }
    .f-menu li {
        line-height: 1.6;
    }
    section.sec-1 {
        margin-top: 0;
    }
    .banner-content.inner-page h1.banner-heading {
        font-size: 38px;
        line-height: 48px;
        margin-right: 0;
    }
    .card-wrapper {
        padding: 20px 20px;
    }
    .card-wrapper {
        margin-top: 1rem;
    }
    .bottom-line {
        padding-bottom: 60px;
    }
    .brandwork-card {
        padding: 20px;
    }
    .borderbottom:before {
        top: 16vw;
    }
    .brandwork-card p {
        font-size: 14.381px;
        line-height: 22.195px;
    }
    section.action-sec {
        padding: 40px 0;
    }
    section.brandwork-sec {
        padding: 40px 0;
    }
    .bordertop {
        padding-top: 60px;
    }
    .input-field1 label {
        font-size: 14.811px;
    }
    .input-field1 input, .input-field1 textarea {
        height: 40px;
        font-size: 14px;
        padding: 4px 4px;
        margin-bottom: 12px;
    }
    .input-field1 textarea {
        height: 118.922px;
    }
    .checkbox-wrap label {
        font-size: 12.811px;
        line-height: 20.819px;
    }
    .sec-heading h4 {
        font-size: 20.819px;
        line-height: 30px;
    }
    .contact-wrapper {
        margin-top: 2rem;
        padding: 20px;
    }
    .contact-detail {
        flex-direction: column;
    }
    .contact-card {
        padding: 10px;
    }
    .contact-card h3 {
        font-size: 16.932px;
    }
    .contact-card a {
        font-size: 12.955px;
        line-height: 22.932px;
    }
    section.contactus-sec {
        padding: 0 0 40px;
    }
    .wedo-card {
        padding: 20px;
    }
    .wedo-card h3 {
        font-size: 22px;
    }
    .wedo-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .wedo-card.wedo-card-flex {
        gap: 14px;
        flex-direction: column;
        gap: 0;
    }
    .margintop {
        margin-top: 0;
    }
    .wedo-card.wedo-card-flex .wedo-image {
        width: auto;
    }
    .wedo-card.wedo-card-flex .wedo-image2 {
        width: auto;
    }
    .wedo-image.wedo-image3 {
        width: auto;
    }
    section.wedo-sec {
        padding: 0 0 40px;
    }
    .portfolio-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .portfolio-card h3 {
        font-size: 22px;
    }
    .portfolio-card span {
        font-size: 14px;
        line-height: 22px;
        padding-top: 6px;
    }
    .terms h4 {
        font-size: 18px;
    }
    .terms p {
        font-size: 14px;
        line-height: 22px;
    }
    .error-text {
        font-size: 50px;
        line-height: 46px;
        margin-bottom: 0.5rem;
    }
    .error-heading {
        font-size: 22px;
        line-height: 30px;
    }
    .thankyou-text {
        font-size: 14px;
        line-height: 22px;
        margin-top: 10px;
    }
    .pckg {
        background-size: cover;
        overflow: hidden;
    }
    .pckg-btn:before{
        display: none;
    }
    .pckg:before{
        display: none;
    }
    .process-card {
        padding: 0;
    }
    .pckg .upper {
        padding: 14px;
    }
    .pckg .bottom {
        padding: 14px 14px 10px;
    }
    .slide img {
        width: 216.007px;
        height: 435.961px;
    }
    .slider-container {
        margin-left: 0%;
    }
    .slide-two img {
        width: 250.351px;
        height: 314.452px;
    }
    .slider-container-two {
        margin-left: 0%;
    }
    .past-client {
        margin-top: 20px;
        max-width: 36%;
    }
    .testi-card .top span.name {
        font-size: 14px;
    }
    .testi-card .top {
        padding: 12.5px 5px 10.5px;
    }
    .portfolio-set img {
        width: 100%;
        height: auto;
    }
    .portfolio-set {
        padding: 0px 0 20px 24px;
    }
    .timeline-section {
        margin-top: 0;
        padding: 40px 0;
    }
    .scroll-wrap {
        height: 529px;
    }
    .btn-wrap .theme-btn {
       padding: 10px 12px;
       font-size: 14px;
    }
    .timeline-line {
        left: 3.7vw;
    }
    .portfolio-set.active .sec-heading h3 {
        font-size: 28px;
    }
    .timeline-step {
        margin: 16px 0 24px 35px;
    }
    .timeline {
        height: 392px;
    }
    .timeline-line {
        height: 370px;
        top: 23px;
    }












}


@media only screen and (min-width : 768px) and (max-width : 991px) {
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 60px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 12px;
    }
    h1.banner-heading {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 14px;
        line-height: 22px;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 38px;
        line-height: 42px;
    }
    .sec-heading p {
        font-size: 14px;
        line-height: 22px;
        opacity: 1;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
        font-size: 12px;
    }
    .copyright {
        gap: 12px;
    }
    .main-header {
        padding-top: 0;
    }
    .slide-image {
        display: none;
    }
    .past-client {
        display: none;
    }
    ul#counter {
        gap: 2rem;
    }
    ul#counter li .counter>div {
        font-size: 24px;
        gap: 0rem;
        flex-direction: column;
    }
    ul#counter li .counter span.text {
        font-size: 14px;
        line-height: 18px;
        width: auto;
    }
    section.sec-counter {
        padding: 24px;
    }
    .tubelight-image {
        display: none;
    }
    .V-portfolio-image {
        gap: 12.41px;
    }
    .V-portfolio-image img {
        opacity: 1;
    }
    .vertical-portfolio-slider {
        margin-bottom: 20px;
    }
    section {
        padding: 2rem 0;
        position: relative;
    }
    ul.overview-nav a {
        text-align: center;
    }
    ul.overview-nav {
        border-radius: 22px;
    }
    .pckg .upper .title {
        font-size: 22px;
        line-height: 22px;
    }
    .pckg .upper .price .amount {
        font-size: 40px;
        line-height: 24px;
    }
    .bottom span {
        font-size: 16.88px;
        line-height: 20px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 22px;
    }
    .pckg .bottom ul li::before {
        font-size: 16px;
    }
    .pckg-btn {
        gap: 0rem;
        padding: 14px;
    }
    section.sec-3 {
        padding: 40px 0;
        background-image: none !important;
    }
    ul.steps-nav {
        flex-direction: column;
        align-items: center;
        margin: 0;
        gap: 14px;
        margin-bottom: 3rem;
    }
    ul.steps-nav li.active {
        border-radius: 0;
        padding: 0;
        border: 0;
        background: none;
        border-bottom: 0;
        margin-bottom: 0;
    }
    ul.steps-nav li {
        width: 100%;
    }
    ul.steps-nav a {
        padding: 3.39px 20.54px 3.39px 60.65px;
        font-weight: 500;
        font-size: 16px;
    }
    ul.steps-nav a span {
        width: 46.598px;
        height: 46.557px;
        margin-left: -55px;
        font-size: 16.454px;
    }
    .port-content {
        border: 0;
        background: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
    }
    .sec-heading h3 {
        font-size: 28px;
        line-height: 36px;
        opacity: 1;
    }
    .step-wrapper {
        padding: 0;
    }
    .list-steps li {
        padding: 8px 0;
        display: flex;
        align-items: baseline;
        gap: 10px;
    }
    .step-image {
        display: none;
    }
    section.sec-4 {
        padding: 40px 0;
    }
    br {
        display: none;
    }
    .process-card.card-one {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
    }
    .process-card.card-one {
        margin-left: 0;
        padding: 0;
        margin-top: 0;
    }
    .process-card.card-two {
        margin-top: 0;
        padding: 0;
    }
    .process-card.card-three {
        margin-top: 0;
        margin-left: 0;
        padding: 0;
    }
    .process-card h3 {
        font-size: 20px;
    }
    .process-card span {
        font-size: 100.378px;
    }
    .process-wrap {
        background-image: none !important;
        margin-top: 0;
        padding: 0;
    }
    .process-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .process-card.card-two h3 {
        margin-top: 0;
    }
    .process-card.card-three h3 {
        margin-top: 0;
    }
    img.left-gradient, img.right-gradient{
        display: none;
    }
    .testi-card .bottom p {
        font-size: 14px;
        line-height: 22px;
    }
    .footer-sec:before, ul.f-menu:before{
        display: none;
    }
    .footer-sec p {
        padding-top: 0;
        max-width: 100%;
        padding: 20px 0 0px;
    }
    .footer-hdng h4 {
        margin-bottom: 6px;
    }
    .footer-hdng {
        padding-top: 20px;
    }
    footer {
        padding: 40px 0 40px;
    }
    .f-menu li {
        line-height: 1.6;
    }
    section.sec-1 {
        margin-top: 0;
    }
    .banner-content.inner-page h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-right: 0;
    }
    .slide-image-two {
        display: none;
    }
    .card-wrapper {
        padding: 20px 20px;
    }
    .card-wrapper {
        margin-top: 1rem;
        height: auto;
    }
    .bottom-line {
        padding-bottom: 60px;
    }
    .borderbottom:before, .brandwork-card:after{
        display: none;
    }
    .brandwork-card {
        padding: 20px;
    }
    .brandwork-card p {
        font-size: 14.381px;
        line-height: 22.195px;
    }
    section.action-sec {
        padding: 40px 0;
        background-image: none !important;
    }
    section.brandwork-sec {
        padding: 40px 0;
    }
    .bordertop {
        padding-top: 60px;
    }
    .input-field1 label {
        font-size: 12.811px;
    }
    .input-field1 input, .input-field1 textarea {
        height: 40px;
        font-size: 14px;
        padding: 4px 4px;
        margin-bottom: 12px;
    }
    .input-field1 textarea {
        height: 80.922px;
    }
    form {
        margin-top: 15px;
    }
    .checkbox-wrap label {
        font-size: 10.811px;
        line-height: 13.819px;
    }
    .checkbox-wrap {
        margin-bottom: 6px;
    }
    .sec-heading h4 {
        font-size: 20.819px;
        line-height: 30px;
    }
    .contact-wrapper {
        margin-top: 2rem;
        padding: 20px;
    }
    .contact-detail {
        flex-direction: column;
    }
    .contact-card {
        padding: 10px;
    }
    .contact-card h3 {
        font-size: 16.932px;
    }
    .contact-card a {
        font-size: 12.955px;
        line-height: 22.932px;
    }
    section.contactus-sec {
        padding: 0 0 40px;
    }
    .wedo-card {
        padding: 20px;
    }
    .wedo-card h3 {
        font-size: 22px;
    }
    .wedo-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .wedo-card.wedo-card-flex {
        gap: 14px;
        flex-direction: column;
        gap: 0;
    }
    .margintop {
        margin-top: 0;
    }
    .wedo-card.wedo-card-flex .wedo-image {
        width: auto;
    }
    .wedo-card.wedo-card-flex .wedo-image2 {
        width: auto;
    }
    .wedo-image.wedo-image3 {
        width: auto;
    }
    section.wedo-sec {
        padding: 0 0 40px;
    }
    .portfolio-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .portfolio-card h3 {
        font-size: 22px;
    }
    .portfolio-card span {
        font-size: 14px;
        line-height: 22px;
        padding-top: 6px;
    }
    .terms h4 {
        font-size: 18px;
    }
    .terms p {
        font-size: 14px;
        line-height: 22px;
    }
    .error-text {
        font-size: 50px;
        line-height: 46px;
        margin-bottom: 0.5rem;
    }
    .error-heading {
        font-size: 22px;
        line-height: 30px;
    }
    .thankyou-text {
        font-size: 14px;
        line-height: 22px;
        margin-top: 10px;
    }
    .pckg {
        background-size: cover;
    }
    .portfolio-set img {
        width: 100%;
        height: auto;
    }
    .timeline-section {
        margin-top: 0;
    }
    .portfolio-image-active {
        display: none;
    }
    .timeline-step {
        margin: 16px 0 26px 0px;
    }
    .timeline {
        height: auto;
    }
    .timeline-line {
        display: none;
    }
    a.arrow-btn {
        display: none !important;
    }
    .portfolio-set .btn-wrap {
        display: block;
        gap: 12px;
        display: flex;
    }
    .portfolio-set .sec-heading h3, .portfolio-set .sec-heading p {
        opacity: 1;
    }
    .timeline-step svg {
        display: none;
    }
    .timeline-step::after{
        display: none;
    }
    .timeline-step::before{
        color: #fff;
    }
    .projects-slider {
        display: none;
    }
    .portfolio-set.active .sec-heading h3{
        font-size: 28px;
    }

}


@media only screen and (min-width : 280px) and (max-width : 767px) {
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 60px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 12px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 14px;
        line-height: 22px;
    }
    .btn-wrap {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    .btn-wrap a {
        width: 100%;
        text-align: center;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 14px;
        line-height: 22px;
        opacity: 1;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
        font-size: 12px;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    .main-header {
        padding-top: 0;
    }
    .slide-image {
        display: none;
    }
    .past-client {
        display: none;
    }
    ul#counter {
        gap: 1rem;
        flex-direction: column;
    }
    ul#counter li .counter>div {
        font-size: 24px;
        gap: 10px;
    }
    ul#counter li .counter span.text {
        font-size: 14px;
        line-height: 18px;
        width: auto;
    }
    section.sec-counter {
        padding: 24px;
    }
    .tubelight-image {
        display: none;
    }
    .V-portfolio-image {
        gap: 12.41px;
        flex-direction: column;
        width: 100%;
    }
    .V-portfolio-image img {
        opacity: 1;
        width: 100%;
    }
    section {
        padding: 2rem 0;
        position: relative;
    }
    ul.overview-nav a {
        width: 100%;
        text-align: center;
    }
    ul.overview-nav li {
        width: 100%;
    }
    ul.overview-nav {
        border-radius: 22px;
    }
    .pckg .upper .title {
        font-size: 22px;
        line-height: 22px;
    }
    .pckg .upper .price .amount {
        font-size: 40px;
        line-height: 24px;
    }
    .bottom span {
        font-size: 16.88px;
        line-height: 20px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 22px;
    }
    .pckg .bottom ul li::before {
        font-size: 12px;
    }
    .pckg-btn {
        gap: 0;
        padding: 14px;
    }
    section.sec-3 {
        padding: 40px 0;
        background-image: none !important;
    }
    ul.steps-nav {
        flex-direction: column;
        align-items: center;
        margin: 0;
        gap: 14px;
        margin-bottom: 3rem;
    }
    ul.steps-nav li.active {
        border-radius: 0;
        padding: 0;
        border: 0;
        background: none;
        border-bottom: 0;
        margin-bottom: 0;
    }
    ul.steps-nav li {
        width: 100%;
    }
    ul.steps-nav a {
        padding: 3.39px 20.54px 3.39px 60.65px;
        font-weight: 500;
        font-size: 16px;
    }
    ul.steps-nav a span {
        width: 46.598px;
        height: 46.557px;
        margin-left: -55px;
        font-size: 16.454px;
    }
    .port-content {
        border: 0;
        background: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
    }
    .sec-heading h3 {
        font-size: 20px;
        opacity: 1;
        line-height: 26px;
    }
    .step-wrapper {
        padding: 0;
    }
    .list-steps li {
        padding: 8px 0;
        display: flex;
        align-items: baseline;
        gap: 10px;
    }
    .step-image {
        display: none;
    }
    section.sec-4 {
        padding: 40px 0;
    }
    br {
        display: none;
    }
    .process-card.card-one {
        margin-left: 0;
        padding: 0;
        margin-top: 0;
    }
    .process-card.card-two {
        margin-top: 0;
        padding: 0;
    }
    .process-card.card-three {
        margin-top: 0;
        margin-left: 0;
    }
    .process-card h3 {
        font-size: 20px;
    }
    .process-card span {
        font-size: 100.378px;
    }
    .process-wrap {
        background-image: none !important;
        margin-top: 0;
        padding: 0;
    }
    .process-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .process-card.card-two h3 {
        margin-top: 0;
    }
    .process-card.card-three h3 {
        margin-top: 0;
    }
    img.left-gradient, img.right-gradient{
        display: none;
    }
    .testi-card .bottom p {
        font-size: 14px;
        line-height: 22px;
    }
    .footer-sec:before, ul.f-menu:before{
        display: none;
    }
    .footer-sec p {
        padding-top: 0;
        max-width: 100%;
        padding: 20px 0 0px;
    }
    .footer-hdng h4 {
        margin-bottom: 6px;
    }
    .footer-hdng {
        padding-top: 20px;
    }
    footer {
        padding: 40px 0 40px;
    }
    .f-menu li {
        line-height: 1.6;
    }
    section.sec-1 {
        margin-top: 0;
    }
    .banner-content.inner-page h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-right: 0;
    }
    .slide-image-two {
        display: none;
    }
    .card-wrapper {
        padding: 20px 20px;
    }
    .card-wrapper {
        margin-top: 1rem;
        height: auto;
    }
    .bottom-line {
        padding-bottom: 35px;
    }
    .borderbottom:before, .brandwork-card:after{
        display: none;
    }
    .brandwork-card {
        padding: 20px;
    }
    .brandwork-card p {
        font-size: 14.381px;
        line-height: 22.195px;
    }
    section.action-sec {
        padding: 40px 0;
        background-image: none !important;
    }
    section.brandwork-sec {
        padding: 40px 0;
    }
    .bordertop {
        padding-top: 60px;
    }
    .input-field1 label {
        font-size: 14.811px;
    }
    .input-field1 input, .input-field1 textarea {
        height: 40px;
        font-size: 14px;
        padding: 4px 4px;
        margin-bottom: 12px;
    }
    .input-field1 textarea {
        height: 118.922px;
    }
    .checkbox-wrap label {
        font-size: 12.811px;
        line-height: 20.819px;
    }
    .sec-heading h4 {
        font-size: 20.819px;
        line-height: 30px;
    }
    .contact-wrapper {
        margin-top: 2rem;
        padding: 20px;
    }
    .contact-detail {
        flex-direction: column;
    }
    .contact-card {
        padding: 10px;
    }
    .contact-card h3 {
        font-size: 16.932px;
    }
    .contact-card a {
        font-size: 12.955px;
        line-height: 22.932px;
    }
    .contact-image {
        display: none;
    }
    section.contactus-sec {
        padding: 0 0 40px;
    }
    .wedo-card {
        padding: 20px;
    }
    .wedo-card h3 {
        font-size: 22px;
    }
    .wedo-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .wedo-card.wedo-card-flex {
        gap: 14px;
        flex-direction: column;
        gap: 0;
    }
    .margintop {
        margin-top: 0;
    }
    .wedo-card.wedo-card-flex .wedo-image {
        width: auto;
    }
    .wedo-card.wedo-card-flex .wedo-image2 {
        width: auto;
    }
    .wedo-image.wedo-image3 {
        width: auto;
    }
    section.wedo-sec {
        padding: 65px 0 30px;
    }
    .portfolio-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .portfolio-card h3 {
        font-size: 22px;
    }
    .portfolio-card span {
        font-size: 14px;
        line-height: 22px;
        padding-top: 6px;
    }
    .terms h4 {
        font-size: 18px;
    }
    .terms p {
        font-size: 14px;
        line-height: 22px;
    }
    .error-text {
        font-size: 50px;
        line-height: 46px;
        margin-bottom: 0.5rem;
    }
    .error-heading {
        font-size: 22px;
        line-height: 30px;
    }
    .thankyou-text {
        font-size: 14px;
        line-height: 22px;
        margin-top: 10px;
    }
    .portfolio-set img {
        width: auto;
        height: auto;
    }
    .portfolio-set {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 0.5rem;
    }
    .timeline-section {
        margin-top: 0;
    }
    .portfolio-set.active .sec-heading h3 {
        font-size: 20px;
    }
    .portfolio-set {
        padding: 0px 0 0px 28px;
    }
    .timeline-step {
        margin: 16px 0 26px 0px;
    }
    .timeline {
        height: auto;
    }
    .timeline-line {
        display: none;
    }
    a.arrow-btn {
        display: none !important;
    }
    .portfolio-set .btn-wrap {
        display: block;
        gap: 12px;
        display: flex;
    }
    .portfolio-set .sec-heading h3, .portfolio-set .sec-heading p {
        opacity: 1;
    }
    .timeline-step svg {
        display: none;
    }
    .timeline-step::after{
        display: none;
    }
    .timeline-step::before{
        color: #fff;
    }
    .projects-slider {
        display: none;
    }
    .btn-wrap .theme-btn {
        padding: 18px 12px;
        font-size: 14px;
    }
    .mmpopup .centercont h3 span {
        font-size: 22px;
        line-height: 1.2;
    }
    .mmpopup .popup-content {
        padding: 24px 16px;
    }
    .pckg .upper p {
        font-size: 14px;
    }
    .pckg-btn a {
        font-size: 12.5px;
    }


}