/*Main Css */
:root {
    --primary: #5B0EFF;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "Proxima Nova" , sans-serif;
    --font-accent: "DM Sans" , sans-serif;
    --font-body: "DM Sans" , sans-serif;
  
    --icon: "Font Awesome 6 Pro", sans-serif;
  }p
::selection {
    background: #5B0EFF;;
    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: #5B0EFF;;
}

/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1434px;
}

html{
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #1C1C1C;
}
body.inner-header {
    padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    display: block;
    font-weight: 700;
    color: #1C1C1C;
}

*: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;
    max-width: 150px;
}
.logo img {
    display: block;
}

/* 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(--white);
    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: 0px 0 0px 35px; 
}
.menu > li > a {
    display: block;
    font-size: 16px;
    color: var(--white);
    /* text-transform: uppercase; */
    font-weight: 500;
}
.header-btn {
    background: var(--primary);
    color: white !important;
    padding: 6px 6px 6px 24px;
    font-weight: 400 !important;
    border-radius: 201.816px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    font-size: 14.127px !important;
    line-height: 24.218px; /* 171.429% */
}
.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;
    z-index: 99999;
}
.banner-content {
    padding: 55px 0 60px;
}
h1.banner-heading {
    font-family: var(--font-heading);
    font-size: 86px;
    font-weight: 700;
    line-height: 1; /* 110.577% */
    /*margin-right: -60%;*/
}
span.sub-heading {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    padding-bottom: 10px;
}
p.banner-text {
    /* margin-bottom: 27px; */
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    opacity: 0.8;
}

.banner-content ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    padding: 8.53px 14px;
    margin-bottom: 10px;
    border-radius: 200px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.13);
}
.header-wrapper {
    border-bottom: 1px solid #ffffff38;
    padding: 30.54px 0;
}
.background-animation {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 32%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Pseudo element for the moving blurred effect */
.background-animation::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/banner/right-shadow.webp'); /* your image */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    /* filter: blur(4px); */
    /* opacity: 0.15; */
    animation: moveBlur 2s ease-in-out infinite alternate;
}

@keyframes moveBlur {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-20px); /* subtle motion only */
    }
}

.background-animation-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 20%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.background-animation-left::before {
    content: '';
    position: absolute;
    top: 13vw;
    left: 0vw;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/banner/left-shadow.webp'); /* replace with your left image */
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-position: inherit;
    animation: moveBlurLeft 2s ease-in-out infinite alternate;
}

@keyframes moveBlurLeft {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(20px); /* opposite direction of right */
    }
}

/* portfolio-images */
.portfolio {
    display: flex;
    justify-content: center;
}
.portfolio-item {
    overflow: hidden;
    border-radius: 40px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.portfolio-item:hover {
    filter: grayscale(0%);
    transform: scale(1.05) !important;
    z-index: 1;
}
.portfolio-item.image1 {
    width: 779px;
    height: 480px;
    transform: rotate(8.317deg);
    flex-shrink: 0;
}
.portfolio-item.image2 {
    width: 779px;
    height: 480px;
    transform: rotate(-12.634deg);
    flex-shrink: 0;
    margin-left: -20vw;
}
.portfolio-item.image3 {
    width: 779px;
    height: 480px;
    transform: rotate(8.747deg);
    flex-shrink: 0;
    margin-left: -14vw;
}
.portfolio-item.image4 {
    width: 779px;
    height: 480px;
    transform: rotate(-10.68deg);
    flex-shrink: 0;
    margin-left: -20vw;
}
.portfolio-item.image5 {
    width: 779px;
    height: 480px;
    transform: rotate(-14.702deg);
    flex-shrink: 0;
    margin-left: 5vw;
}
.portfolio-item.image6 {
    width: 785.341px;
    height: 451.866px;
    transform: rotate(12.201deg);
    flex-shrink: 0;
    margin-left: -4vw;
    margin-top: -2vw;
}
.portfolio-item.image7 {
    width: 812px;
    height: 480px;
    transform: rotate(-23.04deg);
    flex-shrink: 0;
    margin-left: -13vw;
    margin-top: 4vw;
}


img.left-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
}
.banner-text-wrapper {
    margin-top: 212px;
}
.banner-content ul {
    margin: 20px 0;
}

.trusted-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    position: relative;
    width: 146.928px;
}
.trusted-slider.slick-initialized.slick-slider div {
    display: flex !important;
    align-items: center !important;
}


/* -------banner-slider------- */
.slider-container {
  position: relative;
  margin-top: -25px;
  margin-left: 252px;
  align-items: end;
  width: 511.104px;
  height: 348.069px;
  /* perspective: 1000px; */
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12px;
  overflow: hidden;
  transform: rotateX(0deg) rotateY(-30deg) rotateZ(2deg);
  opacity: 0;
  /* width: 100%; */
  /* height: 100%; */
  transition: all 1s ease;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide.active {
  opacity: 1;
  transform: rotateX(0deg) rotateY(-30deg) rotateZ(-2deg) translateZ(0px);
  z-index: 3;
  top: 0;
}
.slide.prev {
  opacity: 0.6;
  transform: rotateX(0deg) rotateY(-30deg) rotateZ(-2deg) translateZ(110px);
  z-index: 2;
  top: -24px;
}
.slide.prev2 {
  opacity: 0.4;
  transform: rotateX(0deg) rotateY(-30deg) rotateZ(-1deg) translateZ(217px);
  z-index: 1;
  top: -54px;
}
/* --------banner-slider------- */

.sec-2 .sec-heading .sub-heading {
    margin-left: 172px;
} 

.sec-1 {
    background: #252525;
    /* padding: 75px 0; */
}
.sec-heading h3 {
    font-size: 34px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 3.4px;
    text-transform: capitalize;
}
.container-fluid-padding {
    padding-left: 13%;
}
.sec-1 .sec-heading {
    margin-bottom: 0;
}
.trusted-slider.slick-initialized.slick-slider {
    border-radius: 124px 0 0 124px;
    background: #303030;
    border-left: 14px solid #595959;
    padding: 50px 0;
}
.trusted-slider .slick-list.draggable {
    margin-left: 48px;
}
.trusted-logo:before {
    content: "";
    display: block;
    position: absolute;
    background: #ffffff57;
    /*top: 0;*/
    right: -29px;
    width: 1.206px;
    height: 88.051px;
    /*height: 100%;*/
}
section.sec-3 {
    margin-top: -19%;
    padding: 200px 0 100px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 99;
}
.work-image {
    position: relative;
    z-index: 1;
    margin-top: 112px;
}
section.sec-2 {
    padding: 120px 0;
    z-index: 999;
}
/* -------------------------counter CSS------------------------  */
ul#counter {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.counter-wrapper .counter {
    display: flex;
    align-items: center;
    gap: 20px;
}
.counter-wrapper .counter span.count {
    font-weight: 700;
    font-size: 45px;
    color: #000;
}
ul#counter li .counter>div {
    margin-bottom: 0rem;
    flex-shrink: 0;
    color: #FFF;
    font-family: "Proxima Nova";
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px; /* 115% */
}
ul#counter li {
    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: #FFF;
    font-family: "DM Sans";
    font-size: 40px;
    font-weight: 400;
    line-height: 42px; /* 60% */
    opacity: 0.8;
    margin-top: 30px;
}
ul#counter li.one-item {
    margin-top: 145px;
    transform: skew(378deg, 327deg);
}
ul#counter li.three-item {
    margin-top: 184px;
    transform: skew(382deg, 346deg);
    margin-left: 159px;
    margin-right: -60px;
}
/* -------------------------counter CSS------------------------  */

.counter-image {
    margin-top: -162px;
    text-align: center;
}
.sub-heading.pckg-sub-heading {
    justify-content: start !important;
}
.margintop {
    margin-top: 200px;
}
.chooseus-image {
    text-align: center;
}
.margintop-wrap {
    margin-top: 50px;
}
.chooseus-list li h3 {
    color: #1C1C1C;
    font-size: 28.373px;
    line-height: normal;
    padding-bottom: 7px;
}
.chooseus-list li p {
    color: #1C1C1C;
    font-size: 18px;
    font-weight: 400;
    line-height: 28.392px; /* 157.734% */
    letter-spacing: -0.36px;
    opacity: 0.7;
}

.chooseus-list li {
    padding: 43px 0 56px;
    /* border-bottom: 1px solid #D9D9D9; */
    position: relative;
}
.chooseus-list2{
    text-align: right;
    /* position: relative; */
}
.chooseus-list.chooseus-list2 li:before {
    content: "";
    display: block;
    position: absolute;
    width: 417px;
    height: 1px;
    background: #D9D9D9;
    bottom: 0;
    left: 0;
}
.chooseus-list li:before {
    content: "";
    display: block;
    position: absolute;
    width: 417px;
    height: 1px;
    background: #D9D9D9;
    bottom: 0;
    right: 0;
}
.chooseus-list.chooseus-list2 li.last:before {
    display: none;
}
.chooseus-list li.last:before {
    display: none;
}
.chooseus-list.chooseus-list2 li:nth-child(1) {
    margin-right: -130px;
    margin-left: 0;
}
.chooseus-list.chooseus-list2 li:nth-child(2) {
    margin-right: -20px;
    margin-left: -42px;
}
.chooseus-list.chooseus-list2 li:nth-child(3) {
    margin-right: -80px;
    border-bottom: 0;
}
.chooseus-list li:nth-child(1) {
    margin-left: -110px;
}
.chooseus-list li:nth-child(2) {
    margin-left: -18px;
    margin-right: -30px;
}
.chooseus-list li:nth-child(3) {
    margin-left: -76px;
    border-bottom: 0;
}
.theme-btn.bordered2 {
    border: 1.009px solid #5B0EFF !important;
    background: transparent !important;
    color: var(--primary) !important;
}

section.sec-5 {
    background: #222;
    padding: 100px 0 90px;
}
.service-card h3 {
    color: #FFF;
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    opacity: 0.3;
}
.service-card p {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
    opacity: 0.3;
}
.borderbottom {
    padding: 40px 0;
    border-bottom: 1px solid #ffffff33;
}
.service-card {
    position: relative;
    transition: 0.3s ease;
}
.borderbottom:nth-child(7) {
    border-bottom: 0;
}
.hover-image {
    position: absolute;
    top: -7vw;
    left: -17vw;
}
.service-card .hover-image {
    opacity: 0;
}
.service-card:hover .hover-image {
    opacity: 1;
}
.service-card:hover h3, .service-card:hover p {
    opacity: 1;
}
.hover-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 999;
}
.borderbottom:hover .hover-image {
    opacity: 1;
}

/* ------process-card--------- */
.process-card span {
    color: #7736FF;
    font-family: "Proxima Nova";
    font-size: 140px;
    font-weight: 700;
    line-height: normal;
}
.process-card {
    text-align: end;
}
.process-wrapper {
    border-radius: 190px;
    border: 1px solid #D9D9D9;
    display: inline-flex;
    padding: 30px 30px 30px 30px;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.processcard-bottom:hover .process-card span {
    color: #5B0EFF;
}
.processcard-bottom:hover .process-wrapper .process-icon img {
    opacity: 1;
}
.process-icon img {
    opacity: 0.8;
}
.process-icon {
    flex-shrink: 0;
}
.process-text h3 {
    color: #1C1C1C;
    font-size: 32px;
    line-height: normal;
    padding-bottom: 15px;
}
.process-text p {
    color: #1C1C1C;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
    opacity: 0.8;
}
.process-wrapper.wrapper2 {
    flex-direction: row-reverse;
    text-align: end;
}
.process-card.process-card2 {
    text-align: start;
}
.processcard-bottom {
    margin-bottom: 50px;
}
.process-icon {
  transition: transform 0.5s ease;
}

/* Rotate on hover */
.process-wrapper:hover .process-icon {
  transform: rotate(360deg);
}
/* ------process-card--------- */


section.sec-7 {
    background: #3900B2;
    padding: 86px 0 100px;
}
ul.best-choice-list {
    display: inline-block;
    vertical-align: middle;
    border-radius: 40px;
    background: #5B0EFF;
    width: 100%;
    text-align: center;
    padding: 34.5px 18px;
    margin: 50px 0 40px;
}
ul.best-choice-list li {
    display: inline-block;
    vertical-align: middle;
    border-right: 1px solid #ffffff45;
    margin-right: 0;
    padding: 0 28px;
    /*width: 19%;*/
}
ul.best-choice-list li p {
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.8;
    padding-top: 22px;
}
ul.best-choice-list li.last {
    border-right: 0;
}

.testi-card {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 21px 20px;
}
.testi-card .top img {
    max-width: 45px;
}
.testi-card .top span.name {
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    text-transform: capitalize;
    display: block;
}
.testi-card .top span.des {
    color: var(--Content, #1D1D1D);
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.8;
}
.testi-card .bottom p {
    color: var(--Content, #1D1D1D);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
    opacity: 0.8;
}
.bottom {
    margin-top: 20px;
}
.testi-card .top {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Accordian */
.accordion-list {
    position: relative;
}
.accordion-list li {
    padding: 21px 24px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 18px;
    border-radius: 20px;
    border: 1.2px solid rgba(217, 217, 217, 0.30);
    background: #222;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    color: #FFF;
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28.8px; /* 160% */
    opacity: 0.4;
}
ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: #9CA3AF;
    transition: all 0.3s ease-in-out;
    font-size: 12px;
    font-weight: 600;
    top: 0;
    height: 24px;
    width: 24px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f077";
    background: var(--primary);
    color: #fff;
}
.answer p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    opacity: 0.4;
}
.accordion-list>li.last {
    margin-bottom: 0;
}
.accordion-list>li.active .answer {
    display: block !important;
}
section.sec-9 {
    background: #222;
    padding: 100px 0;
}
.answer {
    border-top: 1px solid #ffffff47;
    margin-top: 20px;
}
ul.accordion-list li.active h3 {
    opacity: 1;
}
ul.accordion-list li.active .answer p {
    opacity: 1;
}
.sec-9 .sec-heading p {
    margin: 37px 0 0;
}
/* Accordian */

/* packages */
ul.overview-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 50px auto 0;
    flex-wrap: wrap;
    border-radius: 40px;
    border: 1px solid rgba(217, 217, 217, 0.25);
    background: #6836D3;
    width: fit-content;
    padding: 7px;
}
ul.overview-nav a {
    padding: 12px 20px;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid transparent;
    border-radius: 50px;
    background: transparent;
    color: #fff;
}
ul.overview-nav li.active a {
    color: white;
    border-color: var(--primary) !important;
    border-radius: 45px;
    background: #5B0EFF;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.10);
}

.pckg {
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    position: relative !important;
    transition: 0.3s;
    box-shadow: -10px 14px 30px rgb(0 0 0 / 7%);
    height: 100%;
    padding: 26px 23px;
    border-radius: 35px;
    border: 1.183px solid rgba(217, 217, 217, 0.30);
    background: #0D0D0D;
    /*backdrop-filter: blur(29.5px);*/
    /*z-index: 2 !important;*/
}

.pckg::before {
    content: "";
    position: absolute !important;
    top: -15px;
    left: -18px;
    height: 100%;
    width: 100%;
    z-index: -1 !important;
    border: 1.183px solid rgba(217, 217, 217, 0.25);
    background: #6836D3;
    border-radius: 50px;
}
.pckg .btn-wrap a{
    color: #FFF;
    font-size: 16.562px;
    font-weight: 400;
    line-height: normal;
    padding: 16px 30px;
    width: 100% !important;
    justify-content: center;
    border-radius: 80.444px;
    background: #5B0EFF;
    border: 0;
}

.pckg .btn-wrap .btn-norm{
    color: var(--primary);
    transition: .5s ease;
}
.pckg .btn-wrap .btn-norm:hover{
    transform: scale(1.03);
}
.pckg .upper .title {
    margin-bottom: 7px;
    color: #fff;
    font-size: 28.373px;
    font-weight: 700;
    line-height: normal;
}
.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
.pckg .upper p {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 28.392px; /* 157.734% */
    letter-spacing: -0.36px;
    opacity: 0.7;
}
.pckg .upper .price {
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 1.5rem 0 0;
    flex-direction: column;
    justify-content: start;
    border-top: 1px solid #ffffff4f;
    border-bottom: 1px solid #ffffff4f;
    padding: 26px 0;
}
.pckg .upper .price .amount {
    color: var(--primary);
    font-size: 52.052px;
    font-weight: 700;
    line-height: normal;
    font-family: 'Proxima Nova';
}
.price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}
.pckg .upper .price .uspto span.off-price {
    border-radius: 35.636px;
    background: #FFF;
    display: inline-flex;
    padding: 5.345px 9.727px 4.727px 10.691px;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-weight: 700;
}
.pckg .upper .price .uspto {
    color: #fff;
    font-size: 16.046px;
    font-weight: 400;
    line-height: 28.392px;
    letter-spacing: -0.441px;
    border-radius: 35.636px;
    background: #5B0EFF;
    display: flex;
    align-items: center;
    gap: 15.747px;
    padding: 6.818px 6.527px 6.818px 12.473px;
}
.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: #fff;
   font-size: 18px;
   font-weight: 400;
   line-height: 28.392px; /* 157.734% */
   letter-spacing: -0.36px;
   opacity: 0.7;
}
.pckg .bottom ul {
    margin: 1rem 0 1rem;
    overflow-y: auto;
    /* max-height: 179px; */
    padding-right: 10px;
    height: 254px;
    overflow-y: scroll;
}
.bottom span {
   color: #fff;
   font-size: 23.66px;
   font-weight: 700;
   line-height: normal;
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 10px;
}
.pckg .bottom ul li::before {
    content: "";
    font-family: var(--icon);
    content: "\f058";
    font-weight: 800;
    color: var(--primary);
    margin-right: 12px;
    margin-left: 2px;
}
.pckg .btn-wrap {
    flex-direction: column;
    margin: 0;
    width: 100%;
}
.pckg:hover {
    border: 1.183px solid #FFF;
    background: #4c18b9;
    box-shadow: 0px 14px 34px 0px rgba(0, 0, 0, 0.10);
}
.pckg:hover .upper .title, 
.pckg:hover .upper p, 
.pckg:hover .upper .price .uspto, 
.pckg:hover .upper .price .amount, 
.pckg:hover .bottom span, 
.pckg:hover .bottom ul li, .pckg:hover .bottom ul li::before  {
    color: #fff;
}
.pckg:hover .btn-wrap a{
    background: #fff;
    color: var(--primary);
}
section#pricing {
    padding: 100px 0 110px;
}
.pckg .bottom ul li.heading {
    color: #fff;
    margin: 1rem 0;
    font-weight: 700;
    font-size: 23.66px;
    opacity: 1;
}
.pckg .bottom ul li.heading:before {
    display: none;
}
/* packages */

/* Sec Headings */
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    font-size: 100px;
    line-height: 85px; /* 115% */
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    margin: 1rem 0;
    color: #1C1C1C;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px; /* 120% */
    opacity: 0.8;
}
.sec-heading .sub-heading {
    /* margin-bottom: 1rem; */
    color: #1C1C1C;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
    justify-content: center;
}
/* 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 {
    transition: .5s ease;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 4px 5px 24px;
    border-radius: 201.816px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: #5B0EFF;
}
.btn-wrap .theme-btn.bordered {
    color: var(--primary);
    border-radius: 201.816px;
    background: #FFF;
    border: 1px solid #ffffff;
}
.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 */

.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;
}
/* -------------------------contact us-------------------------- */
section.sec-10 {
    padding: 190px 0 100px;
}
.input-field1 label {
    padding-left: 10px;
    color: #292929;
    font-weight: 500;
    padding-bottom: 8px;
}
.input-field1 input, .input-field1 textarea {
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    color: #000;
    padding: 15px 14px;
    outline: none !important;
    text-transform: capitalize;
    margin-bottom: 18px;
    border-radius: 12.035px;
    border: 1.204px solid #D9D9D9;
    background: #FFF;
    height: 56.565px;
}
.input-field1 textarea {
    height: 166px;
}
.send {
    padding-top: 0;
}
.send a{
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    transition: .4s ease;
    text-transform: capitalize;
    width: 100%;
    box-shadow: 0 1.7px 3.1px 0 rgba(11, 93, 81, 0.01);
    border-radius: 201.816px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: #5B0EFF;
    padding: 6px 6px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 14rem;
}
.details h5 {
    font-size: 18px;
    padding-bottom: 20px;
    color: #202529;
}
.details a {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}
.details {
    margin-bottom: 40px;
}
.social-icons li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 18px;
    height: 40px;
    width: 40px;
    background: #008576;
    border-radius: 50px;
    text-align: center;
}
.social-icons li a {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
}
.details a i, .details p i {
    color: #008576;
    padding-right: 12px;
}
.form {
    margin-top: 30px;
}
/* -------------------------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.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: 60px;
  }
  .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 #f45a28;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 40px;
    border-radius: 5px;
    background: #F45A28;
    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: 70px 0 20px;
    background: #222;
    text-align: center;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff29;
    padding: 20px 0;
}
.copyright p,.copyright a {
    color: white;
    font-size: 16px;
    opacity: 0.7;
}

.footer-sec p {
    padding: 16px 0 30px;
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px; /* 140% */
    opacity: 0.7;
}
.footer-hdng h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}
.f-menu li a {
    color: #fff;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.8;
    display: flex;
    align-items: center;
}
.footer-hdng p {
    color: #fff;
    line-height: normal;
    padding-bottom: 16px;
}
.f-menu li a i {
    color: #fff;
    margin-right: 10px;
}
.f-menu li {
    line-height: 2;
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px;
}
.copyright-sec {
    background: #222222;
}
.contactinfo-border {
    border-top: 1px solid #ffffff24;
    padding-top: 24px;
}
ul.terms-ul-list {
    display: flex;
    gap: 1rem;
}
/* ----------------------------------footer---------------------- */

/* 404 */
.error-text {
    font-size: 96px;
    line-height: 68px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.error-heading {
    font-weight: 500;
    font-size: 52px;
    line-height: 68px;
}
.error-image {
    margin-top: 100px;
}
.thankyou-text{
    font-size: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
}
.thankyou-page {
    padding: 100px 0;
}
/* 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;
}
ul.list-ul {
    list-style: disc;
    margin-left: 22px;
}
.mainBanner.term-page h1.banner-heading {
    margin-right: 0;
    font-size: 60px;
    padding: 50px 0;
}
/* terms */

section.sec-4 {
    padding: 82px 0;
}

















@media (max-width: 1440px) {
    .slider-container {
        margin-top: -40px;
        margin-left: 140px;
    }
    .banner-img {
        margin-right: 0px;
        margin-top: 6px;
    }
    .sec-heading h2 {
        font-size: 65px;
        line-height: 60px;
    }
    .sec-heading p {
        font-size: 16px;
    }
    section.sec-2 {
        padding: 75px 0;
    }
    .portfolio-item.image1, 
    .portfolio-item.image2, 
    .portfolio-item.image3, 
    .portfolio-item.image4, 
    .portfolio-item.image5, 
    .portfolio-item.image6, 
    .portfolio-item.image7 {
        width: 42%;
        height: auto;
    }
    .portfolio-item {
        border-radius: 10px;
    }
    .work-image {
        margin-top: 58px;
    }
    ul#counter li .counter>div {
        font-size: 66px;
        line-height: 45px;
    }
    ul#counter li .counter span.text {
        font-size: 21px;
        line-height: 27px;
        margin-top: 20px;
    }
    ul#counter li.three-item {
        margin-top: 13px;
        margin-left: 22px;
        margin-right: 0;
    }
    .counter-image {
        margin-top: -123px;
    }
    section.sec-3 {
        margin-top: -17%;
    }
    .margintop {
        margin-top: 22px;
    }
    .chooseus-list li:nth-child(2) {
        margin-right: 0;
    }
    .chooseus-list.chooseus-list2 li:nth-child(2) {
        margin-left: 0;
    }
    .chooseus-list.chooseus-list2 li:before {
        width: 300px;
    }
    .chooseus-list li:before {
        width: 300px;
    }
    ul.best-choice-list li {
        padding: 0 30px;
        width: 19%;
    }
    ul.best-choice-list li p {
        font-size: 16px;
    }
    section.sec-10 {
        padding: 60px 0 60px;
    }
    .input-field1 input, .input-field1 textarea {
        height: 44.565px;
    }
    .input-field1 textarea {
        height: 90px;
    }
    .pckg .upper p {
        font-size: 14px;
        line-height: 18.392px;
    }
    .trusted-slider .slick-list.draggable {
        margin-left: 44px;
    }
    .trusted-slider.slick-initialized.slick-slider {
        padding: 20px 0;
    }
    .trusted-logo:before{
        display:none;
    }
    .trusted-logo img {
        max-width: 66%;
    }
    .chooseus-list.chooseus-list2 li:nth-child(1) {
        margin-left: 74px;
    }
    .chooseus-list li:nth-child(1) {
        margin-right: 48px;
    }
    .chooseus-list.chooseus-list2 li:nth-child(3) {
        margin-left: 40px;
    }
    .chooseus-list li:nth-child(3) {
        margin-right: 25px;
    }
h1.banner-heading {
    font-size: 82px;
    line-height: 74px;
}



    
}







@media (max-width: 1200px) {
    .slider-container {
        margin-top: -54px;
        margin-left: 25vw;
        z-index: 0;
    }
    .banner-content {
        padding: 56px 0 50px;
    }
    .btns{
        margin: 1.5rem 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;
    }
    .menuWrap.open {
        display: flex;
        left: 0px;
    }
    .menuWrap {
        position: fixed;
        left: -210%;
        /* right: 0; */
        top: 0;
        bottom: 0;
        margin: auto;
        background: #000;
        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;
    }
    .slide {
        width: 511.104px;
        height: 348.069px;
    }
.slide img {
    width: auto;
}


.header-wrapper {
    padding: 0;
}
ul.menu.btns li {
    border-bottom: 0;
}
.trusted-slider .slick-list.draggable {
    margin-left: 44px;
}
.trusted-slider.slick-initialized.slick-slider {
    padding: 20px 0;
}
.sec-heading h2 {
    font-size: 70px;
    line-height: 70px;
}
section.sec-2 {
    padding: 50px 0;
}
.sec-heading p {
    font-size: 16px;
}
.portfolio-item.image1, 
    .portfolio-item.image2, 
    .portfolio-item.image3, 
    .portfolio-item.image4, 
    .portfolio-item.image5, 
    .portfolio-item.image6, 
    .portfolio-item.image7 {
        width: 42%;
        height: auto;
    }
    .portfolio-item {
        border-radius: 10px;
    }
    .work-image {
        margin-top: 58px;
    }
ul#counter li .counter>div {
        font-size: 66px;
        line-height: 45px;
    }
    ul#counter li .counter span.text {
        font-size: 21px;
        line-height: 27px;
        margin-top: 20px;
    }
    ul#counter li.three-item {
        margin-top: 13px;
        margin-left: 22px;
        margin-right: 0;
    }
    .counter-image {
        margin-top: -123px;
    }
section.sec-3 {
    margin-top: -13%;
}
.margintop {
    margin-top: 22px;
}
.chooseus-list li:nth-child(2) {
    margin-right: 0;
}
.chooseus-list.chooseus-list2 li:nth-child(2) {
    margin-left: 0;
}
.chooseus-list.chooseus-list2 li:before {
    width: 340px;
}
.chooseus-list li:before {
    width: 340px;
}
ul.best-choice-list li {
    padding: 0 30px;
    width: 19%;
}
ul.best-choice-list li p {
    font-size: 16px;
}
section.sec-10 {
    padding: 60px 0 60px;
}
.input-field1 input, .input-field1 textarea {
    height: 44.565px;
}
.input-field1 textarea {
    height: 90px;
}
.trusted-logo:before{
    display:none;
}
h1.banner-heading {
    font-size: 82px;
    line-height: 74px;
}


}

@media (max-width : 1199px) {

    .banner-content {
        padding: 60px 0 140px;
    }
    span.sub-heading {
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 22px;
    }
    .btn-wrap a {
        text-align: center;
    }
   
    .sec-heading h2 {
        font-size: 42px;
        line-height: 60px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 24px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    .header-wrapper {
        padding: 0 0;
    }
    .background-animation-left {
        display: none;
    }
    .background-animation {
        display: none;
    }
    ul.menu.btns li {
        border-bottom: 0;
    }
    a.header-btn {
        padding: 8px 15px !important;
    }
    ul.menu.btns li a svg {
        display: none;
    }
    .slider-container {
        margin-top: 0;
        margin-left: 0;
        align-items: end;
        width: auto;
        height: auto;
    }
    .slider-container {
        padding-bottom: 14rem;
    }
    .banner-content ul li {
        font-size: 16px;
    }
    .sec-heading h3 {
        font-size: 24px;
        padding-bottom: 0;
    }
    br {
        display: none;
    }
    .trusted-slider.slick-initialized.slick-slider {
        padding: 24px 0;
    }
    .trusted-slider .slick-list.draggable {
        margin-left: 0;
    }
    .container-fluid-padding {
        padding-left: 0;
    }
    .sec-1 {
        padding: 15px 0;
    }
    .trusted-logo img {
        max-width: 66%;
    }
    .trusted-logo:before {
        right: -13px;
    }
    section.sec-2 {
        padding: 45px 0;
    }
    .portfolio-item.image1, 
    .portfolio-item.image2, 
    .portfolio-item.image3, 
    .portfolio-item.image4, 
    .portfolio-item.image5, 
    .portfolio-item.image6, 
    .portfolio-item.image7 {
        width: 42%;
        height: auto;
    }
    .portfolio-item {
        border-radius: 10px;
    }
    .work-image {
        margin-top: 58px;
    }
    section.sec-3 {
        margin-top: -18%;
        padding: 225px 0 40px;
    }
    .margintop {
        margin-top: 40px;
    }
    ul.overview-nav a {
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 10px;
    }
    ul.overview-nav {
        gap: 4px;
        margin: 20px 0 0;
    }
    .mt-5 {
        margin-top: 1rem !important;
    }
    .pckg .upper p {
        margin-bottom: 0.5rem;
        font-size: 16px;
        line-height: 22.392px;
    }
    .pckg .upper .price {
        margin: 1.5rem 0 0;
        padding: 10px 0;
    }
    .pckg .upper .price .uspto {
        font-size: 16.046px;
        line-height: 22.392px;
    }
    .bottom span {
        font-size: 16.66px;
    }
    .pckg .bottom ul li {
        font-size: 16px;
        line-height: 22.392px;
    }
    .pckg .bottom ul {
        height: 190px;
    }
    .margintop-wrap {
        margin-top: 10px;
    }
    .chooseus-list li h3 {
        font-size: 22.373px;
        padding-bottom: 10px;
    }
    .chooseus-list li p {
        font-size: 14px;
        line-height: 20.392px;
    }
    section.sec-5 {
        padding: 46px 0 46px;
    }
    .mb-5 {
        margin-bottom: 1rem !important;
    }
    .service-card h3 {
        font-size: 22px;
        padding-bottom: 10px;
    }
    .service-card p {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 25px;
    }
    .service-card .btn-wrap {
        justify-content: start !important;
    }
    .borderbottom {
        padding: 20px 0;
    }
    .hover-image {
        top: -3vw;
        left: -16vw;
        max-width: 53%;
    }
    .sec-6 .sec-heading p {
        text-align: left;
    }
    .process-card {
        text-align: end;
    }
    .process-card span {
        font-size: 120px;
    }
    .process-wrapper {
        /* flex-direction: column; */
        /* align-items: start; */
        /* border-radius: 10px; */
        padding: 20px;
        gap: 10px;
    }
    .process-icon {
        max-width: 20%;
    }
    .process-text h3 {
        font-size: 22px;
        padding-bottom: 6px;
    }
    .process-text p {
        font-size: 14px;
        line-height: 22px;
    }
    .process-wrapper.wrapper2 {
        /* flex-direction: column; */
        /* text-align: start; */
    }
    .processcard-bottom {
        margin-bottom: 18px;
    }
    section.sec-7 {
        padding: 44px 0 40px;
    }
    ul.best-choice-list {
        /* padding: 20.5px 18px; */
        margin: 14px 0 36px;
    }
    ul.best-choice-list li {
        border-right: 0;
        /* padding: 0 15px; */
        width: 19%;
    }
    ul.best-choice-list li p {
        /* font-size: 18px; */
        /* padding-top: 6px; */
    }
    ul.best-choice-list li img {
        /* max-width: 47%; */
    }
    .testi-card .bottom p {
        font-size: 14px;
        line-height: 22px;
    }
    section.sec-9 {
        padding: 50px 0;
    }
    .accordion-list li {
        padding: 16px 24px;
        margin-bottom: 10px;
        border-radius: 10px;
    }
    .accordion-list li h3 {
        font-size: 18px;
        line-height: 24.8px;
        max-width: 95%;
    }
    section.sec-10 {
        padding: 32px 0 38px;
    }
    .contact-image {
        padding-bottom: 20px;
    }
    .input-field1 input, .input-field1 textarea {
        font-size: 14px;
        padding: 14px 14px;
        margin-bottom: 12px;
        border-radius: 8.035px;
        height: 50.565px;
    }
    .input-field1 label {
        padding-left: 0;
        font-size: 14px;
    }
    .input-field1 textarea {
        height: 144px;
    }
    .send a {
        gap: 12rem;
    }
    .footer-sec p {
        padding: 0px 0 12px;
        font-size: 14px;
        line-height: 20px;
    }
    footer {
        padding: 30px 0 20px;
    }
    .f-menu li a {
        font-size: 14px;
    }
    .slider-container {
        margin-left: 122px;
        margin-top: 74px;
        z-index: 0;
    }
    .chooseus-list.chooseus-list2 li:nth-child(1) {
        margin-right: -98px;
        margin-left: 0;
    }
    .chooseus-list.chooseus-list2 li:nth-child(3) {
        margin-right: -58px;
        border-bottom: 0;
    }
    .chooseus-list li:nth-child(1) {
        margin-left: -90px;
    }
    .chooseus-list li:nth-child(3) {
        margin-left: -56px;
        border-bottom: 0;
    }
    .chooseus-list li {
        padding: 10px 0 24px;
    }
    .chooseus-list li:before {
        width: 284px;
    }
    .chooseus-list.chooseus-list2 li:before {
        width: 290px;
    }
    ul#counter li .counter>div {
        font-size: 66px;
        line-height: 45px;
    }
    ul#counter li .counter span.text {
        font-size: 21px;
        line-height: 27px;
        margin-top: 20px;
    }
    ul#counter li.three-item {
        margin-top: 13px;
        margin-left: 22px;
        margin-right: 0;
    }
    .counter-image {
        margin-top: -46px;
    }
    .banner-text-wrapper {
        margin-top: 100px;
    }
    .slide {
        width: 511.104px;
        height: 348.069px;
    }
    .slide img {
        width: auto;
    }

    
}

@media (max-width : 1023px){
    .btn-wrap .theme-btn {
        font-size: 14px;
    }
    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }
    .btn-wrap {
        gap: 8px;
    }
}

@media (max-width : 992px) {
    
    .banner-content {
        padding: 60px 0 60px;
    }
    span.sub-heading {
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 45px;
        line-height: 36px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 22px;
    }
    .btn-wrap a {
        text-align: center;
    }
    
    .sec-heading h2 {
        font-size: 52px;
        line-height: 60px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 24px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    .header-wrapper {
        padding: 0 0;
    }
    .background-animation-left {
        display: none;
    }
    .background-animation {
        display: none;
    }
    ul.menu.btns li {
        border-bottom: 0;
    }
    a.header-btn {
        padding: 8px 15px !important;
    }
    ul.menu.btns li a svg {
        display: none;
    }
    .slider-container {
        margin-top: 0;
        margin-left: 0;
        align-items: end;
        width: auto;
        height: auto;
    }
    .slider-container {
        padding-bottom: 14rem;
    }
    .banner-content ul li {
        font-size: 16px;
    }
    .sec-heading h3 {
        font-size: 24px;
        padding-bottom: 0;
    }
    br {
        display: none;
    }
    .trusted-slider.slick-initialized.slick-slider {
        padding: 24px 0;
    }
    .trusted-slider .slick-list.draggable {
        margin-left: 44px;
    }
    .container-fluid-padding {
        padding-left: 0;
    }
    .sec-1 {
        padding: 15px 0;
    }
    .trusted-logo img {
        max-width: 66%;
    }
    .trusted-logo:before {
        right: -13px;
    }
    section.sec-2 {
        padding: 45px 0;
    }
    .portfolio-item.image1, 
    .portfolio-item.image2, 
    .portfolio-item.image3, 
    .portfolio-item.image4, 
    .portfolio-item.image5, 
    .portfolio-item.image6, 
    .portfolio-item.image7 {
        width: 42%;
        height: auto;
    }
    .portfolio-item {
        border-radius: 10px;
    }
    .work-image {
        margin-top: 58px;
    }
    section.sec-3 {
        margin-top: -18%;
        padding: 225px 0 40px;
    }
    .margintop {
        margin-top: 40px;
    }
    ul.overview-nav a {
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 10px;
    }
    ul.overview-nav {
        gap: 4px;
        margin: 32px auto 20px;
    }
    .mt-5 {
        margin-top: 1rem !important;
    }
    .pckg .upper p {
        margin-bottom: 0.5rem;
        font-size: 16px;
        line-height: 22.392px;
    }
    .pckg .upper .price {
        margin: 1.5rem 0 0;
        padding: 10px 0;
    }
    .pckg .upper .price .uspto {
        font-size: 12.046px;
        line-height: 22.392px;
        gap: 5.747px;
    }
    .bottom span {
        font-size: 16.66px;
    }
    .pckg .bottom ul li {
        font-size: 16px;
        line-height: 22.392px;
    }
    .pckg .bottom ul {
        height: 190px;
    }
    .margintop-wrap {
        margin-top: 40px;
    }
    .chooseus-list li h3 {
        font-size: 22.373px;
        padding-bottom: 10px;
    }
    .chooseus-list li p {
        font-size: 14px;
        line-height: 20.392px;
    }
    section.sec-5 {
        padding: 46px 0 46px;
    }
    .mb-5 {
        margin-bottom: 1rem !important;
    }
    .service-card h3 {
        font-size: 22px;
        padding-bottom: 10px;
    }
    .service-card p {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 25px;
    }
    .service-card .btn-wrap {
        justify-content: start !important;
    }
    .borderbottom {
        padding: 20px 0;
    }
    .hover-image {
        top: -2vw;
        left: 0;
        max-width: 53%;
    }
    .sec-6 .sec-heading p {
        text-align: left;
    }
    .process-card {
        text-align: end;
    }
    .process-card span {
        font-size: 120px;
    }
    .process-wrapper {
        /* flex-direction: column; */
        /* align-items: start; */
        /* border-radius: 10px; */
        padding: 20px;
        gap: 10px;
    }
    .process-icon {
        max-width: 20%;
    }
    .process-text h3 {
        font-size: 22px;
        padding-bottom: 6px;
    }
    .process-text p {
        font-size: 14px;
        line-height: 22px;
    }
    .process-wrapper.wrapper2 {
        /* flex-direction: column; */
        /* text-align: start; */
    }
    .processcard-bottom {
        margin-bottom: 18px;
    }
    section.sec-7 {
        padding: 44px 0 40px;
    }
    ul.best-choice-list {
        /* padding: 20.5px 18px; */
        margin: 14px 0 36px;
    }
    ul.best-choice-list li {
        border-right: 0;
        padding: 0 15px;
        /* width: 48%; */
    }
    ul.best-choice-list li p {
        font-size: 14px;
        padding-top: 6px;
    }
    ul.best-choice-list li img {
        max-width: 44%;
    }
    .testi-card .bottom p {
        font-size: 14px;
        line-height: 22px;
    }
    section.sec-9 {
        padding: 50px 0;
    }
    .accordion-list li {
        padding: 16px 24px;
        margin-bottom: 10px;
        border-radius: 10px;
    }
    .accordion-list li h3 {
        font-size: 18px;
        line-height: 24.8px;
        max-width: 95%;
    }
    section.sec-10 {
        padding: 32px 0 38px;
    }
    .contact-image {
        padding-bottom: 20px;
    }
    .input-field1 input, .input-field1 textarea {
        font-size: 14px;
        padding: 14px 14px;
        margin-bottom: 12px;
        border-radius: 8.035px;
        height: 41.565px;
    }
    .input-field1 label {
        padding-left: 0;
        font-size: 14px;
    }
    .input-field1 textarea {
        height: 60px;
    }
    .send a {
        gap: 8rem;
    }
    .footer-sec p {
        padding: 0px 0 12px;
        font-size: 14px;
        line-height: 20px;
    }
    footer {
        padding: 30px 0 20px;
    }
    .f-menu li a {
        font-size: 14px;
    }
    .slider-container {
        margin-left: 122px;
        margin-top: 74px;
    }
    .chooseus-list.chooseus-list2 li:nth-child(1) {
        margin-right: -75px;
        margin-left: 53px;
    }
    .chooseus-list.chooseus-list2 li:nth-child(3) {
        margin-right: -58px;
        border-bottom: 0;
    }
    .chooseus-list li:nth-child(1) {
        margin-left: -90px;
    }
    .chooseus-list li:nth-child(3) {
        margin-left: -56px;
        border-bottom: 0;
    }
    .chooseus-list li {
        padding: 10px 0 24px;
    }
    .chooseus-list li:before {
        width: 234px;
    }
    .chooseus-list.chooseus-list2 li:before {
        width: 234px;
    }
    ul#counter li .counter>div {
        font-size: 66px;
        line-height: 45px;
    }
    ul#counter li .counter span.text {
        font-size: 21px;
        line-height: 27px;
        margin-top: 20px;
    }
    ul#counter li.three-item {
        margin-top: 13px;
        margin-left: 22px;
        margin-right: 0;
    }
    .counter-image {
        margin-top: -46px;
    }
    .banner-text-wrapper {
        margin-top: 126px;
    }
    .sec-2 .sec-heading .sub-heading {
        margin-left: 0;
    }
    .pckg .upper .price .amount {
        font-size: 45.052px;
    }
    .price-wrapper {
        margin-bottom: 0px;
    }
    .sec-9 .sec-heading p {
        margin: 59px 0 0;
    }
.form {
    margin-top: 0;
}
















}

@media only screen and (min-width : 768px) and (max-width : 991px) {

    .slide img {
        width: auto;
        height: 100%;
        object-fit: cover;
    }
    .slide {
        width: 511.104px;
        height: 348.069px;
    }
    .slider-container {
        margin-left: 0;
        margin-top: 72px;
        text-align: end;
    }
    .slider-container {
        display: none;
    }
    section.sec-3 {
        margin-top: -30%;
        padding: 140px 0 40px;
    }
    ul#counter li .counter>div {
        font-size: 73px;
        line-height: 56px;
    }
    ul#counter li .counter span.text {
        font-size: 30px;
        line-height: 22px;
        margin-top: 0px;
    }
    ul#counter li.one-item {
        margin-top: 145px;
        transform: inherit;
    }
    ul#counter li.three-item {
        margin-top: 0;
        transform: inherit;
        margin-left: 0;
        margin-right: 0;
    }
    .counter-image {
        margin-top: 0;
    }
    .counter {
        margin-bottom: 27px;
    }
    .counter-image {
        display: none;
    }
    .counter {
        margin-bottom: 66px;
    }
    .chooseus-list2 {
        text-align: left;
    }
    .chooseus-list li {
        padding: 22px 0 16px;
    }
    .chooseus-list.chooseus-list2 li:nth-child(1) {
        margin-right: 0;
        margin-left: 0;
    }
    .chooseus-list.chooseus-list2 li:nth-child(2) {
        margin-right: 0;
        margin-left: 0;
    }
    .chooseus-list.chooseus-list2 li:nth-child(3) {
        margin-right: 0;
        border-bottom: 0;
    }
    .chooseus-list li:nth-child(3) {
        margin-left: 0;
        border-bottom: 0;
    }
    .chooseus-list li:nth-child(1) {
        margin-left: 0;
    }
    .chooseus-list li:nth-child(2) {
        margin-left: 0;
        margin-right: 0;
    }
    .chooseus-list.chooseus-list2 li:before {
        width: 100%;
    }
    .chooseus-image {
        display: none;
    }
    .chooseus-list li:before {
        width: 100%;
    }
    .process-card {
        text-align: start;
    }
    .process-card span {
        font-size: 88px;
    }
    .process-wrapper.wrapper2 {
        flex-direction: inherit;
        text-align: start;
    }
    ul.best-choice-list li {
        border-right: 0;
        padding: 0 15px 30px;
        width: 28%;
    }
    .contact-image {
        display: none;
    }
    .send a {
        gap: 16rem;
    }
    .banner-text-wrapper {
        margin-top: 0px;
    }
    .banner-content {
        padding: 60px 0 60px;
    }
    .chooseus-list.chooseus-list2 li:nth-child(3) {
        margin-left: 0;
    }
    .hover-image {
        top: -8vw;
        left: 27vw;
        max-width: 17%;
    }
.colreverse {
    flex-direction: column-reverse;
}
.sec-heading h3 {
        font-size: 24px;
        padding-bottom: 20px;
        text-align: center;
    }
.sec-2 .sec-heading {
    text-align: center;
}
    ul#counter li {
        justify-content: center;
    }
    .sec-4 .sec-heading {
    text-align: center;
}
  .sec-4 .sub-heading.pckg-sub-heading {
    justify-content: center !important;
}  
.chooseus-list li {
    text-align: center;
}
.chooseus-list.chooseus-list2 li:nth-child(3) {
        border-bottom: 1px solid #D9D9D9;
    }
    .sec-9 .sec-heading p {
        margin: 0px 0 0;
    }
    .banner-img {
        display: none;
    }

}



@media only screen and (min-width : 280px) and (max-width : 767px) {
    .colreverse {
    flex-direction: column-reverse;
}
ul#counter li {
        justify-content: center;
    }
.sec-heading h3 {
        font-size: 24px;
        padding-bottom: 20px;
        text-align: center;
    }
    .sec-4 .sec-heading {
    text-align: center;
}
    .sec-2 .sec-heading {
    text-align: center;
}
.sec-4 .sub-heading.pckg-sub-heading {
    justify-content: center !important;
}
.chooseus-list li {
    text-align: center;
}
.chooseus-list.chooseus-list2 li:nth-child(3) {
        border-bottom: 1px solid #D9D9D9;
    }
    .banner-content {
        padding: 60px 0 20px;
    }
    span.sub-heading {
        font-size: 16px;
    }
    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 a {
        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;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    .header-wrapper {
        padding: 20.54px 0;
    }
    .background-animation-left {
        display: none;
    }
    .background-animation {
        display: none;
    }
    ul.menu.btns li {
        border-bottom: 0;
    }
    a.header-btn {
        padding: 8px 15px !important;
    }
    ul.menu.btns li a svg {
        display: none;
    }
    .slider-container {
        margin-top: 0;
        margin-left: 0;
        align-items: end;
        width: auto;
        height: auto;
    }
    .slider-container {
        padding-bottom: 5rem;
    }
    .banner-content ul li {
        font-size: 12px;
    }
    .sec-heading h3 {
        font-size: 18px;
        padding-bottom: 25px;
    }
    br {
        display: none;
    }
    .trusted-slider.slick-initialized.slick-slider {
        padding: 24px 0;
    }
    .trusted-slider .slick-list.draggable {
        margin-left: 0;
    }
    .container-fluid-padding {
        padding-left: 0;
    }
    .sec-1 {
        padding: 15px 0;
    }
    .trusted-logo img {
        max-width: 90%;
    }
    .trusted-logo:before {
        right: -13px;
    }
    section.sec-2 {
        padding: 45px 0;
    }
    .portfolio-item.image1, 
    .portfolio-item.image2, 
    .portfolio-item.image3, 
    .portfolio-item.image4, 
    .portfolio-item.image5, 
    .portfolio-item.image6, 
    .portfolio-item.image7 {
        width: 42%;
        height: auto;
    }
    .portfolio-item {
        border-radius: 10px;
    }
    .work-image {
        margin-top: 20px;
    }
    section.sec-3 {
        margin-top: -22%;
        padding: 0 0 40px;
    }
    ul#counter li .counter>div {
        font-size: 36px;
        line-height: 36px;
    }
    ul#counter li .counter span.text {
        font-size: 16px;
        line-height: 22px;
        margin-top: 0px;
    }
    ul#counter li.one-item {
        margin-top: 145px;
        transform: inherit;
    }
    ul#counter li.three-item {
        margin-top: 0;
        transform: inherit;
        margin-left: 0;
        margin-right: 0;
    }
    .counter-image {
       display: none;
    }
    .counter {
        margin-bottom: 27px;
    }
    .margintop {
        margin-top: 40px;
    }
    ul.overview-nav a {
        padding: 13px 14px;
        font-size: 14px;
        border-radius: 10px;
    }
    ul.overview-nav {
        gap: 4px;
        margin: 20px 0 0;
    }
    .mt-5 {
        margin-top: 1rem !important;
    }
    .pckg .upper p {
        margin-bottom: 0.5rem;
        font-size: 16px;
        line-height: 22.392px;
    }
    .pckg .upper .price {
        margin: 1.5rem 0 0;
        padding: 10px 0;
    }
    .pckg .upper .price .uspto {
        font-size: 16.046px;
        line-height: 22.392px;
    }
    .bottom span {
        font-size: 16.66px;
    }
    .pckg .bottom ul li {
        font-size: 16px;
        line-height: 22.392px;
    }
    .pckg .bottom ul {
        height: 190px;
    }
    .chooseus-list2 {
        text-align: left;
    }
    .chooseus-list li {
        padding: 22px 0 16px;
    }
    .chooseus-list.chooseus-list2 li:nth-child(1) {
        margin-right: 0;
        margin-left: 0;
    }
    .chooseus-list.chooseus-list2 li:nth-child(2) {
        margin-right: 0;
        margin-left: 0;
    }
    .chooseus-list.chooseus-list2 li:nth-child(3) {
        margin-right: 0;
    }
    .chooseus-list li:nth-child(3) {
        margin-left: 0;
        border-bottom: 0;
    }
    .chooseus-list li:nth-child(1) {
        margin-left: 0;
    }
    .chooseus-list li:nth-child(2) {
        margin-left: 0;
        margin-right: 0;
    }
    .margintop-wrap {
        margin-top: 10px;
    }
    .chooseus-list li h3 {
        font-size: 22.373px;
        padding-bottom: 10px;
    }
    .chooseus-list li p {
        font-size: 14px;
        line-height: 20.392px;
    }
    section.sec-5 {
        padding: 46px 0 46px;
    }
    .mb-5 {
        margin-bottom: 1rem !important;
    }
    .service-card h3 {
        font-size: 22px;
        padding-bottom: 10px;
    }
    .service-card p {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 25px;
    }
    .service-card .btn-wrap {
        justify-content: start !important;
    }
    .borderbottom {
        padding: 20px 0;
    }
    .hover-image {
        top: -30vw;
        left: 0;
        max-width: 53%;
    }
    .sec-6 .sec-heading p {
        text-align: left;
    }
    .process-card {
        text-align: start;
    }
    .process-card span {
        font-size: 60px;
    }
    .process-wrapper {
        flex-direction: column;
        align-items: start;
        border-radius: 10px;
        padding: 20px;
        gap: 10px;
    }
    .process-icon {
        max-width: 20%;
    }
    .process-text h3 {
        font-size: 22px;
        padding-bottom: 6px;
    }
    .process-text p {
        font-size: 14px;
        line-height: 22px;
    }
    .process-wrapper.wrapper2 {
        flex-direction: column;
        text-align: start;
    }
    .processcard-bottom {
        margin-bottom: 18px;
    }
    section.sec-7 {
        padding: 44px 0 40px;
    }
    ul.best-choice-list {
        padding: 20.5px 18px;
        margin: 14px 0 36px;
    }
    ul.best-choice-list li {
        border-right: 0;
        padding: 0 15px;
        width: 48%;
    }
    ul.best-choice-list li p {
        font-size: 14px;
        padding-top: 6px;
    }
    ul.best-choice-list li img {
        max-width: 44%;
    }
    .testi-card .bottom p {
        font-size: 14px;
        line-height: 22px;
    }
    section.sec-9 {
        padding: 50px 0;
    }
    .accordion-list li {
        padding: 13px 24px;
        margin-bottom: 10px;
        border-radius: 10px;
    }
    .accordion-list li h3 {
        font-size: 16px;
        line-height: 20.8px;
        max-width: 94%;
    }
    section.sec-10 {
        padding: 32px 0 38px;
    }
    .contact-image {
        padding-bottom: 20px;
    }
    .input-field1 input, .input-field1 textarea {
        font-size: 14px;
        padding: 14px 14px;
        margin-bottom: 12px;
        border-radius: 8.035px;
        height: 41.565px;
    }
    .input-field1 label {
        padding-left: 0;
        font-size: 14px;
    }
    .input-field1 textarea {
        height: 100px;
    }
    .send a {
        gap: 5rem;
    }
    .footer-sec p {
        padding: 0px 0 12px;
        font-size: 14px;
        line-height: 20px;
    }
    footer {
        padding: 30px 0 20px;
    }
    .f-menu li a {
        font-size: 14px;
    }
    .slider-container {
       display: none;
    }
    .banner-text-wrapper {
        margin-top: 0;
    }
    .trusted-slider.slick-initialized.slick-slider {
        padding: 24px 0;
    }
    .trusted-slider .slick-list.draggable {
        margin-left: 44px;
    }
    .container-fluid-padding {
        padding-left: 0;
    }
    .sec-1 {
        padding: 15px 0;
    }
    .trusted-logo img {
        max-width: 66%;
    }
    .trusted-logo:before {
        right: -13px;
    }
    .mmpopup .centercont h3 span {
        font-size: 24px;
        line-height: 1.2;
    }
    .mmpopup .popup-content {
        padding: 32px 12px 20px;
    }
.mmpopup .formpop {
    margin-top: 28px;
}
.chooseus-image {
    display: none;
}
    .chooseus-list.chooseus-list2 li:nth-child(3) {
        margin-left: 0;
    }
    .chooseus-list li:nth-child(1) {
        margin-right: 0;
    }
.chooseus-list.chooseus-list2 li:before {
        width: 100%;
    }
    .chooseus-list li:before {
        width: 100%;
    }
.hover-image {
    display: none;
}
.service-card h3 {
    opacity: 1;
}
.service-card p {
    opacity: 1;
}
.contact-image {
    display: none;
}



}