@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@keyframes bg-pos {
  from  { background-position: 20px 0; }
  to    { background-position: 0 0; }
}
@keyframes bg-img-size {
  from  { background-size: 100%; }
  to    { background-size: 150%; }
}
@keyframes bg-img-size-mob {
  from  { background-size: 200%; }
  to    { background-size: 300%; }
}
@keyframes ltrb {
	0% { left: 0; top: 0; }
	100% { left: 80%; top: 80%; }
}
@keyframes bg {
	0%   {background-color: var(--theme-color);}
/* 	50% {background-color: var(--theme-dark-color);} */
  	100% {background-color: var(--theme-black);}
}
@keyframes opa {
	0%   {opacity: 0}
  	100% {opacity: 1}
}
@keyframes scale {
	0%   {transform: scale(0)}
  	100% {transform: scale(2)}
}
@keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
@keyframes boxShadow {
	0% {
		width: 0%;
		height: 0%;
		opacity: 0;
	}
	100% {
		width: 100%;
		height: 100%;
		opacity: 1;
	}
}
:root {
/*     --theme-color: #39b939; */
/* 	--theme-color: #00CC8E; */
	--theme-color: goldenrod;
	--theme-light-color: #9d7a20;
	--theme-dark-color: #866921;
/* 	--theme-dark-color: #038373; */
    --theme-black: #3a3a3a;
	--theme-dark-black: #222222;
	--black: #000;
    --white: #fff;
	--bg: #eee;
	--danger: darkred;
	--red: red;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,
.forminator-select-dropdown .select2-results__options {
    scroll-behavior: smooth;
	scrollbar-color: var(--theme-color) var(--black);
}
body {
    margin: 0;
    font-family: "Lato", sans-serif;
	font-size: 1rem;
}
figure {
    margin: 0 0 25px;
}
img {
    max-width: 100%;
    height: auto;
}
h1,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px;
}
h1, h2 {
	font-weight: 700;
}
.forminator-field {
  position: relative !important;
}
/* .forminator-input--wrap,
.forminator-textarea--wrap {
	background: var(--theme-black) !important;
	border-radius: 25px;
} */
.forminator-input,
.forminator-textarea,
.forminator-select .select2-selection {
  background: var(--theme-black) !important;
  padding: 0 0 0 10px !important;
  font-size: 16px !important;
  box-shadow: 0 10px var(--theme-light-color) !important;
  border: none !important;
  color: var(--theme-color) !important;
  text-transform: capitalize;
	border-radius: 25px !important;
}
.forminator-input {
	height: 40px !important;
}
.forminator-textarea {
	padding: 10px 15px !important;
	resize: none !important;
	border-radius: 15px !important;
}
.forminator-description {
	display: none !important;
}
.forminator-select {
  height: 40px !important;
}
.forminator-select-dropdown,
.forminator-select-dropdown {
  background: var(--theme-dark-black) !important;
  border-color: var(--theme-color) !important;
  padding: 0 !important;
  color: var(--theme-color) !important;
}
.select2-selection__placeholder,
.select2-selection__arrow,
.forminator-input::placeholder,
.forminator-textarea::placeholder {
  color: var(--white) !important;
}
.forminator-select-dropdown {
	border-radius: 10px !important;
	overflow: hidden !important;
}
.forminator-select-dropdown .select2-results__option,
.select2-selection__rendered {
	color: var(--theme-color) !important;
}
.forminator-select-dropdown .select2-results__option--highlighted {
	background: var(--theme-light-color) !important;
	color: var(--black) !important;
}
.forminator-select-dropdown .select2-results__option--selected {
	background: var(--theme-color) !important;
	color: var(--black) !important;
}
.forminator-has_error .forminator-input {
  background: var(--danger) !important;
  box-shadow: 0 10px var(--red) !important;
}
.forminator-error-message {
  position: absolute;
  top: 50px;
  font-size: 10px !important;
  background: var(--danger) !important;
  color: var(--white) !important;
  padding: 4px 10px !important;
  line-height: 1 !important;
	border-radius: 25px !important;
	text-align: center;
}
.forminator-row-last .forminator-button {
  line-height: 1.3 !important;
  height: auto !important;
  padding: 8px 20px !important;
  background: var(--theme-color);
  color: var(--black);
  font-weight: 700 !important;
  font-size: 18px !important;
  box-shadow: 0 10px var(--theme-light-color) !important;
  border-radius: 25px !important;
	max-width: 200px !important;
	transition: 0.2s ease-in-out;
}
.forminator-row-last .forminator-button:hover,
.forminator-row-last .forminator-button:active {
    box-shadow: 0 5px var(--theme-dark-color) !important;
    transform: translateY(5px);
}
.home h2 {
/* 	text-decoration: underline wavy var(--theme-color); */
	margin: 0 0 50px;
	text-transform: uppercase;
	text-shadow: 0 2px var(--theme-light-color), 0 4px var(--theme-dark-color);
	color: var(--theme-color);
}
.home h2:first-letter {
	font-size: 200%;
	color: var(--theme-color);
	 text-shadow: 0 4px var(--theme-light-color), 0 8px var(--theme-dark-color);
} 
p a {
	color: var(--theme-color);
}
section {
	position: relative;
	overflow: hidden;
}
.cus-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}
.cus-row {
    display: flex;
    justify-content: space-between;
}
.cus-btn-area {
    margin: 25px 0 0;
}
.cus-btn {
    padding: 7px 30px;
    background: var(--theme-color);
    color: var(--black);
/*     border-radius: 5px 25%; */
	border-radius: 25px;
    text-decoration: none;
	display: inline-block;
    border: 1px solid transparent;
	box-shadow: 0 10px var(--theme-light-color);
/*     transition: 0.5s ease-in-out; */
	transition: 0.2s ease-in-out;
}
.cus-btn:hover {
/*     background: var(--white); */
/*     color: var(--theme-color); */
/*     border-radius: 25% 5px; */
/*     border-color: var(--theme-color); */
    box-shadow: 0 5px var(--theme-dark-color);
    transform: translateY(5px);
}
.cus-anim-head {
	-webkit-text-stroke: 5px var(--black);
    text-transform: uppercase;
    font-size: 600%;
    -webkit-text-fill-color: var(--theme-color);
    white-space: nowrap;
    line-height: 1;
    opacity: .1;
	position: absolute;
    top: 0;
    padding: 0 !important;
    z-index: -1;
    animation: ltrb 15s infinite alternate;
}
section > div {
    padding: 50px 0;
	position: relative;
	z-index: 1;
}
.cus-ban {
	background: no-repeat top 38% center/100%;
	color: var(--white);
	position: relative;
	border-radius: 0 0 10vw 0;
    overflow: hidden;
	animation: bg-img-size 10s ease-in-out infinite;
}
.cus-ban,
.cus-serv,
.cus-port,
.cus-team,
.cus-testi,
.cus-contact {
    text-align: center;
}
.cus-ban::before {
    content: "";
    background: var(--theme-dark-black);
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
    width: 100%;
	opacity: 1;
	animation: opa 10s ease-in-out infinite reverse;
}
.cus-ban .cus-inner {
	position: relative;
}
.cus-ban h1 br {
	display: none;
}
.cus-ban .cus-logo figure {
    mask-size: 100%;
    mask-repeat: no-repeat;
}
.cus-ban .cus-logo figure img {
    width: 100%;
    height: 100px;
	object-fit: cover;
	animation: width 10s ease-in-out infinite alternate;
}
header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--theme-dark-black);
    padding: 10px 0;
	box-shadow: 0 3px 25px var(--black);
}
header .cus-row {
    align-items: center;
}
header .cus-logo {
    max-width: 200px;
}
header .cus-logo figure {
    margin: 0;
}
nav {
    width: calc(100% - 300px);
}
nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
}
nav li {
    list-style: none;
	position: relative;
/* 	background: var(--theme-color); */
/*     color: #000; */
/* 	color: var(--theme-color); */
/*     padding: 5px 15px; */
/*     border-radius: 30px; */
/*     box-shadow: 0 6px var(--theme-light-color); */
	transition: 0.2s ease-in-out;
}
nav .menu-item-has-children {
	padding-right: 30px;
}
nav li.current-menu-item {
/* 	background: var(--theme-black); */
/* 	box-shadow: 0 6px var(--white); */
}
nav li:hover,
nav li:active {
/*     box-shadow: 0 3px var(--theme-dark-color) !important; */
/*     transform: translateY(3px); */
}
nav li.current-menu-item a {
	color: var(--white);
}
nav .menu-item-has-children i {
	position: absolute;
	top: 7px;
	right: 5px;
	font-size: 14px;
	color: var(--theme-color);
}
nav a {
    color: var(--theme-color);
	text-decoration: none;
	letter-spacing: 0.3px;
    transition: 0.3s ease-in-out;
}
.sub-menu {
    position: absolute;
    left: -60px;
    background: var(--theme-black);
    padding: 17px 10px 10px;
    width: 250px;
    border-radius: 10px;
    flex-direction: column;
	display: none;
	z-index: 1;
}
.sub-menu-open {
	display: flex;
}
.sub-menu li {
    display: block;
    background: var(--theme-color);
    width: 100%;
    border-radius: 25px;
    padding: 5px 15px;
    font-size: 14px;
	font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}
.sub-menu a {
    text-decoration: none;
	display: block;
	color: var(--black)
}
.nav-menu-icon {
    width: 30px;
    height: 25px;
    position: relative;
    margin: 0 0 0 auto;
    display: block;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
}
.nav-menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--theme-color);;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav-menu-icon:hover span {
    background: var(--theme-color);;
}
.nav-menu-icon span:nth-child(1) {
    top: 0px;
}
.nav-menu-icon span:nth-child(2),
.nav-menu-icon span:nth-child(3) {
    top: 10px;
}
.nav-menu-icon span:nth-child(4) {
    top: 20px;
}
.nav-menu-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.nav-menu-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-menu-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.nav-menu-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.estimate-sec {
  background: var(--theme-dark-black);
}
.estimate-sec form {
  display: flex;
  align-items: center;
  padding: 50px 0 !important;
	gap: 5px;
}
.estimate-sec .forminator-row {
  margin: 0 !important;
}
.estimate-sec .forminator-col {
  padding: 0 !important;
}
.estimate-sec .forminator-row-last {
  margin: 0 0 0 auto !important;
}
.cus-testi,
.sing-serv,
.main-services,
.main-blog {
	background: var(--bg);
}
.cus-serv .cus-row {
	justify-content: center;
}
.cus-serv .cus-row,
.cus-port .cus-row {
    flex-wrap: wrap;
    gap: 20px;
}
.cus-serv .cus-col {
	width: calc(33.33% - 13.3px);
    background: var(--theme-dark-black);
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
	border-radius: 25px;
	position: relative;
}
/* .cus-serv .cus-col::before, .cus-serv .cus-col::after {
	content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 25px;
    width: 0%;
	height: 0%;
    opacity: 0;
	margin: auto;
	transition: 0.3s ease-in-out;
}
.cus-serv .cus-col::before {
	box-shadow: 0 0 10px var(--theme-color);
}
.cus-serv .cus-col::after {
	box-shadow: 0 0 100px inset var(--theme-color);
} */
/* .cus-serv .cus-col:hover::before, .cus-serv .cus-col:hover::after {
	opacity: 1;
}
.cus-serv .cus-col:hover::before {
	box-shadow: 0 0 10px var(--theme-color);
	width: 100%;
	height: 100%;
} */
/* .cus-serv .cus-col:hover::after { */
/* 	height: 100%; */
/* 	width: 100%; */
/* } */
.cus-serv h4 {
	color: var(--theme-color);
}
.cus-serv p {
	margin: 0;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	color: var(--white)
}
.cus-port,
.partners-logo{
	background: var(--theme-dark-black);
	color: var(--white);
}
.cus-port .cus-col,
.cus-team .cus-col {
    width: calc(25% - 15px);
}
.cus-port .cus-col a {
	background: var(--theme-color);
    display: block;
    border: 10px outset var(--theme-color);
	transition: 0.3s ease-in-out;
}
.cus-port .cus-col a:hover {
	border: 10px outset var(--theme-light-color);
}
.cus-port figure,
.cus-team figure {
    background: lightgrey;
    margin: 0;
}
.cus-port figure {
    aspect-ratio: 1/1.1;
/* 	border: 1px dotted var(--theme-color); */
    border-radius: 0px 25%;
    overflow: hidden;
	transition: 0.3s ease-in-out;
	overflow: auto;
}
.cus-port figure:hover {
	border-radius: 0;
}
.cus-port h5 {
	margin-top: 20px;
}
.cus-serv,
.cus-about,
.cus-contact {
	background: var(--theme-black);
	color: var(--white);
}
/* .cus-about,
.cus-testi {
    background: var(--theme-color);
    color: var(--white);
} */
.cus-about h2,
.partners-logo h2 {
	text-align: center;
}
.cus-about h3,
.cus-about h4 {
	color: var(--theme-color);
}
.cus-about .cus-row {
	gap: 20px;
}
.cus-about .cus-col:first-child {
	width: 70%;
}
.cus-about .cus-col:last-child {
	width: 30%;
}
.skills-bar {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: var(--white);
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.skills-bar-inner {
    width: 0%;
    height: 100%;
    font-size: 14px;
    line-height: 20px;
    color: var(--black);
    text-align: center;
	font-weight: 700;
    background-color: var(--theme-color);
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    -webkit-background-size: 40px 40px;
    background-size: 20px 20px;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
    -webkit-animation: bg-pos 2s linear infinite;
    -o-animation: bg-pos 2s linear infinite;
    animation: bg-pos 2s linear infinite;
}
.cus-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
	margin-top: 25px;
}
.cus-stats-col {
/*     background: var(--black); */
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 200px;
    height: 200px;
    padding: 25px 10px;
    text-align: center;
	background: var(--theme-dark-black);
    border: 10px solid var(--theme-light-color);
	color: var(--theme-color);
}
.cus-stats-col h3 {
    margin: 0 0 10px;
	font-weight: 700;
	text-shadow: 0 2px var(--theme-light-color), 0 4px var(--theme-dark-color);
/*     color: var(--theme-color); */
    font-size: 250%;
}
.cus-stats-col h5 {
    margin: 0;
}
.cus-team figure {
    aspect-ratio: 1/1;
    position: relative;
	border: 2px dashed;
}
.cus-team figcaption {
    position: absolute;
    bottom: 2px;
    left: 2px;
    right: 2px;
    text-align: center;
    padding: 10px;
    background: var(--white);
    border-radius: 50% 50% 0 0;
}
.cus-testi {
	position: relative;
}
.cus-testi::before {
    content: "";
    background: url('https://aneeqrehman.com/wp-content/uploads/2025/05/team-aneeq-1.jpg') center/20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.1;
    mix-blend-mode: multiply;
}
.cus-testi .swiper-button-next,
.cus-testi .swiper-button-prev {
	color: var(--theme-color);
}
.cus-testi .cus-container {
	position: relative;
}
.cus-contact form {
    text-align: left;
    max-width: 700px;
    margin: 0 auto !important;
    padding: 50px 30px !important;
    background: var(--theme-dark-black);
/* 	box-shadow: 0 0 10px var(--theme-color); */
	border-radius: 25px !important;
}
.cus-contact .forminator-row {
	margin-bottom: 40px !important;
}
.cus-contact .forminator-input--wrap input {
/* 	background: var(--theme-black) !important; */
/*     padding: 10px 15px !important; */
/* 	border: none !important; */
}
.cus-contact .forminator-textarea--wrap:after {
	display: none !important;
}
.cus-contact .forminator-textarea--wrap textarea {
/* 	border: none !important;
    resize: none !important;
	background: var(--bg); */
/* 	border-radius: 20px; */
}
.cus-contact .forminator-row-last .forminator-col {
	text-align: center;
}
.cus-contact .forminator-row-last .forminator-field {
	display: inline-block;
}
/* .cus-contact .forminator-button-submit {
    padding: 10px 20px !important;
    background: var(--theme-color);
    color: var(--white);
    border-radius: 5px 25% !important;
	display: inline-block !important;
    border: 1px solid transparent !important;
    transition: 0.5s ease-in-out !important;
}
.cus-contact .forminator-button-submit:hover {
    background: var(--white);
    color: var(--theme-color);
    border-radius: 25% 5px !important;
    border-color: var(--theme-color) !important;
} */
footer {
    background: var(--theme-black);
    color: var(--white);
	padding: 50px 0 0;
	font-size: 14px;
	border-top: 5px groove var(--theme-color);
}
.foot-top {
	padding-bottom: 25px;
}
footer ul {
	padding: 0;
	margin: 0;
}
footer li {
	list-style: none;
}
footer a {
    color: var(--white);
	text-decoration: none;
}
footer i {
	color: var(--theme-color);
	margin-right: 5px;
}
.foot-detail {
	max-width: 30%;
}
.foot-logo {
	max-width: 200px;
	margin-bottom: 25px;
}
footer h6 {
	color: var(--theme-color);
    font-weight: 700;
    text-transform: uppercase;
}
.foot-menu li:not(:last-child) {
	padding-bottom: 3px;
    margin-bottom: 3px;
	border-bottom: 3px groove var(--theme-color);
}
.foot-contact li {
	margin-bottom: 10px;
}
.foot-contact li a {
    display: flex;
}
.foot-contact li i {
    margin-top: 5px;
}
.foot-bot {
	text-align: center;
	background: var(--theme-dark-black);
	padding: 7px;
}
.foot-bot p {
	margin: 0;
}
.serv-single-view,
.blog-main-view article {
/*     width: 70%; */
/*     background: var(--white); */
/*     margin-right: 50px; */
/*     border-radius: 5px; */
/*     padding: 50px; */
}
.serv-main-view .inner,
.blog-main-view .inner {
    display: flex;
    justify-content: space-between;
}
.serv-main-view aside,
.blog-main-view aside {
    width: 30%;
	position: sticky;
    top: 0;
    height: 100%;
}
.partners-logo {
	display:none;
}
.partners-logo .inner {
    padding: 30px 0;
}
.partners-logo figure {
    padding: 0 25px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners-logo figure img {
    max-height: 100%;
    object-fit: contain;
}
@media (max-width: 991px) {
	body {
		margin-top: 80px;
	}
	header {
		position: absolute;
		left: 0;
		right: 0;
	}
	nav {
		display: none;
		padding-top: 100px;
        position: absolute;
        right: 0px;
        top: 0px;
        background: var(--theme-dark-black);
        min-width: 300px;
		min-height: 100vh;
        box-shadow: 0 0 10px var(--black);
    }
    nav > div {
        padding: 0 25px 15px;
        overflow: auto;
        height: 100%;
    }
    nav ul {
        flex-direction: column;
    }
	nav li {
		margin-bottom: 5px;
		width: 100%;
/* 		background: var(--bg); */
		padding: 5px;
		border-radius: 50px;
	}
	nav a {
		text-decoration: none;
		display: block;
		text-align: center;
	}
	nav .menu-item-has-children i {
		top: 10px;
    	right: 15px;
	}
	.sub-menu {
		left: 0;
	}
	#nav-menu-icon {
        display: block;
    }
	.cus-ban .cus-logo figure {
		margin: 0 0 10px;
	}
	.cus-ban .cus-logo figure img {
		height: 10vw;
	}
	.estimate-sec form {
		flex-wrap: wrap;
		justify-content: center;
	}
	.estimate-sec .forminator-row-last {
		margin: 20px auto 0 !important;
		width: 100%;
		text-align: center;
	}
	.estimate-sec .forminator-input {
		width: 170px !important;
	}
	.estimate-sec .forminator-select .select2-selection {}
	.cus-serv .cus-row, .cus-port .cus-row {
		justify-content: center;
	}
	.cus-serv .cus-col {
    	width: calc(50% - 30px);
	}
	.cus-port .cus-col, .cus-team .cus-col {
		width: calc(33% - 15px);
	}
	.cus-port img, .cus-team img,
	.cus-about .cus-col:first-child,
	.cus-about .cus-col:last-child {
		width: 100%;
	}
	.cus-about .cus-row {
		flex-wrap: wrap;
	}
	.foot-top .cus-row {
		flex-wrap: wrap;
		gap: 20px;
	}
	.foot-top .cus-col {
		max-width: none;
		width: calc(50% - 15px);
	}
}
@media (max-width: 767px) {
	.estimate-sec form {
		gap: 25px;
	}
	.estimate-sec .forminator-row {
		width: 45%;
	}
	.estimate-sec .forminator-row-last {
		margin: 0 !important;
	}
	.estimate-sec .forminator-input {
        width: 100% !important;
    }
	.cus-serv .cus-col {
        width: 100%;
    }
	.cus-port .cus-col, .cus-team .cus-col {
        width: calc(50% - 30px);
    }
	.cus-stats-row {
		flex-wrap: wrap;
		gap: 20px;
	}
	.cus-stats-col {
		width: 225px;
    	height: 225px;
	}
}
@media (max-width: 500px) {
	.cus-ban {
		background-size: 200%;
		border-radius: 0 0 100px 0;
		animation: bg-img-size-mob 10s ease-in-out infinite;
	}
	.cus-ban h1 br {
		display: block;
	}
	.estimate-sec .forminator-row {
		width: 100%;
	}
	.cus-port .cus-col, .cus-team .cus-col {
		width: 100%;
	}
	.foot-top .cus-col {
		width: 100%;
	}
}