/*Main Css */
:root {
    --primary: #00B67A;
    --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;
  }
::selection {
    background: var(--primary);
    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: var(--primary);
}

/* 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: 1;
    color: #000000;
}
body.inner-header {
    /* padding-top: 100px; */
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    display: block;
    font-weight: normal;
}

*: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*/

.menuWrap {
    display: flex;
    align-items: center;
    justify-content: end;
}
.logo {
    display: inline-block;
}
.logo img {
    display: block;
    max-width: 150px;
}

/* 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 > li  {
    vertical-align: middle;
    padding: 16px 0 16px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.menu > li > a {
    display: block;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
}
.header-btn {
    font-weight: 400 !important;
    background: rgba(148, 190, 70, 0.10);
    padding: 18px 60px 20px 25px;
    border-radius: 201.816px;
    border: 1px solid rgba(217, 217, 217, 0.30);
    position: relative;
    color: #94BE46 !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;
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
}

@keyframes slide{
    0% {
      height: 0;
    }
    100% {
      height: auto;
    }
}
.dropdown .dropdown {
    left: 100%;
    top: 0;
}
.dropdown ul li a {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    padding: 10px 20px;
}
.dropdown li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.chev.rotate {
    transform: rotate(180deg);
}
.chev {
    transition: .5s ease;
}
/* Dropdown CSS*/

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }
    100% {
        top: 115px;
        opacity: 0;
    }
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }
    100% {
        top: 40px;
        opacity: 1;
    }
}

/* Main Banner CSS */
.mainBanner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.banner-content {
    padding: 100px 0 100px;
}
h1.banner-heading {
    margin-bottom: 1rem;
    color: #1A1A1A;
    font-size: 64px;
    font-weight: 600;
    line-height: 65px;
}

p.banner-text {
    margin-bottom: 1rem;
    color: rgb(26 26 26 / 80%);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}


/* 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: 1.5rem;
    border-radius: 15px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 18px 24px 18px 18px;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    font-size: 24px;
    color: #1A1A1A;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}
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: 16px;
    font-weight: 600;
    top: 0;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f077";
}
.answer p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
    color: #555555;
}
/* Accordian */

/* packages */
.pckg-sec{
    background: rgb(217 217 217 / 20%);
}
.pkg-list  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:2rem;
    margin-top: 2rem;
}
.pkg-list .g-2 {
    grid-template-columns: repeat(2, 1fr);
}
.pkg-list .d2 .pckg {
    border: 1px solid #E5E7EB;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}
.pkg-list .d2 .pckg .upper {
    text-align: center;
}
.pkg-list .d2 .pckg .upper .price {
    justify-content: center;
}
.pkg-list .d2 .pckg .upper .title {
    font-size: 24px;
    line-height: 24px;
}
.pkg-list .d2 .pckg .upper .price .amount {
    font-weight: 800;
    font-size: 70px;
    line-height: 85px;
}
.pkg-list .d2 .pckg .bottom p {
    font-size: 18px;
    line-height: 26px;
    color: #6B7280;
}
.pckg.d2{
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}
.pckg.d2 .upper .title {
    font-size: 24px;
    line-height: 24px;
}
.pckg.d2 .upper {
    text-align: center;
}
.pckg.d2 .upper .price {
    justify-content: center;
}
.pckg.d2 .upper .price .amount {
    font-size: 70px;
    line-height: 85px;
}
.pckg.d2 .bottom .hdng {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: #525AEC;
    margin-bottom: 1rem;
}
.pckg.d2 .bottom p {
    color: #6B7280;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 1rem;
}
.pckg {
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    position: relative;
    border-right: 1px solid #D9D9D9;
    height: 100%;
    padding: 20px 20px;
}
.pckg .btn-wrap a{
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}
.pckg .btn-wrap .btn-norm{
    color: var(--primary);
    transition: .5s ease;
}
.pckg .btn-wrap .btn-norm:hover{
    transform: scale(1.03);
}
.pckg .upper .title {
    margin: 1rem 0px;
    color: #1D1D1D;
    font-size: 28.373px;
    line-height: normal;
    font-weight: 600;
}
.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
.pckg .upper p {
    margin-bottom: 0.5rem;
    color: #1E1E1E;
    font-size: 22px;
    font-weight: 600;
    line-height: 28.392px; 
    letter-spacing: -0.441px;
}
.pckg .upper .price .amount {
    line-height: 40px;
    color: #94BE46;
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 20px;
}
.pckg .upper .price .uspto {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #5b5b5b;
}
.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 {
   font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #5b5b5b;
    position: relative;
    display: flex;
}
.pckg .bottom ul {
    padding: 0rem 0 0rem 2rem;
    overflow-y: auto;
    padding-right: 10px;
    height: 290px;
    margin-bottom: 1rem;
}
.bottom span {
   color: #5b5b5b;
    font-size: 16px;
    line-height: 24px;
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 0.5rem;
}
.pckg .bottom ul li::before {
    content: '';
    position: absolute;
    z-index: 0;
    left: -1.6vw;
    top: 0.2vw;
    background: url(../images/tick.webp);
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}
.pckg .btn-wrap {
    flex-direction: column;
    margin: 0;
}
span.tag {
    background: #FBBF24;
    color: #0B0B0B;
    font-size: 20px;
    font-weight: 700;
    padding: 16px 32px;
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    border-radius: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52%;
}

/*------add-css------*/
.pckg.popular {
    background: #283068;
    transform: scale(1.03);
}
.pckg.popular .title {
    color: #fff;
}
.pckg.popular p {
    color: #fff;
}
.pckg.popular .uspto {
    color: #fff !important;
}
.pckg.popular .bottom span {
    color: #fff;
}
.pckg.popular .bottom ul li {
    color: #fff;
}
.pckg.popular .btn-wrap .theme-btn {
    background: #fbbf24 !important;
    color: #000 !important;
    padding: 16px 24px;
}
.pckg .btn-wrap .theme-btn {
    padding: 16px 24px;
}
.pckg.popular .amount {
    color: #fbbf24 !important;
}
.pckg.popular .bottom ul li::before {
    color: #fbbf24;
}
/* packages */

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    color: #1A1A1A;
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    line-height: normal;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    color: rgb(26 26 26 / 80%);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    width: 65%;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 30px;
}
.sec-heading .sub-heading {
    color: #709330;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}
/* 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;
    justify-content: center;
}
.btn-wrap .theme-btn {
    padding: 18px 60px 20px 25px;
    color: white;
    font-size: 18px;
    border-radius: 201.816px;
    border: 1px solid rgba(217, 217, 217, 0.30);
    background: linear-gradient(180deg, #94BE46 0%, #6E902E 100%);
    position: relative;
}
.btn-wrap .theme-btn.bordered {
    border-radius: 201.816px;
    border: 1.009px solid #94BE46;
    background: rgba(148, 190, 70, 0.10);
    color: #94BE46;
}
.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 */

/* footer */
.copyright a {color: white;font-weight: 600;}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}
ul.f-link li:first-child {
    border-right: 1px solid #fff;
    padding-right: 20px;
}
/* footer */

/* Portfolio  */
.mt-200 {
    margin-top: 200px;
}
.port-slide .det {
    padding: 10px;
    background: white;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}
.port-slide .det span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--font-heading);
}
.port-slide .det a {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #31A8FE;
    border-bottom: 1px solid;
}
.portfolio-slider {
    position: relative;
}
.portfolio-slider .port-slide img{
    width: 100%;
}
a.arrow-btn {
    position: absolute;
    top: calc(50% - 54px);
    width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
    font-size: 24px;
    color: #333;
    box-shadow: 0px 1.32566px 14px rgba(0, 0, 0, 0.08);
}
.portfolio-slider a.arrow-btn.right.slick-arrow {
    right: 8%;
}
.portfolio-slider a.arrow-btn.left.slick-arrow {
    left: 8%;
}
/* Portfolio  */

/* Testimonials */
.testimonials {
    background: #002C4F;
    position: relative;
    /* color: white; */
    padding-bottom:100px;
    overflow: hidden;
}
.testimonials::before{
    content: "";
    background: url('../images/testi.webp') no-repeat;
    width: 300px;
    height: 100%;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
}
.rating span {
    color: #34A585;
    font-weight: 500;
    font-size: 50px;
    line-height: 30px;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}
.rating p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: white;
}
.rating {
    margin-bottom: 50px;
}
.testi-card {
    background: white;
    padding: 30px;
    box-shadow: 4px 4px 64px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    position: relative;
    z-index: 1;
}
.testi-card::before{
    content: '';
    background: url('../images/qoute.webp') no-repeat;
    
    width: 65px;
    height: 40px;
    position: absolute;
    background-size: contain;
    z-index: -1;
}
.testi-card p {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #555555;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}
.testi-card .client {
    gap: 10px;
    display: flex;
    align-items: center;
}
.testi-card .client .det .name {
    color: #34A585;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--font-heading);
}
.testi-card .client .det .des {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #C9C9C9;
}
.testi-card .client .det {
    display: flex;
    flex-direction: column;
}
.overlap-slider {
    position: absolute;
    width: 180%;
}
.arrows {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.testimonials .slick-slide {
    margin: 20px 15px;
}
/* Testimonials */

/* Testimonials 2 */
.testi-slider-2 .testi-slide {
    background: #F1EDFF;
    box-shadow: -3px 3px 0px #0B0B0B;
    border-radius: 8px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 1.5rem;
}
.testi-slider-2 .testi-slide p {
    color: #302357;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}
.testi-slider-2 .testi-slide .bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}
.testi-slider-2 .testi-slide .client {
    margin-top: 1rem;
}
.testi-slider-2 .testi-slide .client .det .name {
    font-weight: 500;
    font-size: 26px;
    line-height: 39px;
    color: #0B0B0B;
}
.testi-slider-2 .testi-slide .client .det .des {
    font-size: 16px;
    line-height: 22px;
    color: #333333;
}
.testi-slider-2 .testi-slide .bottom .stars {
    background: #407BFF;
    border-radius: 42px;
    padding: 10px 20px;
    color: #00F000;
    display: flex;
    font-size: 12px;
    gap: 8px;
}
/* Testimonials 2 */

.design-card-list .slick-slide,
.design-card-list-2 .slick-slide {
    margin: 0 10px;
}
.design-card-list-2 {
    direction: rtl;
}

.design-card-list li,
.design-card-list-2 li {
    position: relative;
    display: flex !important;
    justify-content: center;
}
.design-card-list li .indusrtry-name,
.design-card-list-2 li .indusrtry-name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 50px;
    position: absolute;
    width: auto;
    height: 66px;
    bottom: 20px;
    z-index: 1;
    background: rgb(0 0 0 / 50%);
    border-radius: 25px;
    opacity: 0;
    transition: .5s ease;
}
.design-card-list li:hover .indusrtry-name,
.design-card-list-2 li:hover .indusrtry-name {
    opacity: 1;
}
.indusrtry-name p {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}
.rated {
    margin-bottom: 1rem;
}
.color-dark {
    color: #212121 !important
}
.color-2 {
    color: #2D2D2D !important
}
.mt-responsive {
    margin-top: 20px;
}
.rated p {
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
    padding: 1rem 0;
}


/* Portfolio */
ul.overview-nav.d2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
ul.overview-nav.d2 a {
    padding: 15px 18px;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid #000000;
    border-radius: 5px;
    color: #333333;
}
ul.overview-nav.d2 li.active a {
    background: #3B38EB;
    color: white;
    border-color: #3B38EB !important;
}
.port-card {
    margin-bottom: 1.5rem;
}
.port-card img {
    width: 100%;
}
/* Portfolio */

/* -------------------------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 {
    font-weight: 700;
    font-size: 64px;
    color: #000;
    margin-bottom: 0rem;
    flex-shrink: 0;
    font-family: 'Inria Serif';
}
ul#counter li {
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 0rem;
    text-align: center;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul#counter li .counter span.text {
    font-size: 15.3px;
    font-family: 'Euclid Square';
    font-weight: normal;
}
/* -------------------------counter CSS------------------------  */

/* -------------------------contact us-------------------------- */
.input-field1 label {
    padding-left: 10px;
    color: #292929;
    font-weight: 500;
    padding-bottom: 8px;
}
.input-field1 input, .input-field1 textarea {
    cursor: pointer;
    height: 58px;
    width: 100%;
    font-size: 16px;
    color: #222222;
    padding: 15px 14px;
    outline: none !important;
    text-transform: capitalize;
    margin-bottom: 30px;
    /* box-shadow: 0 16px 24px 0 rgba(189, 196, 205, 0.13); */
    border-radius: 20px;
    border: solid 1px #00000021;
    background-color: #fff;
}
.input-field1 textarea {
    height: 58px;
}
.send {
    text-align: left;
    padding-top: 35px;
}
.send input[type="submit"] {
    height: 70px;
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    transition: .4s ease;
    text-transform: capitalize;
    width: 100%;
    border: 0;
    padding: 12px 50px;
    border-radius: 50px;
    box-shadow: 0 1.7px 3.1px 0 rgba(11, 93, 81, 0.01);
    background-color: #0b5d51;
}
.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;
}
/* -------------------------contact us-------------------------- */

/* popup */
.overlay {
    background-color: rgb(197 197 197 / 32%);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999;
    display: none;
    backdrop-filter: blur(10px);
  }
  .popupmain {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    /* background: #fff; */
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    display: none;
    /* border-radius: 8px; */
    max-height: 90vh;
  }
  .mmpopup {
    background: url("../images/popup-bg.webp");
    background-size: cover;
    background-position: center;
    border-radius: 33px;
    border: 5px solid #fff;
    padding: 12px;
  }
  .mmpopup .popup-content {
    padding: 50px 40px;
    width: 100%;
    max-width: 500px;
    border-radius: 29px;
    background: #fff;
    box-shadow: 0px 4px 52.4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(33.75px);
    overflow: hidden;
  }
  .mmpopup .formpop {
    width: 100%;
    margin-top: 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 {
    font-weight: 700;
    padding: 15px 40px;
    width: 100%;
    box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
    color: white;
    font-size: 18px;
    border-radius: 201.816px;
    border: 1px solid rgba(217, 217, 217, 0.30);
    background: linear-gradient(180deg, #94BE46 0%, #6E902E 100%);
    position: relative;
}
.fld-btn.packageformsubmit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* popup */

/* ---------------------------footer------------------------------- */
footer {
    padding: 60px 0 35px 0px;
    background: #0C0C0C;
}
.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(217, 217, 217, 0.30);
    padding: 20px 0;
    gap: 5px;
}
.copyright p {
    color: #afafaf;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-sec p {
    color: #fff;
    line-height: 1.5;
    font-size: 16px;
    padding-top: 33px;
}
.footer-hdng h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}
.f-menu li a {
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
}
.footer-hdng p {
    color: #fff;
    line-height: normal;
    padding-bottom: 16px;
}
.hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hours p {
    color: #fff;
    font-size: 16px;
}
.f-menu li a i {
    color: var(--primary);
    margin-right: 10px;
}

.f-menu li {
    line-height: 2;
}
.copyright-sec {background: #0C0C0C;}
.f-link li {
    width: 40.8px;
    height: 40.8px;
    background: var(--primary);
    border-radius: 50px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ----------------------------------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;
}
/* 404 */

/* terms */
.terms .roman {
    list-style: upper-roman;
}
.terms ul {
    padding-left: 40px;
    line-height: 25px;
    font-size: 16px;
    color: #333;
}
.terms ul li {
    margin-bottom: 1rem;
    list-style: disc;
}
.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}
.terms h4 {
    font-size: 24px;
    margin: 1rem 0;
}
.terms p {
    margin-bottom: 2rem;
    line-height: 1.3;
}
/* terms */

span.img-btn {
    position: absolute;
    z-index: 0;
    top: 52%;
    transform: translateY(-50%);
    right: 0.2vw;
}

.ul-banner li {
    color: rgb(26 26 26 / 80%);
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 12px;
    font-weight: 400;
    padding-left: 40px;
    position: relative;
    z-index: 0;
    padding-top: 12px;
}

.ul-banner li:before {
    position: absolute;
    z-index: 0;
    left: 0.3vw;
    top: 0.7vw;
    background: url(../images/tick.webp);
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    content: '';
}

.sec-trusted-client-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0px;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9DA;
    margin-top: 6rem;
}

p.stylish-para {
    border-radius: 40px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    display: inline-block;
    padding: 12px 15px;
    color: rgb(26 26 26 / 80%);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

p.stylish-para span i {
    color: #FFA700;
}

p.stylish-para strong {
    font-weight: 700;
    color: black;
}

.sec-trusted-client-sub p {
    color: rgb(26 26 26 / 80%);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 4.648px;
    text-transform: uppercase;
}

.sec-trusted-client-sub h5 {
    color: #282828;
    font-size: 16px;
    font-weight: 500;
}

.sec-trusted-client-sub h5 strong {
    color: #282828;
    font-size: 17px;
    font-weight: 800;
    display: inline-flex;
}

ul.design-card-list {
    border-bottom: 1px solid #D9D9DA;
    padding: 30px 0px;
}

section.choose {
    background: rgb(217 217 217 / 20%);
}

.card-choose {
    border-radius: 24px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 30px 25px;
    margin-bottom: 20px;
}

.card-choose img {
    margin-bottom: 15px;
}

.card-choose h4 {
    color: #1A1A1A;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 10px;
}

.card-choose p {
    color: #1A1A1A;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
}

.banner-content .btn-wrap {
    justify-content: start;
    margin-bottom: 40px;
    margin-top: 25px;
}

section.message {
    background: #1E252E;
    position: relative;
    height: 35vw;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

section.message:before {
    background: url(../images/man.webp);
    position: absolute;
    top: 12%;
    left: 5vw;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    content: '';
}

section.message:after {
    background: url(../images/woman.webp);
    position: absolute;
    bottom: -8vw;
    right: -70vw;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    content: '';
}

.sec-message {
    text-align: center;
    width: 30%;
    margin: auto;
    position: relative;
    transform: rotate(4deg);
}

.sec-message img {
    position: absolute;
    left: -5vw;
    top: -4.5vw;
    z-index: -1;
    max-height: 40vw;
    max-width: 40vw;
}

.profile-process img {
    min-height: 10px !important;
    min-width: 10px !important;
}

.sec-message img {
    transform: rotate(0deg);
}

.sec-message p {
    color: rgb(26 26 26 / 80%);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    transform: rotate(5deg);
}

.profile-process {
    display: flex;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.profile-process img {
    position: relative;
    top: 0;
    left: 0;
    transform: rotate(7deg);
}

.number-process h2 {
    color: rgb(0 0 0 / 3%);
    font-size: 124px;
    font-style: normal;
    font-weight: 800;
    line-height: 118.6%;
    position: relative;
    top: 2.5vw;
    z-index: -2;
}

.card-process {
    text-align: center;
}

.card-process p {
    color: rgb(26 26 26 / 80%);
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px;
    margin-bottom: 50px;
}

.card-process h4 {color: #1A1A1A;font-size: 24px;font-style: normal;font-weight: 600;margin-top: 20px;}

.price p {
    color: rgb(26 26 26 / 80%) !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 28.392px !important;
    letter-spacing: -0.36px !important;
}

.review-clutch-and-trustpilot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid #D9D9D9;
    padding: 30px 0px 30px 0px;
    border-top: 1px solid #D9D9D9;
    width: 50%;
    margin: auto;
    margin-bottom: 40px;
}

.review-clutch {
    display: flex;
    gap: 15px;
}

.review-sec {
    border-radius: 17.55px;
    border: 0.878px solid #D9D9D9;
    padding: 20px 12px 20px 12px;
    margin-bottom: 25px;
}

.review-profile-text h5 {
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    text-transform: capitalize;
}

.trust-clutch-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-profile-text p {
    color: rgb(26 26 26 / 70%) !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: normal !important;
}

.review-sec p {
    color: rgb(26 26 26 / 80%);
    font-size: 15px;
    line-height: normal;
    font-weight: 400;
}

section.faqs {
    background: rgb(217 217 217 / 20%);
}

.text-clutch p {
    color: rgb(26 26 26 / 70%);
}

.text-clutch p strong {
    font-weight: 700;
}

.menu.btns a.theme-btn {
    padding: 18px 60px 20px 25px;
    color: white;
    font-size: 18px;
    border-radius: 201.816px;
    border: 1px solid rgba(217, 217, 217, 0.30);
    background: linear-gradient(180deg, #94BE46 0%, #6E902E 100%);
    position: relative;
}

.extra-border{
    border-bottom: 1px solid #D9D9D9;
}

.ul-banner li:not(:last-child) {
  border-bottom: 1px solid #D9D9D9;
}

ul.ul-banner {
    width: 70%;
}

.sec-trusted-client-sub h5 span {
    margin: 0px 5px 0px 5px;
}

.footer-sec {
    text-align: center;
    margin-bottom: 30px;
}

.footer-get h4 {
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 15px;
}

.footer-get {
    display: flex;
    align-items: start;
    justify-content: end;
    flex-direction: column;
    width: 85%;
    margin-left: auto;
    border-radius: 15px;
    border: 1px solid rgba(217, 217, 217, 0.30);
    padding: 15px;
}

.footer-get-anchar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-get-anchar a {
    color: white;
    line-height: 1.2;
}

.text-clutch span {
    color: #FE3C2C;
}

.text-clutch.trust-sec span {
    color: #51B27E;
}

.review-clutch img {
    height: 23px;
}

.pckg.remove-border-div {
    border: none;
}

.card-portfolio {
    height: 400px;
    overflow: auto;
    margin-bottom: 40px;
    border: 1px solid #D3D3D3;
    border-radius: 20px;
}

.card-portfolio a {
    margin-bottom: 20px;
}

.stars-message {
    transform: rotate(6deg);
    margin-bottom: 10px;
}

.stars-message span i {
    color: #FFA100;
}

.banner-content span.sub-heading {
    color: #709330;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid #90B943;
    margin-bottom: 5px;
}

.review-profile-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-profile-img img {
    height: 40px;
    width: 40px;
}

.mainBanner.inner {
    height: 35vh;
    display: flex;
    align-items: center;
    background: rgba(148, 190, 70, 0.10);
}

body.inner-header header {
    background: rgba(148, 190, 70, 0.10);
}

section.inner.thanks {
    background: rgba(148, 190, 70, 0.10);
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.card-process {
    border-right: 1px solid #D9D9D9;
    padding-right: 20px;
}

.ext-border-re{
    border: none;
    padding-right: 0;
}

.last-footer-para p {
    text-align: center;
    color: #afafaf;
    font-size: 14px;
    line-height: 1.4;
}

.last-footer-para {
    padding-bottom: 20px;
}