/*scroll*/
::selection {
  background: #895ffc;
  color: #fff;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  background-color: var(white);
}

::-webkit-scrollbar-thumb:vertical {
  border-radius: 5px;
  background-image: linear-gradient(var(--light-green), var(--very-light-green));
}

/*body*/
.overflw {
  overflow: hidden;
}

[class^="box-"] {
  display: none
}

[class^="box-"].showfirst {
  display: block
}

img {
  max-width: 100%;
  height: auto;
}

a:hover {
  text-decoration: none;
  -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;
}

p {
  line-height: 1.4;
}

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: 'Sora', sans-serif;
}

.container {
  max-width: 1170px;
}

.container-md {
  max-width: 1266px;
}

.special-container {
  max-width: 1620px;
}

/* Hamburger Menu */
.menu-Bar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0px;
  margin: auto;
  z-index: 99999;
  display: none;
}

.menu-Bar span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--light-green);
  position: absolute;
  transition: .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 {
  background: var(--green);
  /* opacity: 0.5; */
}

.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;
}

.another-menubar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0px;
  margin: auto;
  z-index: 22;
}

.another-menubar span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--light-green);
  position: absolute;
  transition: .6s all;
  border-radius: 100px;
}

.another-menubar span:nth-child(1) {
  top: 0;
}

.another-menubar span:nth-child(2) {
  top: 8px;
  transform-origin: left;
}

.another-menubar span:nth-child(3) {
  top: 16px;
}

/*top-header*/
.contact-info {
  display: flex;
  align-items: center;
  margin: 0 -20px;
}

.contact-info li {
  padding: 0 20px;
}

.contact-info li a {
  font-size: 14px;
  color: var(--white);
}

.contact-info li a i {
  padding-right: 10px;
  vertical-align: text-bottom;
  font-weight: 400;
  font-size: 18px;
}

.header-top {
  background-image: linear-gradient(to right, var(--light-green), var(--light-blue));
  padding: 20px 0;
  transition: all 0.5s;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 -10px;
}

.social-icons li {
  padding: 0 10px;
}

.social-icons li a i {
  /* font-size: 20px; */
  color: var(--white);
  transition: all 0.5s;
}

.header-menu a i {
  padding: 8px;
  border: 2px solid var(--light-green);
  color: var(--light-green);
  border-radius: 5px;
  font-size: 25px;
}

.menuWrap {
  overflow: hidden;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 -20px;
  position: relative;
  transition: all 0.8s;
}

.menu.active {
  transform: translateX(100%);
}

.menu>li {
  padding: 0 15px;
  position: relative;
}

.menu>li>a {
  font-size: 16px;
  color: var(--black);
  padding: 15px 0;
  display: inline-block;
}

.menu li.active a {
  font-weight: 700;
  color: var(--light-green);
}

.yellow-inner-menu-list li.active a {
  color: var(--yellow);
}

.blue-inner-menu-list li.active a {
  color: var(--blue);
}

.red-inner-menu-list li.active a {
  color: var(--red);
}

.btn-and-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 -10px;
}

.btn-and-menu>div {
  padding: 0 10px;
}

.show-tablet {
  display: none;
}

.main-header {
  padding: 10px 0;
}

.dropdown-menu {
  position: fixed;
  top: 128px;
  left: 51.7%;
  width: 1170px;
  height: auto;
  padding: 40px 40px;
  border-radius: 10px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  margin: 0 -20px;
  border: none;
  transition: all 0.5s;
  transform: translateX(-50%) scaleY(0);
  transition: all 0.4s;
  transform-origin: top center;
  /*filter: drop-shadow(1px 1px 4px var(--very-light-grey));*/
}

.for-dropdown:hover .dropdown-menu {
  /* transform-origin: bottom center; */
  transform: translateX(-50%) scaleY(1);
}

.for-dropdown {
  position: relative;
}

.dropdown-menu::before {
  content: "\f2ec";
  font-family: "Font Awesome 5";
  position: absolute;
  color: #35d18e;
  font-weight: 700;
  top: -12px;
  left: 39%;
  transform: translateX(-50%);
  font-size: 12px;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
}

.for-dropdown:hover .dropdown-menu::before {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu>div {
  padding: 0 20px;
}

.inner-menu h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin: 20px 0 10px;
}

.yellow-inner-menu h4 span {
  color: var(--yellow);
}

.green-inner-menu h4 span {
  color: var(--light-green);
}

.blue-inner-menu h4 span {
  color: var(--blue);
}

.red-inner-menu h4 span {
  color: var(--red);
}

.inner-menu-list li {
  padding: 10px 0;
  overflow: hidden;
}

.inner-menu-list li a {
  font-size: 16px;
  color: var(--light-grey);
  position: relative;
  transition: all 0.5s;
  display: inline-block;
}

.inner-menu-list li a::before {
  content: "";
  width: 15px;
  height: 2px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: -20px;
  transition: all 0.5s;
  transform: scaleX(0) translateY(-50%);
  transform-origin: left center;
  opacity: 0;
  visibility: hidden;
}

.inner-menu-list li a:hover {
  transform: translateX(20px);
  display: inline-block;
}

.inner-menu-list li a:hover::before {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(-50%);
}

.yellow-inner-menu li a:hover {
  color: var(--yellow);
}

.green-inner-menu li a:hover {
  color: var(--light-green);
}

.blue-inner-menu li a:hover {
  color: var(--blue);
}

.red-inner-menu li a:hover {
  color: var(--red);
}

.yellow-inner-menu li a::before {
  background-color: var(--yellow);
}

.green-inner-menu li a::before {
  background-color: var(--light-green);
}

.blue-inner-menu li a::before {
  background-color: var(--blue);
}

.red-inner-menu li a::before {
  background-color: var(--red);
}

header:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--light-green);
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: scaleX(0);
}

header.active::after {
  transform: scaleX(1);
  transition: all 0.8s;
}

header.active .header-top {
  padding: 10px 0;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99999;
  transition: all 0.4s;
  background-color: var(--white);
}

header.active .dropdown-menu {
  top: 106px;
}

.menu-hd-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 15px;
  opacity: 0.25;
  z-index: 0;
  text-align: center;
}

.menu-primary-hd {
  color: var(--green);
  font-size: 8vw;
  margin-bottom: 10px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
}

.menu-hd-text h2,
.menu-hd-text h4 {
  color: var(--green);
  margin-bottom: 0;
}

.banner-txt h4 {
  font-size: 35px;
  font-weight: 500;
  letter-spacing: 45px;
  text-align: center;
  margin-left: 45px;
}

.banner-txt h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.15;
}

/*main-banner*/
.banner-content span {
  font-size: 42px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
  z-index: 2;
  position: relative;
}

.banner-content span img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.banner-content p {
  font-size: 18px;
  color: var(--light-grey);
  line-height: 1.5;
  margin: 20px 0;
}

.btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -20px;
  margin-bottom: 30px;
}

.btns>div {
  padding: 0 20px;
}

.bg {
  background-size: cover;
  background-position: center;
  background-size: 100% 100%;
}

.mainBanner {
  padding-top: 75px;
  margin-top: 120px;
}

.banner-img {
  margin-bottom: -100px;
}

/*index-page*/
.featured-sec {
  padding-top: 100px !important;
}

.featured-box {
  padding: 30px 30px;
  background-color: var(--white);
  box-shadow: 0px 0px 10px 0px rgba(171, 171, 171, 0.20);
  border-radius: 5px;
  transition: all 0.5s;
}

.featured-box img {
  transition: all 0.5s;
}

.featured-box h2 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 30px 0 10px;
  transition: all 0.5s;
}

.featured-box p {
  font-size: 16px;
  line-height: 1.6;
  /* margin-bottom: 30px; */
  /* padding-bottom: 30px; */
  /* border-bottom: 1px solid var(--very-light-grey); */
  color: var(--light-grey);
  transition: all 0.5s;
}

.featured-box a {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  color: var(--black);
  transition: all 0.5s;
}

.featured-box a i {
  padding-left: 10px;
}

.yellow-featured-box h2 {
  color: var(--yellow);
}

.green-featured-box h2 {
  color: var(--light-green);
}

.blue-featured-box h2 {
  color: var(--blue);
}

.product-slid li {
  padding: 5px 15px;
}

.product-slid {
  margin: 0 -15px;
}

.featured-box:hover {
  background-color: var(--light-green);
}

.featured-box:hover img {
  filter: brightness(0)invert(1);
}

.featured-box:hover h2 {
  color: var(--white);
}

.featured-box:hover p {
  color: var(--white);
}

.featured-box:hover a {
  color: var(--white);
}

.product-slid .slick-dots li button {
  display: none;
}

.product-slid .slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #CDCDCD;
  margin: 0 10px;
  padding: 0 !important;
  transition: all 0.2s;
}

.product-slid .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.product-slid .slick-dots li.slick-active {
  width: 50px;
  height: 6px;
  background-color: var(--light-green);
  border-radius: 5px;
  position: relative;
  margin-right: 20px;
}

.product-slid .slick-dots li.slick-active::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--light-green);
  position: absolute;
  top: 0;
  right: -10px;
  animation: sliderdot 1s ease-in-out 1;
}

@keyframes sliderdot {
  0% {
    right: 10px;
  }

  50% {
    right: -10px;
  }

  100% {
    right: -10px;
  }
}

.who-we-our-content p span {
  display: inline-block;
  padding: 30px 30px;
  background-color: var(--very-light-grey);
  border-radius: 5px;
  font-size: 16px;
}

.who-we-our-list li {
  font-size: 16px;
  color: var(--black);
  padding-left: 30px;
  margin: 10px 0;
  position: relative;
  display: inline-block;
}

.who-we-our-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5";
  position: absolute;
  top: 0;
  left: 0;
}

.who-we-our-img {
  margin-right: -100px;
}

.who-we-our-sec {
  border-top: 1px solid var(--very-light-grey);
  border-bottom: 1px solid var(--very-light-grey);
}

.portfolio-img img {
  border-radius: 30px;
  transition: all 0.5s;
}

.portfolio-img {
  width: 100%;
  border-radius: 15px;
}

.portfolio-img:hover img {
  transform: scale(1.3, 1.3);
  z-index: 3;
  position: relative;
}

.portfolio-btn {
  margin-top: 40px;
}

.portfolio-work-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.portfolio-work-list li {
  width: 25%;
  padding: 15px 15px;
}

.portfolio-tabbing-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-tabbing-list li {
  padding: 10px 10px;
  text-align: center;
}

.portfolio-tabbing-list li a {
  display: inline-block;
  text-align: center;
  padding: 20px 0px;
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 700;
  border-radius: 10px;
  width: 200px;
}

.portfolio-tabbing-list li.current a {
  background-color: var(--light-green);
  border: 2px solid var(--light-green);
  color: var(--white);
}

.portfolio-sec {
  background-color: var(--bluiesh);
}

.count {
  position: relative;
  top: 5px;
  left: 5px;
  text-align: center;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: var(--very-light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}

.progressbar-border {
  position: relative;
  text-align: center;
  width: 110px;
  height: 110px;
  border-radius: 100%;
  background-color: #124;
}

.our-progress-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0;
  color: var(--black);
}

.our-progress-box p {
  font-size: 14px;
  color: var(--light-grey);
  line-height: 1.5;
}

.our-progress-box-red h3 span {
  color: var(--red);
}

.our-progress-box-green h3 span {
  color: var(--light-green);
}

.our-progress-box-yellow h3 span {
  color: var(--yellow);
}

.our-progress-box-blue h3 span {
  color: var(--blue);
}

.progressbar-border-red {
  /* background: linear-gradient(180deg, transparent 50%, var(--red) 50%), linear-gradient(90deg, var(--red) 50%, transparent 50%); */
  background: var(--red);
}

.progressbar-border-green {
  /* background: linear-gradient(180deg, transparent 50%, var(--light-green) 50%), linear-gradient(90deg, var(--light-green) 50%, transparent 50%); */
  background: var(--light-green);
}

.progressbar-border-yellow {
  /* background: linear-gradient(180deg, transparent 50%, var(--yellow) 50%), linear-gradient(90deg, var(--yellow) 50%, transparent 50%); */
  background: var(--yellow);
}

.progressbar-border-blue {
  /* background: linear-gradient(180deg, transparent 50%, var(--blue) 50%), linear-gradient(90deg, var(--blue) 50%, transparent 50%); */
  background: var(--blue);
}

.package-tabbing-list li a {
  border: 2px solid var(--black);
  color: var(--black);
}

.package-box {
  padding: 30px 30px;
  background-color: var(--white);
  filter: drop-shadow(1px 1px 4px var(--very-light-grey));
  border-radius: 10px;
  margin: 15px 0;
}

.package-box>span {
  padding: 7px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 25px;
  display: inline-block;
}

.package-box h2 {
  font-size: 36px;
  font-weight: 600;
  padding-left: 34px;
  margin-bottom: 25px;
  position: relative;
  top: 10px;
}

.package-box h2::before {
  content: var(--currency-symbol, "$");
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
}

.package-box h2 span {
  font-size: 19px;
  color: var(--black);
}

.package-list li {
  margin: 9px 0;
  padding-left: 25px;
  font-size: 14px;
  color: var(--light-grey);
  line-height: 1.3;
  position: relative;
  display: inline-block;
  width: 100%;
}

.package-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5";
  position: absolute;
  top: 0;
  left: 0;
}

.package-list {
  height: 230px;
  overflow: auto;
  margin: -10px 0;
  padding-right: 5px;
}

.package-btn {
  margin-top: 30px;
}

.package-btn a {
  width: 100%;
  min-width: 100%;
}

.package-box-red>span {
  background-color: #FE313124;
  color: var(--red);
}

.package-box-red h2 {
  color: var(--red);
}

.package-box-red h2::before {
  color: var(--red);
}

.package-list-red li::before {
  color: var(--red);
}

.package-btn-red a {
  background-color: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.package-btn-red a:hover {
  color: var(--red);
}

.package-list-red::-webkit-scrollbar {
  width: 3px;
}

.package-list-red::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-color: #fff;
}

.package-list-red::-webkit-scrollbar-thumb:vertical {
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-image: linear-gradient(var(--red), var(--red));
}

.package-box-green>span {
  background-color: #35D18E24;
  color: var(--light-green);
}

.package-box-green h2 {
  color: var(--light-green);
}

.package-box-green h2::before {
  color: var(--light-green);
}

.package-list-green li::before {
  color: var(--light-green);
}

.package-btn-green a {
  background-color: var(--light-green);
  color: var(--white);
  border: 2px solid var(--light-green);
}

.package-btn-green a:hover {
  color: var(--light-green);
}

.package-list-green::-webkit-scrollbar {
  width: 3px;
}

.package-list-green::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-color: #fff;
}

.package-list-green::-webkit-scrollbar-thumb:vertical {
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-image: linear-gradient(var(--light-green), var(--light-green));
}

.package-box-yellow>span {
  background-color: #FF980024;
  color: var(--yellow);
}

.package-box-yellow h2 {
  color: var(--yellow);
}

.package-box-yellow h2::before {
  color: var(--yellow);
}

.package-list-yellow li::before {
  color: var(--yellow);
}

.package-btn-yellow a {
  background-color: var(--yellow);
  color: var(--white);
  border: 2px solid var(--yellow);
}

.package-btn-yellow a:hover {
  color: var(--yellow);
}

.package-list-yellow::-webkit-scrollbar {
  width: 3px;
}

.package-list-yellow::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-color: #fff;
}

.package-list-yellow::-webkit-scrollbar-thumb:vertical {
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-image: linear-gradient(var(--yellow), var(--yellow));
}

.package-box-blue>span {
  background-color: #3E72FF24;
  color: var(--blue);
}

.package-box-blue h2 {
  color: var(--blue);
}

.package-box-blue h2::before {
  color: var(--blue);
}

.package-list-blue li::before {
  color: var(--blue);
}

.package-btn-blue a {
  background-color: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}

.package-btn-blue a:hover {
  color: var(--blue);
}

.package-list-blue::-webkit-scrollbar {
  width: 3px;
}

.package-list-blue::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-color: #fff;
}

.package-list-blue::-webkit-scrollbar-thumb:vertical {
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-image: linear-gradient(var(--blue), var(--blue));
}

.package-box-purple>span {
  background-color: transparent;
  color: var(--purple);
}

.package-box-purple h2 {
  color: var(--purple);
}

.package-box-purple h2::before {
  color: var(--purple);
}

.package-list-purple li::before {
  color: var(--purple);
}

.package-btn-purple a {
  background-color: var(--purple);
  color: var(--white);
  border: 2px solid var(--purple);
}

.package-btn-purple a:hover {
  color: var(--blue);
}

.package-list-purple::-webkit-scrollbar {
  width: 3px;
}

.package-list-purple::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-color: #fff;
}

.package-list-purple::-webkit-scrollbar-thumb:vertical {
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-image: linear-gradient(var(--purple), var(--purple));
}

.cta-main-box {
  padding: 100px 0;
  background-color: #0d0f1b;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.cta-img {
  position: absolute;
  transition: all 0.5s;
}

.cta-img1 {
  top: -50px;
  left: 10px;
  z-index: 1;
}

.cta-img2 {
  top: 40px;
  right: 20%;
}

.cta-img3 {
  top: 50%;
  right: 30%;
}

.cta-img4 {
  bottom: -50%;
  right: 60px;
}

.cta-content h2 {
  color: var(--white);
}

.cta-content p {
  color: var(--white);
}

.cta-sec:hover .cta-img1 {
  top: -80px;
}

.cta-main-box:hover .cta-img2 {
  top: 10px;
  right: 22%;
}

.cta-main-box:hover .cta-img3 {
  top: 55%;
  right: 32%;
}

.cta-main-box:hover .cta-img4 {
  bottom: 0%;
}

.testimonial-box>h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--light-green);
  margin-bottom: 20px;
}

.testimonial-box>p {
  font-size: 14px;
  color: var(--light-grey);
  margin-bottom: 30px;
  line-height: 1.5;
}

.testimonial-box-img-and-info {
  display: flex;
  align-items: center;
  margin: 0 -5px;
}

.testimonial-box-img-and-info>div {
  padding: 0 5px;
}

.testimonial-box-img img {
  border-radius: 100%;
}

.testimonial-box-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.testimonial-box-info p {
  font-size: 14px;
  color: var(--light-grey);
}

.testimonial-box {
  padding: 30px 30px;
  background-color: var(--white);
  filter: drop-shadow(1px 1px 4px var(--very-light-grey));
  border-radius: 10px;
}

.testimonial-sec {
  background-position: unset;
}

.about-list {
  display: flex;
  justify-content: space-between;
  margin: 0 -15px;
}

.about-list li {
  padding: 0 15px;
}

.about-box {
  background-color: transparent;
  box-shadow: none;
}

.about-box p {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 14px;
}

.about-box h2 {
  font-size: 16px;
  margin: 20px 0;
  height: auto;
}

.red-featured-box h2 {
  color: var(--red);
}

.purple-featured-box h2 {
  color: var(--purple);
}

.form-list {
  display: flex;
  justify-content: space-between;
  margin: 0 -15px;
  flex-wrap: wrap;
}

.form-list>div {
  padding: 0 15px;
  width: 50%;
}

.contact-form label {
  font-size: 18px;
  color: var(--light-grey);
  display: inline-block;
}

.contact-form input {
  width: 100%;
  padding: 5px 0;
  border: none;
  border-bottom: 2px solid var(--light-grey);
  font-size: 14px;
  color: var(--black);
  margin-bottom: 40px;
}

.contact-form input:focus {
  border-bottom: 2px solid var(--light-green);
  color: var(--light-green);
}

.for-focus:focus-within label {
  color: var(--light-green) !important;
}

.contact-form textarea {
  width: 100%;
  padding: 5px 0;
  border: none;
  border-bottom: 2px solid var(--light-grey);
  font-size: 14px;
  color: var(--black);
  margin-bottom: 40px;
}

.contact-form textarea:focus {
  border-bottom: 2px solid var(--light-green);
  color: var(--light-green);
}

.contact-form-btn input {
  width: auto !important;
}

/*footer*/
.fot-top-main-box {
  padding: 40px 40px;
  background-color: var(--white);
  border-radius: 6px;
  box-shadow: 0px 7px 26px #00000017;
  margin-bottom: 80px;
}

.fot-top-img {
  margin: -30px 0;
  margin-right: -30px;
}

.fot-logo {
  margin-bottom: 30px;
}
.fot-logo img {
  max-width: 80%;
}

.widget p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
}

.fot-social-icons {
  margin-top: 30px;
  justify-content: flex-start;
}

.widget h5 {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.fot-list li {
  padding: 10px 0;
}

.fot-list li a {
  font-size: 16px;
  color: var(--white);
  display: inline-block;
  padding: 3px 0;
}

.fot-list li h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.fot-imgs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -20px;
  margin-top: 60px;
}

.fot-imgs>div {
  padding: 0 20px;
}

.copyright-content p {
  font-size: 16px;
  color: var(--white);
}
.disclaimer-content p {
  font-size: 13px;
  color: var(--light-grey);
  text-align: left;
}
.disclaimer-content span {
  font-size: 13px;
  color: var(--light-grey);
  text-align: left;
  font-weight: bold;
}

.privacy-and-conditions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 -30px;
}

.privacy-and-conditions li {
  padding: 10px 30px;
}

.privacy-and-conditions li a {
  font-size: 16px;
  color: var(--white);
}

.privacy-and-conditions li.first {
  border-right: 1px solid var(--white);
}
.privacy-and-conditions li:nth-child(2) {
  border-right: 1px solid var(--white);
}
.copyright-sec {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 50px;
  border-top: 1px solid #353535;
  
}

.disclaimer-sec {
  padding-top: 20px;
  border-top: 1px solid #353535;
}

footer {
  padding-bottom: 20px;
}

/*inner-pages*/
.history-list {
  display: flex;
  margin: 0 -20px;
  margin-bottom: 40px;
}

.history-list li {
  padding: 0 20px;
}

.history-box {
  padding: 30px 20px;
  border-radius: 10px;
  background-color: #DCFFFD;
}

.history-box h4 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--light-green);
}

.history-box h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--black);
  line-height: 1.3;
}

.history-box p {
  font-size: 14px;
  color: var(--light-grey);
  line-height: 1.5;
}

.ornage {
  background-color: #FFF4E4;
}

.ornage h4 {
  color: var(--yellow);
}

.inner-banner {
  padding: 80px 0 50px;
  position: relative;
  margin-top: 94px;
}

.history-img {
  margin-left: 30px;
}

.faq-list li {
  padding: 15px 0;
}

.faq-box {
  padding: 15px 50px 15px 30px;
  box-shadow: 6px 6px 17px #0000000D;
  border-radius: 6px;
  background-color: var(--white);
}

.faq-box h4 {
  font-size: 16px;
  color: var(--black);
  cursor: pointer;
  position: relative;
}

.faq-box h4::before {
  content: "\f067";
  font-family: "Font Awesome 5";
  color: var(--light-green);
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}

.faq-box p {
  font-size: 14px;
  color: var(--light-grey);
  line-height: 1.5;
  margin-top: 15px;
  display: none;
}

.faq-sec {
  background-color: #ECFFF7;
}

.solution-list {
  display: flex;
  margin: 0 -25px;
  position: relative;
}

.solution-list::before {
  content: "";
  width: 95%;
  height: 6px;
  background-color: #E2F9EF;
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
}

.solution-list li {
  padding: 0 25px;
}

.solution-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.solution-box h6 {
  margin: 30px 0;
  position: relative;
}

.solution-box h6::before {
  content: "";
  width: 100%;
  height: 6px;
  background-color: #E2F9EF;
  position: absolute;
  top: 6px;
  left: 0;
  display: none;
}

.solution-box h6 i {
  color: var(--light-green);
  position: relative;
  font-size: 12px;
  vertical-align: middle;
  margin-left: 6px;
}

.solution-box h6 i::after {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background-color: #E2F9EF;
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: -1;
}

.solution-box p {
  font-size: 16px;
  color: var(--light-grey);
  line-height: 1.5;
}

.new-ideas-list li {
  padding: 30px 0;
  border-bottom: 1px solid #D0D0D0;
}

.new-ideas-list li.last {
  border-bottom: none;
}

.new-ideas-box {
  padding-left: 55px;
}

.new-ideas-box h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
  position: relative;
}

.new-ideas-box h4::before {
  content: "\f00c";
  font-family: "Font Awesome 5";
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: var(--light-green);
  text-align: center;
  color: var(--white);
  font-size: 20px;
  border-radius: 100%;
  position: absolute;
  top: -6px;
  left: -55px;
}

.new-ideas-box p {
  font-size: 16px;
  color: var(--light-grey);
  line-height: 1.5;
}

.new-ideas-list {
  margin-top: -30px;
}

.combo-pkg-title {
  padding: 30px 0;
  background-color: var(--light-green);
  border-radius: 10px 10px 0 0;
}

.combo-pkg-title h2 {
  color: var(--white);
}

.combo-pkg-box {
  background-color: var(--white);
  padding: 40px 60px;
}

.combo-package-list {
  height: auto;
}

.combo-pkg-main-box {
  border-radius: 10px;
  filter: drop-shadow(1px 1px 4px var(--very-light-grey));
}

.combo-package-box {
  padding: 0;
  margin: 0;
  filter: none;
}

.combo-package-box>span {
  padding: 0;
  background-color: transparent;
}

.combo-pkg-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  border-radius: 0 0 10px 10px;
  background-color: #3D4D6D;
}

.combo-pkg-bottom-content p {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.combo-pkg-bottom-content h2 {
  font-size: 44px;
  font-weight: 600;
  color: var(--light-green);
}

.combo-pkg-bottom-img {
  margin-top: -70px;
  z-index: 2;
}

.combo-pkg-bottom-img img {
  width: 75%;
}

.combo-pkg-bottom-content {
  width: 20%;
}

.inner-portfolio-tabbing-list li a {
  border: 2px solid var(--black);
  color: var(--black);
}

.inner-testimonial-box {
  text-align: center;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.reviews-rating i {
  color: #FFC400;
  transition: all 0.4s;
  padding: 0 5px;
}

.inner-testimonial-box .testimonial-box-img {
  margin-bottom: 20px;
}

.inner-testimonial-box p {
  margin-bottom: 20px;
  transition: all 0.4s;
}

.inner-testimonial-box .testimonial-box-info p {
  margin: 0;
}

.inner-testimonial-box {
  transition: all 0.4s;
  background-image: linear-gradient(to right, var(--white), var(--white), var(--light-green), var(--light-blue));
  background-size: 300% 100%;
}

.inner-testimonial-box:hover {
  background-position: 100% 0;
}

.inner-testimonial-box:hover p {
  color: var(--white);
}

.inner-testimonial-box:hover .testimonial-box-img img {
  border: 5px solid var(--white);
}

.testimonial-box-img img {
  border: 5px solid transparent;
}

.inner-testimonial-box:hover .reviews-rating i {
  color: var(--white);
}

.inner-testimonial-box:hover .testimonial-box-info h4 {
  color: var(--white);
}

.testimonial-box-info h4 {
  transition: all 0.4s;
}

.inner-testimonial-box {
  margin: 15px 0;
}

.contact-list li {
  padding: 20px 0;
}

.contact-list-box {
  display: flex;
  padding: 30px 30px;
  border-radius: 6px;
  transition: all 0.4s;
  background-image: linear-gradient(to right, var(--white), var(--white), var(--light-green), var(--light-blue));
  background-size: 300% 100%;
}

.contact-list-box>div {
  padding: 0 10px;
}

.contact-list-box-icon i {
  color: var(--light-green);
  transition: all 0.4s;
}

.contact-list-box-content h6 {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 10px;
  font-weight: 500;
  transition: all 0.4s;
}

.contact-list-box-content a {
  font-size: 15px;
  color: var(--light-grey);
  transition: all 0.4s;
}

.contact-list-box:hover {
  background-position: 100% 0;
}

.contact-list-box:hover .contact-list-box-icon i {
  color: var(--white);
}

.contact-list-box:hover .contact-list-box-content h6 {
  color: var(--white);
}

.contact-list-box:hover .contact-list-box-content a {
  color: var(--white);
}

.inner-contact-form {
  padding: 50px 60px;
  background-color: var(--white);
  border-radius: 6px;
  filter: drop-shadow(1px 1px 4px var(--very-light-grey));
}

.inner-contact-form span {
  color: var(--light-green);
}

.inner-contact-form input {
  border: 1px solid #E7E9F2;
  border-radius: 5px;
  padding: 15px 30px;
}

.inner-contact-form input:focus {
  border: 1px solid var(--light-green);
}

.inner-contact-form input::placeholder {
  font-size: 18px;
  color: #30353B;
}

.inner-contact-form textarea {
  border: 1px solid #E7E9F2;
  border-radius: 5px;
  padding: 15px 30px;
}

.inner-contact-form textarea:focus {
  border: 1px solid var(--light-green);
}

.inner-contact-form textarea::placeholder {
  font-size: 18px;
  color: #30353B;
}

.inner-contact-form select {
  border: 1px solid #E7E9F2;
  border-radius: 5px;
  padding: 15px 30px;
  width: 100%;
  margin-bottom: 40px;
}

.inner-contact-form select:focus {
  border: 1px solid var(--light-green);
}

.step-form-list {
  display: flex;
}

.step-form-list li {
  width: 25%;
}

.step-form-list-box {
  position: relative;
  text-align: center;
}

.step-form-list-box::before {
  content: "";
  width: 100%;
  height: 6px;
  background-color: #EFEFEF;
  position: absolute;
  top: 94px;
  left: 100%;
  transform: translateX(-50%);
}

.step-form-list-box>i {
  color: #B7B7B7;
  font-size: 30px;
  transition: all 0.5s;
}

.step-form-list-box h6 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin: 20px 0;
}

.step-form-list-box span i::after {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background-color: #EFEFEF;
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: -1;
}

.step-form-list-box span i {
  position: relative;
  color: #B7B7B7;
  font-size: 12px;
  transition: all 0.5s;
}

.step-form-list li.active .step-form-list-box::before {
  background-color: #E2F9EF;
}

.step-form-list li.last .step-form-list-box::before {
  display: none;
}

.step-form-list li.active .step-form-list-box span i {
  color: var(--light-green);
}

.step-form-list li.active .step-form-list-box span i::after {
  background-color: #E2F9EF;
}

.step-form-list li.active .step-form-list-box>i {
  color: var(--light-green);
  transform: scale(1.2);
}

.step-forms {
  margin-top: 60px;
}

.step-form-main-box {
  padding: 40px 30px;
  background-color: var(--white);
  /* filter: drop-shadow(1px 1px 4px var(--very-light-grey)); */
  border-radius: 6px;
}

.step-form-content h3 {
    font-size: 30px;
    color: var(--light-green);
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
}

.step-form-content p {margin-bottom: 20px;}

.step-form input {
  padding: 15px 20px;
  border: 1px solid #E7E9F2;
  border-radius: 6px;
  color: var(--bluiesh);
  margin-bottom: 15px;
  width: 100%;
}

.step-form textarea {
  padding: 15px 20px;
  border: 1px solid #E7E9F2;
  border-radius: 6px;
  color: var(--bluiesh);
  margin-bottom: 20px;
  width: 100%;
}

.step-form select {
  padding: 15px 20px;
  border: 1px solid #E7E9F2;
  border-radius: 6px;
  color: var(--bluiesh);
  margin-bottom: 30px;
  width: 100%;
}

.step-form-number {
  display: flex;
}

.step-form-number select {
  width: 140px;
  margin-right: 30px;
}

.show-password {
  position: relative;
}

.show-password span {
  position: absolute;
  top: 22%;
  right: 5px;
  border: none;
  background-color: transparent;
  color: #676766;
  cursor: pointer;
}

.step-form-checkbox {
  display: flex;
}

.step-form-checkbox input {
  width: auto;
  margin-right: 5px;
}

.step-form-checkbox label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--bluiesh);
  margin-top: -4px;
  cursor: pointer;
}

.step-form-btn input {
  width: auto;
}

.step-form p {
  font-size: 14px;
  color: var(--bluiesh);
}

.step-form-content p a {
  color: var(--light-green);
}

.step-form-sec {
  position: relative;
  z-index: -2;
}

.step-form-body {
  position: relative;
  z-index: -3;
}

.step-forms>li {
  display: none;
}

.step-forms>li.active {
  display: block;
  animation: drop-in 1000ms;
}

.step-form-btns {
  display: flex;
  align-items: center;
}

.step-form-btns>div {
  padding: 0 15px;
}

input[type=checkbox]:checked {
  background-color: var(--light-green);
  border: 2p solid var(--light-green);
}

input[type=checkbox] {
  position: relative;
  border: 1px solid #E7E9F2;
  border-radius: 2px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: -2px 5px 0 0;
  outline: 0;
  padding: initial;
  vertical-align: text-top;
  height: 18px;
  width: 29px;
  -webkit-appearance: none;
}

input[type=checkbox]:before {
  content: '\f00c';
  font-family: "Font Awesome 5";
  position: absolute;
  left: 2px;
  top: 8.8px;
  font-size: 13px;
  z-index: 2;
  color: var(--white);
}

.order-summary-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-summary-content span {
  font-size: 32px !important;
  font-weight: 600;
  display: inline-block;
}

.order-summary-content h2 {
  font-size: 40px;
  font-weight: 600;
}

.order-summary-list li {
  padding: 30px 25px;
  margin: 0;
  font-size: 18px;
  color: var(--black);
  border-bottom: 1px solid var(--very-light-grey);
}

.order-summary-list li::before {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: unset;
  font-size: 25px;
}

.order-summary-list {
  height: 650px;
}

.order-summary-content .order-summary-checkbox {
  align-items: center;
}

.order-summary-checkbox input {
  width: 18px;
  margin-top: 10px;
}

.order-summary-payment>div {
  padding: 0 10px;
}

.payment-contact-form {
  padding: 0;
  filter: unset;
}

.payment-contact-form .form-list .form-list {
  padding-left: 0;
}

.payment-contact-form .form-list .form-list>div {
  padding-left: 0;
}

.thankyou-content {
  display: block;
  max-width: 70%;
  margin: 0 auto;
}

.thankyou-main-box {
  padding: 140px 0px;
}

.order-summary-portfolio-list li {
  padding: 10px 0;
  border: none;
}

.order-summary-portfolio-list {
  height: 1140px;
}

.order-summary-list::-webkit-scrollbar-thumb {
  background-image: linear-gradient(transparent, transparent) !important;
}

.order-summary-portfolio-list li::before {
  display: none;
}

.order-summary-portfolio-list li .portfolio-img:hover img {
  transform: unset;
  z-index: 3;
  position: relative;
}

.order-summary-checkbox label {
  width: 98%;
}

@keyframes drop-in {
  0% {
    transform: scale(0.5, 0.5);
  }

  50% {
    transform: scale(1.2, 1.2);
  }

  100% {
    transform: scale(1, 1);
  }
}

.inner-banner-list li {
  padding: 10px 0;
}

.inner-banner-list li span {
  padding-left: 25px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  position: relative;
  display: inline-block;
}

.inner-banner-list li span::before {
  content: "\f00c";
  font-family: "Font Awesome 5";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--light-green);
}

.inner-banner-list {
  margin-bottom: 30px;
}

.inner-banner-big-img {
  margin-right: -150px;
}

.big-banner-img {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 55vw;
}

.big-inner-banner {
  padding: 170px 0;
  margin-top: 126px;
}

img.fancybox-image {
  border-radius: 30px;
}

/* COLOURS */
:root {
  --light-green: #35D18E;
  --green: #2ABA4A;
  --light-blue: #53F5EB;
  --white: #fff;
  --black: #000;
  --very-light-green: #AAF6BA;
  --light-grey: #696E79;
  --very-light-grey: #ECECEC;
  --bluiesh: #282B3C;
  --red: #FE3131;
  --yellow: #FF9800;
  --blue: #3E72FF;
  --purple: #A126FF;
}

.white {
  color: var(--white) !important;
}

.bg-white {
  background-color: var(--white);
}

.light-green {
  color: var(--light-green) !important;
}

/* HEADINGS AND PARAGRAPHS */
.primary-hd {
  font-size: 36px !important;
  font-weight: 600;
  color: var(--black);
  line-height: normal;
}

.primary-hd span {
  color: var(--light-green);
}

.sub-hd {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  display: inline-block;
  position: relative;
  z-index: 999;
}

.sub-hd img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.third-hd {
  font-size: 30px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
}

.primary-para {
  font-size: 18px;
  color: var(--light-grey);
  line-height: 1.5;
}

/* SHADOW */
.light-f-shadow {
  filter: drop-shadow(-6px 10px 10px rgb(0 0 0 / 5%));
}

/* MARGIN AND PADDING */
.p-50 {
  padding: 50px 0;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-50 {
  margin-top: 50px;
}

/* LINE HIEGHTS */
.lh-15 {
  line-height: 1.5;
}

.lh-12 {
  line-height: 1.2;
}

/*botton*/
.btn-a {
  padding: 15px 30px;
  background-color: var(--very-light-green);
  border: 2px solid var(--very-light-green);
  color: var(--green);
  font-size: 14px;
  border-radius: 10px;
  display: inline-block;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
}

.btn-a:hover {
  background-color: var(--light-green);
  color: var(--white);
  border: 2px solid var(--light-green);
}

.btn-b {
  padding: 12px 30px !important;
  background-color: var(--light-green) !important;
  border: 2px solid var(--light-green) !important;
  color: var(--white) !important;
  font-size: 16px !important;
  border-radius: 10px !important;
  display: inline-block !important;
  transition: all 0.5s !important;
  font-weight: 600 !important;
  min-width: 200px !important;
  text-align: center !important;
}

.btn-b i {
  padding-left: 5px;
  vertical-align: middle;
  transition: all 0.2s;
}

.btn-b:hover {
  background-color: transparent !important;
  color: var(--light-green) !important;
}

.btn-b:focus {
  background-color: transparent !important;
  color: var(--light-green) !important;
}

.btn-b:hover i {
  transform: translateX(5px);
}

.btn-c {
  padding: 12px 30px;
  background-color: transparent;
  border: 2px solid var(--light-green);
  color: var(--light-green);
  font-size: 16px;
  border-radius: 10px;
  display: inline-block;
  transition: all 0.5s;
  font-weight: 600;
  min-width: 200px;
  text-align: center;
}

.btn-c:hover {
  background-color: var(--light-green);
  color: var(--white);
}

.btn-c i {
  padding-left: 5px;
  vertical-align: middle;
  transition: all 0.2s;
}

.btn-c:focus {
  background-color: transparent !important;
  color: var(--light-green) !important;
}

.btn-c:hover i {
  transform: translateX(5px);
}

.btn-d {
  padding: 12px 30px;
  background-color: var(--black);
  border: 2px solid var(--black);
  color: var(--white);
  font-size: 18px;
  border-radius: 10px;
  display: inline-block;
  transition: all 0.5s;
  font-weight: 900;
  min-width: 200px;
  text-align: center;
}

.btn-d:hover {
  background-color: transparent;
  color: var(--black);
}

/*media-quries*/
@media (max-width: 1400px) {
  .inner-banner-big-img {
    margin-right: 0;
  }

  .big-inner-banner {
    padding: 80px 0;
  }
}

@media (max-width: 1365px) {
  .who-we-our-img {
    margin-right: 0px;
  }

  .portfolio-tabbing-list li a {
    padding: 20px 20px;
    width: auto;
  }
}

@media (max-width:1200px) {
  .menu-Bar {
    display: block;
    top: 0px;
  }

  .menuWrap {
    position: fixed;
    transform: rotateY(90deg);
    transform-origin: right;
    right: 0;
    top: 0;
    opacity: 1;
    background: var(--bluiesh);
    height: 100%;
    transition: all 1s ease;
    z-index: 3;
    width: 100%;
    border-radius: 0%;
    overflow: auto;
    padding-top: 2rem;
  }

  .menuWrap.open {
    display: flex;
    transform: rotateY(0);
    border-radius: 0;
    opacity: 1;
  }

  .container {
    position: relative;
  }

  .menu {
    display: block;
  }

  .menu>li {
    padding: 15px 0;
    text-align: left;
    position: unset;
    border-bottom: 1px solid #ffffff20;
  }

  .menu>li>a {
    font-size: 18px;
    font-style: normal;
    padding: 0;
    text-transform: uppercase;
    font-weight: 100;
    color: #ffffff;
  }

  .dropdown-menu {
    position: unset;
    width: 100%;
    display: none;
    margin: 15px 0;
    transform: unset;
    transition: unset;
    padding: 0px 0;
    background-color: transparent;
  }

  .inner-menu h4 {
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    display: flex;
    text-transform: uppercase;
  }

  .inner-menu h4 span {
    color: #ffffff;
    padding: 0 5px;
  }

  .inner-menu h4 i {
    padding-left: 10px;
  }

  .inner-menu-list li a {
    color: #000000;
  }

  .inner-menu h4.active {
    color: #000000;
    position: relative;
  }

  .inner-menu h4.active span {
    color: #000000;
  }

  .header-logo {
    text-align: left;
    margin-bottom: 20px;
  }

  .header-logo .logo img {
    width: 12rem;
  }

  .dropdown-menu>div {
    padding: 0;
  }

  .for-dropdown:hover .dropdown-menu {
    transform: unset;
  }

  .inner-menu img {
    display: none;
  }

  .inner-menu-list {
    display: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .btn-a {
    padding: 10px 30px;
  }

  .btn-and-menu {
    margin-right: 50px;
  }

  .for-dropdown a i {
    padding-left: 10px;
  }

  .portfolio-tabbing-list li {
    padding: 10px 5px;
  }

  .portfolio-tabbing-list li a {
    padding: 20px 15px;
    font-size: 15px;
  }

  .cta-img3 {
    right: 32%;
  }

  .cta-main-box:hover .cta-img3 {
    right: 35%;
  }

  .cta-img4 {
    right: 30px;
  }

  .about-list {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-list li {
    width: 33%;
  }

  .package-btn a {
    min-width: auto !important;
    padding: 15px 20px !important;
  }

  .big-banner-img {
    width: 60vw;
  }

  .hide-tablet {
    display: none;
  }

  .show-tablet {
    display: block;
  }
}

@media (max-width: 1100px) {
  .order-summary-portfolio-list {
    height: 1075px;
    margin: 0 !important;
  }

  .order-summary-content span {
    font-size: 25px !important;
  }
}

@media (max-width: 1023px) {
  .menu {
    margin: 0;
  }

  .portfolio-work-list li {
    width: 33%;
  }

  .portfolio-work-list {
    justify-content: center;
  }

  .portfolio-tabbing-list {
    flex-wrap: wrap;
  }

  .portfolio-tabbing-list li a {
    width: 200px;
  }

  .portfolio-tabbing-list li {
    padding: 10px 10px;
  }

  .mb-50 {
    margin-bottom: 25px;
  }

  .our-progress-box {
    margin: 15px 0;
  }

  .package-box {
    margin: 15px 0;
  }

  .cta-main-box {
    padding: 100px 30px;
  }

  .cta-img4 {
    right: -30px;
  }

  .cta-img3 {
    right: 35%;
  }

  .cta-main-box:hover .cta-img3 {
    right: 37%;
    top: 60%;
  }

  .fot-top-img {
    margin: 30px 0 -30px;
    margin-right: 0;
    text-align: right;
    transform: scaleX(-1);
  }

  .fot-top-main-box {
    padding: 40px 40px 0;
  }

  footer {
    padding-top: 40px;
  }

  .widget {
    margin: 15px 0;
  }

  .privacy-and-conditions li {
    padding: 10px 15px;
  }

  .privacy-and-conditions li a {
    font-size: 15px;
  }

  .privacy-and-conditions {
    margin: 0 -15px;
  }

  .who-we-our-sec {
    text-align: center;
  }

  .btns {
    justify-content: center !important;
  }

  .testimonial-sec {
    text-align: center;
  }

  .testimonial-box-img-and-info {
    justify-content: center;
  }

  .contact-content {
    text-align: center;
  }

  .contact-form-btn {
    text-align: center;
  }

  /* INNER PAGES */
  .history-sec {
    text-align: center;
  }

  .history-btns {
    justify-content: center !important;
  }

  .faq-content {
    text-align: center;
  }

  .solution-list {
    flex-wrap: wrap;
  }

  .solution-list li {
    width: 33%;
    padding: 15px 25px;
  }

  .solution-list::before {
    display: none;
  }

  .solution-box h6::before {
    display: block;
  }

  .solution-list {
    justify-content: center;
  }

  .new-ideas-sec {
    text-align: center;
  }

  .new-ideas-sec .container .row {
    flex-direction: column-reverse;
  }

  .new-ideas-box {
    text-align: left;
  }

  .combo-pkg-bottom-content {
    width: 25%;
  }

  .combo-pkg-bottom {
    padding: 0 30px;
  }

  .combo-pkg-box {
    padding: 40px 30px;
  }

  .combo-pkg-bottom {
    flex-wrap: wrap;
  }

  .combo-pkg-bottom-content {
    width: 33%;
  }

  .combo-pkg-bottom-img img {
    width: 100%;
  }

  .inner-banner {
    text-align: center;
  }

  .inner-banner-img {
    margin-top: 30px;
  }

  .step-form-list-box::before {
    top: 91px;
  }

  .step-form-list-box h6 {
    font-size: 14px;
  }

  .step-form-img {
    text-align: center;
  }

  .order-summary-checkbox input {
    margin-top: 0px;
  }

  .order-summary-content h2 {
    font-size: 30px;
  }

  .order-summary-content span {
    font-size: 22px !important;
  }

  .order-summary-list li {
    font-size: 15px;
  }

  .order-summary-content .third-hd {
    font-size: 25px;
  }

  .step-form-main-box {
    padding: 30px 15px;
  }

  .inner-contact-form input {
    padding: 15px 20px;
  }

  .thankyou-main-box {
    padding: 50px 0px !important;
  }
}

@media (max-width: 980px) {}

@media (min-width: 440px) and (max-width: 740px) {}

@media (max-width: 767px) {

  .inner-banner-img{
    display: none;
  }

  .menu .last {
    display: none;
  }

  .inner-menu h4.active {
    color: #ffffff
  }

  .inner-menu h4.active span {
    color: #ffffff
  }

  .inner-menu-list li a {
    color: #ffffff;
    list-style-type: disc;

  }

  .inner-menu-list li {
    list-style: inside;
    list-style-type: disc;
  }

  .inner-menu-list ::marker {
    color: #fff !important;
  }

  .aboutbg {
    /* background-image: none; */
    background: #DCFFFD !important;
  }

  .menu-Bar.open span {
    background: var(--light-green);
  }

  .zntModal-content {
    background: #fff;
    margin: 50% auto !important;
    padding: 0;
    border-radius: 10px;
    width: 80% !important;
    position: relative;
    animation: fadeIn 0.3s ease;
  }

  .step-form-img {
    display: none;
  }

  .menu li.active a {
    color: #ffffff !important;
  }

  .btn-and-menu {
    margin-right: 30px;
  }

  .banner-txt h2 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .banner-txt h4 {
    font-size: 22px;
    letter-spacing: 10px;
    margin-left: 10px;
  }

  .menu-hd-text {
    top: unset;
    bottom: 0%;
  }

  /* .menu>li>a {
		font-size: 25px;
	} */
  /* .inner-menu h4 {
		font-size: 18px;
	} */
  .inner-menu-list li a {
    font-size: 15px;
  }

  .banner-content span img {
    width: 50%;
  }

  .contact-info {
    display: block;
  }

  .contact-info li {
    padding: 3px 20px;
  }

  .header-top {
    padding: 10px 0;
  }

  .banner-content p {
    margin: 20px 0;
    font-size: 15px;
  }

  .btns {
    flex-wrap: wrap;
    margin: 0;
  }

  .btns>div {
    padding: 5px 5px;
  }

  .btn-b {
    padding: 8px 0px !important;
    min-width: 170px !important;
    font-size: 13px !important;
  }

  .btn-c {
    padding: 8px 0px !important;
    min-width: 170px !important;
    font-size: 13px;
  }

  .banner-img {
    margin-bottom: -50px;
    margin-right: -15px;
  }

  .mainBanner {
    padding-top: 50px;
  }

  .primary-hd {
    font-size: 25px !important;
  }

  .sub-hd {
    font-size: 18px;
  }

  .featured-box h2 {
    height: auto;
    margin: 20px 0;
  }

  .featured-box p {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .p-50 {
    padding: 30px 0;
  }

  .who-we-our-sec {
    text-align: center;
  }

  ul.who-we-our-list {
    text-align: left;
  }

  .portfolio-tabbing-list li {
    padding: 5px 5px;
  }

  .portfolio-tabbing-list li a {
    width: auto;
    padding: 10px 15px;
    font-size: 14px;
  }

  .portfolio-work-list li {
    width: 50%;
    padding: 5px 5px;
  }

  .cta-main-box {
    text-align: center;
  }

  .cta-btn {
    text-align: center;
    margin-top: 30px;
  }

  .cta-img1 {
    top: -35px;
  }

  .mb-30 {
    margin-bottom: 15px;
  }

  .testimonial-sec {
    text-align: center;
  }

  .primary-para {
    font-size: 15px;
  }

  .testimonial-box-img-and-info {
    justify-content: center;
  }

  .about-list li {
    width: 100%;
  }

  .about-box p {
    margin: 0;
    padding: 0;
  }

  .contact-content {
    text-align: center;
  }

  .form-list>div {
    width: 100%;
  }

  .fot-top-main-box {
    padding: 30px 30px 0;
    text-align: center;
  }

  .fot-top-btn a {
    min-width: auto !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
  }

  .fot-imgs {
    display: block;
    margin-top: 10px;
  }

  .fot-imgs>div {
    padding: 5px 20px;
    margin-top: 10px;
  }

  .copyright-content p {
    font-size: 14px;
    text-align: center;
  }

  .privacy-and-conditions {
    justify-content: center;
    margin-top: 5px;
  }

  .banner-content {
    margin-bottom: 15px;
  }

  .cta-img img {
    width: 70%;
  }

  .who-we-our-content p span {
    padding: 15px 15px;
    font-size: 14px;
  }

  .who-we-our-list li {
    font-size: 14px;
    margin: 5px 0;
  }

  .btn-a {
    padding: 8px 20px;
    margin-left: -20px;
  }

  .form-list>div {
    padding: 0;
  }

  /* INNER PAGES */
  .inner-banner-list li {
    padding: 5px 0;
  }

  .inner-banner-list li span {
    font-size: 14px;
    padding-left: 20px;
  }

  .inner-banner-content {
    margin: 0;
  }

  .inner-banner {
    padding: 50px 0;
  }

  .banner-content span {
    font-size: 25px;
  }

  .history-list {
    display: block;
  }

  .history-list li {
    padding: 10px 20px;
  }

  .faq-box h4 {
    line-height: 1.3;
  }

  .solution-list li {
    width: 100%;
  }

  .new-ideas-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .new-ideas-box h4::before {
    width: 25px;
    height: 25px;
    line-height: 28px;
    font-size: 15px;
    top: -2px;
  }

  .new-ideas-box p {
    font-size: 14px;
  }

  .combo-pkg-box {
    padding: 20px 20px;
  }

  .combo-pkg-title h2 {
    font-size: 25px;
  }

  .combo-pkg-title {
    padding: 20px 0;
  }

  .combo-pkg-bottom-content h2 {
    font-size: 30px;
  }

  .combo-pkg-bottom-content {
    width: 50%;
  }

  .combo-pkg-bottom-img2 img {
    margin-top: 10px;
    transform: scaleX(-1);
  }

  .combo-pkg-bottom {
    padding: 0 20px 20px;
  }

  .inner-contact-form {
    padding: 30px 20px;
  }

  .inner-contact-form input {
    padding: 10px 10px;
  }

  .inner-contact-form textarea {
    padding: 10px 10px;
  }

  .inner-contact-form select {
    padding: 10px 10px;
  }

  .inner-contact-form input::placeholder {
    font-size: 15px;
  }

  .inner-contact-form textarea::placeholder {
    font-size: 15px;
  }

  .step-form-list-box>i {
    font-size: 24px;
    display: block;
    margin-bottom: 15px;
  }

  .step-form-list-box h6 {
    display: none;
  }

  .step-form-list-box span i {
    font-size: 10px;
  }

  .step-form-list-box span i::after {
    width: 20px;
    height: 20px;
    top: -5px;
    left: -5px;
  }

  .step-form-list-box::before {
    top: 46.5px;
    height: 4px;
  }

  .step-form-main-box {
    padding: 15px 15px;
  }

  .step-form input {
    padding: 8px 10px;
    font-size: 14px;
  }

  .step-form select {
    padding: 8px 10px;
    font-size: 14px;
  }

  .show-password span {
    top: 17%;
  }

  input[type=checkbox]:before {
    left: 3px;
  }

  input[type=checkbox] {
    width: auto;
  }

  .order-summary-portfolio-list {
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .order-summary-portfolio-list li {
    padding: 10px 5px !important;
    width: 33.33% !important;
  }

  .step-forms {
    margin-top: 20px;
  }

  .order-summary-content span {
    font-size: 16px !important;
  }

  .order-summary-content span img {
    display: none;
  }

  .order-summary-content h2 {
    font-size: 20px;
  }

  .order-summary-list li::before {
    right: 0;
    top: 9px;
    transform: unset;
    font-size: 15px;
    left: unset;
  }

  .order-summary-main-box {
    margin-top: 20px;
  }

  .order-summary-list {
    height: 300px;
  }

  .order-summary-content .third-hd {
    font-size: 20px;
  }

  .step-form-content h3 {
    margin-bottom: 20px;
  }

  .copyright-sec {
    padding: 15px 10px !important;
  }

  .mb-60 {
    margin-bottom: 30px;
  }

  .order-summary-payment {
    display: block;
  }

  .order-summary-payment .order-summary-checkbox input[type=checkbox] {
    width: 20px;
  }

  .order-summary-list li {
    padding: 10px 25px 10px 15px;
    font-size: 14px;
  }

  .payment-contact-form {
    padding: 0;
  }

  .form-list {
    display: block;
    margin: 0;
  }

  .payment-contact-form .form-list>div {
    padding: 0;
  }

  .contact-form input {
    margin-bottom: 15px;
  }

  .thankyou-content p {
    font-size: 14px;
  }

  .thankyou-content {
    max-width: 90%;
  }

  .sub-hd img {
    width: 50%;
  }

  .testimonial-box {
    margin: 15px 0;
  }

  .btn-and-menu {
    display: block;
  }
}

.btn-and-menu {
  display: none;
}

.zntModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.zntModal-content {
  background: #fff;
  margin: 9% auto 0;
  padding: 0;
  border-radius: 10px;
  width: 50%;
  /* max-width: 70%; */
  position: relative;
  animation: fadeIn 0.3s ease;
}

.zntModal-close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
}

.zntModal-close:hover {
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.aboutbg {
  background-image: url('../images/banner/bg3.jpg');
  background-size: cover;
}

.selected-plan-info {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #35d18e;
}

.selected-plan-info p {
  margin: 5px 0;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.selected-plan-info strong {
  color: #35d18e;
  font-size: 14px;
  font-weight: 600;
}


 .terms-policy-list ul {
    text-align: left;
    padding-left: 2rem;
  }
  .terms-policy-list ul li {
    font-size: 18px;
    color: var(--light-grey);
    line-height: 1.5;
    list-style: circle;
    margin-bottom: 20px;
}
 .terms-policy-list strong{
  font-weight: bold;
 }