/*Main Css */

:root {
    --primary: #0045DE;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "Clash Display" , sans-serif;
    --font-accent: "Clash Display" , sans-serif;
    --font-body: "Clash Display" , sans-serif;
  
    --icon: "Font Awesome 6 Pro", sans-serif;
  }
::selection {
    background: #0045DE;
    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: #0045DE;
}

/* Tabbing CSS */

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

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

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 26px;
    color: #676767;
    font-weight: 400;
    background: #F6FCFF;
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1439.988px;
}
body.inner-header {
    padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
    display: block;
    font-weight: 500;
    font-family: var(--font-heading);
}

*: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: 20px 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: #d9d9d9;
    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: #2764FD;
    width: 56px;
}

/*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;
}
ul.menu.btns li {
    padding: 0 0 0 8px;
}
.menuWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-block;
}
.logo img {
    display: block;
    height: 120px;
}
.dropdown ul li a svg {
    flex-shrink: 0;
    filter: brightness(0.5);
}
/* 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 30px;
}
.menu > li > a {
    display: block;
    color: #000000a3;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.header-btn {
    font-weight: 400 !important;
    color: #fff !important;
    padding: 16px 26px;
    display: flex !important;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    background: linear-gradient(90deg, #457FFF 0%, #0045DE 100%), linear-gradient(180deg, #1B6369 0%, #000 100%);
    font-size: 14px !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: 0 0 14px 14px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
    margin-top: 31px;
}
@keyframes slide{
    0% {
      height: 0;
    }
    100% {
      height: auto;
    }
}
.dropdown .dropdown {
    left: 100%;
    top: 0;
}
.dropdown ul li a {
    padding: 14px 20px;
    color: #1E1E1E;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    display: flex;
    align-items: center;
    gap: 10px;
}
.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-repeat: no-repeat;
    position: relative;
    margin: 0;
}
.banner-content {
    padding: 140px 0 110px;
}
h1.banner-heading {
    margin-bottom: 16px;
    font-size: 90px;
    font-style: normal;
    font-weight: 500;
    line-height: 100px;
    margin-right: -56px;
}
span.sub-heading {
    font-size: 16px;
    line-height: normal;
    color: #2463FC;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: capitalize;
    margin-bottom: 14px;
}
p.banner-text {
    margin-bottom: 17px;
    font-size: 20px;
    font-style: normal;
    line-height: 27px;
    color: #000000;
}
.banner-img {
    position: absolute;
    top: 5vw;
    right: 12vw;
}
.header-wrapper {
    border-bottom: 1px solid #0000001c;
    padding: 10px 0;
}
.sec-heading h3 {
    color: #282828;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 4.8px;
    text-transform: uppercase;
}
.sec-1 .sec-heading {
    margin-bottom: 0;
}
.trusted-logos.slick-initialized.slick-slider {
    margin: 40px 0;
    display: flex !important;
    align-items: center !important;
    border-bottom: 1px solid #C5CACC;
    padding: 0 0 40px;
}
.trusted-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    text-align: center;
}
section.sec-1 {
    padding: 0;
}
.service-card {
    display: flex;
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    position: relative;
    border-radius: 23.725px;
    border: 0.912px solid #D9D9D9;
    background: #F6FCFF;
}
.service-card h3 {
    font-size: 18px;
    line-height: normal;
    color: #000;
    padding: 10px 0;
}
.service-card p {
    color: #282828;
    font-size: 16px;
    line-height: 24px;
}
.service-card .ser-image {
    margin: 0 auto;
}
section.sec-2 {
    padding: 120px 0;
    background: #E3F6FF;
}
.service-card.ser4 .ser-image {
    margin-top: -62px;
}
.portfolioslider {
  list-style: none;
  padding: 0;
}
.portfolioslider li {
  transition: all 0.4s ease;
}
.portfolioslider .slick-center {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}
.portfolioslider img {
  width: 100%;
  margin: 60px 0;
}
.portfolioslider .slick-center {
  transform: scale(1.2);
}
.portfolioslider img {
  width: 100%;
  border-radius: 15px;
  transition: all 0.4s ease;
}
span.sub-heading.textleft {
    justify-content: flex-start;
}
.banner-content.banner2 {
    padding: 130px 0;
}
.features-section {
  color: white;
  padding: 60px 30px;
  position: relative;
  gap: 40px;
  border-radius: 60px;
  border: 2px solid rgba(255, 255, 255, 0.30);
  background: rgba(217, 217, 217, 0.10);
  backdrop-filter: blur(8.5px);
}
.features-left {
  position: relative;
  flex: 1;
}
.feature {
  padding: 28px 25px;
  cursor: pointer;
  position: relative;
  border-radius: 25px;
  background: #FFF;
  box-shadow: 0 2.153px 31.53px 0 rgba(0, 0, 0, 0.05);
}
.feature h3 {
  margin: 4px 0;
  color: #000000;
  font-size: 18px;
  line-height: normal;
  font-weight: 600;
}
.features-right {
  flex: 1;
  text-align: center;
}
.feature.active {
  border-left: 3px solid var(--primary);
}
.features-right img {
  transition: opacity 0.3s ease;
}
img.fade {
  opacity: 0;
}
.feature p {
    font-size: 17px;
    line-height: 24px;
    color: #676767;
    letter-spacing: 0.34px;
}
.port-image {
    width: 100%;
    margin-bottom: 20px;
}
.port-image img {
    width: 100%;
}
.port-image a {
    width: 100%;
}
section.sec-5 {
    padding: 80px 0 68px;
    background: #fff;
}
.sec-5 .sec-heading .sub-heading {
    justify-content: start;
}
.custom-wrapper {
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    background: rgba(217, 217, 217, 0.10);
    backdrop-filter: blur(7px);
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 24px;
    gap: 18px;
}
.custom-card-detail h3 {
    color: #FFF;
    font-size: 22px;
    line-height: normal;
    padding-bottom: 10px;
}
.custom-card-detail p {
    color: #FFF;
    font-size: 14px;
    line-height: 22px; /* 157.143% */
}
.custom-card-image {
    width: 100%;
}
.custom-card-image img {
    width: 100%;
}
.custom-column{
    columns: 328px;
    margin-top: 93px;
}
img.topbanner {
    position: absolute;
    top: -6vw;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
}
.sec-5 .btn-wrap .theme-btn {
    border: 1px solid rgba(255, 255, 255, 0.50);
}
.custom-cardimg {
    position: relative;
    width: 100%;
    height: 100%;
}
.custom-cards .sec-heading {
    margin-bottom: 1rem;
}
.custom-cardimg img {
    width: 100%;
    height: 100%;
}
.custom-cards {
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.custom-cards .sec-heading .sub-heading {
    justify-content: start;
}
.custom-cards .sec-heading h2 {
    font-size: 20px;
    line-height: normal;
    line-height: normal;
}
.custom-cards .sec-heading p {
    color: #282828;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    opacity: 1;
    margin: 0;
}
.custom-cards .btn-wrap {
    margin: 0;
}
section.sec-6 {
    padding: 100px 0;
    background: #FFF;
}
section.sec-7 {
    padding: 80px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.streamline-wrapper {
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    background: rgba(217, 217, 217, 0.10);
    backdrop-filter: blur(8.5px);
    padding: 72px 30px 36px;
    margin-top: 40px;
}
.sec-heading h4 {
    font-size: 24px;
    line-height: 118.6%; 
}
.streamline-wrapper .sec-heading p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; 
}
.streamline-image {
    width: 100%;
}
.streamline-image img {
    width: 100%;
}
.line {
    height: 1px;
    width: 100%;
    background: #fff;
    opacity: 0.3;
    margin: 50px 0 40px;
}
.chooseus-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-radius: 25px;
    background: #FFF;
    box-shadow: 0 2.153px 31.53px 0 rgba(0, 0, 0, 0.05);
    padding: 20px 25px;
}
.chooseus-icon h3 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}
.chooseus-card {
    padding: 20px 0;
    border-bottom: 1px solid #0000001c;
}
.chooseus-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 14px;
}
.chooseus-detail h3 {
    font-size: 22px;
    font-style: normal;
    line-height: 118.6%; /* 26.092px */
    padding: 10px 0;
}
.chooseus-detail p {
    color: #282828;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding-bottom: 10px;
}
.chooseus-card:nth-child(3) {
    border-bottom: 0;
}
.chooseus-wrapper .btn-wrap {
    margin: 0;
}
section.sec-9 {
    padding: 225px 0 130px;
    background: #E3F6FF;
}
.process-box.website {
    border-radius: 25px;
    background: #414141;
    box-shadow: 0 2.153px 31.53px 0 rgba(0, 0, 0, 0.05);
    padding: 31px 24px;
}
.process-box {
    display: flex;
    flex-direction: column;
    padding: 32px 40px;
    text-align: center;
}
.process-number {
   font-size: 165px;
   font-style: normal;
   line-height: 130px;
   color: #0348DF;
}
.process-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.process-card h4 {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 1rem 0;
    letter-spacing: -0.72px;
}
.process-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: rgba(40, 40, 40, 0.70);
}
.process-box-wrapper {
    margin-top: 25px;
}
section.sec-10 {
    padding: 100px 0 70px;
    background: #fff;
    z-index: 0;
}
section.sec-11 {
    background: linear-gradient(228deg, #0F6069 -0.86%, #008493 100.29%);
    padding: 80px 0;
}
img.review-vector1 {
    position: absolute;
    top: 9vw;
    left: 0;
}
img.review-vector2 {
    position: absolute;
    top: 20vw;
    right: 0;
}
.review-card {
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    background: rgba(217, 217, 217, 0.10);
    backdrop-filter: blur(8.5px);
    padding: 21px 24px 24px 20px;
    margin-bottom: 22px;
    transition: 0.3s ease;
}
.review-card:hover {
    box-shadow: 0 0 20px 5px #428e96;
    transform: scale(1.02);
}
.client-detail span.name {
    color: #FFF;
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: capitalize;
    display: block;
}
.client-detail span.des {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
}
.client-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.review-card p {
    color: #FFF;
    font-size: 16px;
    line-height: 24px;
}
section.sec-13 {
    padding: 80px 0 90px;
    background-repeat: no-repeat;
    background-size: cover;
}
section.sec-4 {
    padding: 103px 0;
}
.portfolio-image {
    border-radius: 20px;
    height: fit-content;
    max-height: 487px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: all 0.4s ease-in-out;
}
.portfolio-image img {
    position: relative;
    transform: translateY(0);
}
.portfolio-image:hover {
    box-shadow: 0 0 20px 5px #ffffff87;
    transform: scale(1.05);
}
.portfolio-image.h-299 {
    max-height: 299px;
}

/* Accordian */
.accordion-list {
    position: relative;
}
.accordion-list li {
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 12px;
    padding: 24px 20px;
    border-radius: 15px;
    border: 1px solid #D9D9D9;
    background: #FFF;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    color: #747474;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.65px;
}
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: 11px;
    font-weight: 600;
    top: 0;
    background: rgb(235 232 232);
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f077";
    top: 11px;
    background: #fff;
    color: var(--primary);
    right: 8px;
}
.answer p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
    color: #676767;
    font-weight: 500;
}
.accordion-list>li.last {
    margin-bottom: 0;
}
.accordion-list>li.active .answer {
    display: block !important;
}
.accordion-list>li.active span {
    border-radius: 10px;
    background: var(--primary);
}
.accordion-list>li.active span h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 10.25px;
    color: #fff;
}
.faq-wrapper {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    padding: 46px;
    height: 100%;
}
section.faqs-sec {
    padding: 74px 0;
}
/* Accordian */

.contact-detail li {
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    background: rgba(217, 217, 217, 0.10);
    backdrop-filter: blur(8.5px);
    display: inline-block;
    vertical-align: middle;
    padding: 18px 35px 18px 18px;
    align-items: center;
    gap: 10px;
    margin-right: 12px;
}
ul.contact-detail {
    display: inline-block;
    vertical-align: middle;
    margin: 40px 0 30px;
}
.contact-card h3 {
    color: #FFF;
    font-size: 19.931px;
    font-weight: 600;
    line-height: normal;
    text-align: left;
}
.contact-card a {
    color: #FFF;
    font-size: 13.287px;
    font-weight: 400;
    line-height: 19.931px; /* 150% */
    opacity: 0.67;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 10px;
     text-align: left;
}
.contact-detail li.last {
    margin-right: 0;
}
.sec-13 .sec-heading {
    margin-bottom: 0;
}

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    font-size: 45px;
    line-height: 48px;
    letter-spacing: -1px;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin: 1rem 0;
    color: #6D6D6D;
}
.sec-heading .sub-heading {
    font-weight: 400;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 118.6%; /* 18.976px */
    background: var(--M, linear-gradient(90deg, #51A2FF 0%, #7C86FF 50%, #155DFC 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
span.sub-heading.text-white {
    -webkit-text-fill-color: #fff;
}
/* Sec Headings */

/* sections */
section {
    padding: 110px 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 {
    font-size: 16px;
    font-weight: 400;
    border: 1px solid var(--primary);
    transition: .5s ease;
    color: #FAFAFA;
    display: flex;
    padding: 16px 26px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    background: linear-gradient(90deg, #457FFF 0%, #0045DE 100%);
}
.btn-wrap .theme-btn.bordered {
    color: #0348DF;
    border-radius: 16px;
    border: 1px solid rgba(3, 72, 223, 0.20);
    background: linear-gradient(90deg, rgba(69, 127, 255, 0.12) 0%, rgba(0, 69, 222, 0.12) 100%);
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
}
.theme-btn.bgdark {
    border-radius: 16px;
    border: 1px solid #C4C4C4;
    background: #FDF89A;
    color: #000000;
} 
/* Theme Buttons */

/* -------------------------contact us-------------------------- */
.checkbox-wrap2 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    margin-bottom: 15px;
    width: 100%;
    flex-direction: row;
}
.checkbox-wrap2 input {
    margin-top: 4px;
    width: auto !important;
}
.checkbox-wrap2 label {
    line-height: 1.3;
    font-size: 14px;
    color: #282828;
    opacity: 0.8;
}
.contact-us-today {
    /* border-radius: 20px; */
    /* border: 1px solid #D9D9D9; */
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
}
.sec-heading h6 {
    color: #282828;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px; /* 129.167% */
    letter-spacing: 0.48px;
    text-transform: capitalize;
}
.contact-us-today .sec-heading {
    margin-bottom: 0rem;
}
.email-detail {
    border-radius: 12.457px;
    border: 0.83px solid rgba(40, 40, 40, 0.36);
    background: #FAFAFA;
    display: flex;
    padding: 16.609px 24px;
    align-items: center;
    gap: 8.304px;
    width: 100%;
}
.contact-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.contactimage {
    padding-top: 20px;
    width: 100%;
}
.contactimage img {
    width: 100%;
}
.input-field1 label {
    font-weight: 400;
    padding-bottom: 8px;
    opacity: 0.8;
    color: #282828;
    font-size: 14px;
}
.input-field1 input, .input-field1 textarea {
    cursor: pointer;
    height: 47px;
    width: 100%;
    font-size: 16px;
    color: #222222;
    padding: 15px 14px;
    outline: none !important;
    text-transform: capitalize;
    margin-bottom: 15px;
    background-color: transparent;
    /* border-radius: 5px; */
    /* border: 1px solid #D9D9D9; */
    border-radius: 5px;
    border: 1px solid #D9D9D9;
}
.input-field1 textarea {
    height: 154px;
}
.send {
    text-align: left;
    padding-top: 12px;
}
.send input[type="submit"] {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    transition: .4s ease;
    text-transform: capitalize;
    width: 100%;
    border: 0;
    padding: 16px 50px;
    border-radius: 16px;
    box-shadow: 0 1.7px 3.1px 0 rgba(11, 93, 81, 0.01);
    background-color: var(--primary);
    opacity: 0.8;
}
.details h5 {
    color: #282828;
    font-size: 13.287px;
    font-weight: 400;
    line-height: 19.931px; /* 150% */
    opacity: 0.67;
}
.details a {
    color: #282828;
    font-size: 19.931px;
    font-weight: 600;
    line-height: normal;
}
.social-icons li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.details a i, .details p i {
    color: #008576;
    padding-right: 12px;
}
/* -------------------------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-img.webp");
    background-size: cover;
    background-position: center;
    border-radius: 33px;
    border: 3px solid #000;
    padding: 12px;
    background-repeat: no-repeat;
  }
  .mmpopup .popup-content {
    padding: 32px 32px;
    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;
    background: rgba(255, 255, 255, 0);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    /* backdrop-filter: blur(4.2px); */
    -webkit-backdrop-filter: blur(4.2px);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  .mmpopup .formpop {
    width: 100%;
    margin-top: 60px;
  }
  .mmpopup .form-text {
    color: #fff;
    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: #fff;
    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: #fff;
    font-family: var(--font-body);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
  }
  .mmpopup .centercont h4 span {
    font-weight: 600;
    color: #fff;
    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 #fff;
    font-size: 16px;
    width: 100%;
}
.fld-btn button.banner-btn {
    border: 1px solid var(--primary);
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 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;
}
.form-group label {
    margin-bottom: .5rem;
    color: #fff;
}
/* popup */

/* ---------------------------footer------------------------------- */
footer {
    background: #141414;
    position: relative;
}
.copyright {
    padding: 15px 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright p,.copyright a {
    /* text-align: center; */
    color: #FCFCFC;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-sec p {
    padding: 15px 0;
    color: #FCFCFC;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
    max-width: 80%;
}
.footer-hdng h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
}
.f-menu li a {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
}
.footer-hdng p {
    color: #fff;
    line-height: normal;
    padding-bottom: 16px;
}
.f-menu li a i {
    color: var(--white);
    margin-right: 10px;
}
.f-menu li {
    line-height: 2;
}
.copyright-sec {
    background: #141414;
    border-top: 1px solid #d9d9d954;
}
.service-menu li a {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
}
.service-menu li {
    line-height: 2;
    display: inline-block;
    vertical-align: middle;
    width: 40%;
}
ul.service-menu {
    display: inline-block;
    vertical-align: middle;
}
.columnline {
    position: absolute;
    top: 0;
    width: 1px;
    height: 355px;
    opacity: 0.3;
    background: #D9D9D9;
}
.container.rowline {
    padding: 56px 0;
}
.columnline.one {
    left: 36vw;
}
.columnline.two {
    left: 48vw;
}
.columnline.three {
    left: 70vw;
}
/* ----------------------------------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: 52px;
    line-height: 68px;
    color: #fff;
}
.error-image {
    margin-top: 100px;
}
.thankyou-text{
    font-size: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
    color: #fff;
}
/* 404 */

/* terms */
.banner-content.innerpage.terms span.sub-heading {
    justify-content: center;
}
.terms ul {
    line-height: 25px;
    font-size: 16px;
    color: #333;
    list-style: disc;
    margin-left: 20px;
}
.terms ul li {
    margin-bottom: 1rem;
    color: #676767;
}
.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}
.terms h4 {
    font-size: 24px;
    margin: 1rem 0;
}
.terms p {
    margin-bottom: 2rem;
}
.thankyou-page {
    padding: 107px 0;
}
/* terms */

/* inner-pages */
.banner-content.innerpage2 {
    padding: 80px 0 0px;
}
h1.banner-heading.innerpage {
    font-size: 44px;
    line-height: normal;
    margin-right: 0;
}
.banner-img2 {
    position: absolute;
    bottom: -14px;
    font-size: 0;
}
.banner-img2 img {
    width: 100%;
}
.banner-content.innerpage {
    padding: 85px 0 70px;
}
section.sec-12.inner-faqs {
    background-size: cover;
}
.inner-faqs .accordion-list li {
    border: 2px solid rgba(255, 255, 255, 0.30);
    background: rgba(217, 217, 217, 0.10);
    backdrop-filter: blur(8.5px);
}
.inner-contactus .contact-detail li {
    border-radius: 12.457px;
    border: 0.83px solid rgba(40, 40, 40, 0.36);
    background: #FFF;
}
.contact-card.c-card2 h3 {
    color: #282828;
}
.contact-card.c-card2 a {
    color: #282828;
    opacity: 0.67;
}
.card-wrapper {
    border-radius: 30px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    overflow: hidden;
}
.easyforyou-card {
    padding: 48px 39px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    border-right: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    transition: 0.3s ease;
}
.easyforyou-card h3 {
    color: #282828;
    font-size: 20px;
    font-weight: 700;
    line-height: 118.6%; /* 23.72px */
}
.easyforyou-card p {
    color: #282828;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}
.easyforyou-card.brdright {
    border-right: 0;
}
.easyforyou-card.brdbtm {
    border-bottom: 0;
}
.easyforyou-card:hover {
    background: linear-gradient(253deg, rgba(168, 134, 250, 0.10) 0.14%, rgba(123, 190, 251, 0.10) 99.86%);
}
.creative-ads .sec-heading .sub-heading {
    justify-content: start;
}
.email-card {
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    background: rgba(217, 217, 217, 0.10);
    backdrop-filter: blur(8.5px);
    padding: 18px 15px;
    max-width: 92%;
}
.email-card h4 {
    font-size: 18px;
    line-height: 24px; 
    padding-bottom: 10px;
}
.email-card p {
    font-size: 16px;
    line-height: 24px; 
    opacity: 0.8;
}
ul.custom-list li {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* packages */
.pkg-list  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}
.pckg {
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: 0.3s;
    height: 100%;
    padding: 20px;
    border-radius: 30px;
    border: 1px solid rgba(217, 217, 217, 0.60);
    background: #FFF;
    box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.08);
}
.pckg .btn-wrap a{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FAFAFA;
    padding: 13px 0px;
}
.pckg .btn-wrap .btn-norm{
    color: var(--primary);
    transition: .5s ease;
}
.pckg .btn-wrap .btn-norm:hover{
    transform: scale(1.03);
}
.pckg .upper, .pckg .bottom {
    padding: 20px 6px;
}
.pckg .upper .title {
    font-size: 26px;
    line-height: 26px;
    margin-bottom: 8px;
    color: #1D1D1F;
    border-bottom: 1px solid #00000017;
    padding: 0 0 15px;
    margin: 0 0 15px;
}
.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
.pckg .upper p {
    font-size: 16px;
    line-height: 22px;
    margin: 25px 0 0;
    color: #1D1D1F;
    font-weight: 600;
}
.pckg .upper .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}
.pckg .upper .price .amount {
    font-weight: 600;
    font-size: 48px;
    line-height: normal;
    color: #1D1D1F;
}
.pckg .upper .price .uspto {
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: #fff;
    display: flex;
    align-items: center;
    border-radius: 35.636px;
    background: #C30000;
    padding: 2px 2px 2px 14px;
    justify-content: space-between;
    gap: 10px;
}
.pckg .upper {
    padding: 20px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.07);
}
.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: #525252;
   font-size: 18px;
   line-height: 24px; /* 150% */
   letter-spacing: -0.32px;
   opacity: 0.67;
   align-items: center;
   gap: 10px;
}
.pckg .bottom ul {
    margin: 0 0 1rem;
    overflow-y: auto;
    padding-right: 10px;
    /* overflow-y: scroll; */
    height: 188px;
    overflow-y: scroll;
}
.bottom span {
   color: #2E2E2E;
   font-size: 18px;
   font-weight: 600;
   line-height: normal;
   padding-bottom: 12px;
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 1rem;
}
.pckg .btn-wrap {
    flex-direction: column;
    margin: 0;
}
.pckg:hover .upper {
    background: #2463FC;
}
.pckg:hover .upper .title, .pckg:hover .upper p, .pckg:hover .upper .price .amount, .pckg:hover .upper .price .amount b {
    color: #FFF;
}
.pckg-btn .btn-wrap {
    flex-direction: row;
}
.forcall-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    flex-direction: column;
}
.off-price {
    border-radius: 35.636px;
    background: #FFF;
    color: #C30000;
    font-size: 16px;
    line-height: normal;
    padding: 9.345px 18.691px;
}
.pckg-btn {
    padding: 0px 6px 0;
}
.forcall-btn p {
    color: #282828;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
    opacity: 0.8;
}
.forcall-btn a {
    color: var(--Main, #0F6069);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}
.pckg .upper .price .amount b {
    color: #1D1D1F;
}
.pckg .bottom ul li svg {
    margin-right: 10px;
}
/*------add-css------*/
ul.overview-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 15px 0 40px;
    text-align: center;
    padding: 10px 0;
}
ul.overview-nav a {
    padding: 15px 18px;
    font-weight: 400;
    font-size: 16px;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #333333;
    border-radius: 16px;
    background: rgb(36 99 252 / 9%);
}
ul.overview-nav li.active a {
    color: #fff;
    border: 1px solid #2463FC;
    font-weight: 700;
    border-radius: 16px;
    background: #2463FC;
}
/* packages */

section.pckg-sec.branding-pckg {
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    background: #1D1D1F;
    margin: 120px 2rem;
}
ul.overview-nav.brand2 {
    border-bottom: 3px solid #ffffff;
}
ul.overview-nav.brand2 li.active a {
    color: #fff;
    border: 1px solid #ffffff;
}
ul.overview-nav.brand2 li a {
    color: #fff;
}
.pckg.branding-pckg {
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    background: rgba(217, 217, 217, 0.10);
    backdrop-filter: blur(7px);
}
.pckg.branding-pckg .upper .price .amount b {
    color: #fff;
}
.pckg.branding-pckg .bottom ul li {
    color: #fff;
}
.forcall-btn.branding-btn a {
    color: #fff;
}
.pckg.branding-pckg .btn-wrap .theme-btn {
    border-radius: 200px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    background: #0F6069;
}
.social-media-card {
    border-radius: 19.465px;
    border: 1.947px solid rgba(255, 255, 255, 0.30);
    background: rgba(217, 217, 217, 0.10);
    backdrop-filter: blur(6.812804222106934px);
    padding: 19px 16px;
    display: flex;
    align-items: center;
    gap: 14.6px;
}
.social-media-image {
    flex-shrink: 0;
}
.social-media-text h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 10px;
}
.social-media-text p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 152.941% */
    opacity: 0.8;
}
section.social-media-sec {
    border-radius: 40px;
    background: #1D1D1F;
    margin: 120px 2rem;
}
ul.custom-list.website li {
    color: #282828;
    opacity: 0.8;
}
section.sec-8.website {
    background-size: cover;
}
section.captivate-website {
    padding: 120px 0;
    background: #fff;
}
section.sec-10.website {
    background-size: cover;
}
.process-box.website .process-number {
    color: #FAFAFA;
    font-weight: 600;
}
.graphic-design-service {
    border-radius: 20px;
    padding: 40px 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 575px;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: end;
    width: 100%;
}
.graphic-design-service h3 {
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: 118.6%; /* 33.208px */
}
.graphic-design-service p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding: 10px 0 25px;
}
ul.services-list {
    display: inline-block;
    vertical-align: middle;
}
ul.services-list li {
    display: inline-block;
    vertical-align: middle;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding: 5px 14px;
    margin: 0 10px 10px 0;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(17px);
}
.service-image {
    padding-top: 30px;
}
/* Business Slider */
.business-slider-heading {
  color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 68px;
  font-style: normal;
  font-weight: 700;
  line-height: 74px; /* 112.5% */
}
.business-slider-para {
  color: #777;
  font-family: var(--font-body);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.business-slider {
  width: 100%;
  height: 528px;
}
.business-slider * {
  transition: all 0.4s ease-in-out;
}
.business-swiper-slide img {
  width: 95%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.business-swiper-slide img:hover {
  transform: scale(1.0);
}
.business-swiper-slide {
  position: relative;
  width: 272.893px;
  height: 404.189px;
}
.business-swiper-slide h2 {
  position: absolute;
  bottom: 14px;
  left: -14px;
  right: 0;
  text-shadow: 0px 0px #7a7a7a;
  padding: 12px 20px;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  border-radius: 9.723px;
  border: 1.945px solid rgba(255, 255, 255, 0.10);
  background: #1D1D1F;
  width: 88%;
  margin: 0 auto;
  text-align: center;
}
.swiper-progress-wrapper
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: #000;
}
.swiper-progress-wrapper {
  position: relative;
}
.banner-img3 {
    text-align: end;
}
section.chooseus-sec {
    background: #ACA49B;
}
.business-swiper-slide.swiper-slide2 {
    margin-top: -45px;
}
.business-swiper-slide.swiper-slide3 {
    margin-top: -88px;
}
section.sec-12 {
    background: #E3F6FF;
    padding: 120px 0;
}






@media (max-width: 1440px) {
    .main-header {
        padding: 0;
    }
    .banner-img {
        position: relative;
        top: 0;
        right: 0;
    }
    .banner-content.banner2 {
        padding: 75px 0;
    }
    h1.banner-heading {
        font-size: 60px;
        line-height: 66px;
        margin-right: 0;
    }
    .banner-content {
        padding: 65px 0 0px;
    }
    section.sec-3 {
        padding: 50px 0;
        margin: 0;
    }
    .portfolio-image {
        max-height: 350px;
    }
    .sec-heading h2 {
        font-size: 32px;
        line-height: 34px;
    }
    .flex-column {
        flex-direction: row !important;
    }
    .custom-column {
        margin-top: 0;
    }
    .custom-wrapper {
        padding: 12px;
        margin-bottom: 14px;
        gap: 10px;
    }
    .sec-heading h4 {
        font-size: 32px;
        line-height: 118.6%;
    }
    .contact-detail li {
        margin: 5px;
    }
    .container.rowline:before {
        top: 1.4vw;
    }
    .columnline {
        top: 2vw;
        height: 290px;
    }
    .columnline.one {
        left: 26vw;
    }
    .columnline.two {
        left: 40vw;
    }
    .columnline.three {
        left: 70vw;
    }
    .container.rowline {
        position: relative;
    }
    .banner-content.innerpage {
        padding: 100px 0 80px;
    }
    .pckg .upper .price .amount {
        font-size: 40px;
    }
    .off-price {
        font-size: 14px;
        padding: 9.345px 8.691px;
    }
    .pckg .upper .price .uspto {
        font-size: 14px;
        padding: 2px 2px 2px 12px;
    }
    .process-box {
        padding: 20px 10px;
    }
    .custom-cards {
        background: #000;
    }
    .columnline.one {
        display: none;
    }
    .columnline.three {
        display: none;
    }
    .columnline.two {
        display: none;
    }



}

@media (max-width: 1200px) {
    header{
        padding: 1rem 0;
    }
    .btns{
        margin: 1.5rem 0;
    }
    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
        margin-top: 0;
    }
    .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: #282828;
        height: 100dvh;
        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;
    }
    ul.menu.btns li {
        border-bottom: 0;
        margin-bottom: 10px;
    }
    .banner-img {
        position: relative;
        top: 0;
        right: 0;
    }
    h1.banner-heading {
        margin-right: 0;
    }
    .banner-content {
        padding: 50px 0 0;
    }
    section.sec-3 {
        padding: 50px 0;
        margin: 0;
    }
    .portfolio-image {
        max-height: 350px;
    }
    .flex-column {
        flex-direction: row !important;
    }
    .custom-column {
        margin-top: 0;
    }
    .custom-wrapper {
        padding: 12px;
        margin-bottom: 14px;
        gap: 10px;
    }
    .sec-heading h4 {
        font-size: 32px;
        line-height: 118.6%;
    }
    .contact-detail li {
        margin: 5px;
    }
    .container.rowline:before {
        top: 1.4vw;
    }
    .columnline {
        top: 2vw;
        height: 290px;
    }
    .columnline.one {
        left: 28vw;
    }
    .columnline.two {
        left: 44vw;
    }
    .columnline.three {
        left: 76vw;
    }
    .banner-content.innerpage {
        padding: 100px 0 80px;
    }
    .contact-us-today {
        margin-top: 22px;
    }
    .sec-heading h6 {
        font-size: 20px;
        line-height: 26px;
    }
    .contact-wrapper {
        flex-direction: column;
    }
    section.sec-2 {
        padding: 100px 0;
    }
    .pckg .upper .price .amount {
        font-size: 35px;
    }
    .off-price {
        font-size: 14px;
        padding: 9.345px 8.691px;
    }
    .pckg .upper .price .uspto {
        font-size: 14px;
        padding: 2px 2px 2px 12px;
    }
    .process-number {
        font-size: 100px;
        line-height: 65px;
    }
    .process-box {
        padding: 20px 15px;
    }
    br {
        display: none;
    }

}

@media (max-width : 1199px) {
  .banner-img {
        position: relative;
        top: 0;
        right: 0;
    }
    .banner-content {
        padding: 90px 0 80px;
    }
    section.sec-3 {
        padding: 100px 0 85px;
        margin: 60px 0 0;
        background-position: bottom;
    }
    .portfolio-image {
        max-height: 350px;
    }
    .flex-column {
        flex-direction: row !important;
    }
    .custom-column {
        margin-top: 0;
    }
    .custom-wrapper {
        padding: 12px;
        margin-bottom: 14px;
        gap: 10px;
    }
    .custom-cards .sec-heading h2 {
        font-size: 26px;
    }
    .sec-heading {
        margin-bottom: 1rem;
    }
    section.sec-6 {
        padding: 50px 0;
    }
    .process-number {
        font-size: 30px;
    }
    .process-card p {
       font-size: 16px;
        line-height: 26px;
    }
    .review-card p {
        font-size: 14px;
        line-height: 20px;
    }
    .review-card {
        padding: 14px;
    }
    section.sec-12 {
        padding: 50px 0;
    }
    .contact-detail li {
        padding: 15px;
        margin: 5px;
    }
    ul.contact-detail {
        margin: 20px 0 20px;
    }
    .newsletter-wrap {
        padding: 20px 0;
    }
    .newsletter h3 {
        font-size: 28px;
        padding-bottom: 8px;
    }
    .newsletter p {
        font-size: 14px;
        line-height: 24px;
    }
    .newsletter-field {
        margin-top: 12px;
    }
    .container.rowline:before {
        display: none;
    }
    .columnline {
        display: none;
    }
    .container.rowline {
        padding: 18px 0px;
    }
    .footer-hdng h4 {
        margin-bottom: 8px;
    }
    .footer-hdng {
        margin-top: 24px;
    }
    .service-menu li a {
        font-size: 13px;
    }
    .features-section {
        padding: 32px 30px;
    }
    .banner-content.innerpage {
        padding: 70px 0 50px;
    }
    h1.banner-heading.innerpage {
        font-size: 38px;
    }
    .pckg .upper {
        padding: 20px 10px 16px;
    }
    .pckg .upper p {
        font-size: 14px;
    }
    .pckg .bottom {
        padding: 20px 14px 16px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 20px;
    }
    .pckg .bottom ul li:not(.last) {
        margin-bottom: 10px;
    }
    .pckg-btn {
        padding: 10px;
    }
    ul.services-list li {
        font-size: 13px;
        line-height: 24px;
        padding: 5px 10px;
        margin: 0 4px 7px 0;
    }
    .service-image {
        padding-top: 0;
    }
    .social-media-card {
        flex-direction: column;
        text-align: center;
    }
    .easyforyou-card {
        padding: 30px 30px;
        height: 100%;
    }
    section.sec-5 {
        padding: 50px 0 68px;
    }
    .contact-us-today {
        margin-top: 22px;
    }
    .sec-heading h6 {
        font-size: 20px;
        line-height: 26px;
    }
    .contact-wrapper {
        flex-direction: column;
    }
    .main-header {
        padding: 0;
    }
    .service-card {
        padding: 20px;
    }
    section.sec-2 {
        padding: 60px 0;
    }
    section.sec-8 {
        margin: 65px 1rem;
        padding: 65px 0;
    }
    .process-box {
        padding: 20px;
    }
    .banner-content.banner2 {
        padding: 110px 0;
    }
    section {
        padding: 60px 0;
    }
    

}

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

@media (max-width : 992px) {
    .banner-img {
        position: relative;
        top: 0;
        right: 0;
    }
    .main-header {
        padding: 0;
    }
    .banner-content {
        padding: 70px 0 35px;
    }
    section.sec-3 {
        padding: 50px 0;
        margin: 0;
    }
    .portfolio-image {
        max-height: 350px;
    }
    .sec-heading h2 {
       font-size: 32px;
        line-height: 34px;
    }
    .flex-column {
        flex-direction: row !important;
    }
    .custom-column {
        margin-top: 0;
    }
    .custom-wrapper {
        padding: 12px;
        margin-bottom: 14px;
        gap: 10px;
    }
    .custom-cards .sec-heading h2 {
        font-size: 26px;
    }
    .sec-heading {
        margin-bottom: 1rem;
    }
    section.sec-6 {
        padding: 50px 0;
    }
    .process-number {
        font-size: 30px;
        line-height: 30px;
    }
    .process-card p {
        font-size: 16px;
        line-height: 28px;
    }
    .review-card p {
        font-size: 14px;
        line-height: 20px;
    }
    .review-card {
        padding: 14px;
    }
    section.sec-12 {
        padding: 50px 0;
    }
    .contact-detail li {
        padding: 15px;
        margin: 5px;
    }
    ul.contact-detail {
        margin: 20px 0 20px;
    }
    .newsletter-wrap {
        padding: 20px 0;
    }
    .newsletter h3 {
        font-size: 28px;
        padding-bottom: 8px;
    }
    .newsletter p {
        font-size: 14px;
        line-height: 24px;
    }
    .newsletter-field {
        margin-top: 12px;
    }
    .container.rowline:before {
        display: none;
    }
    .columnline {
        display: none;
    }
    .container.rowline {
        padding: 18px 0px;
    }
    .footer-hdng h4 {
        margin-bottom: 8px;
    }
    .footer-hdng {
        margin-top: 24px;
    }
    .service-menu li a {
        font-size: 13px;
    }
    .features-section {
        padding: 32px 30px;
    }
    .banner-content.innerpage {
        padding: 70px 0 50px;
    }
    h1.banner-heading.innerpage {
        font-size: 38px;
    }
    .pckg .upper {
        padding: 20px 10px 16px;
    }
    .pckg .upper p {
        font-size: 14px;
    }
    .pckg .bottom {
        padding: 20px 14px 16px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 20px;
    }
    .pckg .bottom ul li:not(.last) {
        margin-bottom: 10px;
    }
    .pckg-btn {
        padding: 10px;
    }
    ul.services-list li {
        font-size: 13px;
        line-height: 24px;
        padding: 5px 10px;
        margin: 0 4px 7px 0;
    }
    .service-image {
        padding-top: 0;
    }
    .social-media-card {
        flex-direction: column;
        text-align: center;
    }
    .easyforyou-card {
        padding: 30px 30px;
        height: 100%;
    }
    section.sec-5 {
        padding: 50px 0 68px;
    }
    .contact-us-today {
        margin-top: 22px;
    }
    .sec-heading h6 {
        font-size: 20px;
        line-height: 26px;
    }
    .contact-wrapper {
        flex-direction: column;
    }
    .terms p {
        margin-bottom: 1rem;
        font-size: 14px;
    }
    .terms h4 {
        font-size: 20px;
        margin: 2rem 0 1rem;
    }
    section.terms-sec {
        padding: 1rem 0;
    }
    .error-text {
        font-size: 50px;
        line-height: 22px;
        margin-bottom: 1rem;
    }
    .error-heading {
        font-size: 30px;
        line-height: 40px;
    }
    .thankyou-text {
        font-size: 15px;
        line-height: 24px;
        margin-top: 8px;
    }
    .thankyou-page {
        padding: 60px 0 60px;
    }
    .service-card {
        padding: 20px;
    }
    section.sec-8 {
        margin: 60px 1rem;
        padding: 70px 0;
    }
    .process-box {
        padding: 10px;
    }
    .banner-content.banner2 {
        padding: 96px 0;
    }
    section.pckg-sec.branding-pckg {
        margin: 60px 1rem;
    }
    section {
        padding: 60px 0;
    }
    .process-card h4 {
        text-align: center;
    }
    .portfolioslider img {
        margin: 30px 0;
    }
    section.sec-4 {
        background: #fff;
        padding: 50px 0;
    }
    .pckg .upper .price {
        align-items: start;
    }
    br {
        display: none;
    }
    .custom-cardimg {
        height: 510px;
    }
    .chooseus-card {
        padding: 10px 0;
    }
    .chooseus-icon {
        margin: 0 0 4px;
    }
    section.sec-9 {
        padding: 145px 0 90px;
    }
    .accordion-list li h3 {
        font-size: 18px;
        line-height: 22px;
    }
    .accordion-list li {
        padding: 12px 12px;
    }
    .custom-cards {
        background: #000;
    }
    .pckg .upper .price .amount {
        font-size: 26px;
    }



}

@media only screen and (min-width : 768px) and (max-width : 991px) {
    .banner-img {
        display: none;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        gap: 12px;
    }
    .header-wrapper {
        margin-top: 0;
        padding: 10px;
    }
    br{
        display: none;
    }
    .bordertop {
        padding-top: 20px;
        padding: 10px;
    }
    .sec-heading h3 {
        font-size: 14px;
        line-height: 22px;
    }
    .trusted-logos.slick-initialized.slick-slider {
        margin: 16px 0;
    }
    .borderbottom {
        padding-bottom: 10px;
    }
    img.topbanner {
        display: none;
    }
    .features-section {
        padding: 28px 16px;
        border-radius: 24px;
    }
    .custom-column {
        margin-top: 0px;
    }
    section.sec-5 {
        padding: 44px 0 20px;
    }
    .custom-wrapper {
        flex-direction: column !important;
    }
    section.sec-2 {
        padding: 50px 0 53px;
    }
    section.sec-6 {
        padding: 50px 0;
    }
    .mt-5 {
        margin-top: 1rem !important;
    }
    section.sec-7 {
        padding: 44px 0;
    }
    .streamline-wrapper {
        border-radius: 30px;
        padding: 34px 22px 30px;
        margin-top: 0;
    }
    .chooseus-card {
        flex-direction: column;
        margin-bottom: 12px;
    }
    section.sec-9 {
        padding: 50px 0 0;
    }
    .business-slider {
        height: 380px;
    }
    .business-swiper-slide h2 {
        padding: 10px 24px;
        font-size: 16px;
    }
    section.sec-10 {
        padding: 55px 0 50px;
        z-index: 0;
    }
    .process-number {
        font-size: 40px;
        line-height: 22px;
    }
    img.review-vector1, img.review-vector2 {
        display: none;
    }
    section.sec-11 {
        padding: 50px 0;
    }
    .review-card p {
        font-size: 14px;
        line-height: 22px;
    }
    section.sec-12 {
        padding: 45px 0;
    }
    .accordion-list li {
        padding: 14px;
        border-radius: 15px;
    }
    .accordion-list li h3 {
        line-height: 22px;
        max-width: 92%;
        font-size: 16px;
    }
    section.sec-13 {
        padding: 50px 0 10px;
    }
    ul.contact-detail {
        margin: 16px 0 10px;
    }
    .contact-detail li {
        width: 100%;
        margin-bottom: 10px;
    }
    .newsletter-wrap {
        padding: 20px 0;
    }
    .newsletter h3 {
        font-size: 24px;
        padding-bottom: 4px;
    }
    .newsletter p {
        font-size: 12px;
        line-height: 20px;
    }
    .newsletter-field {
        margin-top: 12px;
    }
    .container.rowline:before {
        display: none;
    }
    .columnline {
        display: none;
    }
    .container.rowline {
        padding: 0 12px;
    }
    .footer-sec p {
        max-width: 100%;
    }
    .footer-hdng h4 {
        margin-bottom: 8px;
    }
    .footer-hdng {
        margin-top: 24px;
    }
    .main-header {
        padding: 0;
    }
    .f-menu li {
        line-height: 1.5;
    }
    .service-menu li {
        line-height: 1.5;
    }
    footer {
        padding: 30px 0;
    }
    .copyright {
        padding: 8px;
    }
    .banner-content.innerpage {
        padding: 40px 0 30px;
    }
    .banner-img2 {
        display: none;
    }
    .support-image1 {
        margin-bottom: 24px;
    }
    .support-image1 {
        display: none;
    }
    .pckg-wrapper {
        flex-direction: column;
    }
    .pckg .upper {
        border-right: 0;
        padding: 20px;
        width: auto;
    }
    .pckg .bottom {
        padding: 16px 20px 26px;
    }
    .pckg .bottom ul li:not(.last) {
        margin-bottom: 10px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 24px;
    }
    .forcall-btn {
        flex-direction: column;
        gap: 4px;
    }
    .pckg-btn {
        padding: 10px;
    }
    .pckg .btn-wrap a {
        width: auto;
    }
    .pckg .upper p {
        font-size: 14px;
    }
    section.creative-ads {
        padding: 44px 0;
    }
    .creative-ads .support-image1 {
        margin-bottom: 0;
    }
    ul.overview-nav li {
        margin-bottom: 0;
    }
    ul.overview-nav.brand2 li.active a {
        border: 1px solid #ffffff;
        border-bottom: 1px solid #ffffff;
        font-weight: 400;
    }
     ul.overview-nav li.active a {
        border: 1px solid var(--primary);
        border-bottom: 1px solid var(--primary);
        font-weight: 400;
    }
    ul.overview-nav a {
        padding: 12px 14px;
        font-size: 14px;
    }
    ul.overview-nav.brand2 {
        border-bottom: 0;
    }
    ul.overview-nav {
        border-bottom: 0;
    }
    ul.overview-nav {
        gap: 10px;
        margin: 24px 0;
    }
    section.sec-10.website {
        background-position: bottom;
    }
    .graphic-design-service {
        padding: 24px 14px;
    }
    ul.services-list li {
        font-size: 14px;
        padding: 5px 14px;
        margin: 0 2px 7px 0;
    }
    .graphic-design-service p {
        font-size: 14px;
        line-height: 22px;
        padding: 10px 0 14px;
    }
    .graphic-design-service h3 {
        font-size: 24px;
    }
    .service-image {
        padding-top: 0;
    }
    .social-media-card {
        flex-direction: column;
        text-align: center;
    }
    .email-card {
        max-width: 100%;
    }
    .email-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .easyforyou-card {
        padding: 35px 24px;
    }
    .easyforyou-card.brdbtm {
        border-bottom: 1px solid #D9D9D9;
    }
    .newsletter-field button {
        width: 100px;
        padding: 12px 12px;
        font-size: 13px;
    }
    .contact-us-today {
        margin-top: 22px;
    }
    .sec-heading h6 {
        font-size: 20px;
        line-height: 26px;
    }
    .contact-wrapper {
        flex-direction: column;
    }
    .terms p {
        margin-bottom: 1rem;
        font-size: 14px;
    }
    .terms h4 {
        font-size: 20px;
        margin: 2rem 0 1rem;
    }
    section.terms-sec {
        padding: 1rem 0;
    }
    .error-text {
        font-size: 50px;
        line-height: 22px;
        margin-bottom: 1rem;
    }
    .error-heading {
        font-size: 30px;
        line-height: 40px;
    }
    .thankyou-text {
        font-size: 15px;
        line-height: 24px;
        margin-top: 8px;
    }
    .thankyou-page {
        padding: 60px 0 60px;
    }
    section.sec-1 {
        padding: 40px 0;
    }
    .portfolioslider img {
        margin: 20px 0;
    }
    section.sec-4 {
        padding: 50px 0;
    }
    .features-right {
        display: none;
    }
    .service-card {
        padding: 18px;
    }
    section.sec-8 {
        border-radius: 15px;
        margin: 25px 1rem;
        padding: 36px 0;
    }
    .process-box {
        padding: 23px;
    }
    .stepimage {
        display: none;
    }
    .answer p {
        font-size: 14px;
        line-height: 22px;
    }
    .accordion-list {
        margin-top: 12px;
    }
    .banner-content.banner2 {
        padding: 95px 0 85px;
    }
    section {
        padding: 60px 0;
    }
    section.pckg-sec.branding-pckg {
        margin: 50px 1rem;
    }
    .chooseus-image {
        display: none;
    }
    section.captivate-website {
        padding: 60px 0;
    }
    section.social-media-sec {
        margin: 60px 1rem;
    }
    .banner-img3 {
        display: none;
    }
    .business-swiper-slide.swiper-slide2 {
        margin-top: 0;
    }
    .business-swiper-slide.swiper-slide3 {
        margin-top: 0;
    }
    .custom-cardimg {
        height: 542px;
    }
    .custom-cards {
        background: #000;
    }
    .custom-cards .sec-heading h2 {
        font-size: 20px;
    }
    .cta-image {
        display: none;
    }
    .dnone {
        display: none;
    }
    .business-swiper-slide {
        width: auto;
        height: auto;
    }

}

@media only screen and (min-width : 280px) and (max-width : 767px) {
    .banner-content {
        padding: 50px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 0;
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 32px;
        line-height: 34px;
        margin-bottom: 10px;
        margin-right: 0;
    }
    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: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    .header-wrapper {
        margin-top: 0;
        padding: 10px;
    }
    br{
        display: none;
    }
    .bordertop {
        padding-top: 20px;
        padding: 10px;
    }
    .sec-heading h3 {
        font-size: 14px;
        line-height: 22px;
    }
    .trusted-logos.slick-initialized.slick-slider {
        margin: 16px 0;
    }
    .borderbottom {
        padding-bottom: 10px;
    }
    img.topbanner {
        display: none;
    }
    section.sec-3 {
        padding: 50px 0;
        margin: 0;
    }
    .features-section {
        padding: 28px 16px;
        border-radius: 24px;
    }
    .custom-column {
        margin-top: 0px;
    }
    section.sec-5 {
        padding: 44px 0 20px;
    }
    .custom-wrapper {
        flex-direction: column !important;
    }
    section.sec-2 {
        padding: 50px 0 53px;
    }
    .custom-cards .sec-heading h2 {
        font-size: 20px;
    }
    section.sec-6 {
        padding: 50px 0;
    }
    .custom-cards .sec-heading p {
        font-size: 14px;
        line-height: 22px;
    }
    .custom-cardimg {
        height: 430px;
    }
    .mt-5 {
        margin-top: 1rem !important;
    }
    section.sec-7 {
        padding: 44px 0;
    }
    .streamline-wrapper {
        border-radius: 30px;
        padding: 34px 22px 30px;
        margin-top: 0;
    }
    .chooseus-card {
        flex-direction: column;
        margin-bottom: 12px;
    }
    .chooseus-detail p {
        font-size: 14px;
        line-height: 22px;
        padding-bottom: 0px;
    }
    section.sec-9 {
        padding: 50px 0 0;
    }
    .business-slider {
        height: 380px;
    }
    .business-swiper-slide h2 {
        padding: 10px 24px;
        font-size: 16px;
    }
    section.sec-10 {
        padding: 55px 0 50px;
        z-index: 0;
    }
    .process-number {
        font-size: 24px;
        line-height: 30px;
    }
    .process-card p {
        font-size: 14px;
    }
    img.review-vector1, img.review-vector2 {
        display: none;
    }
    section.sec-11 {
        padding: 50px 0;
    }
    .review-card p {
        font-size: 14px;
        line-height: 22px;
    }
    section.sec-12 {
        padding: 45px 0;
    }
    .accordion-list li {
        padding: 14px;
        border-radius: 15px;
    }
    .accordion-list li h3 {
        line-height: 22px;
        max-width: 92%;
        font-size: 16px;
    }
    section.sec-13 {
        padding: 50px 0 10px;
    }
    ul.contact-detail {
        margin: 16px 0 10px;
    }
    .contact-detail li {
        width: 100%;
        margin-bottom: 10px;
    }
    .newsletter-wrap {
        padding: 20px 0;
    }
    .newsletter h3 {
        font-size: 24px;
        padding-bottom: 4px;
    }
    .newsletter p {
        font-size: 12px;
        line-height: 20px;
    }
    .newsletter-field {
        margin-top: 12px;
    }
    .container.rowline:before {
        display: none;
    }
    .columnline {
        display: none;
    }
    .container.rowline {
        padding: 0 12px;
    }
    .footer-sec p {
        padding: 10px 0;
        font-size: 13px;
        line-height: 22px;
        max-width: 100%;
    }
    .footer-hdng h4 {
        margin-bottom: 8px;
    }
    .footer-hdng {
        margin-top: 24px;
    }
    .main-header {
        padding: 0;
    }
    .f-menu li {
        line-height: 1.5;
    }
    .service-menu li {
        line-height: 1.5;
    }
    footer {
        padding: 30px 0;
    }
    .copyright {
        padding: 8px;
    }
    .banner-content.innerpage {
        padding: 40px 0 30px;
    }
    h1.banner-heading.innerpage {
        font-size: 26px;
    }
    .banner-img2 {
        display: none;
    }
    .support-image1 {
        margin-bottom: 24px;
    }
    .support-image1 {
        margin-bottom: 24px;
    }
    .pckg-wrapper {
        flex-direction: column;
    }
    .pckg .upper {
        border-right: 0;
        padding: 25px 20px;
        width: auto;
    }
    .pckg .bottom {
        padding: 16px 4px 10px;
    }
    .pckg .bottom ul li:not(.last) {
        margin-bottom: 10px;
    }
    .pckg .bottom ul li {
        font-size: 16px;
        line-height: 24px;
    }
    .forcall-btn {
        flex-direction: column;
        gap: 4px;
    }
    .pckg-btn {
        padding: 10px;
    }
    .pckg .btn-wrap a {
        width: auto;
    }
    .pckg .upper p {
        font-size: 14px;
        margin: 0 0 0;
    }
    ul.custom-list li {
        font-size: 14px;
        padding-bottom: 10px;
        align-items: flex-start;
        line-height: normal;
    }
    section.creative-ads {
        padding: 44px 0;
    }
    .creative-ads .support-image1 {
        margin-bottom: 0;
    }
    ul.overview-nav li {
        margin-bottom: 0;
        width: 100%;
    }
    ul.overview-nav.brand2 li.active a {
        border: 1px solid #ffffff;
        border-bottom: 1px solid #ffffff;
        font-weight: 400;
    }
     ul.overview-nav li.active a {
        border: 1px solid var(--primary);
        border-bottom: 1px solid var(--primary);
        font-weight: 400;
        width: 100%;
    }
    ul.overview-nav a {
        padding: 12px 14px;
        font-size: 14px;
        width: 100%;
    }
    ul.overview-nav.brand2 {
        border-bottom: 0;
    }
    ul.overview-nav {
        border-bottom: 0;
    }
    ul.overview-nav {
        gap: 10px;
        margin: 0;
        flex-direction: column;
    }
    section.sec-10.website {
        background-position: bottom;
    }
    .graphic-design-service {
        padding: 24px 14px;
    }
    ul.services-list li {
        font-size: 14px;
        padding: 5px 14px;
        margin: 0 2px 7px 0;
    }
    .graphic-design-service p {
        font-size: 14px;
        line-height: 22px;
        padding: 10px 0 14px;
    }
    .graphic-design-service h3 {
        font-size: 24px;
    }
    .service-image {
        padding-top: 0;
    }
    .social-media-card {
        flex-direction: column;
        text-align: center;
    }
    .email-card {
        max-width: 100%;
    }
    .email-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .easyforyou-card {
        padding: 35px 24px;
    }
    .easyforyou-card.brdbtm {
        border-bottom: 1px solid #D9D9D9;
    }
    .newsletter-field button {
        width: 100px;
        padding: 12px 12px;
        font-size: 13px;
    }
    .contact-us-today {
        margin-top: 22px;
    }
    .sec-heading h6 {
        font-size: 20px;
        line-height: 26px;
    }
    .contact-wrapper {
        flex-direction: column;
    }
    .terms p {
        margin-bottom: 1rem;
        font-size: 14px;
    }
    .terms h4 {
        font-size: 15px;
        margin: 1rem 0 0rem;
    }
    section.terms-sec {
        padding: 1rem 0;
    }
    .error-text {
        font-size: 50px;
        line-height: 22px;
        margin-bottom: 1rem;
    }
    .error-heading {
        font-size: 30px;
        line-height: 40px;
    }
    .thankyou-text {
        font-size: 15px;
        line-height: 24px;
        margin-top: 8px;
    }
    .thankyou-page {
        padding: 60px 0 60px;
    }
    section.sec-1 {
        padding: 40px 0;
    }
    .portfolioslider img {
        margin: 20px 0;
    }
    section.sec-4 {
        padding: 50px 0;
    }
    .features-right {
        display: none;
    }
    .service-card {
        padding: 18px;
    }
    section.sec-8 {
        border-radius: 15px;
        margin: 25px 1rem;
        padding: 36px 0;
    }
    .process-box {
        padding: 10px;
    }
    .stepimage {
        display: none;
    }
    .answer p {
        font-size: 14px;
        line-height: 22px;
    }
    .accordion-list {
        margin-top: 12px;
    }
    .banner-content.banner2 {
        padding: 60px 0 36px;
    }
    section {
        padding: 60px 0;
    }
    section.pckg-sec.branding-pckg {
        margin: 50px 1rem;
    }
    .chooseus-image {
        display: none;
    }
    section.captivate-website {
        padding: 60px 0;
    }
    .off-price {
        font-size: 14px;
        padding: 9.345px 12.691px;
    }
    .pckg .upper .price .amount {
        font-size: 40px;
    }
    .cta-image {
        display: none;
    }
    .service-card h3 {
        font-size: 20px;
    }
    .banner-img3 {
        display: none;
    }
    .mmpopup .centercont h3 span {
        font-size: 24px;
        line-height: 30px;
    }
    .mmpopup .popup-content {
        padding: 20px 20px;
    }
    .mmpopup .formpop {
        margin-top: 20px;
    }
    .faq-image {
        display: none;
    }
    .swiper-wrapper {
        flex-direction: column;
    }
    .business-swiper-slide {
        width: auto;
        height: auto;
    }
    .business-swiper-slide img {
        width: auto;
        height: auto;
    }
    .business-swiper-slide.swiper-slide2 {
        margin-top: 0;
    }
    .business-swiper-slide.swiper-slide3 {
        margin-top: 0;
    }
    .process-card h4 {
        font-size: 20px;
        margin: 0rem 0;
    }
    .terms ul li {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 20px;
    }
    .feature p {
        font-size: 14px;
        line-height: 22px;
    }
    .custom-cards {
        background: #000;
    }
    .dnone {
        display: none;
    }










}