/*Main Css */
:root {
  --primary: #fa4223;
  --secondary: #073d30;
  --bg-light: #fdecc;
  --bg-gray: #f4f9ff;
  --black: #000000;
  --white: #ffffff;
  --dark: #333333;
  --shadder1: #dbebff;
  --shadder2: #fff0cf;
  --shadder3: #d8ffec;
  --shadder4: #ebebff;
  --shadder5: #ffe3e0;
  --font-heading: "Poppins", sans-serif;
  --font-accent: "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --border: 1px solid #c0b5f033;
  --font-regular: 16px;
  --font-small: 14px;
  --font-extra-small: 12px;
  --font-large: 20px;
  --icon: "Font Awesome 6 Pro", sans-serif;
}

.container {
  max-width: 1240px;
}

::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;
}

/* Accordian */

.accordion-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.accordion-list li {
  padding: 10px 10px;
  width: 100%;
}

.accordion-box {
  padding: 20px;
  cursor: pointer;
  width: 100%;
  background-color: #eaeae4;
  border-radius: 4px;
}

.accordion-list > li ul {
  line-height: 28px;
  list-style: decimal;
  padding-left: 1rem;
  margin-top: 1rem;
  color: #555;
}

ul.accordion-list li span {
  display: flex;
  position: relative;
}

.accordion-list li h3 {
  color: #000;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  letter-spacing: -0.6px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 1.5rem;
}

ul.accordion-list li h3:after {
  content: "\f067";
  font-family: var(--icon);
  color: black;
  transition: all 0.3s ease-in-out;
  font-size: 19px;
  font-weight: 600;
  margin-top: 6px;
}

.accordion-list li.active h4::after {
  color: #9ca3af;
  content: "\f077";
}

ul.accordion-list li.active h3:after {
  content: "\f068";
}

.answer p {
  margin-top: 10px;
  line-height: 28px;
  color: #000;
}

/* Accordian */
html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1;
  color: #000000;
  background-color: #f6f5ef;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  font-weight: normal;
  font-family: var(--font-heading);
}

*:hover,
*:focus,
* {
  outline: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

a,
input[type="submit"] {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

span {
  display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
  font-family: var(--font-body);
  font-weight: 400;
}

::-webkit-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

::-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

::-moz-placeholder {
  opacity: 1;
}

/* Padding Classes */

.pad-zero {
  padding: 0px;
}

.pad-l-zero {
  padding-left: 0px;
}

.pad-r-zero {
  padding-right: 0px;
}

.ovr-hiddn {
  overflow: hidden;
}

.overlay:after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.overlay {
  display: none;
}

.overlay.active {
  display: block;
}

/* Heading Classes */

.hding-1 h1 {
  font-size: 75px;
  font-weight: 700;
  line-height: 75px;
}

.highlighted {
  color: #ff5e14;
}

/* Custom Slick Css */

.slick-list {
  margin: 0 -15px;
}

.slick-slide {
  margin: 0 15px;
}

.slick-dots {
  padding: 50px 0 0;
  text-align: center;
}

.slick-dots li {
  margin: 0 10px 0 0px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  padding: 0px;
  border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
  color: #fff;
  opacity: 1;
  font-size: 20px;
}

.slick-dots li button {
  height: 8px;
  width: 30px;
  border-radius: 100px;
  padding: 0px;
  background: #dddddd;
  border: none;
  cursor: pointer;
  font-size: 0px;
  padding: 0px;
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  box-sizing: border-box;
}

.slick-dots li.slick-active button {
  background: #b6b9fc;
  width: 55px;
}

/*header css*/

header {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  z-index: 99;
  left: 0;
  right: 0;
  top: 0;
  position: relative;
}

.chkOut header {
}

.menuWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-block;
}

.logo img {
  display: block;
  max-width: 180px;
}

/* 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;
  /* width: 100%; */
}

.menu > li {
  display: inline-block;
  vertical-align: middle;
  padding: 16px 0 16px 26px;
}

.menu > li > a {
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  color: black;
}

.header-btn {
  border-radius: 5px;
  padding: 15px 25px;
  background: transparent;
  color: black !important;
  transition: 0.5s ease;
  border: 1px solid;
}

.header-btn:hover {
  transform: scale(1.03);
}

.menu > li :hover > a,
.menu > li .active > a {
  color: #000;
}

@keyframes scale-display {
  0% {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes scale-display--reversed {
  0% {
    display: inline-flex;
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
  }

  99% {
    display: inline-flex;
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  100% {
    display: none;
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}

/* Menu Dropdown CSS */

.has-child {
  position: relative;
  z-index: 1;
}

.dropdown {
  position: absolute;
  background: white;
  /* padding: 1rem; */
  border-radius: 0px 0px 10px 10px;
  top: 100%;
  width: 300px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
  display: none;
}

.dropdown .dropdown {
  left: 100%;
  top: 0;
}

.dropdown ul li a {
  font-size: 16px;
  line-height: 30px;
  color: #333;
  padding: 10px 20px;
}

.dropdown li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.chev.rotate {
  transform: rotate(180deg);
}

.chev {
  transition: 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 {
}

.mainBanner.empty {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.mainBanner .btn-wrap {
  margin-bottom: 0;
}

.banner-content {
  padding: 65px 0 50px;
  position: relative;
}

h1.banner-heading {
  color: black;
  font-size: 84px;
  font-weight: 600;
  line-height: 96px;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  max-width: 100%;
}

h1.banner-heading.lg {
  width: 100%;
  font-weight: 600;
  font-size: 18;
  font-size: 180px;
  line-height: 180px;
  margin-bottom: 2rem;
}

span.sub-heading {
  font-size: 18px;
  line-height: 22px;
  color: var(--primary);
  font-weight: 500;
}

p.banner-text {
  /* margin: 0 0 0 24rem; */
  color: black;
  font-size: 20px;
  line-height: 24px;
  /* max-width: 540px; */
  font-weight: 500;
  line-height: 40px;
}

.inner-header .banner-content {
  padding: 50px 0 0;
}

p.banner-text.lg {
  font-size: 50px;
  line-height: normal;
  font-weight: 600;
  margin-top: 20px;
}

.banner-img1 {
  position: absolute;
  top: 20%;
  right: 0;
}

.banner-img2 {
  position: absolute;
  bottom: 0;
  left: 0;
}

img.element2 {
  position: absolute;
  margin-left: -80px;
  bottom: -40px;
}

.banner-img-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-img-list li {
  width: 20%;
  display: flex;
  justify-content: center;
  margin: 0 -15px;
}

.banner-img {
  box-shadow: rgba(255, 255, 255, 0.5) 0px 2px 8px 0px;
  max-width: 250px;
  display: inline-block;
}
.banner-img-list li:nth-child(1) {
  transform: translateY(3rem) rotate(-10deg);
}

.banner-img-list li:nth-child(2) {
  transform: translateY(1rem) rotate(-6deg);
  z-index: 1;
}

.banner-img-list li:nth-child(3) {
  transform: translateY(0);
  z-index: 2;
}

.banner-img-list li:nth-child(4) {
  transform: translateY(1rem) rotate(6deg);
  z-index: 1;
}

.banner-img-list li:nth-child(5) {
  transform: translateY(3rem) rotate(10deg);
}

/* PORTFOLIO SECTION */
.left-bottom-element {
  position: absolute;
  bottom: 0;
  display: none;
  left: 0;
}

/* 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;
}

.mmpopup .formpop {
  width: 100%;
  margin: 24px auto;
}

.mmpopup .fld-input {
  height: 50px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid #d1d5db;
  overflow: hidden;
}

.mmpopup .centercont h4 {
  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;
}

.closeico {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 9999;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 100px;
  color: #333;
}

.mmpopup .centercont p {
  margin-bottom: 10px;
  line-height: 23px;
  color: #565656;
  max-width: 390px;
  margin: auto;
  display: block;

  position: relative;
}

.mmpopup .centercont ul {
  margin-bottom: 30px;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding: 27px 49px 27px 24px;
  background: #fff;
  border-radius: 10px;
  margin-right: 20px;
}

.mmpopup .centercont ul li {
  display: block;
  font-size: 15px;
  color: #000;
  padding-bottom: 12px;
}

.mmpopup .centercont ul li.last {
  padding-bottom: 0;
}

.mmpopup .centercont ul li i {
  color: #ff533e;
  border: 1px solid;
  border-radius: 100px;
  margin-right: 8px;
  font-size: 10px;
  padding: 3px;
}

.mmpopup .centercont h4 {
  font-size: 35px;
  text-align: left;
}

.mmpopup .centercont h3 {
  font-size: 50px;
  font-weight: 400;
  color: #0085ff;
  margin-bottom: 10px;
}

.mmpopup .centercont h3 span {
  display: block;
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  color: #3a3d40;
  text-align: left;
}

.mmpopup .centercont h4 span {
  font-weight: 700;
  color: #000;
  font-size: 60px;
}

.fld-input {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(218 217 217);
  border-radius: 5px;
  background-color: #fff;
  width: 354px;
  height: 66px;
  margin-bottom: 20px;
}

.fld-input input {
  width: 100%;
  height: 100%;
  padding: 0 24px;
  font-size: 16px;
  letter-spacing: 0.2px;
  background: #eeeeee;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none;
  font-family: "Inter";
}

.fld-input input::placeholder {
  color: #737373;
  font-weight: 400;
}

.fld-btn button {
  border-radius: 5px;
  background-color: var(--primary);
  width: 100%;
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  cursor: poRoboto;
  transition: 0.5s;
  font-family: "Inter";
  height: 59px;
  cursor: pointer;
  border: 0;
}

.fld-btn button i {
  padding-left: 12px;
}

.fld-btn button:hover {
  transform: scale(1.03);
}

.mmpopup .formpop form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: start;
}

.mmpopup .formpop form input,
.mmpopup .formpop form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
}

.mmpopup .formpop form label {
  text-align: left;
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 14px;
  line-height: normal;
}

.mmpopup .formpop form label input {
  width: 20px;
  height: 20px;
}

.formpop form button {
  padding: 15px 30px;
  background: var(--primary);
  color: white;
  font-weight: 700;
  transition: 0.5s ease;
  border: 0;
}

.popupmain p {
  font-size: 14px;
  line-height: normal;
  text-align: left;
}

.domain-status-head {
  background: #db4343;
  color: white;
  padding: 10px;
  margin-top: 2rem;
  width: fit-content;
  border-radius: 101px;
}

.domain-status-name {
  color: red;
  text-align: left;
  margin-top: 1rem;
  line-height: 26px;
  font-weight: 500;
}

.domain-status-name span {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.domain-status.ava-domain .domain-status-head {
  background: #00a92c;
}

.domain-status.ava-domain .domain-status-name {
  color: #00a92c;
}

/* popup */

/* packages */

.pkg-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 1rem; */
  margin-top: 1.5rem;
  gap: 1rem;
}

.pkg-list.g2 {
  grid-template-columns: repeat(2, 1fr);
}

.pckg {
  height: 100%;
  background: transparent;
  overflow: hidden;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 2px solid #1b1b1b;
  border-radius: 5px;
}

.pckg:hover {
  position: relative;
  z-index: 2;
  transition: 0.2s;
  box-shadow: 25px 26px 54px 0px rgba(0, 0, 0, 0.07);
}

.lastPckg {
}

.pkg-list.web {
  grid-template-columns: repeat(2, 1fr);
}

.pckg-line {
  border-top: 2px solid #1b1b1b;
}

.pckg .btn-wrap a {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  text-align: center;
  width: 100%;
  background: var(--primary);
}

.pckg .btn-wrap .btn-norm {
  color: var(--primary);
  transition: 0.5s ease;
}

.pckg .btn-wrap .btn-norm:hover {
  transform: scale(1.03);
}

.pckg .upper .title {
  color: var(--Black, #222);
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 115.385% */
  letter-spacing: -0.78px;
}

.pckg .upper .starting-in {
  font-size: 14px;
  line-height: 20px;
  color: #6b7280;
}

.pckg .upper p {
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  margin-bottom: 1.5rem;
  min-height: 40px;
}

.pckg .upper .price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pckg .upper .price .amount {
  color: var(--Black, #222);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -3.84px;
  font-family: var(--font-heading);
}

.pckg .upper .price .uspto {
  color: var(--Black, #222);
  font-family: Poppins;
  font-size: 24px;
  font-weight: 600;
  line-height: 58px;
  margin-top: 15px;
  margin-left: -10px;
  letter-spacing: -1.92px;
}

.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 {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #67687a;
  position: relative;
  display: flex;
}

.pckg .scroll p {
  font-size: 18px;
  margin: 1.5rem 0;
  font-weight: 600;
}

.pckg .scroll {
  overflow-y: auto;
  max-height: 288px;
  padding-right: 10px;
}

.pckg .bottom ul li:not(.last) {
  margin-bottom: 1rem;
}

.pckg .bottom ul li::before {
  font-family: var(--icon);
  content: "\f164";
  font-weight: 400;
  color: #073d30;
  margin-right: 12px;
  padding-left: 1px;
}

.pckg .upper {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 0;
  overflow: hidden;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

/* packages */

/* Sec Headings */
.sec-heading {
  margin-bottom: 2rem;
}

.sec-heading.center {
  text-align: center;
}

.sec-heading h2 {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 600;
  line-height: normal;
  /* 112.5% */
  position: relative;
  letter-spacing: -1.5px;
}

.sec-heading.white h2 {
  color: white;
}

.sec-heading p {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #555;
  margin: 1rem 0;
}

.sec-heading .sub-heading {
  font-weight: 600;
  font-size: 18px;
  line-height: 29px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.sec-heading h3 {
  color: #0c121f;
  font-size: 38px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.96px;
}

/* Sec Headings */

/* sections */
section {
  padding: 4rem 0;
  position: relative;
}

.padding-2 {
  padding: 1rem 0;
}

/* sections */

/* Theme Buttons */
.btn-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 1rem 0;
}

.btn-wrap .theme-btn {
  border-radius: 5px;
  padding: 15px 40px;
  background: var(--primary);
  color: white;
  font-weight: 500;
  transition: 0.5s ease;
}

.btn-wrap .theme-btn.bordered {
  background: transparent;
  color: var(--black);
}

.btn-wrap .theme-btn:hover {
  transform: scale(1.03);
}

.cntct-crd {
  background: #1b1b1b;
  box-shadow: 25px 26px 54px 0px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  align-items: center;
  gap: 2rem;
  border-radius: 5px;
}

.cntct-crd img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.cntct-crd h3 {
  line-height: 22px;
  /* margin: auto; */
  font-size: 32px;
  text-align: center;
  color: white;
}

.cntct-crd a {
  font-size: 20px;
  color: white;
  text-align: center;
  line-height: 1.2;
}

section.contact-sec {
  padding: 0 0 4rem 0;
}

.same-hieght {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Theme Buttons */

/* footer */

footer {
  background: #1b1b1b;
  padding: 4rem 0 0;
}

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  margin-top: 3.5rem;
  background: #000;
}

footer p {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.579px;
  /* 171.429% */
}

footer .f-logo {
  margin-bottom: 1.5rem;
}

a.f-logo img {
  max-width: 180px;
}

footer .f-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer .f-links a {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 150% */
}

footer .hdng {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  /* 127.263% */
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}

footer .contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer .contact-links * {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.579px;
  /* 150% */
}

/* footer */

strong {
  font-weight: bolder;
}

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 {
}

.port-card * {
  width: 100%;
}

/* Portfolio */
/* 404 */

.error-text {
  font-size: 96px;
  line-height: 68px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.error-heading {
  font-weight: 500;
  font-size: 52px;
  line-height: 68px;
}

.error-image {
  margin-top: 100px;
}

.thankyou-text {
  font-size: 20px;
  initial-letter: 30;
  line-height: 34px;
  margin-top: 20px;
}

/* 404 */
/* terms */

.terms ul ul {
  list-style: disc;
  padding-left: 1rem;
}

.terms ul {
  /* padding-left: 40px; */
  line-height: 25px;
  font-size: 16px;
  color: #333;
}

.terms ul li {
  margin-bottom: 1rem;
}

.terms ul li::marker {
  font-size: 22px;
  font-weight: 500;
}

.terms h4 {
  line-height: 2.3rem;
  font-size: 30px;
  margin: 1rem 0;
  font-weight: 600;
  color: black;
}

.terms p {
  margin-bottom: 2rem;
}

/* terms */

.work-1 .sec-heading {
  width: 60%;
}

.work-1 {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.work-1 img {
  display: flex;
}

.work-2 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 90%;
}

ul.overview-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.overview-nav li a {
  /* 150% */

  color: #333;

  font-family: Inter;

  font-size: 16px;

  font-style: normal;

  font-weight: 600;

  line-height: 24px;
  /* 150% */

  /* color: black; */

  display: inline-flex;

  padding: 9px 25px;

  justify-content: center;

  align-items: center;

  border-radius: 5px;

  border: 1px solid #073d30;

  /* shadow/sm */

  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.overview-nav li.active a {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: white;
}

.pckg .btn-wrap {
  margin-top: 1rem;
  margin-bottom: 0;
}

form.contact-form.pckg-form {
  background: var(--primary);
  border-radius: 30px;
}

form.contact-form.pckg-form input,
form.contact-form.pckg-form textarea,
form.contact-form.pckg-form select {
  border: 1px solid #fff;
  background: transparent;
  color: white;
  width: 100%;
  padding: 10px;
}

form.contact-form.pckg-form select option {
  color: #333;
}

form.contact-form.pckg-form h3 {
  font-size: 26px;
  margin-bottom: 1rem;
  font-weight: 600;
}

form.contact-form.pckg-form p {
  margin-bottom: 1.5rem;
  line-height: 24px;
}

form.contact-form.pckg-form ::placeholder {
  color: white;
}

form.contact-form.pckg-form button {
  width: 100%;
  padding: 14px;
  border: 0;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  background: #ffc727;
}

.pckg-img img {
  border: 1px solid #888;
}

.pckg-img,
.pckg-img img {
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

form.contact-form {
  background: #04144c;
  padding: 40px;
  color: white;
}

form.contact-form label {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

form.contact-form label {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: start;
}

form.contact-form label input {
  flex-basis: 10px;
  background: transparent;
}

.cta-wrap {
  background-size: cover;
  padding: 0px 100px;
  position: relative;
  z-index: 0;
}

.cta-sec {
  background: url("../images/cta-img-sec.png");
  background-size: cover;
  /*background-repeat: repeat;*/
  background-position: center;
  position: relative;
  z-index: 1;
}
.cta-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000c2;
  z-index: 0;
}

/* 
.cta-wrap::after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: #0D0724;
    transform: rotate(-3.308deg);
    border-radius: 8px;
    z-index: -2;
} */

.cta-wrap .sec-heading p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  color: white;
}

.cta-wrap .sec-heading h2 {
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  /* 123.2% */
  color: white;
}

.cta-wrap .contact {
  display: flex;
  justify-content: start;
  color: #000;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 205.333% */
  gap: 10px;
  flex-direction: column;
  align-items: center;
}

.cta-wrap .contact a {
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.sec-heading.white h2,
.sec-heading.white p {
  color: white;
}

.cta-wrap .contact p {
  color: #000;
}

.cta-wrap .contact a {
  color: #e9fe31;
  font-size: 35px;
}

.cta-wrap .contact a span {
  font-size: 18px;
  display: inline-block;
  margin-bottom: 20px;
}

.cta-wrap img {
  display: flex;
  width: 100%;
}

.procedure-list {
  border: 1px solid #1b1b1b;
  padding: 1rem 2rem;
}

.procedure-list li {
  padding: 15px 0;
  border-bottom: 1px solid #1b1b1b;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.procedure-list li h3 {
  width: 30%;
  color: #1b1b1b;
  font-size: 26px;
  font-weight: 600;
  line-height: 34px;
}

.procedure-list li p {
  color: #1b1b1b;
  font-size: 16px;
  line-height: 27px;
  width: 70%;
}

.procedure-list li:last-child {
  border: none;
}

.choose-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.choose-card h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.8px;
  text-transform: capitalize;
}

.choose-card p {
  color: #222a41;
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
  /* 152.941% */
}

.icon-card {
  border-radius: 11.201px;
  border: 1.68px solid #333;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.5rem;
  /* border-radius: 6px; */
  padding: 55px 46px;
  height: 100%;
  text-align: center;
  align-items: center;
}

.email-icon .icon-card img {
  margin: auto;
}

.email-icon .icon-card h3 {
  text-align: center;
}

.icon-card h3 {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  /*height: 100%;*/
}

.icon-card p {
  color: #222a41;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 152.941% */
}

.number-card {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid var(--secondary);
  background: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.number-card span {
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
}

.number-card span span {
  color: #f86061;
}

.number-card p {
  text-align: center;
  color: #000;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}

ul.icon-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

ul.icon-list li h3 {
  color: #0b0b0b;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
}

ul.icon-list li p {
  margin-bottom: 2rem;
  color: #0f192d;
  line-height: 26px;
  /* 162.5% */
}

ul.icon-list li .content {
  align-items: center;
  display: flex;
  margin-bottom: 1rem;
  flex-direction: row;
  gap: 10px;
  position: relative;
}

ul.icon-list li {
  /* display: flex; */
  gap: 10px;
  align-items: start;
}

ul.icon-list img {
  flex-shrink: 0;
}

.seo-card {
  border: 1px solid #000;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 1rem;
  height: 100%;
}
.seo-card img {
  width: 395px;
  height: 265px;
  object-fit: cover;
  border: 2px solid black;
}

.seo-card-content {
  border: 2px solid black;
  margin-top: -1px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.seo-card.border {
  border: none !important;
}

.seo-card h3 {
  color: BLACK;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.6px;
}

.seo-card p {
  color: black;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin: 1rem 0 0rem 0;
}

.seo-card h3 span {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 25px;
  /* 156.25% */
  padding-right: 0.5rem;
}

.seo-card .content {
  padding: 1rem 1rem;
  text-align: center;
}

.seo-card p span {
  color: #ffc727;
  font-weight: 700;
  padding-right: 5px;
}

/* .seo-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding: 20px;
}

.seo-card h3 {
    color: #0D0724;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.66px;
}

.seo-card p {
    color: #555555;
    font-size: 18px;
    line-height: 30px;
}


.seo-card>span {
    color: #EBEAF2;
    font-size: 76px;
    line-height: 79.8px;
}
 */
.email-mark .seo-card h3 {
  color: #000;
  font-size: 24.643px;
  font-style: normal;
  font-weight: 600;
  line-height: 33.604px;
  /* 136.364% */
  letter-spacing: -0.493px;
}

.email-mark .seo-card p {
  margin: 5px 0 0 0;
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 33.604px;
  /* 210.027% */
}

.email-mark .seo-card {
  border: none;
}

.seo-process ul > li {
  border-bottom: 1px solid #d3d3d3;
  /* box-shadow: 25px 26px 54px 0px rgba(0, 0, 0, 0.07); */
  padding: 35px 45px;
}

.seo-process ul > li.active {
  border-bottom: 1px solid #d3d3d3;
  background: #fff;
  box-shadow: 25px 26px 54px 0px rgba(0, 0, 0, 0.07);
}

.seo-process ul > li h3 {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 24px;
  /* 100% */
}

.seo-process ul > li p {
  margin-top: 5px;
  color: #444242;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 100% */
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list > a,
.contact-list > div {
  align-items: center;
  display: flex;
  gap: 10px;
  color: #0b0b0b;
}

.contact-list > a span,
.contact-list > div span {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background: #d2cfff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-list > a div,
.contact-list > div div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-list > a div b,
.contact-list > div div b {
  color: #16243e;
  font-weight: 500;
  line-height: normal;
}

.contact-list > a div p,
.contact-list > div div p {
  color: #676f87;
  line-height: normal;
}

.contact-wrap {
  position: relative;
  padding: 2rem;
  z-index: 0;
  border: 2px solid #1b1b1b;
  border-radius: 5px;
}

.contact-wrap::before {
  background-size: cover;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

/* .contact-wrap::after {
    content: "";
    background: #0D0724;
    border-radius: 8px;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -2;
    transform: rotate(-3.308deg);
} */

.contact-wrap h3 {
  font-size: 50px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.5px;
  text-align: center;
}

.contact-wrap p {
  color: #333;
  text-align: center;
  font-size: 18px;
  line-height: 35px;
  /* 194.444% */
}

.contact-wrap input,
.contact-wrap textarea {
  border: 1px solid #1b1b1b;
  border-radius: 50px;
  padding: 0 1rem;
  width: 100%;
  color: black;
  height: 40px;
  margin-top: 15px;
  background-color: transparent;
}

.contact-wrap ::placeholder {
  color: #333;
}

.contact-wrap .submit {
  background: var(--primary);
  color: white;
  padding: 15px 35px;
  border: 0;
  width: auto;
  font-weight: 500;
  border-radius: 5px;
}

.bg-light {
  background: #f3f3f3 !important;
}

.search-wrap {
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.31) 0.12%,
    rgba(255, 255, 255, 0.33) 92.46%
  );
  display: flex;
  overflow: hidden;
  width: 80%;
  justify-content: space-between;
  margin: 3rem auto;
  border: 1.5px solid #ffffff;
}

.search-wrap a {
  background: var(--primary);
  width: 75px;
  height: 75px;
  /* flex-shrink: 0; */
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.search-wrap input {
  width: 100%;
  border: 0;
  padding: 0 30px;
  color: #ffffff !important;
  background: transparent;
}

.search-wrap input::placeholder {
  color: #fff;
}

/* Checkout */
form.checkout-form {
  padding: 20px;
  background: #f2f2f2;
  border: 1px solid #ddd;
  border-radius: 10px;
}

form.checkout-form .inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}

form.checkout-form .inputs input {
  padding: 0.6rem;
  border-radius: 5px;
  border: 1px solid #ddd;
}

label.checkbox {
  line-height: 24px;
}

label.checkbox a {
  color: var(--primary);
}

input.theme-btn {
  padding: 1rem;
  background: var(--primary);
  color: white;
  border: 0;
  border-radius: 5px;
  transition: 0.5s ease;
}

input.theme-btn:hover {
  transform: scale(1.04);
}

.total {
  background: #f2f2f2;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.total ul {
  display: flex;
  flex-direction: column;
}

.total ul li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.total ul li {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
}

.total ul li span:first-child {
  font-weight: 600;
  font-size: 18px;
}

.total ul li span:last-child {
  font-weight: 500;
}

/* changes */
.pck-absolute-img {
  position: absolute;
  top: 0;
  right: 0;
}

.pckg-sec .container {
  position: relative;
}

.portfolio-absolute-img {
  position: absolute;
  bottom: 0;
  left: -70px;
}
.copyright-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.copyright-items img {
  height: 30px;
}


select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
}











@media (max-width: 1440px) {
}

@media (max-width: 1200px) {
  .pck-absolute-img {
    width: 100px;
  }

  h1.banner-heading {
    font-size: 40px;
  }

  .sec-heading h2 {
    font-size: 35px;
    line-height: 42px;
  }

  .sec-heading p {
    font-size: 16px;
  }

  .cta-wrap .sec-heading h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .cta-wrap .contact {
    font-size: 20px;
    line-height: 28px;
  }

  .cta-wrap .sec-heading p {
    font-size: 16px;
  }

  header {
    padding: 1rem 0;
  }

  .btns {
    margin: 1.5rem 0;
  }

  .form-head .form-heading {
    white-space: normal;
    font-size: 20px;
  }

  .form-head {
    padding: 1rem;
  }

  .btn-normal {
    padding: 10px 8px;
  }

  .sub-menu a {
    color: #333 !important;
    margin-bottom: 0 !important;
  }

  .sub-menu {
    left: auto !important;
    padding-top: 16px;
    top: 24px;
  }

  a.header-btn {
    padding: 15px 20px !important;
    margin-bottom: 0 !important;
    display: flex !important;
    gap: 5px !important;
    align-items: center;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .work-1 .sec-heading {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .btn-wrap .theme-btn {
    font-size: 16px;
  }

  .overlap-slider {
    /* width: 180%; */
    width: 100%;
    position: relative;
  }

  .cta-wrap::before {
    background-image: none;
    background-color: var(--secondary) !important;
  }

  .cta-wrap {
    padding: 50px;
  }

  .pkg-list {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }

  section.cta-sec {
    padding: 0;
  }

  section.contact-cards {
    margin: 20px 0 20px 0;

    position: static;
  }
}

@media (max-width: 1023px) {
  .cta-wrap .banner-img1 {
    width: 70px;
  }

  .cta-wrap .banner-img2 {
    width: 170px;
  }

  .menu-Bar {
    display: block;
    top: 0px;
  }

  .menuWrap.open {
    display: flex;
    left: 0px;
    justify-content: space-between;
  }

  .menuWrap {
    position: fixed;
    left: -210%;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #ffffff;
    height: 100dvh;
    display: flex;
    align-items: start;
    flex-flow: column;
    transition: all 0.4s ease;
    z-index: 3;
    width: 100%;
    overflow-y: auto;
    box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%),
      0px 2px 4px -1px rgb(0 0 0 / 6%);
    padding: 4rem;
  }

  ul.menu > li {
    display: flex;
    justify-content: center;
    gap: 5px;
    border-bottom: 1px solid #ddd;
    padding: 0;
    flex-direction: column;
    /* width: 100%; */
  }

  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;
  }

  .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;
  }

  .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;
  }

  ul.overview-nav {
    flex-wrap: wrap;
  }

  ul.overview-nav li {
    /* width: 48%; */
  }

  .cta-wrap .contact {
    flex-direction: column;
  }

  .cta-wrap .contact * {
    line-height: normal;
  }

  .banner-content {
    padding: 20px 0;
  }

  .banner-img {
  }

  h1.banner-heading {
    width: 100%;
    line-height: 50px;
  }

  p.banner-text {
    width: 100%;
  }

  .sec-heading {
    width: 100% !important;
  }

  .work-2 {
    width: 100%;
    margin-top: 1.5rem;
  }

  section {
    padding: 2rem 0;
  }

  .pkg-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .pckg {
    padding: 20px 15px;
  }

  .procedure-list li {
    flex-wrap: wrap;
  }

  .procedure-list li h3 {
    width: 100%;
    font-size: 26px;
  }

  .menu {
    width: 100%;
  }

  a.header-btn {
    justify-content: center !important;
  }
}

@media (max-width: 992px) {
  .responsive-reverse {
    flex-direction: column-reverse;
  }
  .banner-img1 {
    display: none;
  }

  .banner-img2 {
    display: none;
  }
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-content {
    padding: 20px 20px;
  }

  h1.banner-heading {
    margin-bottom: 0 !important;
  }

  /* Styles */
}

/* iPads (landscape) ----------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  /* Styles */
  ul.overview-nav li {
    width: fit-content;
  }

  ul.overview-nav li a {
    font-size: 14px;
  }
}

@media only screen and (min-width: 280px) and (max-width: 767px) {
  .portfolio-absolute-img {
    display: none;
  }

  .pck-absolute-img {
    display: none;
  }

  .pkg-list {
    grid-template-columns: repeat(1, 1fr);
  }

  header {
    padding: 1rem 0;
  }

  .banner-content {
    padding: 20px 10px 25px;
  }

  span.sub-heading {
    margin-bottom: 1rem;
    font-size: 16px;
  }

  h1.banner-heading {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 1rem;
  }

  p.banner-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 25px;
  }

  .btn-wrap {
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .btn-wrap a {
    width: 100%;
    text-align: center;
  }

  .banner-img {
    display: none;
  }

  .sec-heading h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .sec-heading p {
    font-size: 16px;
    line-height: 26px;
  }

  .sec-heading .sub-heading {
    margin-bottom: 0.5rem;
  }

  .copyright {
    flex-direction: column;
    gap: 12px;
  }

  .sec-heading {
    width: 100% !important;
  }

  section {
    padding: 1.5rem 0;
  }

  .work-2 {
    width: 100%;
    margin-top: 1rem;
  }

  ul.overview-nav {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .cta-wrap .sec-heading h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .cta-wrap {
    padding: 20px;
    overflow: hidden;
  }

  .cta-wrap .sec-heading p {
    font-size: 14px;
  }

  .cta-wrap .contact {
    font-size: 18px;
    flex-direction: column;
    gap: 10px;
    line-height: normal;
  }

  .cta-wrap .contact a {
    line-height: normal;
  }

  .accordion-list li h3 {
    font-size: 18px;
  }

  .choose-card h3 {
    font-size: 30px;
  }

  .mainBanner.empty {
    min-height: auto;
  }

  .mainBanner.empty .banner-content {
    padding: 50px 0;
  }

  .mainBanner.empty .banner-content .banner-heading {
    margin: 0;
  }

  form.contact-wrap {
    padding: 20px;
  }

  .pckg .upper .price .amount {
    font-size: 40px;
  }

  .cta-wrap img {
    transform: translateY(22px);
  }

  .sec-heading h3 {
    font-size: 22px;
  }

  .icon-card {
    padding: 20px;
  }

  .icon-card p {
    font-size: 16px;
  }

  .sec-heading {
    margin-bottom: 1rem;
  }

  .procedure-card span,
  .seo-card > span {
    font-size: 50px;
    line-height: 60px;
  }

  .seo-card {
    padding-bottom: 0;
  }

  .search-wrap a {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  section.cta-sec {
    padding: 0 0 1rem 0;
  }

  .pkg-list.web {
    grid-template-columns: repeat(1, 1fr);
  }

  .banner-img1 {
    display: none;
  }

  .banner-img2 {
    display: none;
  }

  .banner-img-list {
    display: none;
  }

  .cta-wrap .contact a {
    font-size: 20px;
  }

  .sec-heading h2 img {
    display: none;
  }

  .procedure-list {
    padding: 0.5rem 1rem;
  }

  .procedure-list li h3 {
    font-size: 20px;
  }

  .procedure-list li p {
    font-size: 15px;
  }

  .procedure-list li {
    gap: 0;
  }

  .menuWrap {
    padding: 4rem 1rem;
  }
}
