/*Main Css */
:root {
    --primary: #0085FF;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
    --font-heading: "Switzer" , sans-serif;
    --font-accent: "Inter" , sans-serif;
    --font-body: "Inter" , sans-serif;
    --icon: "Font Awesome 6 Pro", sans-serif;
  }
::selection {
    background: #0dcaf0ba;
    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: #0dcaf0ba;
}

/* 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;
    background: #FAFAFA;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    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*/
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: fixed;
    background: transparent;
    z-index: 1;
    left: 0;
    background: white;
    box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    right: 0;
    top: 0;
}
header.sticky{
    background: white;
    box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    top: 0;
}
.menuWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-block;
}
.logo img {
    display: block;
    height: 60px;
}

/* 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: 16px 0 16px 35px;
}
.menu > li > a {
    display: block;
    font-size: 16px;
    border-radius: 11px;
    color: #000;
}
.header-btn {
    background: linear-gradient(0deg, #0085FF 0%, #0085FF 100%), #0F0F0F;
    color: white !important;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 400 !important;
}
.header-btn:hover{
    transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
    color: var(--primary);
}

@keyframes scale-display {
    0% {
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
  }
  @keyframes scale-display--reversed {
    0% {
      display: inline-flex;
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
    99% {
      display: inline-flex;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      display: none;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
  }

/* Menu Dropdown CSS */
.has-child {
    position: relative;
    z-index: 1;
}
.dropdown {
    position: absolute;
    background: white;
    /* padding: 1rem; */
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
}

section#portfolio {
    overflow: hidden;
}

@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;
    overflow: hidden;
}

ul.ul-banner li {
    color: #5C5C5C;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 15px 0px;
    border-bottom: 1px solid #d7d7d7;
    display: inline-block;
}

.banner-content {
    padding: 150px 0 120px;
    width: 60%;
}
h1.banner-heading {
    margin-bottom: 1rem;
    color: #101010;
    font-size: 78px;
    font-weight: 600;
    line-height: 80px;
}
span.sub-heading {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    border-radius: 64px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    box-shadow: 0 2px 14.5px 0 rgba(0, 0, 0, 0.05);
    padding: 10px 10px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.6rem;
    gap: 8px;
}
p.banner-text {
    margin-bottom: 1rem;
    color: #5F5F5F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}


/* Accordian */
.accordion-list {
    position: relative;
}
.accordion-list li {
    padding: 15px 20px 15px 15px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    border-radius: 15px;
    border: 1px solid #D9D9D9;
    background: #FFF;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
    border-radius: 10px;
    background: #ffffff;
    padding: 10px 10px;
    align-items: center;
}
.accordion-list li h3 {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 10px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 600;
    top: 8px;
    border-radius: 30px;
    padding: 4px 4px;
    opacity: 1;
    background: #d1d1d1;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f077";
    color: #000000;
    background: #fff;
}

ul.accordion-list li.active span {
    background: #0085FF;
    color: #fff;
}
.answer p {
    margin-top: 10px;
    color: #5C5C5C;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
}
/* Accordian */

/* packages */

.pkg-list  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:2rem;
    margin-top: 2rem;
}
.pckg {
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    position: relative;
    transition: 0.3s;
    box-shadow: -10px 14px 30px rgb(0 0 0 / 7%);
    height: 100%;
    padding: 20px 0px 20px 0px;
    border-radius: 30px;
    border: 1px solid #D9D9D9;
    background: #FFF;
}
.pckg .btn-wrap a{
    font-weight: 600;
    font-size: 15px;
}
.pckg .btn-wrap .btn-norm{
    color: var(--primary);
    transition: .5s ease;
}
.pckg .btn-wrap .btn-norm:hover{
    transform: scale(1.03);
}
.pckg .upper .title {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 0.7rem;
    color: #2D2D2D;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 0.7rem;
    font-weight: 600;
}
.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
.pckg .upper .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 1rem 0;
    justify-content: center;
}
.pckg .upper .price .amount {
    color: #0085FF;
    text-align: center;
    font-family: Archivo;
    font-size: 72px;
    font-weight: 600;
}
.pckg .upper .price .uspto {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #5b5b5b;
}
.pckg .upper {
    border-bottom: 1px solid #D9D9D9;
    text-align: center;
    margin: 0px 20px;
}
.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: #101010;
   font-family: Arial;
   font-size: 18px;
   font-style: normal;
   font-weight: 400;
   line-height: 22px;
}
.pckg .bottom ul {
    margin: 1rem 0 3rem;
    overflow-y: auto;
    padding-right: 10px;
    height: 254px;
    overflow-y: scroll;
    margin: 0px 25px;
}
.bottom span {
   background: #101010;
   color: #FFF;
   text-align: center;
   font-size: 20px;
   font-style: normal;
   font-weight: 600;
   line-height: normal;
   padding: 8px 30px;
   margin-bottom: 1rem;
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 1rem;
}
.pckg .bottom ul li::before {
    content: "";
    font-family: var(--icon);
    content: "\f00c";
    font-weight: 800;
    color: #1C2E59;
    margin-right: 12px;
}
.pckg .btn-wrap {
    margin: 25px 25px 0px 25px;
}
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%;
}
.pckg:hover {
    border: 1px solid #4f7efa;
}
/* packages */

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    color: #101010;
    font-size: 54px;
    font-weight: 600;
    line-height: 60px;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    margin: 1rem 0;
    color: #5C5C5C;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}
.sec-heading .sub-heading {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 1rem;
}
/* Sec Headings */

/* sections */
section {
    padding: 4rem 0;
    position: relative;
}
.padding-2{
    padding: 1rem 0;
}
/* sections */ 

/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
}
.btn-wrap .theme-btn {
    padding: 5px 5px 3px 20px;
    background: var(--primary);
    color: white;
    font-size: 18px;
    border-radius: 15px;
    font-weight: var(--font-medium);
    border: 2px solid var(--primary);
    transition: .5s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.btn-wrap .theme-btn.bordered {
    color: #0085FF;
    background: rgba(0, 133, 255, 0.10);
}
.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------------------------------- */
footer {
    padding: 70px 0 20px;
    background: #000;
    text-align: center;
}
.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ffffff29;
    padding: 20px 0;
}
.copyright p,.copyright a {
    color: white;
    font-size: 16px;
}
.footer-sec p {
    padding: 16px 0 30px;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}
.footer-hdng h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}
.f-menu li a {
    color: #fff;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.5;
    opacity: 1;
    display: flex;
    align-items: center;
}
.footer-hdng p {
    color: #fff;
    line-height: normal;
    padding-bottom: 16px;
}
.f-menu li a i {
    color: #fff;
    margin-right: 10px;
}
.f-menu li {
    line-height: 2;
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px;
}
.copyright-sec {
    background: #000;
}
.contactinfo-border {
    border-top: 1px solid #ffffff24;
    padding-top: 24px;
}
ul.terms-ul-list {
    display: flex;
    gap: 0.2rem;
}
/* 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;
    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 */

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

/* -------------------------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: 28%; */
    max-width: 1000px;
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    display: none;
    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: 30px 30px;
    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: 20px;
  }
  .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: 24px;
    font-style: normal;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
  }
  .mmpopup .centercont h4 span {
    font-weight: 700;
    color: #000;
    font-size: 60px;
  }
  .fld-input {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(218 217 217);
    border-radius: 5px;
    background-color: #fff;
    width: 354px;
    height: 66px;
    margin-bottom: 20px;
  }
  .fld-input input {
    width: 100%;
    height: 100%;
    padding: 0 24px;
    font-size: 16px;
    letter-spacing: 0.2px;
    background: #eeeeee;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none;
    font-family: "Inter";
  }
  .fld-input input::placeholder {
    color: #737373;
    font-weight: 400;
  }
  .fld-btn button {
    border: 0;
  }
  .form-group field input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}
.form-group input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
    font-size: 16px;
    width: 100%;
}
.fld-btn button.banner-btn {
    border: 4px solid #f45a28;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 40px;
    border-radius: 5px;
    background: #F45A28;
    box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
}
.fld-btn.packageformsubmit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* popup */


/* 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;
    font-size: 16px;
    line-height: 1.5;
}
.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}
.terms h4 {
    font-size: 26px;
    margin: 2rem 0 1rem;
    font-weight: 600;
}
.terms p {
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 1.5;
}
/* terms */

.mainBanner:before {
    position: absolute;
    z-index: -1;
    top: -5vw;
    left: -8vw;
    height: 44%;
    width: 20%;
    border-radius: 422px;
    opacity: 0.05;
    background: #0085FF;
    content: '';
}

ul.ul-banner li.last {
    border: none;
}

.banner-img {
    position: absolute;
    z-index: -1;
    top: 0;
    right: -23vw;
    overflow: hidden;
}

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

.sec-trusted-client-sub {
    color: #282828;
    font-size: 15.495px;
    font-style: normal;
    font-weight: 600;
    line-height: 29.052px;
    letter-spacing: 4.648px;
    text-transform: uppercase;
}

section.sec-1 {
    border: 1px solid #D9D9D9;
    background: #FFF;
    box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.11);
    margin-top: -3rem;
    padding: 2rem 0px;
}

ul.design-card-list {
    margin-bottom: 1rem;
}
section.sec-6 {
    background: #0085ff0d;
}

.process-box {
    display: flex;
    gap: 0;
    padding: 19px 20px;
    position: relative;
    margin-left: 2vw;
    margin-bottom: 3vw;
    border-radius: 0 27px 27px 0;
    border: 1px solid #E4E4E4;
    background: #FFF;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.07);
}
.step-numb {
    display: flex;
    align-items: center;
    justify-content: space-around;
    justify-content: space-between;
}
.step-numb span {
    color: var(--H, #141414);
    font-family: 'Lao Sans Pro';
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    opacity: 0.12;
}
img.process-icon {
    max-width: 100%;
    text-align: center;
    position: absolute;
    z-index: -1;
    top: 21%;
    left: 30%;
    height: 53%;
    width: 31%;
}
.process-box:nth-child(3) .process-card {
    border-bottom: 0;
}
.process-box.padding2 {
    padding: 30px 0 0;
}
.process-number {
   color: #fff;
   font-size: 24px;
   font-style: normal;
   font-weight: 500;
   position: absolute;
   left: -3vw;
   top: 0;
   writing-mode: vertical-rl;
   transform: rotate(180deg);
   margin: 0;
   border-radius: 0 26px 26px 0;
   background: var(--primary);
   height: 100%;
   text-align: center;
   font-family: sans-serif;
   width: 87.382px;
   display: flex;
   align-items: self-start;
   justify-content: center;
   padding: 21px;
   z-index: -1;
   text-transform: uppercase;
}
.process-card h4 {
    font-size: 22px;
    line-height: 1;
    margin: 1rem 0 1rem;
    color: #111;
    font-weight: 700;
}
.process-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #525252;
    opacity: 0.67;
}

.pckg .btn-wrap a span {
    background: no-repeat;
    padding: 0;
    margin-bottom: 0rem;
}

section.sec-choose {
    background: #0085ff0d;
}

.sec-services-text {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.09);
    padding: 20px 15px 20px 15px;
    text-align: center;
    margin-bottom: 1rem;
}.sec-services-text h4 {color: #101010;font-size: 22px;font-weight: 600;line-height: normal;margin: 10px 0px;}

.sec-services-text p {
    color: #5C5C5C;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.rofile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sec-testimonials-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    border: 1px solid #D5EBFF;
    background: #F2F9FF;
    margin-bottom: 12px;
    padding: 6px 8px;
}

.main-testimonials {
    border-radius: 19px;
    border: 1px solid #D9D9D9;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(0deg, #FFF 0%, #FFF 100%), #FFF;
    padding: 15px 15px;
    margin-bottom: 2rem;
}

.pro-text h5 {
    color: #101010;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}

.pro-text p {
    color: #5C5C5C;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

section.sec-testimonials {
    background: #0085ff0d;
}
section.sec-cta {
    background: linear-gradient(337deg, #005ABF 0.32%, #0085FF 99.68%);
    overflow: hidden;
}

.sec-heading.ext h2 {
    color: #fff;
}

.sec-heading.ext p {
    color: #fff;
}

.btn-wrap.ext .theme-btn {
    color: #000;
    background: #fff;
    justify-content: space-between;
}
.cta-img {
    position: absolute;
    bottom: -5px;
}

section.sec-6 .sec-heading {
    margin-bottom: 3rem;
}

.innerbanner {
    padding: 9rem 0px 3rem 0px;
    background: #0085ff0d;
}

section.thankyou-sec {
    padding: 10rem 0px 5rem 0px;
    background: #0085ff0d;
}

section.sec-terms {
    padding: 2rem 0;
}


































@media (max-width: 1700px) {
    .mainBanner:before {
    top: -9vw;
    left: -7vw;
}

img.process-icon {
    top: 28%;
    width: 36%;
    left: 25.8%;
}

.banner-img {
    right: -36vw;
}
}

@media (max-width: 1400px) {

    h1.banner-heading {
    font-size: 70px;
}

p.banner-text {
    width: 90%;
    margin: auto;
    margin-bottom: 0.6rem;
}

.banner-content .btn-wrap {
    justify-content: center;
}
    
        .banner-img {
        display: none;
    }

    .banner-content {
    padding: 150px 0 120px;
    width: 100%;
    text-align: center;
}
}

@media (max-width: 1440px) {

    .process-number {
    left: -4vw;
}

        img.process-icon {
        top: 22%;
        width: 37%;
        left: 27.5%;
        height: 51%;
        z-index: -1;
    }
    
        .banner-img {
        right: -45vw;
    }
}

@media (max-width: 1200px) {

.process-card h4 {
    font-size: 18px;
}

.process-card p {
    font-size: 14px;
}
    .accordion-list li h3 {
    width: 90%;
}

    .banner-content {
    padding: 150px 0 100px;
}

.btn-wrap .theme-btn {
    font-size: 16px;
}

h1.banner-heading {
    font-size: 48px;
    line-height: 1.2;
}

.sec-heading h2 {
    font-size: 38px;
    line-height: 40px;
}

.pckg .upper .title {
    font-size: 22px;
    line-height: 28px;
}

section.sec-cta {
    padding: 3rem 0;
}

.cta-img {
    bottom: -5vw;
}

    .process-number {
    left: -5vw;
}

    section.sec-6 .sec-heading {
    margin-bottom: 0rem;
}

img.process-icon {
    top: 19%;
    width: 40%;
    left: 23.5%;
    height: 50%;
    z-index: -1;
}

    header{
        padding: 1rem 0;
    }
    .btns{
        margin: 1.5rem 0;
    }
    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
    }
    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        padding: 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%;
        top: 0;
        bottom: 0;
        margin: auto;
        background: #ffffff;
        height: 100vh;
        display: flex;
        align-items: 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: #333;
        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;
    }
}

@media (max-width : 1025px){

    p.banner-text {
    width: 100%;
}

span.sub-heading {
    font-size: 16px;
}

    .btn-wrap .theme-btn {
        font-size: 16px;
        justify-content: space-between;
    }
    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }

    img.process-icon {
    top: 20%;
    width: 48%;
    left: 17.5%;
}

    .mmpopup .popup-content {
    max-width: 900px;
}
    
}

@media (max-width : 991px){
    
    .process-card h4 {
    font-size: 22px;
}

.process-card p {
    font-size: 16px;
}

    .mmpopup .popup-content {
    max-width: 900px;
}

    .mmpopup .popup-content {
    padding: 20px 20px;
    /* max-width: 350px; */
}

.popupmain {
    width: 90%;
}

.mmpopup .centercont h3 span {
    font-size: 23px;
}

.step-wrapper li > a::after {
    width: 30px;
    height: 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 16px;
    line-height: 1.3;
}

.step-content label {
    font-size: 13px;
    font-weight: 600;
}

    .mainBanner:before {
    display: none;
}


    .pckg .upper .price .amount {
    font-size: 60px;
}

.pckg .upper .price {
    margin: 0.5rem 0;
}

.bottom span {
    font-size: 16px;
}

.pckg .bottom ul li {
    font-size: 16px;
    line-height: 20px;
}

h2.process-number {
    display: none;
}

.process-box {
    border-radius: 20px;
}

section.sec-6 {
    padding: 2rem 0 2rem 0px;
}

.sec-trusted-client-sub {
    font-size: 14px;
    margin-bottom: 10px;
}

.sec-trusted-client-main {
    display: block;
    text-align: center;
}

.sec-trusted-client-sub img {
    display: none;
}


.sec-heading {
    margin-bottom: 1rem;
}

.sec-choose-img {
    display: none;
}

.cta-img {
    display: none;
}

.sec-faqs-img {
    display: none;
}

    img.process-icon {
    display: none;
}

.sec-heading {
    margin-bottom: 1rem;
}

.sec-choose-img {
    display: none;
}

.pro-text h5 {
    font-size: 14px;
}

.pro-text p {
    font-size: 14px;
}

section {
    padding: 2rem 0;
}

}

@media only screen
and (min-width : 375px)
and (max-width : 736px) {

    .pckg-sec .sec-heading {
    margin-bottom: 0;
}

.pckg-sec .sec-heading p {
    margin-bottom: 0;
}

ul.ul-banner li {
    font-size: 15px;
}

.sec-services-text p {
    font-size: 15px;
    line-height: 20px;
}

.sec-services-text h4 {
    font-size: 20px;
}

.footer-sec p {
    font-size: 14px;
    line-height: 20px;
}

footer {
    padding: 30px 0 20px;
}

.footer-hdng h4 {
    font-size: 20px;
}

.f-menu li a {
    font-size: 14px;
    line-height: 1.7;
}

.copyright p, .copyright a {
    font-size: 12px;
}
    
    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
    }
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 130px 0 90px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    .btn-wrap {
        flex-direction: column;
        margin-bottom: 0rem;
    }
    .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: 16px;
        line-height: 26px;
        margin: 0;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
        font-size: 14px;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }

section.sec-6 .sec-heading p {
    margin: 1rem 0;
}

}

section.sec-1 ul.design-card-list {
    margin-bottom: 0rem;
}


.step-wrapper {
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.step-wrapper li {
  text-align: center;
  flex: 1;
}

.step-wrapper li span a {
  font-size: 14px;
  font-weight: 700;
  color: #bdbdbd;
  text-decoration: none;
}

.step-wrapper li.active span a {
  color: #000;
}

.step-wrapper li > a::after {
  content: "";
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  margin: 10px auto 0;
  border-radius: 50%;
  background: #e5e5e5;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #999;
}

.step-wrapper li:nth-child(1) > a::after { content: "1"; }
.step-wrapper li:nth-child(2) > a::after { content: "2"; }
.step-wrapper li:nth-child(3) > a::after { content: "3"; }
.step-wrapper li:nth-child(4) > a::after { content: "4"; }
.step-wrapper li:nth-child(5) > a::after { content: "5"; }

.step-wrapper li.active > a::after {
  background: #000;
  color: #fff;
}

.step-content {
  display: none;
  margin-top: 20px;
}

.step-content.active {
  display: block;
}

.step-content h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.step-content label {
  display: block;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  color: #000;
  margin-bottom: 1rem;
}

.step-content input[type="text"], .step-content input[type="tel"], .step-content input[type="email"], .step-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.step-buttons {
  margin-top: 30px;
}

.button {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 14px 30px;
  cursor: pointer;
  border-radius: 6px;
  margin-right: 10px;
}

.step-wrapper li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testi-video video {
    height: 100%;
    width: 100%;
}