/*Main Css */
:root {
  --primary: #ff3420;
  --bg-light: #ffdecc;
  --bg-gray: #f4f9ff;
  --black: #000000;
  --white: #ffffff;
  --dark: #333333;

  --font-heading: "Nuckle", sans-serif;
  --font-accent: "NeueMontreal", sans-serif;
  --font-body: "NeueMontreal", 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;
  background: #f0f0f0;
}
body.inner-header section {
  padding: 14rem 0 8rem;
}
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;
}

/* 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 {
  transition: all 0.4s ease-in-out;
  position: fixed;
  background: transparent;
  z-index: 999;
  left: 0;
  right: 0;
  top: 0;
  padding: 1rem;
}
header .container {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 4px;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  background: #fff;
}
.menuWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-block;
}
.logo img {
  display: block;
  max-width: 150px;
}
.logo h2 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1.1;
  color: #000;
}
.footer-sec .logo h2 {
  color: #fff;
}
.logo h2 span {
  background-image: linear-gradient(90deg, var(--primary), #f8a528);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

/* 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 {
  display: flex;
  gap: 1.5rem;
}
.menu > li {
  display: inline-block;
  vertical-align: middle;
}
.menu > li > a {
  display: block;
  font-size: 16px;
  font-family: var(--font-heading);
  color: var(--black);
  font-weight: 700;
}
.header-btn {
  background: var(--primary);
  color: #fff !important;
  padding: 15px 20px;
  border-radius: 80px;
  font-weight: 700 !important;
}
.header-btn: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: 10px;
  top: 200%;
  width: 300px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  display: none;
}

@keyframes slide {
  0% {
    height: 0;
  }
  100% {
    height: auto;
  }
}
.dropdown .dropdown {
  left: 100%;
  top: 0;
}
.dropdown ul li a {
  font-size: 1rem;
  font-family: var(--font-heading);
  color: var(--black);
  font-weight: 700;
  line-height: 2rem;
  padding: 10px 20px;
}
.dropdown ul li a:hover {
  color: var(--primary);
}
.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 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.banner-content {
  padding: 200px 0 150px;
}
h1.banner-heading {
  color: #000;
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}
h1.banner-heading span {
  background-image: linear-gradient(90deg, var(--primary), #f8a528);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

p.banner-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.4;
}
.banner-imgs {
  width: 525px;
  height: 365px;
}
.banner-imgs img {
  width: 525px;
  height: 365px;
  object-fit: contain;
  display: none;
}
.banner-imgs img:first-child {
  width: 525px;
  height: 360px;
  object-fit: contain;
  display: block;
}

/* portfolio */
.portfolio-sec {
  background: #000;
}
.portfolio-image {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  /* padding: 5px; */
  /* background: linear-gradient(90deg, var(--primary), #f8a528); */
}
.portfolio-image img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
}
.portfolio-image2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* package */
.package-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.package-tabs li a {
  padding: 15px 20px;
  border-radius: 30px;
  text-align: center;
  /* background: var(--primary); */
  border: 2px solid var(--primary);
  color: #fff;
  color: var(--primary);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 600;
}
.package-tabs li.active a {
  padding: 15px 20px;
  border-radius: 30px;
  background: var(--primary);
  border: 2px solid var(--primary);
  color: #fff;
}
.package {
  background: linear-gradient(90deg, var(--primary), #f8a528);
  padding: 4px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
}
.package * {
  transition: all 0.4s ease-in-out;
}
.package-content {
  border-top-left-radius: 16px;
  border-bottom-right-radius: 16px;
  /* background: #f0f0f0; */
  background: #fff;
  padding: 40px;
}
.package-title {
  color: #333333;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.52px;
  font-family: var(--font-heading);
}
.package-price {
  margin: 1rem 0 1.5rem;
  color: var(--primary);
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: -1.2px;
  font-family: var(--font-heading);
}
.package-price span {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.package-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 16rem;
  overflow-y: auto;
}
.package-list li {
  padding-left: 25px;
  position: relative;
}
.package-list li::before {
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
}
.package-btn {
  background: var(--primary);
  padding: 15px 30px;
  border: 1px solid var(--primary);
  color: #fff;
  margin-top: 1rem;
  width: 100%;
  border-top-left-radius: 16px;
  border-bottom-right-radius: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.package-btn:hover {
  transform: scale(1.05);
}
.package:hover .package-content {
  background: transparent;
}
.package:hover .package-title,
.package:hover .package-list li,
.package:hover .package-list li::before,
.package:hover .package-price span,
.package:hover .package-price {
  color: #fff;
}
.package:hover .package-btn {
  color: var(--primary);
  background: #fff;
}
.package-form-image {
  width: 100%;
  height: 100%;
  background: #d3d3d3;
  border-radius: 20px;
  overflow: hidden;
  max-height: fit-content;
  min-height: 392px;
}
.package-form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package-form-card {
  padding: 30px;
  background: #000;
  border-radius: 20px;
}
.package-form-card h2 {
  font-size: 26px;
  margin-bottom: 1rem;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
}
.package-form-card h4 {
  font-size: 16px;
  margin-bottom: 2rem;
  color: #fff;
  letter-spacing: 1.5px;
}
.package-form-card div {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.package-form-card input[type="text"],
.package-form-card select,
.package-form-card textarea {
  width: 100%;
  background: #000;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 15px;
  margin-bottom: 1rem;
}
.package-form-card input[type="text"]::placeholder,
.package-form-card select::placeholder,
.package-form-card textarea::placeholder {
  color: #fff;
}
.package-form-card p {
  font-size: 12px;
  color: #fff;
  letter-spacing: 1.5px;
}
.package-form-card button {
  background: var(--primary);
  color: #fff;
  padding: 15px 20px;
  border-radius: 80px;
  font-weight: 700;
  width: 100%;
  border: 1px solid var(--primary);
  font-family: var(--font-heading);
  margin-top: 1.5rem;
}
.package-form-card button:hover {
  opacity: 0.7;
}

/* cta-sec */
.cta-sec .container {
  background-image: linear-gradient(90deg, var(--primary), #f8a528);
  padding: 35px 32px;
  border-radius: 7px;
}
.cta-sec h1 {
  font-size: 4.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  width: 100%;
  margin-bottom: 5rem;
}
.cta-sec p {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}
.cta-sec .btn-wrap {
  justify-content: end;
}

/* process-sec */
.process-sec {
  background: #000;
}
.process-card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: linear-gradient(130deg, var(--primary) 52%, #f88928);
  border-radius: 10px;
  height: 100%;
}
.process-card .number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.5rem;
}
.process-card h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 2rem;
}
.process-card p {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  letter-spacing: 1px;
}

/* service */
.service-sec {
  background: #000;
}
.service-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 17rem;
  border-radius: 10px;
  height: 100%;
  position: relative;
}
.service-card h2 {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}
.service-card p {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.service-card img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  position: absolute;
  filter: hue-rotate(220deg);
}
.service-card .img1 {
  max-height: 350px;
  max-width: 350px;
  bottom: -50px;
  right: -35px;
  transform: rotate(350deg);
}
.service-card .img2 {
  max-height: 320px;
  max-width: 320px;
  bottom: -25px;
  right: -5px;
  transform: rotate(340deg);
}
.service-card .img3 {
  max-height: 250px;
  max-width: 250px;
  bottom: 5px;
  right: 20px;
  transform: rotate(305deg);
}

/* why-choose-email */
.why-choose-email-sec {
  background: #000;
}
.why-choose-email-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.why-choose-email-card h2 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-align: center;
}
.why-choose-email-card p {
  color: #cccccc;
  font-size: 16px;
  font-style: normal;
  font-family: var(--font-heading);
  line-height: 24px;
  text-align: center;
  max-width: 80%;
}

/* contact-card */
.contact-card {
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  border-radius: 10px;
  padding: 40px;
  border: 2px solid var(--primary);
}
.contact-card a {
  text-align: center;
  color: #000;
  font-size: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.4;
}
.contact-form {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 60px 40px;
}
.contact-form div {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.contact-form input[type="text"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--primary);
  color: #141313;
  padding: 15px 20px;
  border-radius: 15px;
}
.contact-form input[type="text"]::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: #000;
}
.contact-form p {
  font-size: 14px;
  color: #000;
  letter-spacing: 1.5px;
}
.contact-form button {
  background: linear-gradient(90deg, var(--primary), #f8a528);
  color: #fff;
  padding: 20px 30px;
  border-radius: 80px;
  font-weight: 700;
  width: 100%;
  border: 1px solid var(--primary);
  font-family: var(--font-heading);
  margin-top: 0.5rem;
  transition: all 0.4s ease-in-out;
}
.contact-form button:hover {
  opacity: 0.7;
}

/* Accordian */
.accordion-list {
  position: relative;
}
.accordion-list li {
  padding: 30px 65px 30px 30px;
  cursor: pointer;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
ul.accordion-list li span {
  display: flex;
  position: relative;
}
.accordion-list li h3 {
  font-size: 1.2rem;
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
}
ul.accordion-list li h3:after {
  content: "\2b";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2.5rem;
  color: #fff;
  transition: all 0.3s ease-in-out;
  font-size: 1.25rem;
  font-weight: 400;
  height: 2.5rem;
  width: 2.5rem;
  background: var(--primary);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* .accordion-list li.active h4::after {
  color: #9ca3af;
  content: "\f077";
} */
ul.accordion-list li.active h3:after {
  /* content: "\f077"; */
  transform: translateY(-50%) rotate(-45deg);
}
.answer p {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.4;
  color: #8d8d8d;
  letter-spacing: 1px;
}
/* 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;
}

.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: #000000;
  color: white;
  font-weight: 700;
  transition: .5s ease;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  border: 0;
}

.popupmain p {
  font-size: 14px;
  line-height: normal;
  text-align: left;
}

/* popup */

/* packages */
.pckg-sec {
  background: #f5f5f5;
}
.pkg-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.pkg-list .g-2 {
  grid-template-columns: repeat(2, 1fr);
}
.pkg-list .d2 .pckg {
  border: 1px solid #e5e7eb;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
.pkg-list .d2 .pckg .upper {
  text-align: center;
}
.pkg-list .d2 .pckg .upper .price {
  justify-content: center;
}
.pkg-list .d2 .pckg .upper .title {
  font-size: 24px;
  line-height: 24px;
}
.pkg-list .d2 .pckg .upper .price .amount {
  font-weight: 800;
  font-size: 70px;
  line-height: 85px;
}
.pkg-list .d2 .pckg .bottom p {
  font-size: 18px;
  line-height: 26px;
  color: #6b7280;
}
.pckg.d2 {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}
.pckg.d2 .upper .title {
  font-size: 24px;
  line-height: 24px;
}
.pckg.d2 .upper {
  text-align: center;
}
.pckg.d2 .upper .price {
  justify-content: center;
}
.pckg.d2 .upper .price .amount {
  font-size: 70px;
  line-height: 85px;
}
.pckg.d2 .bottom .hdng {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #525aec;
  margin-bottom: 1rem;
}
.pckg.d2 .bottom p {
  color: #6b7280;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 1rem;
}
/*.pckg {*/
/*    background: #fff;*/
/*    border-radius: 15px;*/
/*    height: 100%;*/
/*    border: 1px solid #4C7CFA;*/
/*    padding: 30px;*/
/*    position: relative;*/
/*}*/

.pckg {
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  position: relative;
  /*margin-top: 1rem;*/
  transition: 0.3s;
  background: #fff;
  box-shadow: -10px 14px 30px rgb(0 0 0 / 7%);
  border-radius: 22px;
  border: 1px solid transparent;
  height: 100%;
  padding: 42px 26px 20px;
}
.pckg .btn-wrap a {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}
.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 {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 1rem;
  color: #2d2d2d;
}
.pckg .upper .starting-in {
  font-size: 14px;
  line-height: 20px;
  color: #6b7280;
}
.pckg .upper p {
  font-size: 17px;
  line-height: 26px;
  color: #6e6e6e;
  margin-bottom: 1.5rem;
  /* min-height: 40px; */
}
.pckg .upper .price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.5rem 0;
}
.pckg .upper .price .amount {
  font-weight: 700;
  font-size: 51px;
  line-height: 40px;
  color: var(--primary);
}
.pckg .upper .price .uspto {
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: #5b5b5b;
}
.pckg .upper {
  border-bottom: 1px solid #e5e7eb;
}
.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: 400;
  font-size: 16px;
  line-height: 30px;
  color: #5b5b5b;
  position: relative;
  display: flex;
}
.pckg .bottom ul {
  margin: 1rem 0 3rem;
  overflow-y: auto;
  /* max-height: 179px; */
  padding-right: 10px;
  height: 254px;
  overflow-y: scroll;
}
.bottom span {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  /*margin: 1rem 0 0;*/
}
.pckg .bottom ul li:not(.last) {
  margin-bottom: 1rem;
}
.pckg .bottom ul li::before {
  content: "";
  font-family: var(--icon);
  content: "\f00c";
  font-weight: 800;
  color: #1c2e59;
  margin-right: 12px;
}
.pckg .btn-wrap {
  flex-direction: column;
  margin: 0;
}
span.tag {
  background: #fbbf24;
  color: #0b0b0b;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 32px;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  border-radius: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52%;
}
.pckg:hover {
  border: 1px solid #4f7efa;
}
/*------add-css------*/
.pckg.popular {
  background: #283068;
  transform: scale(1.03);
}
.pckg.popular .title {
  color: #fff;
}
.pckg.popular p {
  color: #fff;
}
.pckg.popular .uspto {
  color: #fff !important;
}
.pckg.popular .bottom span {
  color: #fff;
}
.pckg.popular .bottom ul li {
  color: #fff;
}
.pckg.popular .btn-wrap .theme-btn {
  background: #fbbf24 !important;
  color: #000 !important;
  padding: 16px 24px;
}
.pckg .btn-wrap .theme-btn {
  padding: 16px 24px;
}
.pckg.popular .amount {
  color: #fbbf24 !important;
}
.pckg.popular .bottom ul li::before {
  color: #fbbf24;
}
/* packages */

/* Sec Headings */
.sec-heading {
  color: #000;
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}
.sec-heading span {
  background-image: linear-gradient(90deg, var(--primary), #f8a528);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.sec-para {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.4;
}
/* 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;
}

.theme-btn {
  padding: 0.75rem 0.7rem;
  border-radius: 7px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  position: relative;
  overflow: hidden;
  z-index: 1;
}
.theme-btn div {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  line-height: 22px;
  transition: 0.4s ease;
}
.theme-btn i {
  padding: 0.5rem 0.6rem;
  border-radius: 5px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  transition: 0.4s ease;
}

.theme-btn::before {
  content: "";
  width: 0;
  height: 100%;
  border-top-right-radius: 30em;
  border-bottom-right-radius: 30em;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary);
  transition: 0.4s ease;
  display: block;
  z-index: -1;
}

.theme-btn:hover i {
  background: #fff;
  color: var(--primary);
}
.theme-btn:hover div {
  color: #fff;
}
.theme-btn:hover::before {
  width: 140%;
}

.theme-btn.bordered {
  padding: 15px 30px;
  background: var(--primary);
  color: white;
  font-size: 20px;
  border-radius: 8px;
  font-weight: var(--font-medium);
  border: 2px solid var(--primary);
  transition: 0.5s ease;
  background: transparent;
  color: var(--black);
}
.theme-btn.bordered:hover {
  transform: scale(1.03);
}
/* Theme Buttons */

/* 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: #000;
  padding: 1.5rem 0;
}
.copyright {
  display: flex;
  justify-content: center;
  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;
}

/* -------------------------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: #000;
  padding: 62px 0;
}
.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #d3d3d3;
  padding: 20px 0;
}
.copyright p,
.copyright a {
  color: white;
}
ul.f-link {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-sec p {
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
  padding-top: 33px;
}
.footer-hdng h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
.f-menu li a {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}
.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;
}
.f-menu li {
  line-height: 2;
}
.copyright-sec {
  background: #000;
}
.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: 96px;
  line-height: 68px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  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 .roman {
  list-style: upper-roman;
}
.terms ul {
  line-height: 25px;
  font-size: 16px;
  color: #333;
}
.terms ul.list-ul {
  list-style: disc;
  padding-left: 22px;
}
.terms ul li {
  margin-bottom: 1rem;
}
.terms ul li::marker {
  font-size: 22px;
  font-weight: 500;
}
.terms h4 {
  font-size: 24px;
  margin: 1rem 0;
  font-family: var(--font-heading);
  font-weight: 700;
}
.terms p {
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
/* terms */

/* Checkout */
form.checkout-form {
  padding: 20px;
  background: #fff;
  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: .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: .5s ease;
}

input.theme-btn:hover {
  transform: scale(1.04);
}

.total {
  background: #fff;
  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;
}




.search-wrap {
  background: transparent;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  margin-top: 2rem;
  border: 1.5px solid #ffffff;
  border: 1px solid #E4DCDC;
  background: #f6f6f659;
  border-radius: 100px;
}
.search-wrap a {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  /* background: var(--primary); */
}
.search-wrap input {
  width: 100%;
  border: 0;
  padding: 0 30px;
  color: #fff !important;
  background: transparent;
}
.search-wrap input::placeholder {
  color: #CBCBCB;
}
.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;
}
.domain-loader {
  position: absolute;
  right: 0px;
  width: 50px;
  height: 50px;
  right: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 16px;
  transition: 0.2s;
}
.domain-loader i,
.domain-loader img {
  display: none;
}
.domain-loader i.fa-times {
  color: red;
}
.domain-loader i.fa-check {
  color: green;
}
.domain-loader img {
  width: 100%;
  position: absolute;
}
.domain-loader img {
  animation: revert;
}
.banner-content .elem {
  position: absolute;
}
span.elem.e1 {
  left: 10%;
  top: 30%;
}
span.elem.e2 {
  right: 10%;
  bottom: 40%;
}
.overlap {
  transform: translateY(160px);
  margin-top: -230px;
  margin-bottom: 150px;
}
ul.hdng-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul.hdng-list li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: .5s ease;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}
ul.hdng-list li h3 {
  color: #000;
  font-size: 22px;
  font-style: normal;
  line-height: normal;

  align-items: center;
}
ul.hdng-list li p {
  color: #222A41;
  line-height: 24px;
  animation: fadeInRight .5s ease-in-out;
}
ul.hdng-list li:not(.active) p {
  display: none;

}
@keyframes fadeInRight {
  from {
      opacity: 0;
      transform: translateY(100px);
  }

  to {
      opacity: 1;
  }
}



ul.hdng-list li h3 span {
  color: #8D7DFF;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.42px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

.offer-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.offer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer h3 {
  font-size: 36px;
  line-height: 49px;
  letter-spacing: -0.03em;
  text-align: left;
}

.offer p {
  font-weight: 400;
  line-height: 29px;
  letter-spacing: -0.03em;
  text-align: left;
}

.bg-dark {
  background: #0F1F3E !important;
}



select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


@media (max-width: 1400px) {
  h1.banner-heading {
    font-size: 3rem;
  }
  .menu > li > a {
    font-size: 14px;
  }
  .banner-imgs,
  .banner-imgs img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 1200px) {
  header {
    padding: 1rem 0;
  }
  .btns {
    margin: 1.5rem 0;
  }
  .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 {
    padding: 15px 20px !important;
    margin-bottom: 0 !important;
    display: flex !important;
    gap: 5px !important;
    align-items: center;
  }
  .menuWrap .menu:first-child {
    padding-left: 0;
    width: 100%;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .menu-Bar {
    display: block;
    top: 45%;
    transform: translateY(-50%);
    bottom: unset;
  }
  .menuWrap.open {
    display: flex;
    left: 0px;
  }
  .menuWrap {
    position: fixed;
    left: -210%;
    /* right: 0; */
    top: 0;
    bottom: 0;
    margin: auto;
    background: #ffffff;
    height: 100vh;
    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 .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;
  }
  header .container {
    position: relative;
  }
  .menu {
    gap: 0;
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  h1.banner-heading,
  p.banner-text {
    text-align: center;
  }
  .banner-content {
    padding: 150px 0 50px;
  }
  .banner-content .btn-wrap {
    justify-content: center;
  }
}

@media only screen and (min-width: 375px) and (max-width: 767px) {
  .main-header {
    padding: 0 20px;
  }
  .banner-content {
    padding: 125px 0 20px;
  }
  h1.banner-heading {
    font-size: 2.25rem;
  }
  p.banner-text {
    font-size: 1rem;
  }
  .sec-heading {
    font-size: 2rem;
  }
  .sec-para {
    font-size: 1rem;
  }
  section {
    padding: 3rem 0;
  }
  .row.mt-5 {
    margin-top: 2rem !important;
  }
  .package-tabs li a,
  .package-tabs li.active a {
    padding: 10px 20px;
  }
  .cta-sec {
    padding: 3rem 1rem;
  }
  .cta-sec .container {
    padding: 30px 20px;
  }
  .cta-sec h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .cta-sec p {
    font-size: 1rem;
    text-align: center;
  }
  .cta-sec .btn-wrap {
    justify-content: center;
  }
  .answer p {
    font-size: 1rem;
  }
  .service-card {
    padding: 1rem 1rem 12rem;
  }
  .service-card .img1 {
    max-height: 300px;
    max-width: 300px;
  }
  .service-card .img2 {
    max-height: 250px;
    max-width: 250px;
  }
  .service-card .img3 {
    max-height: 200px;
    max-width: 200px;
  }
  .contact-form {
    padding: 40px 20px;
    border-radius: 10px;
  }
  .contact-form div {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .contact-form div:not(.checkbox-wrapper) {
    flex-direction: column;
  }
  .contact-form input[type="text"],
  .contact-form select,
  .contact-form textarea {
    padding: 14px 18px;
    border-radius: 10px;
  }
  .contact-form p {
    font-size: 12px;
  }
  .package-form-card div {
    gap: 0;
  }
  .package-form-card div:not(.checkbox-wrapper) {
    flex-direction: column;
  }
  .package-form-card p {
    margin-left: 1rem;
  }
  .accordion-list li {
    margin-bottom: 1rem;
  }
  .accordion-list li h3 {
    font-size: 1.1rem;
  }
  ul.accordion-list li h3:after {
    font-size: 1rem;
    height: 2rem;
    width: 2rem;
  }
}
