/*Main Css */
:root {
  --primary: #30a9d7;
  --bg-light: #ffdecc;
  --bg-gray: #f4f9ff;
  --black: #000000;
  --white: #ffffff;
  --dark: #333333;

  --font-heading: "Bookerly Display", sans-serif;
  --font-accent: "Lato", sans-serif;
  --font-body: "Bookerly", sans-serif;

  --icon: "Font Awesome 6 Pro", sans-serif;
}
::selection {
  background: var(--primary);
  color: #fff;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: var(--primary);
}

/* Tabbing CSS */

[class^="box-"] {
  display: none;
}

[class^="box-"].showfirst {
  display: block;
}

body {
  font-family: var(--font-body);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1;
  color: #000000;
}
body.inner-header {
  padding-top: 80px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  font-weight: normal;
}

*:hover,
*:focus,
* {
  outline: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

a,
input[type="submit"] {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

span {
  display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
  font-family: var(--font-body);
  font-weight: 400;
}

::-webkit-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

::-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

::-moz-placeholder {
  opacity: 1;
}

/* Padding Classes */
.pad-zero {
  padding: 0px;
}
.pad-l-zero {
  padding-left: 0px;
}
.pad-r-zero {
  padding-right: 0px;
}
.ovr-hiddn {
  overflow: hidden;
}
.overlay:after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.overlay {
  display: none;
}
.overlay.active {
  display: block;
}

/* Heading Classes */
.hding-1 h1 {
  font-size: 75px;
  font-weight: 700;
  line-height: 75px;
}
.highlighted {
  color: #ff5e14;
}

/* Custom Slick Css */
.slick-list {
  margin: 0 -15px;
}
.slick-slide {
  margin: 0 15px;
}
.slick-dots {
  text-align: left;
  margin-top: 15px;
}
.slick-dots li {
  margin: 0 15px 0 0px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  padding: 0px;
  border: none;
}
.slick-dots li button:before,
.slick-dots li button:before {
  color: #fff;
  opacity: 1;
  font-size: 20px;
}
.slick-dots li button {
  height: 18px;
  width: 18px;
  transform: rotate(45deg);
  border-radius: 0;
  padding: 0px;
  background: #abd8e9;
  border: none;
  cursor: pointer;
  font-size: 0px;
  padding: 0px;
  transition: all 0.4s ease-In-out;
  box-sizing: border-box;
}
.slick-dots li.slick-active button {
  background: var(--primary);
}

/*header css*/
header {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  position: fixed;
  background: transparent;
  z-index: 999;
  left: 0;
  right: 0;
  top: 0;
}
header.sticky {
  background: white;
  box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%),
    0px 2px 4px -1px rgb(0 0 0 / 6%);
  top: 0;
}
.mainBanner.inner header {
  background: white;
  box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%),
    0px 2px 4px -1px rgb(0 0 0 / 6%);
  top: 0;
}
.menuWrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.logo {
  display: inline-block;
}
.logo img {
  display: block;
}

/* Hamburger Menu */
.menu-Bar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0px;
  margin: auto;
  z-index: 22;
  display: none;
}
.menu-Bar span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--primary);
  position: absolute;
  transition: 0.6s all;
  border-radius: 100px;
}
.menu-Bar span:nth-child(1) {
  top: 0;
}
.menu-Bar span:nth-child(2) {
  top: 8px;
  transform-origin: left;
}
.menu-Bar span:nth-child(3) {
  top: 16px;
}
.menu-Bar.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  transform-origin: right-center;
}
.menu-Bar.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.menu-Bar.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
  transform-origin: right-center;
}

/* Menu Css */
.menu {
  font-size: 0px;
  display: inline-block;
  vertical-align: middle;
}
.menu > li {
  display: inline-block;
  vertical-align: middle;
  padding: 16px 0 16px 35px;
}
.menu > li > a {
  display: block;
  font-size: 16px;
  color: #000;
  font-family: var(--font-accent);
  font-weight: 700;
}
.header-btn {
  background: var(--primary);
  color: #fff !important;
  padding: 15px 20px;
}
.header-btn-bordered {
  border: 2px solid var(--primary);
  color: var(--primary) !important;
  padding: 14px 20px;
}
.header-btn:hover,
.header-btn-bordered:hover {
  transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
  color: var(--primary);
}

@keyframes scale-display {
  0% {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes scale-display--reversed {
  0% {
    display: inline-flex;
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  99% {
    display: inline-flex;
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  100% {
    display: none;
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}

/* Menu Dropdown CSS */
.has-child {
  position: relative;
  z-index: 1;
}
.dropdown {
  position: absolute;
  background: white;
  /* padding: 1rem; */
  border-radius: 0px 0px 10px 10px;
  top: 100%;
  width: 600px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
  display: none;
}
.dropdown ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@keyframes slide {
  0% {
    height: 0;
  }
  100% {
    height: auto;
  }
}
.dropdown .dropdown {
  left: 100%;
  top: 0;
}
.dropdown ul li a {
  font-size: 16px;
  line-height: 30px;
  color: #333;
  padding: 10px 20px;
}
.dropdown li {
  /* border: 1px solid #ddd; */
  border: none;
}
.dropdown li:not(:last-child) {
  border: 1px solid #ddd;
}
.chev.rotate {
  transform: rotate(180deg);
}
.chev {
  transition: 0.5s ease;
}
/* Dropdown CSS*/

@keyframes btotreverse {
  0% {
    top: 75px;
    opacity: 1;
  }
  100% {
    top: 115px;
    opacity: 0;
  }
}

@keyframes btot {
  0% {
    top: 115px;
    opacity: 0;
  }
  100% {
    top: 40px;
    opacity: 1;
  }
}

/* Main Banner CSS */
.mainBanner {
  background: url("../images/hero-imgs/home-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.mainBanner.inner {
  background-size: cover !important;
  background-position: center !important;
  margin-top: 80px;
}
.banner-content {
  padding: 150px 0 100px;
}
.mainBanner.inner .banner-content {
  padding: 100px 0;
}
.banner-heading {
  color: #292a2e;
  font-family: var(--font-heading);
  font-size: 49px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.banner-text {
  color: #292a2e;
  font-family: var(--font-accent);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.1;
}
.banner-form-wrapper {
  background: rgba(0, 0, 0, 0.52);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.banner-form-wrapper {
  background: rgba(0, 0, 0, 0.52);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.banner-form-wrapper h1 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
}
.banner-form-wrapper h1 small {
  font-size: 27px;
}
.banner-form-wrapper h1 span {
  color: var(--primary);
}
.banner-form-wrapper input,
.banner-form-wrapper textarea {
  width: 100%;
  padding: 14px 26px;
  border-radius: 5px;
  border: 1px solid #8c8c8c;
  background: #fff;
}
.banner-form-wrapper input::placeholder,
.banner-form-wrapper textarea::placeholder {
  color: #666;
  font-family: var(--font-accent);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
}
.banner-form-wrapper form div {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.banner-form-wrapper .form-btn {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.9;
  padding: 20px 48px;
  border-radius: 5px;
  background: var(--primary);
  box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease-in-out;
}
.banner-form-wrapper .form-chat-btn {
  display: flex;
  flex-direction: column;
  color: #ffc83b;
  font-family: var(--font-body);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.5s ease-in-out;
}
.banner-form-wrapper .form-btn:hover,
.banner-form-wrapper .form-chat-btn:hover {
  transform: scale(1.03);
}
.banner-img {
  margin-bottom: -11rem;
}
.hero-review {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.hero-review .trustpilot {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-review .trustpilot div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-review .trustpilot div p {
  color: #292a2e;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

/* Sec Headings */
.sec-heading {
  color: #282825;
  text-align: center;
  font-family: var(--font-body);
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
}
.sec-heading.font-head {
  font-family: var(--font-heading);
  font-weight: 700;
}
.sec-para {
  color: #282825;
  text-align: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 2;
}
.sec-subheading {
  color: #282825;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.sec-bottomtext {
  text-align: center;
  color: #282825;
  font-family: var(--font-body);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.sec-bottomtext .square {
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background: var(--primary);
}
.sec-bottomtext.light {
  font-size: 24px;
  color: #4b4b4b;
}

/* Sec Headings */

/* sections */
section {
  padding: 4rem 0;
  position: relative;
}
.padding-2 {
  padding: 1rem 0;
}
/* sections */

/* Theme Buttons */
.btn-wrap {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin: 1rem 0;
}
.theme-btn {
  padding: 15px 30px;
  background: var(--primary);
  border-radius: 5px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.5s ease;
}
.theme-btn.white {
  background: #fff;
  color: var(--primary);
}
.theme-btn.dark {
  background: #282825;
}
.theme-btn-bordered {
  padding: 15px 30px;
  border: 1px solid #000;
  border-radius: 5px;
  color: #000;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.5s ease;
}
.theme-btn:hover,
.theme-btn-bordered:hover {
  transform: scale(1.03);
}
/* Theme Buttons */

/* categories-sec */
.categories-sec {
  padding: 8rem 0 4rem;
}
.categories-container {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
}
.category-card {
  flex: 1;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding: 30px;
  /* max-width: 240px; */
  max-width: 100%;
}
.category-card div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-card div p {
  text-align: center;
}
.category-card img {
  height: 100%;
  width: 100%;
  max-width: 95px;
  max-height: 95px;
  object-fit: contain;
}
.category-card span {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  padding-right: 10px;
  border-right: 1.5px solid #999;
}

/* services-sec */
.services-sec {
  background: url("../images/service-sec-bg.webp");
  background-size: cover;
  background-position: center;
}
.service-card {
  background: #282825;
  border: 2px solid #282825;
  padding: 45px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 23px;
  transition: all 0.5s ease-in-out;
}
.service-card h2 {
  color: #fbfbf9;
  text-align: center;
  font-family: var(--font-body);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.service-card p {
  color: #fbfbf9;
  text-align: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.3;
}
.service-card:hover {
  border: 2px solid #fff;
  background: var(--primary);
}

.service-cta {
  position: relative;
  z-index: 1;
}
.service-cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background: url("../images/service-cta-bg.webp");
  background-size: cover;
  width: 70vw;
  height: 100%;
}
.service-cta h2 {
  color: #282825;
  font-family: var(--font-body);
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 25px;
}
.service-cta p {
  color: #282825;
  font-family: var(--font-body);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 30px;
}
.service-cta ul {
  columns: 300px;
  margin-bottom: 30px;
}
.service-cta li {
  color: #282825;
  font-family: var(--font-body);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  position: relative;
  padding-left: 38px;
}
.service-cta li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--primary);
}

/* process-sec */
.process-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 20px;
}
.process-card .number {
  width: 90px;
  height: 90px;
  transform: rotate(45deg);
  background: #282825;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 10px 20px;
  transition: all 0.4s ease-in-out;
}
.process-card .number span {
  transform: rotate(-45deg);
  color: #fff;
  font-family: var(--font-body);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.6;
}
.process-card h2 {
  color: #282825;
  font-family: var(--font-body);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.process-card p {
  color: #4c4c4c;
  font-family: var(--font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.8px;
}
.process-card:hover .number,
.process-card.active .number {
  background: var(--primary);
}
.process-card:hover h2,
.process-card.active h2 {
  color: var(--primary);
}

/* cta-sec */
.cta-sec {
  background: url("../images/cta-sec-bg.webp");
  background-size: cover;
  background-position: top center;
  padding: 4rem 0 18rem;
}

/* industrial-sec */
.industrial-sec ul {
  /* display: grid; */
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  /* gap: 50px; */
  columns: 400px;
  margin: 75px 0;
}
.industrial-sec li {
  color: #282825;
  font-family: var(--font-body);
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  position: relative;
  padding-left: 38px;
  margin-bottom: 50px;
}
.industrial-sec li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  background: var(--primary);
}

/* testimonial-sec */
.testimonial-content {
  display: flex;
  flex-direction: column;
}
.testimonial-content q {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.25;
  margin-top: 30px;
}
.testimonial-content .desc {
  color: #282825;
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.testimonial-content .square {
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background: var(--primary);
  margin: 20px 0;
}
.testimonial-content .client {
  color: #282825;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.testimonial-content .client-book {
  margin-top: 26px;
  display: flex;
  gap: 1rem;
}
.testimonial-content .client-book img {
  filter: drop-shadow(-10px 10px 4px #d3d3d3);
}
.testimonial-content .client-book-details {
  display: flex;
  flex-direction: column;
}
.testimonial-content .client-book-details h2 {
  color: #282825;
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 6px;
}
.testimonial-content .client-book-details p {
  color: #282825;
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.testimonial-content .client-book-details th {
  border: 1px solid #e2e2e2;
  border-left: none;
  border-right: none;
  padding: 5px 15px;
  color: #282825;
  font-family: var(--font-heading);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.testimonial-content .client-book-details th:not(:last-child) {
  border-right: 1px solid #e2e2e2;
}

/* review and benefits wrapper */
.review-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.review-wrapper .stars i {
  color: var(--primary);
}
.review-wrapper p {
  color: #777e88;
  font-family: var(--font-body);
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: center;
}
.review-wrapper b {
  color: #000;
  font-family: var(--font-body);
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.benefits-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 45px;
}
.benefits-wrapper div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.benefits-wrapper div h4 {
  color: #000;
  font-family: var(--font-body);
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.16;
}

/* benefits */
.benefits-heading {
  color: #282825;
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
.benefits-para {
  margin-bottom: 40px;
  color: #282825;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
}

/* review-sec */
.review-para {
  display: flex;
  gap: 8px;
}
.review-para span {
  color: #868686;
  font-size: 36px;
  font-family: var(--font-body);
  font-weight: 900;
}
.review-para p {
  color: #9c9c9c;
  font-family: var(--font-accent);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  max-width: 70%;
}

/* illustration-types-card */
.illustration-types-card {
  border-radius: 15px;
  border: 1.5px solid #ccc;
  background: #fff;
  padding: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  height: 100%;
}
.illustration-types-card span {
  width: 165px;
  height: 165px;
  display: grid;
  place-items: center;
  background: #4b4b4b;
  border-radius: 100%;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.illustration-types-card span.active {
  background: var(--primary);
}
.illustration-types-card h2 {
  color: #000;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.48px;
}
.illustration-types-card p {
  color: #282825;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
}

/* contact-form */
.contact-form {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 24px 80px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 60px 35px;
}
.contact-form h2 {
  color: #000;
  font-family: var(--font-heading);
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 0.7;
  margin-bottom: 20px;
}
.contact-form p {
  color: #000;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.contact-form label {
  color: #000;
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 34.973px;
  display: block;
  margin: 50px 0 20px;
}
.contact-form select,
.contact-form input,
.contact-form textarea {
  border: 1px solid #dfdfdf;
  background: #fff;
  padding: 20px 30px;
  width: 100%;
}
.contact-form select::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.contact-form button {
  padding: 15px 30px;
  background: var(--primary);
  border-radius: 40px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.5s ease;
  border: none;
  margin-top: 40px;
}

.contact-info {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 4px 76.8px 0px rgba(0, 0, 0, 0.15);
  padding: 50px 30px;
  margin-bottom: 60px;
}
.contact-info .social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-info .social i {
  color: #fff;
  background: var(--primary);
  min-height: 40px;
  min-width: 40px;
  display: grid;
  place-items: center;
  border-radius: 100%;
}
.contact-info .social h4 {
  color: #000;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.contact-info h2 {
  color: #000;
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin: 30px 0;
}
.contact-info p {
  color: #999;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

/* portfolio */
.portfolio-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.portfolio-tabs li {
  padding: 0 20px;
  border-bottom: 1px solid #646363;
}
.portfolio-tabs li.active {
  border-bottom: 1px solid var(--primary);
}
.portfolio-tabs a {
  color: #646363;
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 312.5% */
}
.portfolio-tabs li.active a {
  color: var(--primary);
}
.portfolio-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* our team */
.our-team {
  position: relative;
}
.our-team img {
  width: 100%;
}
.our-team .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 13px 7.3px 0px rgba(0, 0, 0, 0.1);
  width: calc(100% - 40px);
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 40px;
}
.our-team .info h2 {
  color: #282825;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
.our-team .info p {
  color: #282825;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.28px;
}

/* Accordian */
.accordion-list {
  position: relative;
}
.accordion-list li {
  padding: 30px 35px 30px 30px;
  cursor: pointer;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #d1d5db;
  background: white;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  margin-bottom: 1.5rem;
}
ul.accordion-list li span {
  display: flex;
  position: relative;
}
.accordion-list li h3 {
  font-size: 24px;
  color: #666666;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
ul.accordion-list li h3:after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 0;
  right: 0;
  color: #9ca3af;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 600;
  top: 0;
}
.accordion-list li.active h4::after {
  color: #9ca3af;
  content: "\f077";
}
ul.accordion-list li.active h3:after {
  content: "\f077";
}
.answer p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #555555;
}
/* Accordian */

/* popup */
.overlay {
  background-color: rgb(197 197 197 / 32%);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999999;
  display: none;
  backdrop-filter: blur(10px);
}
.popupmain {
  position: fixed;
  top: 50%;
  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; */
}
.mmpopup {
  text-align: center;
  background: #f8f8f8;
  padding: 25px 25px 25px;
  border-radius: 10px;
}
.mmpopup .formpop {
  width: 100%;
  margin: 24px auto;
}
.mmpopup .fld-input {
  height: 60px;
  width: 100%;
  /* margin-bottom: 9px; */
  margin-bottom: 1rem;
  border: 1px solid #d1d5db;
  overflow: hidden;
}
.mmpopup .centercont h3 {
  font-size: 38px;
  color: #141515;
  margin-bottom: 10px;
}
.mmpopup .centercont h4 {
  font-size: 20px;
  color: #566060;
  margin-bottom: 15px;
}
.mmpopup .centercont h4 span {
  color: #86cb92;
}
.mmpopup .centercont h4 span span {
  display: none;
}
.mmpopup .centercont p {
  color: #333;
  font-size: 14px;
  margin-bottom: 120px;
  line-height: 20px;
}
.mmpopup .centercont.dynamic p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.4;
}
.closeico {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 100%;
  border: 5px solid #fff;
}
.closeico i {
  color: #fff;
}
.closeico1 {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 9999;
}
.closeico1 i {
  background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
    no-repeat;
  width: 16px;
  height: 16px;
  display: block;
}
.mmpopup .centercont p {
  margin: 20px 0 40px;
  color: #000;
  font-family: var(--font-heading);
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4px;
}
.mmpopup .centercont ul {
  margin-bottom: 30px;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding: 27px 49px 27px 24px;
  background: #fff;
  border-radius: 10px;
  margin-right: 20px;
}
.mmpopup .centercont ul li {
  display: block;
  font-size: 15px;
  color: #000;
  padding-bottom: 12px;
}
.mmpopup .centercont ul li.last {
  padding-bottom: 0;
}
.mmpopup .centercont ul li i {
  color: #ff533e;
  border: 1px solid;
  border-radius: 100px;
  margin-right: 8px;
  font-size: 10px;
  padding: 3px;
}
.mmpopup .centercont h4 {
  font-size: 30px;
  color: #000;
}
.mmpopup .centercont h3 {
  color: #000;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
.mmpopup .centercont h3 span {
  color: var(--primary);
}
.mmpopup .centercont h4 span {
  font-weight: 700;
  color: #000;
  font-size: 50px;
}
.fld-input {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(218 217 217);
  border-radius: 5px;
  background-color: #fff;
  width: 354px;
  height: 66px;
  margin-bottom: 20px;
}
.fld-input input {
  width: 100%;
  height: 100%;
  padding: 15px 26px;
  font-size: 16px;
  letter-spacing: 0.2px;
  border-radius: 5px;
  border: 1px solid #eee;
  background: #ddd;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none;
  font-family: var(--font-accent);
}
.fld-input input::placeholder {
  color: #666;
  font-weight: 400;
}
.fld-btn button {
  padding: 15px 30px;
  background: var(--primary);
  border-radius: 5px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.5s ease;
  width: 100%;
  border: none;
}
.fld-btn button:hover {
  transform: scale(1.03);
}
/* popup */

/* Country Code */
.newcountrycode {
  position: relative;
  display: flex;
  align-items: center;
  /* padding-left: 40px; */
  border: 1px solid #ddd;
  height: 45px;
  border-radius: 5px;
}
.newcountrycode select {
  width: 56px;
  border: 0;
  padding: 0px 19px;
  font-size: 16px;
  position: relative;
  z-index: 1;
  background: transparent;
}
.newcountrycode .countrycode {
  width: 70px;
  border: 0;
  background: #f9f9f9;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  margin: 0 10px;
}
.newcountrycode .phone-field {
  width: 100%;
}
.newcountrycode input {
  border: 0;
}
/* Country Code */

/* footer */
footer {
  background: var(--primary);
  padding: 1.5rem 0;
}
.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright p,
.copyright a {
  color: white;
}
ul.f-link {
  display: flex;
  align-items: center;
  gap: 20px;
}
ul.f-link li:first-child {
  border-right: 1px solid #fff;
  padding-right: 20px;
}
/* footer */

/* Portfolio  */
.mt-200 {
  margin-top: 200px;
}
.port-slide .det {
  padding: 10px;
  background: white;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.port-slide .det span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--font-heading);
}
.port-slide .det a {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #31a8fe;
  /* text-decoration: underline; */
  border-bottom: 1px solid;
}
.portfolio-slider {
  position: relative;
  /* display: flex; */
  /* align-items: center; */
}
.portfolio-slider .port-slide img {
  width: 100%;
}
a.arrow-btn {
  position: absolute;
  top: calc(50% - 54px);
  width: 60px;
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1;
  font-size: 24px;
  color: #333;
  box-shadow: 0px 1.32566px 14px rgba(0, 0, 0, 0.08);
}
.portfolio-slider a.arrow-btn.right.slick-arrow {
  right: 8%;
}
.portfolio-slider a.arrow-btn.left.slick-arrow {
  left: 8%;
}
/* Portfolio  */

/* Testimonials */
.testimonials {
  background: #002c4f;
  position: relative;
  /* color: white; */
  padding-bottom: 100px;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  background: url("../images/testi.webp") no-repeat;
  width: 300px;
  height: 100%;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.rating span {
  color: #34a585;
  font-weight: 500;
  font-size: 50px;
  line-height: 30px;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}
.rating p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: white;
}
.rating {
  margin-bottom: 50px;
}
.testi-card {
  background: white;
  padding: 30px;
  box-shadow: 4px 4px 64px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.testi-card::before {
  content: "";
  background: url("../images/qoute.webp") no-repeat;

  width: 65px;
  height: 40px;
  position: absolute;
  background-size: contain;
  z-index: -1;
}
.testi-card p {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #555555;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}
.testi-card .client {
  gap: 10px;
  display: flex;
  align-items: center;
}
.testi-card .client .det .name {
  color: #34a585;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  font-family: var(--font-heading);
}
.testi-card .client .det .des {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #c9c9c9;
}
.testi-card .client .det {
  display: flex;
  flex-direction: column;
}
.overlap-slider {
  position: absolute;
  width: 180%;
}
.arrows {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.testimonials .slick-slide {
  margin: 20px 15px;
}
/* Testimonials */

/* Testimonials 2 */
.testi-slider-2 .testi-slide {
  background: #f1edff;
  box-shadow: -3px 3px 0px #0b0b0b;
  border-radius: 8px;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 1.5rem;
}
.testi-slider-2 .testi-slide p {
  color: #302357;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}
.testi-slider-2 .testi-slide .bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
.testi-slider-2 .testi-slide .client {
  margin-top: 1rem;
}
.testi-slider-2 .testi-slide .client .det .name {
  font-weight: 500;
  font-size: 26px;
  line-height: 39px;
  color: #0b0b0b;
}
.testi-slider-2 .testi-slide .client .det .des {
  font-size: 16px;
  line-height: 22px;
  color: #333333;
}
.testi-slider-2 .testi-slide .bottom .stars {
  background: #407bff;
  border-radius: 42px;
  padding: 10px 20px;
  color: #00f000;
  display: flex;
  font-size: 12px;
  gap: 8px;
}
/* Testimonials 2 */

.design-card-list .slick-slide,
.design-card-list-2 .slick-slide {
  margin: 0 10px;
}
.design-card-list-2 {
  direction: rtl;
}
.design-card-list,
.design-card-list-2 {
  padding-bottom: 2rem;
}
.design-card-list li,
.design-card-list-2 li {
  position: relative;
  display: flex !important;
  justify-content: center;
}
.design-card-list li .indusrtry-name,
.design-card-list-2 li .indusrtry-name {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px 50px;
  position: absolute;
  width: auto;
  height: 66px;
  bottom: 20px;
  z-index: 1;
  background: rgb(0 0 0 / 50%);
  border-radius: 25px;
  opacity: 0;
  transition: 0.5s ease;
}
.design-card-list li:hover .indusrtry-name,
.design-card-list-2 li:hover .indusrtry-name {
  opacity: 1;
}
.indusrtry-name p {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
}
.rated {
  margin-bottom: 1rem;
}
.color-dark {
  color: #212121 !important;
}
.color-2 {
  color: #2d2d2d !important;
}
.mt-responsive {
  margin-top: 20px;
}
.rated p {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  padding: 1rem 0;
}

/* Portfolio */
ul.overview-nav.d2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
ul.overview-nav.d2 a {
  padding: 15px 18px;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid #000000;
  border-radius: 5px;
  color: #333333;
}
ul.overview-nav.d2 li.active a {
  background: #3b38eb;
  color: white;
  border-color: #3b38eb !important;
}
.port-card {
  margin-bottom: 1.5rem;
}
.port-card img {
  width: 100%;
}
/* Portfolio */

/* -------------------------counter CSS------------------------  */
ul#counter {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.counter-wrapper .counter {
  display: flex;
  align-items: center;
  gap: 20px;
}
.counter-wrapper .counter span.count {
  font-weight: 700;
  font-size: 45px;
  color: #000;
}
ul#counter li .counter > div {
  font-weight: 700;
  font-size: 64px;
  color: #000;
  margin-bottom: 0rem;
  flex-shrink: 0;
  font-family: "Inria Serif";
}
ul#counter li {
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  padding: 0rem;
  text-align: center;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul#counter li .counter span.text {
  font-size: 15.3px;
  font-family: "Euclid Square";
  font-weight: normal;
}
/* -------------------------counter CSS------------------------  */

/* -------------------------contact us-------------------------- */
.input-field1 label {
  padding-left: 10px;
  color: #292929;
  font-weight: 500;
  padding-bottom: 8px;
}
.input-field1 input,
.input-field1 textarea {
  cursor: pointer;
  height: 58px;
  width: 100%;
  font-size: 16px;
  color: #222222;
  padding: 15px 14px;
  outline: none !important;
  text-transform: capitalize;
  margin-bottom: 30px;
  /* box-shadow: 0 16px 24px 0 rgba(189, 196, 205, 0.13); */
  border-radius: 20px;
  border: solid 1px #00000021;
  background-color: #fff;
}
.input-field1 textarea {
  height: 58px;
}
.send {
  text-align: left;
  padding-top: 35px;
}
.send input[type="submit"] {
  height: 70px;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.4s ease;
  text-transform: capitalize;
  width: 100%;
  border: 0;
  padding: 12px 50px;
  border-radius: 50px;
  box-shadow: 0 1.7px 3.1px 0 rgba(11, 93, 81, 0.01);
  background-color: #0b5d51;
}
.details h5 {
  font-size: 18px;
  padding-bottom: 20px;
  color: #202529;
}
.details a {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
.details {
  margin-bottom: 40px;
}
.social-icons li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 18px;
  height: 40px;
  width: 40px;
  background: #008576;
  border-radius: 50px;
  text-align: center;
}
.social-icons li a {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
}
.details a i,
.details p i {
  color: #008576;
  padding-right: 12px;
}
/* -------------------------contact us-------------------------- */

/* ---------------------------footer------------------------------- */
footer {
  background: var(--primary);
  padding: 62px 0;
}
.footer-btn {
  border-radius: 5px;
  background: #292a2e;
  padding: 10px 40px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  text-transform: uppercase;
}
.footer-assist {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}
.footer-assist div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
}
.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #fff;
  padding: 20px 0;
}
.copyright p,
.copyright a {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
ul.f-link {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-sec p {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.092px;
  padding-top: 18px;
}
.footer-sec .socials {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-sec .socials a {
  width: 20px;
  height: 20px;
  border: 1px solid #0d52ff;
  border-radius: 100%;
  display: grid;
  place-items: center;
}
.footer-sec .socials a i {
  color: #fff;
  font-size: 10px;
}
.footer-sec .socials {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-hdng h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.138px;
  margin-bottom: 20px;
}
.f-menu li a {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.23px;
}
.footer-hdng p {
  color: #fff;
  line-height: normal;
  padding-bottom: 16px;
}
.hours {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hours p {
  color: #fff;
  font-size: 16px;
}
.f-menu li a i {
  color: var(--primary);
  margin-right: 10px;
}
.footer-hdng {
  /* padding-top: 100px; */
}
.f-menu li {
  line-height: 2;
}
.copyright-sec {
  background: var(--primary);
}
.f-link li {
  width: 40.8px;
  height: 40.8px;
  background: var(--primary);
  border-radius: 50px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ----------------------------------footer---------------------- */

/* 404 */
.error-text {
font-size: 60px;
    line-height: 68px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.error-heading {
    font-weight: 500;
    font-size: 22px;
    line-height: 44px;
    color: #fff;
}
.error-image {
  margin-top: 100px;
}
.thankyou-text {
  font-size: 20px;
  initial-letter: 30;
  line-height: 34px;
  margin-top: 20px;
}
/* 404 */

/* terms */
.terms .roman {
  list-style: upper-roman;
}
.terms ul {
  line-height: 25px;
  font-size: 16px;
  color: #333;
}
.terms ul.list-ul {
  list-style: disc;
  padding-left: 24px;
}
.terms ul li {
  margin-bottom: 1rem;
}
.terms ul li::marker {
  font-size: 22px;
  font-weight: 500;
}
.terms h4 {
  font-size: 24px;
  margin: 1rem 0;
}
.terms p {
  margin-bottom: 2rem;
}
/* terms */

/* packages */
.pckg .scroll {
  height: 300px;
  overflow-y: auto;
}

.pkg-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pckg {
  border-radius: 10px;
  height: 100%;
  border: 1px solid #dadef2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pckg::before {
    content: "LIMITED SLOTS";
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    clip-path: polygon(100% 0, 95% 50%, 100% 100%, 0% 100%, 5% 50%, 0% 0%);
    animation: scalePulse 2s ease-in-out infinite;
}

@keyframes scalePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.pckg h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
}

.pckg-list {
  height: 200px;
  overflow-y: auto;
}

.pckg .btn-wrap {
  margin-top: 1rem;
}
.pckg .btn-wrap a {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  border-radius: 5px;
}

.pckg .btn-wrap .btn-norm {
  color: var(--primary);
  transition: 0.5s ease;
}

.pckg .btn-wrap .btn-norm:hover {
  transform: scale(1.03);
}

.pckg .btn-wrap .light {
  background: #f5f6fa;
  border-color: #f5f6fa;
}

.pckg .upper .title {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 5px;
  font-family: "Open Sans", sans-serif;
}

.pckg .upper .starting-in {
  font-size: 14px;
  line-height: 20px;
  color: #6b7280;
}

.pckg .upper p {
  line-height: 28px;
  color: #505673;
  /* min-height: 40px; */
}

.pckg .upper .price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 1.5rem;
}

.pckg .upper .price .amount {
  font-weight: 700;
  font-size: 44px;
  line-height: 50px;
  color: #000000;
}

.pckg .upper .price .cut-price {
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  text-decoration: line-through;
}

.pckg .upper .price .uspto {
  font-weight: 500;
  font-size: 16px;
  background-color: var(--primary);
  padding: 5px 10px;
  border-radius: 100px;
}

.pckg .bottom .includes {
  letter-spacing: 0.025em;
  text-transform: uppercase;

  color: #111827;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
}

.pckg .bottom ul li {
    line-height: 1.1;
    color: #505673;
    position: relative;
    display: flex;
    font-size: 14px;
}

.pckg .bottom ul li span {
  font-weight: 600;
  font-size: 18px;
}

.pckg .bottom ul li:not(.last) {
  margin-bottom: 10px;
}

.pckg .bottom ul li::before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  font-weight: 800;
  color: var(--primary);
  margin-right: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5ffff;
  border-radius: 100%;
  flex-shrink: 0;
}

.pckg .bottom ul li:has(span)::before {
  content: none;
}

/* packages */

@media (max-width: 1200px) {
  header {
    padding: 1rem 0;
  }
  .menu.btns {
    margin: 1.5rem 0;
    width: 100%;
    padding: 0 1rem;
  }
  .header-btn,
  .header-btn-bordered {
    justify-content: center !important;
  }
  .dropdown {
    position: unset;
    box-shadow: none;
    width: 100%;
    background: #f0f8ff80;
  }
  .dropdown ul li a {
    padding: 0;
    line-height: 1rem;
    /* padding: 0; */
    padding: 1rem;
    font-weight: 500;
  }
  .form-head .form-heading {
    white-space: normal;
    font-size: 20px;
  }
  .form-head {
    padding: 1rem;
  }
  .btn-normal {
    padding: 10px 8px;
  }
  .sub-menu a {
    color: #333 !important;
    margin-bottom: 0 !important;
  }
  .sub-menu {
    left: auto !important;
    padding-top: 16px;
    top: 24px;
  }
  a.header-btn {
    margin-bottom: 0.5rem !important;
  }
  .menuWrap .menu:first-child {
    padding-left: 0;
    width: 100%;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .menu-Bar {
    display: block;
    top: 0px;
  }
  .menuWrap.open {
    display: flex;
    left: 0px;
    justify-content: space-between;
  }
  .menuWrap {
    position: fixed;
    left: -210%;
    /* right: 0; */
    top: 0;
    bottom: 0;
    margin: auto;
    background: #ffffff;
    height: 100dvh;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-flow: column;
    transition: all 0.4s ease;
    z-index: 3;
    width: 70%;
    overflow-y: auto;
    box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%),
      0px 2px 4px -1px rgb(0 0 0 / 6%);
  }
  ul.menu > li {
    display: flex;
    justify-content: center;
    gap: 5px;
    border-bottom: 1px solid #ddd;
    padding: 0;
    flex-direction: column;
  }
  ul.menu > li > a {
    margin-bottom: 10px;
    padding: 0;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    padding-right: 0px;
    margin-right: 0px;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
  }
  header .container {
    position: relative;
  }
  header .main-header ul.menu > li > a {
    color: #333;
    width: 100%;
    text-align: left;
    margin: 0;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
  }
  header .main-header ul.menu > li > a:before {
    display: none;
  }
}

@media (max-width: 992px) {
  .banner-content {
    padding: 120px 0 80px;
  }
  .banner-heading {
    font-size: 45px;
  }
  .banner-text {
    line-height: 1.5;
  }
  .sec-heading {
    font-size: 40px;
    margin-bottom: 12px;
  }
  .sec-para {
    line-height: 1.5;
  }
  .sec-subheading {
    font-size: 30px;
  }
  .service-cta h2 {
    font-size: 40px;
    margin-bottom: 18px;
  }
  .service-cta p {
    font-size: 18px;
  }
  .service-cta li {
    font-size: 22px;
  }
  .service-cta li::before {
    width: 16px;
    height: 16px;
  }
  .process-card {
    gap: 20px;
  }
  .process-card .number span {
    font-size: 40px;
  }
  .process-card .number {
    width: 80px;
    height: 80px;
  }
  .process-card h2 {
    font-size: 24px;
  }
  .process-card p {
    font-size: 18px;
  }
  .sec-bottomtext {
    font-size: 22px;
  }
  .industrial-sec ul {
    columns: 300px;
  }
  .industrial-sec li {
    font-size: 20px;
    margin-bottom: 10px;
    padding-left: 28px;
  }
  .industrial-sec li::before {
    width: 14px;
    height: 14px;
  }
  .testimonial-content q {
    font-size: 100px;
    margin-top: 24px;
  }
  .testimonial-content .desc {
    font-size: 22px;
  }
  .footer-hdng:has(.invisible) {
    display: none;
  }
  .mainBanner.inner {
    background: url("../images/hero-imgs/home-bg.webp") !important;
  }
  .benefits-wrapper div h4 {
    font-size: 22px;
  }
  .illustration-types-card {
    gap: 20px;
    padding: 30px;
  }
  .illustration-types-card span {
    width: 125px;
    height: 125px;
    font-size: 60px;
  }
  .illustration-types-card p {
    line-height: 1.5;
  }
}

@media only screen and (min-width: 375px) and (max-width: 736px) {
  .banner-heading {
    font-size: 40px;
  }
  .categories-sec,
  section {
    padding: 2rem 0;
  }
  .sec-heading,
  .service-cta h2 {
    font-size: 30px;
  }
  .sec-subheading {
    font-size: 26px;
  }
  .process-card {
    align-items: center;
    gap: 30px;
  }
  .process-card h2,
  .process-card p {
    text-align: center;
  }
  .benefits-heading,
  .benefits-para {
    text-align: center;
  }
  .process-card .number {
    margin-left: 0;
  }
  .sec-bottomtext .square {
    display: block;
    margin: 1rem auto;
  }
  .cta-sec {
    padding: 2rem 0 10rem;
  }
  .industrial-sec ul {
    margin: 50px 0;
  }
  .contact-form h2 {
    font-size: 36px;
    line-height: 1;
  }
  .contact-form label {
    font-size: 20px;
    margin: 40px 0 20px;
  }
  .contact-form select,
  .contact-form input,
  .contact-form textarea {
    padding: 20px;
  }
  .review-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .review-para {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .review-para p {
    text-align: center;
  }
  .review-para span {
    line-height: 0.75;
    margin-top: 6px;
  }
  .categories-container {
    gap: 20px;
  }
  .sec-heading.text-start {
    text-align: center !important;
  }
  .sec-para.text-start {
    text-align: center !important;
  }
  .btn-wrap {
    justify-content: center;
  }
  .closeico {
      top: 0;
      right: 0;
  }
}
