@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: Eina01 semibold;
  src: url(../assets/font/Eina01-SemiBold.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --fourth-color: #f3efe6;
  --tertary-color: #e7a837;
  --fivth-color: #e7a83766;
  --sixth-color: #ffffff1a;
  --text-color: #555;
  --footer-btm-color: #f5e5c7;
}
a {
  text-decoration: none;
  display: inline-block;
}
ul {
  list-style-type: none;
}
body {
  font-family: "Poppins", sans-serif;
}
body,
html {
  overflow-x: hidden;
}
.nav-container {
  max-width: 1890px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col-50 {
  padding: 0 15px;
  width: 50%;
}
.col-60 {
  padding: 0 15px;
  width: 60%;
}
.col-25 {
  padding: 0 15px;
  width: 25%;
}
.col-5 {
  padding: 0 15px;
  width: 50%;
}
.col-7 {
  padding: 0 15px;
  width: 70%;
}
.col-4 {
  padding: 0 15px;
  width: 40%;
}
.col-6 {
  padding: 0 15px;
  width: 60%;
}
.col-33 {
  padding: 0 15px;
  width: 33.33%;
}
.col-3 {
  padding: 0 15px;
  width: 50%;
}
.col-2 {
  padding: 0 15px;
  width: 50%;
}
.col-14 {
  padding: 0 15px;
  width: 40%;
}
.col-16 {
  padding: 0 15px;
  width: 60%;
}
.col-12 {
  padding: 0 15px;
  width: 40%;
}
.col-13 {
  padding: 0 15px;
  width: 60%;
}
.col-17 {
  padding: 0 15px;
  width: 20%;
}
.col-18 {
  padding: 0 15px;
  width: 30%;
}
.col-19 {
  padding: 0 15px;
  width: 50%;
}


/* ========loading====== */



/* ========loading====== */

/* PRELOADER FULL SCREEN */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--footer-btm-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

/* LOADING TEXT + DOT WRAPPER */
.loading-box {
  text-align: center;
}

/* LOADING TEXT */
.loading-text {
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
  animation: fade 1.2s infinite ease-in-out;
}

/* TEXT FADE EFFECT */
@keyframes fade {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* DOT CONTAINER */
.dots {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* DOTS */
.dots span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

/* DOT COLORS + DELAYS */
.dots span:nth-child(1) { background: #ff4d4d; animation-delay: 0s; }
.dots span:nth-child(2) { background: #ffcc00; animation-delay: 0.15s; }
.dots span:nth-child(3) { background: #2ecc71; animation-delay: 0.30s; }
.dots span:nth-child(4) { background: #3498db; animation-delay: 0.45s; }
.dots span:nth-child(5) { background: #9b59b6; animation-delay: 0.60s; }

/* DOT BOUNCE ANIMATION */
@keyframes bounce {
  from {
    transform: translateY(0);
    opacity: 0.5;
  }
  to {
    transform: translateY(-14px);
    opacity: 1;
  }
}


/* header-section */
.header-sec {
  padding: 10px 0px;
}
.header-top-wrpr {
  width: 100%;
  background: var(--primary-color);
  padding: 5px 73px;
  border-radius: 40px;
}
.header-top-wrpr-iner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header-top-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.header-top-left > ul > li {
  margin-right: 24px;
}
.contact-number {
  display: flex;
  align-items: center;
  text-align: center;
}
.contact-number > img {
  width: 24px;
  height: 23px;
  object-fit: contain;
}
.contact-number > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  padding-left: 10px;
}
.contact-email {
  display: flex;
  align-items: center;
  text-align: center;
}
.contact-email > img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}
.contact-email > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  padding-left: 10px;
}
.language {
  display: flex;
  align-items: center;
}
.language > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  padding-left: 10px;
}
.language > img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}
.header-btm-wrpr {
  padding: 5px 0px;
  width: 90%;
  background: var(--primary-color);
  border-radius: 40px;
}
.header-btm-wrpr-inr {
}
.nav-logo {
  max-width: 210px;
}
.nav-logo > a {
  width: 100%;
}
.nav-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-btm-wrpr-inr,
.navbar-collesped,
.navbar-collesped > ul,
.navbar-btn,
.header-sub-btm-wrpr {
  display: flex;
  align-items: center;
}
.header-main-btm {
  display: flex;
  align-items: center;
}
.header-sub-btm-wrpr {
  padding-top: 5px;
  padding-left: 5px;
}
.navbar-btn-1 {
  padding-left: 5px;
}
.navbar-collesped {
  flex-grow: 1;
}
.navbar-collesped > ul {
  margin: 0 auto;
}
.navbar-collesped > ul > li {
  margin-left: 30px;
}
.nav-links {
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  transition: 0.5s linear;
  position: relative;
}
.active {
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  /* margin-right: 10px; */
}
.nav-links::after {
  content: " ";
  position: absolute;
  width: 0px;
  height: 2px;
  bottom: -5px;
  background: linear-gradient(90deg, var(--tertary-color), var(--text-color));
  top: 100%;
  left: 50%;
  transition: all 0.3s linear;
  transform: scaleX(0);
  display: block;
}
.nav-links:hover {
  color: var(--tertary-color);
}
.nav-links:hover::after {
  width: 100%;
  left: 0;
  transform: scaleX(1);
}
.navbar-btn {
  margin-left: auto;
  display: none;
}
.primary-btn {
  width: 213px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  border-radius: 64px;
  border: 1px solid var(--tertary-color);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.primary-btn:hover {
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--primary-color)
  );
}
.primary-btn:hover > span {
  color: var(--secondary-color);
}
.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--secondary-color)
  );
  transform: skewX(-25deg);
}
.primary-btn:hover::before {
  animation: shine 0.8s;
  transition: 1s linear;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.primary-btn:hover > img {
  transform: rotate(90deg);
  transition: 0.5s linear;
}
.primary-btn > span {
  font-size: 18px;
  font-weight: 400;
  color: var(--tertary-color);
  margin-left: 29px;
}
.primary-btn > img {
  width: 56px;
  height: 56px;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: auto;
}
.close-btn {
  display: none;
}
.active {
  border-top: 1px solid var(--tertary-color) !important;
  border-bottom: 1px solid var(--tertary-color);
  padding: 5px 18px;
  border-radius: 40px;
}

/* banner-section */

.banner-sec {
  background: url(../assets2/banner-bg.png) no-repeat center/cover;
  min-height: 494px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-inline: 10px;
}

.banner-cntn > h1 {
  font-size: 80px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 50px;
}
.banner-cntn > h1 > span {
  color: var(--tertary-color);
}
.banner-cntn > p {
  max-width: 854px;
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 300;
}

/* servics-section */
.servics-sec {
  padding: 50px 0px;
}
.servics-top-hdr {
  margin-bottom: 80px;
}
.servics-left-hdr > h2 {
  max-width: 394px;
  font-size: 60px;
  font-weight: 600;
  color: var(--primary-color);
}
.servics-left-hdr > h2 > span {
  color: var(--tertary-color);
}
.servics-rhgt-hdr > p {
  max-width: 590px;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 50px;
}
.servics-btn {
  width: 214px;
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 72px;
  border: 1px solid var(--tertary-color);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.servics-btn:hover {
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--primary-color)
  );
}
.servics-btn:hover > span {
  color: var(--secondary-color);
}
.servics-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--secondary-color)
  );
  transform: skewX(-25deg);
}
.servics-btn:hover::before {
  animation: shine 0.8s;
  transition: 1s linear;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.servics-btn:hover > img {
  transform: rotate(90deg);
  transition: 0.5s linear;
}
.servics-btn > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--tertary-color);
  margin-left: 29px;
}
.servics-btn > img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  margin-left: auto;
}
.servics-card {
  max-width: 648px;
  padding: 19px 11px;
  border-radius: 40px;
  border: 1px solid var(--tertary-color);
  margin-bottom: 24px;
  transition: 0.5s linear;
  cursor: pointer;
  transition: 0.5 linear;
}
.servics-card:hover {
  box-shadow: 0px 0px 60px var(--tertary-color);
  transform: translateY(-10px);
}
.servics-img {
  max-width: 618px;
  margin-bottom: 27px;
}
.servics-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.servics-cntn {
  display: flex;
  align-items: center;
  position: relative;
}
.servics-cntn-1 > h6 {
  font-size: 37px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.servics-line {
  max-width: 437px;
  height: 1px;
  background: var(--tertary-color);
}
.servics-cntn-1 > p {
  max-width: 505px;
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
}
.servics-cntn-2 {
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.5s linear;
}
.servics-cntn-2 > img {
  width: 43px;
  height: 43px;
  object-fit: cover;
}
.servics-cntn-2:hover {
  background: linear-gradient(
    90deg,
    var(--fivth-color),
    var(--footer-btm-color)
  );
}
.servics-cntn-2:hover > img {
  transform: rotate(90deg);
  transition: 0.5s linear;
}
.servics-main-cntn > h6 {
  font-size: 37px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.servics-main-cntn > p {
  max-width: 505px;
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
}

/* footer-section */
.footer-sec {
  padding: 50px 0px;
  background: var(--primary-color);
  margin: 0px 10px 10px 10px;
  border-radius: 40px;
}
.footer-logo {
  max-width: 210px;
  margin-bottom: 50px;
}
.footer-logo > a {
  width: 100%;
}
.footer-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-sub-menu {
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: 45px;
}
.footer-links {
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
}
.footer-links:hover {
  color: var(--tertary-color);
}
.footer-links:after {
  content: "";
  position: absolute;
  /* bottom: -5px; */
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to left, var(--tertary-color), var(--text-color));
  transition: width 0.3s linear;
}
.footer-links:hover::after {
  width: 100%;
}
.footer-sub-write {
  font-size: 24px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 47px;
}
.footer-write-us > p {
  max-width: 336px;
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: 30px;
}
.footer-mid-btn {
  width: 226px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  border-radius: 115px;
  border: 1px solid var(--tertary-color);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.footer-mid-btn:hover {
  background: linear-gradient(
    to left,
    var(--fivth-color),
    var(--primary-color)
  );
}
.footer-mid-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--secondary-color)
  );
  transform: skewX(-25deg);
}
.footer-mid-btn:hover::before {
  animation: shine 0.8s;
  transition: 0.5s linear;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.footer-mid-btn:hover > span {
  color: var(--text-color);
}
.footer-mid-btn:hover >  img {
  transform: rotate(90deg);
  transition: 0.5s linear;
}
.footer-mid-btn > span {
  font-size: 20px;
  font-weight: 400;
  margin-left: 26px;
  color: var(--primary-color);
}
.footer-mid-btn > img {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
.footer-sub-contact {
  width: 190px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--footer-btm-color);
  border-radius: 115px;
  font-size: 25px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 43px;
}
.footer-form {
  display: flex;
  flex-direction: column;
}
#name {
  padding: 16px 32px;
  border-radius: 40px;
  background: var(--secondary-color);
  border: 1px solid var(--fivth-color);
  max-width: 560px;
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 400;
  color: var(--primary-color);
  outline: none;
}
#email {
  padding: 16px 32px;
  border-radius: 40px;
  background: var(--secondary-color);
  border: 1px solid var(--fivth-color);
  max-width: 560px;
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 400;
  color: var(--primary-color);
  outline: none;
}
#msg {
  padding: 16px 32px;
  border-radius: 40px;
  background: var(--secondary-color);
  border: 1px solid var(--fivth-color);
  margin-bottom: 15px;
  max-width: 560px;
  height: 180px;
  font-size: 25px;
  font-weight: 400;
  color: var(--primary-color);
  outline: none;
}
.send-btn {
  width: 170px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  border-radius: 115px;
  border: 1px solid var(--tertary-color);
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.send-btn:hover {
  background: linear-gradient(
    to left,
    var(--fivth-color),
    var(--primary-color)
  );
  transition: 0.5s linear;
}
.send-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--secondary-color)
  );
  transform: skewX(-25deg);
}
.send-btn:hover::before {
  animation: shine 0.8s;
  transition: 0.5s linear;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.send-btn:hover > span {
  color: var(--text-color);
}
.send-btn:hover > img {
  transform: rotate(90deg);
  transition: 0.5s linear;
}
.send-btn > span {
  font-size: 20px;
  font-weight: 400;
  margin-left: 26px;
  color: var(--primary-color);
}
.send-btn > img {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
.footer-sub-mid-hdr > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-sub-mid-img {
  width: 52px;
  height: 52px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  transition: 0.5s linear;
}
.footer-sub-mid-img:hover {
  background: linear-gradient(
    to top,
    var(--primary-color),
    var(--tertary-color)
  );
}
.footer-sub-mid-img:hover > img {
  transform: translateY(-10px);
  transition: 0.5s linear;
}
.footer-btm-term {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-btm-left > p {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-color);
}
.footer-btm-left > p > a {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-color);
}
.footer-btm-left > p > a:hover {
  color: var(--fivth-color);
}
.footer-btm-rhgt > ul {
  display: flex;
  align-items: center;
}
.footer-btm-rhgt > ul > li > a {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-color);
  margin-right: 43px;
}
#error-msg{
  color: var(--tertary-color);
  margin-top: 10px;
}
@media screen and (max-width: 2570px){
   .header-sec {
    padding: 5px 10px;
  }
  .navbar-btn-1{
    margin-left: 28px;
  }
  .nav-logo{
    padding-left: 50px;
  }
}
@media screen and (max-width: 1660px) {
  /* header-section */
  .sub-container {
    max-width: 1200px;
  }
  .header-sec {
    padding: 5px 5px;
  }
  .header-top-wrpr {
    padding: 8px 30px;
  }
  .header-top-wrpr-iner {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .header-top-left > ul > li {
    margin-right: 10px;
  }
  .contact-number > span {
    font-size: 10px;
    padding-left: 5px;
  }
  .contact-email > span {
    font-size: 10px;
    padding-left: 5px;
  }
  .contact-email > span {
    font-size: 10px;
    padding-left: 5px;
  }
  .language > span {
    font-size: 10px;
    padding-left: 5px;
  }
  .contact-number > img {
    width: 12px;
    height: 12px;
    object-fit: cover;
  }
  .contact-email > img {
    width: 12px;
    height: 12px;
    object-fit: cover;
  }
  .language > img {
    width: 11px;
    height: 11px;
    object-fit: cover;
  }
  .header-btm-wrpr {
    padding: 2px 15px;
  }

  .nav-logo {
    max-width: 100px;
    padding-left: 0;
    padding-top: 7px;
  }
  .nav-logo > a {
    width: 100%;
  }
  .nav-logo > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .navbar-collesped > ul > li {
    margin-right: 40px;
  }
  .nav-links {
    font-size: 12px;
    font-weight: 400;
    color: var(--secondary-color);
  }
  .active {
    font-size: 12px;
    font-weight: 400;
    color: var(--secondary-color);
  }
  .navbar-collesped > ul > li:nth-child(8) {
    margin-right: 0px;
  }
  .primary-btn {
    width: 160px;
    height: 40px;
  }
  .primary-btn > span {
    font-size: 15px;
    font-weight: 400;
    color: var(--tertary-color);
  }
  .primary-btn > img {
    width: 35px;
    height: 35px;
  }
  .navbar-btn-1{
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 1440px) {
  .navbar-collesped > ul > li {
    margin-right: 25px;
  }
  .nav-links {
    font-size: 12px;
  }
  .active {
    font-size: 12px;
  }
}

@media screen and (max-width: 1330px) {
  .navbar-collesped > ul > li {
    margin-right: 12px;
  }
   /* .footer-logo>a>img{
    padding-left: 50px;
  } */
}
@media screen and (max-width: 1250px) {
  /* navbar-sec */
  .close-btn {
    display: block;
    margin-left: auto;
    position: relative;
    transition: all 0.5s linear;
    z-index: 999;
  }
  .navbar-collesped {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    height: 100vh;
    width: 50%;
    transition: all 0.5s linear;
    padding: 100px 0;
    z-index: 99;
    background: var(--primary-color);
  }
  .navbar-collesped,
  .navbar-collesped > ul,
  .navbar-btn {
    flex-direction: column;
  }
  .close-btn.open::after {
    display: none;
  }
  .close-btn.open::before {
    transform: rotate(-45deg) translateX(-5px);
  }
  .close-btn.open > span {
    transform: rotate(45deg) translateX(-5px);
  }
  .close-btn > span {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: var(--tertary-color);
    transition: all 0.5s linear;
    margin: 6px 0px;
  }
  .close-btn::before {
    content: " ";
    width: 30px;
    height: 3px;
    background: var(--tertary-color);
    position: absolute;
    right: 0px;
    top: 5px;
    transition: all 0.5s linear;
    margin: -1px 0px;
  }
  .close-btn::after {
    content: " ";
    width: 30px;
    height: 3px;
    background: var(--tertary-color);
    position: absolute;
    right: 0px;
    bottom: -4px;
    transition: all 0.5s linear;
    margin: 10px 0px;
  }
  .navbar-collesped > ul > li {
    margin: 10px;
  }
  .active {
    margin-left: auto;
  }
  .navbar-btn {
    margin: 0 auto;
    /* display: block; */
  }
  .header-btm-wrpr-inr {
    align-items: center;
  }
  .nav-logo {
    padding-top: 5px;
  }
  .header-btm-wrpr {
    padding: 5px 15px;
  }
  .primary-btn {
    width: 160px;
    height: 45px;
  }
  .navbar-btn-1 {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 1200px) {
  .servics-cntn-2 {
    width: 80px;
    height: 80px;
  }
  .servics-cntn-2 > img {
    width: 26px;
    height: 26px;
    object-fit: cover;
  }
  .servics-main-cntn > h6 {
    font-size: 30px;
  }
  .servics-main-cntn > p {
    max-width: 505px;
    font-size: 18px;
  }
  .servics-cntn-1 > h6 {
    font-size: 30px;
  }
  .servics-cntn-1 > p {
    max-width: 505px;
    font-size: 18px;
  }
  .servics-line {
    max-width: 380px;
  }
}
@media screen and (max-width: 1100px) {
  .col-19 {
    width: 100%;
  }

  .send-btn {
    margin-left: 190px;
  }
  .footer-sub-menu {
    margin-bottom: 20px;
  }
  .footer-sub-write {
    margin-bottom: 20px;
  }
  .footer-write-us > p {
    margin-bottom: 15px;
  }
  .footer-sub-contact {
    margin-bottom: 14px;
  }
 
  .footer-sub-mid-hdr {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1050px) {
  .servics-left-hdr > h2 {
    max-width: 394px;
    font-size: 45px;
  }
  .servics-rhgt-hdr > p {
    max-width: 590px;
    font-size: 15px;
  }
  .servics-btn {
    width: 160px;
    height: 53px;
  }
  .servics-btn > img {
    width: 43px;
    height: 43px;
  }
  .servics-btn > span {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .servics-cntn-2 {
    width: 60px;
    height: 60px;
  }
  .servics-cntn-2 > img {
    width: 20px;
    height: 20px;
    object-fit: cover;
  }
  .servics-main-cntn > h6 {
    font-size: 25px;
  }
  .servics-main-cntn > p {
    max-width: 405px;
    font-size: 14px;
  }
  .servics-cntn-1 > h6 {
    font-size: 25px;
  }
  .servics-cntn-1 > p {
    max-width: 405px;
    font-size: 14px;
  }
  .servics-line {
    max-width: 300px;
  }
}
@media screen  and (max-width:900px){
   .footer-write-us > p {
  margin-bottom: 10px;
}
.footer-sub-write{
  margin-bottom: 10px;
}
.footer-sub-contact {
  margin-bottom: 10px;
}
.footer-mid-btn{
  margin-bottom: 20px;
}
}
@media screen and (max-width: 800px) {
  .servics-cntn-2 {
    width: 50px;
    height: 40px;
  }
  .servics-cntn-2 > img {
    width: 15px;
    height: 15px;
    object-fit: cover;
  }
  .servics-main-cntn > h6 {
    font-size: 20px;
  }
  .servics-main-cntn > p {
    max-width: 350px;
    font-size: 11px;
  }
  .servics-cntn-1 > h6 {
    font-size: 20px;
  }
  .servics-cntn-1 > p {
    max-width: 350px;
    font-size: 11px;
  }
  .servics-line {
    max-width: 250px;
  }
   .col-18{
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
 
  .footer-row {
    justify-content: start;
  }
  .footer-mid-btn {
    margin-bottom: 15px;
  }
  .footer-btm-term {
    flex-direction: column;
    margin-top: 10px;
  }
}
@media screen and (max-width: 700px) {
  .servics-line {
    max-width: 180px;
  }
  .servics-main-cntn > h6 {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .header-top-wrpr-iner {
    flex-direction: column !important;
  }
  .navbar-collesped {
    width: 70% !important;
  }
  .banner-cntn > h1 {
    font-size: 65px;
    margin-bottom: 30px;
  }
  .banner-cntn > p {
    font-size: 15px;
  }
  .footer-logo {
    max-width: 150px;
  }
  .footer-links {
    font-size: 13px;
  }
  .footer-sub-menu {
    font-size: 15px;
  }
  .footer-sub-write {
    font-size: 15px;
  }
  .footer-write-us > p {
    font-size: 15px;
  }
  .footer-mid-btn {
    width: 170px;
    height: 45px;
  }
  .footer-mid-btn > img {
    width: 40px;
    height: 40px;
  }
  .footer-mid-btn > span {
    font-size: 14px;
  }
  .footer-sub-contact {
    font-size: 20px;
  }
  #name {
    font-size: 20px;
  }
  #email {
    font-size: 20px;
  }
  #msg {
    font-size: 20px;
  }
  .footer-btm-left > p {
    font-size: 10px;
  }
  .footer-btm-left > p > a {
    font-size: 10px;
  }
  .footer-btm-rhgt > ul > li > a {
    font-size: 12px;
    margin-right: 0px;
  }
  .footer-btm-rhgt > ul {
    flex-direction: column;
  }
  .col-17{
    width: 100%;
  }
  .col-36 {
        margin-left: 0px !important;
}
.dots span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
  }
  .send-btn{
    margin-left: auto;
  }
}
@media screen and (max-width: 550px) {
  .col-50 {
    width: 100%;
  }
  .servics-cntn-2 {
    position: absolute;
    right: 0;
  }
  .col-5 {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .primary-btn {
    width: 130px;
    height: 40px;
  }
  .primary-btn > span {
    font-size: 11px;
  }
  .primary-btn > img {
    width: 35px;
    height: 35px;
  }

  .header-top-wrpr {
    margin-bottom: 5px;
  }
  .banner-cntn > h1 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .servics-line {
    max-width: 300px;
  }
  .servics-main-cntn > h6 {
    margin-bottom: 15px;
  }
  .servics-cntn-1 > h6 {
    margin-bottom: 15px;
  }
  .servics-main-cntn > p {
    max-width: 250px;
    font-size: 11px;
    margin-top: 15px;
  }
  .servics-cntn-1 > p {
    max-width: 250px;
    font-size: 11px;
    margin-top: 15px;
  }

  .servics-img {
    margin-bottom: 15px;
  }
  .servics-left-hdr > h2 {
    font-size: 35px;
  }
  .servics-rhgt-hdr > p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .servics-top-hdr {
    margin-bottom: 30px;
  }
  .nav-logo {
    max-width: 90px;
  }
  .header-btm-wrpr {
    padding: 5px 5px;
  }
  .close-btn > span {
    display: inline-block;
    width: 20px;
    height: 2px;
    margin: 3px 0px;
  }
  .close-btn::before {
    content: " ";
    width: 20px;
    height: 2px;
    margin: 1px 0px;
  }
  .close-btn::after {
    content: " ";
    width: 20px;
    height: 2px;
    margin: 8px 0px;
  }
}
@media screen and (max-width: 417px) {
  
  .servics-card {
    padding: 18px 14px;
  }
}
@media screen and (max-width: 360px) {
  .servics-main-cntn > p {
    max-width: 200px;
    font-size: 11px;
  }
  .servics-cntn-1 > p {
    max-width: 200px;
    font-size: 11px;
  }
  .servics-line {
    width: 230px;
  }
}

@media screen and (max-width:350px) {
  .nav-logo {
    max-width: 70px;
   
  }
  .close-btn > span {
    display: inline-block;
    width: 20px;
    height: 2px;
    margin: 3px 0px;
  }
  .close-btn::before {
    content: " ";
    width: 20px;
    height: 2px;
    margin: 4px 0px;
  }
  .close-btn::after {
    content: " ";
    width: 20px;
    height: 2px;
    margin: 9px 0px;
  }
}
@media screen and (max-width: 330px) {
  .servics-line {
    max-width: 200px;
  }
  .nav-logo {
    max-width: 70px;
   
  }
  .close-btn > span {
    display: inline-block;
    width: 20px;
    height: 2px;
    margin: 2px 0px;
  }
  .close-btn::before {
    content: " ";
    width: 20px;
    height: 2px;
    margin: 5px 0px;
  }
  .close-btn::after {
    content: " ";
    width: 20px;
    height: 2px;
    margin: 9px 0px;
  }
}

@media screen and (max-width: 300px) {
  .servics-line {
    max-width: 150px;
  }
}
