@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Syne:wght@400..800&display=swap');

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: "Inter", sans-serif;
    background: #fff;
    overflow-x: hidden;
}

/*.container {
    max-width: 1170px;
}*/

:root {
    --white: #ffffff;
    --black: #000;
    --theme-color: #fdc52c;
    --para-color: #5a5a5a;
    --head-color: #040427;
}

.themeCol {
    color: var(--theme-color);
}

.container-fluid {
    padding: 0 5rem;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.67;
    color: var(--para-color);
    margin-bottom: 2rem;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* color: var(--theme-color); */
    font-family: "Syne", sans-serif;
    font-weight: normal;
}

h1 {
    font-size: 4.375rem;
    margin-bottom: 2rem;
}

h1 strong {}

h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.09;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: -2.8px;
}

.smallhead {
    font-size: 1.625rem;
    color: var(--theme-color);
    font-weight: bold;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

section {
    padding: 5rem 0;
}

.whiteCol {
    color: var(--white);
}

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

.posinit {
    position: initial;
}

.pt-6 {
    padding-top: 6rem;
}

.pt-10 {
    padding-top: 10rem;
}

.swiper-button-next,
.swiper-button-prev {
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px;
    color: var(--white);
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.swiper-pagination-bullet-active {
    width: 25px;
}

.swiper-slide-shadow-left {
    display: none;
}

.swiper-slide-shadow-right {
    display: none;
}

.swiper-pagination-bullet-active {
    background-image: var(--red-gradient-color);
}

.swiper-pagination {}


/* loader */
.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader img {
    max-width: 350px;
}

.preLoader.black {
    background-color: #1e1e1e;
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background: var(--theme-color);
}

/* loader */

/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--theme-color);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner:before {
    content: "Click Me";
    width: 100%;
    height: 100%;
    position: absolute;
    font-size: 1rem;
    top: 8px;
    left: 2px;
    display: flex;
    border-radius: 100%;
    opacity: 0;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.active::before {
    opacity: 1;
    top: 0;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--theme-color);
    opacity: 0.3;
}

.cursor-inner.cursor-hover.active {
    margin-left: -40px;
    margin-top: -40px;
    width: 120px;
    height: 120px;
    opacity: 1;
    background-color: #007bff9e;
}

/* Cursor End */

/* btn css */

.themeBtn,
.btnSubmit {
    background: var(--theme-color);
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #1a1c21;
    display: inline-block;
    border: none;
    transition: all 0.3s ease;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-family: "Montserrat", sans-serif;
    box-shadow: inset 0 0 16px 0 #e27a2e;
    border: 1px solid var(--theme-color);
}

.themeBtn:hover,
.btnSubmit:hover {
    color: var(--black);
}

.themeBtn:before,
.copyright .socialicons a:before {
    content: '';
    z-index: -1;
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background-color: var(--white);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f4a21a', endColorStr='##ffde00', gradientType='1');
    transform-origin: right center;
    -webkit-transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -khtml-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: transform .3s cubic-bezier(.37, .31, .2, .85);
    -khtml-transition: transform .3s cubic-bezier(.37, .31, .2, .85);
    -moz-transition: transform .3s cubic-bezier(.37, .31, .2, .85);
    -ms-transition: transform .3s cubic-bezier(.37, .31, .2, .85);
    -o-transition: transform .3s cubic-bezier(.37, .31, .2, .85);
    transition: transform .3s cubic-bezier(.37, .31, .2, .85);
}

.themeBtn:hover:before,
.copyright .socialicons a:hover:before {
    transform-origin: left center;
    -webkit-transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -khtml-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.themeBtn+.themeBtn {
    margin-left: 1rem;
}

.themeBtn.fillBtn {
    border: 1px solid var(--white);
    color: var(--white);
    background: transparent;
    box-shadow: none;
}

.themeBtn.fillBtn:hover {
    color: var(--black);
}

/* .themeBtn.fillBtn:before{ background: var(--theme-color); } */

.themeBtn svg,
.themeBtn i {
    margin-left: 8px;
}

.para {
    font-size: 1.25rem;
    line-height: 1.56;
}

.bdBtn {
    border-radius: 10px;
    border: solid 1.5px #333;
    color: var(--theme-color);
    padding: 0.7rem 1.6rem;
    display: inline-block;
}

.bdBtn i {
    margin-left: 10px;
}

/* btn css */

/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

@keyframes zoomBig {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 1;
        border-width: 3px;
    }

    40% {
        opacity: .5;
        border-width: 2px;
    }

    65% {
        border-width: 1px;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }

    25% {
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
    }

    50% {
        -webkit-transform: rotate3d(0, 0, 1, 180deg);
        transform: rotate3d(0, 0, 1, 180deg);
    }

    75% {
        -webkit-transform: rotate3d(0, 0, 1, 270deg);
        transform: rotate3d(0, 0, 1, 270deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 360deg);
        transform: rotate3d(0, 0, 1, 360deg);
    }
}

.logo.navbar-brand img {
    width: 330px;
}

footer .flogo img {
    width: 330px;
    border-radius: 5px;
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}

/* mouse animation css  */


/* Header Css */

.main-header {
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

/* .main-header:before{ content: ''; position: absolute; top: 0; width: 100%; background-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0) 100%);
    height: 100%; z-index: -1; } */
header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    transition: all 0.3s ease;
}

.mmheader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mmheader .leftside,
.mmheader .rightside {
    display: flex;
    align-items: center;
}

.logo.navbar-brand {
    padding: 0;
    margin: 0;
    margin-right: 5rem;
}

.mmheader .rightside {
    gap: 2rem;
}

header.sticky {
    position: fixed;
    background: var(--black);
}

header.sticky .main-header {
    padding: 1rem 0;
}

/* Hamburger Menu */

.menu-Bar {
    width: 41px;
    height: 30px;
    cursor: pointer;
    position: relative;
    margin: auto;
    z-index: 22;
    display: block;
}

.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--white);
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
    top: 0;
}

.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
    width: 80%;
}

.menu-Bar span:nth-child(3) {
    top: 16px;
}

.menu-Bar span:nth-child(4) {
    top: 24px;
    width: 80%;
}

.menu-Bar.open span {
    background: #b70404;
}

.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2),
.menu-Bar.open span:nth-child(4) {
    width: 0;
    opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

/* Menu Css */

.menuWrap .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: initial;
}

.main_nav {
    background: var(--theme-color);
}

.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}

.menu li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.menu li:last-child {
    padding-right: 0;
}

.menu li a {
    display: block;
    font-size: 1rem;
    color: var(--white);
    font-weight: normal;
    line-height: 1.56;
    display: block;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* .menu > li:hover > a, */
.menu>li.active>a,
.menu>li:hover>a {
    color: var(--theme-color);
}


/* Menu Dropdown CSS */

.has-child,
.menu-item-has-children {
    position: relative;
    z-index: 1;
}

.dropdown,
.sub-menu {
    position: absolute;
    background: #040427;
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    width: 270px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
}

.dropdown .dropdown,
.sub-menu .sub-menu {
    left: 100%;
    top: 0;
}

.dropdown li,
.sub-menu li {
    display: block;
}

.dropdown li a,
.sub-menu li a {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    padding: 10px 20px;
    display: block;
    font-weight: 500;
    line-height: 1.5;
}

.dropdown li:hover a,
.sub-menu li:hover a,
.dropdown li.active a,
.sub-menu li.active a {
    background: var(--theme-color);
    color: var(--black);
}

.dropdown li:not(:last-child),
.sub-menu li:not(:last-child) {
    border-bottom: 1px solid #10103c;
}

.chev.rotate {
    transform: rotate(180deg);
}

.chev {
    transition: .5s ease;
}

.rightfixMenu .menuWrap {
    position: fixed;
    left: 0;
    right: -210%;
    top: 0;
    bottom: 0;
    background: var(--theme-color);
    height: 100vh;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-flow: column;
    transition: all 0.5s ease-in-out;
    z-index: 3;
    width: 35vw;
    margin-left: auto;
    box-shadow: 0 0 30px #00000078;
    padding: 2rem 5rem;
}

.rightfixMenu .menuWrap.open {
    display: flex;
    right: 0px;
}

.rightfixMenu ul.menu li {
    display: block;
}

.rightfixMenu .menu>li.active>a,
.rightfixMenu .menu>li:hover>a {
    border-color: #fff;
}

.rightfixMenu .menuWrap .menu a {
    padding: 10px 10px;
    border-bottom: 5px solid transparent;
}

.rightfixMenu ul.menu li a {
    margin-bottom: 10px;
    padding: 0;
    display: block;
    text-align: left;
    margin-bottom: 15px;
    padding-right: 0px;
    margin-right: 0px;
    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
}

.rightfixMenu .menuWrap .menu {
    display: block;
    transition: all 0.3s ease;
}

.rightfixMenu .dropdown {
    position: relative;
    width: 100%;
}

.rightfixMenu .dropdown a {
    font-size: 1.2rem !important;
    margin-bottom: 0 !important;
}

.rightfixMenu .menuWrap .menu.active {
    height: 80vh;
    overflow-y: scroll;
}


/* Dropdown CSS*/

.main-Banner {
    position: relative;
    width: 100%;
    background-image: url(../images/banner/banner-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 0;
    background-color: #0d4c88;
}

/* .main-Banner img{object-fit: cover;position: absolute;z-index: -1;width: 100%;height: 100%;background-attachment: fixed;} 	 */
/* .main-Banner .container{ position: absolute; top: 50%; transform: translateY(-50%); left: 0; right: 0; margin: auto; } */
.main-Banner h1 {
    color: var(--white);
    font-size: 3.188rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.main-Banner h1 span {
    font-size: 4.538rem;
}

.main-Banner p {
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1.67;
    margin-bottom: 2rem;
}

.main-Banner .content {
    padding: 10rem 0 3rem;
}

.main-Banner h3 {
    color: var(--white);
    font-weight: bold;
}

.main-Banner .socials {
    gap: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.main-Banner .socials a {
    color: var(--theme-color);
    font-size: 1.5rem;
}

.main-Banner .socials svg {
    width: 20px;
    height: 20px;
    color: var(--theme-color);
}

.main-Banner .socials path {
    fill: var(--theme-color);
}

section {
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.bannerPortfolio>.swiper-wrapper {
    transition-timing-function: linear;
}

.bannerPortfolio {
    margin-top: 3rem;
    padding: 3rem 0;
}

.bannerPortfolio .swiper-slide {
    transition: all 0.3s ease;
}

.bannerPortfolio .swiper-slide.swiper-slide-prev {
    transform: translateY(-2rem);
}

.bannerPortfolio .swiper-slide.swiper-slide-next {
    transform: translateY(-2rem);
}

.counterSec {
    background-color: rgb(81 0 0);
    padding: 1rem 0;
    position: relative;
    z-index: 1;
}

.counterSec .mcounters {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    text-align: center;
}

.counterSec .mcounters .items h2 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: bold;
    margin-bottom: 0;
}

.counterSec .mcounters .items h2 span {
    font-size: 5rem;
    -webkit-text-stroke: 2px #fdc52c;
    color: transparent;
}

.counterSec .mcounters .items p {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.563rem;
    font-family: "Syne", sans-serif;
}

.featuredSec {
    position: relative;
    padding: 10rem 0;
}

.featuredSec:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: url(../images/featuredBefore.webp) no-repeat;
    width: 347px;
    height: 832px;
    z-index: -1;
    margin: auto;
}

.featurecont {
    position: relative;
    z-index: 8;
    height: 100%;
}

.featurecont h2 {
    text-transform: uppercase;
    color: var(--head-color);
}

.featuredProducts .items figure {
    margin-bottom: 1rem;
}

.featuredProducts .items .cont h3 {
    font-size: 1.625rem;
    color: #040427;
    font-weight: 600;
    line-height: 1.2;
}

.srolldown a {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    width: 175px;
    height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srolldown a:before {
    content: '';
    position: absolute;
    background: url(../images/scrolldownimg.webp) no-repeat;
    width: 176px;
    height: 176px;
    -webkit-animation: rotate 10s normal linear infinite;
    animation: rotate 10s normal linear infinite;
}

.stepsProcess {
    background-color: rgba(4, 4, 39);
    overflow: hidden;
}

.stepsProcess:before {
    content: '';
    position: absolute;
    top: 20rem;
    background: url(../images/pattern.webp) no-repeat;
    background-size: cover;
    width: 1163px;
    max-width: 100%;
    height: 1185px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}

.scrolltext {
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.scrolltext:before,
.scrolltext:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(-360deg);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #e6e6e6 50%, rgba(230, 230, 230, 0));
    width: 60%;
    height: 1px;
}

.scrolltext:after {
    bottom: 0;
    top: initial;
}

.scrolltext .scrollHead {
    font-size: 6.25rem;
    color: var(--white);
    font-weight: bold;
    white-space: pre;
    text-transform: uppercase;
    position: relative;
    padding: 2rem 0;
}

.scrolltext .scrollanim {
    position: relative;
}

.scrolltext .scrollanim:before {
    content: '';
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(4, 4, 39, 1) 20%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.scrolltext .scrollanim:after {
    content: '';
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(4, 4, 39, 1) 80%);
    top: 0;
    z-index: 1;
}

.stepsProcess .text-center h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
}

.stepsProcess .text-center h2 span {
    display: inline-block;
    background: var(--white);
    color: var(--head-color);
    padding: 0 10px;
}

.stepsProcess .items {
    margin-bottom: 3rem;
}

.stepsProcess .items h2 {
    font-size: 12.5rem;
    font-weight: bold;
    -webkit-text-stroke: 1px #fdc52c;
    color: transparent;
}

.stepsProcess .items h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    transition: all 0.3s ease;
}

.stepsProcess .items p {
    color: var(--white);
}

.stepsProcess .items a {
    color: var(--white);
    font-size: 1.875rem;
    font-weight: bold;
    opacity: 0;
    font-family: "Syne", sans-serif;
}

.stepsProcess .items:hover h3 {
    color: var(--theme-color);
}

.stepsProcess .items:hover a {
    opacity: 1;
}

.wixAgencySec {
    position: relative;
    overflow: hidden;
}

.wixAgencySec .items {
    max-width: 590px;
}

.wixAgencySec .items figure {
    margin-bottom: 2rem;
}

.wixAgencySec .items h2 {
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: -2.8px;
    color: var(--head-color);
    margin-bottom: 2rem;
}

.wixAgencySec .items p {
    font-size: 1.125rem;
    line-height: 1.39;
    color: rgba(44, 44, 44, 0.8);
}

.wixAgencySec .items p strong {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(44, 44, 44, 0.8);
    margin-bottom: 2rem;
}

.wixAgencySec:before {
    content: '';
    position: absolute;
    left: 0;
    opacity: 0.3;
    -webkit-filter: blur(458.3px);
    filter: blur(458.3px);
    background-color: #7a0ead;
    width: 821px;
    height: 922px;
    top: 0;
    z-index: -1;
}

.portsec {
    background: url(../images/portsecBg.webp) no-repeat;
    background-size: cover;
}

.portsec h2 {
    font-size: 1.875rem;
    color: var(--white);
    letter-spacing: -1.5px;
    font-weight: bold;
    text-transform: uppercase;
}

.portsec h2 span {
    font-size: 6.875rem;
}

.webdesignAgency {}

.webdesignAgency h2 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.clientLogo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.clientSec {
    background-color: rgba(228, 241, 255);
    position: relative;
    text-align: center;
}

.clientSec:before {
    content: '';
    background: url(../images/pattren2.webp) no-repeat;
    width: 382px;
    height: 744px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.clientSec:after {
    content: '';
    background: url(../images/pattren1.webp) no-repeat;
    width: 382px;
    height: 744px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.testimonials {
    width: 100%;
    max-width: 943px;
    margin: auto;
    padding: 2rem 3rem;
    background: url(../images/testim-bd.webp) no-repeat;
    background-size: 100%;
    background-position: bottom;
}

.testimonials svg,
.testimonials i {
    font-size: 3rem;
}

.testimonials p {
    font-size: 1.563rem;
    margin: 3rem 3rem;
}

.testimusers {
    margin-top: 2rem;
    max-width: 670px;
    min-height: 285px;
}

.testimusers figure {
    margin-bottom: 1rem;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimusers .cont {
    opacity: 0;
}

.testimusers .cont h3 {
    margin-bottom: 0;
}

.testimusers .swiper-slide-active .cont {
    opacity: 1;
}

.testimusers figure img {
    width: 113px;
    height: 113px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.testimusers .swiper-slide-active figure img {
    object-fit: cover;
    transform: scale(1.4);
}

.designdevelopSec {
    background-color: #05104a;
}

.designdevelopSec:before {
    content: '';
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    /*background: url(../images/circle-01.webp) no-repeat; */
    width: 103px;
    height: 102px;
    border: 20px solid var(--theme-color);
    border-radius: 100%;
    border-bottom-color: #fff;
    border-bottom-width: 20px;
    border-left-color: #fff;
}

.designdevelopSec:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/design02.webp) no-repeat;
    width: 250px;
    height: 499px;
    background-size: cover;
    z-index: -1;
}

.designdevelopSec .cont {
    position: relative;
}

.designdevelopSec .cont h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1.5px;
}

.designdevelopSec .cont h2 {
    font-size: 6.875rem;
    font-weight: bold;
    color: var(--theme-color);
    letter-spacing: -1.5px;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 0;
}

.designdevelopSec .cont:before {
    content: '';
    background: url(../images/aroowdesign.webp) no-repeat;
    width: 88px;
    height: 85px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.designdevelopSec .cont h2 span {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--white);
}

.designdevelopSec .cont p {
    color: var(--theme-color);
    font-size: 1.875rem;
}

.affordablePriceSec {
    background: url(../images/portsecBg.webp) no-repeat;
    background-size: cover;
}

.affordablePriceSec h2 {
    color: var(--white);
    margin-bottom: 3rem;
}

.affordablePriceSec p {
    color: var(--white);
}

.awarsSec {
    background: var(--head-color);
    text-align: center;
}

.awarsSec h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--theme-color);
    letter-spacing: 16.95px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.awardsMain {
    display: grid;
    gap: 3rem;
    grid-template-columns: auto auto auto auto auto;
    text-align: center;
    place-items: center;
}


footer,
.copyright {
    position: relative;
    z-index: 1;
    background: var(--white);
}

footer {
    padding: 5rem 0;
}

footer .flogo {
    margin-bottom: 1rem;
}

footer p {
    margin: 1.5rem 0;
}

footer .socials {
    gap: 1rem;
    display: flex;
    align-items: center;
}

footer .socials a {
    color: var(--head-color);
}

footer .socials a:hover {
    color: var(--theme-color);
}

footer .socials a svg {
    width: 14px;
    height: 16px;
}

footer .socials a svg path {
    fill: var(--head-color);
}

footer .socials a:hover svg path {
    fill: var(--theme-color);
}

footer h3 {
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--head-color);
    position: relative;
    margin-bottom: 2rem;
    padding: 0 0 1rem;
}

footer h3:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--theme-color);
    height: 2px;
    width: 65px;
}

footer .widget ul li {
    padding: 3px 0;
}

footer .widget ul li a {
    color: var(--head-color);
    font-size: 1rem;
    line-height: 1.9;
}

footer .widget ul li:hover a {
    color: var(--theme-color);
}

.col2set {
    columns: 2;
}

footer .contDet ul li {
    font-size: 1rem;
    line-height: 1.25;
    color: var(--head-color);
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

footer .contDet ul li svg,
footer .contDet ul li i {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--theme-color);
    font-size: 1.3rem;
}

footer .contDet ul li p,
footer .contDet ul li a {
    margin: 0;
    color: var(--head-color);
    font-size: 1rem;
    line-height: 1.25;
}

footer .contDet ul li:hover a {
    color: var(--theme-color);
}

.extraLinks {
    background: var(--head-color);
}

.extraLinks ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap;
    gap: 1.5rem;
}

.extraLinks ul li a {
    color: var(--white);
    padding: 1rem 1rem;
    line-height: 1.9;
    display: block;
}

.extraLinks ul li:hover a {
    background: var(--theme-color);
    color: var(--head-color);
}

.extraLinks p {
    color: var(--white);
    margin-bottom: 0;
}

.reveal {
    visibility: hidden;
    position: relative;
}

.featuredSec .conts h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--head-color);
}

.featuredSec.innerfeat:before {
    bottom: initial;
}

.dg-transforms {
    padding: 8rem 0;
    position: relative;
}

.dg-transforms.paraBg1 {
    background: var(--head-color);
}

.dg-transforms.paraBg2 {
    background: #05104a;
}

.dg-transforms .parallaxBg {
    background: url(../images/parallaxbg01.webp) no-repeat;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
    top: 0;
}

.dg-transforms.paraBg2 .parallaxBg {
    background: url(../images/parallaxbg02.webp) no-repeat;
}

.dg-transforms h2 {
    text-transform: uppercase;
    color: var(--white);
    font-size: 6.875rem;
    font-weight: bold;
    letter-spacing: -5.5px;
    line-height: 1;
}

.dg-transforms h2 span {
    color: var(--theme-color);
    position: relative;
    display: inline-block;
    font-size: 1.875rem;
    font-weight: bold;
    letter-spacing: normal;
}

.dg-transforms h2 span:before {
    content: '';
    background: url(../images/arrow-ico2.webp) no-repeat;
    width: 88px;
    height: 85px;
    position: absolute;
    top: -2rem;
    right: -8rem;
}

.dg-transforms.paraBg2 h2 {
    color: var(--theme-color);
}

.dg-transforms.paraBg2 h2 span {
    color: var(--white);
}

.dg-transforms.paraBg2 h2 span:before {
    background: url(../images/arrow-ico3.webp) no-repeat;
    right: initial;
    left: -8rem;
}

.featuredSec.wixservice:before {
    display: none;
}

.pricingSec {
    position: relative;
}

.pricingSec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 757px;
    background: url(../images/portsecBg.webp) no-repeat;
    z-index: -1;
    background-attachment: fixed;
    background-size: cover;
}

.pricingSec h2 {
    color: var(--white);
}

.pricingSec p {
    color: var(--white);
    opacity: 0.8;
}

.pricingSec .pricingBox {
    padding: 2.5rem;
    border-radius: 26px;
    box-shadow: 0 26px 40px 0 rgba(188, 202, 255, 0.13);
    border: solid 1px #e7ebff;
    background: var(--white);
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.pricingBox .icon {
    background: url(../images/priceicon1.webp) no-repeat;
    width: 56px;
    height: 56px;
    display: block;
    margin-bottom: 1rem;
}

.pricingBox h3 {
    font-size: 1.65rem;
    font-weight: bold;
    margin-bottom: 0;
}

.pricingBox p {
    font-size: 1.2rem;
    color: #797878;
    line-height: 1.33;
    font-weight: 300;
    margin-bottom: 1rem;
}

.pricingBox .price {
    margin-bottom: 1rem;
}

.pricingBox .price h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #797878;
}

.pricingBox .price h3 span {
    font-size: 3.75rem;
    font-weight: bold;
    color: var(--head-color);
}

.listpack {
    border-top: 1px solid #e7ebff;
}

.listpack ul {
    padding: 1rem 0;
}

.listpack ul li {
    padding: 10px 0;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.44;
    color: #1b223c;
    position: relative;
}

.listpack ul li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: 9px;
    left: 0;
    color: #fdc52c;
}

.listpack ul li.heading {
    font-weight: 700;
}

.listpack ul li svg,
.listpack ul li i {
    color: var(--theme-color);
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 12px;
}

.pricingBox .themeBtn {
    width: 100%;
    text-align: center;
    border: 1px solid var(--theme-color);
}

.pricingBox .priceHead {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
    justify-content: space-between;
}

.pricingBox .priceHead .tags {
    padding: 5px 10px;
    border-radius: 8px;
    border: solid 1px #121530;
    background-color: rgba(18, 21, 48, 0.08);
    font-size: 1.125rem;
    font-weight: 300;
    color: #121530;
}

.pricingBox .ico2 {
    background: url(../images/priceicon2.webp) no-repeat;
}

.pricingBox .ico3 {
    background: url(../images/priceicon3.webp) no-repeat;
}

.pricingBox.active {
    background-image: linear-gradient(to bottom, rgba(106, 138, 255, 0.56), rgba(239, 242, 255, 0.2));
    background: url(../images/hover-pack.webp) no-repeat;
}

.pricingBox.active .listpack ul li svg,
.pricingBox.active .listpack ul li i,
.pricingBox.active .listpack ul li:before {
    color: #e27a2e;
}

.pricingBox.active .themeBtn {
    background: var(--head-color);
    box-shadow: inset 0 0 16px 0 #fff;
    color: var(--theme-color);
}

.pricingBox.active .ico1 {
    background: url(../images/priceicon1-active.webp) no-repeat;
}

.pricingBox.active .ico2 {
    background: url(../images/priceicon2-active.webp) no-repeat;
}

.pricingBox.active .ico3 {
    background: url(../images/priceicon3-active.webp) no-repeat;
}

.serviceDetPg .portsec h2 {
    text-transform: initial;
}

.serviceDetPg .portsec h2 span {
    font-size: 2.375rem;
    text-transform: uppercase;
}

.serviceDetPg .portsec h3 {
    color: var(--white);
}

.serviceDetPg .portsec p {
    color: var(--white);
}

.lists li {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.44;
    color: var(--white);
    padding: 10px 0;
    padding-left: 1.5rem;
    position: relative;
}

.lists li svg,
.lists li i {
    color: var(--theme-color);
    font-size: 1rem;
    position: absolute;
    top: 12px;
    left: 0;
}

.tabsMain ul li a {
    padding: 5px 0;
    color: var(--head-color);
    padding-left: 1.5rem;
    position: relative;
    display: inline-block;
}

.tabsMain ul li a:before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 10px;
    border: 1px solid #d7d7d7;
}

.tabsMain ul li.active a:before {
    background: var(--head-color);
}

.contSimple {
    text-align: center;
}

.contSimple h3 {
    font-size: 2.5rem;
    font-weight: bold;
}

.serviceDetPg .designdevelopSec .cont h2 span {
    font-size: 6.875rem;
}

.graphicsPg .portsec h2 {
    font-size: 3.5rem;
    text-transform: uppercase;
}

.graphicsPg .portsec h2 span {
    display: block;
    font-size: 3.5rem;
}

.graphicsPg .portsec .listpack {
    border-top: initial;
}

.graphicsPg .portsec .listpack ul li {
    color: var(--white);
}

.bdtop-0 {
    border-top: none !important;
}

.featuredSec.wixservice {
    padding: 5rem 0;
}

.portfolioSec {
    background: var(--head-color);
}

.portfolioSec .items {
    margin-bottom: 2rem;
    overflow: hidden;
}

.portfolioSec .items img {
    transition: all 0.3s ease;
}

.portfolioSec .items:hover img {
    transform: scale(1.1);
}

.brandingSec {
    position: relative;
    padding: 0;
    background-color: rgba(228, 241, 255, 0.7);
}

.brandingSec h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0;
}

.brandingSec h3.fntinter {
    font-size: 2.5rem;
    color: var(--head-color);
    font-weight: bold;
    font-family: "Inter", sans-serif;
    margin-bottom: 2rem;
}

.brandingSec .posabs {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 695px;
}

.brandingSec .posabs .brandImgDvs {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-image: url(../images/brandingsecimg1.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: contain;
}

.brandingSec .cont {
    padding: 2rem 0;
    padding: 4rem 0;
    padding-left: 2rem;
}

.home .featuredSec:before,
.webdesignPg .featuredSec:before {
    z-index: -1;
}

.home .featuredProducts:before,
.webdesignPg .featuredProducts:before {
    display: block;
    z-index: 2;
}

.wixtemplatePg .featuredSec:before {
    top: 3rem;
    bottom: initial;
}

.wixtemplatePg .featuredSec:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 3rem;
    background: url(../images/featuredafter.webp) no-repeat;
    width: 347px;
    height: 890px;
    z-index: -1;
    background-size: cover;
}

.wixtemplatePg .main-Banner h1 span {
    font-size: 2.838rem;
}

.featuredSec .container {
    z-index: 3;
}

.featuredSec .items {
    margin-bottom: 2rem;
}

.featuredSec .items img {
    height: 402px;
    object-fit: cover;
    width: 100%;
    object-position: top;
}

.easySteps {
    background-color: rgba(228, 241, 255, 0.7);
}

.easySteps h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0;
}

.easySteps h2 span {
    color: var(--theme-color);
    padding: 0 1rem;
    background: var(--head-color);
}

.easySteps h3 {
    font-size: 12.5rem;
    -webkit-text-stroke: 1px #040427;
    color: transparent;
}

.featuredSec .lists li {
    color: var(--head-color);
}

.greySec {
    background-color: rgba(228, 241, 255, 0.7);
    text-align: center;
}

.socialmediaPg .contSimple .lists {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.socialmediaPg .contSimple .lists li {
    color: var(--head-color);
    display: inline-flex;
    font-size: 2.125rem;
    font-weight: bold;
    padding-left: 2.5rem;
}

.socialmediaPg .contSimple .lists li svg,
.socialmediaPg .contSimple .lists li i {
    font-size: 2rem;
    top: 15px;
}

.featuredSec.wixservice h2 {
    font-size: 3.2rem;
}

.giveBackSec {
    background-color: rgba(228, 241, 255, 0.7);
    padding: 5rem 0;
}

.comunityPg .brandingSec {
    background: #fff;
    padding: 5rem 0;
}

.comunityPg .brandingSec h3 {}

.comunityPg .brandingSec .posabs .brandImgDvs {
    background-image: url(../images/comunity-img01.webp);
    background-attachment: initial;
    background-size: cover;
}

.comunityPg .brandingSec .posabs {
    left: initial;
    right: 0;
    width: 45%;
    height: 100%;
}

.ctaSec {
    background: url(../images/portsecBg.webp) no-repeat;
    background-size: cover;
    text-align: center;
}

.ctaSec p {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
}

.ctaSec h2 {
    color: var(--white);
}

.tabsBtns {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.tabsBtns a {
    font-size: 1.5rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    font-family: "Syne", sans-serif;
}

.tabsBtns a.active {
    color: var(--head-color);
}

/* Accordian */

.accordion-list {
    position: relative;
}

.accordion-list li {
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    border-bottom: 0;
    background: white;
    box-shadow: none;
    margin-bottom: 1.5rem;
}

ul.accordion-list li span {
    display: block;
    position: relative;
}

.accordion-list li h3 {
    display: flex;
    align-items: center;
    font-size: 1.375rem;
    font-weight: 600;
    text-align: left;
    color: #040427;
    margin-bottom: 0;
    border-radius: 12px;
    border: solid 1px #606060;
    padding: 20px 20px;
}

.accordion-list li.active h3 {
    color: var(--theme-color) !important;
}

ul.accordion-list li h3:after {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 15px;
    color: var(--secondary);
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    font-weight: 900;
    top: 25px;
}

.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}

ul.accordion-list li.active h3:after {
    content: "\f068";
    color: var(--theme-color);
}

.answer {
    border-radius: 12px;
    border: solid 1px #606060;
    padding: 20px 20px;
    margin-top: 1rem;
}

.answer p {
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.78;
    color: #888;
    margin-bottom: 1rem;
}

.accordion-list li.active .answer {
    display: block !important;
    border: solid 1px var(--theme-color);
}

.accordion-list li ul {
    padding-left: 20px;
}

.accordion-list li ul li {
    border: none;
    padding: 10px 0;
    margin: 0;
    list-style: disc;
}

/* Accordian */

.bookingPg .brandingSec {
    padding: 3rem 0;
}

.bookingPg .brandingSec .posabs {
    width: 45%;
}

.bookingPg .brandingSec {
    background-color: rgb(228 241 255);
}

.brandingSec .posabs .brandImgDvs.bookingimg1 {
    background-image: url(../images/booking-img01.webp);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}

.bookingPg .stepsProcess .items a {
    opacity: 1;
    font-size: 1rem;
    color: var(--head-color);
}

.bookingPg .stepsProcess .items h3 {
    font-size: 2.2rem;
}

.logodesignPg .portfolioSec {
    background-color: rgba(228, 241, 255, 0.7);
}

.logodesignPg .portfolioSec .items img {
    width: 100%;
}

.logodesignPg .dg-transforms.paraBg2 {
    padding: 0rem 0;
}

.logodesignPg .dg-transforms.paraBg2 p {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.contactSec {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.contactSec:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #05104a;
    width: 100%;
    height: 690px;
    z-index: -1;
}

.connectImgs {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.connectFrom {
    padding: 72px;
    border-radius: 10px;
    box-shadow: 0 4px 30px 6px rgb(0 0 0 / 12%);
    background-color: #faf9fc;
}

.connectFrom h3 {
    font-size: 3rem;
    font-weight: bold;
}

.connectFrom .field {
    margin-bottom: 1rem;
}

.connectFrom .field input,
.connectFrom .field textarea {
    border-radius: 5px;
    background-color: #e6e6e6;
    padding: 20px 20px;
    color: #414141;
    width: 100%;
    border: none;
}

.connectFrom .field textarea {
    height: 120px;
    resize: none;
}

.contformDets {
    margin-top: 3rem;
}

.contformDets .items {
    border-radius: 10px;
    box-shadow: inset 0 0 16px 10px #e27a2e;
    background-color: #fdc52c;
    padding: 30px 40px;
    min-height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contformDets .items p,
.contformDets .items a {
    font-size: 1rem;
    color: var(--head-color);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.67;
    margin-bottom: 0;
    font-weight: 600;
}

.contformDets .items p svg,
.contformDets .items a svg,
.contformDets .items p i,
.contformDets .items a i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--head-color);
}

.overlay {
    background-color: rgb(8 32 50 / 55%);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    display: none;
    backdrop-filter: blur(8px);
}

.popup-main {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    width: 980px;
    background: #fff;
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    overflow: hidden;
    display: none;
    border-radius: 8px;
    max-width: 97%;
    max-height: 90vh;
    overflow-y: auto;
}

.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;
}

.mmpopup {
    background: #f8f8f8;
    display: flex;
    align-items: center;
}

.mmpopup .imgpop {
    width: 30%;
}

.mmpopup .imgpop img {
    height: 468px;
    object-fit: cover;
}

.mmpopup .cont {
    width: 35%;
    padding: 2rem 2rem;
}

.mmpopup .formPop {
    width: 35%;
    padding: 2rem 2rem;
}

.mmpopup .cont h3 {
    font-size: 1.875rem;
    font-weight: bold;
}

.mmpopup .cont p {
    margin-bottom: 10px;
    font-size: 14px;
}

.mmpopup .cont .lists {
    padding: 1rem 0;
}

.mmpopup .cont .lists li {
    color: var(--head-color);
    padding: 2px 0;
    padding-left: 1.5rem;
}

.mmpopup .cont .lists li svg,
.mmpopup .cont .lists li i {
    top: 5px;
}

.mmpopup .cont .call a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--head-color);
}

.formPop .fld {
    margin-bottom: 0.4rem;
    font-size: 14px;
}

.formPop .fld input,
.formPop .fld textarea {
    border-radius: 5px;
    border: solid 1px #e6e6e6;
    width: 100%;
    height: 50px;
    padding: 10px 10px;
}

.formPop .fld textarea {
    height: 80px;
}


/* popup */


.popupmain {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    width: 530px;
    background: #fff;
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    overflow: hidden;
    display: none;
    border-radius: 8px;
    max-width: 97%;
    max-height: 90vh;
    overflow-y: auto;
}

.popupmain .mmpopup {
    text-align: center;
    background: #f8f8f8;
    padding: 45px 25px 25px;
    display: block;
}

.popupmain .mmpopup .formpop {
    width: 100%;
    margin: 24px auto;
}

.popupmain .mmpopup .fld-input {
    height: initial;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #D1D5DB;
    background: #EEEEEE;
}

.popupmain .mmpopup .centercont h3 {
    font-size: 38px;
    color: #141515;
    margin-bottom: 10px;
}

.popupmain .mmpopup .centercont h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
}

.popupmain .mmpopup .centercont h4 span {
    color: #86cb92;
}

.popupmain .mmpopup .centercont h4 span span {
    display: none;
}

.popupmain .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;
}


.popupmain .mmpopup .centercont p {
    margin-bottom: 10px;

}

.popupmain .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;

}

.popupmain .mmpopup .centercont ul li {
    display: block;
    font-size: 15px;
    color: #000;
    padding-bottom: 12px;
}

.popupmain .mmpopup .centercont ul li.last {
    padding-bottom: 0;
}

.popupmain .mmpopup .centercont ul li i {
    color: #ff533e;
    border: 1px solid;
    border-radius: 100px;
    margin-right: 8px;
    font-size: 10px;
    padding: 3px;
}

.popupmain .mmpopup .centercont h4 {
    font-size: 30px;
    font-family: "Inter", sans-serif;
}

.popupmain .mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    color: #0085ff;
}

.popupmain .mmpopup .centercont h3 span {
    display: block;
    margin: 0 0px;
    color: #000;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    font-family: "Inter", sans-serif;
    /* color: #3A3D40; */
}

.popupmain .mmpopup .centercont h4 span {
    font-weight: 700;
    color: #000;
    font-size: 25px;
    margin-left: 10px;
}

.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,
.fld-input textarea {
    width: 100%;
    height: 50px;
    padding: 10px 24px;
    font-size: 16px;
    letter-spacing: 0.2px;
    background: #EEEEEE;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none;
    border-radius: 10px;
}

.fld-input textarea {
    height: 80px;
}

.fld-input input::placeholder {
    color: #737373;
    font-weight: 400;
}


.fld-btn button i {
    padding-left: 12px;
}

.fld-btn button:hover {
    transform: scale(1.03);
}

/* popup */


.privacy_policy_Sec {
    padding: 5rem 0;
}

section.privacy_policy_Sec h4 {
    font-size: 36px;
    font-weight: 600;
    color: #141516;
}

section.privacy_policy_Sec h4:nth-child(1) {
    text-align: center;
    font-size: 46px;
    padding-top: 0px;
    padding-bottom: 12px;
}

section.privacy_policy_Sec ul>li {
    list-style-type: disc;
    padding: 9px 0;
    font-size: 18px;
    color: #897c68
}

section.privacy_policy_Sec ul {
    padding: 0px 17px;
}

section.privacy_policy_Sec p {
    margin-bottom: 1rem;
}

.tabsPack a {
    border: 1px solid #fff;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 100px;
    display: inline-block;
    margin: 0 0.5rem;
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.tabsPack a.active {
    background: var(--theme-color);
    box-shadow: inset 0 0 16px 0 #e27a2e;
    border: 1px solid var(--theme-color);
    color: #1a1c21;
}

.pack-scroll {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.pricingBox .price h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricingBox .price h3 small {
    display: block;
}

.pricingBox .price h3 small i {
    text-decoration: line-through;
    font-style: initial;
}


.featuredSec.templatesPortfolio .items img {
    height: 565px;
}

#popstatic .checkbox-wrap label {
    font-size: 11px;
}


.packages_inner:before {
    display: none;
}

.packages_inner .pricingBox {
    margin-top: 0;
}

.packages_inner h3 {
    color: var(--head-color);
    font-size: 2rem;
    font-weight: 700;
}

.detailsanchor {
    color: #0085ff;
    text-decoration: underline !important;
}



.distxt {
    text-align: center;
    font-size: 13px;
    padding-bottom: 30px;
    color: #ffffff69 !important;
}

.pricingBox .detailsanchor {
    display: none;
}