@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&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");
/***** General CSS *****/

html {
  overflow-x: hidden;
}

body {
  word-break: break-word;
  font: 15px/25px "Poppins", sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 0px;
  padding: 0;
  list-style-type: none;
}

i {
  font-family: FontAwesome !important;
  font-style: normal;
}

i::before {
  font-family: FontAwesome !important;
}

span.txt-color {
  color: #0da9be;
  font-weight: 500;
  display: flex;
  align-items: start;
  justify-content: start;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  margin: 0 auto 50px auto;
  width: 70%;
}

.heading h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-8 {
  padding-bottom: 80px;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-8 {
  padding-top: 80px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-2 {
  padding-top: 20px;
}

.sec {
  padding: 80px 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

/* Buttons Css Starts */

.theme1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  height: 45px;
  background-color: #ee422e;
  border: 1px solid #0000;
  border-radius: 10px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  border: 1px solid #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  height: 0;
  width: 0;
  border-radius: 100px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover::before {
  height: 100%;
  width: 100%;
  border-radius: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  text-transform: capitalize;
  font-weight: 300;
}

.theme1 span.theme1-txt {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
}

.theme1 span.theme1-logo-ex {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 9;
  transition: ease-in;
  transition-duration: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme1:hover span.theme1-logo-ex {
  height: 35px;
  width: 35px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-logo-ex img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.theme2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  height: 45px;
  border: 1px solid #000;
  border-radius: 10px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover {
  border: 1px solid #0000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ee422e;
  height: 0;
  width: 0;
  border-radius: 100px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover::before {
  height: 100%;
  width: 100%;
  border-radius: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  text-transform: capitalize;
  font-weight: 300;
}

.theme2 span.theme2-txt {
  font-size: 20px;
  line-height: 1;
  color: #000;
  text-transform: capitalize;
  font-weight: 400;
}

.theme2 span.theme2-logo-ex {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 9;
  transition: ease-in;
  transition-duration: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme2:hover span.theme2-logo-ex {
  height: 20px;
  width: 20px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 span.theme2-logo-ex img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: ease-in;
  transition-duration: 0.5s;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(302deg) brightness(107%) contrast(102%);
}

/* Buttons Css Ends */

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "Geist", sans-serif;
  font-size: 80px;
  line-height: 85px;
  font-weight: 400;
  margin: 0;
  color: #1d2930;
}

h2 {
  font-family: "Geist", sans-serif;
  font-size: 60px;
  line-height: 65px;
  color: #000;
  font-weight: 400;
  margin: 0;
}

h3 {
  font-family: "Geist", sans-serif;
  font-size: 30px;
  line-height: 34px;
  color: #000;
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "Geist", sans-serif;
  font-size: 24px;
  line-height: 30px;
  color: #000;
  font-weight: 400;
  margin: 0;
}

h5 {
  font-family: "Geist", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "Geist", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

p {
  color: #000;
  font-size: 20px;
  line-height: 25px;
  font-family: "Geist", sans-serif;
  font-weight: 400;
  margin: 0;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/* Header Css Starts */

.menuSec {
  padding: 0px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul li a {
  position: relative;
  text-decoration: none;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  z-index: 0;
  border-radius: 5px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
  color: #000;
  text-align: center;
  font-family: "Geist";
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
}

.menuSec ul li a:hover {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}

.menuSec ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 0;
  border-bottom: 1px solid #0da9be;
  transition: ease-out;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
  z-index: -1;
}

.menuSec ul li a:hover::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.menuSec ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  height: 0;
  background-color: #0da9be;
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.menuSec ul li a:hover::after {
  height: 100%;
  transition: ease-out;
  transition-delay: 0.5s;
  transition-duration: 0.5s;
}

.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #fff;
}

.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

header {
  width: 100%;
  position: relative;
  z-index: 9999;
}

header .menuSec {
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

header .menuSec .row {
  /* align-items: center; */
  /* padding-bottom: 12px; */
  /* border-bottom: 1px solid #ffffffb5; */
}

.logo-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 50%;
}

.logo-main a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.logo-main a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.header-links-main ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 80%;
  margin: 0 0 0 auto;
}

.header-links-main ul li a {
  padding: 0;
}

.header-links-main ul li a::before {
  border-bottom: none;
}

.header-links-main ul li a::after {
  display: none;
}

/* Header Css Ends */

/* menu-box */

.menu-btn .fa-xmark {
  color: #fff !important;
}
.mobile_menu.d-xl-none.d-lg-none.d-md-none ul {
  margin: 0;
}
.mobile_menu.d-xl-none.d-lg-none.d-md-none {
  position: fixed;
  left: 10px;
  z-index: 99999 !important;
  top: 10px;
}

.menu-btn i {
  font-size: 30px;
  line-height: 1;
  color: #ee422d;
}

.me-15px {
  margin-right: 10px !important;
}

.menu-box {
  position: fixed;
  top: 0;
  left: -500px;
  height: 100vh;
  width: 100vw;
  background: #2a2a2a;
  z-index: 999;
  /* display: none; */
  transition: 0.5s ease-in-out;
  opacity: 0;
  background: #0da9be;
}
.menu-box.open {
  /* display: block; */
  left: 0px;
  /* transition: 0.5s ease-in-out; */
  opacity: 1;
}
.menu-btn {
  position: relative;
  display: block;
  margin: 6px 0 0 5px;
}
a#menu-btn {
  z-index: 9999;
}
ul#menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 15px;
  padding: 0 0 0 100px;
}

.logo img {
  width: 50%;
}

/* ul#menu li:last-child a {
    border: 1px solid;
    padding: 10px 20px;
    border-radius: 8px;
} */

.menu-box > nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem;
  position: relative;
  top: 40%;
  transform: translateY(-50%);
}

.menu-box > nav a {
  font-size: 24px;
  color: white;
  text-transform: capitalize;
  line-height: 1;
  transition: 0.4s ease-in-out;
  position: relative;
  font-weight: 400 !important;
  display: block;
  width: 100%;
  padding: 0 0 0 20px;
}

.menu-box > nav a:after {
  position: absolute;
  content: "";
  width: 0;
  bottom: -5px;
  height: 2px;
  background: var(--primary);
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s ease-in-out;
}

.menu-box > nav a:hover:after {
  width: 100%;
}
ul#menu a.active:before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 70%;
  height: 2px;
  background: #fff;
  border-radius: 50px;
}

.slicknav_menu {
  display: none;
}

/* menu-box */

/* Banner Sec Css Starts  */

section.banner-sec {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

section.banner-sec .container,
section.banner-sec .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

section.banner-sec img.banner-bg {
  position: absolute;
}

section.banner-sec img.banner-bg1 {
  top: -20%;
  right: -10%;
}

section.banner-sec img.banner-bg2 {
  bottom: -40%;
  left: -10%;
}

@layer demo {
  :root {
    --blob-size: 600px;
    --blob-speed: 6s;
    --blob-opacity: 1;
    --blob-blur: 40px;
    --blob-color: #ee422e30;
  }

  .blobs {
    position: relative;

    filter: blur(var(--blob-blur));

    width: 100%;

    height: 100%;
  }

  .blob {
    width: var(--blob-size);

    height: calc(0.25 * var(--blob-size));

    background-color: var(--blob-color);

    border-radius: 100%;

    opacity: var(--blob-opacity);

    mix-blend-mode: multiply;

    animation: blob ease-in-out var(--blob-speed) infinite;
  }

  @keyframes blob {
    0%,
    100% {
      transform: scale(0.8, 2);
    }

    50% {
      transform: scale(1.4, 0.8);
    }
  }

  .blob-rotate {
    position: absolute;
    right: -20%;
    top: 0%;
    animation: blob-rotate linear var(--blob-speed) infinite alternate;
  }

  @keyframes blob-rotate {
    0% {
      transform: translate3d(0, 0, 0) rotateZ(-28deg);

      transform-origin: 50% 100%;
    }

    100% {
      transform: translate3d(0, 0, 0) rotateZ(28deg);

      transform-origin: 50% 0%;
    }
  }
}

.blobs {
  position: absolute;
}

.banner-txt-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
  position: relative;
  z-index: 999;
  padding: 100px 0 0 0;
}

.banner-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.banner-btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.banner-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 30px 0 50px;
  border-radius: 100px;
  background-color: #0da9be21;
}

.banner-tag ul {
  list-style-type: disc;
  color: #0da9be;
}

.banner-tag ul li h5 {
  color: #0da9be;
  font-weight: 300;
}

.banner-txt h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-txt p {
  width: 80%;
  opacity: 0.7;
  margin: 0 auto;
}

/* Banner Sec Css Ends  */

/* About Us Sec Css Starts  */

section.about-sec {
  background-color: #e7f6f8;
}

section.about-sec .container-fluid {
  width: 90%;
  margin: 0 auto;
}

.about-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 60px;
}

.about-heading-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.about-tag {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.about-tag h6 {
  color: #6f6f6f;
}

.about-heading-counter-main {
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 20px;
  height: 100%;
  width: 100%;
}

.about-heading-counter {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
  width: 100%;
}

.counter-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  width: 30%;
}

.counter-txt {
  display: flex;
  align-items: end;
  justify-content: start;
  gap: 2px;
}

.counter-txt-main h6 {
  color: #929292;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.counter-txt .counter {
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  color: #0da9be;
  font-family: "Geist";
}

.counter-txt h6 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  color: #0da9be;
  font-family: "Geist";
}

h6.counter-ex {
  font-size: 50px;
}

.about-card-main {
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 30px;
  margin: 10px;
  box-shadow: 0 0 20px 0 #00000017;
  transition: ease-in;
  transition-duration: 0.5s;
}

.about-card-main:hover {
  background-color: #ee422e;
  transition: ease-out;
  transition-duration: 0.5s;
}

.about-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  overflow: hidden;
  background-color: #ee422e;
  height: 60px;
  width: 60px;
  padding: 15px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.about-card-main:hover .about-card-img {
  background-color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.about-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: ease-in;
  transition-duration: 0.5s;
}

.about-card-main:hover .about-card-img img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(74%) saturate(2408%)
    hue-rotate(348deg) brightness(103%) contrast(87%);
  transition: ease-out;
  transition-duration: 0.5s;
}

.about-card-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  width: 80%;
}

.about-card-txt h5 {
  font-size: 24px;
  line-height: 30px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.about-card-main:hover .about-card-txt h5 {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.about-card-txt p {
  font-size: 15px;
  line-height: 23px;
  opacity: 0.7;
  font-weight: 500;
  transition: ease-in;
  transition-duration: 0.5s;
}

.about-card-main:hover .about-card-txt p {
  color: #fff;
  opacity: 1;
  transition: ease-out;
  transition-duration: 0.5s;
}

/* About Us Sec Css Ends  */

/* Works Sec Css Starts  */

.works-card-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 50px 0;
  padding: 0;
}

.works-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  width: 25%;
  /* margin: 0 auto; */
}

.works-mid-card {
  position: relative;
  margin: 0;
  padding: 0 130px;
  width: 40%;
}

.works-mid-card::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0;
  background-image: url("../images/works-border1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 30%;
}

.works-mid-card::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  background-image: url("../images/works-border1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 30%;
}

.works-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  overflow: hidden;
  background-color: #ee422e;
  height: 70px;
  width: 70px;
  padding: 15px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.works-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: ease-in;
  transition-duration: 0.5s;
}

.works-card-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.works-card-txt h5 {
  font-size: 24px;
  line-height: 30px;
}

.works-card-txt p {
  font-size: 16px;
  line-height: 24px;
  opacity: 0.7;
}

.works-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.works-rate-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.works-rate-card-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 4px 0 #00000038;
  padding: 20px;
  position: absolute;
  background-color: #fff;
  gap: 10px;
  z-index: 999;
}

.works-rate-card-head {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.works-rate-card-head-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}

.works-rate-card-head-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.works-rate-card-mid {
  width: 100%;
}

.works-rate-card-mid-txt {
  display: flex;
  align-items: end;
  justify-content: start;
  gap: 5px;
  width: 100%;
}

.works-rate-card-mid-txt .counter {
  font-size: 54px;
  line-height: 1;
  color: #000;
  font-family: "Geist";
  font-weight: 400;
  display: block;
}

.works-rate-card-mid-txt span {
  font-size: 54px;
  line-height: 1;
  color: #000;
  font-family: "Geist";
  font-weight: 400;
}

.works-img-ex-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
  width: 350px;
  margin: 0 auto;
}

.works-img-ex-main::before {
  content: "";
  position: absolute;
  bottom: 90%;
  right: 0;
  left: 0;
  margin: 0 auto;
  border-top: 5px solid #ee422e;
  width: 80%;
  overflow: hidden;
  z-index: 9;
  animation: move 6s linear infinite alternate;
}

@keyframes move {
  from {
    bottom: 90%;
  }
  to {
    bottom: 10%;
  }
}

.works-img-ex-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 30%,
    rgb(255 255 255 / 89%) 100%
  );
  height: 100%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.works-img-ex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 90%;
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
  /* margin: 5px; */
}

.works-img-ex::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/works-bord.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  width: 100%;
  z-index: 9;
}

.works-img-ex img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.works-rate-left {
  top: 10%;
  left: 7%;
}

.works-rate-right {
  bottom: 13%;
  right: 0;
}

.works-space {
  margin: 70px 0 0 0;
}

/* Works Sec Css Ends  */

/* Bar Sec Css Starts  */

section.bar-sec {
  background-color: #e7f6f8;
}

.bar-card-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 40px 50px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 20px 0 #00000017;
  width: 100%;
}

.bar-card-right {
  margin: 60px 0 0 0;
}

.bar-card-left .bar-card-txt h5 {
  font-size: 24px;
  line-height: 30px;
  color: #ee422e;
}

.bar-card-right .bar-card-txt h5 {
  font-size: 24px;
  line-height: 30px;
  color: #0da9be;
}

.bar-card-list {
  width: 100%;
}

.bar-card-list ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.bar-card-list ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.bar-card-list ul li img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.bar-card-list ul li p {
  font-size: 18px;
  line-height: 23px;
}

.trust-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 50%;
  margin: 0 0 50px 0;
}

.trust-heading h2 {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.trust-card-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  padding: 20px;
  width: 90%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.trust-card-main:hover {
  box-shadow: 0 0 20px 0 #00000024;
  transition: ease-out;
  transition-duration: 0.5s;
}

.trust-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  overflow: hidden;
  background-color: #ee422e;
  height: 70px;
  width: 70px;
  padding: 15px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.trust-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: ease-in;
  transition-duration: 0.5s;
}

.trust-card-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.trust-card-txt h6 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
}

.trust-card-txt p {
  color: #000;
  font-size: 16px;
  line-height: 22px;
  opacity: 0.7;
  font-weight: 400;
}

/* Bar Sec Css Ends  */

/* Footer Css Sarts  */

footer {
  padding: 30px 0;
  background-color: #1d2930;
}

.copy-txt p {
  color: #fff;
  font-weight: 300;
  opacity: 0.7;
}

.copy-links ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.copy-links ul li a {
  position: relative;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  opacity: 0.7;
  font-weight: 300;
  text-transform: capitalize;
  transition: ease-in;
  transition-duration: 0.5s;
}

.copy-links ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  margin: 0 auto;
  border-bottom: 1px solid #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.copy-links ul li a:hover::before {
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

/* Footer Css Ends  */

/*Media Query Starts*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1501px) and (max-width: 1600px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  /* Home css Ends */
}

@media only screen and (min-width: 1401px) and (max-width: 1500px) {
  /* Fonts css Starts */

  h1 {
    font-size: 70px;
    line-height: 75px;
  }

  h2 {
    font-size: 50px;
    line-height: 55px;
  }

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  ul#menu {
    padding: 0 0 0 90px;
  }

  .banner-txt p {
    width: 90%;
  }

  .counter-txt .counter {
    font-size: 50px;
    line-height: 55px;
  }

  .counter-txt-main h6 {
    font-size: 14px;
  }

  .counter-txt h6 {
    font-size: 40px;
  }

  .about-card-txt h5 {
    font-size: 21px;
    line-height: 25px;
  }

  .works-mid-card {
    padding: 0 100px;
  }

  .bar-card-main {
    padding: 40px 40px;
  }

  .bar-card-list ul li p {
    font-size: 16px;
    line-height: 20px;
  }

  .works-rate-card-mid-txt .counter {
    font-size: 40px;
    line-height: 45px;
  }

  .works-rate-card-mid-txt span {
    font-size: 40px;
    line-height: 45px;
  }

  .header-links-main ul {
    width: 90%;
  }

  /* Home css Ends */
}

@media only screen and (min-width: 1301px) and (max-width: 1400px) {
  /* Fonts css Starts */

  h1 {
    font-size: 70px;
    line-height: 75px;
  }

  h2 {
    font-size: 50px;
    line-height: 55px;
  }

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  ul#menu {
    padding: 0 0 0 90px;
  }

  .banner-txt p {
    width: 90%;
  }

  .counter-txt .counter {
    font-size: 50px;
    line-height: 55px;
  }

  .counter-txt-main h6 {
    font-size: 14px;
  }

  .counter-txt h6 {
    font-size: 40px;
  }

  .about-card-txt h5 {
    font-size: 21px;
    line-height: 25px;
  }

  .works-mid-card {
    padding: 0 100px;
  }

  .bar-card-main {
    padding: 40px 40px;
  }

  .bar-card-list ul li p {
    font-size: 16px;
    line-height: 20px;
  }

  .works-rate-card-mid-txt .counter {
    font-size: 40px;
    line-height: 45px;
  }

  .works-rate-card-mid-txt span {
    font-size: 40px;
    line-height: 45px;
  }

  .header-links-main ul {
    width: 90%;
  }

  /* Home css Ends */
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  /* Fonts css Starts */

  h1 {
    font-size: 70px;
    line-height: 75px;
  }

  h2 {
    font-size: 50px;
    line-height: 55px;
  }

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  ul#menu {
    padding: 0 0 0 90px;
  }

  .banner-txt p {
    width: 90%;
  }

  .counter-txt .counter {
    font-size: 50px;
    line-height: 55px;
  }

  .counter-txt-main h6 {
    font-size: 14px;
  }

  .counter-txt h6 {
    font-size: 40px;
  }

  .about-card-txt h5 {
    font-size: 19px;
    line-height: 25px;
  }

  .works-mid-card {
    padding: 0 100px;
  }

  .bar-card-main {
    padding: 40px 40px;
  }

  .bar-card-list ul li p {
    font-size: 16px;
    line-height: 20px;
  }

  .works-rate-card-mid-txt .counter {
    font-size: 40px;
    line-height: 45px;
  }

  .works-rate-card-mid-txt span {
    font-size: 40px;
    line-height: 45px;
  }

  .header-links-main ul {
    width: 90%;
  }

  /* Home css Ends */
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sec {
    padding: 70px 0;
  }

  .heading {
    gap: 10px;
    margin: 0 auto 30px auto;
    width: 100%;
  }

  .heading h2 {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Fonts css Starts */

  h1 {
    font-size: 45px;
    line-height: 50px;
  }

  h2 {
    font-size: 40px;
    line-height: 45px;
  }

  h4 {
    font-size: 20px;
    line-height: 27px;
  }

  h6 {
    font-size: 14px;
    line-height: 20px;
  }

  p {
    font-size: 16px;
    line-height: 23px;
  }

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  header .menuSec {
    position: relative;
  }

  .logo-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
  }

  .header-links-main ul {
    width: 100%;
    height: 70px;
    margin: 0 auto;
  }

  .header-links-main ul li a img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: contain;
  }

  ul#menu {
    padding: 0 0 0 20px;
    gap: 10px;
  }

  .menuSec ul li a {
    font-size: 18px;
    line-height: 1;
  }

  section.banner-sec {
    height: 650px;
  }

  section.banner-sec img.banner-bg1 {
    top: 0%;
    right: 0;
    height: 250px;
    width: 100px;
  }

  section.banner-sec img.banner-bg2 {
    bottom: 0;
    left: 0%;
    height: 250px;
    width: 150px;
  }

  .banner-txt-box {
    padding: 0;
    gap: 20px;
  }

  .banner-tag {
    padding: 0 15px 0 30px;
  }

  .banner-tag ul li h5 {
    font-size: 16px;
    line-height: 20px;
  }

  .banner-txt {
    gap: 10px;
  }

  .banner-txt p {
    width: 100%;
  }

  .banner-btn-main {
    flex-direction: column;
    gap: 10px;
  }

  section.about-sec .container-fluid {
    /* width: 100%; */
  }

  .about-heading-counter {
    align-items: start;
    justify-content: start;
    gap: 20px;
    margin: 30px 0 0 0;
  }

  .counter-txt-main {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .counter-txt .counter {
    font-size: 40px;
    line-height: 45px;
  }

  .counter-txt-main h6 {
    font-size: 14px;
  }

  .counter-txt h6 {
    font-size: 30px !important;
    line-height: 35px;
  }

  .about-box {
    gap: 20px;
  }

  .about-card-main {
    padding: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .about-card-img {
    height: 70px;
    width: 70px;
  }

  .about-card-txt h5 {
    font-size: 20px;
    line-height: 25px;
  }

  .works-card-box {
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: center; */
    /* gap: 40px; */
    /* width: 90%; */
    /* margin: 0 auto; */
  }

  .works-card-main {
    width: 100%;
    gap: 10px;
  }

  .works-mid-card {
    padding: 0;
  }

  .works-mid-card::before,
  .works-mid-card::after {
    display: none;
  }

  .works-space {
    margin: 30px 0 0 0;
  }

  .works-rate-card-main {
    /* position: relative; */
  }

  .works-rate-main {
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: center; */
    gap: 20px;
    margin: 30px 0;
  }

  .works-rate-left,
  .works-rate-right {
    /* top: unset; */
    /* left: unset; */
  }

  .works-img-ex-main {
    height: 100%;
    width: 100%;
  }

  .works-rate-card-mid-txt .counter,
  .works-rate-card-mid-txt span {
    font-size: 30px;
    line-height: 35px;
  }

  .bar-card-main {
    padding: 20px;
    gap: 10px;
  }

  .bar-card-list ul li p {
    font-size: 14px;
    line-height: 20px;
  }

  .bar-card-right .bar-card-txt h5 {
    font-size: 20px;
    line-height: 25px;
  }

  .bar-card-right {
    margin: 20px 0 0 0;
  }

  .trust-heading {
    width: 60%;
  }

  .trust-heading h2 {
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: center; */
    /* gap: 10px; */
  }

  .trust-heading {
    /* margin: 0 0 20px 0; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* text-align: center; */
  }

  .trust-card-txt h6 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .trust-card-main {
    padding: 20px;
    margin: 0;
    width: 80%;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }

  footer {
    padding: 10px 0;
  }

  .copy-txt {
    /* text-align: center; */
    margin: 0 0 10px 0;
  }

  .copy-links ul {
    /* justify-content: center; */
  }

  .copy-links ul li a {
    font-size: 16px;
    line-height: 1;
  }

  /* Home css Ends */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sec {
    padding: 60px 0;
  }

  .heading {
    gap: 10px;
    margin: 0 auto 30px auto;
    width: 100%;
  }

  .heading h2 {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Fonts css Starts */

  h1 {
    font-size: 45px;
    line-height: 50px;
  }

  h2 {
    font-size: 40px;
    line-height: 45px;
  }

  h4 {
    font-size: 20px;
    line-height: 27px;
  }

  h6 {
    font-size: 14px;
    line-height: 20px;
  }

  p {
    font-size: 16px;
    line-height: 23px;
  }

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  header .menuSec {
    position: relative;
  }

  .logo-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
  }

  .header-links-main ul {
    width: 100%;
    height: 70px;
    margin: 0 auto;
  }

  .header-links-main ul li a img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: contain;
  }

  ul#menu {
    padding: 0 0 0 20px;
    gap: 5px;
  }

  .menuSec ul li a {
    font-size: 15px;
    line-height: 1;
  }

  section.banner-sec {
    height: 650px;
  }

  section.banner-sec img.banner-bg1 {
    top: 0%;
    right: 0;
    height: 250px;
    width: 100px;
  }

  section.banner-sec img.banner-bg2 {
    bottom: 0;
    left: 0%;
    height: 250px;
    width: 150px;
  }

  .banner-txt-box {
    padding: 0;
    gap: 20px;
  }

  .banner-tag {
    padding: 0 15px 0 30px;
  }

  .banner-tag ul li h5 {
    font-size: 16px;
    line-height: 20px;
  }

  .banner-txt {
    gap: 10px;
  }

  .banner-txt p {
    width: 100%;
  }

  .banner-btn-main {
    flex-direction: column;
    gap: 10px;
  }

  section.about-sec .container-fluid {
    width: 100%;
  }

  .about-heading-counter {
    align-items: start;
    justify-content: start;
    gap: 20px;
    margin: 30px 0 0 0;
  }

  .counter-txt-main {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .counter-txt .counter {
    font-size: 40px;
    line-height: 45px;
  }

  .counter-txt-main h6 {
    font-size: 14px;
  }

  .counter-txt h6 {
    font-size: 30px !important;
    line-height: 35px;
  }

  .about-box {
    gap: 20px;
  }

  .about-card-main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .about-card-img {
    height: 70px;
    width: 70px;
  }

  .about-card-txt h5 {
    font-size: 22px;
    line-height: 25px;
  }

  .works-card-box {
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: center; */
    /* gap: 40px; */
    /* width: 90%; */
    /* margin: 0 auto; */
  }

  .works-card-main {
    width: 100%;
    gap: 10px;
  }

  .works-mid-card {
    padding: 0;
  }

  .works-mid-card::before,
  .works-mid-card::after {
    display: none;
  }

  .works-space {
    margin: 30px 0 0 0;
  }

  .works-rate-card-main {
    position: relative;
  }

  .works-rate-main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
  }

  .works-rate-left,
  .works-rate-right {
    top: unset;
    left: unset;
  }

  .works-img-ex-main {
    height: 100%;
    width: 100%;
  }

  .works-rate-card-mid-txt .counter,
  .works-rate-card-mid-txt span {
    font-size: 30px;
    line-height: 35px;
  }

  .bar-card-main {
    padding: 20px;
    gap: 10px;
  }

  .bar-card-list ul li p {
    font-size: 14px;
    line-height: 20px;
  }

  .bar-card-right .bar-card-txt h5 {
    font-size: 20px;
    line-height: 25px;
  }

  .bar-card-right {
    margin: 20px 0 0 0;
  }

  .trust-heading {
    width: 100%;
  }

  .trust-heading h2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .trust-heading {
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .trust-card-txt h6 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .trust-card-main {
    padding: 20px;
    margin: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  footer {
    padding: 10px 0;
  }

  .copy-txt {
    text-align: center;
    margin: 0 0 10px 0;
  }

  .copy-links ul {
    justify-content: center;
  }

  .copy-links ul li a {
    font-size: 16px;
    line-height: 1;
  }

  /* Home css Ends */
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
  .sec {
    padding: 50px 0;
  }

  .heading {
    gap: 10px;
    margin: 0 auto 30px auto;
    width: 100%;
  }

  .heading h2 {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Fonts css Starts */

  h1 {
    font-size: 45px;
    line-height: 50px;
  }

  h2 {
    font-size: 40px;
    line-height: 45px;
  }

  h4 {
    font-size: 20px;
    line-height: 27px;
  }

  h6 {
    font-size: 14px;
    line-height: 20px;
  }

  p {
    font-size: 16px;
    line-height: 23px;
  }

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  header .menuSec {
    position: relative;
  }

  .logo-main {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
  }

  .header-links-main ul {
    width: 100%;
    height: 70px;
    margin: 0 auto;
  }

  .header-links-main ul li a img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: contain;
  }

  section.banner-sec {
    height: 650px;
  }

  section.banner-sec img.banner-bg1 {
    top: 0%;
    right: 0;
    height: 250px;
    width: 100px;
  }

  section.banner-sec img.banner-bg2 {
    bottom: 0;
    left: 0%;
    height: 250px;
    width: 150px;
  }

  .banner-txt-box {
    padding: 0;
    gap: 20px;
  }

  .banner-tag {
    padding: 0 15px 0 30px;
  }

  .banner-tag ul li h5 {
    font-size: 16px;
    line-height: 20px;
  }

  .banner-txt {
    gap: 10px;
  }

  .banner-txt p {
    width: 100%;
  }

  .banner-btn-main {
    flex-direction: column;
    gap: 10px;
  }

  section.about-sec .container-fluid {
    width: 100%;
  }

  .about-heading-counter {
    align-items: start;
    justify-content: start;
    gap: 20px;
    margin: 30px 0 0 0;
  }

  .counter-txt-main {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .counter-txt .counter {
    font-size: 40px;
    line-height: 45px;
  }

  .counter-txt-main h6 {
    font-size: 14px;
  }

  .counter-txt h6 {
    font-size: 30px !important;
    line-height: 35px;
  }

  .about-box {
    gap: 20px;
  }

  .about-card-main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .about-card-img {
    height: 70px;
    width: 70px;
  }

  .about-card-txt h5 {
    font-size: 22px;
    line-height: 25px;
  }

  .works-card-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 90%;
    margin: 0 auto;
  }

  .works-card-main {
    width: 100%;
    gap: 10px;
  }

  .works-mid-card {
    padding: 0;
  }

  .works-mid-card::before,
  .works-mid-card::after {
    display: none;
  }

  .works-space {
    margin: 30px 0 0 0;
  }

  .works-rate-card-main {
    position: relative;
  }

  .works-rate-main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
  }

  .works-rate-left,
  .works-rate-right {
    top: unset;
    left: unset;
  }

  .works-img-ex-main {
    height: 100%;
    width: 100%;
  }

  .works-rate-card-mid-txt .counter,
  .works-rate-card-mid-txt span {
    font-size: 30px;
    line-height: 35px;
  }

  .bar-card-main {
    padding: 20px;
    gap: 10px;
  }

  .bar-card-list ul li p {
    font-size: 14px;
    line-height: 20px;
  }

  .bar-card-right .bar-card-txt h5 {
    font-size: 20px;
    line-height: 25px;
  }

  .bar-card-right {
    margin: 20px 0 0 0;
  }

  .trust-heading {
    width: 100%;
  }

  .trust-heading h2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .trust-heading {
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .trust-card-txt h6 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .trust-card-main {
    padding: 20px;
    margin: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  footer {
    padding: 10px 0;
  }

  .copy-txt {
    text-align: center;
    margin: 0 0 10px 0;
  }

  .copy-links ul {
    justify-content: center;
  }

  .copy-links ul li a {
    font-size: 16px;
    line-height: 1;
  }

  /* Home css Ends */
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
  .sec {
    padding: 40px 0;
  }

  .heading {
    gap: 10px;
    margin: 0 auto 30px auto;
    width: 100%;
  }

  .heading h2 {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Fonts css Starts */

  h1 {
    font-size: 35px;
    line-height: 40px;
  }

  h2 {
    font-size: 30px;
    line-height: 35px;
  }

  h4 {
    font-size: 18px;
    line-height: 25px;
  }

  h6 {
    font-size: 14px;
    line-height: 20px;
  }

  p {
    font-size: 16px;
    line-height: 23px;
  }

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  header .menuSec {
    position: relative;
  }

  .logo-main {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
  }

  .header-links-main ul {
    width: 100%;
    height: 70px;
    margin: 0 auto;
  }

  .header-links-main ul li a img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: contain;
  }

  section.banner-sec {
    height: 650px;
  }

  section.banner-sec img.banner-bg1 {
    top: 0%;
    right: 0;
    height: 250px;
    width: 100px;
  }

  section.banner-sec img.banner-bg2 {
    bottom: 0;
    left: 0%;
    height: 250px;
    width: 150px;
  }

  .banner-txt-box {
    padding: 0;
    gap: 10px;
  }

  .banner-tag {
    padding: 0 15px 0 30px;
  }

  .banner-tag ul li h5 {
    font-size: 16px;
    line-height: 20px;
  }

  .banner-txt {
    gap: 10px;
  }

  .banner-txt p {
    width: 100%;
  }

  .banner-btn-main {
    flex-direction: column;
    gap: 10px;
  }

  section.about-sec .container-fluid {
    width: 100%;
  }

  .about-heading-counter {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    margin: 30px 0 0 0;
  }

  .counter-txt-main {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .counter-txt .counter {
    font-size: 40px;
    line-height: 45px;
  }

  .counter-txt h6 {
    font-size: 30px;
    line-height: 35px;
  }

  .about-box {
    gap: 20px;
  }

  .about-card-main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .about-card-img {
    height: 70px;
    width: 70px;
  }

  .about-card-txt h5 {
    font-size: 22px;
    line-height: 25px;
  }

  .works-card-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 90%;
    margin: 0 auto;
  }

  .works-card-main {
    width: 100%;
    gap: 10px;
  }

  .works-mid-card {
    padding: 0;
  }

  .works-mid-card::before,
  .works-mid-card::after {
    display: none;
  }

  .works-space {
    margin: 30px 0 0 0;
  }

  .works-rate-card-main {
    position: relative;
  }

  .works-rate-main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
  }

  .works-rate-left,
  .works-rate-right {
    top: unset;
    left: unset;
  }

  .works-img-ex-main {
    height: 100%;
    width: 100%;
  }

  .works-rate-card-mid-txt .counter,
  .works-rate-card-mid-txt span {
    font-size: 30px;
    line-height: 35px;
  }

  .bar-card-main {
    padding: 20px;
    gap: 10px;
  }

  .bar-card-list ul li p {
    font-size: 14px;
    line-height: 20px;
  }

  .bar-card-right .bar-card-txt h5 {
    font-size: 20px;
    line-height: 25px;
  }

  .bar-card-right {
    margin: 20px 0 0 0;
  }

  .trust-heading {
    width: 100%;
  }

  .trust-heading h2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .trust-heading {
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .trust-card-txt h6 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .trust-card-main {
    padding: 20px;
    margin: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  footer {
    padding: 10px 0;
  }

  .copy-txt {
    text-align: center;
    margin: 0 0 10px 0;
  }

  .copy-links ul {
    justify-content: center;
  }

  .copy-links ul li a {
    font-size: 16px;
    line-height: 1;
  }

  /* Home css Ends */
}

/*Media Query End*/
